:root {
  --c-black: #121212;
  --c-grey-1: #BEBEBE;
  --c-grey-2: #797979;
  --c-orange-0: #FFF0E9;
  --c-orange-1: #EF6A41;
  --c-orange-3: #C12E00;
  --c-blue-0: #F0F5FA;
  --c-blue-1: #113E70;
  --c-blue-2: #0C2A4B;
  --c-white: #fff;
  --radius-1: 8px;
  --radius-2: 12px;
  --shadow: 0 4px 14px rgba(17, 62, 112, 0.1);
  --transition: .2s;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

main {
  flex-grow: 1;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 120%;
}

h2,
h3 {
  font-weight: 600;
  line-height: 120%;
}

h1.small,
h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.paragraphs p {
  margin-bottom: 24px;
}

.paragraphs p:last-child {
  margin-bottom: 0;
}

.relative {
  position: relative;
}

.section-outer {
  margin-bottom: 120px;
}

.section-outer-2 {
  margin-bottom: 60px;
}

.section-inner {
  padding: 120px 0;
}

.section-inner-2 {
  padding: 80px 0;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  text-align: center;
}

.heading p {
  color: var(--c-grey-2);
}

.text-grey {
  color: var(--c-grey-2);
}

.text-blue {
  color: var(--c-blue-1);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  height: 56px;
  min-height: 56px;
  padding: 0 48px;
  border-radius: 12px;
  transition: var(--transition);
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
}

.btn svg {
  width: 15px;
  height: 15px;
}

.btn--white {
  background: var(--c-white);
  color: var(--c-orange-1);
}

.btn--white svg {
  fill: var(--c-orange-1);
}

.btn--white:hover {
  color: var(--c-orange-3);
}

.btn--white:hover svg {
  fill: var(--c-orange-3);
}

.btn--orange {
  background: var(--c-orange-1);
  color: var(--c-white);
}

.btn--orange svg {
  fill: var(--c-white);
}

.btn--orange:hover {
  background: var(--c-orange-3);
}

.slider-nav {
  display: flex;
  justify-content: flex-end;
  justify-self: flex-end;
  gap: 20px;
}

.slider-nav--static {
  margin-bottom: 28px;
}

.swiper {
  height: 100%;
}

.swiper-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  transition: var(--transition);
}

.slider-nav--static .swiper-button {
  position: unset;
  inset: unset;
  translate: 0 0;
}

.swiper-button--y.swiper-button {
  inset: unset;
  left: 50%;
  translate: -50% 0;
}

.swiper-button--y.swiper-button-prev {
  top: 0;
  rotate: 90deg;
}

.swiper-button--y.swiper-button-next {
  bottom: 0;
  rotate: 90deg;
}

.swiper-button--blue {
  background: var(--c-blue-1);
}

.swiper-button--blue:hover {
  background: var(--c-blue-2);
}

.swiper-button--white {
  background: var(--c-white);
}

.swiper-button::before,
.swiper-button:after {
  display: none;
}

.swiper-button-prev {
  left: -48px;
}

.swiper-button-next {
  right: -48px;
}

.swiper-button--blue svg {
  width: 10px;
  height: 16px;
  fill: var(--c-white);
}

.swiper-button--white svg {
  width: 10px;
  height: 16px;
  fill: var(--c-blue-1);
}

.combobox {
  cursor: pointer;
  position: relative;
  width: max-content;
  color: var(--c-blue-1);
}

.combobox__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-2);
  background: var(--c-white);
  color: var(--c-grey-1);
}

.combobox.selected .combobox__button {
  color: var(--c-blue-1);
}

