/*SETTINGS*/
html, body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1;
    height: 100%;
    width: 100%;
    margin: 0;
    min-width: 360px;
    color: #000;
    background: #fff;
    box-sizing: border-box;
}

a {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:focus {
    outline: none;
    outline-offset: 0px;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

#body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#content {
    flex: 1 0 auto;
}

#footer {
    flex: 0 0 auto;
}

*, *:before, *:after {
    box-sizing: border-box;
}

.uppercase {
    text-transform: uppercase;
}

.center {
    text-align: center;
}

input::-moz-placeholder {
    color: inherit;
}

input::-webkit-input-placeholder {
    color: inherit;
}

textarea:-moz-placeholder {
    color: inherit;
}

textarea::-webkit-input-placeholder {
    color: inherit;
}

/*focus*/
:focus {
    outline: none;
    -moz-outline: 3px solid #fff !important;
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
}

input[type="radio"]:focus {
    -moz-outline-radius: 12px !important;
    -moz-outline-offset: 0px !important;
}

input[type="checkbox"]:focus {
    -moz-outline-offset: -1px !important;
    -moz-outline: 1px solid #000 !important;
}

:focus::-webkit-input-placeholder {
    color: transparent;
}

:focus::-moz-placeholder {
    color: transparent;
}

:focus:-moz-placeholder {
    color: transparent;
}

:focus:-ms-input-placeholder {
    color: transparent;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

input, button, textarea, select, label {
    font: inherit;
    outline: none;
}

/*===================================================================HEADINGS==========================================*/
.h1_heading {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
}

.h2_heading {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 36px;
}

.h3_heading {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 26px;
}

.sub_title {
    /*font-weight: 600;*/
    font-size: 18px;
    line-height: 26px;
    width: 80%;
    margin: 35px auto 0;
    text-align: justify;
}

/*===================================================================HEADINGS==========================================*/

/*===================================================================COLORS==========================================*/
.blue {
    color: #3298f2;
}

.orange {
    color: #ff9638;
}

.yellow {
    color: #FFD43D;
}

.white {
    color: #ffffff;
}

.black {
    color: #000000;
}

.green {
    color: #72CC37;
}

/*===================================================================COLORS==========================================*/

/*===================================================================BACKGROUND COLORS==========================================*/
.bg_blue {
    background-color: rgba(71, 162, 232, 0.85) /*#3298f2*/;
}

.bg_orange {
    background-color: #ff9638;
}

.bg_yellow {
    background-color: #FFD43D;
}

.bg_white {
    background-color: #ffffff;
}

.bg_black {
    background-color: #282828;
}

.bg_light {
    background-color: #EDF4FB;
}

/*===================================================================BACKGROUND COLORS==========================================*/

/*===================================================================BORDER COLORS==========================================*/
.border_blue {
    color: #3298f2;
}

.border_orange {
    color: #ff9638;
}

.border_yellow {
    color: #FFD43D;
}

.border_white {
    color: #ffffff;
}

/*===================================================================BORDER COLORS==========================================*/

/*===================================================================NUMBER==========================================*/
.before_1::before {
    content: '1';
}

.before_2::before {
    content: '2';
}

.before_3::before {
    content: '3';
}

.before_4::before {
    content: '4';
}

.before_01::before {
    content: '01';
}

.before_02::before {
    content: '02';
}

.before_03::before {
    content: '03';
}

.before_04::before {
    content: '04';
}

.before_05::before {
    content: '05';
}

.before_06::before {
    content: '06';
}

/*===================================================================NUMBER==========================================*/

.d-none {
    display: none;
}

.wrapper {
    display: grid;
    max-width: 1600px;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
    transition: 0.5s;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center {
    text-align: center;
}

.paragraph {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}


/*header*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 1px solid #3490FF;
    background: #fff;
}

#header .wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header.sticky {
    background: rgba(249, 249, 249, .85);
}

#header.sticky .wrapper {
    height: 40px;
}

#header .logo img {
    height: 60px;
    transition: 0.5s;
}

#header.sticky .logo img {
    transform: scale(0.6);
}

.nav-menu {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav_item {
    padding: 0 15px;
    position: relative;
    height: 100%;
}

.nav_item:hover, .nav_item a:hover {
    color: #FF9638;
}

.nav_item, .nav_item a {
    font-weight: 600;
    text-transform: uppercase;
    color: #292929;
    position: relative;
    z-index: 66;
    text-decoration: none;
    cursor: pointer;
}

.nav_item .sub-menu a {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

#header .sub-menu {
    opacity: 0;
    position: absolute;
    top: 100px;
    left: -15px;
    padding: 10px 0px;
    transition: 0.3s;
    pointer-events: none;
    min-width: 10rem;
    border: 1px solid #49B3FB;
    background: #F9F9F9;
    border-radius: 0.25rem;
    z-index: 70;
}

#header.sticky .sub-menu {
    top: 70px;
}

#header .nav_item:hover .sub-menu {
    opacity: 1;
    top: 70px;
    box-shadow: 0px 6px 15px rgb(0 0 0 / 5%);
    pointer-events: auto;
}

#header.sticky .nav_item:hover .sub-menu {
    top: 40px;
}

#header .sub-menu a {
    padding: 10px 15px;
}

#header .sub-menu li:hover a {
    color: #3298F2;
    background: #fff;
}

.nav-menu-has-children::after {
    content: '';
    border-style: solid;
    border-width: 6px 3px 0 3px;
    border-color: #292929 transparent transparent transparent;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    z-index: 66;
    transition: 0.45s cubic-bezier(0.78, 0, 0.17, 1.005);
    margin: auto 0;
}

.nav-menu-has-children:hover:after {
    transform: rotateX(180deg);
}

.button-popap {
    width: 45px;
    position: relative;
    font-weight: 600;
    padding: 15px 0 15px 50px;
    text-align: center;
    cursor: pointer;
    transition: all 1s;
}

#header.sticky .button-popap img {
    transform: scale(0.6);
}

#header.sticky .button-popap {
    width: 180px;
    font-size: 14px;
    margin-left: 40px;
    padding-left: 40px;
}

.phone-icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -22px;
}

#header .language {
    display: none;
    margin-left: 20px;
}

html[lang="ru-RU"] #header .language {
    display: block;
}

html[lang="ru-RU"] #header .button-popap {
    margin-left: auto;
}

#header .language a,
#header .language span {
    font-weight: 600;
    text-transform: uppercase;
    color: #292929;
    text-decoration: none;
}

#header .language a:hover {
    color: #FF9638;
}

#header .language span {
    color: #c1c1c1;
}

html[lang="ru-RU"] #header .nav-menu {
    margin-left: auto;
}

/*footer*/
#footer {
    padding: 55px 0 30px;
    background: #292929;
}

#footer .wrapper {
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    gap: 30px;
}

.footer-image img {
    width: 100px;
}

.logo-description, .footer-contact {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #F2F2F2;
}

.logo-description {
    text-align: center;
    margin-top: 25px;
}

.contact-item {
    position: relative;
    margin-bottom: 25px;
    margin-left: 25px;
}

.contact-item span {
    position: absolute;
    top: 1px;
    left: -25px;
    color: #3298F2;
}

.contact-item a {
    color: #F2F2F2;
    text-decoration: none;
}

.footer-menu .nav-menu {
    height: 100%;
    display: block;
}

.footer-menu .nav_item {
    padding: 10px 0;
    position: relative;
    height: 100%;
}

.footer-menu .nav_item:hover, .footer-menu .nav_item a:hover {
    color: #FF9638;
}

.footer-menu .nav_item, .footer-menu .nav_item a {
    font-weight: 600;
    text-transform: none;
    color: #f2f2f2;
    position: relative;
    z-index: 66;
    text-decoration: none;
    cursor: pointer;
}

/*button*/
.play_button__content {
    position: absolute;
}

.play_button__wrap {
    position: relative;
    width: 70px;
    height: 70px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.layer_button {
    width: 80%;
    height: 80%;
    border: 1px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.play_button {
    width: 90%;
    height: 90%;
    background: #ffffff;
    border-radius: 50%;
}

.play_button .fa {
    color: #3298F2;
    font-size: 18px;
    z-index: 5;
}

.play_button::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80%;
    height: 80%;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.button {
    position: relative;
    border-radius: 6px;
    padding: 22px 0;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    overflow: hidden;
    min-width: 250px;
    max-width: 400px;
    cursor: pointer;
    border: none;
}


/*=============================================================================================================*/


/*top_screen*/
#content {
    padding-top: 70px;
}

#top_screen {
    display: grid;
    grid-template-columns: 1fr .683fr;
    grid-template-rows: calc(100vh - 70px);
    min-height: 690px;
    position: relative;
    overflow: hidden;
}

.top_screen__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
    position: relative;
}

.top_screen__right {
    background-color: #EDF4FB;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-evenly;
}

.top_screen__slogan {
    position: relative;
    line-height: 26px;
    color: #000;
    border: 3px dashed #8A8A8A;
    border-radius: 12px;
    padding: 50px 20px;
    width: 75%;
    margin-top: 50px;
}

.top_screen__title {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.top_screen__right__kurs {
    padding: 30px 100px 30px 0;
    gap: 30px;
}

.top_screen__right__kurs .top_screen__item {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top_screen__right__kurs .top_screen__number {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 8px;
    border: 4px solid;
    background-color: #F7F7F7;
}

.top_screen__right__kurs .top_screen__item p {
    font-weight: 800;
    font-size: 17px;
    line-height: 17px;
    text-transform: uppercase;
    color: #F4F4F4;
    letter-spacing: 1px;
}

.top_screen__img {
    position: absolute;
    bottom: 0;
    left: 0%;
}

@keyframes block {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}


/*index*/
#index #top_screen {
    grid-template-columns: 1fr .75fr;
}

.okten {
    font-size: 200px;
    font-weight: 900;
    line-height: 1.1;
    color: transparent;
    background-image: linear-gradient(90deg, #ff9638, #ff9638, #3490FF);
    -webkit-background-clip: text;
    max-width: 840px;
    position: relative;
}

#index .top_screen__left h1 {
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 71px;
    line-height: 83px;
    margin-top: 0em;
}

#index .top_screen__left span {
    /*font-size: 174px;*/
    font-size: 160px;
    background-color: #3490FF;
    color: #fff;
}

