:root {
  --main: "Poppins", sans-serif;
  --sec: "Poppins", sans-serif;
  --text: #373737;
  --accent: #0F95FE;
  --header-bg: #FFFFFFEB;
  --header-text: #202020;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main);
  color: var(--text);
  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: 1200px;
  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;
  width: 63px;
  height: 63px;
  padding: 0;
  border: 1px solid #0f95fe;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  background-color: #0f95fe;
}
.button:hover .arrow {
  stroke: #fff;
}

.arrow {
  stroke: #0f95fe;
  width: 24px;
  height: 24px;
}

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

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

.header__icon--menu {
  stroke: #0F95FE;
}

.header__icon--close {
  fill: #0F95FE;
}

.title {
  font-family: var(--sec);
  font-weight: 600;
  font-size: 44px;
  line-height: 52px;
  color: var(--header-text);
  margin-bottom: 40px;
  text-transform: capitalize;
}
@media screen and (min-width: 1210px) {
  .title {
    font-weight: 600;
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 64px;
  }
}

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

.txt {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(15, 149, 254, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(15, 149, 254, 0.2509803922);
}
.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 24px 20px;
  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: 36px;
  padding: 48px 46px;
  background: #fff;
  border: 1px solid #202020;
  border-radius: 24px;
  margin-top: 28px;
  max-height: 90vh;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #5ba7fe transparent;
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  color: var(--header-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 5px 10px;
  border-radius: 24px;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  color: #fff;
  background-color: #5ba7fe;
}

@media screen and (min-width: 1200px) {
  .header__icon-button {
    display: none;
  }
  .header__button-wrapper {
    display: none;
  }
  .navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 24px 0px;
  }
  .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;
    gap: 20px;
    width: auto;
    margin-top: 0;
    padding: 3px;
  }
  .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/desc-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  padding: 110px 20px 43px 20px;
  margin-top: 40px;
}
@media screen and (min-width: 1210px) {
  .home {
    margin-top: 140px;
    padding-bottom: 96px;
  }
  .home .container div {
    position: relative;
    top: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .home {
    background-size: contain;
    background-position: center;
  }
}
.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;
  gap: 28px;
}
@media screen and (min-width: 1210px) {
  .home .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 36px;
  }
}
.home h1 {
  font-family: var(--sec);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
  color: #fff;
}
@media screen and (min-width: 1210px) {
  .home h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    text-align: start;
  }
}
.home h2 {
  color: #fff;
  margin-bottom: 28px;
}
.home ul {
  margin-bottom: 36px;
  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;
}
.home li {
  color: var(--accent);
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.home a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 24px;
  border: 1px solid #0f95fe;
  color: #fff;
  text-decoration: none;
}
.home .hero-img {
  max-width: 303px;
  width: 100%;
}
@media screen and (min-width: 1210px) {
  .home .hero-img {
    max-width: 500px;
    position: relative;
    bottom: 45px;
  }
}

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

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

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

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

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

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

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

.popup .button-wrap button {
  font-family: var(--main);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  background: #fff;
  color: #6F6C90;
  border: 1px solid #0F95FE;
  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: #0F95FE;
  color: #fff;
}

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

.gallery {
  background: #000c21;
  padding-block: 62px;
}
@media screen and (min-width: 1210px) {
  .gallery {
    padding-block: 95px;
  }
  .gallery .slick-active .gallery__image {
    width: 438px;
    height: 656px;
  }
}
.gallery h2 {
  color: #fff;
  text-align: center;
}
.gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1210px) {
  .gallery__list {
    width: 1190px;
    margin: 0 auto;
    height: 656px;
  }
}
.gallery__item {
  margin: 0 12px;
  cursor: pointer;
}
@media screen and (min-width: 1210px) {
  .gallery__item {
    margin: 0 20px;
  }
}
.gallery__image {
  width: 335px;
  height: 450px;
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
}
@media screen and (min-width: 1210px) {
  .gallery__image {
    width: 304px;
  }
}

.gift {
  padding-block: 62px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .gift {
    padding-block: 95px;
  }
  .gift h2,
  .gift .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .gift .button-container {
    display: none;
  }
}
.gift h2 span {
  color: var(--accent);
}
.gift .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 36px;
}
@media screen and (min-width: 1210px) {
  .gift .title-box {
    -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;
  }
}
.gift 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;
  gap: 20px;
}
.gift .box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 335px;
  height: 327px;
  margin: 0 12px;
}
@media screen and (min-width: 1210px) {
  .gift .box {
    margin: 0;
    width: 385px;
  }
}
.gift img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gift p {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  backdrop-filter: blur(4px);
  padding: 14px 16px;
  color: #0f95fe;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  background: linear-gradient(178.15deg, #ffffff 33.53%, rgba(255, 255, 255, 0) 105.36%);
}

