@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap');

:root {
  --main-bg-color: #735BCD;
  --main-btns-color: #F59F00;
  --mint: #79CBB8; 
  --mint-dark: #67AD9C;
  --main-bg-color-dark: #624DAE;
  --gray: #989898;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #735BCD;
}

.title {
  font-family: 'Exo 2', sans-serif;
  color: #000;
  font-size: 36px;
  line-height: 43px;
  font-weight: bold;
  margin-bottom: 40px;
}
.title_landing {
  font-size: 56px;
  line-height: 69px;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}
.results {
  display: block;
  margin-top: 20px;
}
.text-logo {
  font-weight: bold;
  font-family: 'Exo 2', sans-serif;
  text-decoration: none;
  color: #fff;
}
.text-logo span {
  color: var(--main-btns-color);
}
.first {
  margin-top: 70px;
  margin-bottom: 80px;
}
.first__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 520px;
  padding-top: 40px;
}
.description {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 520px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  line-height: 29px;
  margin-left: auto;
  margin-right: auto;
}
.text {
  display: block;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 25px;
  color: #818181;
  font-family: 'Exo 2', sans-serif;
  text-align: center;
  margin-bottom: 40px;
}
.container {
  width: 100%;
  max-width: 1024px;
  padding-left: 20px;
  padding-right: 20px;
}
.hotel {
  display: block;
  margin-bottom: 30px;
}
.hotel__title {
  margin-bottom: 10px;
}
.hotel__address {
  margin-bottom: 20px;
}
.hotel__description {
  color: #464646;
  font-size: 16px;
  font-family: 'Exo 2', sans-serif;
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 180px;
}
.header_page_index {
  align-items: end;
  padding-bottom: 65px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  display: block;
}
.auth {
  font-family: 'Exo 2', sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
}
.auth__link {
  color: #fff;
  transition: all .3s;
}
.auth__link:hover {
  color: var(--main-btns-color);
}
.main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  position: relative;
}
.main_second {
  background-color: #fff;
  min-height: 100vh;
}
.main_second:before {
  content: '';
  display: block;
  width: 100%;
  height: 70px;
  background-color: var(--main-bg-color);
  top: 0;
  position: absolute;
  z-index: 0;
}
.main_landing {
  background-color: #fff;
}
.main_costs {
  background-color: #F4F4F4;
  padding-bottom: 100px;
}
.main__container {
  z-index: 10;
}
.page {
  display: grid;
  min-height: 100vh;
}
.search-form {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  background-color: var(--main-btns-color);
  border-radius: 8px;
  padding-top: 30px;
  padding-bottom: 44px;
  padding-left: 35px;
  padding-right: 35px;
  font-family: 'Exo 2', sans-serif;
  box-shadow: 0 4px 12px 0 rgba(0,0,0,0.12);
  border-radius: 0 8px 8px 8px;
}

.main_online .search-form {
  border-radius: 8px;
}
.search-form__label {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 19px;
  margin-bottom: 5px;
  font-weight: normal;
}

