@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: #000;
  --header-bg: #fff;
  --header-text: #000;
}

* {
  -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: 1160px;
  margin: 0 auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 58px;
  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: 26px;
  line-height: 38px;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .title {
    font-weight: 900;
    font-size: 32px;
    line-height: 38px;
  }
}

.txt {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 12px;
}

.text {
  font-weight: 400;
  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: 44px;
  padding: 88px 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEBEA), to(#D8EEFF));
  background: linear-gradient(180deg, #FFEBEA 0%, #D8EEFF 100%);
  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: 600;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  font-weight: 900;
  color: #485AF9;
}

@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: 33px;
  }
  .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;
  }
  .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: 88px 20px 6px 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .home {
    padding-top: 341px;
    padding-bottom: 12px;
  }
}
.home .wrapper {
  max-width: 692px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .home .wrapper {
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
}
.home h1 {
  font-weight: 900;
  font-size: 28px;
  line-height: 44px;
  color: #fff;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.8980392157);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 22px;
}
@media screen and (min-width: 1200px) {
  .home h1 {
    font-weight: 900;
    font-size: 36px;
    line-height: 44px;
  }
}
.home h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  margin-bottom: 22px;
}
@media screen and (min-width: 1200px) {
  .home h2 {
    margin-bottom: 40px;
  }
}
.home .button {
  all: unset;
  display: block;
  width: 225px;
  height: auto;
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: 327px;
}
@media screen and (min-width: 1200px) {
  .home .button {
    margin-bottom: 128px;
  }
}
.home p {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .home p {
    font-size: 18px;
  }
}
.home .hero-img {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 360px;
  max-width: 360px;
}
@media screen and (min-width: 1200px) {
  .home .hero-img {
    max-width: none;
    width: auto;
    top: 50%;
    -webkit-transform: translate(-10%, -50%);
            transform: translate(-10%, -50%);
  }
}

.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 {
  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);
  cursor: pointer;
}

.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 #485AF9;
  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: #485AF9;
  color: #fff;
}

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

.howtoplay {
  background-image: url("../../images/howtoplay-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 82px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .howtoplay {
    padding-block: 60px;
  }
}
.howtoplay h3 {
  max-width: 510px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 32px;
}
@media screen and (min-width: 1200px) {
  .howtoplay h3 {
    margin-bottom: 40px;
  }
}
.howtoplay ul {
  margin-inline: -20px;
}
.howtoplay 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;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  border-radius: 22px;
  padding: 22px;
  margin: 0 11px;
  width: 300px;
  height: 180px;
}
.howtoplay img {
  margin-bottom: 10px;
}
.howtoplay p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.gallery {
  background: -webkit-gradient(linear, left top, left bottom, from(#8bb5ff), to(#e1fbff));
  background: linear-gradient(180deg, #8bb5ff 0%, #e1fbff 100%);
  padding-top: 30px;
  padding-bottom: 77px;
}
@media screen and (min-width: 1200px) {
  .gallery {
    padding-top: 60px;
    padding-bottom: 38px;
  }
}
.gallery 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;
  height: 560px;
}
.gallery li {
  margin: 0 16px;
}
.gallery li img {
  width: 270px;
  height: 480px;
  opacity: 0.5;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.gallery li.slick-active img {
  width: 315px;
  height: 560px;
  opacity: 100%;
}

.faq {
  background: url("../../images/faq-bg.jpg") no-repeat center/cover;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .faq {
    padding-block: 60px;
  }
}
.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: 1160px;
  width: 100%;
  border-radius: 22px;
  border: 2px solid #485AF9;
  padding: 18px 12px;
}
.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__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: 36px;
  height: 39px;
  padding: 0;
  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;
}

.article {
  padding: 30px 20px 46px 20px;
}
@media screen and (min-width: 1200px) {
  .article {
    padding-top: 60px;
    padding-bottom: 85px;
  }
}
.article ul {
  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;
  row-gap: 12px;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media screen and (min-width: 1200px) {
  .article ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.article ul li:nth-child(even) img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.article li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  max-width: 467px;
  width: 100%;
}

.about {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEBEA), to(#D8EEFF));
  background: linear-gradient(180deg, #FFEBEA 0%, #D8EEFF 100%);
  padding: 30px 20px;
}
@media screen and (min-width: 1200px) {
  .about {
    padding-top: 60px;
    padding-bottom: 16px;
  }
}
.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: 78px;
}
@media screen and (min-width: 1200px) {
  .about .container {
    gap: 50px;
  }
}
.about__image {
  max-width: 335px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .about__image {
    max-width: 822px;
  }
}

.identity {
  background-image: url("../../images/identity-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 20px 45px 20px;
}
@media screen and (min-width: 1200px) {
  .identity {
    padding-block: 60px;
  }
  .identity h2 {
    text-align: start;
  }
}
.identity .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: 1200px) {
  .identity .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 84px;
  }
}
.identity img {
  max-width: 375px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .identity img {
    max-width: none;
  }
}

.contact {
  background-image: url("../../images/contact-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
.contact 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: 10px;
  margin-block: 10px;
}
.contact li a {
  text-decoration: none;
  color: var(--text-color);
}

.updates {
  background: #d8eeff;
  padding-block: 30px;
}
@media screen and (min-width: 1200px) {
  .updates {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.updates 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;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  border-radius: 22px;
  padding: 37px 22px;
  margin: 0 11px;
  width: 300px;
  height: 210px;
}
.updates img {
  margin-bottom: 10px;
}
.updates h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 6px;
}
.updates p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.feature {
  background: -webkit-gradient(linear, left top, left bottom, from(#8bb5ff), to(#e1fbff));
  background: linear-gradient(180deg, #8bb5ff 0%, #e1fbff 100%);
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .feature {
    padding-top: 60px;
    padding-bottom: 102px;
  }
}
.feature ul {
  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;
  row-gap: 22px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.feature li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  max-width: 507px;
  width: 100%;
}
.feature h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 12px;
}

.testimonials {
  background-image: url("../../images/testimonials-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 30px;
}
@media screen and (min-width: 1200px) {
  .testimonials {
    padding-top: 60px;
  }
}
.testimonials li {
  width: 335px;
  height: 432px;
  border-radius: 22px;
  padding: 22px;
  margin: 0 11px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
@media screen and (min-width: 1200px) {
  .testimonials li {
    width: 526px;
    height: 336px;
  }
}
.testimonials li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-bottom: 12px;
}
.testimonials h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #07032b;
}
.testimonials p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #07032b;
}

.footer {
  background: #000850;
  padding: 28px 20px;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-block: 44px;
  }
}
.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: 32px;
}
@media screen and (min-width: 1200px) {
  .footer .container {
    -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;
  }
}
.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: 1200px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
.footer__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.footer__copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  text-align: center;
}
.footer .text {
  text-align: center;
  margin-bottom: 14px;
}

.policies {
  background: #bbe3fc;
  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: 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 */