.combobox__button::after {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url(../images/icon-arrowhead-bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.combobox__list {
  position: absolute;
  z-index: 100;
  top: calc(100% + 6px);
  left: 0;
  width: max-content;
  min-width: 100%;
  padding: 12px;
  border-radius: var(--radius-2);
  background: var(--c-white);
  opacity: 0;
  visibility: hidden;
  transition: .2s;
}

.combobox.active .combobox__list {
  visibility: visible;
  opacity: 1;
}

.combobox__item {
  cursor: pointer;
  padding: 8px;
  transition: background var(--transition);
}

.combobox__item:hover {
  background: var(--c-blue-0);
}

.search-bar {
  position: relative;
}

.search-bar__input {
  width: 224px;
  height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-1);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  font-size: 0.875rem;
  font-weight: 500;
}

.header--transparent .search-bar__input {
  color: var(--c-white);
  caret-color: #fff;
}

.header--transparent .search-bar__input:focus {
  border-color: var(--c-white);
}

.header.active .search-bar__input,
.header--white .search-bar__input {
  border-color: var(--c-blue-0);
  color: var(--c-blue-1);
  caret-color: var(--c-blue-1);
}

.header.active .search-bar__input:focus {
  border-color: var(--c-blue-1);
}

.header--white .search-bar__input:focus {
  border-color: var(--c-blue-1);
}

.search-bar__input::placeholder {
  opacity: .4;
}

.search-bar__input:focus::placeholder {
  opacity: 0;
}

.header--transparent .search-bar__input::placeholder {
  color: var(--c-white);
}

.header.active .search-bar__input::placeholder {
  color: var(--c-blue-1);
}

.header--white .search-bar__input::placeholder {
  color: var(--c-blue-1);
}

.search-bar__btn {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.search-bar__btn svg {
  width: 19px;
  height: 19px;
  transition: fill var(--transition);
}

.header--transparent .search-bar__btn svg {
  fill: var(--c-white);
}

.header.active .search-bar__btn svg,
.header--white .search-bar__btn svg {
  fill: var(--c-blue-1);
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
}

.header--transparent {
  background: transparent;
}

.header.active {
  background: var(--c-white);
  box-shadow: 0 0 14px rgba(17, 62, 112, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 16px 0;
}

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  fill: #fff;
}

.header.active .header__burger,
.header--white .header__burger {
  fill: var(--c-blue-1);
}

.header__burger svg {
  width: 18px;
  height: 12px;
}



.header__logo svg {
  width: 132px;
  height: 82px;
  fill: var(--c-white);
  transition: fill var(--transition);
}

.header.active .header__logo svg,
.header--white .header__logo svg {
  fill: var(--c-blue-1);
}

.header__content {
  margin-left: auto;
}

.header__content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.header__content-btn-close {
  position: absolute;
  top: 53px;
  left: 20px;
  display: none;
}

.btn-close {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-x.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.header__content-logo {
  display: none;
}

.header__content-logo svg {
  width: 132px;
  height: 82px;
  fill: var(--c-blue-1);
}



.language-switcher {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.header.active .language-switcher,
.header--white .language-switcher {
  color: var(--c-blue-1);
}

.lang-item {
  position: relative;
  transition: color var(--transition);
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}

.lang-item.current-lang {
  font-weight: 600;
  color: var(--c-orange-1);
}

.lang-item:hover {
  color: var(--c-orange-1);
}

.lang-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  translate: 0 -50%;
  width: 2px;
  height: 14px;
  background: var(--c-white);
}

.lang-item:last-child::after {
  display: none;
}



.main-menu__list {
  display: flex;
  gap: 36px;
  font-weight: 600;
}

.header--transparent .main-menu__list {
  color: #fff;
}

.header.active .main-menu__list,
.header--white .main-menu__list {
  color: var(--c-blue-1);
}



.main-menu__list>li>a {
  position: relative;
  transition: var(--transition);
}

.main-menu__list>li>a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: opacity var(--transition);
}

.header--transparent .main-menu__list>li>a::before {
  background: var(--c-white);
}

.header--white .main-menu__list>li>a::before {
  background: var(--c-blue-1);
}

.header.active .main-menu__list>li>a::before {
  background: var(--c-blue-1);
}

.main-menu__list>li>a:hover::before {
  opacity: 1;
}

.main-menu__list>li>a.active::before {
  opacity: 1;
}

.footer {
  background-color: var(--c-blue-1);
  background-image: url(../images/vector-shell-blue.svg);
  background-repeat: no-repeat;
  background-size: 550px 850px;
  background-position: -20px -50px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 88px 0 54px 0;
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 36px;
  justify-content: space-between;
}



.footer__logo-img {
  width: 246px;
  height: auto;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}



.footer__menu>ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 600;
  color: #fff;
}

.footer__menu-list>li>a {
  position: relative;
  width: fit-content;
  transition: color var(--transition);
}

.footer__menu-list>li>a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-white);
  opacity: 0;
  transition: var(--transition);
}

.footer__menu-list>li>a:hover::before {
  opacity: 1;
}

.subscribe {
  width: 364px;
}

.subscribe__label {
  margin-bottom: 12px;
}

.subscribe__field {
  position: relative;
  width: 100%;
}

.subscribe__inp {
  width: 100%;
  height: 64px;
  padding: 0 16px;
  border-radius: var(--radius-1);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.36);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-white);
}

.subscribe__inp:focus {
  border-color: var(--c-white);
}

.subscribe__inp::placeholder {
  color: var(--c-white);
}

.btn-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 56px;
  background: #fff;
  border-radius: var(--radius-2);
}

.btn-follow svg {
  width: 15px;
  height: 15px;
  fill: var(--c-orange-1);
  transition: rotate var(--transition);
}

.btn-follow:hover svg {
  rotate: 27deg;
}

.subscribe__btn {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
}

.footer__bottom {
  text-align: center;
}

.copiright {
  color: #B0B0B0;
}

.slider {
  position: relative;
  width: 100%;
}

.hero {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volume-btn {
  position: absolute;
  bottom: 150px;
  right: 53px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--c-white);
  background-image: url(../images/volume.svg);
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: center;
  opacity: .6;
  transition: .2s;
}

.volume-btn.muted {
  background-image: url(../images/mute.svg);
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-position: center;
}

.volume-btn:hover {
  opacity: 1;
}

