        @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
        @font-face {
            font-family: 'Furore';
            src: url('../fonts/Furore.woff2') format('woff2'), url('../fonts/Furore.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        
         :root {
            --main-color: #9b8bff;
            --blue: #7ecbef;
            --bg-color: #000;
            --font-color: #fff;
            --divider: 135px;
        }
        /* font-family: "Roboto", sans-serif; */
        
        html {
            font-family: 'Furore', sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            overflow-x: hidden;
            /* font-size: 18px; */
            position: relative;
            color: var(--font-color);
            line-height: 1.25;
            -webkit-text-size-adjust: 100%;
        }
        
        body {
            position: relative;
            overflow-x: hidden;
            max-width: 1920px;
            margin: auto;
            background-color: var(--bg-color);
        }
        
        body.compensate-for-scrollbar {
            margin: 0;
        }
        
        .divider {
            height: var(--divider);
            font-weight: 700;
        }
        
        article,
        section {
            position: relative;
        }
        
         ::-moz-selection {
            background: var(--main-color);
            color: #fff;
            text-shadow: none;
        }
        
         ::selection {
            background: var(--main-color);
            color: #fff;
            text-shadow: none;
        }
        
         ::-webkit-input-placeholder {
            /* WebKit, Blink, Edge */
            color: #9e9e9e;
        }
        
         :-moz-placeholder {
            /* Mozilla Firefox 4 to 18 */
            color: #9e9e9e;
            opacity: 1;
        }
        
         ::-moz-placeholder {
            /* Mozilla Firefox 19+ */
            color: #9e9e9e;
            opacity: 1;
        }
        
         :-ms-input-placeholder {
            /* Internet Explorer 10-11 */
            color: #9e9e9e;
        }
        
         ::-ms-input-placeholder {
            /* Microsoft Edge */
            color: #9e9e9e;
        }
        
         ::placeholder {
            /* Most modern browsers support this now. */
            color: #9e9e9e;
        }
        
        [hidden] {
            display: none;
        }
        
        hr {
            display: block;
            height: 1px;
            border: 0;
            border-top: 1px solid #ccc;
            margin: 1em 0;
            padding: 0;
        }
        
        a {
            text-decoration: none;
            color: var(--font-color);
            background-color: transparent;
        }
        
        html,
        body,
        header,
        main,
        section,
        div,
        footer {
            box-sizing: border-box;
        }
        
        a,
        div,
        button,
        input {
            -webkit-tap-highlight-color: #00000000
        }
        
        audio,
        canvas,
        iframe,
        img,
        svg,
        video {
            vertical-align: middle;
        }
        
        img {
            border-style: none;
            max-width: 100%;
        }
        
        fieldset {
            border: 0;
            margin: 0;
            padding: 0;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        textarea {
            resize: vertical;
        }
        
        .text-center {
            text-align: center;
        }
        /* adm Styles */
        
        input,
        textarea,
        select {
            outline: none;
        }
        
        .container-fluid {
            width: 100%;
            height: 100%;
            padding-right: 3rem;
            padding-left: 3rem;
            margin-right: auto;
            margin-left: auto;
        }
        
        .container {
            width: 100%;
            height: 100%;
            padding-right: 1rem;
            padding-left: 1rem;
            margin-right: auto;
            margin-left: auto;
            max-width: 1200px;
        }
        
        @media (min-width: 576px) {
            .container {
                max-width: 540px;
            }
        }
        
        @media (min-width: 768px) {
            .container {
                max-width: 720px;
            }
        }
        
        @media (min-width: 992px) {
            .container {
                max-width: 960px;
            }
        }
        
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }
        
        .showmenu {
            display: none;
            margin-left: 1em;
            flex-direction: column;
            cursor: pointer;
            align-items: end;
        }
        
        .showmenu span {
            width: 2em;
            height: 4px;
            margin-bottom: 5px;
            background-color: #fff;
            display: inline-block;
            transition: 0.15s;
        }
        
        .showmenu span:last-child {
            margin-bottom: 0;
        }
        
        .closemenu {
            color: #fff;
            cursor: pointer;
            display: none;
            text-align: right;
            position: absolute;
            right: 1em;
            top: 1em;
            font-size: 1.7em;
            line-height: 0;
        }
        
        .closemenu:hover {
            color: #f00;
        }
        
        .showmenu:hover span {
            background-color: #fff;
        }
        
        .btn {
            margin: 15px 0 0;
            position: relative;
        }
        
        .btn a,
        .btn button,
        input[type="submit"] {
            font-family: 'Furore', sans-serif;
            position: relative;
            display: inline-block;
            background-color: var(--main-color);
            border: none;
            color: #000;
            text-align: center;
            padding: 1.7em 5em;
            font-size: 1em;
            box-sizing: border-box;
            border-radius: 7px;
            cursor: pointer;
            transition: 0.3s;
        }
        
        input[type="submit"] {
            padding: 15px 10px;
        }
        
        .btn a:hover,
        .btn button:hover,
        input[type="submit"]:hover {
            background-color: #fff;
        }
        
        .btn.trans a,
        .btn.trans button {
            background-color: transparent;
            border: 2px solid #fff;
            color: #fff;
            padding: 1em;
            width: 100%;
        }
        
        .btn.trans a:hover,
        .btn.trans button:hover {
            background-color: #fff;
            color: #000;
        }
        
        #totop {
            border-radius: 50%;
            position: fixed;
            right: 2em;
            bottom: -2em;
            background: #7f7f7f30;
            width: 35px;
            height: 35px;
            transition: 0.1s;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            line-height: 0;
            z-index: 5;
        }
        
        #totop.show {
            bottom: 2em;
        }
        
        #header {
            background-color: #000;
            padding: 1em 0;
            z-index: 555;
            position: relative;
        }
        
        .header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-wrapper .logo img {
            width: 150px;
        }
        
        .header-menu ul {
            display: flex;
            gap: 2em;
        }
        
        .header-menu a {
            font-size: 12px;
        }
        
        .section-head {
            margin: 5em 0 3em;
        }
        
        .section-head .tit {
            font-size: 2.5em;
        }
        
        .section-head .desc {
            font-family: "Roboto", sans-serif;
        }
        
        .tit span {
            color: var(--main-color);
        }
        
        .section-head.h1 .tit {
            font-size: 3.125em;
        }
        
        .hero-wrapper {
            height: 100vh;
            max-height: 1000px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-video {
            position: absolute;
            overflow: hidden;
            height: 100%;
            border-top: 3em solid #000;
            border-bottom: 3em solid #000;
        }
        
        .hero-video video {
            transform: translateY(-45%);
        }
        
        .hero-mask {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background-color: #000000ad;
        }
        
        .hero-mask div {
            height: 100%;
        }
        
        .hero-mask img {
            height: 100%;
            max-width: none;
            opacity: 0.85;
            transition: 0.1s;
            transform: translateX(0px);
            will-change: transform;
        }
        
        .hero-content {
            height: 100%;
        }
        
        .hero-content .container {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 2em;
            justify-content: center;
        }
        
        .hero-content .desc {
            font-family: "Roboto", sans-serif;
            font-size: 1.3em;
            font-weight: 600;
        }
        
        .hero-content .tit {
            font-size: 6em;
            line-height: 1;
        }
        
        .hero-content .bottom {
            display: flex;
            gap: 35px;
            margin-top: 2em;
        }
        
        .hero-content .icon-block {
            display: flex;
            gap: 1em;
            font-size: 1.3em;
            align-items: center;
        }
        
        .hero-content .icon-block img {
            height: 55px;
        }
        
        .hero-content .btn {
            margin: 0;
        }
        
        .products-list {
            display: flex;
            gap: 35px;
        }
        
        .product-card {
            max-width: 376px;
            border: 2px solid #434343;
            border-radius: 10px;
            padding: 0em;
            font-size: 1.125em;
            box-shadow: 0 0 0px -5px #ffffff7a;
            transition: 0.25s;
        }
        
        .product-card:hover {
            box-shadow: 0 0 20px -5px #ffffff7a;
        }
        
        .product-card .img {
            overflow: hidden;
            border-radius: 10px;
            max-height: 355px;
        }
        
        .product-card .tit {
            margin: 2em 0;
            text-align: center;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-card .btn {
            margin: 0 1em 1em;
        }
        
        .banner1 {
            background-color: #fff;
            border-radius: 30px;
            margin: 10em 8% 5em;
            color: #000;
            display: flex;
            justify-content: space-between;
            padding: 4em 3em 0;
        }
        
        .banner1 .img {
            width: 100%;
        }
        
        .banner1 .img img {
            width: 850px;
            max-width: none;
            position: absolute;
            bottom: 0;
        }
        
        .banner1 .content {
            padding-bottom: 4em;
        }
        
        .banner1 .tit {
            font-size: 4em;
        }
        
        .banner1 .desc {
            font-family: "Roboto", sans-serif;
            font-size: 1.7em;
            margin: 1em 0;
        }
        
        .banner1 .btn button {
            font-size: 1.5em;
            padding: 37px 53px;
        }
        
        .materials-list {
            display: flex;
            gap: 35px;
            flex-wrap: wrap;
        }
        
        .material-card {
            position: relative;
            flex: 0 0 auto;
            width: calc(50% - 17.5px);
            max-width: 536px;
            background-repeat: no-repeat;
            background-size: cover;
            aspect-ratio: 8 / 7;
            border-radius: 10px;
            padding: 2em;
            display: flex;
            gap: 1em;
            flex-direction: column;
            justify-content: flex-end;
        }
        
        .material-card::before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #00000050;
        }
        
        .material-card>div {
            position: relative;
            z-index: 2;
        }
        
        .material-card .tit {
            font-size: 1.6em;
        }
        
        .material-card .desc {
            font-family: "Roboto", sans-serif;
        }
        
        .materials>.btn {
            margin: 3em 0 5em;
            text-align: center;
        }
        
        .results-wrapper {
            display: flex;
            gap: 35px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .res-block {
            flex: 0 0 auto;
            width: 48%;
            border: 1px solid #fff;
            border-radius: 10px;
            display: flex;
            gap: 24px;
            padding: 2em 2em;
            align-items: center;
        }
        
        .res-block .digit {
            font-size: 4em;
            color: var(--main-color);
            flex: 0 0 auto;
        }
        
        .res-block .desc {
            font-size: 1.24em;
        }
        
        .res-block .tit {
            margin-bottom: 8px;
            color: var(--main-color);
        }
        
        .res-block .desc span {
            font-family: "Roboto", sans-serif;
            opacity: 0.5;
        }
        
        .licences {
            display: flex;
            gap: 1em;
        }
        
        .lic-card {
            overflow: hidden;
            border-radius: 15px;
            max-height: 478px;
        }
        
        .lic-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-slide {
            max-height: 570px;
            position: relative;
            text-align: center;
        }
        
        .video-slide video {
            height: 100%;
            width: auto;
            max-width: 279px;
        }
        
        .video-slider>.btn {
            margin: 3em 0 5em;
            text-align: center;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--main-color);
        }
        
        .about-wrapper {
            background-repeat: no-repeat;
            background-size: cover;
            padding: 1px 0 1%;
        }
        
        .about-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 15% 0 10%;
        }
        
        .about-flex.page-about {
            padding: 15% 0 10%;
            margin: 0;
        }
        
        .about-flex .left {
            width: 37%;
            flex: 0 0 auto;
            max-width: 410px;
        }
        
        .about-flex .left .tit {
            font-size: 2.5em;
            margin-bottom: 35px;
        }
        
        .achievs {
            display: flex;
            flex-direction: column;
            gap: 4em;
        }
        
        .achievs li {
            display: flex;
            gap: 24px;
        }
        
        .achievs .text strong {
            color: var(--main-color);
            font-size: 1.1em;
            display: block;
        }
        
        .achievs .text span {
            font-family: "Roboto", sans-serif;
        }
        
        .achievs .icon {
            flex: 0 0 auto;
        }
        
        .achievs .icon img {
            width: 60px;
        }
        
        .about-flex .right {
            flex: 0 0 auto;
            width: 50%;
            position: relative;
            display: flex;
            align-items: flex-end;
        }
        
        .about1-img {
            position: absolute;
            top: -18%;
        }
        
        .about-card {
            position: relative;
            z-index: 2;
            border: 1px solid #9E9E9E;
            background-color: #202020;
            text-align: center;
            border-style: inset;
            max-width: 576px;
            padding: 5% 12%;
            border-radius: 15px;
        }
        
        .bir-wrapper {
            display: flex;
            gap: 24px;
            align-items: center;
            justify-content: center;
        }
        
        .social ul {
            display: flex;
            gap: 24px;
        }
        
        .interest-wrapper {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        
        .int-card {
            flex: 0 0 auto;
            width: calc(50% - 12px);
            border: 1px solid #9E9E9E;
            background-color: #202020;
            border-style: inset;
            border-radius: 15px;
            padding: 2em;
        }
        
        .int-card .tit {
            font-size: 1.8em;
            margin-bottom: 35px;
        }
        
        .int-card a {
            text-decoration: underline;
            font-family: "Roboto", sans-serif;
            font-size: 1.4em;
            font-weight: 700;
        }
        
        .int-card.w100 {
            width: 100%;
            display: flex;
            justify-content: space-between;
            overflow: hidden;
            align-items: center;
            position: relative;
            padding: 6em 3em;
        }
        
        .int-card.w100>div {
            width: 50%;
            flex: 0 0 auto;
            height: 100;
        }
        
        .int-card .img {
            padding: 10%;
        }
        
        .int-card .img img {
            max-height: 200px;
        }
        
        .int-card.w100 .img img {
            position: absolute;
            transform: translate(-7%, -24%);
            padding: 0;
            max-height: none;
        }
        
        #footer {
            font-family: "Roboto", sans-serif;
            margin-top: 100px;
            font-size: 14px;
            background-color: #292929;
            padding: 5em 0 3em;
        }
        
        #footer .links {
            display: flex;
            flex-direction: column;
            margin-top: 35px;
        }
        
        #footer .links a {
            font-size: 0.8em;
            color: #9e9e9e;
        }
        
        #footer a[href^='mailto'] {
            display: inline-block;
            margin-bottom: 1em;
        }
        
        .section-content {
            font-family: "Roboto", sans-serif;
            line-height: 1.5;
            margin-top: var(--divider);
        }
        
        .section-content ul {
            margin-left: 1em;
            list-style-type: disc;
        }
        
        .breadcrumb {
            font-family: "Roboto", sans-serif;
            font-size: 12px;
            opacity: 0.6;
        }
        
        .page-hero {
            height: 85vh;
            background-repeat: no-repeat, no-repeat;
            background-position: 80% top, center;
            /* background-position: 80% bottom, center; */
            background-size: 40em, cover;
        }
        
        .page-hero.school {
            height: 600px;
        }
        
        .page-hero.yasli {
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100%;
        }
        
        .page-hero .container {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .page-hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .page-hero .tit {
            font-size: 3.125em;
        }
        
        .page-hero .tit.small {
            font-size: 1.8em;
            /* margin-bottom: 35px; */
            height: 2.5em;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .page-hero-content>.desc {
            font-family: "Roboto", sans-serif;
            max-width: 460px;
            background: #000;
            border: 1px solid #9E9E9E;
            background-color: #202020;
            border-style: inset;
            border-radius: 15px;
            padding: 0 1em;
            font-size: 1.3em;
            margin: 1em 0;
        }
        
        .page-hero-content .desc strong {
            font-size: 1em;
            font-weight: 400;
        }
        
        .page-hero-content .desc strong span {
            font-family: 'Furore', sans-serif;
            font-size: 1.3em;
        }
        
        .page-hero-content .desc span {
            color: var(--main-color);
        }
        
        .bars {
            display: flex;
            gap: 35px;
            align-items: flex-end;
            margin: 35px 0;
        }
        
        .bar-card {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            flex: 0 0 auto;
            max-width: 33%;
            padding: 1em;
            background-color: #000;
        }
        
        .bar-card .tit {
            text-align: center;
        }
        
        .bar-card .icon {
            text-align: center;
            margin-bottom: -33px;
        }
        
        .bar-card .icon img {
            width: 66px;
            height: 66px;
            transform: translateY(-33px);
        }
        
        .bar-card .desc {
            font-family: "Roboto", sans-serif;
            text-align: center;
        }
        
        .bar-card .desc span {
            color: var(--main-color);
        }
        
        .bar-card .video {
            position: relative;
        }
        
        .bar-card .video svg {}
        
        .play-button {
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            background-color: #ffffff66;
            padding: 2em;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .tiles {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .tile-card {
            flex: 0 0 auto;
            width: calc(33% - 18px);
            display: flex;
            align-items: center;
        }
        
        .tiles.w50flex .tile-card {
            width: calc(50% - 24px);
        }
        
        .tile-card .icon {
            width: 66px;
            margin-right: -33px;
            position: relative;
            flex: 0 0 auto;
        }
        
        .tile-content {
            font-family: "Roboto", sans-serif;
            background-color: #000;
            padding: 1em 1em 1em 3em;
        }
        
        .tile-content .tit {
            font-size: 1.25em;
        }
        
        .guru-wrapper .tile-content .tit {
            font-family: 'Furore', sans-serif;
        }
        
        .guru-btn {
            text-align: center;
            margin-top: 3em;
        }
        
        .tile-content .desc {
            opacity: 0.5;
            margin-top: 1em;
        }
        
        .tile-list {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        
        .tile-list-card {
            padding: 3em;
            display: flex;
            gap: 35px;
            background-repeat: no-repeat;
            background-position: right;
            border: 1px solid #9E9E9E;
            background-color: #202020;
            border-style: inset;
            border-radius: 15px;
        }
        
        .tile-list.guru-list .tile-list-card {
            width: 55%;
            flex: 0 0 auto;
        }
        
        .tile-list.guru-list div:nth-child(2n) {
            align-self: flex-end;
        }
        
        .tile-list.guru-list .tile-list-card .text {
            width: 100%;
        }
        
        .tile-list-card .icon {
            color: var(--main-color);
            font-size: 4em;
            font-family: "Roboto", sans-serif;
            flex: 0 0 auto;
            width: 10%;
            line-height: 1;
        }
        
        .tile-list-card .text {
            flex: 0 0 auto;
            width: 55%;
        }
        
        .tile-list-card .text .tit {
            font-size: 1.7em;
            margin-bottom: 24px;
        }
        
        .tile-list-card .text .desc {
            font-family: "Roboto", sans-serif;
        }
        
        .tiles .btn {
            margin-left: auto;
            margin-right: auto;
        }
        
        .tarif {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .tarif-card {
            flex: 0 0 auto;
            width: calc(33% - 30px);
            max-width: 365px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #9E9E9E;
            background-color: #202020;
            border-style: inset;
            border-radius: 15px;
            padding: 2em;
        }
        
        .tarif-card.w100 {
            width: 100%;
            max-width: none;
        }
        
        .tarif .tarif-card:first-child .tit {
            color: #9E9E9E;
        }
        
        .tarif .tarif-card:nth-child(3) .tit {
            color: #bbffaa;
        }
        
        .tarif .tarif-card:nth-child(4) .tit {
            color: var(--main-color);
        }
        
        .tarif-card .tit {
            font-size: 1.7em;
        }
        
        .tarif-card .desc {
            font-family: "Roboto", sans-serif;
            margin-top: 10px;
            margin-bottom: 5px;
        }
        
        .tarif-card .desc ul li {
            position: relative;
            display: flex;
            margin-bottom: 5px;
        }
        
        .tarif-card .desc ul li:before {
            content: '☑';
            display: inline-block;
            margin-right: 5px;
            color: var(--main-color);
        }
        
        .tarif-card .buy-block p {
            color: #999;
            margin: 0;
        }
        
        .tarif-card .buy-block .price {
            font-size: 1.6em;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        
        .tarif-card .buy-block .price div:last-child {
            font-size: 0.75em;
            color: #999;
        }
        
        .tarif-card .btn {
            width: 100%;
        }
        
        .tarif-card .btn button {
            width: 100%;
            padding: 1.3em 0em;
        }
        
        .tarif-card .buy-block {
            margin-top: 1em;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .tarif-card .buy-block.crdt .btn button {
            color: var(--main-color);
            border-color: var(--main-color);
        }
        
        .tarif-card.w100 .desc ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tarif-card.w100 .desc ul li {
            width: 32%;
            flex: 0 0 auto;
        }
        
        .tarif-card.w100 .buy-block {
            max-width: 45%;
        }
        
        .promo-card {
            margin-bottom: 10em;
            display: flex;
            align-items: flex-end;
            gap: 35px;
            justify-content: space-between;
        }
        
        .promo-card .text {
            display: flex;
            flex-direction: column;
            gap: 1.3em;
        }
        
        .promo-card .tit {
            font-size: 3.5em;
            z-index: 2;
        }
        
        .promo-card .desc-img {
            max-width: 161px;
            width: 100%;
        }
        
        .promo-card .desc-content p {
            font-family: "Roboto", sans-serif;
            margin-bottom: 0;
        }
        
        .promo-card .desc-content.big p {
            font-size: 1.6em;
        }
        
        .promo-card .tit.small {
            font-size: 2em;
            z-index: 2;
        }
        
        .promo-card .text .desc {
            display: flex;
            gap: 2em;
            align-items: flex-end;
            max-width: 520px;
        }
        
        .promo-card strong span {
            color: var(--main-color);
        }
        
        .btn.promo3:before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 0;
            background-image: url(../img/promo3.webp);
            background-repeat: no-repeat;
            background-size: contain;
            width: 85%;
            height: 256px;
        }
        
        .tab-pane {
            display: none;
        }
        
        .tab-pane.active {
            display: flex;
        }
        
        .tabs-nav {
            --gap: 15px;
            --cols: 6;
            flex-wrap: wrap;
            display: flex;
            gap: var(--gap);
            margin-bottom: 30px;
        }
        
        .tabs-col {
            display: flex;
            gap: 24px;
        }
        
        .tabs-col .tabs-nav {
            --cols: 2;
            flex: 0 0 auto;
            width: calc(40% - 24px);
        }
        
        .tabs-col .tabs-content {
            flex: 0 0 auto;
            width: calc(60% - 24px);
        }
        
        .tab-btn {
            flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
            background: none;
            border-radius: 10px;
            border: 2px solid #202020;
            display: flex;
            text-align: center;
            flex-direction: column;
            padding: 0;
            transition: 0.18s;
        }
        
        .tabs-col .tabs-nav .tab-btn:first-child {
            width: 100%;
            flex: 0 0 auto;
        }
        
        .tab-btn span {
            display: block;
            color: #fff;
            padding: 1em;
        }
        
        .tab-btn span:first-child {
            font-family: 'Furore', sans-serif;
            background-color: #111;
            transition: 0.13s;
            cursor: pointer;
            border-bottom: 2px solid #202020;
            border-radius: 7px;
        }
        
        .tab-btn.active,
        .tab-btn:hover {
            border-color: #7ecbef6b;
        }
        
        .tab-btn.active span:first-child,
        .tab-btn span:first-child:hover {
            background-color: var(--blue);
        }
        
        .tab-pane {
            background-color: #111;
            border-bottom: 2px solid #202020;
            border-radius: 15px;
            padding: 1em;
            justify-content: space-between;
            min-height: 375px;
        }
        
        .tab-pane .left {
            flex: 1;
        }
        
        .tab-pane .top {
            border-radius: 10px;
            display: inline-block;
            color: #000;
            padding: 1em 2em;
            font-size: 0.75em;
            text-align: center;
            background-color: var(--blue);
        }
        
        .tab-pane .right {
            background-color: #fff;
            border-radius: 15px;
            color: #000;
            flex: 0 0 auto;
            width: 390px;
            padding: 1em;
        }
        
        .tab-pane .tit {
            font-size: 1.2em;
            margin: 15px 0;
        }
        
        .tab-pane .desc {
            font-family: "Roboto", sans-serif;
            max-width: 420px;
        }
        
        .tab-pane .desc ul {}
        
        .tab-pane .desc ul li {
            position: relative;
            display: flex;
            margin-bottom: 5px;
        }
        
        .tab-pane .desc ul li:before {
            content: '☑';
            display: inline-block;
            margin-right: 1em;
            color: var(--blue);
        }
        
        .person-block {
            display: flex;
            justify-content: space-between;
            gap: 60px;
            padding: 30px;
            border-radius: 12px;
            background-repeat: no-repeat;
            background-size: cover;
            border: 1px solid #9E9E9E;
            border-style: inset;
            margin-bottom: 60px;
        }
        
        .person-info .img {
            border-radius: 10px;
            width: 200px;
            aspect-ratio: 1/1;
            overflow: hidden;
            margin-bottom: 1em;
        }
        
        .person-info .name span {
            color: var(--main-color);
            font-size: 1.25em;
        }
        
        .person-info .name p {
            color: #a4a4a4;
            font-family: "Roboto", sans-serif;
            margin: 0;
        }
        
        .person-block .before {
            font-family: "Roboto", sans-serif;
            color: #787878;
            border-radius: 10px;
            background-color: #0f0f0f;
            border: 1px solid #9E9E9E;
            border-style: inset;
            padding: 1em;
            line-height: 1.5;
        }
        
        .person-block .after {
            font-family: "Roboto", sans-serif;
            padding: 1em;
            border-radius: 10px;
            background: #0F0F0F;
            background: radial-gradient(circle, rgba(15, 15, 15, 1) 60%, rgba(21, 66, 21, 1) 100%);
            border: 1px solid #9E9E9E;
            border-style: inset;
            line-height: 1.5;
        }
        
        .person-block .pin {
            padding: 15px 30px;
            border-radius: 7px;
            border: 1px solid #787878;
            display: inline-block;
        }
        
        .person-block .after .pin {
            color: #bbffaa;
            border-color: #bbffaa;
        }
        
        .single-head {
            text-align: center;
        }
        
        .single-img {
            overflow: hidden;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .single-img img {
            max-width: 100%;
            border-radius: 12px;
        }
        
        .fancybox__content {
            background-color: transparent;
            padding: 0;
        }
        
        .info-popup_wrapper {
            max-width: 550px;
            margin: auto;
            color: #fff;
            background-color: #1A1A1A;
            padding-left: 40px;
            padding-right: 40px;
            padding-top: 50px;
            padding-bottom: 50px;
            border: 1px solid #AE91FF;
            border-radius: 10px;
        }
        
        .info-popup_wrapper .tit {
            font-size: 1.5em;
            text-align: center;
            margin-bottom: 2em;
        }
        
        .form-wrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            max-width: 500px;
        }
        
        .inp {
            position: relative;
        }
        
        .inp input {
            display: block;
            width: 100%;
            box-sizing: border-box;
            border: 1px #aaa solid;
            border-radius: 5px;
            background-color: #1A1A1A;
            color: #fff;
            font-size: 1em;
            font-family: "Roboto", sans-serif;
            padding: 15px 10px;
        }
        
        .inp input:focus {
            border-color: #fff;
        }
        
        .wpcf7-not-valid-tip {
            color: #dc3232;
            font-size: 0.75em;
            font-family: "Roboto", sans-serif;
        }
        
        .wpcf7-list-item {
            margin: 0;
        }
        
        .wpcf7-list-item label {
            display: flex;
            gap: 8px;
            align-items: baseline;
        }
        
        .wpcf7-spinner {
            position: absolute;
        }
        
        .wpcf7 form .wpcf7-response-output {
            font-family: "Roboto", sans-serif;
            font-size: 0.7em;
            border-style: inset;
            border-width: 1px;
        }
        
        .subm {
            display: flex;
            flex-direction: column;
            align-items: baseline;
        }
        
        .subm input[type="submit"] {
            align-self: center;
        }
        
        .accepts {
            display: flex;
            flex-direction: column;
            gap: 1em;
            font-family: "Roboto", sans-serif;
            font-size: 0.8em;
            margin: 1em 0;
        }
        
        .accepts a {
            color: var(--main-color);
        }
        
        @media screen and (max-width: 1600px) {}
        
        @media screen and (max-width: 1199px) {
            html {
                font-size: 16px;
            }
            .showmenu {
                display: flex;
                margin: 1em 0;
            }
            .closemenu {
                display: inline-block;
            }
            .header-wrapper {
                position: fixed;
                top: 0;
                left: -110%;
                box-sizing: border-box;
                width: 100%;
                height: 100%;
                /* background-color: var(--main-color); */
                background: linear-gradient(135deg, #880d12 0%, #6e0c11 62%);
                z-index: 9;
                padding: 3em 3em 2em;
                transition: 0.25s ease-in-out;
            }
            .opnmenu .header-wrapper {
                left: 0%;
            }
            .header-menu ul {
                flex-direction: column;
                height: auto;
            }
            .hero-wrapper {
                height: 60vh;
            }
            .hero-content .tit {
                font-size: 3em;
                text-align: center;
            }
            .hero-content .desc {
                font-size: 1.2em;
                text-align: center;
            }
            .hero-content .bottom {
                gap: 25px;
                margin-top: 1em;
                flex-direction: column-reverse;
                align-items: center;
                text-align: center;
            }
            .hero-content .icon-block {
                font-size: 1em;
            }
            .hero-content .icon-block img {
                height: 35px;
            }
            .btn a,
            .btn button {
                padding: 1em 3em;
            }
            .section-head.h1 .tit {
                font-size: 1.8em;
            }
            .section-head .tit {
                font-size: 1.8em;
            }
            .banner1 .btn button {
                font-size: 1em;
                padding: 1em 3em;
            }
            .banner1 .tit,
            .about-flex .left .tit {
                font-size: 2em;
            }
            .banner1 .desc {
                font-size: 1em;
            }
            .banner1 .img img {
                width: 64%;
            }
            .banner1 .content {
                padding-bottom: 0em;
            }
            .material-card .tit {
                font-size: 1.3em;
            }
            .product-card .tit {
                height: 97px;
            }
            .banner1 {
                padding: 2em 3em 2em;
            }
            .page-hero .tit {
                font-size: 2.2em;
            }
            .page-hero-content>.desc {
                font-size: 1em;
            }
            .page-hero .tit.small {
                font-size: 1.3em;
                height: auto;
            }
            .page-hero {
                height: auto;
                padding-top: 33vh;
                background-size: 22em, cover;
            }
            .page-hero.closedclub {
                background-position-x: right;
                padding-top: 30vh;
                background-size: 21em, 0;
            }
            .page-hero.school {
                height: auto;
            }
            .res-block .desc {
                font-size: 1em;
            }
            .res-block .digit img {
                width: 83px;
            }
            .tile-list-card .text .tit {
                font-size: 1.3em;
            }
            .tile-list-card .icon {
                font-size: 3em;
            }
            .tile-list-card {
                padding: 1.7em;
            }
            .tarif-card {
                min-width: 335px;
                width: calc(50% - 15px);
            }
            .promo-card .tit {
                font-size: 2em;
            }
        }
        
        @media screen and (max-width: 992px) {
            .products-list {
                overflow-x: auto;
            }
            .product-card {
                width: 286px;
                flex: 0 0 auto;
            }
            .res-block {
                width: 100%;
            }
            .about-flex .left {
                width: 100%;
                order: 2;
                margin: auto;
            }
            .about-flex .right {
                width: 100%;
                order: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .about1-img {
                top: 5em;
                position: relative;
                width: 235px;
                margin: auto;
            }
            .achievs {
                gap: 2em;
            }
            .about-card {
                padding: 1em;
                border-radius: 15px;
                margin-bottom: 2em;
            }
            .about-flex .left .tit {
                text-align: center;
            }
            .int-card .tit {
                font-size: 1.3em;
                margin-bottom: 5px;
            }
            .int-card a {
                font-size: 1em;
            }
            .int-card .img {
                padding: 5%;
            }
            .bars {
                flex-direction: column;
                align-items: center;
            }
            .bar-card {
                width: 100%;
                max-width: 228px;
                gap: 3px;
            }
            .page-hero.yasli {
                background-repeat: no-repeat;
                background-position: 77% top;
                background-size: 200%;
                padding-top: 76%;
                margin-top: -20%;
            }
            .page-hero.yasli .btn {
                text-align: center;
            }
            .tile-card {
                width: calc(50% - 24px);
            }
            .tile-list.guru-list .tile-list-card {
                width: 80%;
            }
            .tile-list.guru-list .tile-list-card .text {
                width: auto;
                flex: 1;
            }
            .tabs-col {
                flex-direction: column-reverse;
            }
            .tabs-col .tabs-nav {
                width: 100%;
            }
            .tabs-col .tabs-content {
                width: 100%;
            }
            .person-block {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        @media screen and (max-width: 768px) {
             :root {
                --divider: 75px;
            }
            .banner1 {
                flex-direction: column;
                padding: 2em 3em 0;
            }
            .banner1 .img img {
                width: 100%;
                position: relative;
            }
            .banner1 .content {
                padding-bottom: 2em;
            }
            .material-card {
                max-width: 320px;
                width: 100%;
            }
            .materials-list {
                justify-content: center;
            }
            .social ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            .social ul li {
                max-width: 45%;
            }
            .section-head .tit {
                font-size: 1.4em;
            }
            .interest-wrapper {
                justify-content: center;
            }
            .int-card {
                width: 100%;
                max-width: 320px;
            }
            .int-card.w100 {
                width: 100%;
                padding: 2em 2em;
            }
            .int-card.w100 .img img {
                transform: none;
            }
            .tiles.w50flex .tile-card {
                width: 100%;
            }
            .tab-btn span:last-child {
                display: none;
            }
            .tabs-col .tab-btn span:last-child {
                display: inline-block;
                color: #9e9e9e;
            }
            .tab-btn span:first-child {
                white-space: nowrap;
            }
            .tab-btn.active {
                border-color: #202020;
            }
            .tabs-nav {
                --gap: 10px;
            }
            .tab-pane {
                flex-direction: column;
                gap: 1em;
            }
            .tab-pane .right {
                width: 100%;
            }
            .about-flex.page-about {
                padding: 4% 0 4%;
            }
            .promo-card .tit {
                font-size: 1.5em;
            }
            .promo-card .tit.small {
                font-size: 1.5em;
            }
            .promo-card .desc-content.big p {
                font-size: 1.1em;
            }
            .promo {
                margin: var(--divider) 0 0;
            }
            .promo-card {
                gap: 1em;
                flex-direction: column;
                margin-bottom: 5em;
            }
            .promo-card .img img {
                display: none;
            }
            .btn.promo3:before {
                opacity: 0.6;
            }
            .section-head.h1 .tit {
                font-size: 1.5em;
            }
            .tarif {
                justify-content: center;
            }
            .tarif-card.w100 .desc ul li {
                width: calc(50% - 5px);
            }
            .tarif-card.w100 .buy-block {
                max-width: 100%;
            }
            .tile-card {
                width: 100%;
            }
        }
        
        @media screen and (max-width: 576px) {
            .hero-content .tit {
                font-size: 2em;
            }
            .hero-content .desc {
                font-size: 1em;
            }
            .hero-wrapper {
                height: 445px;
            }
            .opnmenu .header-wrapper {
                flex-direction: column;
                justify-content: unset;
                gap: 35px;
                align-items: baseline;
            }
            .tarif-card.w100 .desc ul li {
                width: 100%;
            }
            .section-head {
                margin: 1em 0 1em;
            }
        }
        
        @media screen and (max-width: 500px) {}
        
        @media screen and (max-width: 400px) {}
        
        @media print,
        (-webkit-min-device-pixel-ratio: 1.25),
        (min-resolution: 1.25dppx),
        (min-resolution: 120dpi) {
            /* Style adjustments for high resolution devices */
        }
        
        @media print {
            *,
            *:before,
            *:after {
                background: transparent !important;
                color: #000 !important;
                /* Black prints faster */
                box-shadow: none !important;
                text-shadow: none !important;
            }
            a,
            a:visited {
                text-decoration: underline;
            }
            a[href]:after {
                content: " ("attr(href) ")";
            }
            abbr[title]:after {
                content: " ("attr(title) ")";
            }
            a[href^="#"]:after,
            a[href^="javascript:"]:after {
                content: "";
            }
            pre {
                white-space: pre-wrap !important;
            }
            pre,
            blockquote {
                border: 1px solid #999;
                page-break-inside: avoid;
            }
            thead {
                display: table-header-group;
            }
            tr,
            img {
                page-break-inside: avoid;
            }
            p,
            h2,
            h3 {
                orphans: 3;
                widows: 3;
            }
            h2,
            h3 {
                page-break-after: avoid;
            }
        }