:root {
  --main: "Outfit", sans-serif;
  --sec: "Outfit", sans-serif;
  --text: #363535;
  --header-bg: #FFFFFFEB;
  --header-text: #3D3D3D;
}

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

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

.header__icon--menu {
  stroke: #FF9200;
}

.header__icon--close {
  fill: #FF9200;
}

.title {
  font-family: var(--sec);
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 38px;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (min-width: 1210px) {
  .title {
    font-weight: 900;
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 56px;
  }
}

.text {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
@media screen and (min-width: 1210px) {
  .text {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
  }
}

.txt {
  font-weight: 700;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: #fff;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  -webkit-box-shadow: 0px 4px 20px 0px #af670d;
          box-shadow: 0px 4px 20px 0px #af670d;
}
.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: 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: #ffe8a8;
  border-radius: 40px;
  margin-top: 16px;
  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: 18px;
  line-height: 28px;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  font-weight: 700;
}

@media screen and (min-width: 1200px) {
  .header {
    background-color: var(--header-bg);
    margin-top: 28px;
    border-radius: 60px;
    max-width: 1260px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .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: 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: 44px;
    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: 101px 20px 288px 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1210px) {
  .home {
    padding-top: 140px;
    padding-bottom: 206px;
  }
}
.home .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: 20px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1210px) {
  .home .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 76px;
  }
}
.home .home-1 {
  position: absolute;
  bottom: 0;
  left: 32%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 182px;
}
@media screen and (min-width: 1210px) {
  .home .home-1 {
    max-width: none;
    left: 50%;
  }
}
.home .home-2 {
  position: absolute;
  bottom: 0;
  left: 70%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 258px;
}
@media screen and (min-width: 1210px) {
  .home .home-2 {
    max-width: none;
    width: 373px;
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
}
.home .title-img {
  max-width: 335px;
  width: 100%;
}
@media screen and (min-width: 1210px) {
  .home .title-img {
    max-width: none;
  }
}
.home h1 {
  font-family: var(--sec);
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1210px) {
  .home h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    text-align: start;
  }
}
.home h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1210px) {
  .home h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: start;
  }
}
.home ul {
  list-style: disc;
  margin-bottom: 24px;
  margin-left: 15px;
}
.home li {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.home p {
  font-weight: 800;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
@media screen and (min-width: 1210px) {
  .home p {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    max-width: 787px;
  }
}

.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: #221B1E;
  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: #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: #fff;
  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: #221B1E;
  color: #fff;
  border: 1px solid #FF9407;
  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: #FF9407;
}

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

.spec {
  background-image: url("../../images/spec-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .spec {
    padding-block: 88px;
  }
}
.spec 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: 24px;
  -webkit-column-gap: 56px;
     -moz-column-gap: 56px;
          column-gap: 56px;
  max-width: 934px;
  margin: 0 auto;
  margin-bottom: 28px;
}
@media screen and (min-width: 1210px) {
  .spec ul {
    row-gap: 48px;
    margin-bottom: 40px;
  }
}
.spec li {
  max-width: 439px;
  width: 100%;
  height: 87px;
  border-radius: 40px;
  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: rgba(10, 204, 255, 0.2);
  -webkit-backdrop-filter: blur(22.7987384796px);
          backdrop-filter: blur(22.7987384796px);
}
.spec .text {
  font-weight: 700;
  text-align: center;
}

.features {
  background-image: url("../../images/features-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .features {
    padding-block: 88px;
  }
}
.features h3 {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 44px;
}
.features 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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1210px) {
  .features ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 80px;
  }
}
.features li {
  width: 332px;
  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;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
.features img {
  height: 144px;
  margin-bottom: 28px;
}
@media screen and (min-width: 1210px) {
  .features img {
    height: 180px;
  }
}
.features span {
  font-weight: 800;
}

.about {
  background-image: url("../../images/about-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .about {
    padding-block: 88px;
  }
  .about h2 {
    text-align: start;
  }
}
.about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
}
@media screen and (min-width: 1210px) {
  .about .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 54px;
  }
}
.about div div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.novelty {
  background-image: url("../../images/about-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .novelty {
    padding-block: 88px;
  }
}
.novelty .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) {
  .novelty .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 49px;
  }
}
.novelty 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: 28px;
}
@media screen and (min-width: 1210px) {
  .novelty ul {
    gap: 48px;
  }
}
.novelty li {
  width: 335px;
  height: 140px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  background: linear-gradient(179.73deg, #F98E00 33.76%, #FFE49A 144.38%);
  border: 2px solid;
  border-image-source: linear-gradient(180deg, #ffffff 0%, #484848 100%);
  -webkit-box-shadow: 0px 4px 4px 0px #ff9200;
          box-shadow: 0px 4px 4px 0px #ff9200;
  border-radius: 20px;
  text-align: center;
  padding: 28px 24px;
}
@media screen and (min-width: 1210px) {
  .novelty li {
    max-width: 359px;
    width: 100%;
    height: 184px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    padding-inline: 36px;
  }
}
.novelty span {
  font-weight: 800;
}
.novelty img {
  max-width: 335px;
}
@media screen and (min-width: 1210px) {
  .novelty img {
    max-width: none;
  }
}

.value {
  background-image: url("../../images/value-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .value {
    padding-block: 88px;
  }
  .value h2 {
    text-align: start;
  }
}
.value .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: 1210px) {
  .value .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 72px;
  }
}
.value ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 28px;
}
.value li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 1210px) {
  .value li {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
  }
}
.value img {
  width: 335px;
}
@media screen and (min-width: 1210px) {
  .value img {
    width: auto;
  }
}