.about {
  padding-block: 62px;
  padding-inline: 20px;
  position: relative;
}
@media screen and (min-width: 1210px) {
  .about {
    padding-block: 95px;
  }
}
.about h2 {
  text-align: center;
}
.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: 28px;
}
@media screen and (min-width: 1210px) {
  .about .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.about 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: 44px;
}
.about h3 {
  margin-bottom: 12px;
}
.about .bg-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 300px;
}
@media screen and (min-width: 1210px) {
  .about .bg-img {
    width: auto;
  }
}

.howtoplay {
  padding-block: 62px;
  padding-inline: 20px;
  position: relative;
}
@media screen and (min-width: 1210px) {
  .howtoplay {
    padding-block: 95px;
  }
  .howtoplay ul li:nth-child(2) {
    margin-left: 60px;
  }
  .howtoplay ul li:nth-child(3) {
    margin-left: 120px;
  }
}
.howtoplay .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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
}
@media screen and (min-width: 1210px) {
  .howtoplay .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 68px;
  }
}
.howtoplay .with-arrow {
  position: relative;
  display: inline-block;
  padding-right: 45px;
}
@media screen and (min-width: 1210px) {
  .howtoplay .with-arrow {
    padding-right: 120px;
  }
}
.howtoplay .with-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 40px;
  height: 5px;
  background-image: url("../../images/arrow-2.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1210px) {
  .howtoplay .with-arrow::after {
    width: 110px;
    height: 16px;
  }
}
.howtoplay .image {
  max-width: 355px;
  width: 100%;
}
@media screen and (min-width: 1210px) {
  .howtoplay .image {
    max-width: 636px;
  }
}
.howtoplay .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 300px;
}
@media screen and (min-width: 1210px) {
  .howtoplay .bg-image {
    width: auto;
  }
}
.howtoplay ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1210px) {
  .howtoplay ul {
    gap: 32px;
  }
}
.howtoplay h3 {
  color: var(--accent);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 16px;
}

.contacts {
  padding-block: 62px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .contacts {
    padding-block: 95px;
    height: 875px;
    position: relative;
  }
  .contacts .box {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-100%, -90%);
            transform: translate(-100%, -90%);
    padding: 50px;
    background-color: #fff;
    width: 600px;
  }
}
.contacts h3 {
  margin-bottom: 32px;
}
@media screen and (min-width: 1210px) {
  .contacts h3 {
    text-align: start;
  }
}
.contacts .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
}
.contacts 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 1210px) {
  .contacts ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contacts li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.contacts p {
  font-weight: 700;
  display: inline;
}
.contacts a {
  color: var(--text);
}
.contacts img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 577px;
  border-radius: 20px;
}
@media screen and (min-width: 1210px) {
  .contacts img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scaleX(-1);
            transform: translate(-50%, -50%) scaleX(-1);
    width: 1200px;
  }
}

.reviews {
  padding-block: 62px;
  padding-inline: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1210px) {
  .reviews {
    padding-block: 95px;
  }
  .reviews .button-container {
    display: none;
  }
  .reviews .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .reviews .reviews__list li:nth-child(2) {
    margin-top: 52px;
  }
  .reviews .reviews__list li:nth-child(3) {
    position: relative;
    bottom: 50px;
  }
}
.reviews ul {
  margin-inline: -20px;
}
@media screen and (min-width: 1210px) {
  .reviews ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    min-width: 840px;
    margin: 0;
  }
}
.reviews li {
  width: 335px;
  height: 484px;
  background: #000c21;
  border: 1px solid #0f95fe;
  margin: 0 12px;
  border-radius: 30px;
  padding: 28px 16px;
  position: relative;
}
@media screen and (min-width: 1210px) {
  .reviews li {
    width: 410px;
    height: 458px;
    padding: 36px 28px;
    margin: 0;
  }
}
.reviews li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../../images/grid.png");
  background-size: cover;
}
.reviews h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.reviews p {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-top: 20px;
  color: var(--accent);
}
.reviews .girl-img {
  width: 335px;
  margin: 0 auto;
  margin-top: 24px;
}
@media screen and (min-width: 1210px) {
  .reviews .girl-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-135%);
            transform: translate(-135%);
    width: auto;
  }
}
.reviews .bg-image {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: -1;
  width: auto;
  height: auto;
  max-width: 1000px;
  max-height: none;
}
@media screen and (min-width: 1210px) {
  .reviews .bg-image {
    max-width: none;
  }
}

.footer {
  background: #120027;
  padding: 36px 20px;
}
.footer__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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background: rgba(15, 149, 254, 0.0901960784);
  border: 1px solid #0f95fe;
  border-radius: 12px;
  padding: 16px 10px;
}
@media screen and (min-width: 1210px) {
  .footer__container {
    width: 100%;
    -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;
    padding-inline: 40px;
  }
}
.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;
  gap: 24px;
}
@media screen and (min-width: 1210px) {
  .footer__wrapper {
    gap: 36px;
  }
}
.footer__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
  text-align: center;
  color: #fff;
}
.footer__copyright,
.footer a {
  font-family: var(--sec);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}/*# sourceMappingURL=main.css.map */