.hero__slider {
  display: none;
}

.hero-screen {
  position: relative;
  min-height: 100vh;
  background: var(--c-black);
}

.top-blackout:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(17, 27, 49, 1) 50%);
  opacity: .5;
}

.hero-screen__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-screen__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--c-white);
}

.hero-screen__content {
  height: 100%;
  padding-top: clamp(80px, 12vh, 130px);
  padding-left: 68px;
  padding-bottom: clamp(60px, 14vh, 160px);
}

.hero-title {
  background: linear-gradient(0deg, rgba(153, 153, 153, 1) 0%, rgba(255, 255, 255, 1) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-screen__title {
  margin-bottom: 18px;
  font-size: clamp(5rem, 6.7vw, 8rem);
}

.hero-screen__subtitle {
  margin-bottom: clamp(36px, 21vh, 240px);
}



.slider__nav-y {
  position: absolute;
  z-index: 90;
  top: 50%;
  left: 40px;
  translate: 0 -50%;
}

.slider__nav-y::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  translate: -50% 0;
  width: 2px;
  height: 70px;
  background: var(--c-white);
}

.slider__nav-y::after {
  content: "";
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  translate: -50% 0;
  width: 2px;
  height: 70px;
  background: var(--c-white);
}

.slider__nav-y .swiper-pagination {
  all: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 52px;
  color: var(--c-white);
}

.slider__nav-y .swiper-pagination-bullet {
  all: unset;
  cursor: pointer;
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: .7s;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
}

.slider__nav-y .swiper-pagination-bullet-active {
  width: 52px;
  height: 52px;
  margin: 0 !important;
  border-color: var(--c-white);
}

/* .slider__nav-y .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}

.slider__nav-y .swiper-pagination-bullet-active::before {
  border-color: var(--c-white);
} */

.pic-cradient {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 300px;
}

.pic-cradient::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.categories {
  overflow: hidden;
  position: relative;
}

.categories__bg {
  height: 500px;
  background-image: url(../images/waves.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.categories__decor {
  position: absolute;
  top: -80px;
  right: -190px;
  width: 500px;
}

.categories__inner {
  position: relative;
}

.categories__title {
  max-width: 553px;
}

.categories__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}

.category-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  transition: var(--transition);
  opacity: .2;
}

.category-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  transition: var(--transition);
  opacity: 0;
}

.category-card:hover::after {
  opacity: .2;
}

.category-card__inner {
  position: relative;
  z-index: 2;
  align-content: flex-end;
  width: 100%;
  height: 428px;
  padding: 38px;
}

.category-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__btn {
  position: absolute;
  top: 22px;
  right: 22px;
}

.category-card__title {
  color: #fff;
}

.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta {
  position: relative;
  background: var(--c-blue-1);
}

.cta--dark {
  background: var(--c-black);
}

.cta__bg {
  opacity: .3;
}

.cta--dark .cta__bg {
  opacity: .4;
}

.cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.cta__heading {
  max-width: 517px;
  margin-bottom: 12px;
}



p.cta__subtitle {
  color: var(--c-white);
}

.cta__subscribe {
  text-align: center;
}

.product-showcase {
  overflow: hidden;
  position: relative;
}

.product-showcase__decor {
  position: absolute;
  top: 50%;
  left: 0;
  translate: -20% -50%;
  width: 550px;
  height: auto;
}

.product-showcase__inner {
  position: relative;
  justify-items: center;
}

.product-showcase__title {
  max-width: 554px;
  margin-bottom: 22px;
  text-align: center;
}

.products-slider .swiper {
  padding: 20px;
  margin: 0 -20px;
}

.products-slider .slider-nav {
  margin-bottom: 8px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--radius-2);
  background: var(--c-white);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow);
}

.product-card__pic {
  position: relative;
  min-height: 268px;
}



.product-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 12px;
}

.product-card__title {
  flex-grow: 1;
  margin-bottom: 12px;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-location {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--c-blue-1);
}

.product-location svg {
  min-width: 16px;
  width: 16px;
  height: 20px;
  fill: var(--c-blue-1);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--c-orange-1);
}

.product-rating svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
  fill: var(--c-orange-1);
}

.product__location-link {
  margin-left: auto;
}

.location-link {
  display: flex;
  align-items: center;
  gap: 12px;
}



.location-link__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--c-orange-1);
}

.location-link__btn img {
  width: auto;
  height: 24px;
}

.reviews {
  position: relative;
  background: var(--c-blue-1);
}

.reviews__bg {
  opacity: .5;
}

.reviews__inner {
  position: relative;
  color: var(--c-white);
}

.reviews__heading p {
  color: #fff;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  user-select: none;
}

.review-card__content {
  position: relative;
  padding: 16px 24px 30px 24px;
  background: var(--c-white);
  border-radius: var(--radius-2) var(--radius-2) var(--radius-2) 0;
  color: var(--c-grey-2);
}

