<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&amp;display=swap");
:root {
  --main-font: "Bricolage Grotesque", sans-serif;
  --text-color: #fff;
  --header-bg: #371656f5;
  --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;
}

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: 1280px;
  margin: 0 auto;
}

.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;
  background-color: transparent;
  border: 1px solid #1c8133;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 48px;
  height: 48px;
}
.button:hover {
  background-color: #1c8133;
}
.button:hover .gallery__arrow-icon {
  fill: white;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.icon {
  width: 42px;
  height: 42px;
  fill: white;
}

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

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

.section--title {
  font-weight: 800;
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .section--title {
    font-weight: 800;
    font-size: 52px;
    line-height: 60px;
  }
}

.section--sec-txt {
  font-weight: 300;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .section--sec-txt {
    margin-bottom: 56px;
  }
}

.section--text {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
}
@media screen and (min-width: 1200px) {
  .section--text {
    font-size: 20px;
  }
}

.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;
  padding-right: 35px;
}
.header__icon {
  display: none;
  width: 38px;
  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-block: 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: 24px;
  padding: 24px 36px;
  top: 76px;
  background: var(--header-bg);
  margin-top: 16px;
  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: 16px;
  line-height: 24px;
  text-decoration: none;
  padding-block: 9px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  background: rgba(132, 0, 255, 0.2509803922);
  border: 1px solid #8400ff;
  padding-inline: 26px;
  border-radius: 24px;
  font-weight: 700;
}

.header.is-open {
  background-color: transparent;
}

@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-block: 24px;
  }
  .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: center;
  padding: 132px 20px 98px 20px;
}
@media screen and (min-width: 1200px) {
  .home {
    padding-bottom: 85px;
    background-position: bottom;
  }
}
.home__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: 80px;
}
@media screen and (min-width: 1200px) {
  .home__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;
    gap: 0;
  }
}
.home h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  margin-bottom: 32px;
  max-width: 500px;
}
@media screen and (min-width: 1200px) {
  .home h1 {
    font-weight: 800;
    font-size: 64px;
    line-height: 64px;
    max-width: 695px;
  }
}
.home__image {
  max-width: 500px;
  width: 100%;
}

.play-btn {
  display: block;
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.play-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (min-width: 1200px) {
  .play-btn {
    max-width: 470px;
  }
}

.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: #3a2660;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1803921569);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1803921569);
  overflow: hidden;
  padding: 20px;
}
@media screen and (min-width: 1200px) {
  .popup {
    max-width: 1280px;
    padding: 22px;
  }
}
.popup .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: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 16px;
}
@media screen and (min-width: 1200px) {
  .popup .wrapper {
    -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: 44px;
  }
}
.popup img {
  width: 43px;
}
.popup p {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.popup .button-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1200px) {
  .popup .button-wrap {
    max-width: 358px;
    gap: 38px;
  }
}
.popup .button-wrap button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  background: transparent;
  color: #fff;
  border: 2px solid #e3e1eb;
  border-radius: 6px;
  padding-block: 12px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup .button-wrap button:hover {
  background: #e3e1eb;
  color: #10182f;
}

