@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --main: "Lato", sans-serif;
  --sec: "Lato", sans-serif;
  --text: #fff;
  --accent: #fff;
  --header-bg: #FFFFFF1A;
  --header-text: #fff;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main);
  color: var(--text);
  margin: 0;
  background: radial-gradient(102.34% 36.75% at 50% 45.42%, #1563c4 0%, #1e0738 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  scale: 110%;
}

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.icon {
  width: 18px;
  height: 18px;
}

.header__icon--menu {
  stroke: #fff;
}

.header__icon--close {
  fill: #fff;
}

.title {
  font-family: var(--sec);
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 39px;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent);
}
@media screen and (min-width: 1205px) {
  .title {
    font-weight: 700;
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 58px;
  }
}

.txt {
  font-weight: 700;
}

.text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 1205px) {
  .text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: var(--header-bg);
}
.header__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: var(--header-bg);
  z-index: -1;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.header.is-open .header__background {
  left: 0;
}
.header__button-wrapper {
  margin-left: auto;
}
.header__icon {
  display: none;
  width: 28px;
  height: 28px;
}
.header__icon-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  border-radius: 50%;
}

.header__icon--menu {
  display: block;
}

.header__icon-button.is-open .header__icon--menu {
  display: none;
}

.header__icon-button.is-open .header__icon--close {
  display: block;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 28px 14px;
  position: relative;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding: 32px 60px;
  background: rgba(5, 0, 224, 0.9215686275);
  margin-top: 16px;
  max-height: 90vh;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #5ba7fe transparent;
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  color: var(--header-text);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  font-weight: 800;
}

@media screen and (min-width: 1200px) {
  .header {
    background-color: var(--header-bg);
  }
  .header__icon-button {
    display: none;
  }
  .header__button-wrapper {
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 32px 0px;
  }
  .navigation__list {
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    width: auto;
    margin-top: 0;
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navigation__link {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navigation__item:nth-last-child(-n+3) {
    display: none;
  }
}
.home {
  background-image: url("../../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  padding: 112px 20px 220px 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1205px) {
  .home {
    padding-top: 144px;
    padding-bottom: 70px;
  }
}
.home .wrapper {
  max-width: 788px;
}
.home .girl-img {
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 261px;
}
@media screen and (min-width: 1205px) {
  .home .girl-img {
    max-width: none;
    bottom: -42px;
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
}
.home .title-img {
  max-width: 335px;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1205px) {
  .home .title-img {
    max-width: 474px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-35%, -125%);
            transform: translate(-35%, -125%);
  }
}
.home h1 {
  font-family: var(--sec);
  font-weight: 700;
  font-size: 52px;
  line-height: 60px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 430px;
}
@media screen and (min-width: 1205px) {
  .home h1 {
    font-weight: 700;
    font-size: 60px;
    line-height: 72px;
  }
}
.home h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1205px) {
  .home h2 {
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
  }
}
.home p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1205px) {
  .home p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}
.home button {
  background: transparent;
  border: none;
}
@media screen and (min-width: 1205px) {
  .home button {
    margin: 0 auto;
    display: block;
  }
}
.home button img {
  max-width: 335px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .home button img {
    max-width: 438px;
  }
}

.popup {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 380px;
  width: calc(100% - 20px);
  background-color: #1D0637;
  border-radius: 22px;
  border: 1px solid #d9dbe9;
  -webkit-box-shadow: 0px 14px 42px 0px rgba(8, 15, 52, 0.0588235294);
          box-shadow: 0px 14px 42px 0px rgba(8, 15, 52, 0.0588235294);
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .popup {
    max-width: 1300px;
  }
}

.popup-close-btn {
  position: absolute;
  top: 36px;
  right: 36px;
  background-color: transparent;
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup-close-btn:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.popup-close-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.popup-top {
  padding: 78px 20px 23px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
}
@media screen and (min-width: 900px) {
  .popup-top {
    padding-block: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
  }
}

.popup-bottom {
  border-top: 1px solid #eff0f6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .popup-bottom {
    padding: 20px 60px;
  }
}

.popup h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 37px;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .popup h2 {
    font-size: 38px;
    margin-bottom: 32px;
  }
}

.popup p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .popup p {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
  }
}