.review-card__content::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 68px;
  height: 38px;
  background-image: url(../images/buble-tail.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.review-card__rating {
  width: 136px;
  margin-bottom: 8px;
}



.review-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 36px;
  row-gap: 0;
}





.dual-content {
  overflow: hidden;
  position: relative;
}

.dual-content__bg {
  height: 300px;
  background-image: url(../images/dunes.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.dual-content__bg .pic-cradient__img {
  max-width: unset;
  width: max-content;
}

.dual-content__inner {
  position: relative;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 80px;
}

.dual-content__heading {
  align-items: flex-start;
  margin-bottom: 12px;
  text-align: left;
}

.dual-content__title {
  color: var(--c-blue-1);
}

.wrapper-support .dual-content__subtitle,
.wrapper-home .dual-content__subtitle {
  color: var(--c-black);
}

.wrapper-support .dual-content__title,
.wrapper-home .dual-content__title {
  color: var(--c-black);
}

.dual-images {
  position: relative;
  height: 450px;
}

.dual-images__pic {
  overflow: hidden;
  position: absolute;
  border-radius: var(--radius-2);
}

.dual-images__pic:nth-child(1) {
  left: 0;
}

.dual-images__pic:nth-child(2) {
  right: 0;
}

.dual-images__pic-a {
  top: 0;
  width: 404px;
  height: 100%;
}

.dual-images__pic-b {
  z-index: 1;
  width: 324px;
  height: 80%;
  top: 50%;
  translate: 0 -50%;
}



.wrapper-home .callback {
  padding-top: 0;
}

.callback__inner {
  display: grid;
  grid-template-columns: 1fr 452px;
  grid-auto-rows: max-content;
  gap: 30px;
}



.callback__heading {
  align-items: flex-start;
  max-width: 552px;
  margin-bottom: 0;
  text-align: left;
}





.callback__contacts {
  grid-column: 1;
  grid-row: 2;
}

.contacts-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  max-width: 310px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  fill: var(--c-blue-1);
  transition: color var(--transition);
  font-size: 1.125rem;
  color: var(--c-grey-2);
}

.contact-item:hover {
  color: var(--c-blue-1);
}

.contact-item svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
}

.callback__form {
  grid-column: 2;
  grid-row: 2 span;
  padding: 0 42px 42px 42px;
  border-radius: 24px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.form__field {
  width: 100%;
}

.form__label {
  margin-bottom: 8px;
  color: var(--c-blue-1);
}

.form__inp {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  background: #F4F4F4;
  border-radius: var(--radius-2);
}

.form__btn {
  width: 100%;
}

.hero-2 {
  overflow: visible;
}



.hero-2__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 800px;
  color: #fff;
}

.hero-2__content {
  max-width: 480px;
  padding: 80px 0;
  translate: 0 -45px;
}

.hero-2__title {
  margin-bottom: 24px;
}

.hero-2__subtitle {
  margin-bottom: 32px;
}



.category-preview .dual-content__bg {
  background-image: url(../images/savana.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.category-preview .pic-cradient::before {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.product-showcase--kenya.section-inner {
  padding-top: 0;
}

.split-section {
  overflow: hidden;
  position: relative;
}

.split-section__inner {
  display: flex;
  justify-content: flex-end;
  padding: 60px 0;
  color: #fff;
}

.split-section__a {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 47%;
  max-width: 900px;
  height: 100%;
  border-radius: 0 var(--radius-2) var(--radius-2) 0;
}



.split-section__b {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 698px;
  min-height: 460px;
  padding: 60px;
  background: #2061AC;
  border-radius: var(--radius-2);
}

.split-section__b-bg {
  opacity: .2;
}

.split-section__heading.heading {
  position: relative;
  align-items: flex-start;
  max-width: 420px;
  margin-bottom: 0;
  text-align: left;
}



p.split-section__subtitle {
  color: #fff;
}

.category-preview--egypt,
.product-showcase--egypt {
  padding-top: 0;
}

#destination-1,
#destination-2,
#destination-3 {
  scroll-margin-top: 114px;
}

.category-preview--egypt .dual-content__bg {
  background-image: url(../images/egypt.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.product {
  padding-top: 32px;
}

.product__head {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.product__head-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}

.product__name {
  font-size: 2.5rem;
}

.product__location,
.product__rating,
.product__location-link {
  text-wrap: nowrap;
}



.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: 28px;
  height: 550px;
}

.product-gallery__main {
  overflow: hidden;
  border-radius: var(--radius-2);
  height: 100%;
}

.product-gallery__main .swiper-button-prev {
  left: 20px;
}

.product-gallery__main .swiper-button-next {
  right: 20px;
}

.product-gallery__main-pic {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.product-gallery__thumbs {
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 44px 0;
}

.product-gallery__thumbs-pic {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 4px;
  opacity: .6;
  transition: opacity var(--transition);
}

.product-gallery__thumbs-pic.swiper-slide-thumb-active {
  opacity: 1;
}







.product-advantages__heading.heading {
  align-items: flex-start;
  max-width: 500px;
  margin-bottom: 32px;
  text-align: left;
}

.product-advantages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-advantage {
  position: relative;
  padding: 40px;
  min-height: 245px;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow);
  background: var(--c-white);
}

.product-advantage:nth-child(even) {
  background: var(--c-blue-0);
}

.product-advantage__text {
  position: relative;
  z-index: 1;
  color: var(--c-grey-2);
}

.product-advantage__icon {
  position: absolute;
  bottom: 14px;
  right: 18px;
}

.room__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.room__pic {
  overflow: hidden;
  position: relative;
  height: 512px;
  border-radius: var(--radius-2);
}

.room__title {
  margin-bottom: 32px;
}

.room__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
}

.room-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 12px;
}

.room-info__slider {
  position: relative;
}

.room-info__galerry {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-2);
}