#index .top_screen__item {
    background-color: #3490FF;
    height: 10.5%;
    width: 75%;
    font-size: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #ffffff;
    position: relative;
    animation: block 1s 1 backwards;
}

#index .top_screen__item:nth-child(1) {
    animation-delay: 300ms;
}

#index .top_screen__item:nth-child(2) {
    animation-delay: 800ms;
}

#index .top_screen__item:nth-child(3) {
    animation-delay: 1300ms;
}

#index .top_screen__item span {
    font-size: 21px;
    margin-left: 30px;
    max-width: 250px;
}

#index #top_screen .play_button__content {
    left: 0;
    bottom: 100px;
    transform: translateX(-50%);
}

#index #top_screen .play_button__wrap,
#index #top_screen .layer_button,
#index #top_screen .play_button {
    border-color: #89E24E;
}

#index #top_screen .play_button::before,
#index #top_screen .play_button {
    background: #89E24E;
}

#index #top_screen .play_button__wrap {
    width: 120px;
    height: 120px;
    font-size: 25px;
}

#index #top_screen .play_button .fa {
    color: #fff;
}

#about .top_screen__text {
    font-weight: 500;
    margin-top: 50px;
    line-height: 25px;
}

#reviews_page .top_screen__text {
    text-align: justify;
    font-size: 18px;
    font-weight: 600;
    margin-top: 40px;
    line-height: 1.4;
}

#about .top_screen_right__video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-10%);
}

#about .top_screen_right__video img {
    border-radius: 8px;
}

#about .top_screen_right__video .play_button__content {
    right: 10px;
    top: 10px;
}

#about .top_screen_right__video .play_button__wrap {
    width: 100px;
    height: 100px;
}

#free_kurs .top_screen__left, #about .top_screen__left {
    padding-right: 170px;
}

#free_kurs .top_screen__right, #about .top_screen__right {
    background-color: #3298f2;
}

#free_kurs #top_screen .top_screen__item {
    width: 60%;
    padding: 25px 32px;
    background-color: #fff;
    border-radius: 6px 0 0 6px;
    font-weight: 800;
    font-size: 21px;
    color: #FF9638;
}

#free_kurs .top_screen__img {
    top: 50%;
    transform: translateY(-50%);
    left: -30.5%;
    bottom: inherit;
}

#free_kurs .top_screen__text {
    font-size: 16px;
    font-weight: 500;
    margin-top: 70px;
    line-height: 25px;
}

/*kurs__top_screen*/
#incubator #top_screen,
#fullstack #top_screen {
    grid-template-columns: 1.36fr .75fr;
}

#reviews_page #top_screen {
    grid-template-columns: 1fr 0.9fr;
}

#reviews_page .top_screen__left {
    padding-right: 100px;
}

#javascript .top_screen__left h1, #java .top_screen__left h1,
#python .top_screen__left h1, #Qa-Qc .top_screen__left h1,
#incubator .top_screen__left h1, #fullstack .top_screen__left h1,
#free_kurs .top_screen__left h1, #about .top_screen__left h1, #reviews_page .top_screen__left h1 {
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FF9638;
    position: relative;
}

#about .top_screen__left h1, #reviews_page .top_screen__left h1 {
    font-size: 64px;
    line-height: 1;
    color: #000;
}

#free_kurs .top_screen__left h1 {
    font-size: 80px;
    line-height: 1;
}

#free_kurs .top_screen__left h1 span {
    color: #333;
}

#javascript .top_screen__left h1 {
    font-size: 60px;
    line-height: 1.1;
}

#java .top_screen__left h1 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 10px;
}

#python .top_screen__left h1 {
    font-size: 40px;
    line-height: 1.1;
    z-index: 3;
}

#Qa-Qc .top_screen__left h1 {
    font-size: 68px;
    line-height: 1;
}

#incubator .top_screen__left h1 {
    font-size: 68px;
    line-height: 1.2;
}

#incubator .top_screen__left h1 span {
    font-size: 26px;
    line-height: 1;
    display: block;
    margin-top: 20px;
}

#fullstack .top_screen__left h1 {
    color: #000;
    font-size: 100px;
    line-height: 0.8;
}

#fullstack .top_screen__left h1 span {
    font-size: 0.5em;
    line-height: 1.2;
    display: block;
    color: #3298F2;
}

#javascript .top_screen__left h2, #java .top_screen__left h2, #about .top_screen__left h2, #reviews_page .top_screen__left h2,
#python .top_screen__left h2, #Qa-Qc .top_screen__left h2, #free_kurs .top_screen__left h2 {
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    line-height: 1.3;
}

#about .top_screen__left h2, #reviews_page .top_screen__left h2 {
    font-size: 26px;
    line-height: 1.5;
}

#free_kurs .top_screen__left h2 {
    font-size: 40px;
    line-height: 1;
}

#java .top_screen__left h2, #python .top_screen__left h2 {
    font-size: 30px;
    z-index: 3;
}

#javascript .top_screen__left h2 {
    font-size: 32px;
}

#Qa-Qc .top_screen__left h2 {
    font-size: 20px;
}

#javascript #top_screen, #java #top_screen, #about #top_screen,
#python #top_screen, #Qa-Qc #top_screen, #free_kurs #top_screen {
    background: #EDF4FB;
}

#javascript .top_screen__bg, #java .top_screen__bg,
#python .top_screen__bg, #Qa-Qc .top_screen__bg, #reviews_page .top_screen__bg,
#frontend .top_screen__bg, #fullstack .top_screen__bg, #free_kurs .top_screen__bg {
    text-transform: uppercase;
    font-weight: 900;
    position: absolute;
    color: #fff;
}

#reviews_page .top_screen__bg {
    font-size: 162px;
    color: #F9F9F9;
    bottom: 0;
    left: 0;
}

#javascript .top_screen__bg {
    font-size: 170px;
    top: 30px;
    opacity: 0.5;
}

#java .top_screen__bg {
    font-size: 200px;
    right: -40px;
    top: 45px;
}

#free_kurs .top_screen__bg {
    font-size: 200px;
    top: 30px;
    opacity: 0.75;
}

#python .top_screen__bg {
    font-size: 200px;
    right: 0%;
    top: -10px;
    z-index: 1;
    transform: translateX(37%);
}

#python .top_screen__bg span {
    color: rgb(241, 197, 48)
}

#python .top_screen__img {
    z-index: 3;
}

#Qa-Qc .top_screen__bg {
    font-size: 200px;
    right: -50px;
    top: 5px;
}

#fullstack .top_screen__bg {
    font-size: 215px;
    top: 120px;
    left: 94px;
    color: #EDF4FB;
}

#javascript .top_screen__right {
    background-color: #FF9638;
}

#python .top_screen__right {
    background-color: #FFD43D;
}

#java .top_screen__right, #Qa-Qc .top_screen__right, #incubator .top_screen__right {
    background-color: #3298F2;
}

#fullstack .top_screen__right {
    background-color: #89e24ea6;
}

#fullstack .top_screen__number {
    border-color: #B9EE99;
    color: #3298f2;
}

#javascript .top_screen__number, #java .top_screen__number {
    color: #3298f2;
    border-color: #FFC188;
}

#python .top_screen__number {
    border-color: #FFE58B;
    color: #3298f2;
}

#python .top_screen__item p {
    color: #292929;
}

#Qa-Qc .top_screen__number, #incubator .top_screen__number {
    border-color: #84C1F7;
    color: #FF9638;
}

#javascript .top_screen__img, #java .top_screen__img, #python .top_screen__img, #Qa-Qc .top_screen__img {
    margin-left: -180px;
}

#incubator .top_screen__img, #fullstack .top_screen__img {
    margin-left: -200px;
}

.top_screen__hours {
    font-weight: 900;
    font-size: 100px;
    color: #3298f2;
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: relative;
    z-index: 2;
}

.top_screen__hours span {
    font-size: .45em;
}

#Qa-Qc .top_screen__slogan {
    border: none;
    padding: 0;
}

#incubator .top_screen__slogan {
    padding: 50px;
    width: 70%;
}


/*#frontend #top_screen*/
#frontend #top_screen {
    grid-template-columns: .683fr 1fr;
}

#frontend .top_screen__bg {
    font-size: 145px;
    color: #EDF4FB;
    top: -10px;
    left: 0;
    z-index: 6;
}

#frontend .top_screen__left {
    padding-left: 150px;
}

#frontend .top_screen__left h1 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
    z-index: 7;
}

#frontend .top_screen__left h3 {
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 30px;
}

#frontend .top_screen__slogan {
    width: 100%;
    padding: 50px;
}

#frontend .top_screen__title {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 500px;
    color: #000;
    text-align: center;
    margin-bottom: 0;
}

#frontend .top_screen__right img {
    position: absolute;
    z-index: 5;
    top: 150px;
    left: 0;
}

#frontend .top_screen__right::before {
    content: '';
    clip-path: polygon(0 0, 0% 100%, 30% 0);
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
}

/**/


#reviews_page .top_screen__img {
    left: 50%;
    z-index: 1;
}

#reviews_page .top_screen__right {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 150px;
    background-color: #3298F2;
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 0% 100%);
}

#reviews_page .top_screen__right-wrapper {
    width: 275px;
}

#reviews_page .top_screen__right-number {
    font-weight: 900;
    font-size: 144px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    color: #fff;
}

