@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --main-font: "Roboto", sans-serif;
  --sec: "Ubuntu", sans-serif;
  --text-color: #fff;
  --header-bg: #0E0E0E;
  --header-text: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  color: var(--text-color);
  margin: 0;
  background: #0E0E0E;
}

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: 1200px;
  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;
}

.header__icon--menu {
  stroke: var(--header-text);
}

.header__icon--close {
  fill: var(--header-text);
}

.title {
  font-weight: 900;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 22px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .title {
    font-weight: 900;
    font-size: 42px;
    line-height: 49px;
  }
}

.txt {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 33px;
  text-align: center;
}

.text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: var(--header-bg);
}
.header .container {
  max-width: 1200px;
}
.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: 16px;
  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: 97px 60px;
  background: rgba(14, 14, 14, 0.6509803922);
  backdrop-filter: blur(22px);
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
  overflow-y: auto;
  height: 100vh;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  color: var(--header-text);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  color: #ffcb22;
}

@media screen and (min-width: 1200px) {
  .header {
    width: 1200px;
    top: 20px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    border-radius: 22px;
  }
  .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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-block: 20px;
  }
  .navigation__list {
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    margin-top: 0;
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: auto;
  }
  .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: center;
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
  padding: 40px 20px 71px 20px;
  overflow: hidden;
}
.home .container {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .home {
    padding-top: 117px;
    padding-bottom: 53px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}
.home .logo {
  margin: 0 auto;
  width: 160px;
  position: relative;
  top: 31px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .home .logo {
    width: auto;
  }
}
.home .box {
  max-width: 692px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .home .box {
    margin-left: 0;
  }
}
.home .text-box {
  background: rgba(110, 100, 90, 0.3294117647);
  padding: 22px;
  border-radius: 32px;
  backdrop-filter: blur(34px);
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2509803922);
}
.home p {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
}
@media screen and (min-width: 1200px) {
  .home p {
    font-size: 20px;
  }
}
.home .hero-img {
  position: absolute;
  bottom: -124px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 409px;
}
@media screen and (min-width: 1200px) {
  .home .hero-img {
    width: 563px;
    -webkit-transform: none;
            transform: none;
    bottom: -57px;
    left: 55%;
    right: 0;
  }
}

.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: #fff;
  border-radius: 22px;
  border: 1px solid #FFCB22;
  -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: 1200px;
  }
}

.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: #000;
}

.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 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #0d001c;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .popup p {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
  }
}

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

.popup a {
  color: #0d001c;
  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);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  background: #fff;
  color: #030016;
  border-radius: 56px;
  border: 1px solid #FFCB22;
  -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: #FFCB22;
}

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