.room-info__pic {
  overflow: hidden;
  position: relative;
  height: 284px;
}

.room-info__slider .swiper-button-prev {
  left: 0;
  translate: -50% -50%;
}

.room-info__slider .swiper-button-next {
  right: 0;
  translate: 50% -50%;
}



.room-info__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}



.room-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  fill: var(--c-blue-1);
  color: var(--c-blue-1);
}

.room-quantity svg {
  flex: 0 0 24px;
  height: 24px;
}

.room-info__text {
  color: var(--c-grey-2);
}

.hero-3 {
  position: relative;
}



.hero-3__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 800px;
  color: #fff;
}

.hero-3__content {
  padding: 55px 0;
}

.hero-3__title {
  max-width: 715px;
  text-align: center;
}



.dual-section__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 74px;
  align-items: center;
}

.dual-section__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 58px 0;
  color: var(--c-grey-2);
}

.dual-section__heading {
  align-items: flex-start;
  margin-bottom: 0;
  text-align: left;
}

.dual-section__title {
  color: var(--c-black);
}



.dual-section__pic {
  overflow: hidden;
  position: relative;
  min-height: 368px;
  border-radius: var(--radius-2);
}



.advantages {
  position: relative;
  background: var(--c-blue-1);
}

.advantages__bg {
  opacity: .4;
}

.advantages__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  fill: #fff;
  color: var(--c-white);
}

.advantage {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-2);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.2);
}

.advantage__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.advantage__head svg {
  width: 25px;
  height: 20px;
}





.dual-section__content {
  color: var(--c-grey-2);
}

.default-list ul {
  list-style: disc;
  padding-left: 30px;
}



.default-list ul>li::marker {
  font-size: 0.875rem;
}

.callback-hero {
  position: relative;
  min-height: 900px;
}



.callback-hero__wrapper {
  position: relative;
  z-index: 10;
  padding: clamp(60px, 5.2vw, 100px) 0;
}

.callback-hero .callback__title {
  font-size: 2.5rem;
}

.callback-hero .callback__form {
  padding: 42px;
  border-radius: 24px;
  background: var(--c-white);
}

.callback-hero .contact-item {
  color: var(--c-blue-1);
}

.general {
  padding-top: 42px;
}

.general__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}



.general__part ul {
  margin-bottom: 24px;
  color: var(--c-grey-2);
}

.general__inner h1,
.general__inner h2,
.general__inner h3 {
  margin-bottom: 24px;
}

.general__inner h2,
.general__inner h3 {
  color: var(--c-blue-1);
}

.general__inner p {
  color: var(--c-grey-2);
}



.general__links {
  column-count: 2;
  margin-bottom: -28px;
}

.general__links p {
  margin-bottom: 28px;
  transition: color var(--transition);
  font-weight: 700;
  color: var(--c-blue-1);
}

.general__links p:hover {
  color: var(--c-orange-1);
}

.messangers {
  cursor: pointer;
  position: fixed;
  z-index: 90;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--c-orange-1);
  transition: background var(--transition);
}

.messangers:hover {
  background: var(--c-orange-3);
}

.messangers__icon {
  width: 24px;
  height: 24px;
}

.messangers__list {
  position: absolute;
  top: 50%;
  right: calc(100% + 24px);
  translate: 0 -50%;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.messangers.active .messangers__list {
  translate: 0 -50%;
  opacity: 1;
  visibility: visible;
}

.messangers__item {
  translate: 30px 0;
  transition: translate var(--transition);
}

.messangers.active .messangers__item {
  translate: 0 0;
}

.messangers__item:nth-child(1) {
  transition-delay: .04s;
}

.messangers__item:nth-child(2) {
  transition-delay: .02s;
}

.messangers__item:nth-child(3) {
  transition-delay: .0s;
}

.messanger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--c-white);
  border-radius: 50%;
}

.messanger__icon {
  width: 34px;
  height: 34px;
}

.modal-overlay {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: none;
  background: rgb(12, 42, 75, 0.4);
}

.modal-overlay.active {
  display: block;
}