.search-form__field input {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  font-family: 'Exo 2', sans-serif;
  color: #000;
  transition: all 0.3s;
  border: none;
}
.search-form__field input:focus {
  outline: none;
}
.search-form__btn {
  min-width: 160px;
  width: 100%;
}
.search-form__item {
  display: flex;
  justify-content: end;
  flex-direction: column;
}
.search-form__item input {
  width: 100%;
}
strong {
  font-weight: bold;
}
.btn {
  display: block;
  font-weight: normal;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  line-height: 18px;
  border: none;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 12px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  white-space: nowrap;
}
.btn_default {
  border: 1px solid var(--main-bg-color);
  background-color: var(--main-bg-color);
}
.btn_default:hover {
  border: 1px solid var(--main-bg-color-dark);
  background-color: var(--main-bg-color-dark);
}
.btn_primary {
  background-color: var(--mint);
  width: auto;
  border: 1px solid var(--mint);
}
.btn_primary:hover {
  background-color: var(--mint-dark);
  border: 1px solid var(--mint-dark);
}
.btn_secondary {
  background-color: #fff;
  border: 1px solid var(--mint);
  width: auto;
  color: var(--mint);
}
.btn_secondary:hover {
  color: var(--mint-dark);
  border: 1px solid var(--mint-dark);
}
.btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
.btns .btn + .btn {
  margin-left: 20px;
}
.btn_size_xl {
  font-size: 22px;
  line-height: 22px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 17px;
}
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  align-self: flex-end;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__link {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-family: 'Exo 2', sans-serif;
  font-weight: normal;
  margin-right: 20px;
  transition: all .3s;
}
.footer__link:hover {
  color: var(--main-btns-color);
}
.footer__copyright {
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-family: 'Exo 2', sans-serif;
  font-weight: normal;
}
.footer__links {
  display: flex;

}
.filter {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  font-family: 'Exo 2', sans-serif;
}
.filter__col {
  display: flex;
  flex-direction: column;
}
.filter__col_sort {
  flex-direction: row;
  align-items: center;
}
.filter__title {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 15px;
}
.filter__title_sort {
  margin-bottom: 0;
  margin-right: 8px;
}
.filter__label {
  font-size: 16px;
  line-height: 16px;
}
.filter__checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.promocode {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 40px;
  overflow: hidden;
  padding: 25px;
}
.promocode__title {
  display: block;
  font-family: 'Exo 2', sans-serif;
  color: #000;
  font-size: 24px;
  margin-bottom: 10px;
}
.promocode__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 20px;
}
.promocode__code {
  display: block;
  padding: 16px 23px;
  border-radius: 8px 0 0 8px;
  background-color: #F4F4F4;
  font-size: 24px;
  font-family: 'Exo 2', sans-serif;
  width: 100%;
}
.promocode__btn {
  display: flex;
  align-items: center;
  background-color: var(--mint);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  padding: 0 25px;
  border-radius: 0 8px 8px 0;
  transition: all .3s;
}
.promocode__btn:hover {
  background-color: var(--mint-dark);
}
.back {
  display: inline-block;
  font-size: 12px;
  font-family: 'Exo 2', sans-serif;
  text-decoration: none;
  color: #000;
  margin-top: 44px;
  margin-bottom: 5px;
  transition: all .3s;
}