.screenshot {
  background-image: url("../../images/screenshot-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 90px;
  padding-bottom: 41px;
  padding-inline: 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: 22px;
}
@media screen and (min-width: 1200px) {
  .screenshot {
    padding-top: 152px;
    padding-bottom: 118px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.features {
  background: -webkit-gradient(linear, left top, left bottom, from(#6e645a), to(#0e0e0e));
  background: linear-gradient(180deg, #6e645a 0%, #0e0e0e 100%);
  padding-top: 40px;
  padding-bottom: 50px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .features {
    padding-top: 60px;
    padding-bottom: 71px;
  }
}
.features ul {
  margin-inline: -20px;
}
.features li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 11px;
  width: 335px;
  height: 447px;
}
@media screen and (min-width: 1200px) {
  .features li {
    width: 400px;
    height: 502px;
  }
}
.features img {
  margin-bottom: 22px;
}
.features h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 12px;
  text-align: center;
}
.features li p {
  text-align: center;
}

.faq {
  padding-block: 40px;
}
@media screen and (min-width: 1200px) {
  .faq {
    padding-block: 76px;
  }
}
@media screen and (min-width: 1200px) {
  .faq__list {
    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: 18px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.faq__item {
  width: 335px;
  height: 258px;
  border-radius: 22px;
  padding: 16px 12px;
  border: 2px solid #ffcb22;
  font-family: var(--sec);
  margin: 0 6px;
}
@media screen and (min-width: 1200px) {
  .faq__item {
    width: auto;
    height: auto;
  }
}
.faq__question {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 12px;
}
.faq__answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.choice {
  overflow: hidden;
}
.choice .container {
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  padding-top: 40px;
  padding-bottom: 60px;
  background: #6e645a;
  border-radius: 32px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .choice .container {
    padding-top: 100px;
    padding-bottom: 91px;
    padding-inline: 120px;
    border-radius: 100px;
  }
}
.choice h3 {
  max-width: 687px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 22px;
}
@media screen and (min-width: 1200px) {
  .choice h3 {
    margin-bottom: 40px;
  }
}
.choice .text-btm {
  text-align: center;
}
.choice ul {
  margin-block: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 1200px) {
  .choice ul {
    gap: 40px;
  }
}
.choice li {
  max-width: 580px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3019607843);
  padding: 16px 26px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.legacy {
  background: #6e645a;
  padding: 40px 20px;
}
@media screen and (min-width: 1200px) {
  .legacy {
    padding-block: 60px;
  }
}
.legacy h3 {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 22px;
}
@media screen and (min-width: 1200px) {
  .legacy h3 {
    margin-bottom: 40px;
  }
}
.legacy .text-btm {
  text-align: center;
}
.legacy ul {
  margin-block: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1200px) {
  .legacy ul {
    margin-bottom: 50px;
  }
}
.legacy li {
  max-width: 367px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3019607843);
  padding: 16px 26px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.about {
  padding: 40px 20px;
}
@media screen and (min-width: 1200px) {
  .about {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .about h2 {
    text-align: start;
  }
}
.about .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: 50px;
}
@media screen and (min-width: 1200px) {
  .about .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.about__image {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .about__image {
    max-width: none;
    min-width: 540px;
  }
}
.about ul {
  list-style: disc;
}
.about li {
  margin-block: 16px;
  margin-left: 20px;
}

.contact {
  background-image: url("../../images/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 30px;
  padding-bottom: 358px;
  padding-inline: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.contact p {
  text-align: center;
}
.contact ul {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  margin-block: 32px;
}
.contact li a {
  text-decoration: none;
  color: var(--text-color);
}
.contact span {
  font-weight: 700;
}
.contact img {
  position: absolute;
  min-width: 700px;
  max-width: 700px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -14%);
          transform: translate(-50%, -14%);
}
@media screen and (min-width: 1200px) {
  .contact img {
    max-width: none;
    -webkit-transform: translate(-17%, -39%);
            transform: translate(-17%, -39%);
  }
}
@media screen and (min-width: 1200px) {
  .contact h2,
  .contact h3,
  .contact p {
    text-align: start;
  }
  .contact ul {
    margin-left: 0;
  }
}

.strategy {
  overflow: hidden;
}
.strategy .container {
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  padding-top: 40px;
  padding-bottom: 60px;
  background: #6e645a;
  border-radius: 32px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .strategy .container {
    padding-top: 100px;
    padding-bottom: 91px;
    padding-inline: 120px;
    border-radius: 100px;
  }
}
.strategy .text {
  max-width: 687px;
  margin: 0 auto;
  text-align: center;
}
.strategy ul {
  margin-block: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.strategy ul li:nth-child(even) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.strategy li {
  background: rgba(255, 255, 255, 0.3019607843);
  padding: 16px 26px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.strategy .box {
  position: relative;
  z-index: 1;
}
.strategy .crystals-1,
.strategy .crystals-2 {
  position: absolute;
  max-width: 275px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(266deg);
          transform: translateX(-50%) rotate(266deg);
}
.strategy .crystals-1 {
  bottom: -165px;
}
.strategy .crystals-2 {
  top: -100px;
}
@media screen and (min-width: 1200px) {
  .strategy .crystals-1,
  .strategy .crystals-2 {
    max-width: 430px;
    left: auto;
    right: auto;
    -webkit-transform: none;
            transform: none;
  }
  .strategy .crystals-1 {
    left: -65px;
    bottom: -65px;
  }
  .strategy .crystals-2 {
    right: 0;
    top: 0;
  }
}

.artifacts {
  padding: 40px 20px;
}
@media screen and (min-width: 1200px) {
  .artifacts {
    padding-block: 60px;
  }
  .artifacts .wrapper div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.artifacts .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .artifacts .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    margin-top: 40px;
  }
}
.artifacts 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: 12px;
}
@media screen and (min-width: 1200px) {
  .artifacts ul {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
  }
}
.artifacts li {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 16px 26px;
}
.artifacts img {
  margin: 0 auto;
}

.events {
  background-color: #bbe3fc;
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .events {
    padding-top: 60px;
    padding-bottom: 73px;
  }
}
.events .text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.events 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;
  margin-inline: -20px;
  margin-block: 32px;
}
@media screen and (min-width: 1200px) {
  .events ul {
    margin-top: 52px;
    margin-bottom: 40px;
  }
}
.events li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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;
  border: 2px solid #009dff;
  background: #8fd4ff;
  -webkit-box-shadow: 0px 0px 0.93px 0px #ffffff, 0px 0px 1.86px 0px #ffffff, 0px 0px 6.51px 0px #ffffff, 0px 0px 13.01px 0px #ffffff, 0px 0px 22.31px 0px #ffffff, 0px 0px 39.04px 0px #ffffff;
          box-shadow: 0px 0px 0.93px 0px #ffffff, 0px 0px 1.86px 0px #ffffff, 0px 0px 6.51px 0px #ffffff, 0px 0px 13.01px 0px #ffffff, 0px 0px 22.31px 0px #ffffff, 0px 0px 39.04px 0px #ffffff;
  border-radius: 22px;
  padding: 22px 17px;
  margin: 30px 11px;
  width: 280px;
  height: 261px;
}
.events h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 22px;
  text-align: center;
}
.events li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.events .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;
  gap: 12px;
  background: rgba(255, 255, 255, 0.5019607843);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 18px;
}
.events .box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
@media screen and (min-width: 1200px) {
  .events .box p {
    font-size: 16px;
  }
}

.signup {
  padding-top: 30px;
  padding-bottom: 38px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .signup {
    padding-top: 60px;
    padding-bottom: 66px;
  }
}
.signup h3 {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 22px;
}
@media screen and (min-width: 1200px) {
  .signup h3 {
    margin-bottom: 49px;
  }
}
.signup 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: 22px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1200px) {
  .signup ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 49px;
  }
}
.signup li {
  width: 308px;
  height: 74px;
  border: 2px solid #009dff;
  border-radius: 22px;
  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;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
}
.signup img {
  cursor: pointer;
  margin: 0 auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.signup img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sound {
  background-image: url("../../images/sound-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 40px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .sound {
    padding-top: 60px;
  }
  .sound .wrap div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.sound h3 {
  margin-bottom: 12px;
}
@media screen and (min-width: 1200px) {
  .sound h3 {
    max-width: 801px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.sound .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1200px) {
  .sound .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 90px;
    margin-bottom: 40px;
  }
}
.sound ul {
  list-style-type: disc;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
}
.sound img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  border-radius: 22px;
}

.testimonials {
  padding: 40px 20px;
}
@media screen and (min-width: 1200px) {
  .testimonials {
    padding-block: 60px;
  }
}
.testimonials ul {
  margin-block: 30px;
  color: #0e0e0e;
  margin-inline: -20px;
}
@media screen and (min-width: 1200px) {
  .testimonials ul {
    margin-block: 45px;
  }
}
.testimonials li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 22px;
  padding: 28px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.3490196078);
          box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.3490196078);
  background-color: #fff;
  width: 335px;
  height: 475px;
  margin: 0 16px;
}
@media screen and (min-width: 1200px) {
  .testimonials li {
    width: 584px;
    height: 290px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.testimonials li img {
  width: 70px;
}
.testimonials h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 8px;
}
.testimonials h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 18px;
  color: #878787;
}
.testimonials li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1px;
}
.testimonials .text-btm {
  text-align: center;
}