.modal {
  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: none;
  max-width: 400px;
  width: calc(100% - 40px);
  padding: 40px;
  background: #fff;
  border-radius: var(--radius-2);
  opacity: 0;
}

.modal.active {
  display: block;
}

.modal.fade {
  opacity: 1;
}

.modal__button-close {
  position: absolute;
  z-index: 100;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid #F1F2F9;
  transition: var(--transition);
}

.modal__button-close:hover {
  opacity: 1;
}

.modal__button-close-icon {
  pointer-events: none;
  width: 9px;
  height: 9px;
}

.modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
}

.modal-complete {
  text-align: center;
}

.modal-complete__title {
  margin-bottom: 12px;
  color: var(--c-blue-1);
}

.modal-map {
  max-width: 700px;
  padding: 16px;
  border-radius: 32px;
}

.modal-map__inner {
  overflow: hidden;
  position: relative;
  align-content: flex-end;
  height: 468px;
  padding: 12px;
  border: 1px solid #C1E0F4;
  border-radius: 24px;
}

.modal-map .modal__button-close {
  top: 24px;
  right: 24px;
}



.modal-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-map__content {
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: var(--c-white);
}

.modal-map__content-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-map__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 0;
  color: var(--c-blue-1);
}

@media (max-width: 1439px) {
  .callback-hero {
    min-height: 0;
  }
}

@media (max-width: 1360px) {
  .product-showcase__title {
    margin-bottom: 20px;
  }

  .slider-nav {
    margin-bottom: 28px;
  }

  .swiper-button {
    position: unset;
    inset: unset;
    translate: 0 0;
  }

  .swiper-button--y.swiper-button {
    position: absolute;
    left: 50%;
    translate: -50% 0;
  }

  .swiper-button--y.swiper-button-prev {
    top: 0;
    rotate: 90deg;
  }

  .swiper-button--y.swiper-button-next {
    bottom: 0;
    rotate: 90deg;
  }

  .product-gallery__main .swiper-button {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
  }

  .room-info__slider .slider-nav {
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 0;
    translate: 0 50%;
    margin-bottom: 0;
  }

  .room-info__slider .swiper-button-prev {
    position: unset;
    inset: unset;
    translate: 0 0;
  }

  .room-info__slider .swiper-button-next {
    position: unset;
    inset: unset;
    translate: 0 0;
  }
}