#reviews_page .top_screen__right-number::before {
    content: '';
    position: absolute;
    font-weight: 900;
    font-size: 288px;
    line-height: 351px;
    text-transform: uppercase;
    top: 134px;
    left: 35%;
    /*transform: translate(-50%);*/
    color: #fff;
    opacity: 0.1;
}

#reviews_page .top_screen__right-title {
    font-weight: 900;
    font-size: 19px;
    line-height: 23px;
    text-transform: uppercase;
    color: #000;
}

#reviews_page .top_screen__right-title span {
    display: block;
    font-size: 30px;
    line-height: 37px;
    text-transform: uppercase;
    color: #fff;
}


/*reviews*/
#reviews {
    padding: 30px 0;
    background-color: #292929;
    position: relative;
}

.reviews_grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    grid-column-gap: 50px;
    margin-top: 50px;
}

.reviews_videos.swiper {
    width: 100%;
}

.reviews_videos .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(299px, 1fr));
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.reviews_videos .play_button__wrap {
    width: 55px;
    height: 55px;
}

.reviews_videos .play_button::before {
    display: none;
}

.reviews_videos .play_button .fa {
    font-size: 12px;
}

.reviews_videos .play_button__content {
    right: 10px;
    top: 5px;
}

.reviews_decription {
    margin-top: 15px;
}

.reviews_description__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
}

.reviews_description__text {
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 55px;
    text-align: justify;
}

.reviews_decription a {
    display: block;
    color: #fff;
    margin: 0 auto;
    max-width: 430px;
}

.flare::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 50px;
    height: 100%;
    background-color: #ffffff;
    filter: blur(15px);
    transform: skewX(-30deg);
    animation: flare-line 3s infinite linear;
}

@keyframes flare-line {
    from {
        left: -200px;
    }
    to {
        left: calc(100% + 150px);
    }
}

.review_item {
    position: relative;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}

.review_item img {
    width: 100%;
    object-fit: cover;
    height: 165px;
    border-radius: 4px;
}

#java #reviews {
    background: #fff;
}


/*partners*/
#partners {
    position: relative;
    background: #EDF4FB;
    padding: 30px 0;
}

.partners_grid {
    display: grid;
    grid-template-columns: minmax(470px, 1fr) 2fr;
    margin-top: 50px;
    grid-column-gap: 50px;
}

.partners_video {
    max-width: 470px;
    width: calc(100vw - 20px);
}

.partners_video__feedback {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-top: 25px;
}

.partners_logo {
    height: 260px;
    display: flex;
    align-items: center;
}

.partner_item {
    max-width: 470px;
    position: relative;
    padding-bottom: 45px;
}

.partner_item .play_button__content {
    right: 25px;
    top: 25px;
}


/*parallax-blue*/
.parallax-blue {
    position: relative;
    text-align: center;
    /*background: url(../image/parallax/Bgblue2.jpg);*/
    background: url(../image/parallax/Bgblue2.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 70px;
    padding-bottom: 90px;
}


/*owu*/
#owu {
    padding: 30px 0;
}

.owu_grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
}

.owu_grid__column {
    display: grid;
    grid-row-gap: 40px;
}

.owu_item__title::before {
    font-weight: 900;
    font-size: 72px;
    line-height: 26px;
    color: #FF9638;
    position: absolute;
    left: 0;
}

.owu_item__title {
    display: flex;
    align-items: center;
    min-height: 50px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding-left: 105px;
    position: relative;
}

.block_description {
    position: absolute;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    background: #3298F2;
    border-radius: 6px;
    z-index: 6;
}

#partners_block, #story_block {
    position: relative;
}

#Qa-Qc #owu {
    padding-bottom: 200px;
    position: relative;
}

.partners_block__description {
    width: 30%;
    padding: 24px 0 24px 40px;
    right: 0;
    bottom: 25px;
    border-radius: 6px 0 0 6px;
}

.story_block__description, .owu_block__description {
    width: 50%;
    padding: 24px 5% 24px;
    top: 60px;
    left: 0;
    border-radius: 0 6px 6px 0;
}

.owu_block__description {
    top: inherit;
    bottom: 40px;
}

#java .owu_item__title::before, #python .owu_item__title::before {
    color: #3298f2;
}

#free_kurs .owu_item__title {
    padding-left: 0;
}

#free_kurs .owu_item__title::before {
    font-size: 150px;
    color: #EFF5FB; /*transparent*/
    left: -50px;
    top: -30px;
    font-weight: 900;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #EFF5FB;
    z-index: -1;
}

#free_kurs .owu_grid__image img {
    width: 80%; /*calc(100% - 50px);*/
}


/*my-way*/
#my-way {
    position: relative;
    background: #EDF4FB;
    padding-top: 80px;
    padding-bottom: 140px;
}

.my-way_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 465px));
    justify-content: space-around;
    margin-top: 50px;
    grid-gap: 30px
}

.owu_web {
    width: 420px;
    line-height: 150px;
    position: absolute;
    font-size: 150px;
    font-weight: 900;
    text-transform: uppercase;
    color: #EDF4FB;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #E6EDF3;
}

.index-form_grid .choice-your-way {
    width: 745px;
    bottom: 0;
    left: 0;
}

.choice-your-way {
    position: absolute;
    font-size: 96px;
    font-weight: 900;
    text-transform: uppercase;
    color: #E6EDF3;
    line-height: 96px;
}

#my-way .owu_web {
    bottom: 0;
}

#my-way .choice-your-way {
    width: 370px;
    right: 0;
    top: 0;
}

.my-way_item {
    position: relative;
    z-index: 5;
    background: #FFFFFF;
    border-radius: 20px;
    transition: .3s;
    border: 1px solid #EDF4FB;
    height: 100%;
    padding: 40px 22px 27px;
    display: flex;
    flex-direction: column;
    row-gap: 27px;
}

.my-way_item__header {
    position: absolute;
    width: 165px;
    background: #FFFFFF;
    border: 1px solid #9DC6EA;
    border-radius: 6px;
    text-align: center;
    padding: 10px;
    top: -23px;
    left: 50%;
    margin-left: -82.5px;
}

a.course_item {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    text-decoration: none;
    color: #000000;
    grid-column-gap: 15px;
    border-radius: 10px;
    padding: 10px;
    transition: .5s;
}

a.course_item:hover {
    background: #EDF4FB;
}

.course_item__title {
    font-weight: bold;
    line-height: 21px;
}

.course_item__title span {
    display: block;
}


/*directions*/
#directions {
    background: #292929;
    padding-top: 40px;
    padding-bottom: 50px;
}

#directions .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.directions_slider {
    width: 100%;
    margin-top: 50px;
    position: relative;
}

.directions_grid {
    width: 100%;
    margin-top: 50px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.directions_item {
    max-width: 470px;
    margin: 0 auto;
}

.directions_item__wrapper {
    padding: 20px;
    text-align: justify;
    min-height: 375px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid #454545;
    border-width: 1px 1px 0 1px;
    border-radius: 20px 20px 0 0;
    padding-top: 25px;
    padding-bottom: 28px;
    background: #212121;
    transition: .3s;
}

.directions_item img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: block;
}

.directions_item .course-type {
    font-weight: 600;
    margin-top: 7px;
    margin-bottom: 15px;
}

.directions_item__title {
    font-weight: 600;
    line-height: 20px;
}

.directions_item__title span {
    display: block;
}

.directions_item__description {
    font-weight: 500;
    line-height: 26px;
    margin-top: 25px;
    margin-bottom: 28px;
    padding: 0 15px;
}

.directions_button {
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    border: 1px solid #454545;
    box-sizing: border-box;
    border-radius: 0 0 20px 20px;
    transition: .3s;
    cursor: pointer;
    height: 47px;
    width: 100%;
    text-decoration: none;
}

.directions_item:hover .directions_item__wrapper, .directions_item:hover .directions_button {
    border-color: #FF9638;
}

.directions_button:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #ff9638;
}


/*pro-developer*/
#pro-developer {
    position: relative;
    padding-top: 80px;
}

.pro-developer_grid {
    display: grid;
    grid-template-columns: 500px 650px;
    grid-column-gap: 150px;
    margin-top: 10px;
    align-items: center;
}

.pro-developer_image {
    position: relative;
}

/*.pro-developer_image img{
    width: 100%;
}*/
.pro-developer_text {
    margin-top: 10px;
    /*margin-bottom: auto;*/
    padding: 30px;
    position: relative;
    height: fit-content;
    margin-bottom: 50px;
}

.pro-developer_logo {
    position: absolute;
    right: 0;
    height: 400px;
    bottom: 50px;
}

.angle-orange, .angle-blue {
    position: absolute;
}

.angle-blue {
    top: 0;
    left: 0;
}

.angle-orange {
    right: 0;
    bottom: 0;
}


/*last-block*/
#last-block {
    min-height: 445px;
    padding: 80px 0 30px 0;
    position: relative;
    display: flex;
    align-items: center;
}

#last-block .last-block__wrap {
    width: 52%;
}

#last-block img {
    position: absolute;
    right: 75px;
    bottom: 0;
}

#last-block .last-block__text {
    margin: 35px 0 25px;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}


/*recording*/
#recording {
    position: relative;
    padding: 55px 0 37px;
    overflow: hidden;
}

#recording .recording_text__bg {
    right: 0;
    top: -25px;
    color: rgba(255, 255, 255, 0.4);
}

.recording_wrap {
    width: 60%;
}

.recording_text__bg {
    font-weight: 900;
    font-size: 120px;
    text-transform: uppercase;
    position: absolute;
}

.recording_text {
    font-weight: 600;
    margin-top: 34px;
    line-height: 26px;
}


/*salary*/
#salary {
    background-color: #292929;
    padding: 50px 0 60px;
}

#salary.bg_white {
    background-color: #fff;
}

