.featured-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  row-gap: 20px;
  padding: 15px 0 58px;
}

.featured-in__title {
  line-height: 42px;
  text-align: center;
  grid-column: 1 / span 2;
  margin-bottom: 0;
}

.featured-in__image {
  width: auto;
  margin-top: 6px;
}

@media (min-width: 992px) {
  .featured-in {
    display: flex;
    flex-flow: row;
    gap: 67px;
    justify-content: space-between;
    padding: 58px 15px;
  }
}

.content-blocks {
  padding-top: 0;
}

.content-block {
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.content-block:last-child {
  margin-bottom: 123px;
}

.content-block__column {
  position: relative;
  width: 100%;
}

.content-block__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 23px;
}

.content-block__title-bold {
  font-weight: 700;
}

.content-block__description {
  font-size: 14px;
  line-height: 24px;
  color: #33333c;
}

.content-block__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.content-block__overlay-image {
  position: absolute;
  /*width: 39%;*/
  width: 189px;
  aspect-ratio: 1;
  border: 5px solid #fff;
  border-radius: 50%;
  bottom: -94.5px;
  left: 21px;
}

@media (min-width: 992px) {
  .content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
  }

  .content-block__image {
    height: 100%;
  }

  .content-block:last-child {
    margin-bottom: 62px;
  }

  .content-block__title {
    font-size: 30px;
    line-height: 42px;
    font-weight: 400;
    margin-bottom: 34px;
  }

  .content-block__title-bold {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
  }

  .content-block__description {
    font-size: 16px;
  }
}

.tripadvisor-reviews {
  padding-top: 37px;
  background-color: #fafafd;
}

.tripadvisor-reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tripadvisor-reviews__title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}

.tripadvisor-reviews__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 0;
}

.tripadvisor-reviews__google-logo,
.tripadvisor-reviews__google-logo_mobile {
  display: none;
}

.tripadvisor-reviews__google-logo_mobile {
  display: block;
  align-self: center;
  margin-top: 16px;
}

.tripadvisor-review {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 32px 24px;
}

.tripadvisor-review__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tripadvisor-review__tripadvisor-logo {
  height: 27px;
}

.tripadvisor-review__grade-wrapper {
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: center;
  justify-content: flex-end;
}

.tripadvisor-review__grade-mark {
  width: 16px;
  height: 16px;
  background-color: #34e0a1;
  border-radius: 50%;
}

.tripadvisor-review__grade {
  margin-left: 5px;
  font-size: 16px;
  line-height: 22px;
  color: #33333c;
}

.tripadvisor-review__content {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.tripadvisor-review__author {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .tripadvisor-reviews-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    row-gap: 16px;
  }

  .tripadvisor-reviews__title-wrapper {
    grid-column: 1 / span 2;
    margin-bottom: 0;
  }

  .tripadvisor-reviews__title {
    font-size: 30px;
    line-height: 42px;
  }

  .tripadvisor-review {
    grid-column: span 1;
  }

  .tripadvisor-review__grade {
    margin-left: 10px;
  }

  .tripadvisor-reviews__google-logo_mobile {
    grid-column: span 2;
    justify-self: center;
  }
}

@media (min-width: 992px) {
  .tripadvisor-reviews {
    padding-top: 35px;
  }

  .tripadvisor-reviews-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }

  .tripadvisor-reviews__title-wrapper {
    grid-column: 1 / span 5;
  }

  .tripadvisor-reviews__google-logo {
    display: block;
  }

  .tripadvisor-reviews__google-logo_mobile {
    display: none;
  }

  .tripadvisor-review {
    gap: 20px;
    padding: 32px 42px 55px;
  }

  .tripadvisor-review_span_3 {
    grid-column: span 3;
  }

  .tripadvisor-review_span_2 {
    grid-column: span 2;
  }
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, #00344c 0%, #007ab2 100%);
  gap: 23px;
  padding: 47px 28px 64px;
}