@media (max-width: 1299px) {
  .hero-screen__content {
    padding-left: 100px;
  }

  .hero-screen__subtitle {
    margin-bottom: 80px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: clamp(2.8rem, 5.2vw, 3.2rem);
  }

  h3 {
    font-size: 1.375rem;
  }

  .footer__content {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 0;
  }

  .volume-btn {
    right: 44px;
  }

  .categories__list {
    gap: 16px;
  }

  .category-card__inner {
    height: 368px;
    padding: 24px;
  }

  .review-card__content {
    padding: 22px 16px;
  }

  .review-card__content::before {
    width: 44px;
    height: 24px;
  }

  .review-card__bottom {
    gap: 16px;
    row-gap: 0;
  }

  .dual-content__inner {
    gap: 40px;
  }

  .dual-images {
    height: 36vw;
  }

  .dual-images__pic-a {
    width: 63%;
  }

  .dual-images__pic-b {
    width: 47%;
  }

  .hero-2__inner {
    min-height: 700px;
  }



  .split-section__a {
    width: 50%;
    max-width: unset;
  }

  .split-section__b {
    width: 56vw;
    min-height: 360px;
  }

  .product-advantage {
    padding: 30px;
  }

  .room__pic {
    height: unset;
    aspect-ratio: 2.3;
  }

  .room__row {
    gap: 20px;
  }

  .hero-3__inner {
    min-height: 700px;
  }

  .dual-section__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .dual-section__content {
    padding: 30px 0;
    grid-row: 1;
  }

  .advantages__inner {
    gap: 32px;
  }

  .messangers {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 991px) {
  .header__inner {
    padding-top: 20px;
  }

  .header__search-bar {
    order: 1;
    align-self: flex-end;
  }

  .footer__content {
    column-gap: 64px;
  }

  .footer__content-col:nth-child(3) {
    grid-column: 2 span;
  }

  .category-card__inner {
    height: clamp(268px, 34vw, 368px);
  }

  .category-card__btn {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 4px;
  }

  .dual-content__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dual-content__heading {
    text-align: center;
  }

  .dual-content__btn {
    margin: 0 auto;
  }

  .dual-images {
    max-width: 710px;
    width: 100%;
    height: 330px;
  }



  .dual-images__pic-a {
    width: 59%;
  }

  .dual-images__pic-b {
    width: 45.5%;
  }

  .callback.section-inner {
    padding-top: 30px;
  }

  .callback__inner {
    display: flex;
    flex-direction: column;
  }





  .callback__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .split-section__b {
    min-height: 300px;
    padding: 40px;
  }

  .product__head {
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-gallery {
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 12px;
    height: 480px;
  }

  .product-advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .room__pic {
    height: unset;
    aspect-ratio: 2;
  }

  .room__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dual-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dual-section__content {
    padding: 0;
  }

  .advantages__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .advantage:nth-child(3) {
    grid-column: 2 span;
  }

  .advantage__text {
    max-width: 570px;
  }
}

@media (max-width: 767px) {
  h1.small,
  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section-inner {
    padding: 80px 0;
  }

  .section-outer {
    margin-bottom: 80px;
  }

  .btn {
    padding: 0 30px;
  }

  .swiper-button--y.swiper-button {
    top: 50%;
    translate: 0 -50%;
    rotate: unset;
  }

  .swiper-button--y.swiper-button-prev {
    left: 0;
  }

  .swiper-button--y.swiper-button-next {
    bottom: unset;
    left: unset;
    right: 0;
  }

  .header__burger {
    display: flex;
  }

  .header__logo {
    position: relative;
    translate: calc(-95% + -1px) 0;
    left: 50%;
  }

  .header__content {
    position: absolute;
    z-index: 200;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--c-white);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }

  .header__content.active {
    opacity: 1;
    visibility: visible;
  }

  .header__content-inner {
    align-items: center;
    gap: 0;
    max-width: 224px;
    width: 100%;
    min-height: 100dvh;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header__content-btn-close {
    display: block;
  }

  .header__content-logo {
    display: block;
    margin-bottom: 55px;
  }

  .header__search-bar {
    order: 1;
    align-self: unset;
    margin-bottom: 36px;
  }

  .header__content .search-bar__input {
    border-color: var(--c-blue-0);
    color: var(--c-blue-1);
    caret-color: var(--c-blue-1);
  }

  .header__content .search-bar__input:focus {
    border-color: var(--c-blue-1);
  }

  .header__content .search-bar__input::placeholder {
    color: var(--c-blue-1);
  }

  .header__content .search-bar__btn svg {
    fill: var(--c-blue-1);
  }

  .language-switcher {
    order: 1;
    margin-top: auto;
    color: var(--c-blue-1);
  }

  .lang-item::after {
    background: var(--c-blue-1);
  }

  .header__content .main-menu__list {
    flex-direction: column;
    align-items: center;
    color: var(--c-blue-1);
  }

  .footer {
    background-position: -230px -50px;
  }

  .footer__inner {
    padding-top: 60px;
    gap: 36px;
  }

  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .footer__content {
    gap: 36px;
  }

  .hero-screen__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-left: 0;
  }

  .hero-screen__title {
    font-size: clamp(40px, 8.3vw, 4rem);
  }

  .hero-screen__subtitle {
    margin-bottom: 70px;
  }

  .categories__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    gap: 8px;
  }

  .review-card__bottom {
    justify-content: flex-start;
    padding-left: 44px;
  }

  .dual-content__bg {
    height: 260px;
  }

  .split-section__b {
    min-height: 0;
  }

  .category-preview--egypt,
  .product-showcase--egypt {
    padding-top: 0;
  }

  .product__head {
    display: grid;
    grid-auto-columns: repeat(3, max-content);
    column-gap: 24px;
    row-gap: 12px;
    margin-bottom: 24px;
  }

  .product__name {
    grid-column: 2 span;
    font-size: 2rem;
  }

  .product__head-content {
    grid-column: 2 span;
    gap: 16px;
    flex-wrap: wrap;
  }

  .product__location {
    grid-column: 2 span;
  }

  .location-link {
    grid-column: 3;
    grid-row: 1;
  }

  .location-link__label {
    display: none;
  }

  .product-location {
    gap: 10px;
  }

  .product-gallery {
    display: flex;
    flex-direction: column;
    height: unset;
  }

  .product-gallery__main {
    height: 380px;
  }

  .product-gallery__thumbs {
    padding: 0 40px;
  }

  .product-gallery__thumbs-pic {
    height: 100px;
  }

  .product-advantage {
    padding: 20px;
  }

  .product-advantage__icon {
    width: auto;
    height: 80px;
  }

  .room-info {
    padding: 0;
  }

  .room__pic {
    height: unset;
    aspect-ratio: 1.8;
  }

  .room__title {
    margin-bottom: 24px;
  }

  .advantages__inner {
    gap: 24px;
  }

  .advantage {
    grid-column: 2 span;
  }

  .callback-hero .callback__title {
    font-size: 2rem;
  }

  .callback-hero .callback__form {
    padding: 24px;
  }

  .general {
    padding-top: 42px;
  }

  .general__inner {
    gap: 40px;
  }
}