#salary.bg_white .salary_sub-title {
    color: #000;
}

#salary.bg_white .salary_text {
    color: #292929;
}

#salary .swiper {
    margin-top: 50px;
}

#salary .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 25px;
}

.salary_item {
    position: relative;
    text-align: center;
    border: 1px solid #474747;
    box-sizing: border-box;
    border-radius: 6px;
    padding: 35px 15px;
    max-width: 470px;
    margin: 0 auto;
    height: 100%;
}

.salary_title {
    font-weight: 900;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0.03em;
}

.salary_sub-title {
    font-weight: 700;
    font-size: 18px;
    margin: 25px 0;
    color: #fff;
}

.salary_text {
    color: #fff;
    line-height: 24px;
    text-align: justify;
}

.salary_text a {
    color: #fff;
}

#fullstack #salary {
    padding: 40px 0;
}

#fullstack .salary_slider {
    margin-left: 0;
}

#fullstack .salary_item {
    border: none;
    border-left: 6px solid #ADD6FA;
    border-radius: 6px;
    padding: 5px 10px;
    text-align: left;
}

#fullstack .salary_sub-title {
    margin: 15px 0 0;
}


/*story*/
#story {
    padding: 215px 0 100px;
    position: relative;
}

#story .bg__first {
    top: 0;
    right: 0;
}

#story .bg__second {
    bottom: 0;
}

.story_grid {
    display: grid;
    grid-template-columns: 40% 40%;
    justify-content: space-between;
    align-items: center;
}

.story_text__bg {
    font-size: 150px;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    color: #F7F7F7;
}

.story_text {
    margin-top: 40px;
    text-align: justify;
}

.story_video {
    position: relative;
}

.story_video img {
    border-radius: 20px;
}

.story_video .play_button__content {
    right: 50px;
    top: 15px;
}


/*effectiveness*/
#effectiveness {
    background: #292929;
    padding: 40px 0;
}

.effectiveness_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
    justify-content: space-between;
    background-color: #3298f2;
    grid-gap: 40px;
}

.effectiveness_item {
    position: relative;
    font-weight: 800;
    font-size: 21px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 25px;
    color: #fff;
}

.effectiveness_item span {
    position: absolute;
    top: -25px;
    left: 25px;
    font-weight: 900;
    font-size: 86px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    color: #fff;
}

.effectiveness_item::after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 40px;
    transform: skewX(-40deg);
    background: #292929;
    top: 0;
    right: 0px;
}

.effectiveness_item:last-child::after {
    display: none;
}


/*warranty*/
#warranty {
    position: relative;
    padding: 110px 0 30px;
    background: rgba(237, 244, 251, 0.84);
}

.warranty_text__bg {
    position: absolute;
    font-weight: 900;
    font-size: 120px;
    text-transform: uppercase;
    color: #EDF4FB;
    top: -20px;
    left: 0;
    z-index: -1;
}

.warranty_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
    margin-top: 50px;
}

.warranty_list__title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

.warranty_list__title::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background: #FF9638;
    border: 3px solid #292929;
    border-radius: 50%;
    position: absolute;
    left: -23px;
    top: 1px;
}

.warranty_list {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    padding-right: 20px;
}

.warranty_list > li {
    margin: 25px 0;
}

.warranty_list__text {
    line-height: 24px;
    text-align: justify;
}

#incubator #warranty {
    padding-top: 30px;
}

#incubator .warranty_list {
    margin: 25px 0;
    gap: 50px;
}

#incubator .warranty_list li {
    margin: 0;
}

#incubator .warranty_list__title::before {
    top: 5px;
}

#incubator .warranty_list__title {
    font-size: 26px;
    line-height: 0.9;
    margin-bottom: 0;
}


/*video*/
#video {
    padding-top: 120px;
    padding-bottom: 75px;
    background: #fff;
    position: relative;
}

#video .h2_heading {
    margin-bottom: 90px;
}

#video .wrapper {
    justify-items: center;
    z-index: 5;
}

.video_text__bg {
    font-size: 150px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translatex(-50%);
    color: #fff;
    opacity: .1;
    z-index: 3;
}

.video__bg {
    background-color: #47A2E8;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.video__outer {
    border-radius: 8px;
    max-width: 1080px;
    width: 100%;
    height: 95%;
    overflow: hidden;
    position: relative;
}

.video__image {
    position: relative;
    height: 100%;
}

.video__image::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video__outer .play_button__content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video__outer .play_button__wrap {
    height: 112px;
    width: 112px;
}

.video__outer .play_button__wrap, .video__outer .layer_button, .video__outer .play_button {
    border-color: #FF7A00;
}

.video__outer .play_button, .video__outer .play_button::before {
    background: #FF7A00;
}

.video__outer .fa {
    color: #fff;
}


/*swiper*/
.swiper-pagination-bullet {
    height: 20px;
    width: 20px;
    background-color: #46ABE3;
    opacity: .25;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    display: flex;
    justify-content: center;
    gap: 10px;
    bottom: 0;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    border: 2px solid #000;
}

#frontend #reviews .swiper-pagination-bullet {
    background: #65B1F5;
    opacity: 1;
}

#frontend #reviews .swiper-pagination-bullet-active {
    opacity: 1;
    border: 2px solid #000;
    background: #fff;
}

.swiper-button {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: #72CC37;
    color: #000;
    opacity: 0.5;
    transition: 0.2s;
}

.swiper-button:hover {
    opacity: 1;
}

.swiper-button:after {
    font-size: 18px;
    font-weight: 600;
}

.swiper-button-prev {
    left: -45px;
    padding-right: 2px;
}

.swiper-button-next {
    right: -45px;
    padding-left: 2px;
}

.partners_video .swiper-pagination {
    max-width: 470px;
    margin-right: auto;
}

/*item-accordion*/
.item-accordion .title {
    width: 31%;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 21px;
    line-height: 26px;
    color: #000;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 14px;
    gap: 10px;
}

.bg_black .item-accordion .title, .bg_black .list-content li {
    color: #fff;
}

.item-accordion .text {
    display: none;
}

.item-accordion input {
    display: none;
}

.item-accordion .icon {
    position: relative;
    height: 14px;
    width: 14px;
    display: none;
}

.item-accordion .icon span {
    display: block;
    height: 2px;
    width: 14px;
    background: #3298f2;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    transition: all 0.5s ease-in-out;
}

.item-accordion .icon span:last-child {
    left: calc(50% - 1px);
    height: 14px;
    width: 2px;
    top: 0px;
}

.item-accordion input:checked + .title .icon span {
    opacity: 0.3;
}

.item-accordion input:checked + .title .icon span:last-child {
    transform: rotate(90deg);
}

.item-accordion .text {
    z-index: 2;
    width: 65%;
    font-size: 17px;
    line-height: 25px;
    padding: 0 25px;
    position: absolute;
    top: 0;
    right: 0;
}

.item-accordion input:checked ~ .text {
    display: block;
}

.accordion .col {
    position: relative;
}

.item-accordion .title::before {
    content: '01';
    display: block;
    position: absolute;
    left: -15px;
    font-weight: 900;
    font-size: 21px;
    line-height: 26px;
    transform: rotate(-90deg);
    color: #C4C4C4;
    transition: color .2s ease-out;
    top: 14px;
}

.bg_black .item-accordion .title:hover::before,
.bg_black .item-accordion input:checked + .title,
.bg_black .item-accordion input:checked + .title::before,
.bg_black_blue .item-accordion:hover label {
    color: #ff9638;
}

.item-accordion .title:hover::before,
.item-accordion input:checked + .title,
.item-accordion input:checked + .title::before,
.bg_black_blue .item-accordion .title:hover::before,
.bg_black_blue .item-accordion input:checked + .title,
.bg_black_blue .item-accordion input:checked + .title::before,
#incubator .item-accordion .title:hover {
    color: #3298f2;
}

.item-accordion:nth-child(2) .title::before {
    content: '02';
}

.item-accordion:nth-child(3) .title::before {
    content: '03';
}

.item-accordion:nth-child(4) .title::before {
    content: '04';
}

.item-accordion:nth-child(5) .title::before {
    content: '05';
}

.item-accordion:nth-child(6) .title::before {
    content: '06';
}

.item-accordion:nth-child(7) .title::before {
    content: '07';
}

.item-accordion:nth-child(8) .title::before {
    content: '08';
}

.item-accordion:nth-child(9) .title::before {
    content: '09';
}

.item-accordion:nth-child(10) .title::before {
    content: '10';
}

.item-accordion:nth-child(11) .title::before {
    content: '11';
}

.item-accordion:nth-child(12) .title::before {
    content: '12';
}

.item-accordion:nth-child(13) .title::before {
    content: '13';
}

.item-accordion:nth-child(14) .title::before {
    content: '14';
}

.item-accordion:nth-child(15) .title::before {
    content: '15';
}

.item-accordion:nth-child(16) .title::before {
    content: '16';
}

.item-accordion:nth-child(17) .title::before {
    content: '17';
}

.item-accordion:nth-child(18) .title::before {
    content: '18';
}

.item-accordion:nth-child(19) .title::before {
    content: '19';
}

.item-accordion:nth-child(20) .title::before {
    content: '20';
}

.list-content li {
    border: 1px solid #A7A7A7;
    border-radius: 3px;
    padding: 10px 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
}


/*program*/
.program_grid {
    display: grid;
    grid-template-columns: 356px 1fr;
    margin-top: 50px;
    grid-gap: 200px;
}

.program_hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.program_hours__counter {
    font-size: 120px;
    font-weight: 900;
    text-align: center;
    position: relative;
}

.program_hours__counter::before {
    content: '';
    position: absolute;
    top: -145px;
    left: -80px;
    font-size: 200px;
    z-index: -1;
    -webkit-text-stroke-width: 2px;
}