.popup p a {
  color: #4A3AFF;
  text-decoration: none;
  cursor: pointer;
}

.popup a {
  color: #4A3AFF;
  cursor: pointer;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .popup a {
    font-weight: 400;
    font-size: 27px;
    line-height: 45px;
  }
}

.popup .button-wrap button {
  font-family: var(--main);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  background: #1D0637;
  color: #fff;
  border: 1px solid #6F00FF;
  border-radius: 56px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(74, 58, 255, 0.0784313725);
          box-shadow: 0px 4px 8px 0px rgba(74, 58, 255, 0.0784313725);
  padding: 18px 26px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 900px) {
  .popup .button-wrap button {
    font-size: 24px;
  }
}
.popup .button-wrap button:hover {
  font-weight: 700;
  background: #6F00FF;
}

.button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .button-wrap {
    gap: 60px;
  }
}

.attractions {
  background-image: url("../../images/attractions-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .attractions {
    padding-block: 96px;
  }
}
.attractions .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (min-width: 1205px) {
  .attractions .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 54px;
  }
}
.attractions__image {
  max-width: 355px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .attractions__image {
    max-width: none;
  }
}
.attractions ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1205px) {
  .attractions ul {
    gap: 32px;
  }
}

.features {
  background-image: url("../../images/features-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .features {
    padding-block: 96px;
  }
}
.features ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1205px) {
  .features ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 36px;
  }
}
.features li {
  width: 335px;
  height: 279px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
  padding-top: 40px;
  background: linear-gradient(187.95deg, #003894 28.93%, #7d00dd 97.19%);
  border-radius: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
@media screen and (min-width: 1205px) {
  .features li {
    width: 288px;
    height: 341px;
  }
}
.features img {
  height: 86px;
  margin-bottom: 36px;
}
@media screen and (min-width: 1205px) {
  .features img {
    height: 104px;
  }
}
.features span {
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1205px) {
  .features span {
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
  }
}

.faq {
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .faq {
    padding-block: 96px;
  }
}
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 1205px) {
  .faq__list {
    row-gap: 28px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
.faq__item {
  max-width: 558px;
  width: 100%;
  border-radius: 5px;
  -webkit-box-shadow: 0px 24.56px 32.74px -14.73px rgba(149, 149, 149, 0.2509803922);
          box-shadow: 0px 24.56px 32.74px -14.73px rgba(149, 149, 149, 0.2509803922);
  background-color: #fff;
  padding: 20px 16px;
}
.faq__question-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
.faq__question {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #1b1139;
}
.faq__answer {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #362e51;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.6s cubic-bezier(0.5, 0.25, 0, 1), padding 0.6s cubic-bezier(0.5, 0.25, 0, 1), opacity 0.6s ease;
  transition: max-height 0.6s cubic-bezier(0.5, 0.25, 0, 1), padding 0.6s cubic-bezier(0.5, 0.25, 0, 1), opacity 0.6s ease;
  margin-top: 8px;
  padding: 0;
}
.faq__button {
  border: none;
  background-color: transparent;
  padding: 0;
}
.faq .icon-minus {
  display: none;
}
.faq .faq__item.active .faq__answer {
  max-height: 200px;
  opacity: 1;
  padding: 8px 0;
}
.faq .faq__item.active .icon-plus {
  display: none;
}
.faq .faq__item.active .icon-minus {
  display: block;
}

.about {
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .about {
    padding-block: 96px;
  }
}
.about img {
  border-radius: 20px;
  width: 100%;
  margin: 0 auto;
  margin-block: 40px;
}
.about ul {
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 24px;
}
@media screen and (min-width: 1205px) {
  .about ul {
    row-gap: 40px;
    -webkit-column-gap: 56px;
       -moz-column-gap: 56px;
            column-gap: 56px;
  }
}
.about li {
  max-width: 544px;
  width: 100%;
}

.events {
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .events {
    padding-block: 96px;
  }
}
.events img {
  border-radius: 20px;
  width: 100%;
  margin: 0 auto;
  margin-block: 40px;
}
.events ul {
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 24px;
}
@media screen and (min-width: 1205px) {
  .events ul {
    row-gap: 40px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.events li {
  max-width: 596px;
  width: 100%;
}
.events .text {
  font-weight: 700;
  text-align: center;
}

.howtoplay {
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .howtoplay {
    padding-block: 96px;
  }
}
.howtoplay ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 40px;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  margin-bottom: 40px;
}
.howtoplay li {
  max-width: 388px;
  width: 100%;
  height: 149px;
}
.howtoplay li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  max-width: 230px;
  margin-bottom: 20px;
}
.howtoplay li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.howtoplay h3 {
  min-width: 48px;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
}
.howtoplay li div p {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 8px;
}
.howtoplay li div p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  border-radius: 4px;
  width: 100%;
  background-color: currentColor; /* будет переопределён */
}
.howtoplay .step-1 h3,
.howtoplay .step-1 div p::after {
  background-color: #e74c3c;
}
.howtoplay .step-2 h3,
.howtoplay .step-2 div p::after {
  background-color: #f39c12;
}
.howtoplay .step-3 h3,
.howtoplay .step-3 div p::after {
  background-color: #27ae60;
}
.howtoplay .step-4 h3,
.howtoplay .step-4 div p::after {
  background-color: #2980b9;
}
.howtoplay .step-5 h3,
.howtoplay .step-5 div p::after {
  background-color: #8e44ad;
}

.park {
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .park {
    padding-block: 96px;
  }
}
.park .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 45px;
}
@media screen and (min-width: 1205px) {
  .park .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.park__image {
  max-width: 355px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .park__image {
    max-width: none;
  }
}
.park ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1205px) {
  .park ul {
    gap: 40px;
  }
}
.park li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 1205px) {
  .park li {
    gap: 32px;
  }
}
.park li img {
  width: 44px;
  height: 44px;
}
.park .text {
  font-weight: 900;
}