@media (max-width: 757px) {
  .product-showcase__decor {
    translate: -20% -50%;
    width: 460px;
    max-width: 500px;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h1.small,
  h2 {
    font-size: 1.625rem;
  }

  .section-inner {
    padding: 60px 0;
  }

  .section-outer {
    margin-bottom: 60px;
  }

  .heading {
    margin-bottom: 12px;
  }

  .slider-nav {
    margin-bottom: 20px;
  }

  .main-menu {
    align-self: flex-start;
  }

  .header__content .main-menu__list {
    align-items: flex-start;
  }

  .footer__inner {
    padding: 30px 0 46px 0;
    gap: 30px;
  }

  .footer__top {
    gap: 36px;
  }



  .subscribe {
    max-width: 364px;
    width: 100%;
  }

  .top-blackout::before {
    height: 200px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(17, 27, 49, 1) 80%);
  }

  .hero-screen {
    min-height: 779px;
  }

  .hero-screen__bg {
    opacity: .7;
  }

  .hero-screen__content {
    align-items: flex-start;
    padding-left: 0;
  }

  .hero-screen__subtitle {
    max-width: 205px;
  }

  .slider__nav-y {
    top: unset;
    bottom: 120px;
    left: 37px;
    translate: 0 0;
  }







  .hero__btn {
    align-self: flex-end;
  }

  .volume-btn {
    bottom: 100px;
    right: 24px;
  }

  .categories__list {
    gap: 8px;
  }

  .category-card {
    border-radius: 4px;
  }

  .category-card__inner {
    height: clamp(200px, 48vw, 268px);
    padding: 16px;
  }

  .category-card:last-child {
    grid-column: 2 span;
  }

  .category-card:last-child .category-card__inner {
    height: 148px;
  }

  .product-showcase__decor {
    translate: -40% -50%;
  }

  .product-card {
    border-radius: 4px;
  }

  .review-card {
    gap: 6px;
  }

  .dual-content__bg {
    height: 110px;
  }

  .dual-content__inner {
    gap: 30px;
  }

  .dual-content__heading {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 20px;
  }

  .wrapper-home .dual-content__heading {
    gap: 20px;
  }

  .wrapper-home .dual-content__subtitle {
    max-width: 278px;
  }

  .dual-content__btn {
    width: 100%;
    margin: unset;
  }

  .dual-content__btn svg {
    display: none;
  }

  .dual-images {
    height: 64vw;
  }

  .dual-images__pic {
    border-radius: 4px;
  }

  .dual-images__pic-b {
    width: 49%;
  }

  .callback.section-inner {
    padding-top: 20px;
  }

  .callback__inner {
    gap: 24px;
  }

  .callback__heading {
    margin-bottom: 0;
  }

  .callback__contacts {
    order: 1;
  }

  .callback__form {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .hero-2__inner {
    min-height: 670px;
  }

  .hero-2__bg {
    object-position: -100px center;
  }

  .hero-2__title {
    margin-bottom: 12px;
  }

  .hero-2__subtitle {
    margin-bottom: 24px;
  }

  .split-section {
    display: flex;
    flex-direction: column;
  }

  .split-section__inner {
    padding: 0;
  }

  .split-section__a {
    position: relative;
    order: 1;
    width: 100%;
    height: 324px;
    border-radius: 0;
  }

  .split-section__b {
    width: 100%;
    height: 240px;
    padding: 38px 28px;
    margin-bottom: -80px;
    border-radius: 4px;
  }

  .category-preview--egypt,
  .product-showcase--egypt {
    padding-top: 0;
  }

  .product-gallery__main {
    margin: 0 -16px;
    border-radius: 0;
  }

  .product-gallery__thumbs-pic {
    height: 74px;
  }

  .product__name {
    font-size: 1.625rem;
  }

  .product-advantage {
    min-height: 210px;
  }

  .product-advantages__list {
    grid-template-columns: 1fr;
  }

  .room__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .room__pic {
    height: 286px;
    aspect-ratio: unset;
    margin: 0 -16px;
    border-radius: 0;
  }

  .hero-3__inner {
    min-height: 650px;
  }

  .dual-section__heading {
    margin-bottom: 0;
  }

  .dual-section__pic {
    margin: 0 -16px;
    border-radius: 0;
  }

  .callback-hero__wrapper {
    padding: 44px 0 54px 0;
  }

  .callback-hero .callback__title {
    font-size: 1.625rem;
  }

  .callback-hero .callback__form {
    border-radius: 16px;
  }

  .callback-hero .contact-item {
    fill: var(--c-white);
    color: var(--c-white);
  }

  .contacts-group {
    max-width: 290px;
  }

  .contact-item {
    font-size: 1rem;
  }

  .general {
    padding-top: 42px;
  }

  .general__inner {
    gap: 30px;
  }

  .general__links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 0;
  }

  .general__links p {
    margin-bottom: 0;
  }

  .messangers {
    bottom: 16px;
    right: 16px;
    width: 64px;
    height: 64px;
  }

  .messangers__list {
    right: calc(100% + 16px);
    gap: 16px;
  }
}

@media (max-width:479px) {
  .footer__content {
    display: flex;
    flex-direction: column;
  }

  .subscribe {
    width: 320px;
  }
}

@media (max-width: 459px) {
  .advantage {
    padding: 12px;
  }

  .callback-hero .callback__form {
    padding: 16px;
  }
}