.program_hours__counter::after {
    content: attr(data-after);
    position: absolute;
    font-size: 49px;
    left: 10%;
    font-weight: 900;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px;
    bottom: -36px;
}

.program_hours__text {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    text-transform: uppercase;
    margin-top: 50px;
}

.program_list {
    min-height: 300px;
}

/*kurs__program*/
#program {
    padding-top: 30px;
    padding-bottom: 40px;
}

#program .program_hours__counter::before {
    content: attr(data-before);
    color: #e8e6e6;
    -webkit-text-stroke-color: #e8e6e6;
}

#program .program_hours__counter::after {
    color: #000;
}

#program.bg_black .program_hours__counter::after {
    color: #3298f2;
}

#Qa-Qc .bg_black .program_hours__counter::after {
    color: #ff9638;
    left: -10%;
}

#fullstack .bg_black .program_hours__counter::after {
    color: #ff9638;
}

#program.bg_black {
    padding-top: 30px;
    padding-bottom: 200px;
    position: relative;
    overflow: hidden;
}

#program.bg_black .program_hours__counter::before {
    color: #333;
    -webkit-text-stroke-color: #333;
}

#Qa-Qc #program {
    padding-bottom: 290px;
}

#fullstack .program_hours__counter::before {
    content: attr(data-before);
    left: -125px;
    top: -100px;
}

#Qa-Qc .program_hours__counter::before {
    content: attr(data-before);
}

#incubator .program_hours__counter::before {
    content: attr(data-before);
    color: #f0f0f0;
    -webkit-text-stroke-color: #f0f0f0;
}

.program_text__bg {
    font-size: 150px;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    line-height: 120px;
    left: 30px;
    bottom: -63px;
    color: rgba(0, 0, 0, 0.2);
}

#Qa-Qc .program_text__bg {
    bottom: -25px;
}

.program_text__bg span {
    display: block;
    color: #333;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #333;
}

#frontend .program_text__bg, #fullstack .program_text__bg {
    font-size: 220px;
    text-transform: capitalize;
    color: #333;
    bottom: 30px;
}

#free_kurs .program_grid {
    grid-template-columns: 430px 1fr;
}

#free_kurs .program_text {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 50px;
}

#free_kurs .program_text__bg {
    font-size: 200px;
    left: inherit;
    right: 0;
    bottom: 20px;
    color: rgba(0, 0, 0, 0.2);
}


/*special-program*/
#special-program {
    position: relative;
    padding: 30px 0 50px;
}

.special-program_grid {
    display: grid;
    grid-template-columns: repeat(4, 20%);
    justify-content: center;
    margin-top: 50px;
    grid-gap: 4px;
}

.special-program_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
}

.special-program_item__title {
    text-align: center;
}

.special-program_item::after {
    content: '';
    display: block;
    position: absolute;
    width: 35px;
    height: 50px;
    background: url(../image/brand/sprites.png) 3px -740px;
    right: -15px;
    top: 23px;
}

.special-program_item:last-child::after {
    display: none;
}


/*project*/
#project {
    padding-top: 40px;
    padding-bottom: 60px;
}

.project_slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    margin-top: 50px;
}

.project-image {
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 250px;
    max-width: 470px;
    margin: 0 auto;
}

.project-image::before, .project-image::after {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 152, 242, .85);
    transition: ease-in-out .5s;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFF;
}

.project-image::before {
    content: 'Дивитись';
    top: -100%;
    align-items: flex-end;
}

.project-image::after {
    content: 'детальніше';
    bottom: -100%;
}

.project-image:hover::before {
    top: -50%;
}

.project-image:hover::after {
    bottom: -50%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*mentors*/
#mentors {
    padding: 40px 0;
    background: #EDF4FB;
}

#mentors .wrapper {
    display: flex;
    flex-direction: column;
}

#mentors .swiper-button {
    background-color: #3298f2;
}

.mentors_slider {
    width: 100%;
    margin-top: 50px;
    position: relative;
}

.mentors_slide .swiper-wrapper {
    display: grid;
    grid-auto-flow: column;
    gap: 0;
}

.mentors_item {
    background: #fff;
    color: #000;
    padding: 30px 28px;
    border-radius: 20px;
    -webkit-box-shadow: 10px -8px 5px 0 rgb(230 237 243 / 97%);
    -moz-box-shadow: 10px -8px 5px 0 rgba(230, 237, 243, 0.97);
    box-shadow: 10px -8px 5px 0 rgb(230 237 243 / 97%);
}

.mentors_name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.mentors_name img {
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    width: 100%;
}

.mentors_name span {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.mentors_description {
    font-weight: 500;
    font-size: 14px;
    padding: 0 10px;
    margin-top: 25px;
    line-height: 20px;
    text-align: justify;
    min-height: 60px;
}


/*forms*/
#course_type_stationary {
    display: none;
}

#forms .flag {
    font-weight: 900;
    font-size: 20px;
    width: 345px;
    text-transform: uppercase;
    color: #303030;
    position: absolute;
    height: 50px;
    left: 0;
    top: 20px;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    padding-left: 25px;
}

#course_type_online .flag {
    background-color: #72CC37;
}

#course_type_stationary .flag {
    background-color: #FFD43D;
}

#course_type_stationary .h2_heading, #course_type_online .h2_heading {
    margin-bottom: 40px;
}

#course_type_online,
#course_type_stationary {
    position: relative;
    padding-top: 30px;
    padding-bottom: 130px;
}

#course_type_online {
    background-color: #303030;
}

#course_type_stationary {
    background-color: #3298f2;
}

#course_type_online .swiper-wrapper,
#course_type_stationary .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /*grid-template-columns: repeat(auto-fit, minmax(415px, 1fr));
    gap: 20px;*/
}

.form-item {
    max-width: 415px;
    width: 98%;
    padding: 20px 40px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
}

#course_type_online .form-item {
    background-color: #000000;
    color: #ffffff;
}

.form-item-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
}

.form-wrap-description {
    margin-top: 35px;
}

.form-item-description {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding-left: 35px;
    margin-top: 20px;
}

.form-item-description::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    background: url(../image/svg/Light.svg) no-repeat;
    background-size: contain;
    left: 0;
}

#course_type_online .form-item-description::before {
    background: url(../image/svg/Dark.svg) no-repeat;
}

.notrain::before {
    background: url(../image/svg/lightWithout.svg) no-repeat;
    width: 18px;
    height: 18px;
}

#course_type_online .notrain::before {
    background: url(../image/svg/DarkWithout.svg) no-repeat;
}

.form-price, .form-old-price {
    margin-top: 20px;
    font-weight: 800;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #3298F2;
}

.form-old-price {
    position: relative;
    font-size: 23px !important;
}

.form-old-price::before {
    content: '';
    position: absolute;
    display: block;
    background: url(../image/other/line.png) no-repeat center;
    width: 200px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -100px;
}

.form-input {
    margin-top: 20px;
}

.form-input form input {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid #EDF4FB;
    border-radius: 3px;
    transition: .5s;
    font-size: 16px;
}

#course_type_online .form-input form input {
    color: #fff;
}

#course_type_online .form-input form input {
    background-color: transparent;
    border-color: #8A8A8A;
}

.form-input form input:hover,
.form-input form input:focus {
    border-color: #FFD43D;
}

#course_type_online .form-input form input:hover,
#course_type_online .form-input form input:focus {
    border-color: #72CC37;
}

.form-count {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #3298F2;
    margin-top: 30px;
}

.form-btn {
    text-align: center;
    margin-top: 10px;
}

.form-btn button {
    background: #FFD43D;
    width: 273px;
    padding: 15px;
}

#course_type_online .form-btn button {
    background-color: #72CC37;
    color: #ffffff;
}

.input_group_item {
    display: grid;
    grid-template-columns: 1fr .35fr;
    grid-column-gap: 5px;
}

.form-item-sold-out {
    position: absolute;
    transform: rotate(45deg);
    top: 40%;
    left: 0;
}


/*our-courses*/
#our-courses {
    padding: 30px 0;
    overflow: hidden;
}

.our-courses_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
}

.our-courses_list {
    font-weight: 500;
    line-height: 26px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-left: 30px;
}

.our-courses_img, .our-courses_list__item {
    position: relative;
}

.our-courses_list__item::before {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #FFD43D;
    border-radius: 50%;
    left: -20px;
    margin-top: 10px;
}

.our-courses_img img {
    position: absolute;
    width: 400px;
    bottom: -90px;
}


/*responsibilities*/
#responsibilities {
    background-color: #EDF4FB;
    padding: 65px 0 50px;
}

.responsibilities_grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 31%);
    justify-content: space-between;
}

#responsibilities .sub_title {
    max-width: 860px;
}

.responsibilities_item__title {
    margin-bottom: 15px;
}

.responsibilities_item__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    padding-left: 15px;
    padding-right: 18px;
    border-left: 3px solid #FFD43D;
    text-align: justify;
}


/*master*/
#master {
    background-color: #303030;
    padding: 30px 0;
}

.master_icon {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 15px;
    background-color: #000;
}

.master_grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 50px;
}


/*course-composed*/
#course-composed {
    padding: 60px 0;
    position: relative;
    background-color: #EDF4FB;
}

#course-composed img {
    position: absolute;
    left: 50px;
    bottom: 0;
    width: 295px;
}

#course-composed .wrapper {
    max-width: 790px;
    width: 50%;
}

.course-composed_grid {
    width: 100%;
    margin: 50px auto 0;
    grid-template-columns: 1fr 1fr;
    display: grid;
    grid-row-gap: 50px;
    position: relative;
    z-index: 1;
}

.course-composed_item {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000;
    padding-left: 65px;
    padding-right: 10px;
    display: flex;
    align-items: center;
}

