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

* {
  -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;
}

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: 1300px;
  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: 32px;
  margin-bottom: 22px;
  text-align: center;
  text-transform: uppercase;
}

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

.text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.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 .container {
  max-width: 1407px;
}
.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: 18px;
  padding: 66px 60px;
  background: #bbe3fc;
  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: 15px;
  line-height: 20px;
  border-radius: 12px;
  padding: 8px 12px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.navigation__link:hover {
  outline: 1px solid #407bff;
}

@media screen and (min-width: 1407px) {
  .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-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;
    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: center;
  padding: 110px 20px 262px 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1300px) {
  .home {
    padding-top: 180px;
    padding-bottom: 305px;
  }
}
.home h1 {
  color: #407bff;
  font-weight: 900;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 1300px) {
  .home h1 {
    font-weight: 900;
    font-size: 42px;
    line-height: 50px;
    text-align: start;
  }
}
.home p {
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-shadow: 0 1px 1px #030016;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 675px;
  margin: 0 auto;
}
@media screen and (min-width: 1300px) {
  .home p {
    font-weight: 900;
    font-size: 18px;
    line-height: 24px;
    text-align: start;
    text-shadow: none;
    margin-left: 0;
  }
}
.home img {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 400px;
  max-width: 400px;
}
@media screen and (min-width: 1300px) {
  .home img {
    max-width: none;
    width: 900px;
    top: 50%;
    -webkit-transform: translate(-21%, -38%);
            transform: translate(-21%, -38%);
  }
}

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

.popup p a {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

.popup a {
  color: var(--text-color);
  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: 1px solid #030016;
  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: #030016;
  color: #fff;
}

.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: 1300px) {
  .screenshot {
    padding-top: 152px;
    padding-bottom: 118px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.features {
  background-image: url("../../images/features-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-top: 30px;
  padding-bottom: 175px;
  padding-inline: 20px;
}
@media screen and (min-width: 1300px) {
  .features {
    padding-top: 60px;
    padding-bottom: 210px;
  }
}
.features ul {
  margin-inline: -20px;
}
.features ul li:nth-child(odd) {
  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;
}
.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #009dff;
  border-radius: 22px;
  padding: 22px 12px;
  margin: 30px 11px;
  width: 335px;
  height: 280px;
}
.features img {
  margin-bottom: 22px;
}
.features h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 16px;
}
.features p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.faq {
  background: url("../../images/faq-bg.png") no-repeat center/cover;
  padding-top: 60px;
  padding-bottom: 84px;
  padding-inline: 20px;
}
@media screen and (min-width: 1300px) {
  .faq {
    padding-bottom: 125px;
  }
}
.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: 16px;
}
.faq__item {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 16px 29px;
}
@media screen and (min-width: 1300px) {
  .faq__item {
    padding-inline: 36px;
  }
}
.faq__question-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.faq__question {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}
.faq__answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  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__icon {
  width: 26px;
  height: 26px;
}
.faq__button {
  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;
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
}

.icon-up {
  display: none;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  opacity: 1;
  padding: 8px 0;
}

.faq__item.active .icon-down {
  display: none;
}

.faq__item.active .icon-up {
  display: block;
}

.about {
  background-color: #fff;
  padding: 30px 20px 37px 20px;
}
@media screen and (min-width: 1300px) {
  .about {
    padding-block: 75px;
  }
  .about h2,
  .about h3 {
    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: 22px;
}
@media screen and (min-width: 1300px) {
  .about .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}
.about__image {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1300px) {
  .about__image {
    max-width: none;
  }
}
.about li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.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: 1300px) {
  .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: 1300px) {
  .contact img {
    max-width: none;
    -webkit-transform: translate(-17%, -39%);
            transform: translate(-17%, -39%);
  }
}
@media screen and (min-width: 1300px) {
  .contact h2,
  .contact h3,
  .contact p {
    text-align: start;
  }
  .contact ul {
    margin-left: 0;
  }
}

