@charset "UTF-8";

*,
*:after,
*:before {
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
}

:root {
  --font-family: "Montserrat";
  --bodyText: #1e1e1e;
  --accent: #e51c42;
  --accent2: #feb662;
  --accent3: #46bebe;
  --bodyBg: #f8f8f9;
  --footerBg: #feb662;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family), sans-serif;
  color: var(--bodyText);
  background-color: var(--bodyBg);
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-size: 16px;
}

.lock {
  overflow: hidden;
}

.page-content {
  display: flex;
  flex-direction: column;
}

.page-content > * {
  width: 100%;
}

.page-content header.header,
.page-content footer.footer {
  flex-shrink: 0;
}

.page-content main {
  flex-grow: 1;
}

a,
a:hover {
  text-decoration: none;
}

a {
  color: inherit;
}

*,
*:focus {
  outline: none;
}

a[href^="tel:"],
a[href^="mailto:"] {
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
p {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-cover,
.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

input,
button,
textarea {
  border: none;
  background: none;
  padding: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
}

button,
input[type=submit] {
  cursor: pointer;
}

address {
  font-style: normal;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
}

input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
}

.container,
.container-fluid {
  max-width: 1360px;
  width: 87vw;
  margin: 0 auto;
}

.container-fluid {
  max-width: 2500px;
  width: 100vw;
}

.d-flex,
.d-flex-cy,
.flex-column,
.flex-center {
  display: flex;
  gap: 8px;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.d-flex-cy,
.icon-txt {
  align-items: center;
}

.d-flex.xs-flex-column {
  flex-direction: column;
}

h1,
.h1 {
  font-size: 40px;
  font-weight: 700;
  font-size: 40px;
  font-size: clamp(36px, 2vw + 20px, 40px);
  line-height: 1.15;
}

h2,
.h2 {
  font-weight: 600;
  font-size: 32px;
}

h3,
.h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.03em;
}

.h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: -0.03em;
  color: #000;
}

.txt-accent {
  color: var(--accent) !important;
}

.txt-center {
  text-align: center;
}

.text-medium {
  font-weight: 500;
}

.text-link {
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-block: 3px;
  opacity: 0.5;
}

.text-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 1px;
  background-color: currentColor;
  transition: 0.3s;
}

.text-link:hover {
  opacity: 1;
}

.text-link:hover:before {
  width: 0;
}

.btn,
.btn-52,
.btn-secondary {
  --bg: #e51c42;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  padding-inline: 30px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: var(--bg);
  transition: 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-secondary {
  background-color: rgba(254, 182, 98, 0.6);
  color: var(--bodyText);
}

.btn-hover-wave {
  --ripple-color: rgba(255,255,255,.85);
  --ripple-duration: 700ms;
}

.btn-52 {
  height: 52px;
  min-width: 200px;
}

.btn-hover-wave::after {
  content: "";
  position: absolute;
  width: var(--rd, 0px);
  height: var(--rd, 0px);
  left: calc(var(--rx, 0px) - var(--rr, 0px));
  top: calc(var(--ry, 0px) - var(--rr, 0px));
  border-radius: 50%;
  background: radial-gradient(circle, var(--ripple-color) 0 45%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

/* Запуск анимации */

.btn-hover-wave.rip::after {
  animation: ripple var(--ripple-duration) ease-out forwards;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }

  70% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.05);
    opacity: 0;
  }
}

.btn-decore {
  position: relative;
  display: flex;
  align-items: center;
}

.btn-decore:before,
.btn-decore:after {
  content: "";
  width: 25px;
  height: 74px;
  display: block;
  flex-shrink: 0;
  background-image: url("../img/btn-decore-left.svg");
  background-size: cover;
}

.btn-decore:after {
  background-image: url("../img/btn-decore-right.svg");
}

.btn-decore > [class^=btn-] {
  font-size: 12px;
  border-radius: 9px;
}

svg {
  display: inline-block;
}

.svg-logo {
  aspect-ratio: 177/30;
  height: 30px;
}

.arrow-right {
  display: inline-block;
  width: 25px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='25' height='16' viewBox='0 0 25 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.5996 0.5L23.3996 8L15.5996 15.5' stroke='%231E1E1E' stroke-linecap='round'/%3e%3cline x1='0.5' y1='8' x2='22.9' y2='8' stroke='%231E1E1E' stroke-linecap='round'/%3e%3c/svg%3e");
}

