@font-face {
    font-family: "Proxima Nova";
    src: url(/fonts/proximanova_light.woff2) format("woff2");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Proxima Nova";
    src: url(/fonts/proximanova_regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Proxima Nova";
    src: url(/fonts/proximanova_semibold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Proxima Nova";
    src: url(/fonts/proximanova_bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Kometa Unicase";
    src: url(/fonts/kometa_unicase_heavy.woff2) format("woff2");
    font-weight: 900;
    font-style: normal;
}
*,
:after,
:before {
    box-sizing: border-box;
}
body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    
}

.header-stick{
background: rgb(162 161 161 / 50%) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
}
.header__logo > img{
  max-width: 320%;
}

.footer__nav-item > img{
  display: inline;
}
a {
    text-decoration: none;
    color: inherit;
}
svg {
    display: block;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
html {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--black-lite);
}
.title-2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    color: #000;
}
.title-3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: #444343;
}
:root {
    --font-family: "Proxima Nova", sans-serif;
    --second-family: "Kometa Unicase", sans-serif;
    --yellow: #f4bc15;
    --black: #000;
    --black-lite: #444343;
    --grey: #6a6a6a;
    --white: #fff;
    --black-y: #1f1f1c;
    --penny-blue: #050038;
}
.btn-reset {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
}
.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}
.input-reset {
    width: 100%;
    padding: 0;
    border: none;
    outline: 0;
    border-radius: 0;
    background-color: transparent;
    font: inherit;
    color: inherit;
}
.sr-only {
    position: absolute !important;
    overflow: hidden !important;
    margin: -1px !important;
    border: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    white-space: nowrap !important;
    clip: rect(0, 0, 0, 0) !important;
}
.scroll-lock {
    overflow: hidden !important;
}
.w-full {
    width: 100%;
}
.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}
.main {
    flex-grow: 1;
    padding-bottom: 100px;
}
.container {
    margin-inline: auto;
    padding-inline: 20px;
    max-width: 1270px;
    width: 100%;
}
@keyframes fade {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
.from-bottom {
    transform: translateY(20px);
}
.from-left {
    transform: translateX(-20px);
}
.from-right {
    transform: translateX(20px);
}
.from-top {
    transform: translateY(-20px);
}
[data-observer] {
    opacity: 0;
}
.overlay {
    position: fixed;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
.burger {
    display: none;
    position: relative;
    z-index: 5;
    width: 30px;
    height: 30px;
    text-align: left;
    pointer-events: initial;
    cursor: pointer;
}
.burger.active span {
    background-color: transparent;
    transition: background-color 0.2s ease-out;
}
.burger.active span::after,
.burger.active span::before {
    transition: top 0.2s ease-out, transform 0.2s ease-out 0.2s;
    background-color: #000;
}
.burger.active span::before {
    top: 0;
    transform: rotate3d(0, 0, 1, -45deg);
}
.burger.active span::after {
    top: 0;
    transform: rotate3d(0, 0, 1, 45deg);
}
.burger span {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 13px);
    display: block;
    height: 2px;
    width: 26px;
    background-color: #000;
    transform-origin: 50% 50%;
    transition: 0.2s ease-in-out, top 0.2s ease-out 0.2s, transform 0.2s linear;
}
.burger span::after,
.burger span::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 26px;
    background-color: #000;
    transform-origin: 50% 50%;
    transition: 0.2s ease-in-out, top 0.2s ease-out 0.2s, transform 0.2s linear;
}
.burger span::before {
    top: 7px;
}
.burger span::after {
    top: -7px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 6px 6px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px -4px rgba(22, 34, 51, 0.15);
    background-color: var(--yellow);
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
    transition: background-color 150ms, color 150ms;
}
.btn:active {
    background-color: #1c1c1c;
    color: var(--white);
    scale: 0.99;
}
.btn:active .btn__icon {
    background-color: var(--yellow);
}
.btn:active .btn__icon svg {
    rotate: 45deg;
}
.btn__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 14px;
    transition: background-color 150ms;
}
.btn__icon svg {
    transition: rotate 150ms;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 0;
}
.breadcrumb__item {
    position: relative;
    padding-right: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #bbb;
    transition: color 150ms ease-in-out;
}
.breadcrumb__item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 10px;
    background-image: url(/img/Learning/svg/arrow_right.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.breadcrumb__item:last-child {
    font-weight: 500;
    color: #fff;
}
.hero {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(90deg, #ebedee 0, #fdfbfb 100%);
}
.hero__info {
    position: relative;
    z-index: 1;
    max-width: 565px;
}
.hero__title {
    margin-bottom: 15px;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--black);
}
.hero__subtitle {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 25px;
}
.hero__btn {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 100%;
}
.hero__img {
    position: absolute;
    right: 0;
    bottom: 0;
}
.about {
    padding-top: 100px;
}
.about__container {
    display: flex;
    gap: 20px;
}
.about__pic {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.about__item {
    flex-grow: 1;
    flex-shrink: 1;
    width: calc((100% - 20px) / 2);
    min-height: 360px;
}
.about__item.about-card {
    transition: width 0.3s linear;
}
.about__item.about-card:hover {
    width: 100%;
}
.about-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 14px;
}
.about-card::before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 236px;
    transition: height 150ms;
    background: linear-gradient(360deg, #282828 0, rgba(40, 40, 40, 0.83) 45.86%, rgba(40, 40, 40, 0) 100%);
}
.about-card:hover .about-card__title {
    color: var(--yellow);
    animation: 0.3s ease-in-out fade;
}
.about-card:hover .about-card__text {
    display: block;
    animation: 0.3s ease-in-out fade;
}
.about-card:hover .about-card__img {
    filter: saturate(1);
}
.about-card:hover .about-card__icon-wrapper {
    background-color: rgba(255, 255, 255, 0.7);
}
.about-card:hover::before {
    background: linear-gradient(360deg, #282828 0, rgba(40, 40, 40, 0.83) 45.86%, rgba(40, 40, 40, 0) 100%);
    height: 100%;
}
.about-card__icon-wrapper {
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-lite);
    border-radius: 14px;
    transition: background-color 150ms ease-in-out;
}
.about-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: saturate(0);
    transition: filter 150ms ease-in-out;
}
.about-card__info {
    margin-top: auto;
    position: relative;
    z-index: 2;
}
.about-card__title {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white);
}
.about-card__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: var(--white);
    transition: opacity 150ms;
    display: none;
}
.why {
    padding-top: 100px;
    padding-bottom: 115px;
    background-color: #fbf9f9;
}
.why__container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.why__info {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 60px;
}
.why__info::before {
    content: "";
    position: absolute;
    top: 70px;
    left: -40px;
    width: 14px;
    height: 24px;
    background-image: url(/img/Learning/svg/decor_arrow_right.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.why__info::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 24px;
    height: 26px;
    background-image: url(/img/Learning/svg/play.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.why__title {
    position: relative;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 35px;
    text-transform: uppercase;
    color: var(--black);
}
.why__img-wrapper {
    max-width: 416px;
    width: 100%;
    height: 324px;
}
.why__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.why__items {
    position: relative;
    max-width: 710px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.why__items::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 96px;
    right: 227px;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background-color: var(--yellow);
    filter: blur(54px);
    opacity: 0.5;
}
.why__items::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 214px;
    width: 80px;
    height: 80px;
    background-color: var(--yellow);
    filter: blur(54px);
    opacity: 0.5;
}
.why__item:not(:last-child) {
    position: relative;
}
.why__item:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    border-bottom: 1px solid #d5d5d5;
}
.info-block {
    border-radius: 14px;
    padding: 30px;
    transition: background-color 150ms ease-in-out;
}
.info-block__top {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.info-block__icon {
    width: 52px;
    height: 52px;
}
.info-block__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    text-transform: uppercase;
    color: var(--black);
    transition: color 150ms ease-in-out;
}
.info-block__body {
    display: flex;
    gap: 10px;
    font-size: 18px;
    line-height: 133%;
    transition: color 150ms ease-in-out;
}
.study {
    background-color: #fbf9f9;
}
.study__title {
    margin-bottom: 50px;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 35px;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
}
.study__subtitle {
    position: relative;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 65px;
    text-transform: uppercase;
    text-align: right;
    color: var(--yellow);
}
.study__subtitle span {
    font-size: 35px;
    text-transform: lowercase;
}
.study__subtitle::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 140px;
    width: 80px;
    height: 80px;
    background-color: var(--yellow);
    opacity: 1;
    filter: blur(55px);
    border-radius: 50%;
}
.study__subtitle--sm {
    color: var(--penny-blue);
}
.study__subtitle--sm::before {
    display: none;
}
.study__items {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
}
.study__item {
    display: flex;
    gap: 20px;
}
.study__item--col {
    flex-direction: column;
}
.study__info {
    max-width: 280px;
    display: flex;
    flex-direction: column;
}
.study__text {
    font-weight: 600;
    font-size: 25px;
}
.text-right {
    text-align: right;
}
.bar {
    flex-shrink: 0;
    width: 125px;
    border-radius: 15px 15px 0 0;
}
.bar--yellow {
    height: 280px;
    background: linear-gradient(180deg, #f4bc15 0, #e8b314 100%);
}
.bar--blue {
    height: 90px;
    background: linear-gradient(180deg, #050038 0, #190a68 100%);
}
.learning {
    padding-top: 100px;
    padding-bottom: 100px;
}
.learning__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.learning__block {
    max-width: 522px;
    width: 100%;
    border-radius: 0 15px 15px 0;
    background-color: var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
}
.learning__icon {
    margin-bottom: 24px;
    width: 152px;
    height: 40px;
    background-image: url(/img/Learning/svg/line_group.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.learning__info {
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
}
.learning__title {
    margin-bottom: 10px;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 35px;
    text-transform: uppercase;
    color: var(--black);
}
.learning__text {
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
}
.tab__top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.tab__title {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
}
.tab__panels {
    max-width: 830px;
    width: 100%;
}
.tab__panel {
    display: none;
}
.tab__panel.active {
    display: block;
    animation: 0.3s ease-in-out fade;
}
.tab__subtitle {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: var(--black);
}
.tab__text {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 141%;
}
.tab__img-wrapper {
    border-radius: 14px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(201, 201, 201, 0.34);
    padding: 14px 0 14px 14px;
}
.tab__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 14px;
}
.tab-buttons {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    background-color: #efefef;
    border-radius: 14px;
}
.tab-btn {
    padding: 10px 30px;
    border: 2px solid transparent;
    border-radius: 14px;
    transition: background-color 150ms ease-in-out, border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.tab-btn.active {
    border-color: var(--white);
    box-shadow: 0 8px 16px -4px rgba(22, 34, 51, 0.15);
    background-color: var(--yellow);
}
.game {
    padding-bottom: 100px;
}
.game__inner {
    display: flex;
    justify-content: center;
    gap: 145px;
}
.game__img-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 232px;
    height: 468px;
}
.game__img-wrapper--mob {
    display: none;
}
.game__img-wrapper::after,
.game__img-wrapper::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 152px;
    height: 40px;
    background-image: url(/img/Learning/svg/line_group_color.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.game__img-wrapper::before {
    top: 136px;
    left: -113px;
}
.game__img-wrapper::after {
    right: -97px;
    bottom: 63px;
}
.game__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.game__info {
    position: relative;
    max-width: 474px;
    width: 100%;
}
.game__info::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 34px;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background-color: var(--yellow);
    opacity: 0.5;
    filter: blur(55px);
}
.game__title {
    margin-bottom: 10px;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 35px;
    text-transform: uppercase;
    color: var(--black);
}
.game__title span {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}
.game__title span::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    rotate: -2deg;
    width: calc(100% + 20px);
    height: calc(100% + 2px);
    background-color: var(--yellow);
}
.game__text {
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 20px;
}
.game__btn {
    max-width: 394px;
    width: 100%;
}
.preview {
    background: linear-gradient(90deg, #fdfbfb 0, #ebedee 100%);
}
.preview__container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.preview__info {
    margin: auto 0;
    max-width: 520px;
    width: 100%;
}
.preview__title {
    margin-bottom: 10px;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 35px;
    text-transform: uppercase;
    color: var(--black);
}
.preview__title span {
    position: relative;
    z-index: 1;
    display: inline-block;
    flex-shrink: 0;
}
.preview__title span::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    rotate: -2deg;
    width: calc(100% + 20px);
    height: calc(100% + 2px);
    background-color: var(--yellow);
}
.preview__subtitle {
    margin-bottom: 10px;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
}
.preview__text {
    font-weight: 600;
    font-size: 20px;
}
.preview__images {
    display: flex;
    gap: 30px;
    height: 620px;
    max-width: 500px;
    width: 100%;
    overflow-y: auto;
}
.preview__images::-webkit-scrollbar {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: none;
}
.preview__image-row:last-child {
    padding-top: 250px;
}
.feedback {
    padding-top: 100px;
}
.feedback__inner {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    background-color: #212121;
    background-image: url(/img/Learning/feedback_bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.feedback__content {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
}
.feedback__info-wrapper {
    margin-bottom: 28px;
    padding-right: 144px;
}
.feedback__info {
    position: relative;
    max-width: 460px;
    width: 100%;
}
.feedback__info::before {
    content: "";
    position: absolute;
    bottom: -16px;
    right: -18px;
    width: 14px;
    height: 25px;
    background-image: url(/img/Learning/svg/decor_arrow_right.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.feedback__title {
    margin-bottom: 10px;
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 35px;
    text-transform: uppercase;
    color: var(--yellow);
}
.feedback__title span {
    position: relative;
    z-index: 1;
    display: inline-block;
    flex-shrink: 0;
}
.feedback__title span::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    rotate: -2deg;
    width: calc(100% + 20px);
    height: calc(100% + 2px);
    background-color: var(--white);
}
.feedback__subtitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
}
.feedback__img {
    margin-left: auto;
    margin-top: auto;
    width: 500px;
    height: 281px;
    -o-object-fit: cover;
    object-fit: cover;
}
.feedback__img--mobile {
    display: none;
}
.feedback__form {
    padding-top: 40px;
    padding-left: 40px;
    padding-bottom: 40px;
    max-width: 480px;
    width: 100%;
}
.form__fields {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form__submit {
    width: 100%;
    margin-top: 30px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.field__label {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    color: #b0b0b0;
}
.input {
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    border-bottom: 1px solid #505465;
}
.input::-moz-placeholder {
    color: #b8b8b8;
}
.input::placeholder {
    color: #b8b8b8;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #b0b0b0;
}
.custom-checkbox:focus-within > .custom-checkbox__checkmark {
    box-shadow: 0 0 0 2px var(--white);
}
input:checked ~ .custom-checkbox__checkmark::before {
    display: block;
}
.custom-checkbox__checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    background-color: var(--yellow);
}
.custom-checkbox__checkmark::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 14px;
    height: 14px;
    background-color: var(--black);
    border-radius: 50%;
    display: none;
}
.blog__hero {
    padding: 0 0 70px;
    background: url(/img/Learning/hero_blog.jpg) center/cover no-repeat;
}
.blog__hero .breadcrumb {
    margin-bottom: 22px;
}
.blog__hero .hero__title {
    color: #f4bc15;
}
.blog__hero .hero__info {
    margin-bottom: 60px;
}
.list {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}
.list__item {
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
    color: #fff;
}
.list__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
}
.search-field {
    position: relative;
}
.search-field__input {
    padding: 20px 60px 20px 20px;
    border: 1px solid #bcbcbc;
    border-radius: 20px;
    background-color: #fff;
}
.search-field__input:focus {
    border-color: #000;
}
.search-field__icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 26px;
    aspect-ratio: 1;
}
.articles {
    padding: 100px 0;
}
.articles__wrapper {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.articles__top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.articles__top .search-field {
    max-width: 400px;
    width: 100%;
}
.articles__btn {
    margin: 0 auto;
    display: none;
    text-align: center;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    color: #000;
    border-radius: 20px;
    padding: 20px 30px;
    background: #f4bc15;
}
.articles__btn:active {
    scale: 0.98;
}
.article {
    border: 1px solid #E4E4E4;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: #f7f7f7;
    overflow: hidden;
    transition: box-shadow 150ms ease-in-out, background-color 150ms ease-in-out;
    outline-offset: 5px;
}
.article:focus-within {
    box-shadow: 0 8px 16px -4px rgba(22, 34, 51, 0.15);
    background: #2b2b2b;
    outline: #222 solid 1px;
}
.article:focus-within .article__title {
    color: #fff;
}
.article:focus-within .article__body {
    color: #b0b0b0;
}
.article:focus-within .article__link-imitate {
    color: #fff;
}
.article__top {
    margin-bottom: 20px;
}
.article__img {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #636363;
}
.article__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    color: #444343;
    transition: color 150ms ease-in-out;
}
.article__text-wrapper {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
@supports (-webkit-line-clamp: 8) {
    .article__text-wrapper {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
    }
}
.article__text-wrapper p + p {
    margin-top: 10px;
}
.article__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.35294;
    color: #000;
    transition: color 150ms ease-in-out;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
@supports (-webkit-line-clamp: 2) {
    .article__title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}
.article__link-imitate {
    margin-top: auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #444343;
    transition: color 150ms ease-in-out;
}
.article__link {
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: 0;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.pagination__next,
.pagination__prev {
    outline-offset: 5px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4bc15;
    border-radius: 10px;
    background-color: #fff;
    transition: color 150ms ease-in-out, background-color 150ms ease-in-out;
}
.pagination__next[disabled],
.pagination__prev[disabled] {
    cursor: not-allowed;
    color: #6a6a6a;
}
.pagination__next[disabled]:active,
.pagination__prev[disabled]:active {
    scale: 1;
    background-color: #fff;
}
.pagination__next svg,
.pagination__prev svg {
    width: 14px;
    height: 24px;
}
.pagination__next:active,
.pagination__prev:active {
    scale: 0.98;
    background-color: #444343;
}
.pagination__next:focus-visible,
.pagination__prev:focus-visible {
    background-color: #444343;
}
.pagination__list {
    display: flex;
    gap: 15px;
}
.pagination__link {
    outline-offset: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #6a6a6a;
    background-color: #fff;
    transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.pagination__link.active {
    background: #444343;
    color: #fff;
    border-color: #444343;
}
.pagination__link[href]:focus-visible {
    box-shadow: 0 0 20px 0 rgba(22, 34, 51, 0.07), 0 4px 8px -4px rgba(22, 34, 51, 0.05);
}
.pagination__next svg {
    rotate: 180deg;
}
.article-inner {
    padding: 100px 0px 0px 0;
}
.article-inner__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    text-transform: uppercase;
    color: #000;
}
.article-inner__container {
    display: grid;
    grid-template-columns: 1fr 292px;
    gap: 104px;
}
.article-inner__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article-inner__content img {
    height: 230px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}
.article-inner__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.article-inner__link {
    max-width: 470px;
    width: 100%;
    margin-top: 30px;
}
.article-inner__nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.article-inner__nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.page-link {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 20px;
    padding: 20px;
    background-color: #f7f7f7;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.35294;
    color: #444343;
    transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.page-link__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: #fff;
    transition: background-color 0.3s ease-in-out;
}
.page-link__icon-wrapper svg {
    flex-shrink: 0;
}
.page-link__arrow-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.basic-list {
    padding-left: 25px;
}
.basic-list li {
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3125;
    color: #444343;
}
.basic-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #444343;
}
@media screen and (max-width: 1200px) {
    .learning {
        padding-top: 0;
        padding-bottom: 60px;
    }
    .learning__inner {
        flex-direction: column;
    }
    .learning__block {
        max-width: 100%;
        align-items: center;
        padding: 60px 20px;
        border-radius: 0 0 15px 15px;
    }
    .learning__icon {
        margin-bottom: 30px;
        width: 100px;
        height: 28px;
    }
    .learning__info {
        max-width: 320px;
        text-align: center;
    }
    .learning__title {
        font-size: 22px;
    }
    .learning__text {
        font-size: 18px;
    }
    .learning__tab {
        margin: 0 auto;
    }
    .tab {
        padding: 0 20px;
    }
}
@media screen and (max-width: 1024px) {
    .about__pic {
        display: none;
    }
    .why__container {
        flex-direction: column;
        gap: 0;
    }
    .why__info::after,
    .why__info::before {
        display: none;
    }
    .why__info {
        padding-right: 0;
    }
    .why__title {
        margin-bottom: 15px;
        text-align: center;
    }
    .why__title br {
        display: none;
    }
    .why__img-wrapper {
        margin: 0 auto;
    }
    .why__items {
        max-width: 100%;
    }
    .why__items::before {
        width: 80px;
        height: 80px;
        right: auto;
        left: 50px;
        top: 30px;
        opacity: 0.8;
    }
    .why__items::after {
        width: 80px;
        height: 80px;
        left: auto;
        right: 80px;
        top: 55%;
        opacity: 0.8;
    }
    .why__item {
        position: relative;
    }
    .why__item:first-child::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 24px;
        background-image: url(/img/Learning/svg/decor_arrow_right.svg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        bottom: -15px;
        right: -4px;
    }
    .why__item:nth-child(2)::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -13px;
        width: 24px;
        height: 26px;
        background-image: url(/img/Learning/svg/play.svg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .game__inner {
        gap: 60px;
    }
}
@media screen and (max-width: 992px) {
    .main {
       
    }
    .hero {
        padding: 60px 0;
    }
    .about {
        padding-top: 60px;
    }
    .why {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .why__title {
        font-size: 24px;
    }
    .info-block__icon {
        width: 42px;
        height: 42px;
    }
    .study__title {
        margin-bottom: 30px;
        font-size: 22px;
    }
    .study__subtitle span {
        font-size: 20px;
    }
    .study__subtitle::before {
        display: none;
    }
    .study__subtitle {
        font-size: 35px;
    }
    .study__item {
        flex-direction: column;
        gap: 15px;
    }
    .study__info {
        max-width: 160px;
        align-items: flex-start;
    }
    .study__info .text-right {
        text-align: left;
    }
    .study__text {
        font-size: 18px;
    }
    .bar--yellow {
        height: 185px;
    }
    .bar--blue {
        height: 115px;
    }
    .tab__title {
        font-size: 18px;
    }
    .tab__subtitle,
    .tab__text {
        text-align: center;
    }
    .tab__img-wrapper {
        padding: 10px;
        border-radius: 20px;
    }
    .game {
        padding-bottom: 60px;
    }
    .feedback {
        padding-top: 60px;
    }
    .feedback__inner {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .feedback__info-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .feedback__info::before {
        display: none;
    }
    .feedback__info {
        max-width: 100%;
        text-align: center;
    }
    .feedback__title {
        font-size: 22px;
    }
    .feedback__subtitle {
        font-size: 18px;
    }
    .feedback__img {
        display: none;
    }
    .feedback__img--mobile {
        margin-top: 20px;
        display: block;
    }
    .feedback__form {
        max-width: 100%;
        padding: 0 20px;
    }
    .form__fields {
        margin-bottom: 20px;
    }
    .blog__hero {
        padding: 0 0 60px;
    }
    .search-field__input {
        padding-top: 10px;
        padding-bottom: 10px;
        border-radius: 15px;
    }
    .search-field__icon {
        width: 18px;
    }
    .articles {
        padding: 60px 0;
    }
    .articles__wrapper {
        margin-bottom: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
    .articles__top {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .articles__top .search-field {
        max-width: 100%;
        width: 100%;
    }
    .articles__pagination {
        display: none;
    }
    .articles__btn {
        display: block;
    }
    .article-inner {
        padding: 60px 0;
    }
    .article-inner__container {
        grid-template-columns: 1fr 250px;
        gap: 40px;
    }
}
@media screen and (max-width: 768px) {
    .title-2 {
        font-size: 20px;
        line-height: 1.25;
        text-align: center;
        color: #000;
    }
    .hide-on-mobile {
        display: none;
    }
    .btn {
        font-weight: 700;
        font-size: 18px;
    }
    .btn__icon {
        width: 42px;
        height: 42px;
    }
    .btn__icon svg {
        width: 20px;
        height: 20px;
    }
    .hero__info {
        margin: 0 auto;
        padding-bottom: 200px;
    }
    .hero__title {
        margin-bottom: 10px;
        font-size: 27px;
        text-align: center;
        color: var(--black);
    }
    .hero__subtitle {
        margin-bottom: 0;
        font-size: 20px;
        text-align: center;
    }
    .hero__btn {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }
    .about__container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .about__item {
        width: 100%;
        min-height: 320px;
    }
    .about-card {
        padding: 20px;
    }
    .about-card .about-card__title {
        color: var(--yellow);
        animation: 0.3s ease-in-out fade;
    }
    .about-card .about-card__text {
        display: block;
        animation: 0.3s ease-in-out fade;
    }
    .about-card .about-card__img {
        filter: saturate(1);
    }
    .about-card .about-card__icon-wrapper {
        background-color: rgba(255, 255, 255, 0.7);
    }
    .about-card::before {
        background: linear-gradient(360deg, #282828 0, rgba(40, 40, 40, 0.83) 45.86%, rgba(40, 40, 40, 0) 100%);
        height: 100%;
    }
    .about-card__icon-wrapper {
        top: 20px;
        left: 20px;
    }
    .bar {
        width: 150px;
    }
    .tab__top {
        flex-direction: column-reverse;
        text-align: center;
    }
    .game__inner {
        flex-direction: column;
    }
    .game__img-wrapper {
        display: none;
    }
    .game__img-wrapper--mob {
        display: block;
        margin-inline: auto;
        margin-bottom: 30px;
    }
    .game__img-wrapper::after,
    .game__img-wrapper::before {
        width: 84px;
        height: 22px;
    }
    .game__img-wrapper::before {
        top: 68px;
        left: -44px;
    }
    .game__img-wrapper::after {
        bottom: 82px;
        right: -44px;
    }
    .game__info {
        text-align: center;
        max-width: 100%;
    }
    .game__info::before {
        display: none;
    }
    .game__title span::before {
        width: calc(100% + 5px);
    }
    .game__title {
        font-size: 23px;
    }
    .game__text {
        margin-bottom: 30px;
        font-size: 18px;
    }
    .game__btn {
        margin: 0 auto;
        max-width: 320px;
    }
    .preview {
        padding: 60px 0;
    }
    .preview__container {
        flex-direction: column;
        align-items: center;
    }
    .preview__info {
        max-width: 100%;
        text-align: center;
    }
    .preview__title span::before {
        width: calc(100% + 5px);
    }
    .preview__title {
        font-size: 22px;
    }
    .preview__subtitle,
    .preview__text {
        font-size: 18px;
    }
    .preview__images {
        height: 100%;
    }
    .feedback__title span::before {
        width: calc(100% + 5px);
    }
    .blog__hero .breadcrumb {
        margin-bottom: 14px;
    }
    .blog__hero .hero__title {
        text-align: left;
    }
    .blog__hero .hero__info {
        margin-bottom: 120px;
        padding-bottom: 0;
    }
    .list__item {
        font-weight: 500;
        font-size: 18px;
        line-height: 1.27;
    }
    .article-inner__container {
        gap: 0;
        grid-template-columns: 1fr;
    }
    .article-inner__nav {
        display: none;
    }
}
@media screen and (max-width: 564px) {
    .about__container {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 540px) {
    .articles__wrapper {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 480px) {
    .articles__btn {
        width: 100%;
    }
}
@media screen and (max-width: 374px) {
    .bar {
        width: 120px;
    }
}
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
@media (any-hover: hover) and (pointer: fine) {
    .btn:hover {
        background-color: #1c1c1c;
        color: var(--white);
    }
    .btn:hover .btn__icon {
        background-color: var(--yellow);
    }
    .btn:hover .btn__icon svg {
        rotate: 45deg;
    }
    .breadcrumb__item:hover {
        color: #fff;
    }
    .why__item:not(:last-child):hover::before {
        border-color: #1c1c1c;
    }
    .info-block:hover {
        background-color: #1c1c1c;
    }
    .info-block:hover .info-block__title {
        color: var(--yellow);
    }
    .info-block:hover .info-block__body {
        color: var(--white);
    }
    .article:hover {
        box-shadow: 0 8px 16px -4px rgba(22, 34, 51, 0.15);
        background: #2b2b2b;
    }
    .article:hover .article__title {
        color: #fff;
    }
    .article:hover .article__body {
        color: #b0b0b0;
    }
    .article:hover .article__link-imitate {
        color: #fff;
    }
    .pagination__next[disabled]:hover,
    .pagination__prev[disabled]:hover {
        background-color: #fff;
    }
    .pagination__next:hover,
    .pagination__prev:hover {
        background-color: #444343;
    }
    .pagination__link[href]:hover {
        box-shadow: 0 0 20px 0 rgba(22, 34, 51, 0.07), 0 4px 8px -4px rgba(22, 34, 51, 0.05);
    }
    .page-link:hover {
        color: #000;
        box-shadow: 0 8px 16px -4px rgba(22, 34, 51, 0.15);
        background-color: #fff;
    }
    .page-link:hover .page-link__icon-wrapper {
        background-color: #f4bc15;
    }
}


@media only screen and (max-width: 800px) {
    .contact-form__form {
        width: auto;
                margin: 50px 15px;
    }
}

@media only screen and (max-width: 500px) {
    .contact-form__side_left {
        margin: 0px 15px;
        font-size: 16px;
        line-height: 20px;
    }
}