.cta-section_color_orange {
  background: linear-gradient(90deg, #b7650c 0%, #fdd522 100%);
}

.cta-section__title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.cta-section__description {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.cta-section__button {
  padding: 15px 30px;
  background-color: #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #00344c;
  margin-top: 12px;
  cursor: pointer;
}

.cta-section__button:visited {
  color: #00344c;
}

.cta-section__button:hover {
  color: #2686f2;
}

@media (min-width: 992px) {
  .cta-section {
    gap: 19px;
    padding: 69px 28px 81px;
  }

  .cta-section__title {
    font-size: 30px;
    margin-bottom: 0;
  }

  .cta-section__description {
    font-size: 16px;
  }

  .cta-section__button {
    margin-top: 19px;
  }
}

.discover {
  position: relative;
  padding: 0 0 299px;
}

.discover__image {
  height: 505px;
  width: 100%;
  object-fit: cover;
}

.discover__content {
  position: absolute;
  right: 16px;
  bottom: 39px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 16px;
  padding: 28px 25px 40px;
  background-color: #fafafd;
}

.discover__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 0;
}

.discover__description {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

@media (min-width: 992px) {
  .discover {
    padding: 0 0 219px;
  }

  .discover__content {
    margin: 0;
    padding: 55px 64px 80px;
    left: 130px;
    bottom: 108px;
  }

  .discover__content_float_right {
    left: unset;
    right: 130px;
  }

  .discover__title {
    font-size: 30px;
    line-height: normal;
  }

  .discover__description {
    font-size: 16px;
  }
}

.blue-accent {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 0;
  padding-bottom: 34px;
}

.blue-accent__line {
  width: 96px;
  background-color: #2686f2;
  height: 3px;
}

.blue-accent__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin: 23px 0 0;
}

.blue-accent__description {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #33333c;
}

@media (min-width: 992px) {
  .blue-accent {
    gap: 25px;
    padding-bottom: 94px;
  }

  .blue-accent__title {
    font-size: 30px;
    line-height: normal;
    margin-top: 12px;
  }

  .blue-accent__description {
    font-size: 16px;
    line-height: 22px;
  }
}

.blocks-two {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 0;
  padding-bottom: 42px;
}

.image-block {
  display: flex;
  flex-direction: column;
  background-color: #f6f7fc;
}

.image-block__column:first-child {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 25px;
}

.image-block__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 0;
}

.image-block__description {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 0;
  color: #33333c;
}

.image-block__button {
  display: flex;
  padding: 15px 30px;
  border-radius: 4px;
  background-color: #01354d;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  cursor: pointer;
}

.image-block__button:hover {
  background-color: #2686f2;
  color: #fff;
}

.image-block__image {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .image-block__image {
    max-height: 100%;
  }

  .blocks-two {
    gap: 79px;
    padding-bottom: 119px;
  }

  .image-block {
    flex-direction: row;
  }

  .image-block:nth-child(2) {
    background-color: transparent;
  }

  .image-block_reversed {
    flex-direction: row-reverse;
  }

  .image-block__column {
    flex: 0 50%;
  }

  .image-block:not(.image-block_reversed)
    > .image-block__column:first-child {
    padding-right: 70px;
  }

  .image-block_reversed .image-block__column:first-child {
    padding-left: 70px;
  }

  .image-block__column:first-child {
    flex-direction: column;
    gap: 30px;
    padding: 46px;
    justify-content: center;
  }

  .image-block__title {
    font-size: 28px;
    line-height: normal;
  }

  .image-block__description {
    font-size: 16px;
    line-height: 22px;
  }

  .image-block__button {
    margin-top: 10px;
    max-width: max-content;
  }
}

.home-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 0;
  padding-bottom: 50px;
}

.home-card {
  display: flex;
  flex-direction: column;
  background-color: #f6f7fc;
}

.home-card__column {
  position: relative;
}

.home-card__column:last-child {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 60px 25px 34px;
}

.home-card__title {
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 0;
}

.home-card__description {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 0;
  color: #33333c;
}

.home-card__button {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #2686f2;
  margin-top: 6px;
  cursor: pointer;
}

.home-card__button:hover {
  color: #01354d;
}

.home-card__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.home-card__image-overlay {
  position: absolute;
  left: 38px;
  bottom: -45px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .home-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .home-cards {
    padding-bottom: 99px;
  }

  .home-card__column:last-child {
    flex-grow: 1;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    padding: 60px 38px 53px;
  }

  .home-card__title {
    font-size: 28px;
    line-height: normal;
  }

  .home-card__description {
    flex-grow: 1;
    font-size: 16px;
    line-height: 22px;
  }

  .home-card__button {
    margin-top: 10px;
  }
}

.booking-reviews {
  background-color: #fafafd;
  padding-top: 37px;
  padding-bottom: 42px;
}

.booking-reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-reviews__title-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 11px;
  gap: 18px;
}

.booking-reviews__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 0;
}

.booking-reviews__booking-logo {
  height: 28px;
  width: 126px;
}

.booking-review {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 32px 24px;
}

.booking-review__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-review__booking-logo {
  height: 27px;
}

.booking-review__grade {
  font-size: 16px;
  line-height: 22px;
  color: #33333c;
}