.footer {
  padding: 26px 20px;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-block: 48px;
    position: relative;
  }
}
.footer img {
  display: none;
}
@media screen and (min-width: 1200px) {
  .footer img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
.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: 22px;
}
@media screen and (min-width: 1200px) {
  .footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 104px;
  }
}
.footer__wrapper {
  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;
}
@media screen and (min-width: 1200px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5px;
  }
}
.footer .contacts {
  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: 12px;
}
@media screen and (min-width: 1200px) {
  .footer .contacts {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.footer h3 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 19px;
  line-height: 21px;
}
.footer 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: 12px;
}
@media screen and (min-width: 1200px) {
  .footer ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.footer li {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-transform: lowercase;
}
.footer li a {
  text-decoration: none;
  color: var(--text-color);
}
.footer__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-color);
}
.footer__copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--text-color);
  text-align: center;
  text-transform: lowercase;
  margin-bottom: 12px;
}
@media screen and (min-width: 1200px) {
  .footer__copyright {
    text-align: start;
  }
}

.policies {
  background: #fff;
  padding-top: 100px;
  padding-inline: 20px;
  padding-bottom: 50px;
  color: #030016;
}
@media screen and (min-width: 1200px) {
  .policies {
    padding-top: 140px;
  }
}
.policies a {
  color: #030016;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: #407bff;
}
.policies h1 {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 8px;
}
.policies h2 {
  margin-block: 12px;
  font-size: 16px;
}
.policies h4 {
  margin-top: 12px;
}
.policies ul {
  margin-left: 40px;
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding-block: 8px;
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.policies strong {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */