.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.white-block {
  position: absolute;
  height: 60px;
  width: 100%;
  background-color: #fff;
}
.white-block-left {
  bottom: 0;
  left: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23fff' d='M0,32L40,58.7C80,85,160,139,240,149.3C320,160,400,128,480,128C560,128,640,160,720,165.3C800,171,880,149,960,138.7C1040,128,1120,128,1200,149.3C1280,171,1360,213,1400,234.7L1440,256L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z'/></svg>") no-repeat;
  background-size: cover;
  background-position: center;
}
.white-block-left--reverse {
  bottom: 0;
  right: 0;
  transform: rotateY(180deg);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23fff' d='M0,32L40,58.7C80,85,160,139,240,149.3C320,160,400,128,480,128C560,128,640,160,720,165.3C800,171,880,149,960,138.7C1040,128,1120,128,1200,149.3C1280,171,1360,213,1400,234.7L1440,256L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z'/></svg>") no-repeat;
  background-size: cover;
  background-position: center;
}
.white-block-right {
  top: 0;
  right: 0;
  transform: rotate(180deg);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23fff' d='M0,32L40,58.7C80,85,160,139,240,149.3C320,160,400,128,480,128C560,128,640,160,720,165.3C800,171,880,149,960,138.7C1040,128,1120,128,1200,149.3C1280,171,1360,213,1400,234.7L1440,256L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z'/></svg>") no-repeat;
  background-size: cover;
  background-position: center;
}
.white-block-left--top-footer {
  position: absolute;
  top: -60px;
  left: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%232e2e2e' d='M0,32L40,58.7C80,85,160,139,240,149.3C320,160,400,128,480,128C560,128,640,160,720,165.3C800,171,880,149,960,138.7C1040,128,1120,128,1200,149.3C1280,171,1360,213,1400,234.7L1440,256L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z'/></svg>") no-repeat;
  background-size: cover;
  background-position: center;
}

.btn-special-animation {
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
  z-index: 0;
}
.btn-special-animation::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  z-index: -1;
}
.btn-special-animation:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.section-heading {
  position: relative;
  margin-bottom: 2em;
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  color: rgb(11, 161, 216);
  letter-spacing: 2px;
}

.section-padding {
  padding: 6em 2em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3.6rem;
  }
  .section-padding {
    padding: 8em 2em;
  }
}
@media (min-width: 992px) {
  .section-heading {
    font-size: 4.8rem;
  }
  .section-padding {
    padding: 10em 2em;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
}

.burger-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 1000;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.burger-btn:hover .burger-btn__bars::after,
.burger-btn:hover .burger-btn__bars::before {
  width: 100%;
}
.burger-btn__box {
  position: relative;
  width: 40px;
  height: 30px;
}
.burger-btn__bars, .burger-btn__bars:after, .burger-btn__bars:before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #fff;
  transition: width 0.3s;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 13px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 27px;
  width: 30%;
  transition-delay: 0.1s;
}

.black-bars-color,
.black-bars-color::after,
.black-bars-color::before {
  background-color: #2e2e2e;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.header__logo {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2em;
}
.header__logo img {
  position: relative;
  height: 90px;
  z-index: 1;
}
.header__logo::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 30px;
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 60% 40%/40% 60% 30% 70%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
  z-index: 0;
}
.header__title-logo {
  position: absolute;
  left: 80px;
  bottom: 35px;
  font-family: "Bebas Neue", cursive;
  font-size: 2rem;
}
.header__title-logo span {
  font-weight: bold;
}
.header__nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  background: radial-gradient(circle at top right, rgb(0, 78, 255) 0%, rgb(0, 212, 255) 100%);
  z-index: 100;
}
.header__nav--active {
  transform: translateX(0);
}
.header__list {
  display: flex;
  flex-direction: column;
  text-align: center;
  list-style: none;
}
.header__item {
  text-transform: uppercase;
  letter-spacing: 5px;
}
.header__link {
  position: relative;
  display: block;
  margin: 0.5em 0;
  padding: 0.5em 2em;
  font-size: 2.8rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.header__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #fff;
  transform: scaleY(0);
  transition: transform 0.3s;
}
.header__link:hover::before {
  transform: scaleY(1);
}
.header__link:hover {
  color: rgba(176, 222, 224, 0.75);
}

@keyframes navItemsAnimation {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
.nav-items-animation {
  animation: navItemsAnimation 1s both;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  text-align: center;
  color: #fff;
  width: 100%;
  overflow: hidden;
}
.hero__mask-container {
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/maldives-small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-attachment: scroll;
  transition: mask-size 0.1s ease, -webkit-mask-size 0.1s ease, opacity 0.3s ease;
}
.hero__circle-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 50px;
  font-size: 1rem;
  font-weight: 500;
}
.hero__circle-text span {
  position: absolute;
  left: 50%;
  transform-origin: 0px 40px;
}
.hero .hero__circle-text span:nth-child(1) {
  transform: rotate(-75deg);
}
.hero {
  /* S */
}
.hero .hero__circle-text span:nth-child(2) {
  transform: rotate(-60deg);
}
.hero {
  /* C */
}
.hero .hero__circle-text span:nth-child(3) {
  transform: rotate(-45deg);
}
.hero {
  /* R */
}
.hero .hero__circle-text span:nth-child(4) {
  transform: rotate(-30deg);
}
.hero {
  /* O */
}
.hero .hero__circle-text span:nth-child(5) {
  transform: rotate(-15deg);
}
.hero {
  /* L */
}
.hero .hero__circle-text span:nth-child(6) {
  transform: rotate(0deg);
}
.hero {
  /* L */
}
.hero .hero__circle-text span:nth-child(7) {
  transform: rotate(15deg);
}
.hero {
  /* D */
}
.hero .hero__circle-text span:nth-child(8) {
  transform: rotate(30deg);
}
.hero {
  /* O */
}
.hero .hero__circle-text span:nth-child(9) {
  transform: rotate(45deg);
}
.hero {
  /* W */
}
.hero .hero__circle-text span:nth-child(10) {
  transform: rotate(60deg);
}
.hero {
  /* N */
}
.hero__scroll-down {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 70px;
  background-color: rgba(0, 138, 187, 0.75);
  border-radius: 50px;
  text-decoration: none;
  padding: 10px 20px;
}
.hero__scroll-down .ti-chevrons-down {
  display: block;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: #eee;
  transition: color 0.3s ease-in-out;
  animation: bounce-top 2.2s infinite both;
}
.hero__scroll-down .ti-chevrons-down:hover {
  color: rgb(11, 161, 216);
}
@keyframes bounce-top {
  0% {
    transform: translateX(-50%) translateY(-25px);
    transform-origin: center bottom;
    animation-timing-function: ease-in;
  }
  25% {
    transform: translateX(-50%) translateY(-25px);
    transform-origin: center bottom;
    animation-timing-function: ease-in;
  }
  50% {
    transform: translateX(-50%) translateY(0);
    transform-origin: center bottom;
    animation-timing-function: ease-out;
  }
  75% {
    transform: translateX(-50%) translateY(-25px);
    transform-origin: center bottom;
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateX(-50%) translateY(-25px);
    transform-origin: center bottom;
    animation-timing-function: ease-out;
  }
}
.hero__scroll-down .ti-chevrons-down {
  transition: color 0.3s;
}
.hero__scroll-down:hover .ti-chevrons-down {
  color: rgba(176, 222, 224, 0.75);
}
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px 20px;
  margin: auto;
  width: fit-content;
  max-height: 44vh;
  height: auto;
}
.hero__title {
  font-family: "Dancing Script", cursive;
  font-size: 4.8rem;
  font-weight: 300;
}
.hero__subtitle {
  font-size: 1.4rem;
  margin-top: 0.8em;
}
.hero__btn {
  margin-top: 1em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  color: #2e2e2e;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1000;
}
.hero__btn::before {
  background-color: #eee;
}
.hero .hero__shadow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 138, 187, 0.75), rgba(176, 222, 224, 0.75), rgba(8, 206, 255, 0.75));
  background-size: 95% 95%;
  background-position: center;
  opacity: 1;
  z-index: -1;
}

.dreams__box {
  display: flex;
  flex-direction: column;
  margin: 2em 0;
}
.dreams__box-img--right {
  transform: rotateY(180deg);
}
.dreams__img {
  width: 100%;
  margin-bottom: 1em;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}