.booking-review__content {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.booking-review__author {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 0;
}

.booking-review__author_bold {
  font-weight: 700;
}

@media (min-width: 768px) {
  .booking-reviews-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .booking-reviews__title-wrapper {
    flex-direction: row;
    grid-column: 1 / span 2;
    margin-bottom: 22px;

    justify-content: space-between;
    align-items: center;
  }

  .booking-reviews__title {
    font-size: 30px;
    line-height: normal;
  }

  .booking-review {
    grid-column: span 1;
  }
}

@media (min-width: 992px) {
  .booking-reviews {
    padding-top: 69px;
    padding-bottom: 89px;
  }

  .booking-reviews-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }

  .booking-reviews__title-wrapper {
    grid-column: 1 / span 5;
  }

  .booking-review {
    gap: 30px;
    padding: 32px 42px 55px;
  }

  .booking-review__content {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 5px;
  }

  .booking-review_span_3 {
    grid-column: span 3;
  }

  .booking-review_span_2 {
    grid-column: span 2;
  }
}

.find-us {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 0;
  padding-bottom: 70px;
}

.find-us__map {
  width: 100%;
  height: 560px;
  border: none;
}

.find-us__instructions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 16px;
  margin-top: -77px;
  z-index: 1;
}

.find-us__instructions {
  display: flex;
  flex-direction: column;
  background-color: #fafafd;
  gap: 15px;
  padding: 25px 25px 58px;
}

.find-us__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin: 0;
}

.find-us__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 23px;
}

.find-us__description {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 0;
}

.find-us__call-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.find-us__call-us-icon {
  margin-bottom: 22px;
}

.find-us__call-us-description {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
  color: #000;
}

.find-us__call-us-description_bold {
  font-weight: 600;
}

.find-us__call-us-description_bold:hover {
  color: #2686f2;
}

@media (min-width: 768px) {
  .find-us {
    padding-bottom: 84px;
  }

  .find-us__instructions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 20px;
    margin-top: -136px;
  }

  .find-us__instructions {
    padding: 44px;
  }

  .find-us__call-us {
    background-color: #fafafd;
    padding: 112px 44px 44px;
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .find-us__instructions-wrapper {
    gap: 37px;
    margin-top: -106px;
  }
}

.book-now {
  position: relative;
  padding-top: 0;
  padding-bottom: 68px;
}

.book-now__container {
  position: relative;
  z-index: 3;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  margin: 0 auto;
}

.book-now__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 87px;
  height: calc(100% - 87px);
  background-color: #fafafd;
}

.book-now__images {
  white-space: nowrap;
  overflow: hidden;
  width: 354px;
  margin: 0 auto;
  max-width: 100%;
}

.book-now__image {
  flex-shrink: 0;
  position: relative;
  /*width: 39%;*/
  width: 100px;
  aspect-ratio: 1;
  border: 6px solid #fff;
  border-radius: 50%;
  left: 35px;
  text-align: center;
}

.book-now__image:nth-child(2) {
  left: 0;
  z-index: 2;
  width: 154px;
  border-width: 9px;
}

.book-now__image:nth-child(3) {
  left: -35px;
}

.book-now__title {
  margin: 0 20px;
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.book-now__description {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 20px;
  text-align: center;
}

.book-now__button {
  background-color: #2686f2;
  padding: 15px 50px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  cursor: pointer;
}

.book-now__button:visited {
  color: #fff;
}

.book-now__button:hover {
  background-color: #01354d;
  color: #fff;
}

@media (max-width: 300px) {
  .book-now__images {
    position: relative;
    width: 200px;
    left: -5%;
  }

  .book-now__image {
    left: 5%;
    width: 30%;
  }

  .book-now__image:nth-child(2) {
    width: 45%;
    left: 0;
  }

  .book-now__image:nth-child(3) {
    left: -5%;
  }
}

@media (min-width: 768px) {
  .book-now {
    gap: 45px;
    padding-bottom: 94px;
  }

  .book-now__overlay {
    top: 141px;
    height: calc(100% - 141px);
  }

  .book-now__images {
    margin: 0;
    width: auto;
  }

  .book-now__image {
    width: 189px;
    border-width: 4px;
    left: 50px;
  }

  .book-now__image:nth-child(2) {
    width: 278px;
    border-width: 6px;
    left: 0;
  }

  .book-now__image:nth-child(3) {
    left: -50px;
  }

  .book-now__title {
    margin: 0;
    font-size: 30px;
    line-height: normal;
  }

  .book-now__description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
  }
}

.featured-in::before,
.featured-in::after,
.content-block::before,
.content-block::after,
.tripadvisor-reviews-wrapper::before,
.tripadvisor-reviews-wrapper::after,
.blue-accent::before,
.blue-accent::after,
.blocks-two::before,
.blocks-two::after,
.home-cards::before,
.home-cards::after,
.booking-reviews-wrapper::before,
.booking-reviews-wrapper::after,
.find-us__instructions-wrapper::before,
.find-us__instructions-wrapper::after {
  display: none;
}