.friends {
  padding-inline: 20px;
}
.friends .container {
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  -webkit-box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0);
          box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0);
  border-radius: 10px;
  padding-top: 48px;
  padding-inline: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 1205px) {
  .friends .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 28px;
    padding: 0px 60px 0px 0px;
  }
}
.friends img {
  max-width: 360px;
  width: 100%;
  position: relative;
  bottom: -15px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 1205px) {
  .friends img {
    max-width: 650px;
    bottom: -30px;
  }
}
.friends ul {
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 24px;
}
@media screen and (min-width: 1205px) {
  .friends ul {
    row-gap: 40px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.friends li {
  max-width: 596px;
  width: 100%;
}
.friends .text {
  font-weight: 700;
}
@media screen and (min-width: 1205px) {
  .friends .text {
    text-align: center;
  }
}

.contacts {
  background-image: url("../../images/contacts-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .contacts {
    padding-block: 96px;
  }
  .contacts h2,
  .contacts h3 {
    text-align: start;
  }
}
.contacts .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (min-width: 1205px) {
  .contacts .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 79px;
  }
}
.contacts ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 36px;
}
@media screen and (min-width: 1205px) {
  .contacts ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contacts a {
  color: var(--text);
}
.contacts p {
  font-weight: 700;
}

.reviews {
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .reviews {
    padding-block: 96px;
  }
}
.reviews ul {
  margin-inline: -20px;
}
.reviews li {
  width: 335px;
  height: 460px;
  background: #3e0063;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 12px;
  border-radius: 10px;
  padding: 28px 20px;
}
@media screen and (min-width: 1205px) {
  .reviews li {
    width: 610px;
    height: 360px;
    padding: 48px 45px;
    margin: 0 30px;
  }
}
.reviews li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 28px;
}
.reviews img {
  width: 64px;
}
.reviews span {
  font-family: var(--sec);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
.reviews p {
  font-family: var(--sec);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
}

.footer {
  background: #120027;
  padding: 36px 20px;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
.footer .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1205px) {
  .footer .box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: unset;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 1205px) {
  .footer__wrapper {
    gap: 8px;
  }
}
.footer img {
  width: 112px;
  margin: 0 auto;
  margin-bottom: 28px;
}
@media screen and (min-width: 1205px) {
  .footer img {
    width: 162px;
  }
}
.footer__text {
  font-family: var(--sec);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (min-width: 1205px) {
  .footer__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}
.footer__copyright,
.footer a {
  font-family: var(--sec);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5019607843);
  text-align: center;
}/*# sourceMappingURL=main.css.map */