.dreams__title {
  margin-bottom: 0.5em;
}
.dreams__text {
  font-size: 1.4rem;
}

.hero-img {
  position: relative;
  padding: 10em 2em;
  background-image: radial-gradient(circle at center, rgba(0, 138, 187, 0.75), rgba(176, 222, 224, 0.75), rgba(8, 206, 255, 0.75)), url("../assets/img/tahiti-small.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-img__title {
  font-family: "Dancing Script", cursive;
  margin-bottom: 0.5em;
  font-size: 4.8rem;
}
.hero-img__text {
  padding: 1em 0;
}

.islands__card {
  position: relative;
  margin: 1em 0;
  height: 460px;
  color: #fff;
  text-align: center;
  perspective: 1000px;
}
.islands__card:hover .islands__card-img {
  transform: rotateY(-180deg);
  opacity: 0;
}
.islands__card:hover .islands__card-info {
  transform: rotateY(0deg);
  opacity: 1;
}
.islands__card-img {
  padding: 2em;
  height: 100%;
  border-radius: 8px;
  background-size: cover;
  transition: transform 1s, opacity 1s;
}
.islands__card-img--first {
  background-image: linear-gradient(45deg, rgba(8, 206, 255, 0.75), rgba(8, 24, 255, 0.75)), url("../assets/islands-img/malediwy-island.jpg");
}
.islands__card-img--second {
  background-image: linear-gradient(45deg, rgba(26, 219, 245, 0.75), rgba(45, 156, 154, 0.75)), url("../assets/islands-img/santorini-island.jpg");
}
.islands__card-img--third {
  background-image: linear-gradient(45deg, rgba(190, 10, 214, 0.75), rgba(68, 0, 255, 0.75)), url("../assets/islands-img/bali-island.jpg");
}
.islands__card-img-title {
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
}
.islands__card-img-info {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 1.8rem;
}
.islands__card-img-info i {
  margin-right: 0.3em;
}
.islands__card-info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  opacity: 0;
  transform: rotateY(180deg);
  transition: transform 1s, opacity 1s;
}
.islands__card-info--first {
  background: radial-gradient(circle at top right, rgb(0, 78, 255) 0%, rgb(0, 212, 255) 100%);
}
.islands__card-info--second {
  background: linear-gradient(45deg, rgba(26, 219, 245, 0.75), rgba(45, 156, 154, 0.75));
}
.islands__card-info--third {
  background: linear-gradient(45deg, rgba(190, 10, 214, 0.75), rgba(68, 0, 255, 0.75));
}
.islands__card-info-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.2em;
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
}
.islands__card-info-list {
  margin: 0 auto;
  width: 70%;
  list-style: none;
}
.islands__card-info-list-item {
  padding: 1em;
  font-size: 1.4rem;
  border-bottom: 1px solid #eee;
}
.islands__card-info-list-item:last-child {
  border-bottom: none;
}
.islands__card-info-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2em;
  padding: 1em;
  border-radius: 8px;
  width: 80%;
  border: none;
  background-color: #00ffaa;
  cursor: pointer;
}
.islands__card-info-btn::before {
  background-color: #0fe29c;
}