.works {
  background-image: url("../../images/works-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 1300px) {
  .works {
    padding-top: 60px;
    padding-bottom: 98px;
  }
}
.works ul {
  max-width: 800px;
  margin: 0 auto;
}
.works li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}
.works h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 12px;
}

.rewards {
  padding-top: 30px;
  padding-bottom: 36px;
  padding-inline: 20px;
}
@media screen and (min-width: 1300px) {
  .rewards {
    padding-top: 60px;
    padding-bottom: 64px;
  }
  .rewards p {
    text-align: center;
    max-width: 1175px;
    margin: 0 auto;
  }
}
.rewards 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: 22px;
}
.rewards 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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 210px;
  padding-top: 22px;
  margin: 0 11px;
}
.rewards img {
  margin-bottom: 12px;
}
.rewards li p {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
}

.events {
  background-color: #bbe3fc;
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 1300px) {
  .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: 1300px) {
  .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);
  -webkit-backdrop-filter: blur(12px);
          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: 1300px) {
  .events .box p {
    font-size: 16px;
  }
}

.signup {
  background: -webkit-gradient(linear, left bottom, left top, from(#bbe3fc), to(#ffffff));
  background: linear-gradient(0deg, #bbe3fc 0%, #ffffff 100%);
  padding-top: 30px;
  padding-bottom: 38px;
  padding-inline: 20px;
}
@media screen and (min-width: 1300px) {
  .signup {
    padding-top: 60px;
    padding-bottom: 66px;
  }
}
.signup .text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 22px;
}
@media screen and (min-width: 1300px) {
  .signup .text {
    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: 1300px) {
  .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);
}

.community {
  background-image: url("../../images/community-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 1300px) {
  .community {
    padding-top: 100px;
    padding-bottom: 76px;
  }
  .community h2,
  .community h3 {
    text-align: start;
  }
}
.community .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: 34px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1300px) {
  .community .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 84px;
    margin-bottom: 40px;
  }
}
.community 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;
}
.community .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);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 22px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 18px;
}
.community .box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
@media screen and (min-width: 1300px) {
  .community .box p {
    font-size: 16px;
  }
}

.testimonials {
  padding-top: 30px;
  padding-bottom: 62px;
}
@media screen and (min-width: 1300px) {
  .testimonials {
    padding-top: 60px;
    padding-bottom: 71px;
  }
}
.testimonials ul {
  margin-block: 32px;
}
.testimonials li {
  width: 335px;
  height: 272px;
  border: 2px solid #009dff;
  border-radius: 22px;
  padding: 22px 18px;
  margin: 0 11px;
}
@media screen and (min-width: 1300px) {
  .testimonials li {
    width: 525px;
    height: 209px;
  }
}
.testimonials h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 12px;
}
.testimonials p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.footer {
  background-image: url("../../images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  margin-top: -1px;
  padding: 18px 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: 22px;
  margin-bottom: 38px;
}
@media screen and (min-width: 1300px) {
  .footer__container {
    gap: 14px;
  }
}
.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;
  gap: 12px;
}
@media screen and (min-width: 1300px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
.footer__text {
  font-weight: 600;
  font-size: 16px;
  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: 21px;
  color: var(--text-color);
  text-align: center;
}
.footer .text {
  text-align: center;
  margin-bottom: 14px;
}
.footer .socials {
  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: 16px;
}
.footer .socials img {
  width: 24px;
  height: 24px;
}

.policies {
  background: #bbe3fc;
  padding-top: 100px;
  padding-inline: 20px;
  padding-bottom: 50px;
  color: #030016;
}
@media screen and (min-width: 1300px) {
  .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: 22px;
  line-height: 24px;
  margin-bottom: 8px;
  text-align: center;
}
.policies h2 {
  margin-block: 12px;
  font-size: 20px;
}
.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: 18px;
  line-height: 24px;
}
.policies strong {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */