@import url("https://fonts.googleapis.com/css?family=Rethink+Sans:regular,500,600,700,800&display=swap");
:root {
  --primary: #2B2A29;
  --secondary: #ffffff;
  --accent: #0A507A;
  --text-primary: #2B2A29;
  --text-secondary: #ffffff;
  --text-accent: #0A507A;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #2B2A29;
  line-height: 1.25;
  font-family: "Rethink Sans", serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Rethink Sans", serif;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}

input,
textarea {
  width: 100%;
}

label {
  display: inline-block;
}

button,
select,
option {
  cursor: pointer;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 1740px;
  padding: 0 10px;
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ibg--top {
  -o-object-position: top;
     object-position: top;
}
.ibg--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}
.ibg--left {
  -o-object-position: left;
     object-position: left;
}
.ibg--right {
  -o-object-position: right;
     object-position: right;
}
.ibg--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #fff;
}
.header__container {
  padding-block: 2.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 1920px) and (min-width: 110em) {
  .header__container {
    padding-block: 2.5rem;
  }
}
@media (max-width: 1920px) and (min-width: 20em) and (max-width: 110em) {
  @supports (padding-block: clamp( 1.25rem , 0.9722222222rem  +  1.3888888889vw , 2.5rem )) {
    .header__container {
      padding-block: clamp( 1.25rem , 0.9722222222rem  +  1.3888888889vw , 2.5rem );
    }
  }
  @supports not (padding-block: clamp( 1.25rem , 0.9722222222rem  +  1.3888888889vw , 2.5rem )) {
    .header__container {
      padding-block: calc(1.25rem + 1.25 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 1920px) and (max-width: 20em) {
  .header__container {
    padding-block: 1.25rem;
  }
}
@media (max-width: 29.99875em) {
  .header__container {
    font-size: 1rem;
  }
}
.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 0.5em 1em;
  background-color: var(--accent);
  border-radius: 1.875rem;
  color: var(--text-secondary);
}

@media (max-width: 61.99875em) {
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    overflow: auto;
    padding: 7.5rem 0.9375rem 0.9375rem 0.9375rem;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
    background-color: var(--accent);
  }
  .menu--open .menu__body {
    top: 0;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--text-accent);
}
@media (max-width: 61.99875em) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: var(--text-secondary);
    font-size: 1.75rem;
  }
}
.menu__link {
  padding: 0.5em;
}
@media (any-hover: hover) {
  .menu__link:hover {
    text-decoration: underline;
  }
}