.course-composed_item::before {
    content: '';
    position: absolute;
    display: block;
    width: 55px;
    height: 55px;
    background: url(../image/svg/Yes.svg) no-repeat 100%;
    background-size: contain;
    margin: -27.5px auto 0;
    left: 0;
    top: 50%;
}

.course-composed__bg {
    position: absolute;
    right: 0;
    bottom: 5px;
    font-weight: 900;
    font-size: 155px;
    line-height: 0.8;
    color: #E6EDF3;
    text-transform: uppercase;
}

.course-composed__bg span {
    display: block;
    font-size: 0.46em;
    letter-spacing: 5px;
}


/*special-program*/
#python #special-program {
    overflow: hidden;
    padding-bottom: 0;
}

#python .special-program_grid {
    grid-template-columns: repeat(4, 15%);
    margin-top: 25px;
    position: relative;
    padding-bottom: 30px;
}

#python .special-program_grid::after {
    display: block;
    content: "";
    width: 150%;
    height: 120px;
    position: absolute;
    bottom: 0;
    left: -25%;
    background: #EDF4FB;
}

#python .special-program_item {
    position: relative;
    z-index: 3;
}

#python .special-program_item::after {
    display: none;
}

#python .special-program_item__title {
    font-weight: 700;
    font-size: 14px;
    height: 15px;
    color: #292929;
    margin-top: 10px;
}


/*dream-work*/
.dream-work_head {
    padding: 50px 0 100px;
}

.dream-work_body .accordion {
    display: grid;
    grid-template-columns: 40% 40%;
    grid-column-gap: 105px;
    margin-top: 80px;
    padding-bottom: 100px;
    justify-content: center;
}

.dream-work_logo {
    width: 186px;
    height: 186px;
    border-radius: 50%;
    border: 4px solid #FF9638;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 2;
}

.dream-work_right .dream-work_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 96px;
    background: #fff;
    text-transform: uppercase;
    color: #C4C4C4;
}

.dream-work_logo img {
    width: 100%;
}

.dream-work_left, .dream-work_right {
    border-radius: 6px;
    padding: 50px;
    position: relative;
}

.dream-work_left {
    border: 2px solid #FF9638;
}

.dream-work_right {
    border: 2px solid #D1D1D1;
}

.dream-work_left::before, .dream-work_left::after, .dream-work_right::before, .dream-work_right::after {
    content: '';
    display: block;
    position: absolute;
    width: 70%;
    height: 4px;
    background-color: #fff;
    left: 50%;
    margin-left: -35%;
}

.dream-work_left::before, .dream-work_right::before {
    top: -2px;
}

.dream-work_left::after, .dream-work_right::after {
    bottom: -2px;
}

.accordion-item_title .h3_heading {
    margin-bottom: 50px;
}

#dream-work .accordion-item_description ul {
    display: grid;
    grid-row-gap: 50px;
}

#dream-work .accordion-item_description li {
    position: relative;
    line-height: 18px;
    padding-left: 60px;
}

#dream-work .accordion-item_description li::before {
    content: '';
    display: block;
    position: absolute;
    height: 20px;
    width: 22px;
    left: 25px;
}

.dream-work_left .accordion-item_description li::before {
    background: url(../image/svg/Light.svg) no-repeat;
}

.dream-work_right .accordion-item_description li::before {
    background: url(../image/svg/lightWithout.svg) no-repeat;
}


/*blue_block*/
#blue_block {
    padding: 50px 0;
}

#blue_block .h1_heading {
    max-width: 760px;
    margin: 0 auto;
}


/*index-form*/
#index-form {
    position: relative;
    background: #EDF4FB;
    padding-top: 80px;
    padding-bottom: 45px;
}

#index-form img {
    position: relative;
    z-index: 1;
}

.index-form_grid {
    display: grid;
    grid-template-columns: minmax(320px, 500px)  minmax(320px, 500px);
    justify-content: space-around;
}

.index-form__bg {
    position: absolute;
    font-size: 96px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: #E6EDF3;
    max-width: 750px;
    bottom: 0;
    left: 0;
}


/*inkubator-form*/
.form_content {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 50px 58px;
    z-index: 1;
    position: relative;
}

.form_content h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
}

.form-text {
    text-transform: uppercase;
}

.form_content_grid {
    margin-bottom: 50px;
}

.form_content_kurs {
    display: flex;
    margin: 20px 0;
}

.form_content_kurs .container.point {
    margin-right: 35px;
}

.form_content_kurs .container, .container-label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form_content_kurs .container input {
    display: none;
}

.form_content_kurs .container input:checked ~ .checkmark {
    background-color: #ffffff;
}

.checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #000;
}

.form_content_kurs .container input:checked ~ .checkmark:after {
    display: block;
}

.form_content_kurs .container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2196F3;
}

.form_content input {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #292929;
    border-radius: 3px;
    font-size: 16px;
    padding: 10px 0 10px 10px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #292929;
}

.form_content input:hover {
    border-color: #3298f2;
}

.form_button__block {
    margin-top: 30px;
}


/*front-back*/
#front-back {
    padding: 40px 0 90px;
    position: relative;
    background-image: url(../image/bw.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.front_text, .back_text {
    position: absolute;
    font-weight: 900;
    font-size: 144px;
    text-transform: uppercase;
}

#front-back .front_text {
    color: #E6EDF3;
    transform: rotate(-90deg);
    bottom: 220px;
    left: -10%;
}

#front-back .back_text {
    bottom: -16px;
    right: 0;
    color: #212121;
}

.front-back_grid {
    display: grid;
    grid-template-columns: 40% 40%;
    justify-content: space-between;
}

.front-back_text {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    padding: 20px;
    text-align: justify;
    margin-top: 15px;
}

.back_content .front-back_text {
    color: #fff;
}

.front-back_video {
    margin-top: 50px;
    position: relative;
}

.front-back_video img {
    border-radius: 4px;
    border: 4px solid #fff;
    z-index: 1;
    position: relative;
}

.front-back_grid .play_button__content {
    flex-direction: column;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    bottom: -75px;
    left: 50%;
    transform: translatex(-50%);
}

.front_content .play_button__content {
    z-index: 3;
}

.back_content .play_button__content {
    color: #ffffff;
    z-index: 2;
    white-space: nowrap;
}

.front-back_grid .play_button__wrap {
    width: 100px;
    height: 100px;
}

.front_content .play_button__wrap, .front_content .layer_button {
    border-color: #000;
}

.front_content .play_button, .front_content .play_button::before {
    background-color: #000;
}

.front_content .play_button span {
    color: #fff;
}

.back_content .play_button span {
    color: #000;
}

.front-back_text img.first-child {
    position: absolute;
    transform: rotate(270deg);
    right: 0;
    top: 0;
}

.front-back_text img:last-child {
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    bottom: 0;
}

.back_content .front-back_text img.first-child {
    position: absolute;
    transform: rotate(90deg);
    right: 0;
    bottom: 0;
}

.back_content .front-back_text img:last-child {
    position: absolute;
    transform: rotate(270deg);
    left: 0;
    bottom: 0;
}


/*course-consists*/
#course-consists {
    background-color: #E6EDF3;
    padding: 40px 0;
}

.course-consists_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 250px));
    justify-content: space-between;
}

.course-consists__number {
    font-weight: 900;
    font-size: 56px;
    line-height: 98px;
    justify-content: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
}

.course-consists__number::before, .course-consists__number::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: 4s;
}

.course-consists__number::before {
    width: 190px;
    height: 190px;
    border-bottom: 4px solid #3298F2;
    border-left: 4px solid #3298F2;
}

.course-consists__number::after {
    width: 170px;
    height: 170px;
    border-top: 4px solid #FF9638;
    border-right: 4px solid #FF9638;
}

.course-consists_text {
    font-weight: bold;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
}


/*guarantee*/
#guarantee {
    position: relative;
    background: #292929;
    padding: 40px 0 50px;
    overflow: hidden;
}

.guarantee__bg {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 92px;
    color: #202020;
    transform: rotate(-90deg);
    position: absolute;
    left: -110px;
    bottom: 165px;
}

.guarantee__bg span {
    position: absolute;
    left: 84px;
    top: 73px;
    -webkit-text-stroke-width: 2px;
    color: #333;
    -webkit-text-stroke-color: #333;
}

.guarantee_grid {
    display: grid;
    grid-template-columns: 465px 1fr;
    grid-column-gap: 100px;
    margin-top: 50px;
}

.guarantee_image {
    position: relative;
}

.guarantee_image img {
    position: absolute;
    bottom: -50px;
}

.guarantee_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 100px;
    grid-row-gap: 35px;
}

.guarantee_item__title {
    display: block;
    position: relative;
    font-size: 21px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.guarantee_item__title::before {
    content: '';
    width: 40px;
    height: 50px;
    position: absolute;
    background: url(../image/brand/sprites.png) -513px -648px;
    left: -45px;
    top: -11px;
}

.guarantee_item__text {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    color: #ffffff;
}

#guarantee input {
    display: none;
}


/*installments*/
#installments {
    padding: 30px 0;
}

#installments .h2_heading {
    position: relative;
}

.installments_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20%;
}

.installments_title {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.installments_title span {
    max-width: 320px;
}

.installments_image {
    position: absolute;
}

.installments_text img {
    width: 60px;
}

.installments_image:first-child {
    right: 0;
    top: 0;
}

.installments_image:last-child {
    left: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.installments_text {
    display: flex;
    align-items: center;
    column-gap: 15px;
}


/*free_result*/
#free_result {
    padding: 40px 0;
}

#free_result .swiper {
    width: 100%;
    margin-top: 50px;
}

#free_result .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 75px;
    grid-auto-flow: column;
}

.free_result__item {
    max-width: 470px;
    margin: 0 auto;
}