.offers {
  position: relative;
  background: radial-gradient(circle at center, rgba(0, 138, 187, 0.75), rgba(176, 222, 224, 0.75), rgba(8, 206, 255, 0.75));
  overflow: hidden;
}
.offers .section-heading {
  color: #fff;
}
.offers__option {
  margin: 1em 0;
  box-shadow: 5px 5px 10px rgba(46, 46, 46, 0.18);
  background-color: #fff;
  overflow: hidden;
}
.offers__option-wrapperImg {
  overflow: hidden;
  flex: 0.7;
  display: flex;
}
.offers__option-wrapperImg--right {
  margin-bottom: 0.2em;
}
.offers__option-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.offers__option-img:hover {
  transform: scale(1.1);
}
.offers__option-info {
  flex: 1;
  padding: 2em;
}
.offers__option-heading {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
  font-weight: 300;
}
.offers__option-text {
  margin-bottom: 0.5em;
  font-size: 1.3rem;
  color: #2e2e2e;
}
.offers__option-btn {
  margin-top: 1em;
  padding: 0.8em;
  width: 100%;
  color: #fff;
  background-color: rgb(11, 161, 216);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.offers__option-btn::before {
  background-color: rgba(0, 138, 187, 0.75);
}

@media (max-width: 767px) {
  .reviews.section-padding {
    padding: 6em 0;
  }
}
.reviews .swiper {
  padding: 0 2em 60px 2em;
  z-index: 0;
}
@media (min-width: 768px) {
  .reviews .swiper {
    padding: 0 0.5em 60px 0.5em;
  }
}
@media (min-width: 992px) {
  .reviews .swiper {
    padding: 0 2em 60px 2em;
  }
}
.reviews .swiper-wrapper {
  margin-top: 4em;
  margin-bottom: 1em;
}
.reviews .swiper-slide {
  height: auto;
  padding: 2.5em 2em 2em 2em;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(46, 46, 46, 0.12);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .reviews .swiper-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(46, 46, 46, 0.2);
  }
}
@media (max-width: 991px) {
  .reviews .swiper-slide.swiper-slide-active {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(46, 46, 46, 0.15);
  }
}
@media (max-width: 575px) {
  .reviews .swiper-slide {
    padding: 2em 1.5em 1.5em 1.5em;
  }
}
@media (min-width: 1200px) {
  .reviews .swiper-slide {
    padding: 3em 2.5em 2.5em 2.5em;
  }
}
.reviews__box-img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.reviews__box-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .reviews__box-img img {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 992px) {
  .reviews__box-img img {
    width: 120px;
    height: 120px;
  }
}
.reviews__box-quote {
  text-align: center;
}
.reviews__box-heading {
  margin: 1.5em 0 0.5em 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(11, 161, 216);
}
@media (min-width: 768px) {
  .reviews__box-heading {
    font-size: 2.1rem;
  }
}
@media (min-width: 992px) {
  .reviews__box-heading {
    margin: 1.8em 0 1em 0;
  }
}
.reviews__box-heading i {
  font-size: 2rem;
  color: #00ffaa;
}
@media (min-width: 768px) {
  .reviews__box-heading i {
    font-size: 2.5rem;
  }
}
.reviews__box-text {
  margin: 1em 0;
  font-size: 1.1rem;
  color: #2e2e2e;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .reviews__box-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .reviews__box-text {
    font-size: 1.3rem;
  }
}
.reviews__box-author {
  font-size: 1.2rem;
  color: rgb(11, 161, 216);
}
@media (min-width: 768px) {
  .reviews__box-author {
    font-size: 1.4rem;
  }
}
.reviews .swiper-pagination {
  bottom: 10px;
}
.reviews .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 255, 170, 0.3);
  opacity: 1;
  transition: all 0.3s;
}
.reviews .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00ffaa;
  transform: scale(1.2);
}
.reviews .swiper-button-prev,
.reviews .swiper-button-next {
  display: none;
  margin: -7em 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .reviews .swiper-button-prev,
  .reviews .swiper-button-next {
    display: flex;
  }
}
.reviews .swiper-button-prev::after,
.reviews .swiper-button-next::after {
  font-size: 3.5rem;
}

