:root {
  /* Define you base variables */
  --text-color: #1E1E1E;
  --text-color-active: #337AF3;
  --primary-color: #FAD23C;
  --bg-color: #EFF4FA;
  --text-bg-color: #537AFF;
  --text-color-red: #FE4112;
  --save-color2: #BB0300;
  --font60: 60px;
  --font48: 48px;
  --font36: 36px;
  --font32: 32px;
  --font30: 30px;
  --font28: 28px;
  --font26: 26px;
  --font24: 24px;
  --font18: 18px;
  --font16: 16px;
  --font14: 14px;
  --font12: 12px;
}

header {
  width: 100%;
  display: flex;
  position: fixed;
  z-index: 1000;
  transition: all 0.3s ease;
  transform: translateY(-100%);
}
header.active:not(.drawer_active) {
  background: #E7EEFF;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
}
header.active:not(.drawer_active) .lang_change {
  background: #E7EEFF;
}
header.active:not(.drawer_active) .header {
  padding: 15px 0;
}
header.inited {
  transform: translateY(0);
}
header.inited.scroll-down {
  transform: translateY(-100%);
}
header .header {
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 55px;
  padding: 33px 0;
  overflow: visible;
  transition: all 0.3s ease;
}
header .header .mobile_btn {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-flow: column;
  gap: 5px;
  border: 0.5px solid var(--text-color);
  border-radius: 5px;
  padding: 7px;
}
header .header .mobile_btn .line {
  width: 100%;
  height: 3px;
  background: var(--text-bg-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}
header .header .mobile_btn.active {
  background: var(--bg-color);
}
header .header .mobile_btn.active .line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
header .header .mobile_btn.active .line:nth-child(2) {
  opacity: 0;
}
header .header .mobile_btn.active .line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(-100%);
}
.drawer.active {
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
}
.drawer.active .lang_change {
  background: #E7EEFF;
}
.drawer .drawer_content {
  padding-top: 155px;
  transition: all 0.4s ease-out;
  background: var(--bg-color);
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  z-index: 14124124124;
}
.drawer .drawer_content .drawer_header {
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  padding: 0 20px;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 20px;
  align-items: center;
}
.drawer .drawer_content .drawer_header span {
  font-size: 20px;
  font-weight: bold;
  color: #01124f;
}
.drawer .drawer_content .content {
  padding: 0 20px;
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.drawer .drawer_content .content .lang_wrapper {
  margin: 0;
  margin-bottom: 40px;
}
.drawer .drawer_content .content .header_menu {
  display: flex !important;
  flex-flow: column;
  gap: 40px;
}
.drawer .drawer_content .content .header_menu li {
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
}
.drawer .drawer_content .content .header_menu li a {
  color: #000835;
  text-decoration: none;
}
.drawer .drawer_content .content .header_menu li:last-child {
  border: none;
}
.drawer .drawer_content .content .enter_cabinet {
  margin-top: 60px;
  margin-bottom: 50px;
  margin-right: 0;
}
.drawer .drawer_content .content .button {
  height: 47px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
}
.drawer .drawer_content .content .button:hover .arrow {
  transform: rotate(90deg);
}
.drawer .drawer_content .content .button .arrow {
  transform: rotate(0);
}

.lang_wrapper {
  border-radius: 5px;
  border: 1px solid #1E1E1E;
  width: 60px;
  height: 35px;
  display: flex;
  justify-content: center;
  font-size: var(--font14);
  position: relative;
  color: var(--text-color);
  cursor: pointer;
  padding: 4px;
  margin-right: 35px;
  flex: none;
}
.lang_wrapper .flag {
  font-size: 20px;
  margin: 0;
  flex: none;
  width: 22px;
}
.lang_wrapper .flag .icon-uk,
.lang_wrapper .flag .icon-us {
  background-image: url(../../img/flags/ua.svg);
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.lang_wrapper .flag .icon-us {
  background-image: url(../../img/flags/us.svg);
  width: 20px;
  margin-left: 2px;
}
.lang_wrapper .name__social-form {
  font-size: var(--font14);
  color: var(--text-color);
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang_wrapper:hover {
  border-bottom: 1px solid transparent;
  border-radius: 5px 5px 0 0;
}
.lang_wrapper:hover ul {
  display: flex !important;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.lang_wrapper ul {
  display: none !important;
  flex-flow: column;
  position: absolute;
  background: white;
  color: #000;
  text-transform: uppercase;
  border-radius: 4px;
  min-width: 50px;
  width: auto;
  z-index: 1010000;
  top: 45px;
  right: -5px;
  background: transparent;
  border: 1px solid #1E1E1E;
  top: 33px;
  right: inherit;
  left: -1px;
  width: calc(100% + 2px);
}
.lang_wrapper ul li {
  padding: 2.5px 7px;
}
.lang_wrapper ul li a {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}

.enter_cabinet {
  display: flex;
  align-items: center;
  margin-right: 20px;
  white-space: nowrap;
  font-size: var(--font16);
  font-weight: bold;
  gap: 5px;
  transition: all 0.3s ease;
}
.enter_cabinet:hover svg path {
  fill: var(--text-color-active);
}
.enter_cabinet:hover svg path:not(:first-child) {
  transform: translateX(-2px);
}
.enter_cabinet:hover {
  color: var(--text-color-active);
}
.enter_cabinet svg {
  width: 28px;
  height: 28px;
}
.enter_cabinet svg path {
  transition: all 0.3s ease;
}

ul.header_menu {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 0 35px;
  margin-right: auto;
  font-family: "Akrobat", sans-serif;
  font-weight: 500;
}
ul.header_menu li {
  font-size: var(--font16);
  cursor: pointer;
  text-align: center;
}
ul.header_menu li a {
  text-decoration: none;
}

@media (max-width: 1366px) {
  ul.header_menu {
    gap: 20px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  header.drawer_active .logo {
    opacity: 0;
  }
  header .header .lang_wrapper,
  header .header .button.main,
  header .header .header_menu,
  header .header .enter_cabinet {
    display: none;
  }
  header .header .mobile_btn {
    display: flex;
  }
  .drawer {
    display: flex;
  }
  .drawer ul.header_menu {
    padding: 0;
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  header .header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .drawer .drawer_content .content .button {
    font-size: 16px;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  background-color: #EFF4FA;
  color: var(--text-color);
}

* {
  box-sizing: border-box;
}

a {
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

input {
  border: none;
  outline: none;
  background: transparent;
  font-family: "Akrobat", sans-serif;
  border-radius: 0;
}

::-moz-selection {
  background: rgba(253, 169, 42, 0.3333333333);
  color: #000;
}

::selection {
  background: rgba(253, 169, 42, 0.3333333333);
  color: #000;
}

.no_select * {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.strikethrough {
  position: relative;
}
.strikethrough::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 4px solid var(--save-color2);
  transform: rotate(350deg);
}

.absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.minecraft {
  font-family: "Minecraft", sans-serif;
  color: #00B500;
}

.show_for_desktop,
.show_for_desktop_only {
  display: block;
}

.show_for_mobile {
  display: none;
}

.show_for_tablet {
  display: none;
}

main * {
  line-height: normal !important;
}
main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main ul li {
  display: flex;
}

.row {
  display: flex;
}

.shadow_mobile_click {
  -webkit-tap-highlight-color: transparent;
}
.shadow_mobile_click:active {
  box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.25) !important;
}

.col {
  display: flex;
  flex-flow: column;
}

.logo {
  font-size: var(--font40);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img {
  width: 265px;
  height: 50px;
}

.button {
  background: linear-gradient(to bottom, #15E2ED, #2849A1);
  box-shadow: 0 4px 0px 0 #102970;
  height: 49px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
  font-family: "Museo Sans Cyrl", sans-serif;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
  padding: 12px 20px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  border-radius: 0;
}
.button:hover {
  box-shadow: 0 4px 0px 0 #102970;
  background: linear-gradient(to bottom, #15E2ED, #3c71ff);
}
.button.orange {
  background: linear-gradient(0deg, #AC6228 0%, #FD770E 66%);
  box-shadow: 0 6px 0px 0 #102970;
  padding: 15px 45px;
}
.button.orange:hover {
  background: linear-gradient(0deg, #ff9039 0%, #FD770E 66%);
}
.button.orange:hover .arrow .diagonal_arr {
  transform: rotate(-45deg);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.row {
  display: flex;
}

.col {
  display: flex;
  flex-flow: column;
}

.bg {
  background: url(../images/cube.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 40px;
  height: 40px;
}

section.main {
  background: url(../images/main_bg.png) no-repeat;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
section.main .container {
  position: relative;
}
section.main .container .cube1 {
  left: -205px;
  width: 122px;
  height: 133px;
  filter: blur(20px);
  top: 239px;
}
section.main .container .cube2 {
  right: -105px;
  left: inherit;
  width: 52px;
  height: 57px;
  filter: blur(20px);
  top: 402px;
}
section.main .container .row {
  margin-top: 72px;
  margin-bottom: 41px;
}
section.main .container .main_photo {
  width: 530px;
  margin-right: 52px;
}
section.main .container .col {
  margin-top: 63px;
}
section.main .container .col .hero-kicker,
section.main .container .col h2 {
  font-size: var(--font32);
  font-weight: 900;
  font-family: "Museo Sans Cyrl", sans-serif;
  margin-bottom: 18px;
}
section.main .container .col p {
  font-size: 20px;
  margin-bottom: 35px;
  max-width: 560px;
  line-height: 26px !important;
}
section.main .container .col h1 {
  font-size: 46px;
  margin-bottom: 13px;
}
section.main .container .col .chips {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
section.main .container .col .chips .chip {
  background: #fff;
  min-width: 111px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  box-shadow: 0 4px 0 rgba(134, 134, 134, 0.062745098);
}
section.main .container .col .button {
  font-size: 16px;
}

section.about {
  padding-bottom: 80px;
}
section.about .white_block {
  border-radius: 10px;
  background: #fff;
  padding: 36px 65px;
}
section.about .white_block ul {
  display: flex;
  gap: 45px;
}
section.about .white_block ul li {
  padding-left: 25px;
  position: relative;
  font-weight: bold;
}
section.about .white_block ul li::before {
  position: absolute;
  background: #00B500;
  width: 10px;
  height: 10px;
  content: "";
  top: 5px;
  left: 0;
}

section.for_who {
  padding-bottom: 100px;
}
section.for_who .col {
  align-items: center;
}
section.for_who .container {
  position: relative;
}
section.for_who .cube1 {
  width: 86px;
  height: 94px;
  left: -169px;
  top: 356px;
  filter: blur(5px);
  rotate: -19deg;
}
section.for_who .cube2 {
  left: inherit;
  width: 115px;
  height: 127px;
  right: 94px;
  filter: blur(3px);
  rotate: 37deg;
  top: 46px;
}
section.for_who .main_photo {
  max-width: 450px;
  width: 100%;
  max-height: 163px;
}
section.for_who h2 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: var(--font32);
  font-weight: 900;
  margin-bottom: 40px;
}
section.for_who .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
section.for_who .cards .card {
  padding: 30px;
  background: #fff;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.062745098);
}
section.for_who .cards .card span {
  display: flex;
  font-size: 48px;
  margin-bottom: 16px;
}
section.for_who .cards .card h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 26px;
  font-family: "Museo Sans Cyrl", sans-serif;
}
section.for_who .cards .card p {
  font-size: 16px;
}

section.what_child_will_get {
  padding-bottom: 8px;
}
section.what_child_will_get .content {
  background: white;
  padding: 60px 40px;
}
section.what_child_will_get .content h2 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: var(--font32);
  font-weight: 900;
  margin-bottom: 27px;
}
section.what_child_will_get .content .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
section.what_child_will_get .content .cards .card {
  display: flex;
}
section.what_child_will_get .content .cards .card .img {
  flex: none;
  width: 83px;
  height: 83px;
}
section.what_child_will_get .content .cards .card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.what_child_will_get .content .cards .card .flag {
  width: 15px;
  height: 67px;
  flex: none;
  margin-top: 30px;
  margin-right: 18px;
}
section.what_child_will_get .content .cards .card .col {
  margin-top: 26px;
}
section.what_child_will_get .content .cards .card .col h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
section.what_child_will_get .content .cards .card .col p {
  opacity: 0.6;
  font-size: 12px;
  max-width: 210px;
}

section.inspire {
  padding-bottom: 100px;
  padding-top: 100px;
}
section.inspire .block {
  padding-bottom: 51px;
  padding-left: 64px;
  position: relative;
  background: #CCD9EC;
}
section.inspire .block .left_side {
  width: 100%;
}
section.inspire .block .row {
  width: 100%;
}
section.inspire .block .left_time {
  display: flex;
  align-items: center;
  background: #fff;
  font-size: 20px;
  font-weight: 500;
  gap: 17px;
  flex-flow: column;
  padding: 15px 23px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 20px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1450980392);
}
section.inspire .block .left_time .minecraft {
  font-size: 30px;
  font-weight: 400;
}
section.inspire .block h2 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 42px !important;
  font-weight: 900;
  margin-bottom: 9px;
  max-width: 403px;
}
section.inspire .block p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 34px;
}
section.inspire .block .price {
  background: #102970;
  padding-right: 40px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  display: flex;
  flex-flow: column;
  width: auto;
  height: auto;
  padding: 10px 30px;
  width: 197px;
  flex: none;
  margin-left: 37px;
  position: relative;
  z-index: 2;
  height: -moz-max-content;
  height: max-content;
}
section.inspire .block .price .old {
  font-size: 30px;
  color: #fff;
  opacity: 0.8;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
section.inspire .block .price .new {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}
section.inspire .block .price .new span {
  font-size: 24px;
}
section.inspire .block .button {
  padding: 15px 118px;
  position: relative;
  z-index: 10;
}
section.inspire .block .img {
  position: relative;
  width: 100%;
  max-width: 400px;
  top: -46px;
}
section.inspire .block .img img.criper {
  width: 100%;
  height: 545px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(-1, 1);
  z-index: 2;
}
section.inspire .block .img2 {
  position: absolute;
  overflow: hidden;
  width: 461px;
  height: 100%;
  right: 15px;
}
section.inspire .block .img2 .rects {
  width: 100%;
  height: 100%;
  position: absolute;
  left: inherit;
  top: 0;
}

section.program {
  background: #fff;
}
section.program .program_wrapper {
  background: rgba(238, 209, 186, 0.4);
  padding: 100px 0;
  overflow: hidden;
}
section.program .program_wrapper .container {
  position: relative;
}
section.program .program_wrapper .container .chips {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
section.program .program_wrapper .container .chips .chip {
  background: #fff;
  min-width: 206px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.062745098);
  padding: 0 10px;
}
section.program .program_wrapper .container h2 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: var(--font32);
  font-weight: 900;
  margin-bottom: 10px;
  max-width: 800px;
}
section.program .program_wrapper .container p.subtitle {
  font-size: 20px;
  max-width: 800px;
  margin-bottom: 40px;
}
section.program .program_wrapper .container .cube1 {
  width: 172px;
  height: 189px;
  left: -214px;
  top: inherit;
  bottom: -55px;
  filter: blur(2px);
  rotate: 0;
}
section.program .program_wrapper .container .cube2 {
  left: inherit;
  width: 115px;
  height: 127px;
  right: -168px;
  rotate: -34deg;
  top: 136px;
  filter: blur(10px);
}
section.program .program_wrapper .container .items {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
section.program .program_wrapper .container .items .item .item_header {
  transition: all 0.3s ease;
  background: #fff;
  padding: 32px 36px;
  border: 2px solid transparent;
  align-items: center;
  position: relative;
  display: flex;
  cursor: pointer;
}
section.program .program_wrapper .container .items .item .item_header .minecraft {
  font-size: 24px;
  font-weight: 400;
}
section.program .program_wrapper .container .items .item .item_header h4 {
  font-size: 20px;
  font-weight: 500;
  margin-left: 30px;
  color: #666666;
}
section.program .program_wrapper .container .items .item .item_header .arrow_down {
  position: absolute;
  right: 40px;
  transform: rotate(0);
  background: url(../images/arrow_down.svg) no-repeat;
  width: 19px;
  height: 13px;
}
section.program .program_wrapper .container .items .item .item_body {
  display: none;
  margin-top: 20px;
}
section.program .program_wrapper .container .items .item .item_body img {
  width: 40%;
  margin-right: 20px;
  min-height: 286px;
  flex: none;
}
section.program .program_wrapper .container .items .item .item_body ul {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 9px;
}
section.program .program_wrapper .container .items .item .item_body ul li {
  background: white;
  font-size: 18px;
  padding-top: 22px;
  padding-right: 22px;
  padding-left: 23px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
section.program .program_wrapper .container .items .item .item_body ul li:hover {
  margin-left: -32px;
}
section.program .program_wrapper .container .items .item .item_body ul li .minecraft {
  margin-right: 30px;
  font-size: 24px;
}
section.program .program_wrapper .container .items .item .hover_img {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  position: absolute;
  right: 165px;
  transform: scale(0.8);
  transform-origin: center;
  z-index: 2;
}
section.program .program_wrapper .container .items .item:hover .item_header {
  margin-left: 36px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.062745098);
}
section.program .program_wrapper .container .items .item:hover .hover_img {
  display: none;
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
section.program .program_wrapper .container .items .item.active .item_header {
  background: #E9E4E0;
  padding: 32px 36px;
  border: 2px solid #2849A1;
  margin-left: 0;
}
section.program .program_wrapper .container .items .item.active .item_header .arrow_down {
  transform: rotate(180deg);
}
section.program .program_wrapper .container .items .item.active .item_header h4 {
  color: #2849A1;
}
section.program .program_wrapper .container .items .item.active .item_body {
  display: flex;
}
section.program .program_wrapper .container .items .item.active:hover .hover_img {
  display: none;
}

section.process {
  position: relative;
  padding-top: 100px;
  padding-bottom: 50px;
}
section.process .clouds {
  background: url(../images/clouds.svg) no-repeat;
  right: 0;
  left: inherit;
  top: 0;
  width: 650px;
  height: 185px;
}
section.process .container {
  position: relative;
}
section.process .container .grid {
  background: url(../images/grid.png) no-repeat;
  left: calc(50% - 325px);
  bottom: 0;
  top: inherit;
  width: 705px;
  height: 60px;
}
section.process .container .charachter {
  width: 137px;
  height: 187px;
  background: url(../images/character.png) no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  left: -126px;
  bottom: 100px;
  top: inherit;
}
section.process .container h2 {
  margin-bottom: 60px;
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: var(--font32);
  font-weight: 900;
  margin-left: 26px;
}
section.process .container ul {
  display: flex;
  flex-flow: column;
  padding-bottom: 100px;
  position: relative;
  padding-left: 67px;
  padding-right: 67px;
}
section.process .container ul::after {
  position: absolute;
  left: 50%;
  bottom: 100px;
  top: 0;
  content: "";
  width: 2px;
  background: #2849A1;
}
section.process .container ul li {
  position: relative;
  font-size: 20px;
  max-width: 50%;
  width: 100%;
}
section.process .container ul li span {
  position: relative;
  max-width: 83%;
  padding-left: 20px;
}
section.process .container ul li span::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #00B500;
  left: 0;
  transform: rotate(45deg);
  top: 5px;
}
section.process .container ul li::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background: #00B500;
  z-index: 1;
  right: -11.5px;
  top: 0;
}
section.process .container ul li::before {
  position: absolute;
  content: "";
  width: 66px;
  height: 2px;
  background: #2849A1;
  z-index: 1;
  right: -11.5px;
  top: 10px;
}
section.process .container ul li:nth-child(even) {
  justify-content: flex-end;
  align-self: flex-end;
}
section.process .container ul li:nth-child(even)::after {
  left: -10px;
  right: inherit;
}
section.process .container ul li:nth-child(even)::before {
  left: -10px;
  right: inherit;
}

section.cert {
  overflow: hidden;
  padding-top: 50px;
}
section.cert .certificate {
  background: #fff;
  padding: 60px;
  position: relative;
  min-height: 414px;
}
section.cert .certificate .col {
  max-width: 488px;
}
section.cert .certificate h2 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: var(--font32);
  font-weight: 900;
  margin-bottom: 13px;
}
section.cert .certificate .minecraft {
  font-size: 46px;
  margin-bottom: 12px;
}
section.cert .certificate h4 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: var(--font32);
  font-weight: 900;
  margin-bottom: 30px;
  max-width: 488px;
}
section.cert .certificate p {
  font-size: 20px;
  max-width: 439px;
}
section.cert .certificate .img {
  position: absolute;
  width: 679px;
  height: 100%;
  top: 0;
  right: 20px;
  z-index: 2;
}
section.cert .certificate .img img {
  width: 100%;
  position: absolute;
  top: -40px;
  -o-object-fit: cover;
  object-fit: contain;
  bottom: 0;
  height: calc(100% + 40px);
}
section.cert .certificate .img2 {
  position: absolute;
  width: 500px;
  height: 100%;
  top: 0;
  z-index: 1;
  right: 145px;
  overflow: hidden;
}
section.cert .certificate .img2 img.rects {
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: contain;
  bottom: 0;
}
section.cert .certificate .img3 {
  width: 404px;
  height: 404px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
section.cert .certificate .img3 .sword {
  width: 100%;
  height: 100%;
  right: -60px;
  left: inherit;
  top: -52px;
  -o-object-fit: unset;
     object-fit: unset;
}

section.rewievs {
  padding-bottom: 100px;
  padding-top: 100px;
  overflow: hidden;
}
section.rewievs .container {
  position: relative;
}
section.rewievs .container .cube1 {
  left: -160px;
  width: 44px;
  height: 44px;
  filter: blur(3px);
  top: inherit;
  bottom: -22px;
  rotate: -38deg;
}
section.rewievs .container .cube2 {
  right: -191px;
  left: inherit;
  width: 122px;
  height: 133px;
  filter: blur(10px);
  top: -21px;
  rotate: 20deg;
}
section.rewievs .container h2 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: var(--font32);
  font-weight: 900;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}
section.rewievs .container .cards {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
section.rewievs .container .cards .card {
  display: flex;
  flex-flow: column;
  padding: 20px;
  gap: 20px;
  background: #fff;
  min-height: 200px;
  justify-content: space-between;
  height: -moz-min-content;
  height: min-content;
  margin-bottom: 30px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
section.rewievs .container .cards .card .row {
  gap: 20px;
}
section.rewievs .container .cards .card .row .img {
  background: #00B500;
  rotate: 75deg;
  width: 56px;
  height: 56px;
  display: flex;
  flex: none;
}
section.rewievs .container .cards .card .row .img img {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
  object-fit: cover;
  position: absolute;
  top: 0;
  rotate: -75deg;
}
section.rewievs .container .cards .card .row .col h4 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 5px;
}
section.rewievs .container .cards .card .row .col span {
  font-size: 14px;
}
section.rewievs .container .cards .card p {
  font-size: 14px;
}
section.rewievs .container .more_btn {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #2849A1;
  margin: 0 auto;
  display: none;
  height: 85px;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: -55px;
  z-index: 2;
  cursor: pointer;
}
section.rewievs .container .more_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #E7EEFF;
  bottom: 0;
  filter: blur(20px);
  z-index: -1;
}

section.inspire2 {
  background: #CCD9EC;
  overflow: hidden;
}
section.inspire2 .block {
  padding-bottom: 48px;
  position: relative;
  background: #CCD9EC;
}
section.inspire2 .block .left_side {
  width: 100%;
  position: relative;
}
section.inspire2 .block .left_side .left_time {
  position: absolute;
  left: 483px;
}
section.inspire2 .block .row {
  width: 100%;
}
section.inspire2 .block .left_time {
  display: flex;
  align-items: center;
  background: #fff;
  font-size: 20px;
  font-weight: 500;
  gap: 17px;
  flex-flow: column;
  padding: 15px 23px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 20px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1450980392);
}
section.inspire2 .block .left_time .minecraft {
  font-size: 30px;
  font-weight: 400;
}
section.inspire2 .block p {
  padding-top: 60px;
  font-size: 20px;
  font-weight: bold;
  color: #2849A1;
  margin-bottom: 18px;
}
section.inspire2 .block h2 {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 42px !important;
  font-weight: 900;
  margin-bottom: 18px;
  max-width: 446px;
}
section.inspire2 .block .price {
  display: flex;
  gap: 32px;
  align-items: center;
}
section.inspire2 .block .price .old {
  font-size: 30px;
  color: #666666;
  font-weight: 500;
  white-space: nowrap;
}
section.inspire2 .block .price .old.strikethrough::before {
  position: absolute;
  content: "";
  left: 0;
  top: 40%;
  right: 0;
  border-top: 4px solid var(--save-color2);
  transform: rotate(0deg);
}
section.inspire2 .block .price .new {
  font-size: 48px;
  color: #2849A1;
  font-weight: bold;
  white-space: nowrap;
}
section.inspire2 .block .price .new span {
  font-size: 24px;
  color: #242626;
}
section.inspire2 .block .button {
  padding: 15px 118px;
}
section.inspire2 .block img.criper {
  position: absolute;
  width: 915px;
  height: 381px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  right: -80px;
  left: inherit;
  top: 110px;
  rotate: -4deg;
}
section.inspire2 .block .img2 {
  position: absolute;
  overflow: hidden;
  width: 461px;
  height: 518px;
  right: 15px;
  top: inherit;
  bottom: 0;
}
section.inspire2 .block .img2 .rects {
  width: 100%;
  height: 100%;
  position: absolute;
  /* left: -20px; */
  top: 135px;
  rotate: 28deg;
}

section.faq {
  padding-top: 100px;
}
section.faq .content_wrapper {
  background: #fff;
}
section.faq .content_wrapper .content {
  background: rgba(238, 209, 186, 0.4);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
section.faq .content_wrapper .content h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #242626;
}
section.faq .content_wrapper .content .decor {
  width: 365px;
  height: 341px;
  position: absolute;
  bottom: 0;
  top: inherit;
  left: inherit;
  right: 0;
}
section.faq .content_wrapper .content .decor_mobile {
  display: none;
}
section.faq .content_wrapper .content .items {
  display: flex;
  flex-flow: column;
  gap: 10px;
  max-width: 700px;
}
section.faq .content_wrapper .content .items .item {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
section.faq .content_wrapper .content .items .item .item_header {
  transition: all 0.3s ease;
  background: #fff;
  padding: 0 20px;
  height: 48px;
  border: 2px solid transparent;
  align-items: center;
  position: relative;
  display: flex;
  color: #666666;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
}
section.faq .content_wrapper .content .items .item .item_body {
  display: none;
  border-left: 2px solid #2849A1;
  padding: 20px;
  font-size: 16px;
}
section.faq .content_wrapper .content .items .item .arrow_down {
  position: absolute;
  right: 20px;
  color: #00B500;
  font-weight: 500;
  font-size: 18px;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
}
section.faq .content_wrapper .content .items .item .arrow_down::after {
  content: "+";
  position: absolute;
}
section.faq .content_wrapper .content .items .item.active .item_header {
  background: rgba(255, 255, 255, 0.2509803922);
  border: 2px solid #2849A1;
  color: #2849A1;
}
section.faq .content_wrapper .content .items .item.active .item_header .arrow_down::after {
  content: "-";
  color: #2849A1;
}
section.faq .content_wrapper .content .items .item.active .item_body {
  display: block;
}
section.faq .help {
  display: flex;
  margin-top: 108px;
  margin-bottom: 100px;
}
section.faq .help h2 {
  font-size: 32px;
  max-width: 368px;
  margin-right: 46px;
  flex: none;
}
section.faq .help p {
  font-size: 20px;
  margin-right: 13px;
}
section.faq .help .button {
  padding: 0 50px;
}
section.faq .fotter_img {
  mix-blend-mode: darken;
  width: 100%;
  display: flex;
}
section.faq .fotter_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  section.main .container .main_photo {
    width: 330px;
    margin-right: 52px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  section.about .white_block {
    padding: 30px;
  }
  section.inspire .block .img {
    max-width: 300px;
  }
  section.inspire .block .img2 {
    width: 361px;
  }
  section.cert .certificate .img {
    width: 479px;
    height: 100%;
    top: 0;
  }
  section.cert .certificate .img img {
    width: 100%;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: 0;
    top: 0;
    height: 100%;
  }
  section.cert .certificate .img2 {
    width: 450px;
    right: 45px;
  }
  section.cert .certificate .img2 .rects {
    width: 400px;
    height: 100%;
    top: 50px;
    z-index: 1;
    right: 0;
    overflow: hidden;
  }
  section.inspire2 .block img.criper {
    width: 715px;
  }
  section.inspire2 .block .img2 {
    width: 361px;
    height: 418px;
    right: -43px;
  }
  section.faq .content_wrapper .content .items {
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  section.about .white_block ul {
    display: flex;
    flex-flow: column;
    gap: 20px;
  }
  section.main .container .row {
    flex-flow: column-reverse;
  }
  section.main .container .main_photo {
    margin-right: 0;
    margin: auto;
    width: 430px;
  }
  section.main .container .col .hero-kicker,
  section.main .container .col h2 {
    font-size: 28px;
  }
  section.main .container .cube2 {
    filter: blur(5px);
    right: -8px;
    top: 162px;
  }
  section.main .container .cube1 {
    left: -14px;
    filter: blur(10px);
    width: 41px;
    height: 45px;
    top: 550px;
  }
  section.about .white_block {
    border-radius: 5px;
  }
  section.about {
    padding-bottom: 57px;
  }
  section.for_who {
    padding-bottom: 80px;
  }
  section.for_who .main_photo {
    max-width: 335px;
  }
  section.for_who h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  section.for_who .cube2,
  section.for_who .cube1 {
    display: none;
  }
  section.for_who .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  section.what_child_will_get .content {
    padding: 60px 10px;
  }
  section.what_child_will_get .content h2 {
    text-align: center;
  }
  section.what_child_will_get .content .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  section.inspire .block {
    padding: 0 20px;
  }
  section.inspire .block .left_time {
    align-self: center;
    margin-bottom: 40px;
  }
  section.inspire .block h2 {
    font-size: 36px !important;
    margin-bottom: 10px;
  }
  section.inspire .block p {
    margin-bottom: 30px;
    font-size: 18px;
  }
  section.inspire .block .row {
    flex-flow: column;
  }
  section.inspire .block .row .img {
    max-width: 300px;
    position: relative;
    display: flex;
    margin: 0 auto;
    height: 290px;
    top: 0;
  }
  section.inspire .block .row .img .criper {
    height: 390px;
  }
  section.inspire .block .row .col {
    align-items: center;
  }
  section.inspire .block .img2 {
    width: 351px;
    height: 386px;
    bottom: 0;
    left: calc(50% - 175px);
    right: inherit;
  }
  section.inspire .block .img2 .rects {
    top: inherit;
    bottom: -100px;
    /* height: auto; */
  }
  section.inspire .block .price {
    flex-flow: row-reverse;
    width: -moz-max-content;
    width: max-content;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
    padding-left: 62px;
    margin-left: -20px;
    margin-bottom: 40px;
    align-items: center;
    gap: 15px;
  }
  section.inspire .block .price .old::before {
    transform: rotate(180deg);
  }
  section.program .program_wrapper .container .items .item:hover .item_header {
    margin-left: 0;
  }
  section.program .program_wrapper .container .items .item:hover .hover_img {
    display: none;
  }
  section.program .program_wrapper .container .items .item .item_header {
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 20px;
  }
  section.program .program_wrapper .container .items .item .item_header .minecraft {
    font-size: 20px;
  }
  section.program .program_wrapper .container .items .item .item_header h4 {
    font-size: 20px;
    margin-left: 0;
  }
  section.program .program_wrapper .container .items .item .item_header:hover {
    box-shadow: none;
  }
  section.program .program_wrapper .container .items .item .item_body ul li:hover {
    margin-left: 0;
  }
  section.program .program_wrapper .container .items .item.active {
    background: #E9E4E0;
    border: 2px solid #2849A1;
    margin-left: 0;
  }
  section.program .program_wrapper .container .items .item.active .item_header {
    padding: 30px 20px;
    border: 2px solid transparent;
    padding-bottom: 0;
  }
  section.program .program_wrapper .container .items .item.active .item_body {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }
  section.program .program_wrapper .container .items .item.active .item_body img {
    margin-bottom: 20px;
    width: 100%;
  }
  section.process {
    padding-top: 140px;
  }
  section.process .clouds {
    left: 0;
    width: 100%;
    background-size: cover;
    height: 107px;
    background-position: center;
  }
  section.process h2 {
    font-size: 28px;
    text-align: center;
  }
  section.process .container ul {
    padding: 0;
  }
  section.process .container ul::after {
    left: 100%;
    bottom: 0;
  }
  section.process .container ul li {
    margin-bottom: 32px;
    max-width: 100%;
    font-size: 18px;
  }
  section.process .container ul li:nth-child(even) {
    justify-content: flex-start;
    align-self: flex-start;
  }
  section.process .container ul li:nth-child(even)::after {
    left: auto;
    right: -11.5px;
  }
  section.process .container ul li:nth-child(even)::before {
    left: auto;
    right: -11.5px;
  }
  section.process .container .grid {
    left: 0;
    bottom: -30px;
    top: inherit;
    width: 100%;
    height: 60px;
    background-position: center;
    background-size: 337px;
  }
  section.process .container .charachter {
    right: 30px;
    left: inherit;
    width: 62px;
    height: 85px;
    bottom: -50px;
    transform: scale(-1, 1);
  }
  section.cert .certificate {
    display: flex;
    flex-flow: column;
    padding-top: 70px;
    padding-left: 20px;
    padding-bottom: 0;
    padding-right: 20px;
  }
  section.cert .certificate .col {
    max-width: 100%;
  }
  section.cert .certificate .img {
    bottom: 0;
    top: inherit;
    width: 349px;
    margin-top: 40px;
    position: relative;
    margin: 0 auto;
  }
  section.cert .certificate .img img {
    position: relative;
    display: flex;
  }
  section.cert .certificate .img2 {
    height: 232px;
    bottom: 0;
    top: inherit;
    width: 349px;
    margin: 0 auto;
    left: calc(50% - 175px);
    right: inherit;
  }
  section.cert .certificate .img2 .rects {
    top: 0;
  }
  section.cert .certificate .img3 {
    width: 207px;
    height: 207px;
    top: inherit;
    bottom: -21px;
    left: calc(50% - 60.5px);
  }
  section.rewievs .container h2 {
    font-size: 28px !important;
  }
  section.rewievs .container .cards {
    -moz-column-count: 1;
         column-count: 1;
  }
  section.rewievs .container .cards .card {
    min-height: auto;
  }
  section.rewievs .container .cards .card:nth-child(n+5) {
    display: none;
  }
  section.rewievs .container .cards.active .card {
    display: flex;
  }
  section.rewievs .container .more_btn {
    display: flex;
  }
  section.rewievs .container .cards .hiden {
    display: none;
  }
  section.rewievs .container .cards.active .hiden {
    display: flex;
  }
  section.rewievs .container .cards.active + .more_btn {
    display: none;
  }
  section.inspire2 .block .left_side {
    padding-top: 100px;
  }
  section.inspire2 .block .left_side .left_time {
    width: 100%;
    position: absolute;
    left: auto;
    top: 0;
  }
  section.inspire2 .block p {
    padding-top: 40px;
  }
  section.inspire2 .block h2 {
    font-size: 36px !important;
  }
  section.inspire2 .block .price {
    gap: 10px;
  }
  section.inspire2 .block .price .old {
    font-size: 26px;
  }
  section.inspire2 .block .row {
    flex-flow: column;
  }
  section.inspire2 .block .img2 {
    position: relative;
    height: 200px;
    left: 0;
    margin: 0 auto;
  }
  section.inspire2 .block img.criper {
    bottom: 0;
    top: inherit;
    width: 100%;
    left: 0;
    height: 167px;
  }
  section.inspire2 .block {
    padding-bottom: 0;
  }
  section.inspire2 .block .img2 .rects {
    height: 274px;
    width: 255px;
    top: 78px;
  }
  section.faq {
    padding-top: 70px;
  }
  section.faq .content_wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
  section.faq .content_wrapper .content {
    padding: 20px;
    padding-top: 60px;
    padding-bottom: 160px;
  }
  section.faq .content_wrapper .content .items {
    max-width: 100%;
  }
  section.faq .content_wrapper .content .decor {
    display: none;
  }
  section.faq .content_wrapper .content .decor_mobile {
    display: block;
    bottom: 0;
    top: inherit;
    left: 20px;
    width: 100%;
    height: 140px;
  }
  section.faq .help {
    flex-flow: column;
    margin-top: 80px;
    margin-bottom: 60px;
  }
  section.faq .help p {
    margin-bottom: 30px;
    margin-right: 0;
    font-size: 18px;
  }
  section.faq .help h2 {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  section.main {
    background-size: 150% 100%;
  }
  section.what_child_will_get .content .cards .card .img {
    width: 70px;
    height: 70px;
  }
  section.main .container .col .button {
    width: 100%;
  }
  section.main .container .main_photo {
    width: 100%;
  }
  section.for_who .cards {
    grid-template-columns: 1fr;
  }
  section.what_child_will_get .content .cards {
    grid-template-columns: 1fr;
  }
  section.inspire .block h2 {
    text-align: center;
  }
  section.inspire .block p {
    text-align: center;
  }
  section.inspire .block .price .new {
    font-size: 38px;
  }
  section.inspire .block .price .old {
    font-size: 28px;
  }
  section.inspire .block .button {
    padding: 15px 20px;
    width: 100%;
  }
  section.program .program_wrapper .container .chips {
    flex-flow: row wrap;
  }
  section.program .program_wrapper .container .chips .chip {
    min-width: 100px;
  }
  section.program .program_wrapper .container .items .item .item_body ul li {
    padding-left: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  section.program .program_wrapper .container .items .item .item_body ul li .minecraft {
    margin-right: 20px;
  }
  section.process .container h2 {
    margin-left: 0;
  }
  section.program .program_wrapper .container .items .item:hover .item_header {
    box-shadow: none;
  }
  section.program .program_wrapper .container h2 {
    font-size: 28px !important;
  }
  section.program .program_wrapper .container .cube2 {
    width: 70px;
    height: 70px;
    right: -45px;
    top: 34px;
  }
  section.process .container .grid {
    bottom: -80px;
  }
  section.cert .certificate h2,
  section.cert .certificate h4 {
    font-size: 28px !important;
  }
  section.cert .certificate p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  section.cert .certificate .minecraft {
    font-size: 36px;
  }
  section.rewievs {
    padding-bottom: 65px;
  }
  section.inspire2 .block .button {
    width: 100%;
  }
  section.inspire2 .block img.criper {
    bottom: -40px;
  }
  section.inspire2 .block .img2 .rects {
    top: 38px;
  }
  section.faq .content_wrapper .content .items .item .item_header {
    padding-right: 40px;
  }
  section.faq .content_wrapper .content h2 {
    font-size: 32px !important;
  }
  section.faq .help .button {
    width: 100%;
  }
  section.faq .fotter_img img {
    height: 75px;
  }
}/*# sourceMappingURL=main.css.map */