.free_result__image {
    height: 510px;
    background: #fff;
    color: #000;
    padding: 30px 28px;
    border-radius: 20px;
    -webkit-box-shadow: 10px -8px 5px 0 rgb(230 237 243 / 97%);
    -moz-box-shadow: 10px -8px 5px 0 rgba(230, 237, 243, 0.97);
    box-shadow: 10px -8px 5px 0 rgb(230 237 243 / 97%);
}

.free_result__image img {
    width: 85%;
    height: 100%;
    margin: 0 auto;
}

.free_result__text {
    font-weight: 600;
    line-height: 26px;
    text-align: justify;
    padding: 0 10px;
    margin-top: 25px;
}


/**/
#form_free {
    padding: 30px 0;
}

.form_free__grid {
    display: grid;
    grid-template-columns: 1fr .75fr;
    grid-column-gap: 75px;
}

.form_free__text {
    margin-top: 30px;
    margin-bottom: 90px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
}

.form_free__wrap {
    display: flex;
    justify-content: space-between;
}

.form_free__item {
    flex-basis: 30%;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    z-index: 1;
}

.form_free__item span {
    color: #E6EAEE;
    font-size: 150px;
    position: absolute;
    font-weight: 900;
    z-index: -1;
    left: -25px;
    top: 0;
}

.form_free__right {
    background: #FFF;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    width: 80%;
    margin: 0 auto;
}

#form_free .form-content {
    position: relative;
    padding: 0 30px;
}

.form_content_grid {
    margin: 30px 0;
}


/*contact*/
#contact {
    background: #323232;
}

#contacts {
    position: relative;
    min-height: calc(100vh - 70px);
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    font-weight: 800;
}

#contacts .h1_heading {
    text-transform: none;
    font-weight: 700;
    margin-bottom: 50px;
}

#contacts .contacts-body {
    display: flex;
    justify-content: space-around;
}

#contacts .contacts-item {
    width: 45%;
}

#contacts .h2_heading {
    margin-bottom: 35px;
}

#contacts .contacts-address {
    background-color: #fff;
    color: #292929;
    margin: 0 auto;
    border-radius: 6px;
    padding: 20px 30px;
    font-weight: 600;
    min-height: 440px;
}

#contacts .contact-item span {
    top: inherit;
    color: #292929;
}

#contacts .contacts-address a {
    color: #292929;
    font-weight: 600;
}


/*partners_about*/
#partners_about {
    padding: 30px 0;
}

.partners_about__grid {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}


/*methods*/
#methods {
    position: relative;
    padding-top: 75px;
    padding-bottom: 100px;
}

.methods_grid {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.methods_left, .methods_right {
    width: 50%;
}

.methods_slider.swiper {
    position: relative;
    width: 100%;
    max-width: 650px;
    padding-bottom: 45px;
}

.methods_slider .swiper-pagination-bullet-active {
    border: none;
}

.methods_description {
    color: #fff;
}

.methods_description p {
    font-weight: 300;
    text-align: justify;
    margin-bottom: 20px;
}

.methods_description ul li {
    position: relative;
    padding-left: 30px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.methods_description ul li::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: #3298F2;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}

.methods_left .button {
    color: #292929;
    max-width: 315px;
    margin-top: 100px;
}

.methods_right_item {
    position: relative;
}

.methods_right_item .play_button__content {
    right: 10px;
    top: 10px;
}

.methods__bg {
    position: absolute;
    bottom: 10px;
    right: 0;
    font-weight: 900;
    font-size: 144px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #323232;
}


/*in_number*/
#in_number {
    padding: 40px 0 50px;
}

.in_number_grid {
    display: grid;
    grid-template-columns: repeat(5, 15%);
    justify-content: space-around;
    margin-top: 50px;
}

.in_number_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.in_number_item__number {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 15px solid #EDF4FB;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 48px;
}

.in_number_item__text {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #000;
}


/*gallery*/
#gallery {
    padding-top: 55px;
    padding-bottom: 40px;
}

#gallery .wrapper {
    display: flex;
    flex-direction: column;
}

#gallery .gallery_slider {
    position: relative;
}

#gallery .swiper-button {
    background-color: #ccc;
}

.gallery_item a {
    display: block;
}

.gallery_item img {
    object-fit: cover;
    height: 200px;
    width: 100%;
    border: 2px solid #3298F2;
    border-radius: 20px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.gallery_item img:hover {
    border-color: #FF9638;
}


/*direction*/
#direction {
    padding-top: 40px;
    padding-bottom: 50px;
}

.direction_slider {
    margin-top: 25px;
    width: 100%;
}

.direction_slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 40px;
}

.direction_item {
    position: relative;
    border: 1px solid #9DC6EA;
    border-radius: 20px;
    padding-top: 53px;
    transition: .3s;
    margin-top: 25px;
}

.direction_item a {
    display: block;
    background-color: #E6EDF3;
    font-weight: 700;
    color: #000;
    border-radius: 0 0 20px 20px;
    padding: 20px 0;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}

.direction_item a:hover {
    background-color: #3298F2;
}

.direction_item__title {
    font-weight: 900;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #3298F2;
    margin-bottom: 37px;
}

.direction_item__icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}


/*all_reviews*/
#all_reviews {
    padding-top: 120px;
    padding-bottom: 40px;
}

.all_reviews__grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    grid-gap: 25px;
}

.all_item_reviews {
    border: 1px solid #ADD6FA;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s;
    padding-bottom: 15px;
    font-weight: 500;
    text-align: center;
    color: #303030;
    max-width: 550px;
}

.all_item_reviews__image iframe,
.all_item_reviews__picture {
    width: 100%;
    object-fit: cover;
    height: 275px;
    border-radius: 8px;
}

.all_item_reviews__image {
    position: relative;
}

.all_item_reviews .play_button__content {
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

.all_item_reviews__title {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.all_item_reviews__info {
    cursor: pointer;
}

.all_item_reviews__info summary {
    list-style: none;
}

.all_item_reviews__info summary::-webkit-details-marker {
    display: none;
}

.all_item_reviews__descsription {
    padding: 15px 18px 0;
    font-size: 14px;
    font-weight: 600;
    text-align: justify;
}

.all_item_reviews__name {
    font-weight: 800;
    font-size: 21px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}


/*thank-page*/
.thank-page {
    height: calc(100vh - 70px);
    background: rgba(255, 150, 56, 0.91);
    padding-top: 190px;
    text-align: center;
}

.thank-page h3, #thanks h3 {
    font-size: 21px;
    line-height: 1.1;
}

.thanks-one .section-title > div {
    margin-bottom: 30px;
}

#thanks .section-title {
    padding: 100px 0;
}

#reviews_thanks {
    padding: 30px 0 50px;
}

#reviews_thanks .all_item_reviews {
    border: none;
    border-radius: 0px;
    padding-bottom: 35px;
    text-align: left;
    display: grid;
    position: relative;
}

#reviews_thanks .all_item_reviews__title {
    font-weight: 600;
    margin: 10px 0;
    color: #FFD43D;
    order: -1;
}

#reviews_thanks .all_item_reviews__name {
    order: -2;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    text-transform: none;
}

#reviews_thanks .all_item_reviews__picture {
    border-radius: 0px;
}

#reviews_thanks .all_item_reviews .play_button__content {
    bottom: -35px;
}

#reviews_thanks .wrapper {
    display: flex;
    flex-direction: column;
}

.reviews_thanks__slider {
    margin-top: 50px;
    position: relative;
}

.reviews_thanks__slider .swiper-button {
    margin-top: 0;
}


/*employed*/
#employed {
    padding: 40px 0 60px;
}

#employed.bg_orange {
    background-color: rgba(251, 142, 36, 0.77);
}

#employed .swiper-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 25px;
}

.employed-image {
    display: block;
    position: relative;
    cursor: pointer;
    transition: ease-in-out .5s;
    overflow: hidden;
}

.cases-after-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.employed-image::before, .employed-image::after {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(32, 30, 37, 0.5);
    transition: ease-in-out .5s;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.employed-image::before {
    content: attr(data-before);
    top: -50%;
    align-items: flex-end;
}

.all-employed .employed-image:hover::before {
    background-color: rgba(32, 30, 37, 0.1);
    color: transparent;
}

.employed-image::after {
    content: attr(data-after);
    bottom: -50%;
    text-align: center;
}

.all-employed .employed-image:hover::after {
    background-color: rgba(32, 30, 37, 0.1);
    color: transparent;
}

.older .employed-image::before {
    top: -85%;
}

.older .employed-image:hover::before {
    top: -50%;
}

.older .employed-image::after {
    bottom: -85%;
}

.older .employed-image:hover::after {
    bottom: -50%;
}

#employed .swiper-button {
    background-color: #3298f2;
}

#employed.bg_blue .swiper-button {
    background-color: #ff9638;
}

.employed_slider .swiper-button {
    display: none;
}


.free-form-content {
    background: #FFFFFF;
    border-radius: 10px;
    padding-top: 57px;
    padding-bottom: 49px;
    z-index: 1;
    position: relative;
}

.form-content {
    position: relative;
}

#index-form .form-content {
    position: relative;
    padding: 0 30px;
}

.section-title {
    text-align: center;
}

.free-form-content .type-title-h2 {
    width: 100%;
    font-weight: 800;
    font-size: 21px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
}

.type-nine-index .free-form-content .type-title-h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: inherit;
    text-align: center;
}

.free-radio {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    /*column-gap: 35px;*/
}

.free-radio .container.point {
    margin-right: 35px;
}

.free-radio .container, .container-label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.free-radio .container input, .container-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.container input:checked ~ .checkmark, .containers input:checked ~ .checkmark {
    background-color: #ffffff;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #000000;
    box-sizing: border-box;
}

.container input:checked ~ .checkmark:after, .containers input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after, .containers .checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.type-title-h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: inherit;
    text-align: center;
}

.free-form-content form {
    padding: 0 30px;
}

.title-modal, .radio-title {
    margin-bottom: 35px;
}