.icon-menu {
  display: none;
  width: 3.125rem;
  height: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 61.99875em) {
  .icon-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.icon-menu span {
  width: 100%;
  height: 4px;
  background-color: var(--accent);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.menu--open .icon-menu span {
  background-color: var(--text-secondary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 11.5625rem;
  padding-bottom: 5rem;
}
@media (max-width: 1920px) {
  .hero {
    padding-bottom: 4.375rem;
  }
}
@media (max-width: 1920px) and (min-width: 110em) {
  .hero {
    padding-top: 10.9375rem;
  }
}
@media (max-width: 1920px) and (min-width: 20em) and (max-width: 110em) {
  @supports (padding-top: clamp( 8.125rem , 7.5rem  +  3.125vw , 10.9375rem )) {
    .hero {
      padding-top: clamp( 8.125rem , 7.5rem  +  3.125vw , 10.9375rem );
    }
  }
  @supports not (padding-top: clamp( 8.125rem , 7.5rem  +  3.125vw , 10.9375rem )) {
    .hero {
      padding-top: calc(8.125rem + 2.8125 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 1920px) and (max-width: 20em) {
  .hero {
    padding-top: 8.125rem;
  }
}
.hero__img-title {
  position: relative;
  z-index: -1;
  margin-bottom: 0.9375rem;
  width: 100%;
}
.hero__label {
  position: relative;
  z-index: 2;
  color: var(--text-secondary);
  font-size: 1.25rem;
  border-radius: 1.875rem;
  background-color: var(--primary);
  padding: 0.625rem 1.25rem;
  display: inline-block;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 61.99875em) {
  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.5rem;
  margin-top: auto;
}
@media (min-width: 120em) {
  .hero__info {
    gap: 7.5rem;
  }
}
@media (min-width: 90em) and (max-width: 120em) {
  @supports (gap: clamp( 3.125rem , -10rem  +  14.5833333333vw , 7.5rem )) {
    .hero__info {
      gap: clamp( 3.125rem , -10rem  +  14.5833333333vw , 7.5rem );
    }
  }
  @supports not (gap: clamp( 3.125rem , -10rem  +  14.5833333333vw , 7.5rem )) {
    .hero__info {
      gap: calc(3.125rem + 4.375 * (100vw - 90rem) / 30);
    }
  }
}
@media (max-width: 90em) {
  .hero__info {
    gap: 3.125rem;
  }
}
.hero__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 30.625rem;
}
@media (min-width: 110em) {
  .hero__info-list {
    row-gap: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (row-gap: clamp( 0.625rem , 0.5138888889rem  +  0.5555555556vw , 1.125rem )) {
    .hero__info-list {
      row-gap: clamp( 0.625rem , 0.5138888889rem  +  0.5555555556vw , 1.125rem );
    }
  }
  @supports not (row-gap: clamp( 0.625rem , 0.5138888889rem  +  0.5555555556vw , 1.125rem )) {
    .hero__info-list {
      row-gap: calc(0.625rem + 0.5 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .hero__info-list {
    row-gap: 0.625rem;
  }
}
@media (max-width: 61.99875em) {
  .hero__info-list {
    max-width: 100%;
  }
}
.hero__info-item {
  padding: 0.625rem 1.25rem;
  color: var(--text-accent);
  border: 1px solid var(--accent);
  border-radius: 1.875rem;
  font-weight: bold;
}
@media (min-width: 110em) {
  .hero__info-item {
    font-size: 1.625rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 0.875rem , 0.7083333333rem  +  0.8333333333vw , 1.625rem )) {
    .hero__info-item {
      font-size: clamp( 0.875rem , 0.7083333333rem  +  0.8333333333vw , 1.625rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.7083333333rem  +  0.8333333333vw , 1.625rem )) {
    .hero__info-item {
      font-size: calc(0.875rem + 0.75 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .hero__info-item {
    font-size: 0.875rem;
  }
}
@media (max-width: 29.99875em) {
  .hero__info-item {
    padding: 0.5rem 0.75rem;
  }
}
.hero__news {
  margin-top: -2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 61.99875em) {
  .hero__news {
    margin-top: 0.625rem;
    margin-bottom: 1.875rem;
  }
}
.hero__news-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 24.5rem;
  padding: 3.125rem 1.25rem;
  border-radius: 0.625rem;
  background-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6.25rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 1920px) {
  .hero__news-box {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 61.99875em) {
  .hero__news-box {
    -ms-flex-item-align: auto;
        align-self: auto;
    max-width: 100%;
  }
}
.hero__news-title {
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 110em) {
  .hero__news-title {
    font-size: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 1.5rem , 1.3888888889rem  +  0.5555555556vw , 2rem )) {
    .hero__news-title {
      font-size: clamp( 1.5rem , 1.3888888889rem  +  0.5555555556vw , 2rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.3888888889rem  +  0.5555555556vw , 2rem )) {
    .hero__news-title {
      font-size: calc(1.5rem + 0.5 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .hero__news-title {
    font-size: 1.5rem;
  }
}
.hero__news-title:not(:last-child) {
  margin-bottom: 0.3125rem;
}
.hero__news-time {
  margin-bottom: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 110em) {
  .hero__news-time {
    font-size: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 1.5rem , 1.3888888889rem  +  0.5555555556vw , 2rem )) {
    .hero__news-time {
      font-size: clamp( 1.5rem , 1.3888888889rem  +  0.5555555556vw , 2rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.3888888889rem  +  0.5555555556vw , 2rem )) {
    .hero__news-time {
      font-size: calc(1.5rem + 0.5 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .hero__news-time {
    font-size: 1.5rem;
  }
}
.hero__news-link {
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 1.875rem;
  font-weight: 800;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.hero__news-img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 352/240;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 29.99875em) {
  .hero__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.hero__buttons-activities {
  padding: 0.625rem 1.25rem;
  border-radius: 1.875rem;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--primary);
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 120em) {
  .hero__buttons-activities {
    font-size: 2rem;
  }
}
@media (min-width: 30em) and (max-width: 120em) {
  @supports (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.5555555556vw , 2rem )) {
    .hero__buttons-activities {
      font-size: clamp( 1.5rem , 1.3333333333rem  +  0.5555555556vw , 2rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.5555555556vw , 2rem )) {
    .hero__buttons-activities {
      font-size: calc(1.5rem + 0.5 * (100vw - 30rem) / 90);
    }
  }
}
@media (max-width: 30em) {
  .hero__buttons-activities {
    font-size: 1.5rem;
  }
}
@media (max-width: 29.99875em) {
  .hero__buttons-activities {
    width: 100%;
    text-align: center;
  }
}
.hero__img {
  position: absolute;
  left: 0;
  top: 55px;
}
@media (max-width: 1920px) and (min-width: 110em) {
  .hero__img {
    top: 2.5rem;
  }
}
@media (max-width: 1920px) and (min-width: 20em) and (max-width: 110em) {
  @supports (top: clamp( 0.0000000625rem , -0.5555554792rem  +  2.7777777083vw , 2.5rem )) {
    .hero__img {
      top: clamp( 0.0000000625rem , -0.5555554792rem  +  2.7777777083vw , 2.5rem );
    }
  }
  @supports not (top: clamp( 0.0000000625rem , -0.5555554792rem  +  2.7777777083vw , 2.5rem )) {
    .hero__img {
      top: calc(0.0000000625rem + 2.4999999375 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 1920px) and (max-width: 20em) {
  .hero__img {
    top: 0.0000000625rem;
  }
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.buttons-book {
  padding: 0.625rem 1.25rem;
  border-radius: 1.875rem;
  background-color: var(--primary);
  color: var(--text-secondary);
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 120em) {
  .buttons-book {
    font-size: 2rem;
  }
}
@media (min-width: 30em) and (max-width: 120em) {
  @supports (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.5555555556vw , 2rem )) {
    .buttons-book {
      font-size: clamp( 1.5rem , 1.3333333333rem  +  0.5555555556vw , 2rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.5555555556vw , 2rem )) {
    .buttons-book {
      font-size: calc(1.5rem + 0.5 * (100vw - 30rem) / 90);
    }
  }
}
@media (max-width: 30em) {
  .buttons-book {
    font-size: 1.5rem;
  }
}
@media (max-width: 29.99875em) {
  .buttons-book {
    width: 100%;
    text-align: center;
  }
}

.quote__text {
  max-width: 67.1875rem;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 120em) {
  .quote__text {
    padding-top: 9.375rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .quote__text {
      padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem );
    }
  }
  @supports not (padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .quote__text {
      padding-top: calc(4.6875rem + 4.6875 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .quote__text {
    padding-top: 4.6875rem;
  }
}
@media (min-width: 120em) {
  .quote__text {
    padding-bottom: 9.375rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .quote__text {
      padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem );
    }
  }
  @supports not (padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .quote__text {
      padding-bottom: calc(4.6875rem + 4.6875 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .quote__text {
    padding-bottom: 4.6875rem;
  }
}
@media (min-width: 110em) {
  .quote__text {
    font-size: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 2rem , 1.5555555556rem  +  2.2222222222vw , 4rem )) {
    .quote__text {
      font-size: clamp( 2rem , 1.5555555556rem  +  2.2222222222vw , 4rem );
    }
  }
  @supports not (font-size: clamp( 2rem , 1.5555555556rem  +  2.2222222222vw , 4rem )) {
    .quote__text {
      font-size: calc(2rem + 2 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .quote__text {
    font-size: 2rem;
  }
}

@media (min-width: 120em) {
  .about {
    padding-bottom: 9.375rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .about {
      padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem );
    }
  }
  @supports not (padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .about {
      padding-bottom: calc(4.6875rem + 4.6875 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .about {
    padding-bottom: 4.6875rem;
  }
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 61.99875em) {
  .about__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.about__content {
  max-width: 35.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1500px) {
  .about__content {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media (max-width: 61.99875em) {
  .about__content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
.about__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 110em) {
  .about__subtitle {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem )) {
    .about__subtitle {
      margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem )) {
    .about__subtitle {
      margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .about__subtitle {
    margin-bottom: 0.625rem;
  }
}
.about__title {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6.25rem;
}
@media (min-width: 120em) {
  .about__title {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 80em) and (max-width: 120em) {
  @supports (margin-bottom: clamp( 1.25rem , -8.75rem  +  12.5vw , 6.25rem )) {
    .about__title {
      margin-bottom: clamp( 1.25rem , -8.75rem  +  12.5vw , 6.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.25rem , -8.75rem  +  12.5vw , 6.25rem )) {
    .about__title {
      margin-bottom: calc(1.25rem + 5 * (100vw - 80rem) / 40);
    }
  }
}
@media (max-width: 80em) {
  .about__title {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 110em) {
  .about__title {
    font-size: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem )) {
    .about__title {
      font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem );
    }
  }
  @supports not (font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem )) {
    .about__title {
      font-size: calc(2.25rem + 1.75 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .about__title {
    font-size: 2.25rem;
  }
}
.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.about__item {
  font-weight: 700;
  border: 1px solid var(--accent);
  color: var(--text-accent);
  border-radius: 1.875rem;
  padding: 0.625rem 1.25rem;
}
@media (min-width: 110em) {
  .about__item {
    font-size: 1.625rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 0.875rem , 0.7083333333rem  +  0.8333333333vw , 1.625rem )) {
    .about__item {
      font-size: clamp( 0.875rem , 0.7083333333rem  +  0.8333333333vw , 1.625rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.7083333333rem  +  0.8333333333vw , 1.625rem )) {
    .about__item {
      font-size: calc(0.875rem + 0.75 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .about__item {
    font-size: 0.875rem;
  }
}
@media (max-width: 29.99875em) {
  .about__item {
    padding: 0.5rem 0.75rem;
  }
}
.about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: auto;
}
.about__img {
  position: relative;
}
@media (max-width: 1500px) {
  .about__img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .about__img img {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .about__img {
    -ms-flex-item-align: end;
        align-self: end;
  }
}
@media (max-width: 61.99875em) {
  .about__img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.about__link {
  position: absolute;
  right: 4.25rem;
  bottom: 2.875rem;
  font-size: 2rem;
  font-weight: 800;
  border: 1px solid var(--secondary);
  color: var(--text-secondary);
  border-radius: 1.875rem;
  padding: 0.625rem 1.25rem;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 120em) {
  .activities {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (margin-bottom: clamp( 4.6875rem , 3.0173110493rem  +  2.6939074589vw , 6.25rem )) {
    .activities {
      margin-bottom: clamp( 4.6875rem , 3.0173110493rem  +  2.6939074589vw , 6.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 4.6875rem , 3.0173110493rem  +  2.6939074589vw , 6.25rem )) {
    .activities {
      margin-bottom: calc(4.6875rem + 1.5625 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .activities {
    margin-bottom: 4.6875rem;
  }
}
.activities__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media (min-width: 120em) {
  .activities__info {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (margin-bottom: clamp( 3.125rem , -0.2153779013rem  +  5.3878149178vw , 6.25rem )) {
    .activities__info {
      margin-bottom: clamp( 3.125rem , -0.2153779013rem  +  5.3878149178vw , 6.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 3.125rem , -0.2153779013rem  +  5.3878149178vw , 6.25rem )) {
    .activities__info {
      margin-bottom: calc(3.125rem + 3.125 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .activities__info {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 61.99875em) {
  .activities__info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.activities__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 110em) {
  .activities__subtitle {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem )) {
    .activities__subtitle {
      margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem )) {
    .activities__subtitle {
      margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .activities__subtitle {
    margin-bottom: 0.625rem;
  }
}
.activities__title {
  font-weight: 800;
  text-transform: uppercase;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
@media (min-width: 110em) {
  .activities__title {
    font-size: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem )) {
    .activities__title {
      font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem );
    }
  }
  @supports not (font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem )) {
    .activities__title {
      font-size: calc(2.25rem + 1.75 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .activities__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 61.99875em) {
  .activities__title {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.activities__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.75rem 0;
  gap: 0.625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
@media (max-width: 61.99875em) {
  .activities__text {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.activities__text .buttons-book {
  -ms-flex-item-align: start;
      align-self: start;
}
.activities__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 61.99875em) {
  .activities__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 29.99875em) {
  .activities__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.activities__item {
  border: 1px solid var(--primary);
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.activities__item h5 {
  font-size: 1.625rem;
  font-weight: 700;
  max-width: 7.1875rem;
  text-align: center;
}

.site-images {
  width: 100%;
}
@media (max-width: 29.99875em) {
  .site-images {
    display: none;
  }
}

@media (min-width: 120em) {
  .reviews {
    padding-top: 9.375rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .reviews {
      padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem );
    }
  }
  @supports not (padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .reviews {
      padding-top: calc(4.6875rem + 4.6875 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .reviews {
    padding-top: 4.6875rem;
  }
}
@media (min-width: 120em) {
  .reviews {
    padding-bottom: 9.375rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .reviews {
      padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem );
    }
  }
  @supports not (padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .reviews {
      padding-bottom: calc(4.6875rem + 4.6875 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .reviews {
    padding-bottom: 4.6875rem;
  }
}
.reviews__top {
  margin-left: calc(50% + 0.625rem);
}
@media (min-width: 120em) {
  .reviews__top {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 30em) and (max-width: 120em) {
  @supports (margin-bottom: clamp( 1.875rem , 0.4166666667rem  +  4.8611111111vw , 6.25rem )) {
    .reviews__top {
      margin-bottom: clamp( 1.875rem , 0.4166666667rem  +  4.8611111111vw , 6.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.875rem , 0.4166666667rem  +  4.8611111111vw , 6.25rem )) {
    .reviews__top {
      margin-bottom: calc(1.875rem + 4.375 * (100vw - 30rem) / 90);
    }
  }
}
@media (max-width: 30em) {
  .reviews__top {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .reviews__top {
    margin-left: 0;
  }
}
.reviews__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 110em) {
  .reviews__subtitle {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem )) {
    .reviews__subtitle {
      margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.625rem , 0.4861111111rem  +  0.6944444444vw , 1.25rem )) {
    .reviews__subtitle {
      margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .reviews__subtitle {
    margin-bottom: 0.625rem;
  }
}
.reviews__title {
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 110em) {
  .reviews__title {
    font-size: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem )) {
    .reviews__title {
      font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem );
    }
  }
  @supports not (font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem )) {
    .reviews__title {
      font-size: calc(2.25rem + 1.75 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .reviews__title {
    font-size: 2.25rem;
  }
}
.reviews__items {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 2fr 2fr 1fr;
}
@media (max-width: 61.99875em) {
  .reviews__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 29.99875em) {
  .reviews__items {
    grid-template-columns: 1fr;
  }
}
.reviews__item:nth-child(even) {
  padding-top: 6.25rem;
}
@media (max-width: 61.99875em) {
  .reviews__item:nth-child(even) {
    padding-top: 0;
  }
}
.reviews__img {
  margin-bottom: 1.25rem;
  max-width: 100%;
}
@media (max-width: 61.99875em) {
  .reviews__img {
    width: 100%;
  }
}

.blockquote__text {
  margin-bottom: 0.9375rem;
}
.blockquote__cite {
  display: block;
  margin-bottom: 0.3125rem;
  text-align: right;
}
.blockquote__cite::before {
  content: "/";
}
.blockquote__time {
  display: block;
  text-align: right;
}

.footer {
  background-color: var(--primary);
  color: var(--text-secondary);
}
@media (min-width: 120em) {
  .footer {
    padding-top: 9.375rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .footer {
      padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem );
    }
  }
  @supports not (padding-top: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .footer {
      padding-top: calc(4.6875rem + 4.6875 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .footer {
    padding-top: 4.6875rem;
  }
}
@media (min-width: 120em) {
  .footer {
    padding-bottom: 9.375rem;
  }
}
@media (min-width: 61.99875em) and (max-width: 120em) {
  @supports (padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .footer {
      padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem );
    }
  }
  @supports not (padding-bottom: clamp( 4.6875rem , -0.323066852rem  +  8.0817223767vw , 9.375rem )) {
    .footer {
      padding-bottom: calc(4.6875rem + 4.6875 * (100vw - 61.99875rem) / 58.00125);
    }
  }
}
@media (max-width: 61.99875em) {
  .footer {
    padding-bottom: 4.6875rem;
  }
}
.footer__inner {
  max-width: 72.5rem;
  padding: 0 0.625rem;
  margin: 0 auto;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.125rem;
}
@media (max-width: 47.99875em) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.25rem;
  }
}
.footer__title {
  font-weight: 800;
  text-transform: uppercase;
}
@media (min-width: 110em) {
  .footer__title {
    font-size: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem )) {
    .footer__title {
      font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem );
    }
  }
  @supports not (font-size: clamp( 2.25rem , 1.8611111111rem  +  1.9444444444vw , 4rem )) {
    .footer__title {
      font-size: calc(2.25rem + 1.75 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .footer__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__title {
    text-align: center;
  }
}
.footer__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3.75rem;
}
@media (min-width: 110em) {
  .footer__info-list {
    gap: 4.25rem;
  }
}
@media (min-width: 20em) and (max-width: 110em) {
  @supports (gap: clamp( 0.9375rem , 0.2013888889rem  +  3.6805555556vw , 4.25rem )) {
    .footer__info-list {
      gap: clamp( 0.9375rem , 0.2013888889rem  +  3.6805555556vw , 4.25rem );
    }
  }
  @supports not (gap: clamp( 0.9375rem , 0.2013888889rem  +  3.6805555556vw , 4.25rem )) {
    .footer__info-list {
      gap: calc(0.9375rem + 3.3125 * (100vw - 20rem) / 90);
    }
  }
}
@media (max-width: 20em) {
  .footer__info-list {
    gap: 0.9375rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__info-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.875rem;
  }
}
.footer__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.footer__info-item dt {
  font-size: 1.25rem;
  font-weight: 700;
}
.footer__info-item span {
  display: block;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.125rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 47.99875em) {
  .footer__bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}