.back:hover {
  color: var(--main-bg-color);
}
.ad {
  display: flex;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 50px;
  overflow: hidden;
}
.ad__address {
  margin-bottom: 10px;
  font-style: normal;
}
.ad__photo {
  display: block;
  width: 100%;
  max-width: 280px;
  min-width: 240px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  margin-right: 20px;
}
.ad__content {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 20px;
}
.address {
  color: var(--gray);
  font-size: 16px;
  line-height: 19px;
  font-family: 'Exo 2', sans-serif;
  font-style: normal;
}
.ad__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 10px;
}
.ad__description {
  color: #464646;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 17px;
}
.ad__description a {
  color: var(--main-btns-color);
  transition: all .3s;
}
.ad__description a:hover {
  filter: brightness(90%);
}
.ad__amenities {
  color: #989898;
  font-size: 14px;
  line-height: 20px;
}
.ad__additional {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
}
.nights, .guests, .reviews-qty {
  color: #989898;
  font-size: 14px;
  line-height: 17px;
}
.rating {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 5px;
}
.ad__row {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}
.ad__container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.promocodes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-right: 20px;
  margin-bottom: 20px;
}
.promocodes__text {
  display: block;
  font-size: 20px;
  align-self: center;
}
.promocodes__qty {
  font-weight: bold;
}
.promocodes__btn {
  justify-self: end;
  align-self: center;
}
.rating__label {
  color: var(--main-btns-color);
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
}
.rating__grade {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  width: 30px;
  height: 30px;
  background-color: var(--main-btns-color);
  margin-left: 5px;
  font-size: 14px;
  line-height: 30px;
}
.price {
  display: block;
  font-size: 36px;
  line-height: 43px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 10px;
}
.checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox+label {
  display: flex;
  align-items: center;
  user-select: none;
}
.checkbox+label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 3px;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 8px;
  box-sizing: border-box;
}
.checkbox:checked+label::before {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTBweCIgaGVpZ2h0PSI4cHgiIHZpZXdCb3g9IjAgMCAxMCA4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPjg1NDE2MTJfY2hlY2tfdGlja19tYXJrX2ljb248L3RpdGxlPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9InJlc3VsdHMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yODIuMDAwMDAwLCAtMzc2LjAwMDAwMCkiIGZpbGw9IiMwMDAwMDAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIGlkPSI4NTQxNjEyX2NoZWNrX3RpY2tfbWFya19pY29uIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyODIuMDAwMDAwLCAzNzYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMy4zOTY0NDM3NSw3Ljg0Mjg4MDI3IEwwLjE0NjQ0MDU3Myw0LjM1NjI3OCBDLTAuMDQ4ODEzNTI0Miw0LjE0NjgwOTQ4IC0wLjA0ODgxMzUyNDIsMy44MDcxODAwNSAwLjE0NjQ0MDU3MywzLjU5NzY5MDU3IEwwLjg1MzUzMTEwNywyLjgzOTEwMzE0IEMxLjA0ODc4NTIsMi42Mjk2MTM2NiAxLjM2NTM4NzA4LDIuNjI5NjEzNjYgMS41NjA2NDExNywyLjgzOTEwMzE0IEwzLjc0OTk5ODc4LDUuMTg3ODI0MjYgTDguNDM5MzU4ODMsMC4xNTcxMDEzOTUgQzguNjM0NjEyOTIsLTAuMDUyMzY3MTMxNyA4Ljk1MTIxNDgsLTAuMDUyMzY3MTMxNyA5LjE0NjQ2ODg5LDAuMTU3MTAxMzk1IEw5Ljg1MzU1OTQzLDAuOTE1Njg4ODI2IEMxMC4wNDg4MTM1LDEuMTI1MTU3MzUgMTAuMDQ4ODEzNSwxLjQ2NDc4Njc4IDkuODUzNTU5NDMsMS42NzQyNzYyNiBMNC4xMDM1NTM4MSw3Ljg0MjkwMTIyIEMzLjkwODI4MDE4LDguMDUyMzY5NzUgMy41OTE2OTc4NCw4LjA1MjM2OTc1IDMuMzk2NDQzNzUsNy44NDI4ODAyNyBMMy4zOTY0NDM3NSw3Ljg0Mjg4MDI3IFoiIGlkPSJQYXRoIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==")
}
.subtitle {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 45px;
  line-height: 54px;
  font-weight: bold;
  color: var(--main-bg-color);
  margin-bottom: 30px;
  text-align: center;
  margin-top: 70px;
}
.things {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 55px;
}
.things__item {
  display: flex;
  margin-bottom: 60px;
}
.things__icon {
  display: block;
  width: 100px;
  height: 100px;
  margin-right: 30px;
  flex-shrink: 0;
}
.things__title {
  display: block;
  font-size: 24px;
  line-height: 29px;
  font-family: 'Exo 2', sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
}
.things__description {
  display: block;
  color: #818181;
  font-size: 18px;
  line-height: 25px;
  font-family: 'Exo 2', sans-serif;
}
.prices {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  padding-left: 25px;
  padding-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  justify-content: space-between;
}
.prices__col {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}
.prices__label {
  display: flex;
  width: 100%;
  height: 40px;
  align-items: center;
}
.prices__value {
  display: flex;
  width: 100%;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.prices__value span {
  color: var(--main-btns-color);
}
.prices__value small {
  color: #C2C2C2;
  font-size: 14px;
  line-height: 22px;
  font-weight: normal;
  position: absolute;
  bottom: -10px;
}
.footnote {
  display: flex;
  width: 100%;
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  color: #A8A8A8;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 95px;
}
.footnote__asterisk {
  margin-right: 5px;
}
.prices__title {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  min-height: 50px;
}
.prices__value {
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
}
.prices__value_no {
  font-weight: normal;
}
.prices__value_yes {
  color: var(--mint);
}
.prices__row {
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 10;
  position: relative;
}
.prices__col {
  position: relative;
}
.prices__col:last-child:before {
  content: '';
  display: block;
  border: 5px solid var(--main-bg-color);
  position: absolute;
  top: -40px;
  left: -10px;
  width: calc(100% + 10px);
  height: calc(100% + 70px);
  border-radius: 8px;
  background-color: #fff;
  z-index: 5;
}
.prices__row_btn {
  display: flex;
  padding-top: 20px;
  justify-content: center;
}
.promo {
  display: flex;
  position: absolute;
  z-index: 10;
  transform: rotate(34deg);
  top: -40px;
  right: -55px;
}
.promo span {
  display: flex;
  background-color: var(--main-btns-color);
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  white-space: nowrap;
}
.promo::before {
  display: block;
  content: '';
  background-color: #C17E02;
  width: 17px;
  height: 19px;
  position: absolute;
  z-index: -1;
  bottom: -6px;
  right: 4px;
  transform: rotate(-34deg);
}
.promo::after {
  display: block;
  content: '';
  background-color: #C17E02;
  width: 27px;
  height: 19px;
  position: absolute;
  z-index: -1;
  bottom: -9px;
  left: 3px;
  transform: rotate(-34deg);
}
.link {
  color: var(--main-btns-color);
}
.tagline {
  display: block;
  font-size: 16px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
}
.tagline_page_index {
  margin-bottom: 3px;
}
.p-autocomplete {
  display: flex;
}
.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight {
  color: var(--main-bg-color);
}
.p-autocomplete-items {
  font-family: 'Exo 2', sans-serif;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: start;
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}
.pagination__item {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  line-height: 16px;
}
.pagination__item:not(:last-child) {
  margin-right: 7px;
}
.pagination__link {
  display: block;
  text-decoration: none;
  color: var(--main-bg-color);
  transition: all .3s;
  width: 100%;
  height: 100%;
  padding: 7px;
}
.pagination__link:hover {
  color: var(--main-bg-color-dark);
}
.pagination__current {
  display: block;
  text-decoration: none;
  background-color: var(--main-bg-color);
  color: #fff;
  width: 100%;
  padding: 7px;
  border-radius: 4px;
}
.site-description {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.site-description p {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 20px;
  text-align: justify;
  opacity: 0.4;
}
.terms h2 { 
  display: block;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
  margin-top: 30px;
  font-weight: bold;
  font-family: 'Exo 2', sans-serif;
}
.terms p {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Exo 2', sans-serif;
}
.terms table {
  border: 1px solid #F4F4F4;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Exo 2', sans-serif;
}
.terms tr, .terms td {
  border: 1px solid #F4F4F4;
}
.terms td {
  padding: 10px 10px;
}
.terms b {
  font-weight: bold;
}
.second-page {
  display: block;
  margin-bottom: 50px;
  margin-top: 20px;
}
.form {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.form__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form__item label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  color: #818181;
  margin-bottom: 5px;
}
.form input[type="text"], textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
}
.form__actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
label.from__label_required::after {
  content: ' *' !important;
  color: red;
}
.menu {
  display: flex;
  padding: 0;
  margin: 0;
}
.menu__item {
  display: block;
  padding: 15px 20px;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.menu__item a {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  color: #fff;
  height: auto;
  line-height: 16px;
}
.menu__item.menu__item_active {
  background-color: var(--main-btns-color);
  text-decoration: none;
}
.menu__item.menu__item_active a {
  text-decoration: none;
}
.new {
  display: block;
  position: absolute;
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  background-color: #67AD9C;
  color: #fff;
  border-radius: 8px;
  font-size: 10px;
  line-height: 10px;
  padding: 3px 5px;
  text-align: center;
  right: -50px;
  width: 60px;
  top: 50%;
  margin-top: -7px;
  text-transform: uppercase;
}
.page-content {
  margin-bottom: 50px;
  font-family: 'Exo 2', sans-serif;
}
.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
.offers-title {
  display: block;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 25px;
  margin-top: 30px;
  font-weight: bold;
  font-family: 'Exo 2', sans-serif;
}
.offers__room {
  display: flex;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 20px;
  overflow: hidden;
}
.offers__area {
  margin-bottom: 10px;
  font-style: normal;
  color: #888;
}
.offers__area sup {
  font-size: 10px;
  font-family: 'Exo 2', sans-serif;
}
.offers__image {
  display: block;
  width: 100%;
  max-width: 280px;
  min-width: 240px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  margin-right: 20px;
}
.offers__content {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 20px;
}
.offers__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 10px;
}
.offers__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.offers__description {
  color: #464646;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 17px;
}
.offers__description a {
  color: var(--main-btns-color);
  transition: all .3s;
}
.offers__description a:hover {
  filter: brightness(90%);
}
.offers__amenities {
  color: #989898;
  font-size: 14px;
  line-height: 20px;
}
.offers__additional {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
}
.offers__row {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}
.offers__container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.offers__price {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.offers__price_old {
  font-size: 12px;
  text-decoration: line-through;
  margin-bottom: 0;
  /* color: #888; */
}
.offers__price_new {
  color: var(--main-btns-color);
}
.offers__discount {
  color: red;
  font-size: 12px;
  margin-bottom: 0;
  margin-left: 5px;
}
.offers__price-group {
  display: flex;
  align-items: center;
}
.offers__meal-plan {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #888;
  margin-bottom: 10px;
}
.offers__btn {
  width: auto;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
}
@media only screen and (max-width: 900px) {
  .ad__container {
    flex-direction: column;
  }
  .ad__additional {
    flex-direction: row;
  }
  .ad__row:first-child {
    align-items: flex-start;
  }
  .offers__container {
    flex-direction: column;
  }
  .offers__additional {
    flex-direction: row;
  }
  .offers__row:first-child {
    align-items: flex-start;
  }
  .filter {
    flex-direction: column;
    padding-bottom: 10px;
  }
  .filter__checkboxes {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .filter__col_sort {
    margin-top: 30px;
  }
  .promocodes {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .header__container {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    margin-bottom: 20px;
  }
  .search-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .main {
    overflow: hidden;
  }
  .footer__container {
    flex-direction: column;
  }
  .footer__links {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  .footer__link {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .ad {
    flex-direction: column;
  }
  .ad__photo {
    height: 280px;
    max-width: none;
    margin-right: 0;
  }
  .ad__content {
    padding-left: 20px;
  }
  .ad__row {
    padding-left: 20px;
  }

  .offers__room {
    flex-direction: column;
  }
  .offers__image {
    height: 280px;
    max-width: none;
    margin-right: 0;
  }
  .offers__content {
    padding-left: 20px;
  }
  .offers__row {
    padding-left: 20px;
  }
  .offers__items {
    grid-template-columns: 1fr 1fr;
  }
  
  .filter__checkboxes {
    grid-template-columns: 1fr 1fr;
  }
  .promocodes {
    grid-template-columns: 1fr;
  }
  .promocodes__text {
    text-align: center;
    margin-bottom: 20px;
  }
  .promocodes__btn {
    place-self: center center;
  }
}
@media only screen and (max-width: 480px) {
  .ad {
    position: relative;
  }
  .ad__additional {
    flex-direction: column;
    align-items: flex-start;
  }
  .ad__row:last-child {
    margin-top: 15px;
    align-items: flex-start;
  }

  .offers__room {
    position: relative;
  }
  .offers__additional {
    flex-direction: column;
    align-items: flex-start;
  }
  .offers__row:last-child {
    margin-top: 15px;
    align-items: flex-start;
  }

  .promocode__container {
    flex-direction: column;
  }
  .promocode__code {
    border-radius: 8px 8px 0 0;
  }
  .promocode__btn {
    padding: 16px 23px;
    border-radius: 0 0 8px 8px;
    justify-content: center;
  }
  .title_landing {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .description {
    font-size: 16px;
    line-height: 24px;
  }
  .logo img {
    display: block;
    max-width: 300px;
    width: 100%;
  }
  .subtitle {
    font-size: 30px;
    line-height: 36px;
  }
  .things__title {
    font-size: 18px;
    line-height: 24px;
  }
  .things__description {
    font-size: 14px;
    line-height: 20px;
  }
  .things__icon {
    width: 60px;
    height: 60px;
  }
  .text {
    font-size: 16px;
    line-height: 20px;
  }
  .btn_size_xl {
    font-size: 18px;
    line-height: 18px;
    padding-left: 17px;
    padding-right: 17px;
    padding-top: 13px;
    padding-bottom: 15px;
  }
  .menu__item {
    display: flex;
    align-items: center;
    padding: 20px 15px;
  }
  .new {
    display: block;
    position: absolute;
    font-family: 'Exo 2', sans-serif;
    font-size: 10px;
    background-color: #67AD9C;
    color: #fff;
    border-radius: 8px;
    font-size: 10px;
    line-height: 10px;
    padding: 3px 5px;
    text-align: center;
    right: 5px;
    width: 60px;
    top: 11px;
    text-transform: uppercase;
    z-index: 100;
  }
}