.svg-card1,
.svg-card2,
.svg-card3,
.svg-card4 {
  width: 42px;
  height: 43px;
  color: white;
}

.svg-card2 {
  width: 46px;
  height: 39px;
}

.svg-card3 {
  width: 44px;
  height: 43px;
}

.svg-card4 {
  width: 46px;
  height: 39px;
}

.svg-month {
  width: 22px;
  height: 24px;
  color: #00A8A8;
}

.svg-big-arrow {
  width: 52px;
  height: 73px;
  flex-shrink: 0;
  opacity: 0.15;
}

.svg-stars {
  width: 90px;
  height: 18px;
}

.header-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.header-menu__link {
  font-size: 16px;
  font-weight: 500;
  padding: 2em 1em;
  display: block;
  color: var(--bodyText);
  transition: text-shadow 0.2s ease;
}

.header-menu .active .header-menu__link {
  text-shadow: 0.25px 0 currentColor, -0.25px 0 currentColor, 0 0.25px currentColor, 0 -0.25px currentColor;
}

/*BURGER*/

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background-color: rgba(255, 143, 75, 0.3);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  display: none;
}

.menu-toggle span {
  position: relative;
  border-radius: 2px;
  width: 21px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.7);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  background-color: rgba(0, 0, 0, 0.7);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Active state */

.menu-toggle.active span {
  background-color: transparent;
}

.menu-toggle.active span::before,
.menu-toggle.active span::after {
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  background-color: rgba(0, 0, 0, 0.7);
}

.menu-toggle.active span::before {
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  transform: rotate(-45deg);
}