.features {
  background: -webkit-gradient(linear, left bottom, left top, from(#030205), to(#402b6b));
  background: linear-gradient(0deg, #030205 0%, #402b6b 100%);
  margin-top: -1px;
  padding: 64px 20px;
}
@media screen and (min-width: 1200px) {
  .features {
    padding: 100px;
  }
}
.features .section--text {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 1200px) {
  .features .section--text {
    margin-bottom: 48px;
  }
}
.features__list {
  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: 24px;
}
.features__item {
  max-width: 410px;
  width: 100%;
  min-height: 383px;
  background: rgba(132, 0, 255, 0.1490196078);
  border-radius: 30px;
  padding: 20px;
}
.features__box {
  border: 1px solid #8400ff;
  background: rgba(132, 0, 255, 0.1490196078);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
}
.features__icon {
  width: 168px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.features__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .features__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
  }
}
.features__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #e3e1eb;
}
@media screen and (min-width: 1200px) {
  .features__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}

.about {
  background: -webkit-gradient(linear, left top, left bottom, from(#030205), to(#402b6b));
  background: linear-gradient(180deg, #030205 0%, #402b6b 100%);
  margin-top: -1px;
  padding-top: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .about {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.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;
}
@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: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .about h2,
  .about h3 {
    text-align: start;
  }
}

.benefits {
  background: -webkit-gradient(linear, left top, left bottom, from(#030205), to(#402b6b));
  background: linear-gradient(180deg, #030205 0%, #402b6b 100%);
  margin-top: -1px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .benefits {
    padding-block: 100px;
  }
}
.benefits__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;
}
@media screen and (min-width: 1200px) {
  .benefits__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 50px;
  }
}
.benefits__image {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .benefits__image {
    max-width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .benefits h2,
  .benefits h3 {
    text-align: start;
  }
}
.benefits__text {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.benefits 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;
  margin-bottom: 32px;
}
.benefits li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.benefits li p {
  font-weight: 500;
}

.demo {
  background: -webkit-gradient(linear, left bottom, left top, from(#030205), to(#402b6b));
  background: linear-gradient(0deg, #030205 0%, #402b6b 100%);
  margin-top: -1px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .demo {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.demo__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: 10px;
  background: rgba(132, 0, 255, 0.1490196078);
  border: 1px solid #8400ff;
  border-radius: 30px;
  padding: 36px 16px;
}
@media screen and (min-width: 1200px) {
  .demo__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 48px 28px;
    padding-right: 120px;
  }
}
.demo__image {
  max-width: 360px;
  width: 100%;
}
.demo span {
  font-weight: 700;
  color: #ff77f1;
}
@media screen and (min-width: 1200px) {
  .demo .section--text {
    font-size: 24px;
    line-height: 32px;
  }
}
.demo .play-btn {
  margin-left: 0;
}

.game-iframe-wrapper {
  position: relative;
  margin-top: 36px;
}

.game-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

@media screen and (min-width: 1200px) {
  .game-iframe {
    height: 1000px;
  }
}
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  background-color: transparent;
}

.tricks {
  background: -webkit-gradient(linear, left top, left bottom, from(#030205), to(#402b6b));
  background: linear-gradient(180deg, #030205 0%, #402b6b 100%);
  margin-top: -1px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .tricks {
    padding-block: 100px;
  }
}
.tricks__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: 1200px) {
  .tricks__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}
.tricks__image {
  max-width: 400px;
  width: 100%;
  -webkit-filter: drop-shadow(-4px -4px 10.4px rgba(160, 82, 255, 0.3490196078)) drop-shadow(4px 4px 10.4px rgba(160, 82, 255, 0.3490196078));
          filter: drop-shadow(-4px -4px 10.4px rgba(160, 82, 255, 0.3490196078)) drop-shadow(4px 4px 10.4px rgba(160, 82, 255, 0.3490196078));
}
@media screen and (min-width: 1200px) {
  .tricks__image {
    max-width: 700px;
  }
}
.tricks__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 32px;
}
.tricks 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;
}
.tricks li span {
  font-weight: 600;
}

.tech {
  background-image: url("../../images/tech-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 64px;
  padding-inline: 20px;
  padding-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .tech {
    padding-top: 100px;
  }
}
.tech__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;
}
@media screen and (min-width: 1200px) {
  .tech__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
.tech__image {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .tech__image {
    max-width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .tech h2,
  .tech h3 {
    text-align: start;
  }
}
.tech__text {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.tech 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;
  margin-bottom: 32px;
}
.tech li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.tech li p {
  font-weight: 500;
}

.disclaimer {
  background-image: url("../../images/discl-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  margin-top: -1px;
  padding: 64px 20px;
}
@media screen and (min-width: 1200px) {
  .disclaimer {
    padding-block: 85px;
  }
}
.disclaimer .box {
  max-width: 996px;
  margin-left: auto;
}
.disclaimer h2 {
  text-align: start;
}
.disclaimer p {
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
}
@media screen and (min-width: 1200px) {
  .disclaimer p {
    font-weight: 300;
    font-size: 28px;
    line-height: 32px;
  }
}

.footer {
  background: #08050e;
  margin-top: -1px;
  padding: 40px;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding: 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: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
.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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
@media screen and (min-width: 1200px) {
  .footer__wrapper {
    -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;
  }
}
.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  text-align: center;
  color: var(--text-color);
}
@media screen and (min-width: 1200px) {
  .footer__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}
.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .footer__copyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
}

.policies {
  padding-top: 120px;
  padding-inline: 20px;
  padding-bottom: 60px;
  color: #0C0C0C;
}
@media screen and (min-width: 1200px) {
  .policies {
    padding-inline: 80px;
  }
}
.policies a {
  color: #0C0C0C;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: #371656;
}
.policies h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .policies h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
  }
}
.policies h2 {
  margin-block: 15px;
  font-size: 20px;
}
.policies h4 {
  margin-top: 15px;
}
.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: 18px;
  padding-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}
.policies strong {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */</pre></body></html>