.howtoplay {
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .howtoplay {
    padding-block: 88px;
  }
}
.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-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: 1210px) {
  .howtoplay .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 52px;
  }
}
.howtoplay img {
  max-width: 355px;
  width: 100%;
}
@media screen and (min-width: 1210px) {
  .howtoplay img {
    max-width: none;
  }
}
.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: 20px;
}
@media screen and (min-width: 1210px) {
  .howtoplay ul {
    gap: 32px;
  }
}

.puzzle {
  background-image: url("../../images/puzzle-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .puzzle {
    padding-block: 88px;
  }
}
.puzzle h3 {
  text-align: center;
}
.puzzle ul {
  width: 335px;
  margin: 0 auto;
  margin-top: 32px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 28px;
}
@media screen and (min-width: 1210px) {
  .puzzle ul {
    width: 560px;
    margin-right: 60px;
    margin-top: 96px;
    margin-bottom: 24px;
  }
}
.puzzle li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 154px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 1210px) {
  .puzzle li {
    width: 255px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    gap: 28px;
  }
}
.puzzle li img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1210px) {
  .puzzle li img {
    width: 52px;
    height: 52px;
  }
}
.puzzle .box {
  background: rgba(255, 146, 0, 0.2);
  -webkit-backdrop-filter: blur(22.7987384796px);
          backdrop-filter: blur(22.7987384796px);
  padding: 28px 20px;
  padding-bottom: 0;
  border-radius: 40px;
}
@media screen and (min-width: 1210px) {
  .puzzle .box {
    padding: 40px 44px;
    position: relative;
  }
}
.puzzle .box p {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1210px) {
  .puzzle .box p {
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    max-width: 749px;
    margin-left: auto;
    margin-bottom: 0;
  }
}
.puzzle .box img {
  width: 238px;
  margin: 0 auto;
}
@media screen and (min-width: 1210px) {
  .puzzle .box img {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: auto;
  }
}

.education {
  background-image: url("../../images/about-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .education {
    padding-block: 88px;
  }
}
.education h3 {
  text-align: center;
}
.education ul {
  margin-top: 59px;
  margin-bottom: 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: 65px;
}
@media screen and (min-width: 1210px) {
  .education ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 48px;
    margin-bottom: 40px;
    margin-top: 80px;
  }
}
.education li {
  width: 335px;
  height: 203px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  background: linear-gradient(180.18deg, #ff9200 33.73%, #ffe49a 99.84%);
  border: 2px solid;
  border-image-source: linear-gradient(180deg, #ffffff 0%, #484848 100%);
  -webkit-box-shadow: 0px 4px 4px 0px #ff9200;
          box-shadow: 0px 4px 4px 0px #ff9200;
  border-radius: 20px;
  text-align: center;
  position: relative;
  padding-inline: 24px;
  padding-top: 60px;
}
@media screen and (min-width: 1210px) {
  .education li {
    width: 360px;
    height: 290px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    padding-inline: 36px;
    padding-top: 100px;
  }
}
.education span {
  font-weight: 800;
}
.education li img {
  position: absolute;
  top: -13%;
  right: 0;
}
@media screen and (min-width: 1210px) {
  .education li img {
    top: -7%;
    right: 20px;
  }
}
.education .bottom-txt {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 1210px) {
  .education .bottom-txt {
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    max-width: 749px;
    margin: 0 auto;
  }
}

.rewards {
  background-image: url("../../images/rewards-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 20px 80px 20px;
}
@media screen and (min-width: 1210px) {
  .rewards {
    padding-block: 88px;
  }
}
.rewards h3 {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 1210px) {
  .rewards h3 {
    margin-bottom: 127px;
  }
}
.rewards .container {
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  -webkit-box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0);
          box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0);
  border-radius: 10px;
  padding-top: 48px;
  padding-inline: 16px;
  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: 20px;
  background: rgba(10, 204, 255, 0.2);
  -webkit-backdrop-filter: blur(22.7987384796px);
          backdrop-filter: blur(22.7987384796px);
  border-radius: 40px;
}
@media screen and (min-width: 1210px) {
  .rewards .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 28px;
    padding: 0px 60px 0px 0px;
    height: 520px;
  }
}
.rewards img {
  max-width: 295px;
  width: 100%;
  position: relative;
  bottom: -15px;
}
@media screen and (min-width: 1210px) {
  .rewards img {
    max-width: none;
    top: -30px;
    left: 64px;
  }
}
.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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 24px;
}
@media screen and (min-width: 1210px) {
  .rewards ul {
    row-gap: 40px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.rewards li {
  max-width: 575px;
  width: 100%;
}
.rewards .text {
  text-align: center;
}

.contacts {
  background: rgba(10, 204, 255, 0.2);
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 1210px) {
  .contacts {
    padding-block: 88px;
  }
  .contacts h2 {
    text-align: start;
  }
}
.contacts h3 {
  text-align: center;
  margin-bottom: 48px;
}
@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;
}
@media screen and (min-width: 1210px) {
  .contacts .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 68px;
  }
}
.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;
  list-style: disc;
  gap: 10px;
  margin-left: 20px;
}
@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;
}
@media screen and (min-width: 1210px) {
  .contacts li {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
  }
}
.contacts span {
  font-weight: 700;
}
.contacts a {
  color: var(--text);
}

.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: 24px;
}
@media screen and (min-width: 1210px) {
  .footer__container {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: unset;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 4px;
}
@media screen and (min-width: 1210px) {
  .footer__wrapper {
    gap: 8px;
  }
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.footer__text {
  font-family: var(--sec);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (min-width: 1210px) {
  .footer__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}
.footer__copyright,
.footer a {
  font-family: var(--sec);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5019607843);
}/*# sourceMappingURL=main.css.map */