.contact {
  position: relative;
  background-color: #eee;
  overflow: hidden;
}
.contact__form, .contact__form-top {
  display: flex;
  flex-direction: column;
}
.contact__form-label {
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.contact__form-input {
  margin-bottom: 2em;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
}
.contact__form-textarea {
  margin-bottom: 2em;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  min-height: 150px;
}
.contact__form-btn {
  align-self: flex-end;
  padding: 1em;
  width: 100%;
  max-width: 300px;
  color: #fff;
  border: none;
  border-radius: 8px;
  background-color: rgb(11, 161, 216);
  cursor: pointer;
}
.contact__form-btn::before {
  background-color: rgba(0, 138, 187, 0.75);
}

.footer {
  position: relative;
  color: #fff;
  background-color: #2e2e2e;
}
.footer .wrapper {
  padding: 6em 2em 2em;
}
.footer__box {
  font-size: 1.4rem;
}
.footer__box-desktop {
  display: none;
}
.footer__box-title {
  margin-bottom: 1em;
  font-size: 3rem;
  text-transform: uppercase;
}
.footer__box-social {
  margin: 2em 0 1em;
}
.footer__box-link {
  padding: 0 0.3em;
  font-size: 3.6rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__box-link:first-child {
  padding-left: 0;
}
.footer__box-link:hover {
  color: #eee;
}
.footer__bottom-text {
  padding: 2em;
  text-align: center;
}

/* RESPONSIVE MEDIA*/
@media (max-width: 375px) {
  .islands__card-info-list {
    width: 90%;
  }
}
@media (min-width: 576px) {
  .dreams__box {
    flex-direction: row;
    justify-content: space-between;
  }
  .dreams__box-text {
    width: 55%;
  }
  .dreams__box-text--right {
    text-align: right;
  }
  .dreams__box-img {
    width: 40%;
  }
  .dreams__box-img--right {
    order: 1;
  }
  .dreams__img {
    margin-bottom: 0;
    max-height: 300px;
  }
  .offers__option {
    display: flex;
    margin: 2em 0;
    width: 100%;
  }
  .offers__option-wrapperImg--right {
    margin-bottom: 0;
    margin-left: 0.2em;
    order: 1;
    display: flex;
  }
  .offers__option-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .offers__option-heading {
    margin-bottom: 0.5em;
    font-size: 3.6rem;
  }
  .offers__option-btn {
    padding: 1em;
  }
}
@media (min-width: 768px) {
  .white-block {
    height: 50px;
    width: 45%;
  }
  .white-block-left--top-footer {
    top: -50px;
  }
  .hero__title {
    font-size: 6rem;
  }
  .hero__subtitle {
    font-size: 2rem;
  }
  .hero__btn {
    margin-top: 2em;
    font-size: 1.6rem;
  }
  .dreams__text {
    font-size: 1.8rem;
  }
  .hero-img {
    padding: 30em 2em;
  }
  .hero-img hr {
    margin: 0 auto;
    width: 70%;
  }
  .hero-img__text {
    font-size: 2rem;
  }
  .islands__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .islands__card {
    margin: 1em;
    width: 45%;
  }
  .footer__boxes {
    display: flex;
    justify-content: space-between;
  }
  .footer__box-desktop {
    display: block;
  }
  .footer__box {
    margin: 0 2em;
    width: 25%;
  }
  .footer__box:first-child {
    width: 50%;
  }
  .footer__box-title {
    font-size: 2.4rem;
  }
  .footer__box-list {
    list-style: none;
  }
  .footer__box-list-item {
    margin-bottom: 1em;
  }
  .footer__box-list-item a {
    color: #eee;
    text-decoration: none;
  }
}
@media (min-width: 992px) {
  .burger-btn {
    top: 50px;
    right: 50px;
  }
  .hero__mask-container {
    background-image: url("../assets/img/maldives-big.jpg");
    -webkit-mask-image: url("../assets/img/maldives-big.svg");
    mask-image: url("../assets/img/maldives-big.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 90vw;
    mask-size: 90vw;
  }
  .header,
  .hero__content,
  .hero__btn {
    opacity: 0;
    z-index: -1;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .header__link {
    font-size: 3.8rem;
  }
  .dreams__box {
    margin: 5em 0;
  }
  .dreams__box-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 2.5em;
  }
  .dreams__title {
    font-size: 3rem;
  }
  .dreams__text {
    font-size: 2rem;
  }
  .hero-img {
    padding: 40em 2em;
    background-image: radial-gradient(circle at center, rgba(0, 138, 187, 0.75), rgba(176, 222, 224, 0.75), rgba(8, 206, 255, 0.75)), url("../assets/img/tahiti-big.jpg");
  }
  .hero-img__title {
    font-size: 7.2rem;
  }
  .hero-img hr {
    width: 60%;
    max-width: 900px;
  }
  .offers {
    background-image: radial-gradient(circle at center, rgba(0, 138, 187, 0.75), rgba(176, 222, 224, 0.75), rgba(8, 206, 255, 0.75));
  }
  .offers__option {
    height: 400px;
  }
  .offers__option-wrapperImg--right {
    width: 100%;
  }
  .offers__option-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 1100px) {
  .islands__card {
    width: 30%;
  }
}