.has-animate {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.has-animate .has-animate-line {
  position: relative;
}

.has-animate .menu-animate-line {
  position: absolute;
  bottom: 0;
  height: 5px;
  background-color: red;
  left: 0;
  width: 100px;
  z-index: 2;
  transition: 0.3s;
}

header.header {
  background-color: #fff;
  border-bottom: 1px solid #e2e2e2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

header.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.header .header-group {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

header.header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 180px;
  height: 30px;
}

header.header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero {
  padding-top: 130px;
  padding-bottom: 88px;
  margin-top: 87px;
}

.label-link,
.label-link__tag,
.label-link__txt {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
}

.label-link {
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  font-weight: 500;
  font-size: 14px;
  color: #1e1e1e;
  height: 36px;
  border-radius: 20px;
  background-color: var(--accent2);
  -moz-column-gap: 32px;
  column-gap: 32px;
  padding-inline: 32px;
}

.label-link__tag {
  justify-content: center;
  font-weight: 700;
  background-color: #fff;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 20px;
  height: 36px;
  margin-left: -32px;
}

.hero-content {
  align-items: flex-start;
  -moz-column-gap: 140px;
  column-gap: 140px;
}

.hero-text {
  row-gap: 32px;
  width: 50%;
  max-width: 553px;
  flex-shrink: 0;
}

.hero-subtext,
.subtext {
  font-weight: 500;
  font-size: 16px;
}

.hero-subtext p + p,
.subtext p + p {
  margin-top: 20px;
}

.app-links-group {
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.app-links-group .app-link {
  transition: 0.3s;
}

.app-links-group .app-link img {
  height: 56px;
  width: auto;
}

.app-links-group .app-link:hover {
  opacity: 0.7;
}

.hero-picture {
  position: relative;
  width: 50%;
  max-width: 582px;
  max-height: 582px;
  aspect-ratio: 1/1;
  margin-left: auto;
  margin-right: auto;
  top: -20px;
}

.hero-picture:before,
.hero-picture:after {
  content: "";
  border-radius: 36px;
  display: block;
  aspect-ratio: 1;
}

.hero-picture:before {
  width: 100%;
  background: var(--accent);
  transform: rotate(87deg);
  z-index: 1;
}

.hero-picture:after {
  z-index: 2;
  position: absolute;
  top: 3%;
  left: 3%;
  width: 93.5%;
  height: 93.5%;
  max-width: 546px;
  background-color: var(--accent2);
}

.hero-picture .round-logo {
  position: absolute;
  z-index: 5;
  top: -24px;
  left: -50px;
  transform: rotate(0) scale(0);
}

.round-logo {
  width: 205px;
  height: 205px;
  flex-shrink: 0;
  border-radius: 50%;
}

.hero-picture-top,
.hero-picture-bottom {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 549/383;
  position: absolute;
  top: 50%;
  padding: 8px;
}

.hero-picture-top:after,
.hero-picture-bottom:after {
  content: "";
  position: absolute;
  border-radius: 24px;
  z-index: 1;
  width: calc(100% + 10px);
  left: -5px;
  top: -5px;
  bottom: -5px;
}

.hero-picture-top img,
.hero-picture-bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
  position: relative;
  border-radius: 16px;
}

.hero-picture-top {
  z-index: 4;
  left: 0;
  transform: translate(9%, -62%) rotate(2.5deg);
}

.hero-picture-top:after {
  background: linear-gradient(to bottom, #DA65D2 0%, #555555 100%);
}

.hero-picture-bottom {
  z-index: 3;
  left: 0;
  transform: translate(-22%, -42%) rotate(-2.5deg);
}

.hero-picture-bottom:after {
  background: linear-gradient(to bottom, #C4E2FA 0%, #6F7A7C 100%);
}

.hero .round-logo.has-custom-animate.show-animated {
  animation-name: zoomImg;
  animation-duration: 0.9s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes zoomImg {
  0% {
    transform: rotate(0) scale(0);
  }

  50% {
    transform: rotate(0) scale(1);
  }

  70% {
    transform: rotate(15.45deg) scale(1);
  }

  90% {
    transform: rotate(-15.45deg) scale(1);
  }

  100% {
    transform: rotate(-7.45deg) scale(1);
  }
}

.edu-resourses {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #fff;
}

.edu-resourses__content {
  align-items: center;
}

.edu-resourses__logos {
  display: flex;
  align-items: center;
  flex: 1;
}

.edu-resourses__logos .brand-logo {
  flex: 1;
  height: 116px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edu-resourses__logos .brand-logo img {
  width: 100%;
  max-width: 116px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.edu-resourses__logos .brand-logo:last-child img {
  max-width: 180px;
}

.brand-logo img {
  transition: 0.3s;
}

.brand-logo:hover img {
  filter: grayscale(1);
}

.game-cards {
  padding-top: 100px;
  padding-bottom: 150px;
}

.game-card {
  border-radius: 36px;
  box-shadow: 8px 8px 20px 0 rgba(135, 139, 156, 0.19);
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.game-card__header {
  position: relative;
  border-radius: 36px 36px 0 0;
  padding: 19.5px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent3);
  flex-shrink: 0;
}

.game-card__header .h3 {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 12px;
  text-align: center;
  width: 100%;
}

.game-card__label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 35px;
  border-radius: 16px;
  width: 95px;
  height: 95px;
  background: #e51c42;
  transform: rotate(-16deg);
  transform-origin: top left;
}

.game-card__label svg {
  transform: rotate(16deg);
}

.game-card__body {
  padding: 60px;
  flex-grow: 1;
  padding-bottom: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 57px;
  overflow: hidden;
  aspect-ratio: 650/570;
  width: 100%;
}

.game-card__img {
  border-radius: 36px 36px 0 0;
  background: rgba(254, 182, 98, 0.2);
  flex: 1;
  position: relative;
}

.game-card__img img {
  position: absolute;
  transform: rotate(-7deg);
  border-radius: 36px;
  left: 0;
  top: 16px;
  border: 5px solid var(--accent3);
}

.game-cards__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.game-cards__content .game-card {
  grid-column: span 1;
}

.game-card.has-custom-animate {
  transform: translateY(100px);
  opacity: 0.7;
}

.game-card.has-custom-animate .game-card__label {
  transform: rotate(0);
  transition: 1.5s;
}

.game-card.has-custom-animate.show-animated {
  animation-name: upDown;
  animation-duration: 0.7s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.game-card.has-custom-animate.show-animated .game-card__label {
  transform: rotate(-16deg);
}

@keyframes upDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.month-card {
  padding: 32px;
  border-radius: 12px;
  background: rgba(0, 168, 168, 0.15);
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  flex: 1;
  position: relative;
}

.month-card:after {
  content: "";
  width: 33px;
  height: 19px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='33' height='19' viewBox='0 0 33 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.941561 3.50016L15.0858 17.6444C15.8668 18.4254 17.1332 18.4254 17.9142 17.6444L32.0584 3.50015C33.3184 2.24022 32.426 0.0859375 30.6442 0.0859375H2.35577C0.573961 0.0859375 -0.318368 2.24023 0.941561 3.50016Z' fill='%2346BEBE' /%3e%3c/svg%3e");
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(55%, -50%) rotate(-90deg);
  z-index: 2;
  display: none;
}

.month-card__title {
  flex-shrink: 0;
  padding: 8px;
  border-radius: 30px;
  background-color: var(--accent3);
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
  column-gap: 7px;
  width: -moz-fit-content;
  width: fit-content;
}

.month-card__title .h3 {
  color: white;
  padding-left: 12px;
  padding-right: 12px;
}

.month-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  padding: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.month-card__text {
  text-align: center;
}

.month-card__text p {
  font-weight: 500;
}

.month-card:last-child:after {
  display: none;
}

.month-cards {
  padding-block: 71px;
  background-color: #fff;
}

.month-cards__content {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.month-card.has-custom-animate {
  transform: scale(0.6);
}

.month-card.has-custom-animate.show-animated {
  animation-name: upZoom;
  animation-duration: 0.7s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes upZoom {
  to {
    transform: scale(1);
  }
}

.video-preview {
  padding-block: 120px;
  background-color: #fff;
  background-color: rgba(254, 182, 98, 0.7);
}

.video {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  cursor: pointer;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 36px;
  border: 10px solid var(--accent3);
  outline: 10px solid var(--accent);
  overflow: hidden;
}

.video:before {
  content: "";
  transition: 0.3s;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%23ffffff' height='800px' width='800px' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 300 300' xml:space='preserve'%3e%3cg id='SVGRepo_bgCarrier' stroke-width='0'/%3e%3cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3e%3cg id='SVGRepo_iconCarrier'%3e%3cg%3e%3cg%3e%3cpath d='M150,0C67.157,0,0,67.162,0,150c0,82.841,67.157,150,150,150s150-67.159,150-150C300,67.162,232.843,0,150,0z M205.846,158.266l-86.557,49.971c-1.32,0.765-2.799,1.144-4.272,1.144c-1.473,0-2.949-0.379-4.274-1.144 c-2.64-1.525-4.269-4.347-4.269-7.402V100.89c0-3.053,1.631-5.88,4.269-7.402c2.648-1.528,5.906-1.528,8.551,0l86.557,49.974 c2.645,1.53,4.274,4.352,4.269,7.402C210.12,153.916,208.494,156.741,205.846,158.266z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-size: 60px;
  pointer-events: none;
}

.video.active:before {
  display: none;
}

.video video {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.video-local .poster {
  position: absolute;
  inset: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.review-slider .swiper-slide {
  height: unset;
  display: flex;
}

.review-slider .swiper-slide:nth-child(2n) .review-card {
  background-image: url("../img/reviewbg2.webp");
}

.review-slider .swiper-slide:nth-child(2n) .review-card .review-card__content {
  border-color: rgba(0, 168, 168, 0.3);
}

.review-slider .swiper-slide:nth-child(2n) .review-card .review-card__body {
  background: rgba(0, 168, 168, 0.15);
}

.review-card {
  background-image: url("../img/reviewbg1.webp");
  background-size: contain;
  background-position: left;
  max-height: 431px;
  padding-block: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.review-card__content {
  border: 10px solid rgba(255, 143, 75, 0.3);
  border-radius: 12px;
  padding: 24px 24px 12px;
  width: 87%;
  max-width: 364px;
  max-height: 364px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 8px 20px 0 rgba(135, 139, 156, 0.19);
  background: #fff;
}

.review-card .review-card__body {
  border-radius: 12px;
  padding: 24px;
  flex-grow: 1;
  background: rgba(255, 143, 75, 0.15);
}

.review-card blockquote,
.review-card p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #000;
}

.review-card__footer {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-bottom: 16px;
}

.review-card__author {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #000;
  flex-grow: 1;
}

.review-card__author span {
  font-size: 16px;
  font-weight: 400;
}

.review-card .icon-flag {
  width: 84px;
  height: 84px;
  -o-object-fit: contain;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.review {
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
}

.review .h2,
.review h2 {
  margin-bottom: 32px;
}

.faq {
  padding-block: 96px;
  background-color: #fff;
}

.faq .h2,
.faq h2 {
  margin-bottom: 12px;
}

.faq-content {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: 1fr;
}

.acordion-wrapper .acordion-item + .acordion-item {
  margin-top: 12px;
}

.acordion-wrapper .acordion-item {
  border: 1px solid rgba(255, 143, 75, 0.3);
  border-radius: 12px;
  background-color: #fff;
}

.acordion-wrapper .acordion-button {
  display: flex;
  padding: 24px;
  padding-left: 48px;
  border-radius: 12px;
  background: rgba(255, 143, 75, 0.3);
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  cursor: pointer;
}

.acordion-wrapper .acordion-button .h4 {
  font-weight: 600;
}

.acordion-wrapper .acordion-item--active .acordion-button {
  background-color: #fff;
}

.acordion-wrapper .acordion-item__title {
  flex-grow: 1;
}

.acordion-wrapper .acordion-item__icon {
  width: 23px;
  height: 23px;
  transition: 0.3s;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.375 0.125C9.12524 0.125 6.926 0.792132 5.05539 2.04203C3.18478 3.29193 1.72682 5.06847 0.865875 7.14698C0.00492861 9.22548 -0.220334 11.5126 0.218573 13.7192C0.657479 15.9257 1.74084 17.9525 3.33167 19.5433C4.92249 21.1342 6.94932 22.2175 9.15585 22.6564C11.3624 23.0953 13.6495 22.8701 15.728 22.0091C17.8065 21.1482 19.5831 19.6902 20.833 17.8196C22.0829 15.949 22.75 13.7498 22.75 11.5C22.7468 8.48414 21.5474 5.59271 19.4148 3.46018C17.2823 1.32764 14.3909 0.128185 11.375 0.125ZM11.375 21.125C9.47136 21.125 7.61046 20.5605 6.02764 19.5029C4.44482 18.4453 3.21116 16.9421 2.48266 15.1833C1.75417 13.4246 1.56356 11.4893 1.93495 9.62226C2.30633 7.75519 3.22302 6.04018 4.5691 4.6941C5.91518 3.34802 7.63019 2.43132 9.49726 2.05994C11.3643 1.68856 13.2996 1.87917 15.0583 2.60766C16.8171 3.33615 18.3203 4.56981 19.3779 6.15264C20.4355 7.73546 21 9.59635 21 11.5C20.9971 14.0518 19.9821 16.4983 18.1777 18.3027C16.3733 20.1071 13.9268 21.1221 11.375 21.125ZM16.625 11.5C16.625 11.7321 16.5328 11.9546 16.3687 12.1187C16.2046 12.2828 15.9821 12.375 15.75 12.375H12.25V15.875C12.25 16.1071 12.1578 16.3296 11.9937 16.4937C11.8296 16.6578 11.6071 16.75 11.375 16.75C11.1429 16.75 10.9204 16.6578 10.7563 16.4937C10.5922 16.3296 10.5 16.1071 10.5 15.875V12.375H7C6.76794 12.375 6.54538 12.2828 6.38129 12.1187C6.21719 11.9546 6.125 11.7321 6.125 11.5C6.125 11.2679 6.21719 11.0454 6.38129 10.8813C6.54538 10.7172 6.76794 10.625 7 10.625H10.5V7.125C10.5 6.89294 10.5922 6.67038 10.7563 6.50628C10.9204 6.34219 11.1429 6.25 11.375 6.25C11.6071 6.25 11.8296 6.34219 11.9937 6.50628C12.1578 6.67038 12.25 6.89294 12.25 7.125V10.625H15.75C15.9821 10.625 16.2046 10.7172 16.3687 10.8813C16.5328 11.0454 16.625 11.2679 16.625 11.5Z' fill='%231E1E1E' /%3e%3c/svg%3e");
  flex-shrink: 0;
}

.acordion-wrapper .acordion-item--active .acordion-item__icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.625 11.5C16.625 11.7321 16.5328 11.9546 16.3687 12.1187C16.2046 12.2828 15.9821 12.375 15.75 12.375H7C6.76794 12.375 6.54538 12.2828 6.38129 12.1187C6.21719 11.9546 6.125 11.7321 6.125 11.5C6.125 11.2679 6.21719 11.0454 6.38129 10.8813C6.54538 10.7172 6.76794 10.625 7 10.625H15.75C15.9821 10.625 16.2046 10.7172 16.3687 10.8813C16.5328 11.0454 16.625 11.2679 16.625 11.5ZM22.75 11.5C22.75 13.7498 22.0829 15.949 20.833 17.8196C19.5831 19.6902 17.8065 21.1482 15.728 22.0091C13.6495 22.8701 11.3624 23.0953 9.15585 22.6564C6.94932 22.2175 4.92249 21.1342 3.33167 19.5433C1.74084 17.9525 0.657479 15.9257 0.218573 13.7192C-0.220334 11.5126 0.00492861 9.22548 0.865875 7.14698C1.72682 5.06847 3.18478 3.29193 5.05539 2.04203C6.926 0.792132 9.12524 0.125 11.375 0.125C14.3909 0.128185 17.2823 1.32764 19.4148 3.46018C21.5474 5.59271 22.7468 8.48414 22.75 11.5ZM21 11.5C21 9.59635 20.4355 7.73546 19.3779 6.15264C18.3203 4.56981 16.8171 3.33615 15.0583 2.60766C13.2996 1.87917 11.3643 1.68856 9.49726 2.05994C7.63019 2.43132 5.91518 3.34802 4.5691 4.6941C3.22302 6.04018 2.30633 7.75519 1.93495 9.62226C1.56356 11.4893 1.75417 13.4246 2.48266 15.1833C3.21116 16.9421 4.44482 18.4453 6.02764 19.5029C7.61046 20.5605 9.47136 21.125 11.375 21.125C13.9268 21.1221 16.3733 20.1071 18.1777 18.3027C19.9821 16.4983 20.9971 14.0518 21 11.5Z' fill='%231E1E1E' /%3e%3c/svg%3e");
}

.acordion-wrapper .acordion-body {
  max-height: 0;
  overflow: hidden;
  transition: height 0.3s, max-height 0.3s;
}

.acordion-body__content {
  padding: 24px;
  padding-top: 0;
  padding-left: 86px;
  font-size: 16px;
}

footer.footer {
  padding-block: 48px;
  background-color: var(--accent2);
  background-image: url("../img/footer-bg.svg");
  background-size: 600px;
  background-position: right bottom;
}

footer.footer .footer-logo {
  margin-bottom: 24px;
}

.footer-logo {
  padding: 12px 36px;
  border-radius: 12px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo svg {
  height: 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.footer-links {
  margin-top: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
}

.special-page {
  padding-block: 60px;
  padding-top: 150px;
}

.special-page h1 {
  margin-bottom: 24px;
}

.special-page h2,
.special-page h3 {
  margin-block: 24px;
}

.special-page p {
  margin-block: 12px;
  line-height: 1.4;
}

.special-page .container {
  padding: 40px;
  width: 90%;
  border-radius: 36px;
  border: 10px solid var(--accent2);
  outline-offset: 1px;
  outline: 10px solid var(--accent3);
  background: rgba(0, 168, 168, 0.15);
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  text-align: center;
  padding-top: 32px;
}

@media (min-width: 744px) {
  .d-flex.xs-flex-column {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .game-card:nth-child(4n+2) .game-card__header,
  .game-card:nth-child(4n+3) .game-card__header {
    background-color: var(--accent2);
  }

  .game-card:nth-child(4n+2) .game-card__img img,
  .game-card:nth-child(4n+3) .game-card__img img {
    border-color: var(--accent2);
  }
}

@media (max-width: 1599px) {
  footer.footer {
    background-size: 37%;
  }
}

@media (max-width: 1499px) {
  .round-logo {
    width: 36%;
    height: 36%;
  }

  .game-card__label {
    top: 0;
    left: 20px;
  }

  .game-card__header {
    padding-left: 40px;
    padding-right: 40px;
  }

  .game-card__header h3,
  .game-card__header .h3 {
    padding: 8px 16px;
  }

  .game-card__body {
    padding: 30px;
    row-gap: 40px;
  }

  .game-card__label {
    width: 66px;
    height: 66px;
    padding: 16px;
    left: 19px;
  }

  .month-card {
    padding: 32px 16px;
  }

  .month-cards__content {
    -moz-column-gap: 12px;
    column-gap: 12px;
  }

  .month-cards__content .month-card-arrow svg {
    width: 30px;
  }
}

@media (max-width: 1439px) {
  .game-cards {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .game-card__img img {
    width: 96%;
  }
}

@media (max-width: 1364px) {
  h1,
  .h1 {
    font-size: 38px;
  }

  h2,
  .h2 {
    font-size: 26px;
  }

  header.header .container {
    max-width: 100%;
    width: 100vw;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-content {
    -moz-column-gap: 10vw;
    column-gap: 10vw;
  }

  .hero-text {
    row-gap: 20px;
  }

  .hero-subtext p + p,
  .subtext p + p {
    margin-top: 8px;
  }

  .hero-picture {
    top: 0;
  }

  .review-card {
    height: auto;
  }
}

@media (max-width: 1279px) {
  h1,
  .h1 {
    font-size: 36px;
    line-height: 111%;
  }

  h2,
  .h2 {
    font-size: 24px;
  }

  h3,
  .h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .hero-text h1,
  .hero-text .h1 {
    font-size: 32px;
  }

  .hero-subtext p,
  .subtext p {
    font-size: 14px;
  }

  .hero-subtext p + p,
  .subtext p + p {
    margin-top: 12px;
  }

  .app-links-group {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .app-links-group .app-link img {
    height: 42px;
  }
}

@media (max-width: 1199px) {
  .game-cards__content {
    gap: 16px;
  }

  .month-card:after {
    display: block;
  }

  .month-cards__content .month-card-arrow {
    display: none;
  }

  .faq {
    padding-block: 60px;
  }

  .acordion-wrapper .acordion-button {
    padding-left: 24px;
  }

  .acordion-body__content {
    padding-left: 63px;
  }

  footer.footer {
    background-image: none;
  }
}

@media (max-width: 1023px) {
  .container,
  .container-fluid {
    padding: 0 30px;
    width: 100%;
  }

  .header-menu__link {
    padding: 12px 0;
    width: -moz-fit-content;
    width: fit-content;
    color: white;
    font-size: 22px;
  }

  .header-menu .active .header-menu__link {
    text-shadow: none;
    font-weight: 600;
    border-bottom: 2px solid currentColor;
  }

  .header-menu-wrapper {
    position: fixed;
    top: 75px;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 5;
    transition: 0.3s;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-end;
    transform: translateX(110%);
  }

  .header-menu-wrapper.active {
    transform: translateX(0);
  }

  .header-menu-wrapper .header-menu {
    padding: 40px;
    padding-top: 50px;
    flex-direction: column;
    background-color: #fff;
    background-color: #ff8f4b;
    width: 100%;
    max-width: 424px;
    row-gap: 24px;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .has-animate .menu-animate-line {
    display: none !important;
  }

  header.header .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  header.header {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 75px;
  }

  .label-link__tag {
    display: none;
  }

  .hero-picture:before,
  .hero-picture:after {
    border-radius: 20px;
  }

  .hero-picture-top,
  .hero-picture-bottom {
    padding: 5px;
    border-radius: 12px;
  }

  .hero-picture-top:after,
  .hero-picture-bottom:after {
    border-radius: 12px;
  }

  .hero-picture-top img,
  .hero-picture-bottom img {
    border-radius: 8px;
  }

  .edu-resourses__content {
    flex-direction: column;
    text-align: center;
    row-gap: 12px;
  }

  .edu-resourses__logos {
    width: 100%;
  }

  .game-cards {
    padding-top: 52px;
    padding-bottom: 0;
  }

  .game-card__header {
    padding: 10px 37px;
    border-radius: 16px 16px 0 0;
  }

  .game-card__body {
    padding: 16px;
    row-gap: 14px;
    font-size: 14px;
    height: 256px;
  }

  .game-card__body p br {
    display: none;
  }

  .game-card__img {
    border-radius: 16px 16px 0 0;
    max-width: calc(100% - 32px);
    margin: 0 auto;
    width: 100%;
  }

  .month-card {
    padding: 20px 10px;
  }

  .month-card .h3 {
    font-size: 18px;
  }

  .month-card__text p {
    font-size: 14px;
  }

  .month-card .month-card__icon {
    width: 30px;
    height: 30px;
  }

  .video-preview {
    padding-block: 50px;
  }

  .video {
    border-radius: 24px;
    border: 5px solid var(--accent3);
    outline: 5px solid var(--accent);
  }

  .video video {
    border-radius: 18px;
  }

  .review-card__content {
    padding: 20px;
  }

  .review-card__content .h4 {
    font-size: 16px;
  }

  .review-card .review-card__body {
    padding: 14px;
  }

  .review-card blockquote,
  .review-card p {
    font-size: 14px;
  }

  .review-card__footer {
    padding-bottom: 12px;
  }

  .review-card__author span {
    font-size: 14px;
  }

  .review-card .icon-flag {
    width: 50px;
    height: 50px;
  }

  .faq-content {
    grid-template-columns: 1fr;
  }

  footer.footer {
    padding-block: 32px;
  }
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding: 0 16px;
    max-width: 572px;
  }

  .container-fluid {
    padding: 0;
    max-width: 100%;
  }

  .btn,
  .btn-52,
  .btn-secondary {
    font-size: 14px;
  }

  .btn-52 {
    min-width: 100px;
  }

  .svg-logo {
    height: 21px;
  }

  .header-menu-wrapper {
    top: 67px;
  }

  .header-menu-wrapper .header-menu {
    padding-left: 16px;
  }

  header.header .logo {
    height: 22px;
  }

  header.header .btn.btn-52 {
    padding-left: 16px;
    padding-right: 16px;
    height: 44px;
    min-width: 100px;
  }

  .hero {
    margin-top: 67px;
    padding-top: 24px;
    padding-bottom: 60px;
  }

  .label-link {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    flex-direction: column;
    row-gap: 37px;
  }

  .hero-text {
    width: 100%;
    row-gap: 16px;
    align-items: center;
  }

  .hero-text h1,
  .hero-text .h1 {
    text-align: center;
    font-size: 36px;
  }

  .hero-subtext {
    text-align: center;
  }

  .app-links-group {
    justify-content: center;
  }

  .hero-picture {
    width: 100%;
    max-width: 324px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-picture .round-logo {
    top: -10px;
    left: -20px;
  }

  .round-logo {
    width: 110px;
    height: 110px;
    top: -18px;
  }

  .hero-picture-top {
    transform: translate(14%, -62%) rotate(2.5deg);
  }

  .hero-picture-bottom {
    transform: translate(-10%, -42%) rotate(-2.5deg);
  }

  .edu-resourses {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .edu-resourses__logos .brand-logo {
    height: 68px;
  }

  .edu-resourses__logos .brand-logo img {
    max-width: 68px;
  }

  .edu-resourses__logos .brand-logo:last-child img {
    max-width: 100px;
  }

  .game-card__img img {
    max-height: 205px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right top;
    object-position: right top;
  }

  .game-card__img {
    height: 155px;
  }

  .game-cards__content {
    gap: 21px;
    grid-template-columns: repeat(1, 1fr);
  }

  .month-card:after {
    left: 50%;
    bottom: 0;
    top: auto;
    right: auto;
    transform: translate(-50%, 40%) rotate(0);
  }

  .month-card {
    min-width: 100%;
  }

  .month-card__title {
    width: 100%;
  }

  .month-card__title .h3 {
    font-size: 20px;
    text-align: center;
    flex-grow: 1;
    padding-left: 0;
    padding-right: 40px;
  }

  .month-card .month-card__icon {
    width: 40px;
    height: 40px;
  }

  .month-cards {
    background-color: transparent;
    padding-block: 60px;
  }

  .month-cards__content {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .review-card__content {
    padding: 12px;
  }

  .review-card__content .h4 {
    font-size: 14px;
  }

  .review-card__author span {
    font-size: 12px;
  }

  .review {
    padding-top: 0;
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .review .h2,
  .review h2 {
    margin-bottom: 24px;
  }

  .faq {
    padding-block: 48px;
  }

  .acordion-body__content {
    font-size: 14px;
  }

  footer.footer .h1 {
    font-size: 32px;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-content {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .special-page .container {
    max-width: 90%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .special-page {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .special-page p {
    font-size: 14px;
  }

  .special-page h2,
  .special-page h3 {
    margin-block: 14px;
  }

  .special-page h1 {
    margin-bottom: 16px;
  }

  .footer-copyright {
    font-size: 10px;
  }
}

@media (max-width: 767.99px) {
  .game-card:nth-child(2n) .game-card__header {
    background-color: var(--accent2);
  }

  .game-card:nth-child(2n) .game-card__img img {
    border-color: var(--accent2);
  }
}

@media (max-width: 423px) {
  h2,
  .h2 {
    font-size: 20px;
  }

  .hero-picture {
    max-width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-hover-wave::after {
    animation: none !important;
  }
}
/*# sourceMappingURL=main.css.map */