.form-free {
    margin-top: 10px;
}

.form-free input, .__select {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #292929;
    box-sizing: border-box;
    border-radius: 3px;
    font-size: 16px;
    padding: 10px 0 10px 10px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #292929;
}


/*SELECT*/
.__select {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 0 auto;
}

.__select[data-state="active"] .__select__title::before {
    transform: translate(-3px, -50%) rotate(-45deg);
}

.__select[data-state="active"] .__select__title::after {
    transform: translate(3px, -50%) rotate(45deg);
}

.__select[data-state="active"] .__select__content {
    opacity: 1;
    height: auto;
}

.__select[data-state="active"] .__select__label + .__select__input + .__select__label {
    max-height: 40px;
    border-top-width: 1px;
}

.__select__title {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    /*padding: 8px 16px;*/
    /*border-radius: 5px;*/
    /*border: solid 1px #c7ccd1;*/
    cursor: pointer;
}

.window-modal .__select {
    margin-bottom: 15px;
}

.window-modal .__select__title {
    color: #ffffff;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    border: solid 1px #c7ccd1;
    justify-content: center;
}

.window-modal .__select__content {
    background-color: #303030;
}

.window-modal .__select__content label {
    margin-bottom: 0;
}

.__select__title::before, .__select__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    display: block;
    width: 10px;
    height: 2px;
    transition: all 0.3s ease-out;
    background-color: #333333;
}

.window-modal .__select__title::before, .window-modal .__select__title::after {
    background-color: #ffffff;
}

.__select__title::before {
    transform: translate(-3px, -50%) rotate(45deg);
}

.__select__title::after {
    transform: translate(3px, -50%) rotate(-45deg);
}

.__select__title:hover::before, .__select__title:hover::after {
    background-color: #3298f2;
}

.__select__content {
    position: absolute;
    top: 40px;
    display: flex;
    left: 0;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #c7ccd1;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 0.3s ease-out;
    opacity: 0;
    z-index: 9999;
    height: 0;
}

.__select__input {
    display: none;
}

.__select__input :checked + label {
    background-color: #dedede;
}

.__select__input:disabled + label {
    opacity: 0.6;
    pointer-events: none;
}

.__select__label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    max-height: 0;
    padding: 0 16px;
    transition: all 0.2s ease-out;
    cursor: pointer;
    overflow: hidden;

    /*& + input + & {*/
    /*      border-top: 0 solid #C7CCD160;*/
    /*  }*/

}

.__select__label:hover {
    background-color: #3298f2 !important;
    color: #ffffff;
}

/*END SELECT*/

/*NEW PROGRAMM FAQ*/
/*all-prgram*/
.program2,
.faq2 {
    color: #292929;
    padding-top: 85px;
    padding-bottom: 85px;
}

.program2 .program__grid {
    display: grid;
    grid-template-columns: auto 80%;
    gap: 20px;
    margin-top: 65px;
    position: relative;
}

.program2 .program-sl__item {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    /*line-height: 1.2;*/
    padding: 21px 0 21px 46px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.program2 .program-sl__item.active,
.program2 .program-sl__item.active::before,
.program2 .program-sl__item:hover::before,
.item-faq input:checked + .title::before,
.item-faq input:checked + .text::before {
    color: #3298F2;
}

.program2 .program-sl__item::before,
.item-faq .title::before,
.item-faq .text::before {
    content: '01';
    display: block;
    text-align: center;
    position: absolute;
    font-weight: 900;
    font-size: 24px;
    color: #C4C4C3;
    width: 45px;
}

.program2 .program-sl__item::before {
    content: attr(data-number);
    top: 16px;
    left: -8px;
    transform: rotate(-90deg);
    transition: color .2s ease-out;
}

.item-faq .title::before {
    content: attr(data-before);
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
}

.item-faq .text::before {
    content: attr(data-before);
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: #3298F2;
}

/*accordion*/
.program2 .accordion {
    position: relative;
    z-index: 5;
}

.program2 .item-accordion {
    display: grid;
    grid-template-columns: 60% 1fr;
    padding: 0;
}

.program2 .item-accordion .title,
.item-faq .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 10px;
    border: 1px solid #A7A7A7;
    border-radius: 4px;
    display: grid;
    align-items: center;
    text-transform: none;
}

.program2 .item-accordion .title {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 12px;
    background: #fff;
}

.item-faq .title {
    height: 100%;
    padding: 8px 10px 8px 50px;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    margin-top: 65px;
}

.faq__list {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
    grid-auto-rows: max-content;

}

.faq__col {
    display: flex;
    flex-direction: column;
    gap: 32px 16px;
}

.program2 .item-accordion .text,
.item-faq .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #A7A7A7;
    border-radius: 4px;
}

.program2 .item-accordion .text {
    z-index: 2;
    width: 36.3%;
    padding: 12px 24px;
    background: #fff;
}

.item-faq .text {
    padding: 60px 12px 12px;
    width: calc(25% - 16px * 3 / 4);
}

.program2 .item-accordion .icon,
.item-faq .icon {
    display: flex;
    width: 16px;
    transition: all 0.5s ease-in-out;
}

.item-faq .icon {
    transform: rotate(270deg);
}

.program2 .item-accordion input:checked + .title,
.item-faq input:checked + .title,
.item-faq input:checked ~ .text {
    color: inherit;
    border: 2px solid #3298F2;
}

.program2 .item-accordion input:checked + .title {
    padding: 11px 19px;
}

.item-faq input:checked + .title {
    padding: 7px 9px 7px 49px;
}

.program2 .item-accordion input:checked + .title .icon {
    transform: rotate(180deg);
}

.item-faq input:checked + .title .icon {
    transform: rotate(90deg);
}

.accordion .col {
    position: relative;
}

.item-accordion .title::before,
.program2 .item-accordion .text,
.program2 .item-accordion input,
.program2 .program-sl__list,
.item-faq input,
.item-faq .text {
    display: none;
}

.program2 .prst:checked + .program-sl__list,
.program2 .item-accordion input:checked ~ .text,
.item-faq input:checked ~ .text {
    display: block;
}

.program2 .program-hours {
    position: absolute;
    bottom: 0;
    right: 5%;
}

/*program-hours*/
.program-hours {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.program-hours__counter {
    font-size: 100px;
    font-weight: 900;
    position: relative;
}

.program-hours__counter::before {
    content: attr(data-before);
    position: absolute;
    left: 30%;
    bottom: 30%;
    transform: translateX(-50%);
    color: #E8E6E6;
    font-size: 230px;
    z-index: -1;
    -webkit-text-stroke-width: 2px;
}

.program-hours__counter::after {
    content: attr(data-after);
    position: absolute;
    font-size: 48px;
    left: -40%;
    bottom: -40%;
    color: #292929;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px;
}

.program-hours__text {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 40px;
    margin-left: 60px;
}

.program-hours__text span {
    display: block;
    font-size: 32px;
}

/*bg_black*/
.program2.bg_black {
    color: #fff;
}

.bg_black .program-sl__item.active,
.bg_black .program-sl__item.active::before,
.bg_black .program-sl__item:hover:before {
    color: #ff9638;
}

.bg_black .item-accordion .title,
.bg_black .item-accordion .text {
    background: #292929;
}

.bg_black .program-hours__counter::before {
    color: #333;
}

.bg_black .program-hours__counter::after {
    color: #ff9638;
}

/*NEW PROGRAMM FAQ*/
#week {
    padding: 40px 0;
}

.week_grid {
    display: grid;
    grid-template-columns: repeat(3, 30%);
    grid-column-gap: 3.33%;
    grid-row-gap: 60px;
    margin-top: 100px;
}

.week_item {
    position: relative;
    border: 2px solid #ADD6FA;
    border-radius: 20px;
    padding: 70px 20px 20px;
}

.week_item:nth-child(1) .week_item__title::before,
.week_item:nth-child(3) .week_item__title::before {
    background: url(../image/svg/lection.svg) no-repeat 50% #ffffff;
}

.week_item:nth-child(2) .week_item__title::before,
.week_item:nth-child(4) .week_item__title::before {
    background: url(../image/svg/praction.svg) no-repeat 50% #ffffff;
}

.week_item:nth-child(5) .week_item__title::before {
    background: url(../image/svg/consultation.svg) no-repeat 50% #ffffff;
}

.week_item:nth-child(6) .week_item__title::before {
    background: url(../image/svg/eng.svg) no-repeat 50% #ffffff;
}

.week_item__title {
    position: absolute;
    font-weight: 900;
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
    color: #FF9638;
    text-align: center;
    background: #ffffff;
    top: -13px;
    left: 30px;
    padding-left: 110px;
    padding-right: 10px;
}

.week_item__title::before {
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #ADD6FA;
    border-radius: 50%;
    left: 0;
    top: 13px;
    transform: translateY(-50%);
}

.week_item__desc-title {
    display: none;
    font-weight: 600;
    font-size: 18px;
    color: #3298F2;
    text-align: center;
}

.week_item__text {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    text-align: justify;
}

#week .owu {
    position: absolute;
    color: #EDF4FB;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    font-weight: 900;
    font-size: 144px;
    text-transform: uppercase;
}

#page-text {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

#page-text .h1_heading {
    text-transform: none;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 34px;
}

.faq__grid .faq__list label.title strong {
    font-weight: 600;
}

.blog-filter {
    margin-top: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #3490FF;
}
.blog-filter__title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.bf-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 15px;
}
.bf-list__link {
    display: inline-block;
    padding: 8px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.5s;
    cursor: pointer;
    background: #EDF4FB;
    color: #292929;
    text-decoration: none;
}
.bf-list__link--active,
.bf-list__link:hover{
    color: #fff;
    background: #3490FF;
}
.bf-list--tags{
    padding-bottom: 5px;
}
.bf-list--tags .bf-list__link{
    padding-block: 5px;
 
}