/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}




p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    outline: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    background: #F9F9F9;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    background: #FFFFFF;
    box-shadow: 0px 4px 27.4px 0px #0000000D;
}

.header_wrapper {
    padding: 12px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_logo {
    display: flex;
    width: 186px;
}

.header_logo img {
    width: 100%;
    height: auto;
}

.header_right {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    align-items: center;
}

.menu {
    gap: 8px;
    align-items: center;
    display: flex;
}

.menu a {
    font-weight: 500;
    font-size: 24px;
    padding: 8px 19px;
    display: block;
    color: #20488A;
    transition: all 0.3s;
    border-radius: 23px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.menu a::before {
    background: linear-gradient(95.8deg, #92BBFF 0%, #305592 100%);
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    top: 0;
    right: 0;
    opacity: 0;
}

.menu a:hover,
.menu a.active {
    box-shadow: 0px 4px 7.5px 0px #0000000D;
    color: #fff;
}

.menu a:hover::before,
.menu a.active::before {
    opacity: 1;
}

.btn_blue {
    background: linear-gradient(95.8deg, #92BBFF 0%, #305592 100%);
    box-shadow: 0px 4px 7.5px 0px #0000000D;
    border-radius: 26px;
    font-size: 22px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn_blue::before {
    background: linear-gradient(-95deg, #92BBFF 0%, #305592 100%);
    box-shadow: 0px 4px 7.5px 0px #0000000D;
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    top: 0;
    opacity: 0;
    right: 0;
}

.btn_blue:hover::before {
    opacity: 1;
}

.btn_green {
    background: linear-gradient(90deg, #6BFF5E 0%, #047A00 100%);
    border-radius: 26px;
    font-size: 22px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn_green::before {
    background: linear-gradient(-95deg, #6BFF5E 0%, #047A00 100%);
    box-shadow: 0px 4px 7.5px 0px #0000000D;
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    top: 0;
    opacity: 0;
    right: 0;
}

.btn_green:hover::before {
    opacity: 1;
}

.btn_white {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 16px;
    font-size: 24px;
    color: #20488A;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: all 0.3s;
}

.btn_white:hover {
    color: #fff;
    background: #20488A;
}

.header_btn {
    width: 206px;
    height: 48px;
}

.header_log {
    border: 2px solid #20488A;
    border-radius: 26px;
    width: 60px;
    height: 48px;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
    align-items: center;
}

.header_log:hover {
    background-color: #20488A;
}

.header_log path {
    transition: all 0.3s;

}

.header_log:hover path {
    fill: #fff;
}

.main {
    overflow: hidden;
    margin-top: 117px;
    height: 350vh;
    position: relative;
}

.main_body {
    padding-top: 8%;
    background-image: url(../img/main_bg.jpg);
    background-size: cover;
    background-position: center;
    position: fixed;
    width: 100%;
    transform: scale(0.7);
    left: 50%;
    transform-origin: 0% 50%;
    padding-bottom: 12%;
    margin: 0 auto;
}

@media(min-width:1921px) {
    .main_body {
        width: 2200px;
        padding-top: 12%;
        padding-bottom: 15%;
    }
}

.main_body.fixed::before {
    opacity: 0;
}

.main_body::before {
    position: absolute;
    content: "";
    background-image: url(../img/main_bef.png);
    background-size: cover;
    background-position: center;
    width: 143%;
    pointer-events: none;
    height: 109%;
    top: 48%;
    right: 50%;
    transition: all 0.3s;
    transform: translate(50%, -50%);

}

.main_wrapper {
    background: #8A551D33;
    border: 2px solid #ffffff73;
    border-radius: 25px;
    margin-bottom: 50px;
    padding: 30px 60px 50px;
    backdrop-filter: blur(145px);
}

.main_title {
    color: #fff;
    font-weight: 700;
    text-shadow: 1.25px 1.25px 1.25px #00000040;
    font-size: 80px;
    text-align: center;
    margin-bottom: 15px;
}

.main_tegs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 42px;
    gap: 15px;
}

.main_teg {
    background: linear-gradient(93.55deg, #FFDD78 0%, #EAB000 99.56%);
    border-radius: 42px;
    padding: 6px 15px;
    font-weight: 600;
    font-size: 17.5px;
    color: #fff;
}

.main_text {
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    color: #fff;
    text-shadow: 1.25px 1.25px 1.25px #00000040;

}

.btn_yellow {
    background:
        linear-gradient(93.55deg, #FFDD78 0%, #EAB000 99.56%);
    border-radius: 70px;
    font-size: 22px;
    color: #fff;
    border: 2px solid #ffffff73;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn_yellow::before {
    background: linear-gradient(-95deg, #FFDD78 0%, #EAB000 99.56%);
    box-shadow: 0px 4px 7.5px 0px #0000000D;
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    top: 0;
    opacity: 0;
    right: 0;
}

.btn_yellow:hover::before {
    opacity: 1;
}

.main_btns {
    display: flex;
    gap: 24px;
}

.main_btn {
    padding: 20px 25px;
    font-size: 30px;
}


.advantages {
    background-image: url(../img/advantages.svg);
    background-position: top center;
    padding: 95px 0 45px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.advantages_wrapper {

    position: relative;
    z-index: 1;
}

.advantages_items {
    gap: 270px;
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advantages_item:nth-child(1) {
    margin-top: 50px;
}

.advantages_item {
    z-index: 1;
    width: 433px;
    border: 2px solid #ffffff73;
    color: #fff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 290px;
    padding: 24px 20px;
    position: relative;
    opacity: 1 !important;
}

.advantages_item::after {
    background: #FFFFFF08;
    backdrop-filter: blur(145px);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 25px;
    top: 0;
    right: 0;
    z-index: -1;
}


.advantages_item:nth-child(1) .advantages_item-circle {
    position: absolute;
    content: "";
    width: 213px;
    height: 213px;
    background: #EEF8FF;
    z-index: -2;
    top: -46px;
    right: -106px;
    filter: blur(35px);
    border-radius: 50%;
    transition: all 0.05s;

}

.advantages_item:nth-child(2) .advantages_item-circle {
    position: absolute;
    content: "";
    width: 98px;
    height: 98px;
    background: #EEF8FF;
    z-index: -1;
    bottom: -46px;
    right: -36px;
    filter: blur(18px);
    border-radius: 50%;
    transition: all 0.1s;
}

.advantages_item .advantages_item-circle {
    opacity: 0;
}

.advantages_item[style="visibility: visible; animation-name: fadeInRight;"] .advantages_item-circle,
.advantages_item[style="visibility: visible; animation-name: fadeInLeft;"] .advantages_item-circle {
    opacity: 1;
}

.advantages_item:nth-child(3) .advantages_item-circle {
    position: absolute;
    content: "";
    width: 98px;
    height: 98px;
    background: #EEF8FF;
    z-index: -1;
    top: -37px;
    left: -36px;
    filter: blur(18px);
    border-radius: 50%;
    transition: all 0.15s;

}

.advantages_item:nth-child(4) .advantages_item-circle {
    position: absolute;
    content: "";
    width: 213px;
    height: 213px;
    background: #EEF8FF;
    z-index: -1;
    top: -106px;
    right: 94px;
    filter: blur(35px);
    border-radius: 50%;
    transition: all 0.2s;

}

.advantages_img {
    position: absolute;
    z-index: 1;
    bottom: -38px;
    display: flex;
    right: 50%;
    transform: translateX(50%);
}

.advantages_item-title {
    font-weight: 600;
    text-shadow: 1.25px 1.25px 1.25px #00000040;
    font-size: 32px;
    margin-bottom: 45px;
}

.advantages_item-text {
    font-weight: 600;
    text-shadow: 1.25px 1.25px 1.25px #00000040;
    font-size: 20px;
}

.advantages_item-text span {
    font-weight: 900;
}

.tariffs {
    padding: 45px 0;
}

.title {
    font-weight: 600;
    font-size: 96px;
}

.tariffs .title {
    margin-bottom: 20px;
    text-align: center;
    color: #20488A;
}

.tariffs_text {
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    color: #20488A;
    margin-bottom: 30px;
}

.tariffs_tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 44px;
}

.tariffs_tab {
    background: linear-gradient(91.57deg, #4A6DA6 0%, rgba(74, 109, 166, 0) 100%);
    padding: 11px 18px;
    cursor: pointer;
    font-weight: 500;
    font-size: 22px;
    color: #20488A;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.tariffs_tab:hover {
    background-color: #4A6DA6;
}

.tariffs_tab.active {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    color: #fff;
}

.tariffs_tab.active::before {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
}

.tariffs_tab::before {
    position: absolute;
    content: "";
    top: 2px;
    border-radius: 40px;
    right: 2px;
    background-color: #fff;
    z-index: -1;
    left: 2px;
    bottom: 2px;
}

.tariffs_items {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.tariffs_item {
    border-radius: 25px;
    overflow: hidden;
    width: calc(33.333% - 46.666px);
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 7.5px 0px #0000001A;
}

.tariffs_item:nth-child(1) .tariffs_item-top {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);

}

.tariffs_item:nth-child(2) .tariffs_item-top {
    background: linear-gradient(90deg, #6BFF5E 0%, #047A00 100%);
}

.tariffs_item:nth-child(3) .tariffs_item-top {
    background: linear-gradient(90deg, #FFE167 0%, #DDA900 100%);
}

.tariffs_item:nth-child(2) .tariffs_item-more {
    background: linear-gradient(90deg, #6BFF5E 0%, #047A00 100%);
}

.tariffs_item:nth-child(3) .tariffs_item-more {
    background: linear-gradient(90deg, #FFE167 0%, #DDA900 100%);
}

.tariffs_item-top {
    text-align: center;
    padding: 24px;
    color: #fff;
}

.tariffs_item-subtitle {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 2px;
}

.tariffs_item-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 14px;
}

.tariffs_item-text {
    font-weight: 500;
    font-size: 15px;
}

.tariffs_item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 15px;
}

.tariffs_item-option {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    color: #20488A;
    padding-left: 31px;
    position: relative;
}

.tariffs_item-option::before {
    position: absolute;
    content: "";
    background-image: url(../img/tariffs_item-option.png);
    background-size: cover;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
}

.tariffs_item-format {
    font-weight: 700;
    font-size: 20px;
    color: #20488A;
    margin-bottom: 25px;
}

.tariffs_item-more {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    cursor: pointer;
    margin-top: auto;
    border-radius: 10px;
}

.tariffs_item-more.active img {
    transform: rotate(180deg);
}

.tariffs_item-more img {
    transition: all 0.3s;
}

.tariffs_item-total {
    font-weight: 700;
    font-size: 48px;
    text-align: center;
    color: #20488A;
    margin-bottom: 10px;
}

.tariffs_item-hide {
    color: #20488A;
    padding-bottom: 20px;
    line-height: 130%;
    display: none;
}

.tariffs_item-desc {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    margin-bottom: 30px;
    color: #20488AAD;
}

.tariffs_item-price {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #20488A;
    margin-bottom: 10px;
}

.tariffs_item-btn {
    height: 60px;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    border-radius: 16px;
}

.tariffs_content {
    display: none;
}

.tariffs_content.active {
    display: block;
}

.night_wrapper {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border: 2.49px solid rgba(74, 109, 166, 0.5);
    border-radius: 24px;
    padding: 60px;
    margin-top: 46px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    min-height: 1000px;
    position: relative;
}

.night_img {
    position: absolute;
    display: flex;
    bottom: 0;
    right: -232px;
}

.night_title {
    width: 630px;
    font-weight: 600;
    font-size: 40px;
}

.night_subtitle {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 20px;
}

.night_left {
    width: 604px;
}

.night_text {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 40px;
}

.night_desc {
    font-weight: 500;
    font-size: 20px;
}

.night_faq:last-child .night_faq-title {
    border-bottom: none;
}

.night_faq-title {
    font-weight: 500;
    font-size: 20px;
    border-bottom: 2px solid #FFFFFF;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
}

.night_faq-title.active {
    border-bottom: none;
}

.night_faq-title.active::before {
    transform: translateY(-50%) rotate(180deg);
}

.night_faq-title::before {
    position: absolute;
    content: "";
    background-image: url(../img/faq_arrow.svg);
    background-size: cover;
    width: 24px;
    height: 24px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s
}

.night_faq-list {
    display: none;
}

.night_faq-list li:first-child {
    margin-top: 0;
}

.night_faq-list li {
    margin-top: 20px;
    font-weight: 500;
    font-size: 20px;
}

.night_price {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 20px;
}

.night_btn {
    width: 404px;
    height: 60px;
    font-size: 24px
}

.transformation {
    padding: 52px 0 200px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px 70px 0 0;
}

.transformation .title {
    margin-bottom: 46px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.transformation_text {
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.transformation_items {
    display: flex;
    position: relative;
    z-index: 1;
    gap: 70px;
    flex-wrap: wrap;
}

.transformation_star:nth-child(1) {
    position: absolute;
    content: "";
    background-image: url(../img/transformation_items-aft.png);
    background-size: cover;
    left: -238px;
    z-index: -1;
    top: -82px;
    width: 521px;
    height: 541px;
    transition: all 0.1s;
}

.transformation_star:nth-child(2) {
    position: absolute;
    content: "";
    background-image: url(../img/transformation_items-bef.png);
    background-size: cover;
    right: -238px;
    z-index: -1;
    top: -330px;
    width: 635px;
    transition: all 0.2s;
    height: 531px;
}

.transformation_item {
    box-shadow: 0px 4px 7.5px 0px #00000040;
    backdrop-filter: blur(30px);
    width: calc(33.333% - 46.666px);
    display: flex;
    flex-direction: column;
    background: #FFFFFF1A;
    border: 2px solid #ffffff73;
    padding: 25px 25px 30px;
    border-radius: 20px;
    color: #fff;
}

.transformation_item-title {
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 28px;
}

.transformation_item-text {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 80px;
}

.transformation_item-btn {
    background-color: #5C99FC;
    height: 78px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    margin-top: auto;
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    transition: all 0.3s;
    border: 1px solid #ffffff73;
}

.transformation_item-btn:hover {
    color: #5C99FC;
    background: #fff;
}

.online {
    padding: 60px 0 190px;
    margin-top: -100px;
    background-image: url(../img/online.png);
    background-size: cover;
    background-position: center top;
    color: #fff;
    border-radius: 70px 70px 0 0;
}

.online .title {
    margin-bottom: 50px;
    text-shadow: 1.25px 1.25px 1.25px #00000040;
}

.online_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 40px;
}

.online_items {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.online_item {
    box-shadow: 0px 4px 7.5px 0px #0000001A;
    background: #FFFFFF33;
    border-radius: 20px;
    border: 1px solid #ffffff73;
    padding: 30px;
    position: relative;
    min-height: 432px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.online_item:nth-child(1) {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-column-end: 4;
}

.online_item:nth-child(2) {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-row-end: 4;
    grid-column-end: 2;
}

.online_item:nth-child(3) {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 4;
}

.online_item:nth-child(4) {
    grid-row-start: 3;
    grid-column-start: 2;
    grid-row-end: 4;
    grid-column-end: 3;
}

.online_item:nth-child(5) {
    grid-row-start: 3;
    grid-column-start: 3;
    grid-row-end: 4;
    grid-column-end: 4;
}

.online_item:nth-child(6) {
    grid-row-start: 4;
    grid-column-start: 1;
    grid-row-end: 5;
    grid-column-end: 3;
}

.online_item:nth-child(7) {
    grid-row-start: 4;
    grid-column-start: 3;
    grid-row-end: 5;
    grid-column-end: 4;
}

.online_item:nth-child(8) {
    grid-row-start: 5;
    grid-column-start: 1;
    grid-row-end: 6;
    grid-column-end: 4;
}

.online_item-title {
    text-shadow: 1px 1px 1px #00000040;
    font-weight: 800;
    margin-bottom: 26px;
    font-size: 40px;
}

.online_item-img {
    position: absolute;
    display: flex;
    pointer-events: none;
    z-index: 1;
}

.online_item-text {
    font-weight: 800;
    font-size: 24px;
}

.online_item:nth-child(1) .online_item-text {
    max-width: 700px;
}

.online_item:nth-child(1) .online_item-img {
    right: -60px;
    bottom: -30px;
}

.online_item:nth-child(2) .online_item-img {
    left: -205px;
    bottom: -80px;
}

.online_item:nth-child(3) .online_item-img {
    bottom: 0;
    right: 0;
}

.online_item:nth-child(3) .online_item-text {
    max-width: 540px;
}

.online_item-teg {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    width: fit-content;
    padding: 12px 20px;
    background: #3500FF4D;
    border: 1px solid #ffffffba;
    border-radius: 56px;
    margin-top: 10px;
}

.online_item:nth-child(4) {
    justify-content: flex-end;
}

.online_item:nth-child(4) .online_item-img {
    top: -84px;
    right: -37px;
}

.online_item:nth-child(5) {
    z-index: 2;
}

.online_item:nth-child(5) .online_item-teg {
    background: #3791FF9C;
    margin-top: 16px;
}

.online_item:nth-child(5) .online_item-img {
    bottom: -72px;
    z-index: 2;
    right: -82px;
}

.online_item:nth-child(6) .online_item-img {
    bottom: -26px;
    right: -36px;
}

.online_item:nth-child(6) .online_item-text {
    max-width: 500px;
}

.online_item:nth-child(8) .online_item-text {
    max-width: 940px;
}

.online_item:nth-child(8) .online_item-img {
    bottom: -61px;
    right: -53px;
}

.lessons {
    padding: 40px 0 80px;
    border-radius: 70px 70px 0 0;
    background: #F9F9F9;
    margin-top: -80px;
    position: relative;
}

.lessons .title {
    color: #20488A;
    margin-bottom: 90px;
}

.lessons_items {
    width: 1174px;
    border-radius: 15px;
    margin: 0 auto;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: relative;
}

.lessons_items:not(:has(.lessons_item.active)) .lessons_item:nth-child(1) .lessons_item-wrapper {
    opacity: 1;
    visibility: visible;
}

.lessons_item {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

.lessons_item.active .lessons_item-wrapper {
    position: fixed;
    top: 55%;
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 1;
    visibility: visible;
}

.lessons_item-wrapper {
    position: absolute;
    border-radius: 15px;
    padding: 30px 50px;
    width: 1174px;
    transform: translateY(-14%);
    height: 767px;
    z-index: 1;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
}

.lessons_item-wrapper::before {
    position: absolute;
    content: "";
    background-image: url(../img/lessons_sreen.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    top: -126px;
    right: 50%;
    width: 1530px;
    height: 950px;
    transform: translateX(50%);
}

.lessons_item.done .lessons_item-wrapper {
    position: absolute !important;
    top: auto !important;
    bottom: 0 !important;
    opacity: 1;
    transform: translate(50%, -5%);
    visibility: visible;
    right: 50%;
}

.lessons_item-bg {
    border-radius: 15px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lessons_item-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lessons_item-title {
    font-weight: 700;
    font-size: 96px;
    color: #39383A;
}

.lessons_item:nth-child(1) .lessons_item-inner {
    left: -137px;
    top: 231px;
}

.lessons_item:nth-child(2) .lessons_item-inner {
    right: -137px;
    top: 304px;
}

.lessons_item:nth-child(3) .lessons_item-inner {
    left: -137px;
    top: 453px;
}

.lessons_item-inner {
    position: absolute;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border-radius: 20px;
    padding: 26px;
    width: 620px;
    z-index: 1;
    color: #fff;
}

.lessons_item-subtitle {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 26px;
}

.lessons_item-text {
    font-weight: 800;
    font-size: 24px;
}

.consult {
    margin: 80px 0 125px;
}

.consult_body {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px;
    padding: 84px 134px;
    width: calc(100% + 268px);
    margin-left: -134px;
    position: relative;
}

.consult_wrapper {
    background: #FFFFFF1A;
    border: 1px solid #ffffffba;
    padding: 30px 60px 54px;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(145.04945373535156px);
    color: #fff;
    position: relative;
}

.consult_body-img:nth-child(1) {
    position: absolute;
    content: "";
    width: 774px;
    height: 774px;
    bottom: -175px;
    pointer-events: none;
    right: -370px;
    z-index: 1;
}

.consult_body-img:nth-child(2) {
    position: absolute;
    content: "";
    width: 698px;
    height: 698px;
    bottom: -162px;
    pointer-events: none;
    left: -277px;
    z-index: 1;
}

.consult_title {
    font-weight: 700;
    font-size: 79px;
    text-align: center;
    margin-bottom: 33px;
}

.consult_text {
    font-weight: 600;
    font-size: 40px;
    text-align: center;
    margin-bottom: 48px;
}

.consult_btn {
    width: 572px;
    font-size: 40px;
    border: 2px solid #ffffffba;
    height: 100px;
    font-weight: 600;
    margin: 0 auto;
    border-radius: 22px;
    background: #5C99FC;
}

.steps {
    padding: 55px 0 100px;
    color: #fff;
    background-image: url(../img/steps.jpg);
    background-size: cover;
    border-radius: 70px;
    overflow: hidden;
}

.steps .title {
    margin-bottom: 50px;
}

.steps_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 40px;
}

.steps_item {
    padding: 32px 25px;
    border: 2px solid #ffffff2d;
    border-radius: 25px;
    z-index: 1;
    position: relative;
    margin-bottom: 40px;
}

.steps_item::before {
    position: absolute;
    content: "";
    border-radius: 25px;
    background: #FFFFFF08;
    backdrop-filter: blur(70px);
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.steps_item:last-child {
    margin-bottom: 0;
}

.steps_item-img {
    position: absolute;
    display: flex;
    z-index: -2;
}

.steps_item:nth-child(1) .steps_item-img {
    top: -120px;
    right: -153px;
}

.steps_item:nth-child(3) .steps_item-img {
    top: -250px;
    right: 350px;
}

.steps_item:nth-child(4) .steps_item-img {
    top: -44px;
    left: -154px;
}

.steps_item-title {
    font-weight: 700;
    font-size: 79px;
    text-shadow: 1px 1px 1px #00000040;
    margin-bottom: 50px;
}

.steps_item-text {
    font-weight: 600;
    font-size: 45px;
    max-width: 630px;
}

.steps_item-number {
    position: absolute;
    display: flex;
    bottom: 0px;
    right: 0px;
}

.guild {
    margin: 45px 0 66px;
}

.guild .title {
    margin-bottom: 52px;
    color: #20488A;
}

.guild_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 52px;
    color: #20488A;
}

.guild_slider {
    width: calc(100% + ((100vw - 1450px) / 2));
    position: relative;
}

.guild_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    font-size: 0;
    border: none;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    background-size: cover;
    padding: 0;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.guild_slider .slick-arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.guild_slider .slick-prev {
    background-image: url(../img/arrow_leftsvg.svg);
    left: -40px;
}

.guild_slider .slick-next {
    background-image: url(../img/arrow_right.svg);
    left: 1408px;
}

.guild_slider .slick-track {
    display: flex;
}

.guild_slide {
    border-radius: 25px;
    display: flex !important;
    margin-right: 42px;
    align-items: center;
    width: 1450px;
    height: inherit;
}

.guild_slide-info {
    padding: 50px;
    width: 730px;
}

.guild_slide-img {
    width: calc(100% - 730px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.guild_slide-img img {
    max-width: 100%;
    max-height: 100%;
}

.guild_slide-title {
    text-shadow: 0px 3.74px 4.99px #00000040;
    color: #fff;
    margin-bottom: 36px;
    font-weight: 700;
    font-size: 79px;
}

.guild_slide-text {
    color: #FFFFFF;
    text-shadow: 0px 3.74px 4.99px #00000040;
    margin-bottom: 36px;
    font-weight: 600;
    font-size: 38px;
}

.guild_slide-btn {
    background: #FFFFFF4D;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    text-shadow: 0px 3.74px 4.99px #00000040;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 27.49px;
    padding: 16px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.guild_info {
    position: relative;
}

.guild_info::before {
    position: absolute;
    content: "";
    background-image: url(../img/guild_info-bef.png);
    background-size: cover;
    right: -260px;
    top: -20px;
    width: 290px;
    height: 550px;
    pointer-events: none;
}

.guild_info::after {
    position: absolute;
    content: "";
    background-image: url(../img/guild_info-aft.png);
    background-size: cover;
    bottom: -361px;
    pointer-events: none;
    left: -250px;
    width: 371px;
    z-index: 1;
    height: 649px;
}

.knowledge {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px;
    padding: 45px 0;
    color: #fff;
}

.knowledge .title {
    margin-bottom: 80px;
    max-width: 1380px;
}

.knowledge_wrapper {
    display: flex;
    gap: 24px;
}

.knowledge_item {
    width: calc(50% - 12px);
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.knowledge_item-wrapper {
    background: #FFFFFF08;
    backdrop-filter: blur(35px);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 46px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.knowledge_item-title {
    font-weight: 700;
    font-size: 39px;
    margin-bottom: 14px;
}

.knowledge_item-text {
    font-weight: 600;
    font-size: 22px;
    padding-right: 200px;
}

.knowledge_item-number {
    position: absolute;
    font-weight: 900;
    font-size: 148px;
    line-height: 100%;
    bottom: -20px;
    color: linear-gradient(140.43deg, #FFFFFF 0%, rgba(255, 255, 255, 0.03) 100%);
    right: 0px;
}

.knowledge_item-btn {
    background: #5C99FC;
    border-radius: 18px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 29px;
    color: #fff;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-top: auto;
}

.consult_road .consult_body-img:nth-child(1) {
    right: -436px;
    bottom: -307px;
}

.consult_road .consult_body-img:nth-child(2) {
    bottom: -207px;
}

.team {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px 70px 0 0;
    color: #fff;
    padding: 45px 0 145px;
}

.team .title {
    margin-bottom: 40px;
}

.team_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 86px;
}

.team_slider {
    width: calc(100% + ((100vw - 1450px) / 2));
    visibility: visible;
}

.team_slider .slick-list {
    overflow: visible;
    visibility: visible;
}

.team_slider .slick-track {
    visibility: visible;
    display: flex;
}

.team_slide {
    width: 1450px;
    background: #FFFFFF08;
    margin-right: 40px;
    position: relative;
    padding: 30px;
    backdrop-filter: blur(70px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    height: inherit;
}

.team_slide-img {
    position: absolute;
    display: flex;
    left: -87px;
    top: 0;
}

.team_slide-info {
    width: 930px;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

.team_slide-title {
    font-weight: 700;
    font-size: 64px;
    text-shadow: 0px 3.74px 4.99px #00000040;
    margin-bottom: 24px;
}

.team_slide-text {
    font-weight: 500;
    font-size: 40px;
    text-shadow: 0px 3.74px 4.99px #00000040;
    margin-bottom: 30px;
    padding-right: 60px;
}

.team_slide-desc {
    margin-top: auto;
    font-weight: 400;
    font-style: Italic;
    font-size: 40px;
    text-shadow: 0px 3.74px 4.99px #00000040;

}

.team_slide-prof {
    background: #375794D4;
    box-shadow: -4px 5px 8.4px 0px #00000040;
    backdrop-filter: blur(8px);
    position: absolute;
    width: 360px;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    padding: 30px 18px;
    font-weight: 600;
    font-size: 32px;
    text-shadow: 0px 3.74px 4.99px #00000040;

}

.team_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    font-size: 0;
    border: none;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    background-size: cover;
    padding: 0;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.team_slider .slick-arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.team_slider .slick-prev {
    background-image: url(../img/arrow_left2.svg);
    left: -40px;
}

.team_slider .slick-next {
    background-image: url(../img/arrow_right2.svg);
    left: 1408px;
}

.resalts {
    padding: 45px 0;
    margin-top: -100px;
    background: #F9F9F9;
    border-radius: 70px 70px 0 0;
}

.resalts .title {
    color: #20488A;
    margin-bottom: 50px;
    font-size: 94px;
}

.resalts_slider {
    width: calc(100% + ((100vw - 1450px) / 2));
}

.resalts_slide {
    width: 1450px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    box-shadow: 2px 4px 4px 0px #00000040;
    border-radius: 20px;
    color: #fff;
    padding: 52px 60px;
    margin-right: 66px;
}

.resalts_slide-title {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 20px;
}

.resalts_slide-subtitle {
    font-weight: 800;
    font-size: 30px;
}

.resalts_slide-top {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 30px;
}

.resalts_slide-img {
    border: 3px solid #FFFFFF;
    box-shadow: 0px 3px 4px 0px #00000040;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resalts_slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resalts_slide-text {
    margin-bottom: 28px;
    font-weight: 700;
    font-style: Italic;
    font-size: 28px;
}

.resalts_slide-btn {
    display: flex;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    border-radius: 25px;
    background-color: #5C99FC;
    font-weight: 600;
    font-size: 32px;
    color: #fff;
    width: 571px;
    height: 86px;
    transition: all 0.3s;
}

.resalts_slide-btn:hover {
    background-color: #fff;
    color: #5C99FC;

}

.resalts_slide-options {
    margin-bottom: 26px;
}

.resalts_slide-option {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 26px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

.resalts_slide-option span::before {
    position: absolute;
    content: "";
    border-left: 3px dashed #FFFFFF;
    width: 3px;
    height: calc(100% - 26px);
    top: 55px;
    left: 24px;
}

.resalts_slide-option:last-child span::before {
    display: none;
}

.resalts_slide-option span {
    border: 3px solid #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    min-width: 55px;
    align-items: center;
}

.resalts_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    font-size: 0;
    border: none;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    background-size: cover;
    padding: 0;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.resalts_slider .slick-arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.resalts_slider .slick-prev {
    background-image: url(../img/arrow_left2.svg);
    left: -40px;
}

.resalts_slider .slick-next {
    background-image: url(../img/arrow_right2.svg);
    left: 1408px;
}

.resalts_btn {
    width: 555px;
    height: 99px;
    font-size: 40px;
    margin-top: 42px;
}

.reviews {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px;
    color: #fff;
    padding: 54px 0;
}

.reviews_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
}

.reviews_items {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.reviews_item {
    width: calc(33.333% - 46.666px);
    height: 624px;
    display: flex;
    box-shadow: 4px 4px 11.1px 0px #00000040;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.reviews_item::before {
    position: absolute;
    content: "";
    background: #5C99FC;
    border-radius: 25px;
    background-image: url(../img/play.svg);
    background-size: 34px;
    background-repeat: no-repeat;
    background-position: center;
    width: 84px;
    height: 84px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.reviews_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews_btn {
    background: #5C99FC;
    border-radius: 25px;
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 560px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100px;
    transition: all 0.3s;
}

.reviews_btn:hover {
    background-color: #fff;
    color: #5C99FC;

}


.faq {
    padding: 45px 0;
}

.faq .title {
    color: #20488A;
    margin-bottom: 40px;
}

.faq_item {
    border-bottom: 3px solid #20488A80;
}

.faq_item-title {
    padding: 40px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 48px;
    z-index: 1;
    color: #20488A;
    position: relative;
    padding-right: 60px;
}

.faq_item-title span {
    right: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.faq_item-title.active span {
    transform: translateY(-50%) rotate(180deg);

}

.faq_item-text {
    font-size: 22px;
    color: #20488A;
    display: none;
    padding-bottom: 30px;
    line-height: 130%;
}

.faq_item:last-child {
    border-bottom: none;
}

.partners {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px;
    padding: 45px 0;
    color: #fff;
}

.partners .title {
    margin-bottom: 30px;
}

.partners_items {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.partners_item {
    width: calc(33.333% - 46.666px);
    background: #FFFFFF08;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.partners_item-title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 25px;
}

.partners_item-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5C99FC;
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 60px;
    width: 100%;
    border-radius: 15px;
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    margin-top: auto;
    transition: all 0.3s;
}

.partners_item-btn:hover {
    background: #fff;
    color: #5C99FC;
}

.partners_item-icon {
    display: flex;
    width: 93px;
    height: 93px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.partners_item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners_item-text {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 24px;
}

.order {
    padding: 45px 0;
}

.order_wrapper {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 44px 30px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.order_info {
    width: 630px;
}

.order_title {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

.order_text {
    font-weight: 600;
    font-size: 24px;
}

.order_form {
    width: 712px;
}

.inp {
    height: 65px;
    border-radius: 20px;
    background: #FFFFFF;
    width: 100%;
    display: block;
    padding-left: 40px;
    margin-bottom: 14px;
    border: none;
    font-weight: 800;
    font-size: 20px;
}

.inp::placeholder {
    color: #20488A80;
}

.order_btn {
    background: #5C99FC;
    height: 65px;
    display: flex;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    width: 100%;
    font-weight: 600;
    border-radius: 70px;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s;
}

.order_btn:hover {
    background: #fff;
    color: #5C99FC;
}

.form_ok {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    display: block;
    padding-left: 70px;
    position: relative;
    margin-top: 12px;
    cursor: pointer;
}

.form_ok input {
    display: none;
}

.form_ok input:checked+span {
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.form_ok span {
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    top: 0;
    left: 40px;
    position: absolute;
}

.form_ok a {
    color: #fff;
}

.footer {
    background: #20488A;
    color: #fff;
    padding: 40px 0 50px;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.footer_left {
    width: 376px;
}

.footer_logo {
    display: flex;
    margin-bottom: 28px;
}

.footer_desc {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 28px;
    color: #FFFFFF80;
}

.footer_menu a {
    display: block;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 28px;
    color: #FFFFFF;
}

.footer_options {
    width: 420px;
}

.footer_option {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin-bottom: 28px;
}

.footer_option a {
    display: block;
    color: #fff;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_inner-desc {
    font-weight: 600;
    font-size: 20px;
}

.footer_inner-links {
    display: flex;
    gap: 4px;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    column-rule-color: #fff;
}

.footer_inner-link {
    color: #fff;
    display: block;
}

.footer_way {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF80;
    backdrop-filter: blur(42px);
    width: 376px;
    height: 59px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s;
}

.footer_way:hover {
    background: #fff;
    color: #20488A;
}

.menu_burger {
    display: none;
}

.header_inner .header_btn {
    display: none;
}

.transformation_item-popup {
    display: none;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    backdrop-filter: blur(62.599998474121094px);
    color: #fff;
    background: #5C99FC;
    width: 860px;
    padding: 30px;
    border-radius: 20px;
}

.transformation_item-popup .transformation_item-text {
    margin-bottom: 0;
}

.approach {
    margin-top: 117px;
    padding: 86px 0 151px;
    background-image: url(../img/approach.jpg);
    background-size: cover;
    background-position: center;
}

.approach_title {
    text-shadow: 1.25px 1.25px 1.25px #00000040;
    font-weight: 700;
    font-size: 96px;
    line-height: 90px;
    color: #fff;
    margin-bottom: 42px;
    max-width: 1100px;
}

.approach_text {
    font-weight: 600;
    text-shadow: 1.25px 1.25px 1.25px #00000040;
    font-size: 44.9px;
    color: #fff;
    margin-bottom: 66px;
    max-width: 970px;
}


.approach_btn {
    width: fit-content;
    width: 550px;
    height: 100px;
    border: none;
    font-size: 36px;
}

.pass {
    padding: 45px 0;
}

.pass .title {
    margin-bottom: 40px;
    color: #20488A;
}

.pass_item {
    margin-bottom: 36px;
    padding-top: 25px;
    position: relative;
    padding-left: 150px;
    color: #20488A;
}

.pass_item-icon {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
}

.pass_item-title {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

.pass_item-text {
    font-weight: 600;
    font-size: 32px;
}

.practice {
    padding: 45px 0 150px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px 70px 0 0;
    color: #fff;
}

.practice .title {
    margin-bottom: 36px;
}

.practice_items {
    display: flex;
    gap: 30px 45px;
    flex-wrap: wrap;
    width: 1264px;
    margin: 0 auto;
}

.practice_item {
    box-shadow: 0px 4px 7.5px 0px #00000040;
    background: #FFFFFF33;
    border-radius: 20px;
    width: calc(50% - 22.5px);
    padding: 40px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 28px;
}

.practice_item span {
    font-weight: 900;
}

.practice_wrapper {
    background: #FFFFFF33;
    border-radius: 20px;
    padding: 45px;
    margin-top: 30px;
    box-shadow: 0px 4px 7.5px 0px #00000040;
}

.practice_wrapper-text {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
}

.practice_wrapper-title {
    text-align: center;
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 25px;
}

.practice_wrapper-subtitle {
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}

.video_block {
    border-radius: 70px 70px 0 0;
    background: #F9F9F9;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    padding: 80px 0 180px;
}

.video_block-body {
    width: 1174px;
    height: 768px;
    border-radius: 24px;
    display: flex;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.video_block-body::before {
    position: absolute;
    content: "";
    background-image: url(../img/video_block.png);
    background-size: cover;
    top: -80px;
    right: 50%;
    transform: translateX(50%);
    width: 1536px;
    height: 922px;
    z-index: -1;
}

.video_block-content {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.video_block-content video,
.video_block-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learn {
    background-image: url(../img/learn.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 70px 70px 0 0;
    padding: 45px 0;
    color: #fff;
}

.learn+.resalts {
    margin-top: 0;
}

.learn_wrapper {
    background: #FFFFFF33;
    backdrop-filter: blur(145px);
    box-shadow: 0px 4px 7.5px 0px #0000001A;
    padding: 30px;
    margin-bottom: 52px;
    border-radius: 25px;
    position: relative;
}

.learn_title {
    font-weight: 700;
    font-size: 79px;
    margin-bottom: 186px;
    text-shadow: 1px 1px 1px #00000040;

}

.learn_text {
    font-weight: 600;
    font-size: 44.9px;
    max-width: 1045px;
}

.learn_wrapper-img {
    position: absolute;
    display: flex;
    right: -209px;
    bottom: -195px;
}

.learn_btn {
    background: #FF8A5F;
    box-shadow: 0px 4px 7.5px 0px #0000001A;
    width: 560px;
    border: 2px solid #ffffff73;
    height: 100px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 90px;
}

.learn .title {
    margin-bottom: 40px;
}

.learn_items {
    gap: 24px;
    display: flex;
    margin-bottom: 56px;
}

.learn_item {
    width: calc(50% - 12px);
    background: #FFFFFF33;
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0px 4px 7.5px 0px #0000001A;
    border: 2px solid #ffffff73;
}

.learn_item-title {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 36px;
}

.learn_item-text {
    font-weight: 600;
    font-size: 32px;
}

.learn_item-more {
    background: #967BFF;
    box-shadow: 0px 4px 7.5px 0px #0000001A;
    width: fit-content;
    border: 2px solid #ffffff73;
    height: 100px;
    border-radius: 25px;
    padding: 25px;
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecosystem {
    background: linear-gradient(119.85deg, #5E9BFF 0%, #20488A 139.62%);
    padding: 45px 0;
    color: #fff;
    border-radius: 70px 70px 0 0;
}

.ecosystem .title {
    margin-bottom: 40px;
}

.ecosystem_text {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 40px;
}

.ecosystem_wrapper {
    background: #FFFFFF1A;
    backdrop-filter: blur(145px);
    padding: 30px 25px;
    border-radius: 25px;
    border: 2px solid #ffffff73;
    margin-bottom: 40px;
    position: relative;
}

.ecosystem_wrapper-img {
    position: absolute;
    display: flex;
    bottom: -185px;
    right: -236px;
    pointer-events: none;
}

.ecosystem_wrapper-title {
    font-weight: 700;
    font-size: 79.82px;
    margin-bottom: 196px;
}

.ecosystem_wrapper-text {
    font-weight: 600;
    font-size: 44.9px;
}

.ecosystem_inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ecosystem_btn {
    background: #5C99FC;
    height: 100px;
    display: flex;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    width: fit-content;
    padding: 25px;
    border-radius: 25px;
    font-size: 40px;
    color: #fff;
    transition: all 0.3s;
}

.ecosystem_btn:hover {
    background: #fff;
    color: #5C99FC;
}

.ecosystem_more {
    font-weight: 500;
    font-size: 39.91px;
    color: #fff;
}



.footer.purple_way {
    background: #511C40;
}

.footer.green_way {
    background: #004A39;
    position: relative;
    box-shadow: 0px -9px 65.8px 0px #002C22;
}


.guilds {
    padding: 55px 0 45px;
    margin-top: 117px;
    color: #fff;
    background-image: url(../img/guilds.jpg);
    background-size: cover;
    background-position: center;
}

.guilds_title {
    font-weight: 700;
    font-size: 79px;
    text-shadow: 0px 3.74px 4.99px #00000040;
    margin-bottom: 20px;
}

.guilds_btn {
    background: #FFFFFF80;
    backdrop-filter: blur(144px);
    width: 430px;
    height: 100px;
    display: flex;
    justify-content: center;
    border-radius: 25px;
    margin-bottom: 425px;
    font-weight: 500;
    font-size: 39.91px;
    color: #fff;
    text-shadow: 0px 3.74px 4.99px #00000040;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.guilds_text {
    font-weight: 600;
    font-size: 45px;
    text-align: center;
    text-shadow: 0px 3.74px 4.99px #00000040;
    position: relative;
    z-index: 1;
}

.guilds_text::before {
    position: absolute;
    content: "";
    top: 50%;
    background: #102522;
    filter: blur(42px);
    right: 50%;
    height: 98%;
    width: 90%;
    transform: translate(50%, -50%);
    z-index: -1;
}

.guildsHow {
    background: #004A39;
    padding: 45px 0 200px;
    color: #fff;
    position: relative;
}

.guildsHow::before {
    position: absolute;
    content: "";
    background-image: url(../img/guildsHow.png);
    background-size: cover;
    width: 453px;
    height: 608px;
    top: 10px;
    right: 0;
}

.guildsHow .title {
    margin-bottom: 25px;
}

.guildsHow_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 25px;
}

.guildsHow_items {
    display: flex;
    gap: 34px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.guildsHow_item {
    width: calc(33.333% - 22.666px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 25px;
}

.guildsHow_item-title {
    font-weight: 600;
    font-size: 48px;
    text-shadow: 0px 3px 4px #00000040;
    margin-bottom: 18px;
}

.guildsHow_item-text {
    font-weight: 600;
    font-size: 27px;
    text-shadow: 0px 3px 4px #00000040;
}

.guildsHow_desc {
    font-weight: 600;
    font-style: Italic;
    font-size: 24px;
}

.guildsHow_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    align-items: center;
}

.guildsHow_wrapper-text {
    font-weight: 800;
    font-size: 48px;
    max-width: 850px;
}

.guildsHow_wrapper-img {
    display: flex;
}


.guildsLive {
    background: #004A39;
    color: #fff;
    padding: 45px 0 144px;
}

.guildsLive .title {
    margin-bottom: 40px;
}

.guildsLive_slider .slick-track {
    display: flex;
}

.guildsLive_slider .slick-list {
    overflow: visible;
}

.guildsLive_slide {
    width: 712px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-right: 24px;
    padding: 40px;
    height: inherit;
    position: relative;
    border-radius: 25px;
}

.guildsLive_slide-title {
    font-weight: 700;
    font-size: 79px;
    margin-bottom: 40px;
    text-shadow: 0px 3.74px 4.99px #00000040;
}

.guildsLive_slide-text {
    font-weight: 600;
    font-size: 40px;
}

.guildsLive_slide-text span {
    font-weight: 800;
}

.guildsLive_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    font-size: 0;
    border: none;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    background-size: cover;
    padding: 0;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.guildsLive_slider .slick-arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.guildsLive_slider .slick-prev {
    background-image: url(../img/arrow_leftsvg.svg);
    left: -40px;
}

.guildsLive_slider .slick-next {
    background-image: url(../img/arrow_right.svg);
    left: 1408px;
}

.guildsLive_slider {
    width: calc(100% + ((100vw - 1450px) / 2));
}

.guildsLive_slide-img {
    display: flex;
    z-index: 1;
    pointer-events: none;
    position: absolute;
}

.guildsLive_slide:nth-child(1) .guildsLive_slide-img {
    bottom: -220px;
    left: -260px;
}

.guildsLive_slide:nth-child(2) .guildsLive_slide-img {
    top: -248px;
    right: -138px;
}

.guildsLive_slide:nth-child(3) .guildsLive_slide-img {
    bottom: -100px;
    right: -52px;
}

.guildsLive_slide:nth-child(4) .guildsLive_slide-img {
    top: -28px;
    right: -45px;
}


.guildsLive_slide:nth-child(5) .guildsLive_slide-img {
    bottom: -216px;
    right: -201px;
}

.guildsLive_slide:nth-child(6) .guildsLive_slide-img {
    top: -280px;
    right: -220px;
}

.guildsRoad {
    background: #004A39;
    color: #fff;
    padding: 45px 0;
}

.guildsRoad .title {
    margin-bottom: 40px;
}

.guildsRoad_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 60px;
}

.guildsRoad_items {
    position: relative;
}

.guildsRoad_items::after {
    position: absolute;
    content: "";
    background-image: url(../img/guildsRoad_items.png);
    background-size: cover;
    width: 172px;
    top: -20px;
    left: -10px;
    height: 973px;
}

.guildsRoad_items::before {
    position: absolute;
    content: "";
    background-image: url(../img/guildsRoad_items-bef.png);
    background-size: cover;
    width: 580px;
    top: 25px;
    right: -300px;
    height: 791px;
}

.guildsRoad_item {
    margin-bottom: 60px;
    padding-left: 152px;
    max-width: 1200px;
    position: relative;
}

.guildsRoad_item-title {
    font-weight: 600;
    font-size: 40px;
    text-shadow: 0px 3px 4px #00000040;
    margin-bottom: 8px;
}

.guildsRoad_item-text {
    font-weight: 600;
    font-size: 24px;
    text-shadow: 0px 3px 4px #00000040;
}

.guildsRoad_text p {
    margin-bottom: 20px;
}

.guildsRoad_text p:last-child {
    margin-bottom: 0;
}

.guildsRoad_text ul {
    list-style: disc;
    padding-left: 36px;
    margin-bottom: 40px;
    font-weight: 400;
}


.guild.green_way {
    background: #004A39;
    color: #fff;
    margin: 0;
    padding: 45px 0;
}


.guild.green_way .title {
    color: #fff;
}

.guild.green_way .guild_text {
    color: #fff;
}

.block_banner {
    display: flex;
}

.block_banner img {
    width: 100%;
    max-height: 900px;
    height: auto;
    object-fit: cover;
}

.guildResalts {
    background: #004A39;
    color: #fff;
    padding: 45px 0;
}

.guildResalts .title {
    margin-bottom: 40px;
}

.guildResalts_items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.guildResalts_item {
    background: #FFFFFF33;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    width: calc(25% - 18px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px 20px;
    border-radius: 25px;
}

.guildResalts_item-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 25px;
}

.guildResalts_item-text {
    font-weight: 600;
    font-size: 24px;
}

.guildTotal {
    padding: 45px 0 162px;
    position: relative;
    background: #004A39;
    color: #fff;
}

.guildTotal .title {
    margin-bottom: 40px;
}

.guildTotal_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 208px;
}

.guildTotal_wrapper {
    background: #FFFFFF33;
    margin-bottom: 52px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 30px 24px;
    position: relative;
}

.guildTotal_wrapper::before {
    position: absolute;
    content: "";
    background-image: url(../img/guildTotal_wrapper.png);
    background-size: cover;
    width: 384px;
    height: 600px;
    top: -200px;
    left: -260px;
}

.guildTotal_wrapper-title {
    font-weight: 700;
    font-size: 79px;
    margin-bottom: 134px;
    text-shadow: 0px 3.74px 4.99px #00000040;
}

.guildTotal_wrapper-text {
    font-weight: 600;
    font-size: 45px;
    text-shadow: 0px 3.74px 4.99px #00000040;
    padding-right: 300px;
}

.guildTotal_img {
    position: absolute;
    display: flex;
    right: 0;
    z-index: 1;
    bottom: 0;
    pointer-events: none;
}

.guildTotal_wrapper-btn {
    background: #FFFFFF33;
    backdrop-filter: blur(144px);
    border-radius: 25px;
    display: flex;
    border: 2px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 39.91px;
    padding: 22px 25px;
    color: #fff;
    width: fit-content;
}


.default_page {
    margin: 200px 0 80px;
}

.information_wrapper {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 36px;
    padding: 92px 100px;
    color: #fff;
}

.information_title {
    font-weight: 700;
    font-size: 48px;
    padding: 24px 30px;
    background: #FFFFFF1A;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 15px;
    padding-right: 60px;
}

.information_item {
    margin-bottom: 15px;
}

.information_item-title {
    cursor: pointer;
    position: relative;
    font-weight: 700;
    font-size: 40px;
    padding: 20px 32px;
    background: #FFFFFF1A;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.information_item-title::before {
    position: absolute;
    content: "";
    background-image: url(../img/information_item.svg);
    background-size: cover;
    right: 30px;
    top: 50%;
    width: 49px;
    transition: all 0.3s;
    height: 27px;
    transform: translateY(-50%);
}

.information_item-title.active::before {
    transform: translateY(-50%) rotate(180deg);

}

.information_item-content {
    margin-top: 15px;
    background: #FFFFFF;
    display: none;
    border-radius: 20px;
    padding: 24px 30px;
    color: #20488A;
    font-weight: 700;
    font-size: 24px;
    line-height: 50px;
}

.information_item-content p {
    font-weight: 700;
}

.information_item-content p a {
    color: #20488A;
}

.profession {
    margin-top: 117px;
    background: #460E35;
    padding: 74px 0 94px;
    color: #fff;
}

.profession_info {
    width: 780px;
}

.profession_title {
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 40px;
    text-shadow: 0px 3.74px 7.2px #0000008F;
}

.profession_wrapper {
    position: relative;
    z-index: 1;
}

.profession_img {
    position: absolute;
    display: flex;
    top: -120px;
    right: -180px;
    z-index: -1;
}

.profession_text {
    font-weight: 600;
    font-size: 40px;
    text-shadow: 0px 3.74px 7.2px #0000008F;
    margin-bottom: 52px;
}

.profession_inner {
    display: flex;
    align-items: center;
    gap: 44px;
}

.profession_btn {
    background: #FFFFFF80;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 20px 22px;
    border-radius: 22px;
    font-weight: 500;
    font-size: 34px;
    color: #FFFFFF;
    text-shadow: 0px 3.2px 4.27px #00000040;

}

.profession_link {
    font-weight: 500;
    font-size: 29.93px;
    color: #FFFFFF;

}

.create {
    padding: 45px 0;
}

.create .title {
    color: #460E35;
    margin-bottom: 70px;
}

.create_items {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    margin-bottom: 70px;
}

.create_item {
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: calc(33.333% - 46.666px);
    padding: 24px;
    color: #fff;
    background: #460E35;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border-radius: 24px;
}

.create_item-title {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
    text-shadow: 0px 3px 4px #00000040;
}

.create_item-text {
    font-weight: 600;
    font-size: 24px;
    text-shadow: 0px 3px 4px #00000040;
}

.create_desc {
    background: #460E35;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border-radius: 20px;
    padding: 24px;
    color: #fff;
}

.create_desc-title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 40px;
    text-shadow: 0px 3px 4px #00000040;
}

.create_desc-text {
    font-weight: 600;
    font-size: 24px;
    text-shadow: 0px 3px 4px #00000040;
}

.faculty {
    padding: 45px 0;
    color: #460E35;
}

.faculty .title {
    margin-bottom: 32px;
}

.faculty_text {
    font-weight: 600;
    font-size: 40px;
    color: #460E35;
    margin-bottom: 32px;
}

.faculty_items {
    display: flex;
    margin-bottom: 54px;
    gap: 70px;
    flex-wrap: wrap;
}

.faculty_item {
    border: 1px solid #FFFBF9;
    background: #FFF4EE;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 46.666px);
    box-shadow: 0px 2px 4px 0px #874F3140;
}

.faculty_item-img {
    height: 411px;
    display: flex;
}

.faculty_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty_item-title {
    font-weight: 700;
    font-size: 29px;
    padding: 18px 24px;
    color: #460E35;
}

.faculty_item:last-child {
    width: 100%;
}

.faculty_item:last-child .faculty_item-title {
    font-size: 48px;
    padding: 38px 24px;
}

.teach {
    padding: 45px 0;
}

.teach .title {
    color: #460E35;
    margin-bottom: 32px;
}


.teach_text {
    font-weight: 600;
    font-size: 40px;
    color: #460E35;
    margin-bottom: 30px;
}

.teach_text span {
    font-weight: 800;
}


.mpoiResalt {
    padding: 45px 0;
}

.mpoiResalt .title {
    margin-bottom: 66px;
    color: #460E35;
}

.mpoiResalt_items .slick-list {
    padding: 8% 0 !important;
}

.mpoiResalt_item.slick-current {
    transform: scale(1.5);

}

.mpoiResalt_item {
    background: #460E35F0;
    border-radius: 12px;
    padding: 16px 22px;
    color: #fff;
    width: 344px;
    color: #FFFFFF;
    margin: 0 60px;
}

.mpoiResalt_item-title {
    font-weight: 700;
    font-size: 32px;
    text-shadow: 0px 1.81px 2.41px #00000040;
    margin-bottom: 14px;
}

.mpoiResalt_item-subtitle {
    font-weight: 700;
    font-size: 24px;
    text-shadow: 0px 1.81px 2.41px #00000040;
    margin-bottom: 8px;
}

.mpoiResalt_item-text {
    font-style: Italic;
    font-size: 11px;
    text-shadow: 0px 3.74px 4.99px #00000040;
}

.mpoiResalt_item-text span {
    font-weight: 600;
}

.mpoiOrder {
    padding: 163px 0 90px;
}

.mpoiOrder_wrapper {
    background: #511C40;
    border-radius: 25px;
    padding: 30px 48px;
    color: #fff;
    margin-bottom: 50px;
}

.mpoiOrder_title {
    font-weight: 700;
    font-size: 79px;
    margin-bottom: 24px;
    text-shadow: 0px 3.74px 4.99px #00000040;
}

.mpoiOrder_text {
    font-weight: 600;
    font-size: 44.9px;
    text-shadow: 0px 3.74px 4.99px #00000040;
    max-width: 1045px;
}

.mpoiOrder_inner {
    display: flex;
    align-items: center;
    gap: 42px;
}

.mpoiOrder_btn {
    background: #511C40;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 22px 24px;
    font-weight: 500;
    font-size: 39.91px;
    color: #FFFFFF;
}

.mpoiOrder_link {
    font-weight: 500;
    max-width: 800px;
    font-size: 40px;
    color: #511C40;
}

.courses_title {
    font-weight: 600;
    font-size: 70px;
    margin-bottom: 36px;
    color: #440D34;
}

.courses_search {
    margin-bottom: 44px;
    width: 672px;
}

.courses_search input {
    width: 100%;
    background: #FFF4EE;
    box-shadow: 2.11px 2.11px 4.22px 0px #00000033 inset;
    height: 61px;
    border-radius: 12px;
    border: none;
    padding-left: 14px;
    font-size: 20px;
}

.courses_items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.courses_item {
    width: calc(25% - 18px);
    border: 1px solid #FFD8C3;
    background: #FFF4EE;
    border-radius: 12px;
    padding: 20px;
}

.courses_item-icon {
    margin-bottom: 24px;
    width: 111px;
    height: 111px;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
}

.courses_item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.courses_item-title {
    font-weight: 600;
    font-size: 40px;
    color: #440D34;
    margin-bottom: 22px;
}

.courses_item-option {
    font-size: 20px;
    color: #440D34;
    margin-bottom: 22px;
}

.courses_item-more {
    font-weight: 600;
    font-size: 27px;
    color: #440D34;
    display: flex;
    align-items: center;
    gap: 14px;
}

.courses_filters {
    display: flex;
    margin-bottom: 74px;
    gap: 24px;
}

.courses_filter {
    width: 324px;
    z-index: 3;
    position: relative;
}

.courses_filter.active {
    z-index: 4;
}

.courses_filter-title {
    border-bottom: 1px solid #440D34;
    color: #440D34;
    cursor: pointer;
    font-weight: 600;
    font-size: 32px;
    padding-bottom: 14px;
    user-select: none;
    position: relative;
}

.courses_filter-title::before {
    position: absolute;
    content: "";
    background-image: url(../img/pluse.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
    right: 0;
    top: 10px;
    transition: all 0.3s;
}

.courses_filter.active .courses_filter-title::before {
    transform: rotate(45deg);
}

.courses_filter.active .courses_filter-drop {
    opacity: 1;
    visibility: visible;
}

.courses_filter-drop {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: #FFF4EE;
    width: 100%;
    border: 1px solid #FFD8C3;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 12px;
    padding: 20px 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 20px;
    color: #440D34;
}

.courses_filter-check {
    display: flex;
    cursor: pointer;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.courses_filter-check:last-child {
    margin-bottom: 0;
}

.courses_filter-check input {
    display: none;
}

.courses_filter-check span {
    display: block;
    width: 23px;
    border-radius: 2px;
    min-width: 23px;
    height: 23px;
    border: 1px solid #440D34;
}

.courses_filter-check input:checked+span {
    background: #440D34;
    background-image: url(../img/check2.svg);
    background-repeat: no-repeat;
    background-position: center;
}


.prodject {
    margin-top: 117px;
    padding: 100px 0 230px;
    background-image: url(../img/prodject.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
}


.prodject_title {
    font-weight: 700;
    font-size: 79px;
    margin-bottom: 360px;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.prodject_title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #498AAB;
    z-index: -1;
    filter: blur(60px)
}

.prodject_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.prodject_text {
    font-weight: 600;
    font-size: 45px;
    width: 882px;
    position: relative;
    z-index: 1;
}

.prodject_text-bef {
    padding: 9px 22px;
    font-weight: 600;
    font-size: 36px;
    background: #20488A;
    color: #fff;
    position: absolute;
    box-shadow: 0px 4px 7.8px 0px #00000040;

    box-shadow: 0px 4px 8.4px 0px #00000040;
    border-radius: 46px;
    box-shadow: 7px 4px 8.6px 0px #00000040;
    top: -64px;
    left: -124px;
    transform: rotate(-20deg);
}

.prodject_text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #498AAB;
    z-index: -1;
    filter: blur(80px)
}

.prodject_text span {
    font-weight: 800;
}

.prodject_btn {
    background: #FFFFFF33;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    padding: 20px 24px;
    backdrop-filter: blur(72px);
    font-weight: 500;
    font-size: 39.91px;
    color: #fff;
}

.prodjectPractic {
    color: #fff;
    border-radius: 70px 70px 0 0;
    margin-top: -100px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 45px 0 145px;
}

.prodjectPractic .title {
    margin-bottom: 67px;
}

.prodjectPractic_items {
    display: flex;
    gap: 70px;
    position: relative;
}

.prodjectPractic_items::before {
    position: absolute;
    content: "";
    background-image: url(../img/prodjectPractic_items.png);
    background-size: cover;
    top: -162px;
    right: -250px;
    width: 485px;
    height: 332px;
}

.prodjectPractic_item {
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: calc(33.333% - 46.666px);
    background: #FFFFFF33;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border-radius: 10px;
    padding: 24px;
}

.prodjectPractic_item-title {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 18px;
}

.prodjectPractic_item-text {
    font-weight: 600;
    font-size: 24px;
}

.prodjectPractic_item-text span {
    font-weight: 800;
}

.prodjectExamples {
    border-radius: 70px;
    padding: 45px 0;
    background-image: url(../img/prodjectExamples.jpg);
    background-size: cover;
    background-position: center;
    margin-top: -100px;
    color: #fff;
}



.prodjectExamples .title {
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px #00000040;

}

.prodjectExamples_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 40px;
}

.prodjectExamples_text span {
    font-weight: 800;
}

.prodjectExamples_items {
    display: flex;
    flex-wrap: wrap;
    gap: 45px 70px;
}

.prodjectExamples_item {
    background: #FFFFFF08;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(70px);
    width: calc(33.333% - 46.666px);
    position: relative;
}

.prodjectExamples_item-img {
    display: flex;
    position: absolute;
}

.prodjectExamples_item:nth-child(1) .prodjectExamples_item-img {
    bottom: -260px;
    left: -150px;
}

.prodjectExamples_item:nth-child(3) .prodjectExamples_item-img {
    top: -190px;
    z-index: -1;
    right: -282px;
}

.prodjectExamples_item:nth-child(6) .prodjectExamples_item-img {
    top: -136px;
    z-index: -1;
    right: -220px;
}

.prodjectExamples_item-title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 24px;
    text-shadow: 2px 2px 2px #00000040;
}

.prodjectExamples_item-text {
    font-weight: 600;
    font-size: 24px;
}

.prodjectExamples_item-text span {
    width: 800px;
}

.prodjectExamples_warpper {
    position: relative;
}

.prodjectExamples_warpper::before {
    position: absolute;
    content: "";
    background-image: url(../img/prodjectExamples_warpper.png);
    background-size: cover;
    top: -30px;
    right: -150px;
    width: 607px;
    height: 405px;
}


.prodjectInterface {
    display: flex;
    justify-content: center;
}

.prodjectInterface img {
    max-width: 100%;
    height: auto;
}

.prodjectRoad {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px 70px 0 0;
    padding: 45px 0 145px;
    color: #fff;
}

.prodjectRoad .title {
    margin-bottom: 40px;
}

.prodjectRoad_item {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 40px;
    padding-left: 68px;
    position: relative;
}

.prodjectRoad_item::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    top: 17px;
    left: 20px;
}

.prodjectRoad_item::after {
    position: absolute;
    content: "";
    height: calc(100% + 40px);
    width: 3px;
    background-color: #fff;
    left: 26px;
    top: 33px;
}

.prodjectRoad_item:last-child {
    margin-bottom: 0;
}


.prodjectRoad_item:last-child::after {
    display: none;
}

.prodjectSteps {
    background-color: #fff;
    border-radius: 70px;
    position: relative;
    z-index: 2;
    padding: 45px 0 45px;
    margin-top: -100px;
    color: #20488A;
}

.prodjectSteps .title {
    margin-bottom: 38px;
}

.prodjectSteps_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 18px;
}

.prodjectSteps_img {
    display: flex;
    justify-content: center;
    margin-left: -130px;
}

.prodjectSteps_items {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: -80px;
}

.prodjectSteps_item {
    font-weight: 600;
    font-size: 32px;
    width: calc(25% - 30px);
}

.prodjectSteps_item span {
    font-weight: 800;
    display: block;
}

.prodjectSteps_item:nth-child(1) {
    margin-top: 120px;
}

.prodjectSteps_item:nth-child(2) {
    margin-top: 80px;
}

.prodjectSteps_item:nth-child(3) {
    margin-top: 40px;
}

.prodject_advantages {
    background: #001321;
    padding: 145px 0;
}

.prodject_advantages .title {
    color: #fff;
    margin-bottom: 20px;
}


.prodject_ecosystem+.footer {
    box-shadow: 0px -9px 65.8px 0px #002F7C;
    position: relative;
    z-index: 1;
}

.prodject_ecosystem {
    padding: 160px 0;
    position: relative;
    margin-top: -100px;
    z-index: 2;
}

.prodject_ecosystem .ecosystem_wrapper-text {
    max-width: 1040px;
}

.prodject_ecosystem .ecosystem_wrapper-img {
    right: 0;
    z-index: 1;
    pointer-events: none;
    bottom: 0;
}

.press {
    margin-top: 117px;
    padding: 86px 0 450px;
    color: #20488A;
    background-image: url(../img/press.jpg);
    background-size: cover;
    background-position: center;
}

.press_title {
    font-weight: 700;
    font-size: 96px;
    margin-bottom: 42px;
}

.press_text {
    font-weight: 600;
    font-size: 45px;
    max-width: 970px;
}

.press_partners {
    padding: 45px 0 145px;
    color: #fff;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
}

.press_partners-item {
    margin-bottom: 90px;
}

.press_partners-wrapper {
    display: flex;
    background: #FFFFFF1A;
    gap: 32px;
    padding: 30px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 50px;
}

.press_partners-item:last-child {
    margin-bottom: 0;
}

.press_partners-icon {
    width: 171px;
    height: 171px;
    min-width: 171px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
}

.press_partners-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press_partners-options {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 6px;
}

.press_partners-option {
    font-weight: 600;
    font-size: 24px;
}

.press_partners-title {
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 24px;
}

.press_partners-text {
    font-weight: 600;
    font-size: 32px;
}

.press_partners-btn {
    background: #5C99FC;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    font-size: 39px;
    color: #fff;
    border-radius: 25px;
}

.press_blog {
    margin: -100px 0;
    color: #fff;
    padding: 45px 0;
    border-radius: 70px;
    background-image: url(../img/press_blog.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 3;
}

.press_items {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.press_item {
    width: calc(33.333% - 46.666px);
    background: #FFFFFF08;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(75px);
    display: flex;
    flex-direction: column;
}

.press_item-title {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 1px #00000040;
}

.press_item-text {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
}

.press_item-btn {
    background: #7D32FF;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    font-weight: 500;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #fff;
    margin-top: auto;
    padding: 12px;
}



.press_ecosystem {
    position: relative;
    border-radius: 0;
    padding-top: 270px;
}

.press_ecosystem por {
    margin-bottom: 72px;
}

.press_ecosystem .ecosystem_wrapper-text {
    font-size: 32px;
}

.press_ecosystem .ecosystem_btn {
    width: fit-content;
    padding: 25px;
}

.press_ecosystem .ecosystem_wrapper {
    position: relative;
}

.press_ecosystem .ecosystem_wrapper-img {
    top: -186px;
    right: -196px;
    width: 580px;
    bottom: auto;
}

.clubs_wrapper {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 36px;
    padding: 84px 100px;
    color: #fff;
}

.clubs_top {
    background: #FFFFFF1A;
    backdrop-filter: blur(35px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    margin-bottom: 50px;
    border-radius: 20px;
}

.clubs_title {
    font-weight: 700;
    font-size: 80px;
    margin-bottom: 72px;
}

.clubs_text {
    font-weight: 600;
    font-size: 40px;
}

.clubs_filters {
    flex-wrap: wrap;
    gap: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 58px;
}

.clubs_search {
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 295px;
    height: 46px;
    border-radius: 24px;
    position: relative;
}

.clubs_search::before {
    position: absolute;
    content: "";
    background-image: url(../img/search.svg);
    background-size: cover;
    width: 23px;
    height: 22px;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.clubs_search input {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding-left: 52px;
    color: #fff;
    font-size: 20px;
}

.clubs_search input::placeholder {
    color: #fff;
}

.clubs_tabs {
    display: flex;
    background: #FFFFFF08;
    border-radius: 24px;
    gap: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.clubs_tab.active {
    background: #5C99FC;
    box-shadow: 0px 4px 7.5px 0px #0000000D;
}

.clubs_tab {
    padding: 10px 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 24px;
    border-radius: 22px;
}

.clubs_items {
    gap: 45px 64px;
    display: none;
    flex-wrap: wrap;
}

.clubs_items.active {
    display: flex;
}

.clubs_item {
    overflow: hidden;
    width: calc(33.333% - 42.666px);
    background: #FFFFFF08;
    backdrop-filter: blur(35px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
}

.clubs_item-img {
    height: 191px;
    display: flex;
}

.clubs_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clubs_item-info {
    padding: 10px 30px 20px;
}

.clubs_item-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 4px;
}

.clubs_item-text {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.clubs_item-price {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.clubs_item-btn {
    background: #5C99FC;
    border-radius: 35px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    height: 40px;
}

.route {
    margin: 160px 0 45px;
}

.route_wrapper {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 25px;
    padding: 60px 92px 40px;
    color: #fff;
}

.route_title {
    font-weight: 700;
    font-size: 79px;
    text-align: center;
    margin-bottom: 18px;
}

.route_text {
    font-weight: 600;
    font-size: 45px;
    text-align: center;
    margin-bottom: 46px;
}

.route_btn {
    background: #5C99FC;
    backdrop-filter: blur(144px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    width: fit-content;
    font-weight: 600;
    font-size: 40px;
    color: #fff;
}


.adapting {
    margin-bottom: 140px;
    color: #20488A;
    position: relative;
}

.adapting_img {
    position: absolute;
    bottom: -440px;
    right: calc(50% - 1300px);
    display: flex;
}

.adapting .title {
    margin-bottom: 25px;
}

.adapting_text {
    font-weight: 600;
    font-size: 40px;
    max-width: 920px;
}

.adapting_text p {
    margin-bottom: 40px;
}




.routeSubjects {
    background: linear-gradient(122.02deg, #5E9BFF -40.81%, #20488A 100%);
    border-radius: 70px;
    padding: 100px 0 45px;
    color: #fff;
}

.routeSubjects .title {
    margin-bottom: 50px;
}

.routeSubjects_items {
    margin-bottom: 148px;
    gap: 24px;
    display: flex;
}

.routeSubjects_item {
    width: calc(25% - 18px);
    background: #FFFFFF1A;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 24px 20px;
    border-radius: 20px;
}

.routeSubjects_item-title {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

.routeSubjects_item-text {
    font-weight: 600;
    font-size: 24px;
}

.routeSubjects_wrapper {
    background: #FFFFFF1A;
    backdrop-filter: blur(145px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 24px;
    position: relative;
    border-radius: 25px;
}

.routeSubjects_wrapper-img {
    position: absolute;
    display: flex;
    top: -88px;
    right: -238px;
}

.routeSubjects_title {
    font-weight: 700;
    font-size: 79px;
    margin-bottom: 34px;
}

.routeSubjects_text {
    font-weight: 600;
    font-size: 45px;
}


.routeSubjects_text p:not(:last-child) {
    margin-bottom: 30px;
}

.criteria {
    padding-top: 45px;
    color: #20488A;
    padding-bottom: 45px;
}

.criteria .title {
    margin-bottom: 20px;
}

.criteria_text {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 40px;
}

.criteria_text p {
    font-weight: 600;
}

.criteria_text ol {
    margin: 0;
    font-weight: 600;
    padding-left: 56px;
}

.criteria_img {
    display: flex;
    justify-content: center;
}

.criteria .video_block-body {
    margin: 90px auto;
}


.route_ecosystem {
    position: relative;
    padding: 160px 0;
}

.route_ecosystem .ecosystem_wrapper-img {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.route_ecosystem por {
    margin-bottom: 36px;
}

.route_ecosystem .ecosystem_wrapper-text {
    max-width: 1045px;
}

.faculty_items .clubs_item-text,
.faculty_items .clubs_item-title {
    margin-bottom: 20px;
}

.clubs_popup {
    border-radius: 25px;
    background: none;
    color: #fff;
    padding: 80px;
    background: #ffffff46;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 1450px;
    position: relative;
}

.clubs_popup-top {
    display: flex;
    margin-bottom: 50px;
    gap: 45px;
}

.clubs_popup-img {
    width: 340px;
    height: 340px;
    min-width: 340px;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
}

.clubs_popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clubs_popup-info {
    padding-top: 14px;
}

.clubs_popup-title {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 52px;
    text-shadow: 0px 3.74px 4.99px #00000040;
}

.clubs_popup-subtitle {
    font-weight: 500;
    text-shadow: 0px 3.74px 4.99px #00000040;
    font-size: 36px;
}

.clubs_popup-text {
    font-weight: 500;
    font-size: 36px;
}


.clubs_items .resalts_slide {
    width: 100%;
    margin: 0;
}




.blog {
    padding: 140px 0 250px;
    margin-top: 117px;
    background-image: url(../img/blog.jpg);
    background-size: cover;
    background-position: center;
}

.blog_wrapper {
    background: #672F0033;
    backdrop-filter: blur(75px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 25px;
    color: #fff;
}

.blog_title {
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 150px;
}

.blog_text {
    font-weight: 600;
    font-size: 45px;
}




.blog_resalt {
    background: #FFFFFF;
    margin-top: -100px;
    border-radius: 50px 50px 0 0;
    padding: 50px 0 80px;
}

.blog_resalt .clubs_search {
    border: 2px solid rgba(32, 72, 138, 0.4);
}

.blog_resalt .clubs_search::before {
    background-image: url(../img/search2.svg);
}

.blog_resalt .clubs_search input::placeholder,
.blog_resalt .clubs_search input {
    color: #20488A;
}

.blog_resalt .clubs_tab {
    font-size: 24px;
    padding: 8px 20px;
}

.blog_resalt .clubs_tab.active {
    color: #fff;
}

.blog_resalt .clubs_tabs {
    border: 2px solid rgba(32, 72, 138, 0.4);
    gap: 20px;
}

.blog_item {
    width: calc(33.333% - 46.666px);
    border-radius: 20px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.blog_item-img {
    height: 542px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.blog_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_item-info {
    padding: 20px;
    margin-top: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog_item-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
}

.blog_item-text {
    margin-top: auto;
    font-weight: 600;
    font-size: 20px;
}

.primary_page {
    background-image: url(../img/primary_page.jpg);
    background-size: cover;
    background-position: center;
}

.primary_page .prodject_text::before,
.primary_page .prodject_title::before {
    background: #A3A2A2;
}

.primary_video {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 0 0 70px 70px;
    padding: 45px 0 170px;
    color: #fff;
}

.primary_video .title {
    margin-bottom: 90px;
}

.primary_video-body {
    width: 1106px;
    height: 767px;
    display: flex;
    z-index: 1;
    position: relative;
    margin: 0 auto;
}

.primary_video-body::before {
    position: absolute;
    content: "";
    background-image: url(../img/primary_video.png);
    width: 1580px;
    background-size: cover;
    background-position: center;
    height: 1053px;
    top: -122px;
    right: 50%;
    transform: translateX(49%);
    z-index: -1;
}

.primary_video-content {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.primary_video-content img,
.primary_video-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.save {
    padding: 45px 0;
    color: #20488A;
    background: #FFFFFF;
    border-radius: 0 0 70px 70px;
    position: relative;
    z-index: 2;
}

.save .title {
    margin-bottom: 35px;
}

.save .save_text {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 78px;
}

.save_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
}

.save_items {
    width: 712px;
}

.save_item {
    font-weight: 600;
    font-size: 40px;
    border: 3px solid #20488A;
    border-radius: 20px;
    text-align: center;
    padding: 25px;
    margin-bottom: 40px;
}

.save_item:last-child {
    margin-bottom: 0;
}

.save_desc {
    font-weight: 600;
    font-size: 40px;
}

.save_inner {
    width: 644px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    padding: 24px;
    color: #fff;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    box-shadow: 0px 3.74px 4.99px 0px #00000040;
}

.save_inner-title {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 30px;
}

.save_inner-text {
    font-weight: 600;
    font-size: 36px;
}

.primary_lesson {
    margin-top: -100px;
    padding: 145px 0 170px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    color: #fff;
}

.primary_lesson .title {
    margin-bottom: 45px;
}

.primary_lesson-items {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 114px;
    gap: 24px;
}

.primary_lesson-item {
    background: #FFFFFF1A;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: calc(50% - 12px);
    flex: auto;
    padding: 30px;
    position: relative;
    min-height: 431px;
}

.primary_lesson-title {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 10px;
}

.primary_lesson-text {
    font-weight: 800;
    font-size: 24px;
}

.primary_lesson-img {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
}

.primary_lesson-img img {
    width: 100%;
    height: auto;
}

.primary_lesson-item:nth-child(1) .primary_lesson-img {
    bottom: -8px;
    right: -8px;
}

.primary_lesson-item:nth-child(2) .primary_lesson-text {
    padding-right: 210px;
}

.primary_lesson-item:nth-child(2) .primary_lesson-img {
    bottom: -10px;
    right: -24px;
}

.primary_lesson-item:nth-child(3) .primary_lesson-img {
    bottom: -24px;
    right: -24px;
}

.primary_lesson-item:nth-child(3) {
    padding-right: 580px;
}

.primary_lesson-desc {
    font-weight: 500;
    font-style: Italic;
    font-size: 24px;
    margin: 26px 0;
}

.primary_project {
    background: #FFFFFF08;
    backdrop-filter: blur(145px);
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
}

.primary_project:last-child {
    margin-bottom: 0;
}

.primary_project-title {
    font-weight: 600;
    font-size: 64px;
    margin-bottom: 24px;
}

.primary_project-text {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 32px;
}

.primary_project-btn {
    width: 532px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 38px;
}

.primary_project-img {
    display: flex;
    border-radius: 20px;
    width: 775px;
    height: 472px;
    min-width: 775px;
    overflow: hidden;
}

.primary_project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.primary_project:nth-child(2) {
    padding-left: 480px;
}

.primary_project:nth-child(2) .primary_project-img {
    width: 569px;
    height: 493px;
    min-width: 1px;
    position: absolute;
    left: -74px;
    top: -13px;
}

.primary_project:nth-child(2) .primary_project-text {
    font-size: 40px;
}

.primary_lesson+.prodjectExamples {
    position: relative;
    z-index: 1;
}

.primary_lesson+.prodjectExamples .prodjectExamples_warpper::before {
    display: none;
}

.primary_become {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 145px 0;
    margin: -100px 0;
    z-index: -1;
    color: #fff;
}

.primary_become .title {
    margin-bottom: 40px;
}

.primary_become+.faq {
    position: relative;
    z-index: 1;
    background-color: #F9F9F9;
    border-radius: 70px 70px 0 0;
}

.primary_become-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.primary_become-item {
    width: calc(25% - 18px);
    background: #FFFFFF1A;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 25px 20px;
    border-radius: 20px;
}

.primary_become-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 24px;
}

.primary_become-text {
    font-weight: 600;
    font-size: 24px;
}

.primary_become+.faq+.resalts {
    margin-top: 0;
}

.primary_tarifs {
    padding: 45px 0;
}

.primary_tarifs-warpper {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 92px 100px;
    color: #fff;
    border-radius: 36px;
}

.primary_tarifs-title {
    font-weight: 700;
    font-size: 92px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 20px 32px;
    border-radius: 20px;
    margin-bottom: 26px;
    background: #FFFFFF1A;
    backdrop-filter: blur(35px);
}

.primary_tarifs-tegs {
    background: #FFFFFF08;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 10px 34px;
    justify-content: space-between;
    margin-bottom: 78px;
    display: flex;
}

.primary_tarifs-teg {
    font-weight: 500;
    font-size: 24px;
}

.primary_tarifs-item {
    font-weight: 700;
    font-size: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 20px 32px;
    border-radius: 20px;
    backdrop-filter: blur(35px);
    background: #FFFFFF1A;
    margin-bottom: 15px;
}

.primary_tarifs-item:last-child {
    margin-bottom: 0;
}

.primary_access {
    margin-bottom: 45px;
    color: #1C3F78;
}

.primary_access .title {
    margin-bottom: 20px;
}

.primary_access-text {
    font-weight: 600;
    font-size: 40px;
    color: #1C3F78;
}

.primary_ecosystem {
    position: relative;

}


.primary_ecosystem .ecosystem_wrapper-img {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.primary_ecosystem .ecosystem_wrapper-text {
    max-width: 1045px;
}

.vacancies {
    background-image: url(../img/vacancies.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 117px;
    padding: 60px 0 80px;
    color: #fff;
}

.vacancies_title {
    font-weight: 700;
    font-size: 82px;
    text-shadow: 1px 1px 1px #00000040;
    margin-bottom: 18px;
    max-width: 970px;
}

.vacancies_img {
    display: flex;
    position: absolute;
    bottom: -120px;
    right: -260px;
}

.vacancies_text {
    font-weight: 600;
    font-size: 44.9px;
    text-shadow: 1px 1px 1px #00000040;
    margin-bottom: 42px;
    max-width: 970px;
}

.vacancies_btn {
    padding: 25px;
    width: fit-content;
    font-size: 40px;
}

.vacancies_wrapper {
    position: relative;
}

.comfort {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    color: #fff;
    padding: 60px 0 160px;
}

.comfort .title {
    font-size: 82px;
    margin-bottom: 86px;
}

.comfort_items {
    display: flex;
    gap: 70px;
}

.comfort_item-icon {
    margin-bottom: 10px;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comfort_item-icon img {
    width: 100%;
    height: auto;
}

.comfort_item {
    width: calc(33.333% - 46.666px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: #FFFFFF33;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0px 4px 7.5px 0px #00000040;
}

.comfort_item-title {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
    word-break: break-all;
}

.comfort_item-text {
    font-weight: 600;
    font-size: 24px;
}


.directions {
    padding: 45px 0;
    background-image: url(../img/directions.jpg);
    border-radius: 70px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    margin: -100px 0;
    color: #fff;
}

.directions .title {
    margin-bottom: 40px;
}

.directions_text {
    font-weight: 600;
    font-size: 64px;
    margin-bottom: 40px;
}

.directions_wrapper {
    background: #FFFFFF33;
    box-shadow: 2px 4px 4px 0px #00000040;
    border-radius: 20px;
    padding: 30px 70px;
}

.directions_wrapper-title {
    font-weight: 800;
    font-size: 64px;
    margin-bottom: 14px;
    text-shadow: 1px 1px 1px #00000040;
}

.directions_wrapper-subtitle {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 22px;
}

.directions_wrapper-text {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 36px;
}

.directions_wrapper-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.directions_wrapper-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7D32FF;
    padding: 24px 30px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 32px;
    color: #fff;
}

.directions_wrapper-link {
    font-weight: 600;
    color: #fff;
    font-size: 32px;
}













.directions+.mpoiResalt {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    color: #fff;
    padding: 160px 0 60px;
}

.directions+.mpoiResalt .title {
    color: #fff;
    font-size: 82px;
    margin-bottom: 40px;
}


.directions+.mpoiResalt .mpoiResalt_item {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF;
}

.directions+.mpoiResalt .mpoiResalt_item-text {
    font-size: 16px;
    font-style: normal;
}

.vacanciesRoad {
    background: #F9F9F9;
    border-radius: 70px;
    padding: 55px 0;
    margin: -100px 0;
    color: #20488A;
    position: relative;
    z-index: 1;
}

.vacancies_ecosystem {
    position: relative;
    padding-top: 140px;
}

.vacancies_ecosystem .ecosystem_wrapper-img {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.vacancies_ecosystem por,
.vacancies_ecosystem .ecosystem_wrapper-text {
    max-width: 1045px;
}

.vacanciesRoad .title {
    margin-bottom: 62px;
}

.vacanciesRoad_item {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 30px;
}

.vacanciesRoad_item span {
    font-weight: 800;
}

.additional {
    padding: 46px 0 170px;
    margin-top: 117px;
    background-image: url(../img/additional.jpg);
    background-size: cover;
    background-position: center;
}

.additional_wrapper {
    background: #20488A80;
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 30px 40px;
    border: 2px solid #ffffff73;
    color: #fff;
    margin-bottom: 50px;
}

.additional_title {
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 40px;
}

.additional_text {
    font-weight: 600;
    font-size: 45px;
}

.additional_inner {
    display: flex;
    gap: 32px;
}

.additional_btn {
    background: #20488A80;
    border: 2px solid #ffffff73;
    backdrop-filter: blur(25px);
    padding: 22px 25px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 39.91px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.additional_btn:nth-child(2) {
    font-size: 30px;
}

.additional_comfort .title {
    margin-bottom: 24px;
}

.additional_comfort .comfort_item-title {
    word-break: normal;
}

.comfort_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 44px;
}

.comfort_inner {
    background: #FFFFFF1A;
    backdrop-filter: blur(25px);
    border-radius: 24px;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    margin-top: 70px;
    padding: 24px;
    border: 2px solid #ffffff73;
}

.comfort_inner-title {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

.comfort_inner-text {
    font-weight: 600;
    font-size: 24px;
}

.pass {
    background: #FFFFFF;
    border-radius: 70px 70px 0 0;
    padding: 45px 0 165px;
    margin-top: -100px;
}

.pass .title {
    margin-bottom: 90px;
}

.pass_video {
    width: 1363px;
    height: 769px;
    margin: 0 auto;
    position: relative;
    display: flex;
}

.pass_video-content {
    display: flex;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.pass_video video,
.pass_video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pass_video::before {
    position: absolute;
    content: "";
    background-image: url(../img/pass_video-bef.png);
    background-size: cover;
    width: 1935px;
    height: 894px;
    top: -72px;
    right: 50%;
    z-index: 2;
    pointer-events: none;
    transform: translateX(50%);
}

.additionalWays {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    border-radius: 70px;
    padding: 45px 0;
    color: #fff;
}

.additionalWays .title {
    margin-bottom: 40px;
}

.additionalWays_items {
    display: flex;
    gap: 70px;
    margin-bottom: 40px;
}

.additionalWays_item {
    border: 2px solid #ffffff73;
    width: calc(33.333% - 46.666px);
    background: #FFFFFF08;
    backdrop-filter: blur(35px);
    border-radius: 25px;
}

.additionalWays_item-title {
    background: #5C99FC;
    border-radius: 20px;
    font-weight: 600;
    margin: -1px;
    font-size: 48px;
    text-align: center;
    padding: 20px 10px;
}

.additionalWays_item-text {
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    padding: 20px;
}

.additionalWays_btn {
    padding: 25px;
    border: 2px solid #ffffff73;
    width: fit-content;
    font-size: 40px;
}


.safety {
    padding: 78px 0 45px;
    margin-top: 117px;
    background-image: url(../img/safety.jpg);
    background-size: cover;
    color: #fff;
    background-position: center;
}

.safety_wrapper {
    background: #672F0033;
    backdrop-filter: blur(35px);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 424px;
    width: 990px;
}

.safety_title {
    font-weight: 700;
    font-size: 79px;
    margin-bottom: 20px;
}

.safety_text {
    font-weight: 600;
    font-size: 44px;
}

.safety_btn {
    background: #672F0033;
    backdrop-filter: blur(35px);
    padding: 25px;
    font-weight: 500;
    font-size: 38px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: 2px solid #ffffff73;
    color: #fff;
}

.safety_sistem {
    padding: 45px 0 145px;
    color: #fff;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
}

.safety_sistem .title {
    margin-bottom: 20px;
}

.safety_sistem-text {
    margin-bottom: 48px;
    font-weight: 600;
    font-size: 40px;
}

.safety_sistem-text span {
    font-weight: 800;
}

.safety_sistem-img {
    width: 100%;
    height: 870px;
    display: flex;
    box-shadow: 0px 4.09px 7.67px 0px #00000017;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.safety_sistem-wrapper {
    position: relative;
}

.safety_sistem-wrapper::before {
    z-index: 1;
    pointer-events: none;
    position: absolute;
    content: "";
    background-image: url(../img/safety_sistem.png);
    background-size: cover;
    right: -236px;
    bottom: -45px;
    width: 512px;
    height: 662px;
}

.safety_sistem-img img,
.safety_sistem-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entertainment {
    padding: 45px 0 45px;
    background-color: #F9F9F9;
    margin-top: -100px;
    border-radius: 70px 70px 0 0;
    color: #20488A;
}

.entertainment .title {
    margin-bottom: 20px;
}

.entertainment_img {
    display: flex;
}

.entertainment_text {
    font-weight: 600;
    font-size: 40px;
}

.entertainment_text span {
    font-weight: 800;
}

.entertainment_img img {
    width: 100%;
    height: auto;
}

.environment {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 45px 0;
    border-radius: 70px;
    color: #fff;
}

.environment .title {
    margin-bottom: 42px;
}

.environment_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 42px;
}

.environment_text span {
    font-weight: 800;
}

.environment_item {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 42px;
    padding-left: 108px;
    position: relative;
}

.environment_item::before {
    position: absolute;
    content: "";
    background-image: url(../img/environment_item.svg);
    background-size: cover;
    width: 93px;
    height: 88px;
    left: 0;
    top: 0;
}

.environment+.pass {
    margin-top: 0;
}

.pass:has(.pass_text) .title {
    margin-bottom: 20px;
}

.pass_text {
    font-weight: 600;
    font-size: 40px;
    color: #20488A;
    margin-bottom: 65px;
}

.pass_text span {
    font-weight: 900;
}

.simulators {
    padding: 180px 0 220px;
    background-image: url(../img/simulators.jpg);
    background-size: cover;
    background-position: center;
}

.simulators_info {
    width: 790px;
    margin-left: auto;
    color: #20488A;
}

.simulators_title {
    font-weight: 700;
    font-size: 79px;
    margin-bottom: 36px;
}

.simulators_text {
    font-weight: 600;
    font-size: 44.9px;
}

.simulators_comfort .title {
    margin-bottom: 40px;
}


.simulators_comfort .comfort_items {
    margin-bottom: 90px;
}

.certificate {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 145px 0 45px;
    margin-top: -100px;
    color: #fff;
}

.certificate .title {
    margin-bottom: 24px;
}

.certificate_text {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 40px;
}

.certificate_items {
    margin-bottom: 90px;
}

.certificate por:last-child {
    margin-bottom: 0;
}

.certificate_item {
    backdrop-filter: blur(35px);
    border: 2px solid #ffffff73;
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 40px;
    min-height: 540px;
}

.certificate_item-title {
    font-weight: 600;
    font-size: 64px;
    margin-bottom: 24px;
}

.certificate_item-text {
    font-weight: 500;
    font-size: 32px;
}


.certificate_item:nth-child(1) .certificate_item-text {
    padding-right: 560px;
}

.certificate_item-img {
    display: flex;
}

.certificate_item:nth-child(1) .certificate_item-img {
    bottom: -30px;
    position: absolute;
    right: -60px;
}

.certificate_item-wrapper {
    display: flex;
}

.certificate_item:nth-child(2) .certificate_item-img {
    margin-right: 108px;
    width: 422px;
    height: 596px;
    min-width: 422px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.certificate_item:nth-child(2) .certificate_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.preparation {
    padding: 88px 0 45px;
    margin-top: 117px;
    background-image: url(../img/preparation.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.preparation+.lessons {
    margin-top: 0;
}

.preparation_wrapper {
    background: #672F0033;
    backdrop-filter: blur(35px);
    border: 2px solid #ffffff73;
    padding: 30px;
    width: 1015px;
    border-radius: 25px;
    margin-bottom: 45px;
}

.preparation_title {
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 24px;
}

.preparation_tegs {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.preparation_teg {
    font-weight: 600;
    font-size: 22.59px;
    background: #FFFFFF80;
    backdrop-filter: blur(35px);
    border: 2px solid #ffffff73;
    padding: 7px 18px;
    border-radius: 54px;
}

.preparation_text {
    font-weight: 600;
    font-size: 40px;
}

.preparation_btn {
    font-weight: 500;
    font-size: 39.91px;
    background: #672F0033;
    backdrop-filter: blur(35px);
    border: 2px solid #ffffff73;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #FFFFFF;
    border-radius: 30px;
}

.lessons_item-link {
    display: none;
}

.lessons_item-more {
    font-weight: 800;
    font-size: 40px;
    color: #20488A;
    position: absolute;
    padding: 26px;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 7.5px 0px #00000040;
}

.lessons_item:nth-child(2) .lessons_item-more {
    top: 282px;
    right: -137px;
}

.lessons_item:nth-child(3) .lessons_item-more {
    top: 458px;
    left: -137px;
}

.lessons_item:nth-child(4) .lessons_item-more {
    top: 605px;
    right: -137px;
}

.concentration {
    padding: 45px 0;
    color: #20488A;
}

.concentration .title {
    margin-bottom: 22px;
}

.concentration_text {
    font-weight: 600;
    margin-bottom: 42px;
    font-size: 40px;
}

.concentration_item {
    font-weight: 600;
    font-size: 40px;
    padding-left: 155px;
    margin-bottom: 30px;
    position: relative;
}

.concentration_item img {
    position: absolute;
    left: 0;
    top: 0;
}

.concentration_item span {
    font-weight: 800;
}

.comfort_inner-title:last-child {
    margin-bottom: 0;
}

.preparation_comfort .title {
    margin-bottom: 27px;
}

.preparation_comfort .comfort_items {
    gap: 24px;
}

.preparation_comfort .comfort_item {
    width: calc(25% - 18px);
}

.preparation_comfort .comfort_item-title {
    font-size: 28px;
    margin-bottom: 0;
}

.preparation_comfort .comfort_inner {
    margin-top: 24px;
}

.comfort_bot {
    display: flex;
    margin-top: 58px;
    align-items: flex-start;
    justify-content: space-between;
}

.comfort_bot-img {
    display: flex;
}

.comfort_bot-title {
    width: 804px;
    font-weight: 600;
    font-size: 64px;
}


.analytics {
    background-color: #F9F9F9;
    border-radius: 70px 70px 0 0;
    margin-top: -100px;
    position: relative;
    padding: 45px 0;
    z-index: 1;
    color: #20488A;
}

.analytics::before {
    position: absolute;
    content: "";
    background-image: url(../img/analytics.svg);
    background-size: cover;
    right: 0;
    top: -40px;
    z-index: -1;
    width: 513px;
    height: 581px;
}

.analytics .title {
    margin-bottom: 30px;
}

.analytics_text {
    font-weight: 600;
    font-size: 40px;
}

.analytics_text p {
    font-weight: 600;
    margin-bottom: 20px;
}

.analytics_text ul {
    list-style: disc;
    padding-left: 26px;
    margin-bottom: 30px;
}

.analytics_text p:last-child {
    margin-bottom: 0;
}

.analytics_img {
    margin: 45px 0;
    display: flex;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.analytics_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.first {
    background: linear-gradient(123.12deg, #5E9BFF 0%, #20488A 141.37%);
    padding: 45px 0 94px;
    color: #fff;
    border-radius: 70px 70px 0 0;
}

.first .title {
    margin-bottom: 30px;
}

.first_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 32px;
}

.first_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.first_img {
    display: flex;
}

.first_info {
    width: 872px;
    font-weight: 600;
    font-size: 40px;
}

.first_info ul {
    list-style: disc;
    padding-left: 30px;
}

.first_inner {
    max-width: 1210px;
    margin-left: auto;
    margin-top: 100px;
    position: relative;
}

.first {
    position: relative;
    z-index: 1;
    padding-bottom: 145px;
}

.first::before {
    position: absolute;
    content: "";
    background-image: url(../img/first_inner.png);
    background-size: cover;
    width: 411px;
    height: 683px;
    left: 0;
    bottom: 170px;
    z-index: -1;
}

.first::after {
    position: absolute;
    content: "";
    background-image: url(../img/first_inner2.png);
    background-size: cover;
    width: 307px;
    height: 1062px;
    right: 0;
    z-index: -1;
    bottom: 170px;
}

.first_inner-text {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 100px;
}

.first_inner-text:last-child {
    margin-bottom: 0;
}


.price {
    background-image: url(../img/price.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 70px;
    padding: 45px 0;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.price .title {
    margin-bottom: 40px;
}

.price_value {
    font-weight: 600;
    font-size: 64px;
    margin-bottom: 40px;
    text-decoration: line-through;
}

.price_value.current {
    background: #FFFFFF33;
    border-radius: 26px;
    padding: 40px;
    text-decoration: none;
    border: 2px solid #ffffff73;
}

.price_btn {
    font-weight: 500;
    font-size: 40px;
    background: #FFFFFF33;
    backdrop-filter: blur(35px);
    padding: 24px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ffffff73;
    border-radius: 24px;
    color: #fff;
}


.studentResults {
    padding: 45px 0;
    color: #20488A;
    position: relative;
    z-index: 2;
    border-radius: 0 0 70px 70px;
    background-color: #F9F9F9;
}

.studentResults .title {
    margin-bottom: 34px;
}

.studentResults_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 40px;
}

.studentResults_items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 112px;
}

.studentResults_item {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    width: calc(33.333% - 74.666px);
    height: 544px;
}

.studentResults_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preparationResalt {
    background: linear-gradient(120.96deg, #5E9BFF 0%, #20488A 139.52%);
    padding: 145px 0 45px;
    color: #fff;
    margin-top: -100px;
}


.preparationResalt .mpoiResalt_item {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF;
}

.preparationResalt .mpoiResalt_item-text {
    font-size: 16px;
    font-style: normal;
}

.preparationResalt_bot {
    position: relative;
}

.preparationResalt_bot .ecosystem_wrapper-img {
    bottom: -45px;
    right: 0;
    z-index: 1;
}

.preparationResalt_bot .ecosystem_wrapper-title {
    padding-right: 360px;
    margin-bottom: 36px;
}

.preparationResalt_bot .ecosystem_wrapper-text {
    padding-right: 360px;
    font-size: 36px;
}


.english {
    margin-top: 117px;
    background-image: url(../img/english.jpg);
    background-size: cover;
    background-position: center;
    padding: 60px 0 78px;
    color: #fff;
}

.english_title {
    font-weight: 700;
    font-size: 64px;
    text-align: center;
    margin-bottom: 30px;
}

.english_text {
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    max-width: 782px;
    margin: 0 auto 30px;
}


.english_info {
    max-width: 800px;
    margin: 0 auto;
}

.english_desc {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    max-width: 692px;
    margin: 0 auto 106px;
}

.english_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-weight: 500;
    font-size: 38px;
    background: #FFFFFF80;
    padding: 24px 25px;
    width: fit-content;
    border-radius: 25px;
    font-weight: 500;
    font-size: 40px;
    border: 2px solid #ffffff73;
    color: #fff;
}

.english+.lessons {
    margin-top: 0;
}

.english_lessons {
    position: relative;
    z-index: 1;
    border-radius: 0 0 70px 70px;
}

.english_lessons .lessons_item-img {
    position: absolute;
    z-index: -2;
}

.english_lessons .lessons_item:nth-child(1) .lessons_item-img {
    position: absolute;
    top: -200px;
    right: -304px;
}

.english_lessons .lessons_item:nth-child(2) .lessons_item-img {
    position: absolute;
    top: -40px;
    left: -333px;
}

.english_lessons .lessons_item-inner {
    box-shadow: 0px 4px 7.5px 0px #00000040;
    background: #FFFFFF;
    color: #20488A;
}

.talking {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 145px 0 45px;
    margin-top: -100px;
    color: #fff;
}

.talking .title {
    margin-bottom: 38px;
}

.talking_items {
    display: flex;
    flex-wrap: wrap;
    gap: 38px 24px;
}

.talking_item {
    border: 2px solid #ffffff73;
    width: calc(50% - 12px);
    background: #ECCEFE33;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0px 6.53px 12.25px 0px #00000040;
}

.talking_item:nth-child(2),
.talking_item:nth-child(3) {
    background: #FFFFFF1A;
}

.talking_item-title {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 32px;
}

.talking_item-text {
    font-weight: 600;
    font-size: 29px;
}

.talking {
    position: relative;
}

.talking::before {
    position: absolute;
    content: "";
    background-image: url(../img/talking.png);
    background-size: cover;
    width: 407px;
    height: 736px;
    right: 0;
    top: 193px;
}

.practices_wrapper {
    margin-top: 94px;
    position: relative;
}

.practices_wrapper::before {
    position: absolute;
    content: "";
    background-image: url(../img/practices_wrapper.svg);
    background-size: cover;
    width: 524px;
    top: -54px;
    right: -158px;
    height: 456px;
}

.practices_wrapper .title {
    padding-right: 60px;
}

.practices_text {
    font-weight: 600;
    font-size: 40px;
}

.practices_text ul {
    list-style: disc;
    padding-left: 50px;
}

.practices_text p {
    font-weight: 600;
    margin-bottom: 14px;
}

.language {
    padding: 45px 0;
    color: #20488A;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    z-index: 2;
    position: relative;
}

.language_img {
    position: absolute;
    display: table;
    top: -40px;
    z-index: 1;
    right: 0;
}

.language::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #F9F9F9;
    border-radius: 70px;
}

.language .title {
    margin-bottom: 62px;
}

.language_text {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 40px;
}

.language_text p {
    margin-bottom: 30px;
    font-weight: 600;
}

.language_text p:last-child {
    margin-bottom: 0;
}

.language_inner {
    background: #20488A;
    border-radius: 24px;
    padding: 40px;
    font-weight: 600;
    font-size: 40px;
    color: #fff;
}

.progress {
    margin-top: -100px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 145px 0 45px;
    color: #fff;
    position: relative;
}

.progress::before {
    position: absolute;
    content: "";
    background-image: url(../img/progress.png);
    background-size: cover;
    background-position: center;
    right: 0;
    top: 80px;
    width: 517px;
    height: 493px;
    z-index: 1;
}

.progress .title {
    margin-bottom: 62px;
}

.progress_text {
    font-weight: 600;
    font-size: 40px;
}

.progress_text p {
    margin-bottom: 40px;
    font-weight: 600;
}

.progress_text p:last-child {
    margin-bottom: 0;
}


.chose {
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    padding: 45px 0 45px;
    color: #fff;
    position: relative;
}

.chose .title {
    margin-bottom: 42px;
}

.chose_tabs {
    gap: 40px;
    margin-bottom: 60px;
    display: flex;
}

.chose_tab {
    background: #5C99FC;
    border-radius: 25px;
    border: 2px solid #ffffff73;
    padding: 24px;
    cursor: pointer;
    font-weight: 500;
    font-size: 24px;
}

.chose_content {
    background: #9532D008;
    border: 2px solid #ffffff73;
    padding: 40px 66px;
    border-radius: 25px;
    margin-bottom: 90px;
    display: none;
}

.chose_content.active {
    display: block;
}

.chose_content-title {
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 34px;
}

.chose_content p {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 32px;
}

.chose_content ul {
    font-weight: 500;
    font-size: 32px;
    list-style: disc;
    padding-left: 46px;
}

.chose_content ul li {
    margin-bottom: 20px;
}

.chose_content-btn {
    border: 2px solid #ffffff73;
    width: 100%;
    height: 71px;
    font-size: 32px;
    padding: 16px;
    margin-top: 40px;
}


.hight_page {
    background-image: url(../img/hight_page.jpg);
}

.hight_page .prodject_text::before,
.hight_page .prodject_title::before {
    background: #ADADAD;

}

.hight_page .prodject_text-bef {
    background: #404C5C;
}



.hight_page .prodject_btn {
    background: #BDC1C980;
}

.hight_offer {
    padding: 45px 0;
    color: #20488A;
}

.hight_offer-text {
    font-weight: 600;
    margin: 40px 0;
    font-size: 40px;
}

.attend {
    padding: 45px 0;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    color: #fff;
}

.attend .title {
    margin-bottom: 44px;
}

.attend_items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}

.attend_items::before {
    position: absolute;
    content: "";
    background-image: url(../img/attend_items.png);
    background-size: cover;
    width: 424px;
    height: 424px;
    top: -186px;
    right: -147px;
}

.attend_item {
    width: calc(50% - 12px);
    background: #FFFFFF1A;
    border-radius: 20px;
    box-shadow: 0px 4px 7.5px 0px #00000040;
    border: 2px solid #ffffff73;
    padding: 30px;
}

.attend_item-title {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 10px;
}

.attend_item-text {
    font-weight: 600;
    font-size: 24px;
}

.attend_item-text ul {
    list-style: disc;
    padding-left: 26px;
}

.attend_item:nth-child(2) {
    padding-right: 165px;
}

.attend_item:last-child {
    padding-right: 620px;
    width: 100%;
}

.attend_item-video {
    width: 622px;
    height: 349px;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    position: absolute;
    bottom: 56px;
    right: -24px;
}

.attend_item-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intelligence {
    background: #F9F9F9;
    border-radius: 70px;
    margin-top: -100px;
    padding: 45px 0;
    color: #20488A;
    z-index: 2;
    position: relative;
}

.intelligence .title {
    margin-bottom: 20px;
}

.intelligence_text {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 72px;
}

.comfort_items:last-child {
    margin-bottom: 0;
}

.intelligence_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 90px;
}

.intelligence_item:nth-child(2n) {
    flex-direction: row-reverse;
}

.intelligence_item-info {
    width: 720px;
}

.intelligence_item-title {
    font-weight: 600;
    font-size: 64px;
    margin-bottom: 40px;
}

.intelligence_item-text {
    font-weight: 600;
    font-size: 48px;
}

.intelligence_item-video {
    width: 663px;
    height: 433px;
    display: flex;
    z-index: 1;
    position: relative;
}

.intelligence_item-video::before {
    position: absolute;
    content: "";
    background-image: url(../img/intelligence_item.png);
    background-size: cover;
    top: -23px;
    right: -23px;
    bottom: -37px;
    z-index: -1;
    left: -25px;
}

.intelligence_item-video video,
.intelligence_item-video img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}


.inside {
    padding: 145px 0 45px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    color: #fff;
    margin-top: -100px;
    position: relative;
}

.inside_img {
    display: flex;
    position: absolute;
}

.inside_img:nth-child(1) {
    top: 394px;
    right: 0;
}

.inside_img:nth-child(2) {
    bottom: 170px;
    left: 0;
}

.inside_img:nth-child(3) {
    bottom: 94px;
    right: 0;
}

.inside .title {
    margin-bottom: 24px;
}

.inside_text {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 48px;
}


.inside_tabs {
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    display: flex;
}

.inside_tab {
    background: #5C99FC;
    border-radius: 25px;
    border: 2px solid #ffffff73;
    padding: 24px;
    cursor: pointer;
    line-height: 1;
    font-weight: 500;
    font-size: 24px;
}

.inside_title {
    font-weight: 600;
    font-size: 64px;
    margin-bottom: 40px;
}

.inside_items {
    display: flex;
    gap: 40px 70px;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-evenly;
}

.inside_item {
    font-weight: 600;
    font-size: 32px;
    width: calc(33.333% - 46.666px);
}

.inside_item ul {
    list-style: disc;
    padding-left: 30px;
}

.inside_item strong {
    display: block;
}

.inside_items-line {
    width: 100%;
    display: flex;
}

.inside_content {
    display: none;
}

.inside_content.active {
    display: block;
}


.inside_content:last-child .inside_item {
    width: calc(50% - 46.666px);
}

.hightResults .studentResults_items {
    gap: 40px 70px;
}

.hightResults .studentResults_item {
    width: calc(33.333% - 46.666px);
    height: 436px;
}

.hight_talking::before {
    display: none;
}

.hight_talking .talking_item {
    display: flex;

    flex-direction: column;
}

.hight_talking .talking_item-text {
    margin-bottom: 24px;
}

.talking_item-btn {
    display: flex;
    background: #5C99FC;
    border-radius: 55px;
    justify-content: center;
    align-items: center;
    width: 571px;
    height: 85px;
    max-width: 100%;
    margin: auto auto 0;
    font-weight: 600;
    font-size: 32px;
    color: #fff;
}

.hight_comfort .title {
    margin-bottom: 40px;
}

.hight_comfort .comfort_items {
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 200px;
}

.hight_comfort .comfort_item {
    width: calc(25% - 18px);
}

.hight_comfort .comfort_item-title {
    word-break: normal;
    font-size: 32px;
}

.hight_comfort .comfort_item-text {
    font-size: 24px;
}

.popup_order {
    width: 820px;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    color: #fff;
    border-radius: 50px;
}

.popup_order .order_text {
    margin-bottom: 30px;
}


.prodjectInterface .video_block-body {
    margin: 90px auto;
}

.popup_order .fancybox-close-small {
    padding: 0px;
    top: 20px;
    right: 20px;
}


.resalts_slide-popup .fancybox-close-small {
    padding: 0px;
    top: 20px;
    right: 20px;
}

.resalts_slide-popup {
    width: 1100px;
    display: none;
    background: linear-gradient(90deg, #5E9BFF 0%, #20488A 100%);
    color: #fff;
    border-radius: 50px;
}


@media(max-width: 1800px) {

    .main_body {
        padding-top: 140px;
        padding-bottom: 200px;
        width: 1800px;
    }

    .main_title {
        font-size: 76px;
    }

    .main_body::before {
        width: 2567px;
        height: 1170px;
    }
}

@media(max-width: 1500px) {
    .container {
        max-width: 1180px;
    }

    .menu a {
        padding: 8px 14px;
        font-size: 18px;
    }

    .header_logo {
        width: 160px;
    }

    .advantages_img {
        width: 900px;
        bottom: 10px;
    }

    .advantages_img img {
        width: 100%;
        height: auto;
    }

    .advantages_items {
        gap: 232px;
    }

    .advantages_item {
        width: 380px;
    }

    .advantages_item:nth-child(1) {
        margin-top: 40px;
    }

    .advantages_item-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .advantages_item-text {
        font-size: 18px;
    }

    .tariffs_text {
        font-size: 32px;
    }

    .tariffs_tab {
        padding: 12px;
        font-size: 18px;
    }

    .tariffs_items {
        gap: 30px;
    }

    .tariffs_item {
        width: calc(33.333% - 20px);
    }

    .tariffs_item-option {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .tariffs_item-total {
        font-size: 32px;
    }

    .night_img {
        width: 600px;
        right: -80px;
    }

    .night_wrapper {
        min-height: 800px;
    }

    .night_img img {
        width: 100%;
        height: auto;
    }

    .night_left {
        width: 480px;
    }

    .night_title {
        width: 500px;
        font-size: 32px;
    }

    .title {
        font-size: 76px;
    }

    .transformation_text {
        font-size: 32px;
    }

    .transformation_items {
        gap: 30px;
    }

    .transformation_item {
        width: calc(33.333% - 20px);
    }

    .transformation_item-title {
        font-size: 28px;
    }

    .transformation_item-text {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .transformation_item-btn {
        height: 60px;
        font-size: 24px;
    }

    .transformation_star:nth-child(2) {
        width: 425px;
        height: 420px;
        right: -140px;
    }

    .transformation_star:nth-child(1) {
        width: 410px;
        height: 410px;
        left: -190px;
        top: -40px;
    }

    .online_text {
        font-size: 32px;
    }

    .online_item-title {
        font-size: 32px;
    }

    .online_item-text {
        font-size: 20px;
    }

    .online_item:nth-child(1) .online_item-img {
        width: 620px;
        right: -30px;
    }

    .online_item:nth-child(2) .online_item-img {
        width: 420px;
        left: -90px;
        bottom: -40px;
    }

    .online_item:nth-child(3) .online_item-img {
        width: 420px;
    }

    .online_item:nth-child(4) .online_item-img {
        width: 220px;
        top: -60px;
        right: -10px;
    }

    .online_item-img img {
        width: 100%;
        height: auto;
    }

    .online_item:nth-child(5) .online_item-img {
        width: 160px;
        bottom: -50px;
        right: -50px;
    }

    .online_item {
        padding: 20px;
    }

    .online_item:nth-child(6) .online_item-img {
        width: 320px;
        right: -10px;
    }

    .online_item:nth-child(8) .online_item-img {
        width: 380px;
        bottom: -30px;
        right: 20px;
    }

    .online_item:nth-child(8) .online_item-text {
        max-width: 720px;
    }

    .lessons_items {
        width: 100%;
    }

    .lessons_item.active .lessons_item-wrapper {
        top: 50%;
    }

    .lessons_item.done .lessons_item-wrapper {
        transform: translate(50%, -27%);
    }

    .lessons_item {
        width: 100%;
    }

    .lessons_item-wrapper {
        height: 588px;
        width: 900px;
    }

    .lessons_item-title {
        font-size: 72px;
    }

    .lessons_item-wrapper::before {
        width: 1170px;
        height: 720px;
        top: -92px;
    }

    .lessons_items {
        padding-top: 94px;
    }

    .consult_title {
        font-size: 62px;
    }

    .consult_text {
        font-size: 32px;
    }

    .consult_body {
        width: 100%;
        margin: 0;
        padding: 60px;
    }

    .consult_btn {
        width: 420px;
        height: 70px;
        font-size: 28px;
    }

    .lessons+.consult {
        margin-top: 0;
    }

    .consult_body-img img {
        width: 100%;
        height: 100%;
    }

    .consult_body-img:nth-child(1) {
        width: 500px;
        height: 500px;
        right: -200px;
        bottom: -120px;
    }

    .consult_body-img:nth-child(2) {
        width: 420px;
        height: 420px;
        left: -140px;
        bottom: -120px;
    }

    .steps_text {
        font-size: 32px;
    }

    .steps_item-title {
        font-size: 52px;
        margin-bottom: 30px;
    }

    .steps_item-text {
        font-size: 32px;
    }

    .steps_item-number {
        height: 160px;
    }

    .steps_item-number img {
        height: 100%;
        width: auto;
    }

    .steps_item:nth-child(1) .steps_item-img {
        width: 260px;
        right: -40px;
        top: -70px;
    }

    .steps_item-img img {
        width: 100%;
        height: auto;
    }

    .steps_item:nth-child(3) .steps_item-img {
        width: 360px;
        top: -150px;
    }

    .steps_item:nth-child(4) .steps_item-img {
        width: 300px;
        top: -70px;
    }

    .guild_text {
        font-size: 28px;
    }

    .guild_slider {
        width: calc(100% + ((100vw - 1150px) / 2));
    }

    .guild_slide {
        margin-right: 30px;
        width: 1100px;
    }

    .guild_slide-info {
        width: 640px;
    }

    .guild_slide-img {
        width: calc(100% - 640px);
    }

    .guild_slider .slick-next {
        left: 1060px;
    }

    .guild_slide-title {
        font-size: 64px;
    }

    .guild_slide-text {
        font-size: 28px;
    }

    .knowledge_item-title {
        font-size: 32px;
    }

    .knowledge_item-text {
        font-size: 18px;
    }

    .knowledge_item-number {
        display: flex;
        width: 190px;
        bottom: 0;
    }

    .knowledge_item-number img {
        width: 100%;
        height: auto;
    }

    .consult_road .consult_body-img:nth-child(1) {
        right: -160px;
        bottom: -160px;
    }

    .consult_road .consult_body-img:nth-child(2) {
        bottom: -100px;
    }

    .team_text {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .team_slide {
        width: 1100px;
        margin-right: 30px;
    }

    .team_slide-info {
        width: 640px;
    }

    .team_slide-text {
        font-size: 30px;
    }

    .team_slide-title {
        font-size: 52px;
    }

    .team_slide-desc {
        font-size: 28px;
    }

    .team_slide-img {
        width: 520px;
        left: -30px;
    }

    .team_slide-img img {
        width: 100%;
        height: auto;
    }

    .team_slider .slick-next {
        left: 1060px;
    }

    .resalts_slider {
        width: calc(100% + ((100vw - 1150px) / 2));
    }

    .resalts_slide {
        width: 1000px;
        margin-right: 30px;
    }

    .resalts_slide-text {
        font-size: 20px;
    }

    .resalts_slide-option {
        font-size: 20px;
    }

    .resalts_slide-title {
        font-size: 32px;
    }

    .resalts_slide-subtitle {
        font-size: 26px;
    }

    .resalts_btn {
        font-size: 32px;
        width: 480px;
        height: 80px;
    }

    .resalts_slide-btn {
        width: 490px;
        height: 70px;
        font-size: 24px;
    }

    .reviews_btn {
        width: 420px;
        height: 70px;
        font-size: 24px;
    }

    .reviews_items {
        gap: 30px;
    }

    .reviews_item {
        width: calc(33.333% - 20px);
    }

    .reviews_item {
        height: 520px;
    }

    .faq_item-title {
        font-size: 32px;
        padding: 30px 60px 30px 0;
    }

    .partners_items {
        gap: 30px;

    }

    .partners_item {
        width: calc(33.333% - 20px);
        padding: 20px;

    }

    .partners_item-title {
        font-size: 26px;
    }

    .partners_item-btn {
        text-align: center;
        font-size: 18px;
    }

    .order_form {
        width: 540px;
    }

    .order_info {
        width: 520px;
    }

    .footer_menu {
        width: 320px;
    }

    .footer_options {
        width: 380px;
    }

    .footer_option,
    .footer_menu a {
        font-size: 20px;
    }

    .footer_desc {
        font-size: 20px;
    }

    .footer_inner-desc,
    .footer_inner-links {
        font-size: 18px;
    }

    .main_body {
        width: 1560px;
        padding-top: 190px;
        padding-bottom: 110px;
    }


    .main_text {
        font-size: 32px;
    }

    .main_body::before {
        width: 2200px;
        height: 1000px;
        top: 50%;
    }

    .main_title {
        font-size: 58px;
    }

    .main_tegs {
        margin-bottom: 30px;
    }

    .main_text {
        font-size: 28px;
    }

    .main_btn {
        padding: 20px 25px;
        font-size: 26px;
    }

    .approach {
        margin-top: 108px;
    }

    .approach_title {
        font-size: 76px;
        max-width: 900px;
    }

    .approach_text {
        max-width: 820px;
    }

    .pass_item-text {
        font-size: 26px;
    }

    .practice_items {
        width: 100%;
        gap: 20px;
        justify-content: space-between;
    }

    .practice_wrapper-text {
        font-size: 32px;
    }

    .learn_wrapper-img {
        width: 620px;
    }

    .learn_wrapper-img img {
        width: 100%;
        height: auto;
    }

    .learn_text {
        max-width: 820px;
        font-size: 40px;
    }

    .learn_item-text {
        font-size: 26px;
    }

    .ecosystem_text {
        font-size: 32px;
    }

    por {
        font-size: 68px;
    }

    .ecosystem_wrapper-img {
        width: 720px;
    }

    .ecosystem_wrapper-img img {
        width: 100%;
        height: auto;
    }

    .ecosystem_wrapper-text {
        max-width: 800px;
        font-size: 36px;
    }

    .ecosystem_btn {
        font-size: 28px;
    }

    .ecosystem_more {
        font-size: 24px;
    }

    .primary_ecosystem .ecosystem_wrapper-img {
        width: 620px;
    }

    .guilds_text br {
        display: none;
    }

    .guilds {
        margin-top: 108px;
    }

    .guildsHow_text {
        font-size: 26px;
    }

    .guildsHow_item-title {
        font-size: 32px;
    }

    .guildsHow_item-text {
        font-size: 20px;
    }

    .guildsHow::before {
        width: 330px;
        height: 439px;
    }

    .guildsHow_text {
        padding-right: 200px;
    }

    .guildsHow_wrapper-img {
        width: 480px;
    }

    .guildsHow_wrapper-text {
        font-size: 32px;
        max-width: 640px;
    }

    .guildsHow_wrapper-img img {
        width: 100%;
        height: auto;
    }

    .guildsHow {
        padding-bottom: 100px;
    }

    .guildsLive_slide-title {
        font-size: 42px;
    }

    .guildsLive_slide-text {
        font-size: 28px;
    }

    .guildsLive_slide-img img {
        width: 100%;
        height: auto;
    }

    .guildsLive_slide:nth-child(1) .guildsLive_slide-img {
        width: 320px;
        left: -180px;
        bottom: -200px;
    }

    .guildsLive_slide:nth-child(2) .guildsLive_slide-img {
        width: 280px;
        top: -160px;
        right: -120px;
    }

    .guildsLive_slider .slick-next {
        left: 1060px;
    }

    .guildsLive_slide {
        width: 640px;
    }

    .guildsLive_slide:nth-child(4) .guildsLive_slide-img {
        width: 240px;
    }

    .guildsLive_slide:nth-child(5) .guildsLive_slide-img {
        width: 520px;
        bottom: -140px;
        right: -160px;
    }

    .guildsLive_slide:nth-child(6) .guildsLive_slide-img {
        width: 460px;
        top: -200px;
    }

    .guildsRoad_text {
        font-size: 32px;
    }

    .guildsRoad_items::before {
        display: none;
    }

    .guildResalts_item-title {
        font-size: 28px;
    }

    .guildResalts_item-text {
        font-size: 18px;
    }

    .guildTotal_wrapper-text {
        font-size: 32px;
    }

    .guildTotal_img {
        width: 520px;
    }

    .guildTotal_img img {
        width: 100%;
        height: auto;
    }

    .profession_img {
        width: 700px;
    }

    .profession_img img {
        width: 100%;
        height: auto;
    }

    .create_items {
        gap: 20px;
    }

    .create_item {
        width: calc(33.333% - 13.333px);
    }

    .create_item-title {
        font-size: 32px;
    }

    .create_item-text {
        font-size: 18px;
    }

    .faculty_text {
        font-size: 32px;
    }

    .faculty_items {
        gap: 20px;
    }

    .faculty_item {
        width: calc(33.333% - 13.333px);
    }

    .faculty_item-img {
        height: 368px;
    }

    .teach_text {
        font-size: 32px;
    }

    .mpoiResalt_item {
        margin: 0 30px;
    }

    .mpoiResalt_item.slick-current {
        transform: scale(1.3);
    }

    .mpoiResalt .title {
        margin-bottom: 30px;
    }

    .mpoiOrder {
        padding-top: 60px;
    }

    .mpoiOrder_title {
        font-size: 64px;
    }

    .mpoiOrder_text {
        font-size: 28px;
    }

    .mpoiOrder_link {
        font-size: 28px;
        max-width: 540px;
    }

    .mpoiOrder_btn {
        font-size: 28px;
    }

    .courses_filters {
        margin-bottom: 40px;
    }

    .courses_item-icon {
        width: 90px;
        height: 90px;
    }

    .courses_item-title {
        font-size: 32px;
    }

    .courses_item-option {
        font-size: 18px;
    }

    .courses_item-more {
        font-size: 24px;
    }

    .courses_item-more img {
        width: 24px;
        height: auto;
    }

    .courses_filter-title {
        font-size: 26px;
    }

    .courses_filter {
        width: 280px;
    }

    .courses_filter-title::before {
        top: 6px;
    }

    .prodject {
        margin-top: 108px;
    }

    .prodject_title {
        font-size: 62px;
        margin-bottom: 240px;
    }

    .prodject_text {
        font-size: 32px;
        max-width: 620px;
    }

    .prodject_btn {
        font-size: 28px;
    }

    .prodjectPractic_items {
        gap: 30px;
    }

    .prodjectPractic_item {
        width: calc(33.333% - 20px);
    }

    .prodjectPractic_item-title {
        font-size: 32px;
    }

    .prodjectPractic_item-text {
        font-size: 20px;
    }

    .prodjectPractic_items::before {
        top: -234px;
        right: -187px;
        width: 440px;
        height: 294px;
    }

    .prodjectExamples_text {
        font-size: 28px;
        max-width: 720px;
    }

    .prodjectExamples_warpper::before {
        top: -30px;
        right: -90px;
        width: 460px;
        height: 300px;
    }

    .prodjectExamples_items {
        gap: 30px;
    }

    .prodjectExamples_item {
        width: calc(33.333% - 20px);
    }

    .prodjectExamples_item-text {
        font-size: 20px;
    }

    .prodjectExamples_item-title {
        font-size: 24px;
    }

    .prodjectExamples_item:nth-child(3) .prodjectExamples_item-img {
        width: 220px;
        right: -100px;
        top: -150px;
    }

    .prodjectExamples_item-img img {
        width: 100%;
        height: auto;
    }

    .prodjectExamples_item:nth-child(1) .prodjectExamples_item-img {
        width: 240px;
        bottom: -200px;
    }

    .prodjectExamples_item:nth-child(6) .prodjectExamples_item-img {
        width: 210px;
        right: -90px;
        top: -70px;
    }

    .prodjectRoad_item {
        font-size: 32px;
    }

    .prodjectSteps_text {
        font-size: 32px;
    }

    .prodjectSteps_img {
        width: 100%;
        margin-left: -60px;
    }

    .prodjectSteps_item {
        font-size: 24px;
    }

    .prodjectSteps_img img {
        width: 100%;
        height: auto;
    }

    .prodject_ecosystem {
        padding: 90px 0;
    }

    .prodject_ecosystem .ecosystem_wrapper-img {
        width: 620px;
    }

    .prodject_ecosystem .ecosystem_wrapper-text {
        max-width: 720px;
    }

    .press {
        margin-top: 108px;
    }

    .press_partners-title {
        font-size: 52px;
    }

    .press_items {
        gap: 30px;
    }

    .press_item {
        width: calc(33.333% - 20px);
    }

    .press_item-title {
        font-size: 32px;
    }

    .press_item-text {
        font-size: 22px;
    }

    .press_item-btn {
        font-size: 16px;
    }

    .clubs_wrapper {
        padding: 40px;
    }

    .clubs_title {
        font-size: 62px;
    }

    .clubs_text {
        font-size: 32px;
    }

    .clubs_tabs {
        gap: 20px;
    }

    .clubs_tab {
        padding: 10px 24px;
        font-size: 20px;
    }

    .clubs_item-info {
        padding: 10px 20px 20px;
    }

    .clubs_item-title {
        font-size: 20px;
    }

    .route_title {
        font-size: 64px;
    }

    .route_text {
        font-size: 32px;
    }

    .route_img {
        display: flex;
    }

    .route_img img {
        width: 100%;
        height: auto;
    }

    .route_btn {
        font-size: 26px;
        padding: 16px 20px;
    }

    .adapting_text {
        font-size: 32px;
        max-width: 760px;
    }

    .adapting_img {
        width: 780px;
        bottom: -260px;
        right: calc(50% - 860px);
    }

    .adapting_img img {
        width: 100%;
        height: auto;
    }

    .routeSubjects_item-text {
        font-size: 18px;
    }

    .routeSubjects_item-title {
        font-size: 28px;
    }

    .routeSubjects_title {
        font-size: 62px;
    }

    .routeSubjects_text {
        font-size: 32px;
        max-width: 920px;
    }

    .routeSubjects_wrapper-img {
        width: 540px;
        right: -160px;
    }

    .criteria_text {
        font-size: 32px;
    }

    .routeSubjects_wrapper-img img {
        width: 100%;
        height: auto;
    }

    .criteria_img img {
        max-width: 100%;
    }

    .route_ecosystem .ecosystem_wrapper-img {
        width: 580px;
    }

    .route_ecosystem .ecosystem_wrapper-text {
        max-width: 800px;
    }

    .blog_title {
        font-size: 52px;
        margin-bottom: 120px;
    }

    .blog_text {
        font-size: 32px;
    }

    .blog {
        margin-top: 108px;
    }

    .clubs_items:has(.blog_item) {
        gap: 30px;
    }

    .blog_item {
        width: calc(33.333% - 20px);
    }

    .blog_item-img {
        height: 440px;
    }

    .blog_item-title {
        font-size: 24px;
    }

    .blog_item-text {
        font-size: 18px;
    }

    .primary_video-body {
        width: 1000px;
        height: 694px;
    }

    .primary_video-body::before {
        width: 1370px;
        height: 950px;
        top: -108px;
    }

    .save .save_text {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .save_inner,
    .save_items {
        width: calc(50% - 10px);
    }

    .save_item {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .save_desc {
        font-size: 32px;
    }

    .primary_lesson-text {
        font-size: 20px;
    }

    .primary_lesson-item:nth-child(3) .primary_lesson-img {
        width: 580px;
    }

    .primary_lesson-item:nth-child(3) .primary_lesson-img img {
        width: 100%;
        height: auto;
    }

    .primary_project:nth-child(2) .primary_project-text {
        font-size: 32px;
    }

    .primary_project-text {
        font-size: 24px;
    }

    .primary_project-btn {
        width: 380px;
        font-size: 25px;
        height: 70px;
    }

    .primary_project-img {
        width: 560px;
        min-width: 560px;
        height: 400px;
    }

    .primary_project:nth-child(2) .primary_project-img {
        width: 490px;
        height: 460px;
    }

    .primary_become-title {
        font-size: 26px;
    }

    .primary_become-text {
        font-size: 20px;
    }

    .primary_tarifs-warpper {
        padding: 40px;
    }

    .primary_tarifs-title {
        font-size: 76px;
    }

    .primary_tarifs-teg {
        font-size: 20px;
    }

    .primary_tarifs-item {
        font-size: 32px;
    }

    .primary_access-text {
        font-size: 32px;
    }

    .primary_ecosystem .ecosystem_wrapper-text {
        max-width: 740px;
    }

    .vacancies {
        margin-top: 108px;
    }

    .vacancies_text {
        font-size: 32px;
        max-width: 640px;
    }

    .vacancies_img {
        width: 780px;
        right: -180px;
    }

    .comfort_items {
        gap: 30px;
    }

    .comfort_item {
        width: calc(33.333% - 20px);
    }

    .comfort_item-title {
        font-size: 32px;
    }

    .comfort_item-text {
        font-size: 18px;
    }

    .directions_wrapper-text {
        font-size: 32px;
    }

    .vacanciesRoad_item {
        font-size: 32px;
    }

    .vacancies_ecosystem .ecosystem_wrapper-img {
        width: 580px;
    }

    .vacancies_ecosystem por,
    .vacancies_ecosystem .ecosystem_wrapper-text {
        max-width: 770px;
    }

    .vacancies_img img {
        width: 100%;
        height: auto;
    }

    .additional {
        margin-top: 108px;
    }

    .additional_title {
        font-size: 52px;
    }

    .additional_text {
        font-size: 32px;
    }

    .additional_btn {
        font-size: 32px;
    }

    .additional_btn:nth-child(2) {
        font-size: 26px;
    }

    .pass_video {
        width: 1150px;
        height: 653px;
    }

    .pass_video::before {
        width: 1636px;
        height: 750px;
        top: -60px;
    }

    .additionalWays_items {
        gap: 30px;
    }

    .additionalWays_item {
        width: calc(33.333% - 20px);
    }

    .additionalWays_item-title {
        font-size: 32px;
    }

    .additionalWays_item-text {
        font-size: 20px;
    }

    .additionalWays_btn {
        font-size: 24px;
    }

    .safety {
        margin-top: 108px;
    }

    .safety_wrapper {
        margin-bottom: 300px;
    }

    .safety_sistem-text {
        font-size: 32px;
    }

    .safety_sistem-img {
        height: 644px;
    }

    .safety_sistem-wrapper::before {
        width: 320px;
        right: -50px;
        bottom: -10px;
        height: 380px;
    }

    .entertainment_text {
        font-size: 32px;
    }

    .pass_text,
    .environment_item,
    .environment_text {
        font-size: 32px;
    }

    .simulators_title {
        font-size: 62px;
    }

    .simulators_text {
        font-size: 32px;
    }

    .simulators_info {
        width: 620px;
    }

    .certificate_item-text {
        font-size: 24px;
    }

    .preparation {
        margin-top: 108px;
    }

    .preparation_title {
        font-size: 52px;
    }

    .preparation_text {
        font-size: 32px;
    }

    .preparation_teg {
        font-size: 18px;
    }

    .preparation_btn {
        font-size: 32px;
    }

    .lessons_item-more {
        font-size: 24px;
    }

    .lessons_item:nth-child(4) .lessons_item-more {
        top: 480px;
    }

    .concentration_text {
        font-size: 32px;
    }

    .concentration_item {
        font-size: 32px;
    }

    .preparation_comfort .comfort_item-title {
        font-size: 20px;
        word-break: normal;
    }

    .comfort_inner-title {
        font-size: 32px;
    }

    .comfort_bot-title {
        font-size: 42px;
        width: 640px;
    }

    .comfort_bot-img {
        width: 440px;
    }

    .analytics::before {
        width: 420px;
        height: 420px;
    }

    .analytics_text {
        font-size: 32px;
    }

    .first_info {
        width: 660px;
        font-size: 32px;
    }

    .first::after {
        display: none;
    }

    .first::before {
        width: 280px;
        left: -70px;
        bottom: 120px;
        height: 466px;
    }

    .first_inner-text {
        font-size: 32px;
    }

    .first_inner {
        max-width: 980px;
        margin-top: 60px;
    }

    .first_inner-text {
        margin-bottom: 60px;
    }

    .first_img {
        width: 460px;
    }

    .first_img img {
        width: 100%;
        height: auto;
    }

    .first_text {
        font-size: 32px;
    }

    .comfort_bot-img img {
        width: 100%;
        height: auto;
    }

    .preparation_comfort .comfort_item-title {
        word-break: normal;

    }

    .price_value {
        font-size: 48px;
    }

    .price_btn {
        font-size: 18px;
    }

    .price_value.current {
        padding: 30px;
    }

    .studentResults_items {
        gap: 40px;
    }

    .studentResults_item {
        width: calc(33.333% - 26.666px);
        height: 476px;
    }

    .preparationResalt_bot .ecosystem_wrapper-text,
    .preparationResalt_bot .ecosystem_wrapper-title {
        padding-right: 160px;
    }

    .preparationResalt_bot .ecosystem_wrapper-text {
        font-size: 26px;
    }

    .english {
        margin-top: 108px;
    }

    .talking::before {
        width: 240px;
        height: 465px;
    }

    .practices_text {
        font-size: 32px;
    }

    .practices_wrapper::before {
        width: 420px;
        height: 370px;
    }

    .language_text {
        font-size: 32px;
    }

    .talking_item {
        position: relative;
        z-index: 1;
    }

    .talking_item-title {
        font-size: 32px;
    }

    .talking_item-text {
        font-size: 24px;
    }

    .language_img {
        width: 260px;
    }

    .language_img img {
        width: 100%;
        height: auto;
    }

    .language .title {
        padding-right: 120px;
    }

    .progress_text,
    .language_inner {
        font-size: 32px;
    }

    .progress::before {
        width: 320px;
        height: 290px;
        top: 140px;
    }

    .chose_tab {
        font-size: 20px;
        padding: 20px;
    }

    .chose_content ul,
    .chose_content p {
        font-size: 26px;
    }

    .hight_offer-text {
        font-size: 32px;
    }

    .attend_items::before {
        width: 320px;
        height: 320px;
        right: -100px;
    }

    .attend_item:nth-child(2) {
        padding-right: 40px;
    }

    .attend_item-video {
        width: 510px;
        height: 286px;
    }

    .attend_item:last-child {
        padding-right: 530px;
    }

    .intelligence_text {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .intelligence_item-info {
        width: 560px;
    }

    .intelligence_item-title {
        font-size: 42px;
    }

    .inside_text,
    .intelligence_item-text {
        font-size: 32px;
    }

    .intelligence_item-video {
        width: 530px;
        height: 346px;
    }

    .intelligence_item-video::before {
        top: -18px;
        right: -13px;
        bottom: -25px;
        left: -20px;
    }

    .inside_item {
        font-size: 24px;
    }

    .inside_items-line img {
        max-width: 100%;
    }

    .inside_img:nth-child(1) {
        width: 240px;
    }

    .inside_img img {
        width: 100%;
        height: auto;
    }

    .inside_img:nth-child(2) {
        width: 200px;
    }

    .inside_items {
        gap: 30px;
    }

    .inside_content:last-child .inside_item {
        width: calc(40% - 46.666px);
    }

    .inside_img:nth-child(3) {
        width: 250px;
    }

    .hightResults .studentResults_item {
        height: 336px;
    }

    .hight_comfort .comfort_item-title {
        font-size: 24px;
    }

    .hight_comfort .comfort_item-text {
        font-size: 18px;
    }

    .ecosystem_wrapper-title {
        font-size: 68px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 950px;
    }


    .header_btn {
        display: none;
    }

    .main_body {
        position: relative !important;
        transform: none !important;
        inset: auto !important;
        width: 100%;
        padding: 80px 0 130px;
    }

    .main_wrapper {
        padding: 30px;
    }

    .main {
        height: auto;
        margin-top: 108px;
    }

    .main_body::before {
        display: none;
    }

    .advantages_items {
        gap: 160px 100px;
    }

    .main_title {
        font-size: 50px;
    }

    .main_text {
        font-size: 24px;
    }

    .main_btn {
        font-size: 22px;
    }

    .advantages {
        background-size: cover;
        margin-top: -70px;
    }

    .advantages_item {
        width: 340px;
        height: auto;
    }

    .advantages_img {
        width: 620px;
        bottom: 96px;
    }

    .advantages_item:nth-child(1) {
        margin-top: 26px;
    }

    .advantages_item:nth-child(1) .advantages_item-circle {
        width: 160px;
        height: 160px;
    }

    .advantages_item:nth-child(4) .advantages_item-circle {
        width: 160px;
        height: 160px;
    }

    .tariffs_tabs {
        justify-content: flex-start;
    }

    .tariffs_text {
        font-size: 26px;
    }

    .tariffs_item {
        width: calc(50% - 15px);
        flex: auto;
    }

    .night_wrapper {
        flex-direction: column-reverse;
        padding: 40px;
        gap: 40px;
        padding-bottom: 360px;
    }

    .title {
        font-size: 62px;
    }

    .night_left {
        width: 100%;
    }

    .night_title {
        width: 100%;
    }

    .transformation_text {
        font-size: 28px;
    }

    .transformation_star:nth-child(2) {
        width: 320px;
        height: 320px;
        right: -90px;
        top: -200px;
    }

    .transformation_item {
        width: calc(50% - 15px);
        flex: auto;
    }

    .transformation_star:nth-child(1) {
        width: 320px;
        height: 320px;
    }

    .online_text {
        font-size: 26px;
    }

    .online_item:nth-child(1) .online_item-img {
        width: 420px;
    }

    .online_items {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .online_item {
        width: calc(50% - 15px);
        min-height: 360px;
    }

    .online_item:nth-child(2) {
        min-height: 420px;
    }

    .online_item:nth-child(2) .online_item-img {
        width: 240px;
        left: -30px;
    }

    .online_item:nth-child(3) .online_item-img {
        width: 320px;
    }

    .online_item-teg {
        font-size: 16px;
    }

    .online_item:nth-child(3) .online_item-img {
        display: none;
    }

    .online_item:nth-child(4) .online_item-img {
        width: 260px;
    }

    .online_item:nth-child(5) .online_item-img {
        right: -20px;
        bottom: -10px;
    }

    .online_item:nth-child(6) .online_item-img {
        width: 220px;
    }

    .online_item:nth-child(8) .online_item-img {
        width: 210px;
    }

    .online_item:nth-child(8) {
        min-height: 440px;
    }

    .lessons_items {
        padding-top: 0;
    }

    .lessons_item {
        height: auto;
        margin-bottom: 100px;
    }

    .lessons_item.done .lessons_item-wrapper,
    .lessons_item-wrapper {
        position: relative !important;
        inset: auto !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
    }

    .lessons_item-title {
        font-size: 62px;
    }

    .lessons_item:nth-child(2) .lessons_item-inner {
        right: -50px;
    }

    .lessons_item-wrapper {
        width: 100%;
        padding: 40px;
        height: 602px;
    }

    .lessons_item-wrapper::before {
        width: 1200px;
        height: 737px;
        top: -95px;
    }

    .lessons_item:nth-child(1) .lessons_item-inner {
        left: -40px;
        padding: 20px;
        top: 240px;
    }

    .lessons_item-subtitle {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .lessons_item-text {
        font-size: 20px;
    }

    .lessons_item:nth-child(3) .lessons_item-inner {
        left: -37px;
        top: 338px;
    }

    .consult_wrapper {
        padding: 30px;
    }

    .consult_title {
        font-size: 46px;
    }

    .consult_text {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .consult_body-img:nth-child(1) {
        width: 360px;
        height: 360px;
        right: -90px;
    }

    .consult_body-img:nth-child(2) {
        width: 360px;
        height: 360px;
    }

    .steps_text {
        font-size: 26px;
    }

    .steps_item-text {
        font-size: 26px;
    }

    .steps_item-title {
        font-size: 44px;
    }

    .steps_item-number {
        height: 110px;
    }

    .steps_item:nth-child(3) .steps_item-img {
        width: 280px;
        top: -120px;
        right: 160px;
    }

    .guild_text {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .guild_slider {
        width: calc(100% + ((100vw - 920px) / 2));
    }

    .guild_slide {
        width: 920px;
        margin-right: 20px;
    }

    .guild_slide-title {
        font-size: 52px;
    }

    .guild_slide-text {
        font-size: 26px;
    }

    .guild_slide-info {
        padding: 30px;
        width: 520px;
    }

    .guild_slide-img {
        width: calc(100% - 520px);
    }

    .guild_slider .slick-arrow {
        width: 60px;
        height: 60px;
    }

    .guild_slider .slick-prev {
        left: -30px;
    }

    .guild_slider .slick-next {
        left: 887px;
    }

    .guild_slide-btn {
        font-size: 20px;
    }

    .knowledge_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .knowledge_item {
        width: 100%;
    }

    .consult_road .consult_body-img:nth-child(1) {
        bottom: -120px;
    }

    .team_text {
        font-size: 26px;
    }

    .team_slider {
        width: calc(100% + ((100vw - 920px) / 2));
    }

    .team_slide {
        width: 920px;
        margin-right: 20px;
    }

    .team_slide-title {
        font-size: 42px;
    }

    .team_slide-text {
        font-size: 24px;
    }

    .team_slide-desc {
        font-size: 22px;
    }

    .team_slide-info {
        width: 520px;
    }

    .team_slide-img {
        width: 460px;
    }

    .team_slide-prof {
        font-size: 24px;
        width: 280px;
        padding: 20px;
    }

    .team_slider .slick-arrow {
        width: 60px;
        height: 60px;
    }

    .team_slider .slick-prev {
        left: -30px;
    }

    .team_slider .slick-next {
        left: 887px;
    }

    .resalts .title {
        font-size: 62px;
    }

    .resalts_slider {
        width: calc(100% + ((100vw - 920px) / 2));
    }

    .resalts_slide {
        width: 920px;
        padding: 30px 40px;
        margin-right: 20px;
    }

    .resalts_slide-img {
        width: 120px;
        height: 120px;
    }

    .resalts_slider .slick-arrow {
        width: 60px;
        height: 60px;
    }

    .resalts_slider .slick-prev {
        left: -30px;
    }

    .resalts_slider .slick-next {
        left: 887px;
    }

    .reviews_btn {
        width: 360px;
    }

    .reviews_items {
        gap: 20px;
    }

    .reviews_item {
        width: calc(50% - 10px);
    }

    .partners_items {
        gap: 20px;
    }

    .partners_item {
        width: calc(50% - 10px);
    }

    .order_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .order_info {
        width: 100%;
    }

    .order_form {
        width: 100%;
    }

    .footer_inner {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .footer_wrapper {
        margin-bottom: 80px;
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer_menu {
        width: 280px;
    }

    .footer_left {
        width: 320px;
    }

    .footer_left {
        width: 280px;
    }

    .footer_desc {
        font-size: 18px;
    }

    .footer_way {
        width: 100%;
        font-size: 16px;
    }

    .footer_options {
        width: 260px;
    }

    .footer_option,
    .footer_menu a {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer_desc {
        font-size: 16px;
    }

    .approach_title {
        font-size: 68px;
        max-width: 810px;
        line-height: 120%;
    }

    .approach_text {
        font-size: 32px;
        max-width: 660px;
    }

    .approach_btn {
        width: 420px;
        height: 70px;
        font-size: 28px;
    }

    .pass_item-text {
        font-size: 26px;
    }

    .practice_item {
        font-size: 22px;
        padding: 30px;
    }

    .practice_wrapper-title {
        font-size: 52px;
    }

    .video_block-body {
        width: 920px;
        height: 602px;
    }

    .video_block-body::before {
        top: -60px;
        width: 1190px;
        height: 690px;
    }

    .learn_title {
        font-size: 64px;
    }

    .learn_wrapper-img {
        width: 500px;
        bottom: -120px;
    }

    .learn_text {
        max-width: 740px;
        font-size: 32px;
    }

    .learn_items {
        flex-direction: column;
    }

    .learn_item {
        width: 100%;
    }

    .learn_btn {
        font-size: 32px;
    }

    .learn_item-more {
        font-size: 32px;
    }

    .ecosystem_wrapper-img {
        display: none;
    }

    .ecosystem_more {
        font-size: 32px;
    }

    por {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .ecosystem_wrapper-text {
        font-size: 30px;
    }

    .guild_info::before,
    .guild_info::after {
        display: none;
    }

    .guilds_title {
        font-size: 64px;
    }

    .guilds_title br {
        display: none;
    }

    .guilds_btn {
        margin-bottom: 200px;
    }

    .guilds_text {
        font-size: 32px;
    }

    .guilds_btn {
        font-size: 32px;
        width: 390px;
    }

    .guildsHow_item-title {
        font-size: 24px;
    }

    .guildsHow_item-text {
        font-size: 18px;
    }

    .guildsHow_wrapper-text {
        font-size: 26px;
        max-width: 520px;
    }

    .guildsHow_wrapper-img {
        width: 380px;
    }

    .guildsLive_slide {
        padding: 30px;
        width: 580px;
    }

    .guildsLive_slide-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .guildsLive_slide-text {
        font-size: 24px;
    }

    .guildsLive_slider .slick-next {
        left: 800px;
    }

    .guildsLive_slide-img {
        display: none;
    }

    .guildsLive {
        padding-bottom: 100px;
    }

    .guildsRoad_text {
        font-size: 24px;
    }

    .guildsRoad_item {
        margin-bottom: 40px;
    }

    .guildsRoad_item-title {
        font-size: 36px;
    }

    .guildResalts_items {
        gap: 30px;
    }

    .guildResalts_item {
        width: calc(50% - 15px);
    }

    .guildTotal_wrapper::before {
        display: none;
    }

    .guildTotal_text {
        margin-bottom: 60px;
        font-size: 28px;
    }

    .guildTotal_wrapper-title {
        font-size: 54px;
        margin-bottom: 30px;
    }

    .guildTotal_wrapper-text {
        font-size: 28px;
    }

    .guildTotal_img {
        width: 460px;
    }

    .guildTotal_wrapper-btn {
        font-size: 32px;
    }

    .default_page {
        margin-top: 160px;
    }

    .information_wrapper {
        padding: 30px;
    }

    .information_title {
        font-size: 32px;
    }

    .information_item-title {
        font-size: 28px;
    }

    .information_item-title::before {
        width: 32px;
        height: 16px;
    }

    .information_item-content {
        font-size: 20px;
        line-height: 38px;
    }

    .profession_title {
        font-size: 52px;
    }

    .profession_text {
        font-size: 24px;
    }

    .profession_info {
        width: 620px;
    }

    .create_item-title {
        font-size: 24px;
    }

    .create_item-text {
        font-size: 16px;
    }

    .create_desc-title {
        font-size: 32px;
    }

    .create_desc-text {
        font-size: 24px;
    }

    .faculty_text {
        font-size: 26px;
    }

    .faculty_item-img {
        height: 292px;
    }

    .faculty_item-title {
        font-size: 22px;
    }

    .faculty_item:last-child .faculty_item-title {
        font-size: 32px;
        padding: 20px;
    }

    .teach_text {
        font-size: 26px;
    }

    .mpoiResalt_item.slick-current {
        transform: none;
    }

    .mpoiResalt_item {
        margin: 0 30px 0 0;
    }

    .mpoiResalt_items .slick-list {
        padding: 0 !important;
    }

    .mpoiOrder_inner {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .mpoiOrder_link {
        max-width: 100%;
    }

    .mpoiResalt_item-text {
        font-size: 14px;
    }

    .courses_search {
        width: 480px;
    }

    .courses_items {
        gap: 30px;
    }

    .courses_item {
        width: calc(33.333% - 20px);
    }

    .courses_filters {
        gap: 30px;
    }

    .courses_filter {
        width: calc(33.333% - 20px);
    }

    .prodject {
        padding-bottom: 190px;
    }

    .prodject_title {
        font-size: 56px;
        margin-bottom: 160px;
    }

    .prodject_inner {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .prodject_text {
        max-width: 100%;
        font-size: 24px;
    }

    .prodject_btn {
        font-size: 32px;
    }

    .prodjectPractic_item-title {
        font-size: 24px;
    }

    .prodjectPractic_item {
        padding: 20px;
    }

    .prodjectPractic .title {
        margin-bottom: 30px;
        max-width: 720px;
    }

    .prodjectPractic_items::before {
        right: -120px;
        top: -260px;
    }

    .prodjectPractic_item-text {
        font-size: 18px;
    }

    .prodjectExamples_item {
        width: calc(50% - 15px);
    }

    .prodjectExamples_item:nth-child(3) .prodjectExamples_item-img {
        right: -100px;
        left: auto;
        top: auto;
        bottom: -140px;
    }

    .prodjectSteps_item {
        font-size: 18px;
    }

    .prodjectSteps_img {
        margin-left: -40px;
    }

    .prodjectSteps_items {
        margin-top: -60px;
    }

    .press_text {
        font-size: 32px;
    }

    .press {
        padding-bottom: 300px;
    }

    .press_partners-title {
        font-size: 40px;
    }

    .press_partners-text {
        font-size: 24px;
    }

    .press_partners-btn {
        font-size: 30px;
    }

    .press_item {
        width: calc(50% - 15px);
    }

    .clubs_title {
        font-size: 56px;
        margin-bottom: 32px;
    }

    .clubs_text {
        font-size: 26px;
    }

    .clubs_filters {
        flex-direction: column;
        gap: 20px;
    }

    .clubs_search {
        height: 50px;
    }

    .clubs_items {
        gap: 30px;
    }

    .clubs_item {
        width: calc(33.333% - 20px);
    }

    .clubs_item-img {
        height: 144px;
    }

    .route_wrapper {
        padding: 40px;
    }

    .route_text {
        font-size: 26px;
    }

    .adapting_text {
        font-size: 26px;
        max-width: 580px;
    }

    .adapting_img {
        width: 520px;
        right: calc(50% - 560px);
        bottom: -90px;
    }

    .routeSubjects_items {
        gap: 20px;
        flex-wrap: wrap;
    }

    .routeSubjects_title {
        font-size: 42px;
    }

    .routeSubjects_text {
        font-size: 24px;
        max-width: 680px;
    }

    .routeSubjects_item {
        width: calc(50% - 10px);
    }

    .criteria_text {
        font-size: 26px;
    }

    .route_ecosystem por br {
        display: none;
    }

    .clubs_popup {
        padding: 40px;
    }

    .clubs_popup-img {
        width: 240px;
        height: 240px;
        min-width: 240px;
    }

    .clubs_popup-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .clubs_popup-subtitle {
        font-size: 24px;
    }

    .clubs_popup-text {
        font-size: 28px;
    }

    .blog_title {
        font-size: 44px;
        margin-bottom: 110px;
    }

    .blog_text {
        font-size: 26px;
    }

    .blog_resalt .clubs_tab {
        font-size: 18px;
    }

    .clubs_items:has(.blog_item) {
        gap: 20px;
    }

    .blog_item {
        width: calc(50% - 10px);
    }

    .primary_video-body {
        width: 920px;
        height: 638px;
    }

    .primary_video-body::before {
        width: 1215px;
        height: 874px;
        top: -99px;
    }

    .save_inner-text {
        font-size: 24px;
    }

    .save_inner-title {
        font-size: 32px;
    }

    .save_item {
        font-size: 24px;
        padding: 20px;
    }

    .save_desc {
        font-size: 26px;
    }

    .primary_lesson-title {
        font-size: 32px;
    }

    .primary_lesson-text {
        font-size: 18px;
    }

    .primary_lesson-item:nth-child(2) .primary_lesson-img {
        width: 200px;
    }

    .primary_lesson-item:nth-child(2) .primary_lesson-text {

        padding-right: 150px;
    }

    .primary_lesson-item:nth-child(3) .primary_lesson-img {
        width: 360px;
    }

    .primary_lesson-desc {
        font-size: 20px;
    }

    .primary_lesson-item:nth-child(3) {
        padding-right: 330px;
    }


    .primary_lesson-img img {
        width: 100%;
        height: auto;
    }

    .primary_project-title {
        font-size: 44px;
    }

    .primary_project-text {
        font-size: 20px;
    }

    .primary_project-img {
        width: 450px;
        min-width: 450px;
        height: 272px;
    }

    .primary_project:nth-child(2) .primary_project-img {
        width: 380px;
        height: 380px;
    }

    .primary_project:nth-child(2) {
        padding-left: 370px;
    }

    .primary_project:nth-child(2) .primary_project-text {
        font-size: 24px;
    }

    .primary_become-items {
        gap: 20px;
    }

    .primary_become-item {
        width: calc(50% - 10px);
    }

    .primary_tarifs-title {
        font-size: 64px;
    }

    .primary_tarifs-tegs {
        margin-bottom: 30px;
    }

    .primary_tarifs-teg {
        font-size: 16px;
    }

    .primary_tarifs-item {
        font-size: 22px;
    }

    .primary_access-text {
        font-size: 24px;
    }

    .vacancies_title {
        font-size: 62px;
    }

    .comfort .title {
        font-size: 72px;
    }

    .comfort .title br {
        display: none;
    }

    .vacancies_text {
        font-size: 28px;
    }

    .vacancies_btn {
        font-size: 26px;
    }

    .vacancies_img {
        width: 520px;
        right: -100px;
    }

    .comfort_item-title {
        font-size: 24px;
    }

    .directions_text {
        font-size: 32px;
    }

    .directions_wrapper-title {
        font-size: 42px;
    }

    .directions_wrapper-subtitle {
        font-size: 22px;
    }

    .directions_wrapper-text {
        font-size: 24px;
    }

    .directions_wrapper-link,
    .directions_wrapper-btn {
        font-size: 24px;
    }

    .directions+.mpoiResalt {
        padding-bottom: 140px;
    }

    .vacanciesRoad_item {
        font-size: 26px;
    }

    .additional_title {
        font-size: 42px;
    }

    .additional_text {
        font-size: 24px;
    }

    .additional_btn {
        font-size: 24px;
    }

    .additional_btn:nth-child(2) {
        font-size: 18px;
    }

    .comfort .title {
        font-size: 62px;
    }

    .comfort_text {
        font-size: 32px;
    }

    .comfort_inner-text {
        font-size: 20px;
    }

    .pass_video {
        width: 920px;
        height: 523px;
    }

    .pass_video::before {
        width: 1310px;
        height: 600px;
        top: -44px;
    }

    .pass .title {
        margin-bottom: 60px;
    }

    .additionalWays_items {
        gap: 20px;
        flex-wrap: wrap;
    }

    .additionalWays_item {
        width: calc(50% - 10px);
    }

    .safety_wrapper {
        margin-bottom: 220px;
        width: 100%;
    }

    .safety_title {
        font-size: 56px;
    }

    .safety_text {
        font-size: 32px;
    }

    .safety_sistem-text {
        font-size: 28px;
    }

    .safety_sistem-img {
        height: 515px;
    }

    .entertainment_text {
        font-size: 24px;
    }

    .pass_text,
    .environment_item,
    .environment_text {
        font-size: 26px;
    }

    .environment_item {
        padding-left: 90px;
    }

    .environment_item::before {
        width: 72px;
        height: 68px;
    }

    .simulators_title {
        font-size: 42px;
    }

    .simulators_text {
        font-size: 24px;
    }

    .simulators_info {
        width: 520px;
    }

    .certificate_text {
        font-size: 28px;
    }

    .certificate_item:nth-child(1) .certificate_item-img {
        width: 380px;
        right: -30px;
    }

    .certificate_item:nth-child(1) .certificate_item-img img {
        width: 100%;
        height: auto;
    }

    .certificate_item:nth-child(1) .certificate_item-text {
        padding-right: 380px;
    }

    .certificate_item-text {
        font-size: 18px;
    }

    .certificate_item {
        min-height: 1px;
    }

    .certificate_item-title {
        font-size: 36px;
    }

    .certificate_item:nth-child(2) .certificate_item-img {
        width: 320px;
        min-width: 320px;
        margin-right: 30px;
        height: 452px;
    }

    .preparation_wrapper {
        width: 100%;
    }

    .lessons_item:nth-child(2) .lessons_item-more {
        right: -20px;
        top: 240px;
    }

    .lessons_item:nth-child(3) .lessons_item-more {
        left: -20px;
        top: 280px;
    }

    .lessons_item:nth-child(4) .lessons_item-more {
        right: -20px;
        top: 320px;
    }

    .lessons_item:last-child {
        margin-bottom: 0;
    }

    .concentration_item,
    .concentration_text {
        font-size: 26px;
    }

    .preparation_comfort .comfort_items {
        gap: 20px;
        flex-wrap: wrap;
    }

    .preparation_comfort .comfort_item {
        width: calc(50% - 10px);
    }

    .comfort_bot-title {
        font-size: 36px;
        width: 500px;
    }

    .comfort_bot-img {
        width: 380px;
    }

    .analytics::before {
        width: 380px;
        height: 380px;
    }

    .analytics_text {
        font-size: 26px;
    }

    .first_info {
        font-size: 22px;
        line-height: 130%;
        width: 520px;
    }

    .first_img {
        width: 380px;
    }

    .first::before {
        display: none;
    }

    .first_inner-text {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .price_value {
        font-size: 32px;
    }

    .studentResults_text {
        font-size: 24px;
    }

    .studentResults_items {
        gap: 20px;
    }

    .studentResults_item {
        width: calc(33.333% - 13.333px);
        height: 392px;
    }

    .preparationResalt .title {
        margin-bottom: 30px;
    }

    .preparationResalt_bot {
        margin-top: 30px;
    }

    .preparationResalt_bot .ecosystem_wrapper-text,
    .preparationResalt_bot .ecosystem_wrapper-title {
        padding-right: 0;
    }

    .ecosystem_wrapper-title {
        font-size: 56px;
    }

    .english_text {
        font-size: 28px;
    }

    .english_desc {
        font-size: 24px;
    }

    .english_title {
        font-size: 52px;
    }

    .lessons_item-img {
        display: none;
    }

    .talking_item {
        padding: 20px;
    }

    .talking_item-text {
        font-size: 18px;
    }

    .talking::before {
        width: 152px;
        height: 300px;
    }

    .progress_text,
    .language_innerm,
    .language_text,
    .practices_text {
        font-size: 24px;
    }

    .chose_content {
        padding: 20px;
    }

    .chose_content ul,
    .chose_content p {
        font-size: 20px;
    }

    .prodject_text-bef {
        left: -30px;
        top: -50px;
        font-size: 18px;
    }

    .hight_offer-text {
        font-size: 24px;
    }

    .attend_item-title {
        font-size: 24px;
    }

    .attend_item-text {
        font-size: 18px;
    }

    .attend_item-video {
        width: 380px;
        height: 214px;
    }

    .attend_item:last-child {
        padding-right: 390px;
    }

    .intelligence_text {
        font-size: 24px;
    }

    .intelligence_item-info {
        width: 460px;
    }

    .intelligence_item-video {
        width: 420px;
        height: 274px;
    }

    .intelligence_item-video::before {
        top: -14px;
        right: -10px;
        bottom: -18px;
        left: -14px;
    }

    .intelligence_item-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .inside_text,
    .intelligence_item-text {
        font-size: 24px;
    }

    .inside_tab {
        padding: 14px;
    }

    .inside_title {
        font-size: 36px;
    }

    .inside_img:nth-child(2) {
        display: none;
    }

    .inside_item {
        font-size: 20px;
    }

    .inside_content:last-child .inside_item {
        width: calc(50% - 46.666px);
    }

    .hightResults .studentResults_item {
        height: 260px;
    }

    .talking_item-btn {
        font-size: 20px;
        height: 60px;
    }

    .hight_comfort .comfort_item {
        width: calc(50% - 12px);
    }

    .hight_comfort .comfort_items {
        margin-bottom: 60px;
    }
}





@media (max-width: 991.98px) {
    .container {
        max-width: 730px;
    }

    .header_inner {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        height: 100%;
        top: 84px;
        right: 0;
        background-color: #fff;
        transition: all 0.6s;
        padding-top: 30px;
    }

    .menu {
        flex-direction: column;
        gap: 20px;
    }

    .header_inner.active {
        opacity: 1;
        visibility: visible;
    }

    .header_wrapper {
        padding: 10px 0 16px;
    }

    .header_right {
        margin-top: 10px;
    }

    .header_logo {
        width: 120px;
    }

    .main {
        margin-top: 84px;
    }

    .main_title {
        font-size: 42px;
    }

    .main_teg {
        font-size: 14px;
    }

    .main_text {
        font-size: 22px;
    }

    .main_btn {
        font-size: 16px;
    }

    .advantages_img {
        display: none;
    }

    .advantages_items {
        gap: 40px;
    }

    .advantages_item {
        width: calc(50% - 20px);
        min-height: 1px;
    }

    .advantages_item-title {
        font-size: 26px;
    }

    .advantages_item:nth-child(1) {
        margin-top: 0;
    }

    .advantages_item:nth-child(1) .advantages_item-circle {
        width: 100px;
        height: 100px;
        right: -20px;
        top: -20px;
    }

    .advantages_item:nth-child(2) .advantages_item-circle {
        width: 48px;
        height: 48px;
        bottom: -20px;
        right: -20px;
    }

    .advantages_item:nth-child(3) .advantages_item-circle {
        width: 48px;
        height: 48px;
        top: -20px;
        left: -20px;
    }

    .advantages_item:nth-child(4) .advantages_item-circle {
        width: 100px;
        height: 100px;
        right: auto;
        left: 20px;
        top: -30px;
    }

    .tariffs_tabs {
        justify-content: center;
    }

    .night_img {
        width: 480px;
    }

    .title {
        font-size: 46px;
    }

    .transformation_text {
        position: relative;
        z-index: 2;
    }

    .transformation_item-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .online_text br {
        display: none;
    }

    .online_text {
        font-size: 22px;
    }

    .transformation_text br {
        display: none;
    }

    .online .title {
        margin-bottom: 30px;
    }

    .online_item-text {
        font-size: 18px;
    }

    .online_item-title {
        font-size: 28px;
    }

    .online_item:nth-child(1) .online_item-img {
        width: 320px;
        right: -10px;
        bottom: 0px;
    }

    .online_item:nth-child(2) .online_item-img {
        width: 200px;
    }

    .online_item-teg {
        text-align: center;
    }

    .online_item:nth-child(4) .online_item-img {
        width: 220px;
    }

    .online_item:nth-child(5) .online_item-img {
        width: 120px;
    }

    .online_item:nth-child(6) .online_item-img {
        width: 180px;
    }

    .online_item:nth-child(8) .online_item-img {
        width: 160px;
    }

    .lessons_item-wrapper::before {
        width: 750px;
        height: 572px;
        top: -78px;
    }

    .lessons_item-wrapper {
        height: 457px;
        padding: 30px;
    }

    .lessons_item-title {
        font-size: 42px;
    }

    .lessons_item-inner {
        width: 480px;
    }

    .lessons_item:nth-child(2) .lessons_item-inner {
        right: -30px;
    }

    .lessons_item:nth-child(3) .lessons_item-inner {
        top: 240px;
        left: -30px;
    }

    .lessons_item:last-child {
        margin-bottom: 0;
    }

    .consult_body {
        padding: 30px;
    }

    .consult_title {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .consult_text {
        font-size: 20px;
    }

    .consult_btn {
        font-size: 20px;
        width: 360px;
        height: 60px;
    }

    .consult_body {
        border-radius: 30px;
    }

    .consult_body-img:nth-child(1) {
        width: 280px;
        height: 280px;
        bottom: -100px;
    }

    .consult_body-img:nth-child(2) {
        width: 280px;
        height: 280px;
        bottom: -100px;
        left: -90px;
    }

    .steps {
        border-radius: 30px;
    }

    .steps_item-title {
        font-size: 32px;
    }

    .steps_item-text {
        font-size: 20px;
        padding-right: 160px;
    }

    .steps_item:nth-child(3) .steps_item-img {
        right: 100px;
    }

    .guild .title {
        margin-bottom: 30px;
    }

    .guild_slider {
        width: calc(100% + ((100vw - 700px) / 2));
    }

    .guild_slide {
        width: 700px;
    }

    .guild_slide-title {
        font-size: 36px;
    }

    .guild_slide-text {
        font-size: 20px;
    }

    .guild_slide-info {
        width: 420px;
    }

    .guild_slider .slick-next {
        left: 670px;
    }

    .guild_slide-img {
        width: calc(100% - 420px);
    }

    .knowledge {
        border-radius: 30px;
    }

    .knowledge .title {
        margin-bottom: 30px;
    }

    .knowledge_item-btn {
        font-size: 20px;
    }

    .knowledge_item-wrapper {
        margin-bottom: 20px;
    }

    .consult_road .consult_body-img:nth-child(1) {
        right: -90px;
    }

    .team {
        border-radius: 30px;
    }

    .team_text {
        font-size: 20px;
    }

    .team_slider {
        width: calc(100% + ((100vw - 700px) / 2));
    }

    .team_slide {
        width: 700px;
    }

    .team_slide-title {
        font-size: 36px;
    }

    .team_slide-text {
        font-size: 20px;
        padding-right: 0;
    }

    .team_slide-desc {
        font-size: 18px;
    }

    .team_slide-prof {
        font-size: 18px;
        width: 200px;
    }

    .team_slide-info {
        width: 380px;
    }

    .team_slide-img {
        width: 360px;
    }

    .team_slider .slick-next {
        left: 670px;
    }

    .resalts {
        border-radius: 30px;
    }

    .resalts .title {
        font-size: 46px;
        margin-bottom: 30px;
    }

    .resalts_slider {
        width: calc(100% + ((100vw - 700px) / 2));
    }

    .resalts_slider .slick-next {
        left: 670px;
    }

    .resalts_slide {
        width: 700px;
    }

    .resalts_btn {
        width: 320px;
        height: 70px;
        font-size: 20px;
        margin: 30px auto 0;
    }

    .resalts_slide-btn {
        width: 320px;
        height: 70px;
        font-size: 20px;
    }

    .reviews_btn {
        width: 320px;
        height: 70px;
        font-size: 20px;
    }

    .reviews {
        border-radius: 30px;
    }

    .reviews_item {
        height: 486px;
    }

    .faq_item-title span {
        width: 32px;
    }

    .faq_item-title span img {
        width: 100%;
        height: auto;
    }

    .faq_item-title {
        font-size: 24px;
    }

    .faq_item-text {
        font-size: 18px;
    }

    .partners {
        border-radius: 30px;
    }

    .partners_item-text {
        font-size: 18px;
    }

    .partners_item-title {
        font-size: 22px;
    }

    .order_title {
        font-size: 32px;
    }

    .order_text {
        font-size: 20px;
    }

    .footer_options {
        width: 100%;
    }

    .menu_burger {
        display: flex;
        width: 30px;
        margin-top: 10px;
        height: 20px;
        position: relative;
    }

    .menu_burger::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2.5px;
        background-color: #20488A;
        border-radius: 2px;
        top: 0;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active::before {
        transform: rotate(45deg);
        top: 8.5px;
    }

    .menu_burger::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2.5px;
        background-color: #20488A;
        border-radius: 2px;
        bottom: 0;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .menu_burger span {
        position: absolute;
        content: "";
        width: 100%;
        height: 2.5px;
        background-color: #20488A;
        border-radius: 2px;
        top: 8.5px;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active span {
        transform: scale(0)
    }

    .header_right {
        margin-left: auto;
        margin-right: 30px;
    }

    .header_inner .header_btn {
        display: flex;
        margin: 40px auto 0;
        font-size: 14px;
        width: 180px;
        height: 40px;
    }

    .transformation {
        border-radius: 30px;
    }

    .approach {
        margin-top: 84px;
    }

    .approach_title {
        font-size: 52px;
    }

    .approach_text {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .pass_item-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .pass_item-icon {
        width: 68px;
    }

    .pass_item {
        padding-left: 90px;
        padding-top: 0;
    }

    .practice_item {
        width: calc(50% - 10px);
        padding: 20px;
        font-size: 18px;
    }

    .practice_wrapper {
        padding: 30px;
    }

    .practice_wrapper-text {
        font-size: 24px;
    }

    .practice_wrapper-title {
        font-size: 36px;
    }

    .practice_wrapper-subtitle {
        font-size: 18px;
    }

    .pass_item-icon img {
        width: 100%;
        height: auto;
    }

    .pass_item-text {
        font-size: 16px;
    }

    .video_block {
        border-radius: 30px 30px 0 0;
    }

    .video_block-body {
        width: 100%;
        height: 458px;
    }

    .video_block-body::before {
        background-position: center;
    }

    .video_block-body::before {
        top: -44px;
        width: 766px;
        height: 542px;
    }

    .video_block {
        padding-bottom: 100px;
    }

    .learn {
        border-radius: 30px 30px 0 0;
    }

    .learn_title {
        font-size: 52px;
        margin-bottom: 50px;
    }

    .learn_text {
        font-size: 26px;
        max-width: 520px;
    }

    .learn_wrapper-img {
        width: 360px;
        right: -130px;
        bottom: -140px;
    }

    .learn_btn {
        font-size: 24px;
        width: 360px;
        height: 70px;
    }

    .learn_item-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .learn_item {
        padding: 20px;
    }

    .learn_item-text {
        font-size: 24px;
    }

    .learn_item-more {
        font-size: 24px;
        height: 70px;
    }

    .ecosystem {
        border-radius: 30px 30px 0 0;
    }

    .ecosystem_text {
        font-size: 24px;
    }

    por {
        font-size: 46px;
    }

    .ecosystem_wrapper-text {
        font-size: 24px;
    }

    .ecosystem_inner {
        flex-direction: column;
        gap: 30px;
    }

    .ecosystem_btn {
        height: 70px;
        font-size: 24px;
    }

    .practice {
        border-radius: 30px 30px 0 0;
    }

    .guilds {
        margin-top: 84px;
    }

    .guilds_title {
        font-size: 52px;
    }

    .guilds_btn {
        font-size: 24px;
        height: 70px;
    }

    .guilds_text {
        font-size: 24px;
    }

    .guildsHow::before {
        display: none;
    }

    .guildsHow_text {
        padding-right: 0;
    }

    .guildsHow_items {
        gap: 20px;
    }

    .guildsHow_item {
        width: calc(50% - 10px);
    }

    .guildsHow_wrapper {
        margin-top: 60px;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .guildsLive_slider .slick-arrow {
        display: none !important;
    }

    .guildsHow {
        padding-bottom: 60px;
    }

    .guildsLive {
        padding-bottom: 60px;
    }

    .guildsHow_wrapper-text {
        max-width: 100%;
    }

    .guildsRoad_items::after {
        display: none;
    }

    .guildsRoad_item {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .guildsRoad_item-title {
        font-size: 24px;
    }

    .guildsRoad_item-text {
        font-size: 18px;
    }

    .guildTotal_wrapper-text {
        padding-right: 0;
        font-size: 24px;
    }

    .guildTotal_wrapper-btn {
        font-size: 24px;
    }

    .guildTotal_wrapper-title {
        font-size: 32px;
    }

    .guildTotal_img {
        width: 320px;
    }

    .profession {
        margin-top: 87px;
    }

    .profession_info {
        width: 540px;
    }

    .profession_img {
        width: 600px;
        top: 20px;
    }

    .profession_inner {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .profession_btn {
        font-size: 22px;
        padding: 20px;
    }

    .create_items {
        margin-bottom: 20px;
    }

    .create_item {
        flex: auto;
        width: calc(50% - 10px);
    }

    .faculty_text {
        font-size: 20px;
    }

    .faculty_item:last-child,
    .faculty_item {
        width: calc(50% - 10px);
    }

    .faculty_item:last-child .faculty_item-title {
        font-size: 22px;
    }

    .teach_text {
        font-size: 22px;
    }

    .mpoiOrder_title {
        font-size: 32px;
    }

    .mpoiOrder_text {
        font-size: 22px;
    }

    .mpoiOrder_link {
        font-size: 22px;
    }

    .courses_filter-title {
        font-size: 22px;
    }

    .courses_filter-title::before {
        top: 2px;
    }

    .courses_items {
        gap: 20px;
    }

    .courses_item {
        width: calc(50% - 10px);
    }

    .courses_filter-check {
        gap: 14px;
    }

    .prodject {
        padding-top: 60px;
        margin-top: 84px;
    }

    .prodjectPractic_items {
        gap: 20px;
        flex-wrap: wrap;
    }

    .prodjectPractic_item {
        width: calc(50% - 10px);
    }

    .prodjectPractic_items::before {
        display: none;
    }

    .prodjectExamples_warpper::before {
        top: -24px;
        right: -40px;
        width: 270px;
        height: 201px;
    }

    .prodjectExamples_text {
        font-size: 24px;
    }

    .prodjectExamples_item-img {
        display: none;
    }

    .prodjectExamples_item {
        padding: 20px;
    }

    .prodjectExamples_item-text {
        font-size: 18px;
    }

    .prodjectExamples {
        border-radius: 30px;
    }

    .prodjectSteps,
    .prodjectRoad,
    .prodjectPractic {
        border-radius: 30px 30px 0 0;
    }

    .prodjectRoad_item {
        font-size: 24px;
    }

    .prodjectSteps_text {
        font-size: 24px;
    }

    .prodjectSteps_img {
        display: none;
    }

    .prodjectSteps_items {
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .prodjectSteps_item {
        margin-top: 0 !important;
        width: calc(50% - 10px);
    }

    .prodject_ecosystem {
        padding: 60px 0;
    }

    .press {
        margin-top: 84px;
    }

    .press_title {
        font-size: 64px;
        margin-bottom: 30px;
    }

    .press_text {
        font-size: 24px;
    }

    .press_partners-icon {
        width: 110px;
        height: 110px;
        min-width: 110px;
    }

    .press_partners-option {
        font-size: 18px;
    }

    .press_partners-title {
        font-size: 32px;
    }

    .press_partners-btn {
        font-size: 24px;
    }

    .press_partners-text {
        font-size: 20px;
    }

    .press_partners-wrapper {
        margin-bottom: 30px;
    }

    .press_item-btn {
        text-align: center;
    }

    .press_item {
        padding: 20px;
    }

    .press_ecosystem .ecosystem_wrapper-text {
        font-size: 24px;
    }

    .default_page {
        margin-top: 120px;
    }

    .clubs_title {
        font-size: 36px;
    }

    .clubs_text {
        font-size: 20px;
    }

    .clubs_filters {
        margin-bottom: 30px;
    }

    .clubs_items {
        gap: 20px;
    }

    .clubs_item {
        width: calc(50% - 10px);
    }

    .clubs_tabs {
        gap: 10px;
    }

    .clubs_tab {
        padding: 10px 16px;
        font-size: 16px;
    }

    .route_title {
        font-size: 46px;
    }

    .route_text {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .route_btn {
        margin: 0 auto;
        font-size: 20px;
    }

    .adapting_img {
        display: none;
    }

    .adapting_text {
        max-width: 100%;
        font-size: 22px;
    }

    .adapting {
        margin-bottom: 60px;
    }

    .routeSubjects_wrapper-img {
        width: 260px;
        right: -110px;
        top: -60px;
    }

    .criteria_text {
        font-size: 22px;
    }

    .ecosystem {
        padding: 60px 0;
    }

    .blog {
        margin-top: 84px;
    }

    .clubs_tabs {
        padding-right: 15px;
        overflow: auto;
        width: 100%;
    }

    .clubs_tabs::-webkit-scrollbar {
        display: none;
    }

    .clubs_tab {
        white-space: nowrap;
    }

    .blog_item-img {
        height: 380px;
    }

    .blog_item-text {
        font-size: 16px;
    }

    .blog_item-title {
        font-size: 22px;
    }

    .primary_video-body {
        width: 700px;
        height: 486px;
    }

    .primary_video-body::before {
        width: 900px;
        height: 652px;
        top: -71px;
    }

    .primary_video {
        padding-bottom: 120px;
        border-radius: 0 0 30px 30px;
    }

    .save .save_text {
        font-size: 24px;
    }

    .save_inner-text {
        font-size: 20px;
    }

    .save_item {
        font-size: 20px;
        padding: 16px;
    }

    .save_wrapper {
        margin-bottom: 40px;
    }

    .save_desc {
        font-size: 22px;
    }

    .primary_lesson-item {
        width: 100%;
        min-height: 345px;
    }

    .primary_lesson-item:nth-child(3) {
        padding-right: 20px;
        padding-bottom: 220px;
    }

    .primary_lesson-items {
        gap: 20px;
    }

    .primary_project {
        flex-direction: column-reverse;
    }

    .primary_project-img {
        width: 100%;
        height: 390px;
    }

    .primary_project:nth-child(2) .primary_project-img {
        width: 280px;
        height: 260px;
    }

    .primary_project:nth-child(2) {
        padding-left: 224px;
    }

    .primary_project:nth-child(2) .primary_project-text {
        font-size: 20px;
    }

    .primary_tarifs-title {
        font-size: 48px;
    }

    .primary_tarifs-tegs {
        flex-wrap: wrap;
        gap: 20px;
    }

    .primary_tarifs-teg {
        width: calc(50% - 10px);
    }

    .vacancies {
        margin-top: 84px;
        padding-bottom: 360px;
    }

    .vacancies_img {
        bottom: -400px;
    }

    .vacancies_title {
        font-size: 46px;
    }

    .vacancies_text {
        font-size: 22px;
    }

    .comfort .title {
        font-size: 46px;
        margin-bottom: 30px;
    }

    .comfort_items {
        gap: 20px;
        flex-wrap: wrap;
    }

    .comfort_item {
        width: calc(50% - 10px);
    }

    .directions_wrapper {
        padding: 30px;
    }

    .vacancies_ecosystem {
        padding-top: 140px;
    }

    .vacanciesRoad {
        padding: 40px 0;
        border-radius: 30px;
    }

    .directions+.mpoiResalt .title {
        font-size: 46px;
    }

    .additional {
        margin-top: 84px;
    }

    .additional_title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .additional_text {
        font-size: 20px;
    }

    .additional_wrapper {
        margin-bottom: 30px;
    }

    .additional_inner {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .comfort_inner-title {
        font-size: 32px;
    }

    .pass {
        border-radius: 30px 30px 0 0;
        padding-bottom: 100px;
    }

    .pass_video {
        width: 700px;
        height: 399px;
    }

    .pass_video::before {
        width: 990px;
        height: 460px;
        top: -30px;
    }

    .safety {
        margin-top: 84px;
    }

    .safety_sistem-img {
        height: 392px;
    }

    .safety_sistem-wrapper::before {
        width: 220px;
        right: -40px;
        bottom: -10px;
        height: 272px;
    }

    .entertainment_text {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .entertainment_img {
        width: 80%;
        margin: 0 auto;
    }

    .pass_text,
    .environment_item,
    .environment_text {
        font-size: 22px;
    }

    .simulators_info {
        width: 100%;

    }

    .simulators_text {
        text-shadow: 1px 1px 1px #ffffff40;
    }

    .certificate_item:nth-child(1) .certificate_item-text {
        padding-right: 0;
    }

    .certificate_item:nth-child(1) .certificate_item-img {
        position: relative;
        inset: auto;
    }

    .certificate_item-img {
        order: 1;
    }

    .certificate_item-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .preparation {
        margin-top: 84px;
    }

    .preparation_title {
        font-size: 36px;
    }

    .preparation_tegs {
        gap: 10px;
    }

    .preparation_text {
        font-size: 26px;
    }

    .lessons .title {
        margin-bottom: 60px;
    }

    .concentration_item,
    .concentration_text {
        font-size: 22px;
    }

    .concentration_item {
        padding-left: 90px;
    }

    .concentration_item img {
        width: 80px;
        height: auto;
    }

    .comfort_bot {
        margin-top: 30px;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .comfort_bot-title {
        width: 100%;
    }

    .analytics::before {
        width: 280px;
        height: 280px;
    }

    .analytics_text {
        font-size: 22px;
    }

    .first_wrapper {
        flex-direction: column;
        margin-bottom: 60px;
        gap: 20px;
    }

    .first_info {
        width: 100%;
    }

    .studentResults_item {
        width: calc(50% - 10px);
        height: 454px;
    }

    .ecosystem_wrapper-title {
        font-size: 36px;
    }

    .english {
        margin-top: 84px;
    }

    .english_text {
        font-size: 20px;
    }

    .english_title {
        font-size: 46px;
    }

    .english_desc {
        font-size: 18px;
    }

    .english_btn {
        font-size: 24px;
        padding: 16px;
    }

    .talking_item {
        width: 100%;
    }

    .talking_items {
        gap: 20px;
    }

    .practices_wrapper::before {
        width: 360px;
        height: 320px;
    }

    .progress_text,
    .language_innerm,
    .language_text,
    .practices_text {
        font-size: 18px;
    }

    .language_img {
        width: 200px;
    }

    .progress_text,
    .language_inner {
        font-size: 22px;
    }

    .progress::before {
        display: none;
    }

    .chose_tabs {
        margin-bottom: 20px;
        gap: 10px;
    }

    .chose_tab {
        font-size: 16px;
    }

    .prodject_text-bef {
        display: none;
    }

    .attend_items::before {
        display: none;
    }

    .attend_item {
        padding: 20px;
    }

    .attend_item:last-child {
        padding-right: 20px;
    }

    .attend_item-video {
        position: relative;
        width: 100%;
        margin-top: 30px;
        height: 362px;
        inset: auto;
    }

    .intelligence_item {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .intelligence_item-info {
        width: 100%;
    }

    .intelligence_item:nth-child(2n) {
        flex-direction: column;
    }

    .inside_tabs {
        gap: 20px;
        margin-bottom: 30px;
    }

    .inside_img {
        display: none;
    }

    .inside_items-line {
        display: none;
    }

    .inside_items {
        gap: 30px;
    }

    .inside_content:last-child .inside_item,
    .inside_item {
        width: calc(50% - 15px);
        font-size: 18px;
    }

    .hightResults .studentResults_item {
        width: calc(50% - 10px);
    }

    .hightResults .studentResults_items {
        gap: 20px;
    }
}


@media (max-width: 766.98px) {
    .container {
        max-width: 100%;
    }

    .header_log {
        width: 50px;
        height: 42px;
        border-radius: 20px;
    }

    .main {
        margin-top: 78px;
    }

    .main_body {
        padding-top: 50px;
    }

    .main_wrapper {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .main_title {
        font-size: 26px;
    }

    .main_tegs {
        gap: 10px;
    }

    .main_teg {
        text-align: center;
        font-size: 12px;
    }

    .main_tegs {
        margin-bottom: 20px;
    }

    .main_text {
        font-size: 16px;
    }

    .main_btns {
        flex-direction: column;
        gap: 10px;
    }

    .main_btn {
        width: 100%;
        padding: 20px 10px;
    }

    .advantages_item {
        width: 100%;
    }

    .advantages_items {
        gap: 10px;
    }

    .advantages_item-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .advantages_item-text {
        font-size: 16px;
    }

    .header_inner {
        top: 78px;
    }

    .tariffs_text {
        font-size: 18px;
    }

    .tariffs_tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: calc(100% + 15px);
        padding-right: 15px;
        overflow: auto;
        margin-bottom: 20px;
    }

    .tariffs_tab {
        white-space: nowrap;
        font-size: 16px;
    }

    .tariffs_tabs::-webkit-scrollbar {
        display: none;
    }

    .tariffs_items {
        gap: 10px;
    }

    .tariffs_item {
        width: 100%;
    }

    .tariffs_item-title {
        font-size: 20px;
    }

    .tariffs_item-subtitle {
        margin-bottom: 5px;
    }

    .tariffs_item-option {
        font-size: 16px;
    }

    .tariffs_item-format {
        font-size: 16px;
    }

    .tariffs_item-total {
        font-size: 24px;
    }

    .night_wrapper {
        gap: 30px;
        padding: 30px 20px 260px;
    }

    .night_faq-title {
        font-size: 18px;
        padding-right: 40px;
    }

    .night_faq-list li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .night_img {
        width: 320px;
        right: 50%;
        transform: translateX(50%);
    }

    .night_title {
        font-size: 20px;
    }

    .night_subtitle {
        font-size: 24px;
    }

    .night_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .night_price {
        font-size: 32px;
    }

    .night_btn {
        width: 100%;
        font-size: 20px;
        height: 60px;
    }

    .title,
    .transformation .title {
        font-size: 32px;
    }

    .transformation .title {
        margin-bottom: 20px;
    }

    .transformation_text {
        font-size: 18px;
    }

    .transformation_items {
        gap: 10px;
    }

    .transformation_item {
        width: 100%;
        padding: 20px;
    }

    .transformation_item-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .transformation_item-btn {
        width: 100%;
        height: 54px;
        font-size: 16px;
    }

    .online {
        border-radius: 30px 30px 0 0;
        padding: 40px 0 120px;
    }

    .transformation {
        padding-bottom: 160px;
    }

    .online_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .online_items {
        gap: 10px;
    }

    .online_item {
        width: 100%;
    }

    .online_item-title {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .online_item-text {
        font-size: 16px;
    }

    .online_item:nth-child(2) .online_item-img {
        right: 10px;
        bottom: 0px;
    }

    .online_item:nth-child(4) .online_item-img {
        width: 262px;
    }

    .online_item:nth-child(5) .online_item-img {
        width: 140px;
    }

    .online_item:nth-child(6) .online_item-img {
        width: 220px;
    }

    .online_item:nth-child(8) .online_item-img {
        bottom: 0;
        width: 190px;
    }

    .lessons {
        border-radius: 30px 30px 0 0;
    }

    .lessons .title {
        margin-bottom: 30px;
    }

    .lessons_item-wrapper {
        padding: 20px 20px;
        height: calc(68vw - 30px);

        border-radius: 10px;
    }

    .lessons_item-bg {
        border-radius: 10px;
    }

    .lessons_item-wrapper::before {
        width: calc(110vw - 30px);
        height: calc(82vw - 30px);
        top: -10vw;
    }

    .lessons_item-title {
        font-size: 24px;
    }

    .lessons_item-inner {
        width: 300px;
        padding: 20px;
    }

    .lessons_item-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .lessons_item:nth-child(1) .lessons_item-inner {
        left: -10px;
        top: 30vw;
    }

    .lessons_item:nth-child(2) .lessons_item-inner {
        top: 30vw;

        right: -10px;
    }

    .lessons_item:nth-child(3) .lessons_item-inner {
        left: -10px;
        top: 30vw;
    }

    .lessons_item-text {
        font-size: 14px;
    }

    .lessons_item {
        margin-bottom: 60px;
    }

    .consult_body {
        padding: 30px 20px;
    }

    .consult_wrapper {
        padding: 20px;
    }

    .consult_title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .consult_text {
        font-size: 16px;
    }

    .consult_body-img:nth-child(2) {
        width: 120px;
        height: 120px;
        bottom: -60px;
        left: -10px;
    }

    .consult_body-img:nth-child(1) {
        width: 120px;
        right: -10px;
        bottom: -60px;
        height: 120px;
    }

    .consult_btn {
        width: 100%;
        font-size: 16px;
    }

    .consult {
        margin-bottom: 80px;
    }

    .steps {
        background-position: center;
        border-radius: 30px 30px 0 0;
    }

    .steps .title {
        margin-bottom: 30px;
    }

    .steps_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .steps_item {
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 10px;
        padding-bottom: 60px;
    }

    .steps_item-img {
        display: none;
    }

    .steps_item-number {
        height: 40px;
    }

    .steps_item-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .steps_item-text {
        font-size: 18px;
        padding-right: 0;
    }

    .steps {
        padding-bottom: 60px;
    }

    .guild_text {
        font-size: 16px;
    }

    .guild_slider {
        width: calc(100% + 15px)
    }

    .guild_slide {
        width: 300px;
        margin-right: 10px;
        flex-direction: column;
    }

    .guild_slide-info {
        width: 100%;
        padding: 20px;
    }

    .guild_slide-img {
        width: 60%;
    }

    .guild_slide-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .guild_slide-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .guild_slider .slick-arrow {
        display: none !important;
    }

    .knowledge_item-title {
        font-size: 20px;
    }

    .guild_slide-btn {
        font-size: 16px;
        padding: 10px;
        width: 100%;
    }

    .knowledge_item-wrapper {
        padding-bottom: 70px;
    }

    .knowledge_item-number {
        width: 120px;
    }

    .knowledge_item-text {
        font-size: 16px;
        padding-right: 0;
    }

    .knowledge_item-btn {
        font-size: 16px;
        width: 100%;
    }

    .consult_road .consult_body-img:nth-child(1) {
        right: -10px;
        bottom: -60px;
    }

    .consult_road .consult_body-img:nth-child(2) {
        left: -10px;
        bottom: -60px;
    }

    .team .title {
        margin-bottom: 30px;
    }

    .team_text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .team_slider {
        width: calc(100% + 15px)
    }

    .team_slide {
        width: 300px;
        margin-right: 10px;
        flex-direction: column;
        padding: 20px 10px;
    }

    .team_slide-info {
        width: 100%;
    }

    .team_slide-title {
        font-size: 24px;
    }

    .team_slide-text {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .team_slide-img {
        position: relative;
        width: 240px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        transform: none;
        inset: auto;
    }

    .team_slider .slick-arrow {
        display: none !important;
    }

    .team_slide-prof {
        position: relative;
        margin-bottom: 20px;
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    .team_slide-desc {
        font-size: 16px;
    }

    .resalts .title {
        font-size: 32px;
    }

    .resalts_slider {
        width: calc(100% + 15px);
    }

    .resalts_slide {
        width: 300px;
        margin-right: 10px;
        padding: 30px 20px;
    }

    .resalts_slide-top {
        flex-direction: column;
        gap: 10px;
    }

    .resalts_slide-img {
        width: 80px;
        height: 80px;
    }

    .resalts_slide-title {
        font-size: 24px;
    }

    .resalts_slide-subtitle {
        font-size: 18px;
    }

    .resalts_slide-option span {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .resalts_slide-option {
        font-size: 16px;
        gap: 14px;
        margin-bottom: 10px;
    }

    .resalts_slide-text {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .resalts_slider .slick-arrow {
        display: none !important;
    }

    .resalts_slide-option span::before {
        top: 33px;
        left: 15px;
        height: calc(100% - 22px);
    }

    .resalts_slide-btn {
        width: 100%;
        height: 50px;
        font-size: 16px;
    }

    .resalts_btn {
        height: 60px;
        font-size: 18px;
    }

    .reviews_top {
        flex-direction: column;
        margin-bottom: 20px;
        gap: 30px;
        align-items: flex-start;
    }

    .reviews_btn {
        width: 100%;
        height: 60px;
        font-size: 16px;
    }

    .reviews_item {
        width: 100%;
        height: auto;
    }

    .reviews_items {
        gap: 10px;
    }

    .faq .title {
        margin-bottom: 20px;
    }

    .faq_item-title {
        font-size: 18px;
        padding: 20px 40px 20px 0;
    }

    .faq_item-title span {
        width: 24px;
    }

    .partners_item {
        width: 100%;
    }

    .order_title {
        font-size: 24px;
    }

    .order_text {
        font-size: 16px;
    }

    .order_wrapper {
        padding: 30px 20px;
    }

    .inp {
        padding-left: 20px;
        height: 56px;
        font-size: 14px;
    }

    .footer_inner-desc,
    .footer_inner-links {
        font-size: 14px;
    }

    .footer_option,
    .footer_menu a {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer_wrapper {
        gap: 30px;
    }

    .approach {
        margin-top: 78px;
        padding: 80px 0 70px;
    }

    .approach_title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .approach_text {
        font-size: 18px;
    }

    .approach_btn {
        width: 100%;
        height: 60px;
        font-size: 18px;
    }

    .pass_item-icon {
        width: 52px;
    }

    .pass_item {
        padding-left: 64px;
        margin-bottom: 20px;
    }

    .practice_item {
        width: 100%;
        font-size: 16px;
    }

    .practice_items {
        gap: 10px;
    }

    .practice_wrapper {
        padding: 30px 20px;
    }

    .practice_wrapper-text {
        font-size: 16px;
    }

    .practice_wrapper-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .practice_wrapper-subtitle {
        font-size: 16px;
    }

    .video_block {
        padding: 40px 0;
    }

    .video_block-body {
        height: calc(68vw - 30px);
    }

    .video_block-content {
        border-radius: 10px;
    }

    .video_block-body::before {
        top: -10%;
        width: calc(105vw - 30px);
        height: calc(79vw - 30px);
    }

    .learn_title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .learn_wrapper {
        padding: 20px 30px;
        margin-bottom: 220px;
    }

    .learn_btn {
        width: 100%;
        height: 60px;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
        font-size: 18px;
    }

    .learn_wrapper-img {
        width: 280px;
        right: -80px;
        bottom: -240px;
    }

    .learn_text {
        font-size: 18px;
    }

    .learn .title {
        margin-bottom: 30px;
    }

    .learn_item-title {
        font-size: 26px;
    }

    .learn_item-text {
        font-size: 18px;
    }

    .learn_item {
        border-radius: 10px;
    }

    .learn_items {
        margin-bottom: 30px;
    }

    .learn_item-more {
        font-size: 16px;
        text-align: center;
        padding: 0;
    }

    .ecosystem_text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .ecosystem .title {
        margin-bottom: 20px;
    }

    por {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .ecosystem_wrapper {
        padding: 20px;
    }

    .ecosystem_wrapper-text br {
        display: none;
    }

    .ecosystem_btn {
        width: 100%;
        font-size: 18px;
        height: 60px;
    }

    .ecosystem_more {
        font-size: 22px;
    }

    .ecosystem_wrapper-text {
        font-size: 18px;
    }

    .guilds_title {
        font-size: 36px;
    }

    .guilds_btn {
        width: 100%;
        font-size: 18px;
        height: 60px;
    }

    .guilds_text {
        font-size: 18px;
    }

    .guildsHow_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .guildsHow_item {
        width: 100%;
        padding: 20px;
    }

    .guildsHow_items {
        gap: 10px;
    }

    .guildsHow_item-text {
        font-size: 16px;
    }

    .guildsHow_item-title {
        font-size: 20px;
    }

    .guildsHow_desc {
        font-size: 16px;
    }

    .guildsHow_wrapper-img {
        width: 100%;
    }

    .guildsHow_wrapper-text {
        font-size: 18px
    }

    .guildsHow {
        padding-bottom: 20px;
    }

    .guildsLive .title {
        margin-bottom: 30px;
    }

    .guildsLive {
        padding-bottom: 20px;
    }

    .guildsLive_slide {
        width: 300px;
        margin-right: 10px;
        padding: 20px;
    }

    .guildsLive_slide-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .guildsLive_slide-text {
        font-size: 16px
    }

    .guildsRoad .title {
        margin-bottom: 20px;
    }

    .guildsRoad .title br {
        display: none;
    }

    .guildsRoad_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .guildsRoad_item-title {
        font-size: 22px;
    }

    .guildsRoad_item-text {
        font-size: 16px;
    }

    .guild.green_way {
        padding: 20px 0;
    }

    .guildResalts_item {
        width: 100%;
        padding: 20px;
    }

    .guildResalts {
        padding-bottom: 20px;
    }

    .guildResalts_items {
        gap: 10px;
    }

    .guildResalts_item-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .guildResalts_item-text {
        font-size: 16px;
    }

    .guildTotal_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .guildTotal_wrapper {
        padding: 30px 20px;
    }

    .guildTotal_wrapper-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .guildTotal_wrapper-title br {
        display: none;
    }

    .guildTotal {
        padding-bottom: 320px;
    }

    .guildTotal_wrapper {
        margin-bottom: 20px;
    }

    .guildTotal_wrapper-btn {
        font-size: 18px;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .information_wrapper {
        width: 100vw;
        margin-left: -15px;
        border-radius: 20px;
    }

    .guildTotal_wrapper-text {
        font-size: 16px;
    }

    .default_page {
        margin-top: 100px;
    }

    .information_title {
        font-size: 24px;
        padding: 20px 10px;
    }

    .information_item-title {
        font-size: 18px;
        padding: 14px;
        padding-right: 30px;
    }

    .information_item-title::before {
        width: 14px;
        height: 8px;
        right: 16px;
    }

    .information_item {
        margin-bottom: 10px;
    }

    .information_item-content {
        font-size: 16px;
        line-height: 160%;
        padding: 30px 20px;
    }

    .profession {
        margin-top: 78px;
        padding-top: 10px;
        padding-bottom: 60px;
    }

    .profession_info {
        width: 100%;
    }

    .profession_img {
        position: relative;
        width: 100%;
        height: auto;
        inset: auto;
    }

    .profession_title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .profession_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .profession_btn {
        width: 100%;
        font-size: 18px;
        text-align: center;
    }

    .profession_link {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }

    .create .title {
        margin-bottom: 30px;
    }

    .create_items {
        gap: 10px;
    }

    .create_item {
        width: 100%;
    }

    .create_desc-title {
        font-size: 22px;
    }

    .create_item-title {
        font-size: 22px;
    }

    .create_desc-text {
        font-size: 18px;
    }

    .create {
        padding-bottom: 0;
    }

    .faculty_text {
        font-size: 16px;
    }

    .faculty_items {
        gap: 10px;
    }

    .faculty_item:last-child,
    .faculty_item {
        width: 100%;
    }

    .faculty_item-title,
    .faculty_item:last-child .faculty_item-title {
        font-size: 18px;
    }

    .faculty_items {
        margin-bottom: 0;
    }

    .faculty_item-img {
        height: 320px;
    }

    .teach_text {
        font-size: 16px;
    }

    .teach_text:last-child {
        margin-bottom: 0;
    }

    .teach {
        padding-bottom: 0;
    }

    .mpoiResalt_item-title {
        font-size: 24px;
    }

    .mpoiResalt_item-subtitle {
        font-size: 18px;
    }

    .mpoiOrder {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .mpoiOrder_wrapper {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .mpoiOrder_btn {
        font-size: 16px;
        width: 100%;
    }

    .mpoiOrder_title {
        font-size: 24px;
    }

    .mpoiOrder_link {
        font-size: 18px;
        text-align: center;
    }

    .mpoiOrder_text {
        font-size: 16px;
    }

    .courses_title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .courses_search {
        width: 100%;
        margin-bottom: 30px;
    }

    .courses_search input {
        height: 51px;
        font-size: 16px;
    }

    .courses_filter.active {
        position: relative;
    }

    .courses_filters {
        gap: 20px;
        flex-wrap: wrap;
    }

    .courses_filter {
        width: 100%;
    }

    .courses_filter-title {
        font-size: 18px;
    }

    .courses_filter-check {
        gap: 10px;
        font-size: 16px;
    }

    .courses_filter-drop {
        padding: 20px;
    }

    .courses_item {
        width: 100%;
    }

    .courses_items {
        gap: 10px;
    }

    .courses_item-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .courses_item-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .courses_item-option {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .courses_item-more {
        font-size: 20px;
    }

    .prodject {
        margin-top: 78px;
    }

    .prodject_title {
        font-size: 36px;
        margin-bottom: 38px;
    }

    .prodject_text {
        font-size: 18px;
    }

    .prodject_title br {
        display: none;
    }

    .prodject_btn {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .prodjectPractic_item-title {
        font-size: 22px;
    }

    .prodjectPractic_item-text {
        font-size: 16px;
    }

    .prodjectPractic_item {
        width: 100%;
    }

    .prodjectPractic_items {
        gap: 10px;
    }

    .prodjectExamples_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .prodjectExamples .title {
        margin-bottom: 120px;
        max-width: 325px;
    }

    .prodjectExamples_warpper::before {
        top: 73px;
    }

    .prodjectExamples_items {
        gap: 10px;
    }

    .prodjectExamples_item {
        width: 100%;
    }

    .prodjectExamples_item-title {
        margin-bottom: 12px;
    }

    .prodjectExamples_item-text {
        font-size: 16px;
    }

    .prodjectExamples_item-title {
        font-size: 22px;
    }

    .prodjectRoad .title br {
        display: none;
    }

    .prodjectRoad_item {
        font-size: 20px;
        padding-left: 42px;
        margin-bottom: 20px;
    }

    .prodjectRoad_item::before {
        left: 0;
    }

    .prodjectRoad_item::after {
        left: 6.5px;
    }

    .prodjectSteps_text {
        font-size: 18px;
    }

    .prodjectSteps_item {
        width: 100%;
    }

    .prodjectRoad_item::after {
        height: calc(100% + 20px);
    }

    .press {
        padding: 40px 0 120px;
        margin-top: 78px;
    }

    .press_title {
        font-size: 42px;
    }

    .press_text {
        font-size: 20px;
    }

    .press_partners-wrapper {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .press_partners-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .press_partners-option {
        font-size: 14px;
    }

    .press_partners-options {
        margin-bottom: 12px;
    }

    .press_partners-text {
        font-size: 16px;
    }

    .press_partners-item {
        margin-bottom: 40px;
    }

    .press_partners-btn {
        font-size: 16px;
        padding: 12px;
        text-align: center;
    }

    .press_partners-title {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .press_blog {
        border-radius: 30px;
    }

    .press_item {
        width: 100%;
    }

    .press_items {
        gap: 10px;
    }

    .press_item-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .press_item-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .press_ecosystem {
        padding-top: 140px;
    }

    .press_ecosystem por {
        margin-bottom: 30px;
    }

    .press_ecosystem .ecosystem_wrapper-text {
        font-size: 18px;
    }

    .press_ecosystem .ecosystem_btn {
        text-align: center;
        padding: 12px;
    }

    .clubs_wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .clubs_top {
        padding: 0;
        background: none;
        border: none;
    }

    .clubs_title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .clubs_text {
        font-size: 18px;
    }

    .clubs_top {
        margin-bottom: 30px;
    }

    .clubs_search {
        width: 100%;
    }

    .clubs_items {
        gap: 10px;
    }

    .clubs_item {
        width: 100%;
    }

    .clubs_search input {
        font-size: 16px;
    }


    .route {
        margin-top: 100px;
    }

    .route_wrapper {
        padding: 30px 20px;
    }

    .route_title {
        font-size: 32px;
    }

    .route_text {
        font-size: 16px;
    }

    .route_btn {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .adapting_text {
        font-size: 16px;
    }

    .adapting .title br {
        display: none;
    }

    .routeSubjects {
        padding: 45px 0;
        border-radius: 30px;
    }

    .adapting_text p {
        margin-bottom: 16px;
    }

    .routeSubjects .title {
        margin-bottom: 30px;
    }

    .routeSubjects_items {
        margin-bottom: 30px;
        gap: 10px;
    }

    .routeSubjects_item {
        width: 100%;
    }

    .routeSubjects_item-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .routeSubjects_item-text {
        font-size: 16px;
    }

    .routeSubjects_title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .routeSubjects_text {
        font-size: 16px;
    }

    .routeSubjects_text p:not(:last-child) {
        margin-bottom: 20px;
    }

    .routeSubjects_wrapper-img {
        width: 180px;
        right: -80px;
        top: -30px;
    }

    .criteria_text {
        font-size: 16px;
    }

    .criteria_text ol {
        padding-left: 26px;
    }

    .route_ecosystem por {
        margin-bottom: 20px;
    }

    .clubs_popup {
        padding: 30px 20px;
    }

    .clubs_popup-text {
        font-size: 16px;
    }

    .clubs_popup-top {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .clubs_popup-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .clubs_popup-subtitle {
        font-size: 16px;
    }

    .clubs_popup-img {
        width: 80px;
        height: 80px;
        min-width: 80px;
        border-radius: 10px;
    }

    .blog {
        margin-top: 78px;
        padding: 60px 0 120px;
    }

    .blog_wrapper {
        padding: 20px;
        border-radius: 16px;
    }

    .blog_title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .blog_text {
        font-size: 16px;
    }

    .blog_resalt {
        border-radius: 30px 30px 0 0;
    }

    .blog_resalt .clubs_tabs {
        gap: 10px;
    }

    .blog_resalt .clubs_tab {
        font-size: 16px;
    }

    .clubs_items:has(.blog_item) {
        gap: 10px;
    }

    .blog_item {
        width: 100%;
    }

    .blog_item-img {
        height: 60vw;
    }

    .blog_item-title {
        font-size: 20px;
    }

    .primary_video .title {
        margin-bottom: 40px;
    }

    .primary_video-body {
        width: 100%;
        height: 64vw;
    }

    .primary_video-body::before {
        width: 110vw;
        height: 87vw;
        top: -10vw;
    }

    .primary_video {
        padding-bottom: 60px;
    }

    .save .title {
        margin-bottom: 24px;
    }

    .save .save_text {
        font-size: 18px;
    }

    .primary_video-content {
        border-radius: 6px;
    }

    .save_desc {
        font-size: 16px;
    }

    .save {
        border-radius: 0 0 30px 30px;
    }

    .save_wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .save_inner,
    .save_items {
        width: 100%;
    }

    .save_item {
        font-size: 16px;
        padding: 16px;
        margin-bottom: 10px;
    }

    .save_inner-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .save_inner-text {
        font-size: 18px;
    }

    .primary_lesson .title {
        margin-bottom: 30px;
    }

    .primary_lesson-item {
        padding: 20px;
    }

    .primary_lesson-title {
        font-size: 24px;
    }

    .primary_lesson-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .primary_lesson-item:nth-child(2) .primary_lesson-text {
        padding-right: 0;
    }

    .primary_lesson-item:nth-child(3) .primary_lesson-img {
        width: 100%;
    }

    .primary_lesson-item:nth-child(3) {
        padding-bottom: 20px;
    }

    .primary_lesson-img {
        position: relative;
        inset: auto !important;
    }

    .primary_lesson-items {
        margin-bottom: 30px;
    }

    .primary_lesson .title br {
        display: none;
    }

    .primary_project {
        padding: 20px;
        gap: 20px;
    }

    .primary_project-img {
        width: 100%;
        min-width: 1px;
        height: auto;
        border-radius: 10px;
    }

    .primary_project-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .primary_project-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .primary_project-btn {
        width: 100%;
        font-size: 18px;
        height: 60px;
    }

    .primary_project {
        margin-bottom: 20px;
    }

    .primary_project:nth-child(2) {
        padding-left: 20px;
    }

    .primary_project:nth-child(2) .primary_project-img {
        position: relative;
        width: 100%;
        height: auto;
        inset: auto;
    }

    .primary_lesson+.prodjectExamples .title {
        margin-bottom: 30px;
    }

    .primary_become-items {
        gap: 10px;
    }

    .primary_become-item {
        width: 100%;
    }

    .primary_become-title {
        font-size: 22px;
    }

    .primary_become-text {
        font-size: 16px;
    }

    .primary_become+.faq {
        border-radius: 30px 30px 0 0;
        padding-bottom: 0;
    }

    .primary_tarifs-warpper {
        padding: 20px;
    }

    .primary_tarifs-title {
        font-size: 26px;
        padding: 10px;
    }

    .primary_tarifs-tegs {
        padding: 10px;
        gap: 10px;
    }

    .primary_tarifs-item {
        font-size: 16px;
        padding: 12px;
        margin-bottom: 10px;
    }

    .primary_access-text {
        font-size: 18px;
    }

    .primary_tarifs-teg {
        font-size: 14px;
        width: calc(50% - 5px);
    }

    .vacancies {
        margin-top: 78px;
    }

    .vacancies_title {
        font-size: 32px;
    }

    .vacancies_text {
        font-size: 18px;
    }

    .vacancies_btn {
        font-size: 18px;
        padding: 20px;
        width: 100%;
    }

    .vacancies_img {
        width: 380px;
        right: 50%;
        transform: translateX(50%);
        bottom: -370px;
    }

    .comfort .title {
        font-size: 28px;
    }

    .comfort_items {
        gap: 10px;
    }

    .comfort_item {
        width: 100%;
        padding: 20px;
    }

    .comfort_item-title {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .comfort_item-text {
        font-size: 16px;
    }

    .directions {
        border-radius: 30px;
    }

    .directions_text {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .directions_wrapper {
        padding: 30px 20px;
    }

    .directions .title {
        margin-bottom: 30px;
    }

    .directions_wrapper-title {
        font-size: 32px;
    }

    .directions_wrapper-text {
        font-size: 16px;
        margin-bottom: 2 0px;
    }

    .directions_wrapper-inner {
        flex-direction: column;
        gap: 20px;
    }

    .directions_wrapper-link,
    .directions_wrapper-btn {
        font-size: 16px;
    }

    .directions_wrapper-btn {
        width: 100%;
        padding: 20px;
    }

    .directions_wrapper-subtitle {
        font-size: 16px;
    }

    .directions+.mpoiResalt .title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .vacanciesRoad .title {
        margin-bottom: 20px;
    }

    .vacanciesRoad_item {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .vacanciesRoad_item:last-child {
        margin-bottom: 0;
    }

    .additional {
        margin-top: 78px;
    }

    .additional_wrapper {
        padding: 30px 20px;
    }

    .additional_title {
        font-size: 26px;
    }

    .additional_text {
        font-size: 18px;
    }

    .additional_btn {
        font-size: 18px;
        width: 100%;
    }

    .additional_inner {
        gap: 10px;
    }

    .comfort_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .comfort_inner {
        margin-top: 30px;
    }

    .comfort_inner-title {
        font-size: 24px;
    }

    .comfort_inner-text {
        font-size: 16px;
    }

    .pass .title {
        margin-bottom: 30px;
    }

    .additionalWays {
        border-radius: 30px;
    }

    .pass_video {
        width: 100%;
        height: auto;
    }

    .pass_video::before {
        width: 140%;
        height: 115%;
        background-position: center;
        top: -8%;
    }

    .pass {
        padding-bottom: 60px;
    }

    .additionalWays_items {
        gap: 10px;
    }

    .additionalWays_item {
        width: 100%;
    }

    .additionalWays_item-title {
        font-size: 24px;
    }

    .additionalWays_item-text {
        font-size: 16px;
    }

    .safety {
        margin-top: 78px;
    }

    .safety_title {
        font-size: 32px;
    }

    .safety_text {
        font-size: 22px;
    }

    .safety_wrapper {
        padding: 20px;
        margin-bottom: 140px;
    }

    .safety_sistem-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .safety_sistem-img {
        height: 52vw;
    }

    .safety_sistem-wrapper::before {
        display: none;
    }

    .entertainment {
        border-radius: 30px 30px 0 0;
    }

    .entertainment_text {
        font-size: 18px;
    }

    .entertainment_img {
        width: 100%;
    }

    .environment {
        border-radius: 30px;
    }

    .environment .title {
        margin-bottom: 22px;
    }

    .pass_text,
    .environment_item,
    .environment_text {
        font-size: 16px;
    }

    .environment_item::before {
        width: 36px;
        height: 34px;
    }

    .environment_item {
        padding-left: 50px;
    }

    .safety_btn {
        font-size: 16px;
        padding: 20px;
        width: 100%;
    }

    .environment_item:last-child {
        margin-bottom: 0;
    }

    .pass_text {
        margin-bottom: 30px;
    }

    .simulators {
        margin-top: 78px;
        padding: 60px 0;
        background-position: right;
    }

    .simulators_comfort .comfort_items {
        margin-bottom: 60px;
    }

    .certificate_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .certificate_item {
        padding: 20px;
    }

    .certificate_item-title {
        font-size: 22px;
    }

    .simulators_title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .simulators_text {
        font-size: 18px;
    }

    .certificate_item-text {
        font-size: 16px;
    }

    .certificate_item-img {
        width: 100% !important;
    }

    .certificate_item:nth-child(2) .certificate_item-img {
        min-width: 1px;
        height: auto;
    }

    .certificate_items {
        margin-bottom: 30px;

    }

    .preparation {
        margin-top: 78px;
        padding-top: 60px;
    }

    .preparation_wrapper {
        padding: 20px;
        margin-bottom: 20px;
    }

    .preparation_btn {
        font-size: 16px;
        padding: 16px;
        width: 100%;
    }

    .lessons_item-more {
        font-size: 16px;
        border-radius: 12px;
        padding: 14px;
    }

    .preparation_title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .lessons_item:nth-child(4) .lessons_item-more,
    .lessons_item:nth-child(2) .lessons_item-more {
        top: 40%;
        right: -10px;
    }

    .concentration .title br {
        display: none;
    }

    .lessons_item:nth-child(3) .lessons_item-more {
        top: 40%;
        left: -10px;
    }

    .preparation_teg {
        font-size: 12px;
    }

    .preparation_tegs {
        gap: 6px;
        margin-bottom: 14px;
    }

    .preparation_text {
        font-size: 16px;
    }

    .concentration_item,
    .concentration_text {
        font-size: 16px;
    }

    .concentration_item img {
        width: 52px;
    }

    .concentration_item {
        padding-left: 64px;
    }

    .concentration_item:last-child {
        margin-bottom: 0;
    }

    .preparation_comfort .comfort_item {
        width: 100%;
    }

    .preparation_comfort .comfort_items {
        gap: 10px;
    }

    .preparation_comfort .comfort_item-title {
        font-size: 18px;
    }

    .comfort_bot-title {
        font-size: 24px;
    }

    .comfort_bot-img {
        width: 100%;
    }

    .analytics::before {
        display: none;
    }

    .analytics {
        border-radius: 30px 30px 0 0;
    }

    .analytics_text {
        font-size: 16px;
    }

    .analytics_img {
        margin: 20px 0;
    }

    .first {
        border-radius: 30px 30px 0 0;
    }

    .first_text {
        font-size: 18px;
    }

    .first_img {
        width: 100%;
    }

    .first_info {
        font-size: 18px;
    }

    .first_inner {
        margin-top: 30px;
    }

    .first_inner-text {
        font-size: 16px;
    }

    .price {
        border-radius: 30px;
    }

    .price_value {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .price_btn {
        width: 100%;
        padding: 16px;
    }

    .price_value.current {
        padding: 20px;
    }

    .studentResults_text {
        font-size: 18px;
    }

    .studentResults_item {
        width: 100%;
        height: auto;
    }

    .studentResults {
        border-radius: 0 0 30px 30px;
    }

    .ecosystem_wrapper-title {
        font-size: 28px;
    }

    .preparationResalt_bot .ecosystem_wrapper-text {
        font-size: 18px;
    }

    .english_title {
        font-size: 32px;
    }

    .english {
        margin-top: 78px;
    }

    .english_text {
        font-size: 18px;
    }

    .english_desc {
        margin-bottom: 60px;
    }

    .english_btn {
        font-size: 16px;
        width: 100%;
    }

    .talking::before {
        display: none;
    }

    .talking_item-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .talking_item-text {
        font-size: 16px;
    }

    .practices_wrapper::before {
        display: none;
    }

    .practices_wrapper .title {
        padding-right: 0;
    }

    .progress_text,
    .language_innerm,
    .language_text,
    .practices_text {
        font-size: 16px;
    }

    .practices_text ul {
        padding-left: 26px;
    }

    .language::before {
        border-radius: 30px;
    }

    .language_img {
        display: none;
    }

    .language .title {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .language_inner {
        font-size: 16px;
        padding: 20px;
    }

    .progress .title {
        margin-bottom: 30px;
    }

    .progress_text p {
        margin-bottom: 20px;
    }

    .chose .title {
        margin-bottom: 30px;
    }

    .chose_tabs {
        flex-wrap: wrap;
    }

    .chose_content-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .chose_tab {
        padding: 12px;
        font-size: 14px;
    }

    .chose_content ul,
    .chose_content p {
        font-size: 16px;
    }

    .chose_content p {
        margin-bottom: 20px;
    }

    .chose_content-btn {
        font-size: 16px;
        padding: 12px;
        text-align: center;
        height: auto;
    }

    .chose_content ul {
        padding-left: 26px;
    }

    .chose_content {
        margin-bottom: 30px;
    }

    .hight_offer-text {
        font-size: 18px;
        margin: 24px 0;
    }

    .attend_item {
        width: 100%;
    }

    .attend_items {
        gap: 10px;
    }

    .attend_item-title {
        font-size: 20px;
    }

    .attend_item-text {
        font-size: 16px;
    }

    .attend .title {
        margin-bottom: 20px;
    }

    .attend_item-video {
        height: auto;
    }

    .comfort {
        padding-top: 20px;
    }

    .simulators_comfort .comfort_items:last-child {
        margin-bottom: 0;
    }

    .intelligence {
        border-radius: 30px;
    }

    .intelligence_text {
        font-size: 18px;
    }

    .intelligence_item-title {
        font-size: 24px;
    }

    .inside_text,
    .intelligence_item-text {
        font-size: 16px;
    }

    .intelligence_item-video {
        width: 100%;
        height: auto;
    }

    .intelligence_item:last-child {
        margin-bottom: 0;
    }

    .inside_text {
        margin-bottom: 24px;
    }

    .inside_tabs {
        gap: 10px;
    }

    .inside_title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .comfort_item-icon {
        width: 80px;
        height: 80px;
    }

    .inside_content:last-child .inside_item,
    .inside_item {
        width: 100%;
        font-size: 16px;
    }

    .inside_title {
        font-size: 18px;
    }

    .inside_items {
        gap: 20px;
    }

    .inside_tab {
        font-size: 18px;
    }

    .studentResults_text {
        margin-bottom: 20px;
    }

    .hightResults .studentResults_item {
        width: 100%;
        height: auto;
    }

    .hight_comfort .comfort_item {
        width: 100%;
    }

    .comfort {
        padding-bottom: 145px;
    }

    .transformation_item-popup {
        padding: 20px;
    }

    .popup_order {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .popup_order .order_text {
        margin-bottom: 20px;
    }

    .popup_order .fancybox-close-small {
        right: 10px;
        top: 10px;
        padding: 6px;
    }

    .resalts_slide-popup {
        padding: 50px 20px 30px;
        border-radius: 20px;
    }

    .resalts_slide-popup .fancybox-close-small {
        right: 10px;
        top: 10px;
        padding: 6px;
    }

    .lessons_item-link {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
    }

    .fancybox-slide:has(video) {
        padding: 0;
    }

    .pass_video-content {
        border-radius: 10px;
    }

    .prodjectInterface .video_block-body,
    .criteria .video_block-body {
        margin: 30px auto;
    }
}