@import 'font.css';
/*-==============================-global-style-for-ol-browsers-==================================*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    outline: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
}

button,
a {
    cursor: pointer;
    text-decoration: none !important;
    border: 0;
    display: inline-block;
    padding: 0;
}

/* img {
    max-width: 100%;
    max-height: 100%;
} */

body {
    margin: 0;
    padding: 0;
}

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.justify-content-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-items-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-no-wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px;
}

/*-========================================-global-style-for-ol-browsers-end-========================================*/

:root {
    --body-color: #000000;
    --header_nav_item_color: #232323;
    --header_nav_item_text_color: #FFFFFF;
    --header_nav_item_hover_color: rgba(255, 255, 255, 0.1);
    --header_nav_select_background: #F2F2F2;
    --header_nav_select_label_span: #925FFF;
    --header_nav_select_label_span_color: #FFFFFF;
    --header_nav_language_text_color: #FFFFFF;
    --first_section_body_title_color: #FFFFFF;
    --first_section_body_title_span_color: #925FFF;
    --first_section_body_description_color: #D5D5D5;
    --first_section_body_top_button_color: #151515;
    --first_section_body_top_button_background: #D5EC2A;
}

.body {
    background-color: var(--body-color);
}




.header_nav_logo img {
    height: 100%;
}

.header_nav_bar {
    padding: 8px;
    border-radius: 50px;
    background-color: var(--header_nav_item_color);
    width: auto;
    position: relative;
}

.header_nav_bar nav ul li a {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: 0.25px;
    color: var(--header_nav_item_text_color);
    padding: 10px 10px;
    transition: all 0.4s;
    border-radius: 20px;
}

.header_nav_bar nav ul {
    gap: 10px;
}

.header_nav_bar nav ul li a:hover {
    background-color: var(--header_nav_item_hover_color);
}

.header_nav_bar nav ul li a.active {
    background-color: var(--header_nav_item_hover_color);
}

.header_nav_select label {
    background-color: #8b0101;
    padding: 5px;
    font-family: WeblySleek UI;
    font-size: 12px;
    font-weight: 600;
    line-height: 15.56px;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
}

.header_nav_select label span {
    padding: 10px 20px;
    display: block;
    border-radius: 20px;
}

.header_nav_select label input {
    display: none;
}

.header_nav_select label span.active {
    background-color: var(--header_nav_select_label_span);
    color: var(--header_nav_select_label_span_color);
}

.header_nav_select a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
}

.header_nav {
    padding: 20px 0;
}

.header_nav_language_select_header {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: 0.25px;
    color: var(--header_nav_language_text_color);
    cursor: pointer;
    position: relative;
    padding-right: 15px;
}

.header_nav_language_select_header::after {
    content: '';
    position: absolute;
    right: 0;
    background-image: url('../fonts/select.svg');
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translateY(60%);
}

.header_nav_select_and_language {
    gap: 20px;
}

.first_section_body_title {
    font-family: WeblySleek UI;
    font-size: 80px;
    font-weight: 600;
    line-height: 100px;
    text-align: center;
    color: var(--first_section_body_title_color);
    padding-top: 35px;
}

.first_section_body_title span {
    color: var(--first_section_body_title_span_color);
}

.first_section_body_description {
    font-family: WeblySleek UI;
    font-size: 24.78px;
    font-weight: 300;
    line-height: 41.3px;
    text-align: center;
    color: var(--first_section_body_description_color);
    padding-top: 30px;
    max-width: 738px;
    width: 100%;
}

#container_fluid_white_hjskmfg img {
    max-width: 100%;
}

.first_section_body_top_button button {
    font-family: DM Sans;
    font-size: 14.64px;
    font-weight: 500;
    line-height: 16.27px;
    color: var(--first_section_body_top_button_color);
    padding: 7px 30px 7px 15px;
    border-radius: 20px;
    background: var(--first_section_body_top_button_background);
    position: relative;
}

.first_section_body_top_button button::after {
    content: '';
    background-image: url(../fonts/button_icon.svg);
    width: 12px;
    height: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-55%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.header {
    padding-bottom: 30px;
}

.first_section_body_footer_button button {
    padding: 10px;
    border-radius: 80px;
    background: #D5EC2A;
    gap: 5px;
    font-family: WeblySleek UI;
    font-size: 18.02px;
    font-weight: 600;
    line-height: 24.03px;
    text-align: left;
    color: #151515;
}

.first_section_body_footer_button button span {
    width: 36px;
    height: 36px;
    background: #171717;
    display: block;
    border-radius: 40px;
    position: relative;
}

.first_section_body_footer_button {
    padding-top: 35px;
}

.first_section_body_footer_button button span::after {
    content: '';
    background-image: url(../fonts/footer_button_icon.svg);
    width: 12px;
    height: 12px;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.first_section_body {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.8s ease;
    cursor: default;
}

.first_section_main {
    width: 100%;
    min-height: 75vh;
}

.service_body_item {
    width: 100%;
    border-radius: 30px;
    padding: 82px 40px;
    position: relative;
    transition: all 0.4s;
}

.service_body_item.white {
    background: #FFFFFF;
}

.service_body_item_count_number {
    font-family: Poppins;
    font-size: 115.2px;
    font-weight: 500;
    line-height: 120px;
    text-align: left;
    padding-top: 20px;
}

.service_body_item_info_title {
    font-family: WeblySleek UI;
    font-size: 32.06px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;
}

.service_body_item_info_description {
    font-family: WeblySleek UI;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding-bottom: 17px;
}

.service_body_item_image {
    width: 398px;
    height: 140px;
    border-radius: 39px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.service_body_item_left {
    padding-right: 70px;
}

.service_body_item_count_icon {
    width: 248px;
    height: 96px;
    position: absolute;
    top: 60px;
    left: 130px;
}

.service_body_item_count_icon svg {
    width: 100%;
    height: 100%;
}

.animation {
    stroke-dasharray: 500;
    /* Общая длина линии */
    stroke-dashoffset: 500;
    /* Полностью скрываем линию */
    animation: draw 4s ease-in-out infinite;
    /* Анимация */
}

@keyframes draw {
    50% {
        stroke-dashoffset: 0;
        /* Полностью рисуем обводку */
    }

    100% {
        stroke-dashoffset: -500;
        /* Линия исчезает справа налево */
    }
}

.service_body_item_count {
    position: relative;
}

.service_body_item.purple {
    background: #925FFF;
}

.service_body_item.purple .service_body_item_count_number {
    color: #FFFFFF;
}

.service_body_item.purple .service_body_item_info_title {
    color: #FFFFFF;
}

.service_body_item.purple .service_body_item_info_description {
    color: #FFFFFF;
}

.service_body_item.purple .service_body_item_count_icon {
    left: 190px;
    opacity: 0.2;
}

.service_body_item.red {
    background: #FF561E;
}

.service_body_item.red .service_body_item_count_number {
    color: #FFFFFF;
}

.service_body_item.red .service_body_item_info_title {
    color: #FFFFFF;
}

.service_body_item.red .service_body_item_info_description {
    color: #FFFFFF;
}

.service_body_item.red .service_body_item_count_icon {
    left: 190px;
    opacity: 0.2;
}

.container_fluid.white {
    background-color: #FFFFFF;
    border-radius: 60px 60px 0 0;
    padding: 40px 0 40px;
}

.container_fluid {
    width: 100%;
}

.white_fluid_title {
    font-family: WeblySleek UI;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}

.white_fluid_slider_slide {
    height: 50px !important;
    display: flex !important;
    justify-content: center;
}

.white_fluid_slider_slide img {
    height: 100%;
}

.white_fluid_slider {
    padding-top: 30px !important;
}

.white_fluid_body_info_list_item_title {
    font-family: WeblySleek UI;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding-top: 10px;
    white-space: nowrap;
}

.white_fluid_body_info_list_item_description {
    font-family: WeblySleek UI;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    padding-top: 10px;
}

.white_fluid_body_info_list_item {
    border: 1.25px solid #E7E7E7;
    border-radius: 20px;
    padding: 24px;
    max-width: 289px;
    width: 100%;
}

.white_fluid_body_info_list {
    gap: 15px;
    padding-top: 40px;
}

.white_fluid_body_info_title {
    font-family: WeblySleek UI;
    font-size: 52px;
    font-weight: 600;
    line-height: 64px;
    text-align: left;
    margin-top: -15px;
}

.white_fluid_body_info_description {
    font-family: WeblySleek UI;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    text-align: left;
    padding-top: 35px;
}

.white_fluid_body_info {
    max-width: 584px;
    width: 100%;
}

.white_fluid_body_image_player {
    width: 62px;
    height: 62px;
    background-image: url(../fonts/player.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 48px 48px;
    padding: 15px;
    border-radius: 60px;
    background-color: rgba(203, 251, 69, 0.3);
    transition: all 0.4s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.white_fluid_body_image_player:hover {
    width: 72px;
    height: 72px;
}

.white_fluid_body_image {
    position: relative;
    max-width: 593px;
    width: 100% !important;
    height: auto;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.white_fluid_body_image img {
    width: 100%;
    height: 345px;
    object-fit: cover;
    border-radius: 30px;
}

.white_fluid_body {
    gap: 65px;
}

.container_fluid.corichnivi {
    background-color: #171717;
    padding: 30px 0 40px;
    border-radius: 60px 60px 0 0;
}

.about_header_title {
    font-family: WeblySleek UI;
    font-size: 28px;
    font-weight: 600;
    line-height: 35px;
    text-align: left;
    color: #FFFFFF;
}

.about_header_title span {
    color: #C2FF41;
}

.about_header_description {
    font-family: WeblySleek UI;
    font-size: 22px;
    font-weight: 300;
    line-height: 33px;
    text-align: left;
    color: #FFFFFF;
    max-width: 564px;
    width: 100%;
}

.about_header {
    gap: 20px;
}

.about_body_list_item_conference {
    width: 262px;
    border-radius: 24px;
    background: #232323;
    padding: 30px 34px;
}

.about_body_list_item_conference_header {
    font-family: DM Sans;
    font-size: 48px;
    font-weight: 500;
    line-height: 57.6px;
    letter-spacing: -1px;
    text-align: left;
    color: #FFFFFF;
}

.about_body_list_item_conference_body_title {
    font-family: WeblySleek UI;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 45px;
}

.about_body_list_item_conference_body_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #8B8B8B;
    padding-top: 5px;
}

.about_body_list_item_first_image {
    width: 262px;
    height: 209px;
    border-radius: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about_body_list_item {
    gap: 24px;
    max-width: 33%;
    width: 100%;
}

.about_body_list_item_conference_social_item {
    width: 120px;
    height: 120px;
    background: #232323;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.about_body_list_item_conference_social {
    gap: 16px;
}

.about_body_list_item_conference_social_item.twiter:hover {
    background: linear-gradient(225deg, rgb(25, 118, 210) 0%, rgb(25, 118, 210) 100%) rgb(25, 118, 210);
}

.about_body_list_item_conference_social_item.instagram:hover {
    background: linear-gradient(225deg, rgb(214, 36, 159) 0%, rgb(253, 89, 73) 100%) rgba(0, 0, 0, 0);
}

.about_body_list_item_conference_social_item.youtube:hover {
    background: linear-gradient(225deg, rgb(255, 0, 0) 0%, rgb(255, 0, 0) 100%) rgb(255, 0, 0);
}

.about_body_list_item_conference_social_item.dribbble:hover {
    background: linear-gradient(225deg, rgb(25, 118, 210) 0%, rgb(25, 118, 210) 100%) rgb(25, 118, 210);
}

.about_body_list_item_people_header {
    max-width: 326px;
    width: 100%;
    height: 477px;
    border-radius: 24px;
    background: #D5EC2A;
    padding: 30px;
}

.about_body_list_item_people_header_count {
    font-family: DM Sans;
    font-size: 64px;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: -2px;
    text-align: left;
    color: #151515;
}

.about_body_list_item_people_body_title {
    font-family: WeblySleek UI;
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -1px;
    text-align: left;
    color: #151515;
}

.about_body_list_item_people_body_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #151515;
    padding-top: 15px;
}

.about_body_list_item_people_footer_count {
    font-family: DM Sans;
    font-size: 48px;
    font-weight: 500;
    line-height: 57px;
    letter-spacing: -1px;
    text-align: left;
    color: #FFFFFF;
}

.about_body_list_item_people_footer_body_title {
    font-family: WeblySleek UI;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #FFFFFF;
}

.about_body_list_item_people_footer_body_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #8B8B8B;
}

.about_body_list_item_people_footer {
    background: #232323;
    max-width: 326px;
    width: 100%;
    height: 256px;
    border-radius: 24px;
    padding: 30px;
}

.about_body_list_item_play_info_body {
    max-width: 294px;
    width: 100%;
    height: 498px;
    border-radius: 24px;
    background: #FFFFFF;
}

.about_body_list_item_play_info_body_count {
    font-family: DM Sans;
    font-size: 64px;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: -2px;
    text-align: left;
    color: #151515;
}

.about_body_list_item_play_info_body_footer_title {
    font-family: WeblySleek UI;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: -1px;
    text-align: left;
    color: #151515;
}

.about_body_list_item_play_info_body_footer_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #5E5E5E;
    padding-top: 5px;
}

.about_body_list_item_play_info_body {
    padding: 30px;
}

.about_body_list_item_play_info_header {
    max-width: 394px;
    width: 100%;
    height: 235px;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.video_player_icon {
    background-color: rgba(203, 251, 69, 0.3);
    width: 62px;
    height: 62px;
    border-radius: 60px;
    transition: all 0.3s;
}

.video_player_icon_item {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background-color: #D5EC2A;
    background-image: url(../fonts/icon.svg);
    background-position: 16px 14px;
    background-size: 21px 20px;
    background-repeat: no-repeat;
}

.player_icon_style {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.player_icon_style:hover .video_player_icon {
    transform: scale(1.2);
}

.about_body_list_item_last_header {
    max-width: 294px;
    width: 100%;
    height: 460px;
    border-radius: 24px;
    background: #232323;
    padding: 30px;
}

.about_body_list_item_last_header_top {
    font-family: DM Sans;
    font-size: 64px;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: -2px;
    text-align: left;
    color: #FFFFFF;
}

.about_body_list_item_last_header_body_title {
    font-family: WeblySleek UI;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #FFFFFF;
}

.about_body_list_item_last_header_body_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #8B8B8B;
    padding-top: 5px;
}

.about_body_list_item_last_body_item {
    max-width: 394px;
    width: 100%;
    height: 275px;
    border-radius: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.about_body_list {
    gap: 24px;
    padding-top: 70px;
}

.about_body_list_item_conference,
.about_body_list_item_people_footer,
.about_body_list_item_last_header,
.about_body_list_item_people_header,
.about_body_list_item_play_info_body {
    transition: all 0.4s;
    cursor: pointer;
}

.about_body_list_item_conference:hover {
    background: #915FFE;
}

.about_body_list_item_conference:hover .about_body_list_item_conference_header,
.about_body_list_item_conference:hover .about_body_list_item_conference_body_title,
.about_body_list_item_conference:hover .about_body_list_item_conference_body_description {
    color: #FFFFFF;
}

.about_body_list_item_people_footer:hover {
    background: #05AA70;
}

.about_body_list_item_people_footer:hover .about_body_list_item_people_footer_count,
.about_body_list_item_people_footer:hover .about_body_list_item_people_footer_body_title,
.about_body_list_item_people_footer:hover .about_body_list_item_people_footer_body_description {
    color: #FFFFFF;
}

.about_body_list_item_last_header:hover {
    background: #915FFE;
}

.about_body_list_item_last_header:hover .about_body_list_item_last_header_top,
.about_body_list_item_last_header:hover .about_body_list_item_last_header_body_title,
.about_body_list_item_last_header:hover .about_body_list_item_last_header_body_description {
    color: #FFFFFF;
}

.about_body_list_item_people_header:hover {
    background: #FFFFFF;
}

.about_body_list_item_people_header:hover .about_body_list_item_people_header_count,
.about_body_list_item_people_header:hover .about_body_list_item_people_body_title,
.about_body_list_item_people_header:hover .about_body_list_item_people_body_description {
    color: #151515;
}

.about_body_list_item_play_info:hover .about_body_list_item_play_info_body {
    background: #FF561F;
}

.about_body_list_item_play_info:hover .about_body_list_item_play_info_body_count,
.about_body_list_item_play_info:hover .about_body_list_item_play_info_body_footer_title,
.about_body_list_item_play_info:hover .about_body_list_item_play_info_body_footer_description {
    color: #FFFFFF;
}

.item_image_hover {
    width: 100%;
    height: 100%;
    background-color: rgba(203, 251, 69, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.about_body_list_item_last_body_item:hover .item_image_hover {
    visibility: visible;
    opacity: 1;
}

.about_body_list_item_first_image:hover .item_image_hover {
    visibility: visible;
    opacity: 1;
}


.mobile_menu_button {
    width: 30px;
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile_menu_button span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #FFFFFF;
}

.container_fluid_white {
    width: 100%;
    padding: 40px 0 40px;
    border-radius: 60px 60px 0 0;
    background: #FFFFFF;
}

.review_header_reated {
    width: 300px;
    height: 51px;
    padding: 7px 19px 7px 7px;
    border-radius: 30px;
    background: #171717;
    gap: 8px;
}

.review_header_reated_icon {
    width: 35px;
    height: 35px;
    padding: 8px 8px 8px 8px;
    border-radius: 30px;
    background: #D5EC2A;
}

.review_header_reated_text {
    font-family: WeblySleek UI;
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
    text-align: left;
    color: #FFFFFF;
    max-width: 220px;
}

.review_header_reated_text span {
    color: #D5EC2A;
}

.review_main_title {
    font-family: WeblySleek UI;
    font-size: 52px;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -3px;
    text-align: center;
    color: #151515;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 35px;
}

.review_main_body_list_item {
    width: 512px;
    border-radius: 26px;
    background: #F2F2F2;
    padding: 47px;
}

.review_main_body_list_item_icon {
    width: 41px;
    height: 41px;
    padding: 10px 10px 10px 10px;
    border-radius: 20px;
    background: #D5EC2A;
}

.review_main_body_list_item_text_title {
    font-family: WeblySleek UI;
    font-size: 26px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #151515;
    padding-top: 20px;
}

.review_main_body_list_item_text_description {
    font-family: WeblySleek UI;
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #5E5E5E;
    padding-top: 15px;
}

.review_main_body_list_item_user {
    padding-top: 25px;
}

.review_main_body_list_item_user_title {
    font-family: WeblySleek UI;
    font-size: 19px;
    font-weight: 700;
    line-height: 23px;
    text-align: left;
    color: #151515;
}

.review_main_body_list_item_user_description {
    font-family: WeblySleek UI;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0.5px;
    text-align: left;
    color: #5E5E5E;
    padding-top: 5px;
}

.review_main_body_list_item_user_image {
    width: 59px;
    height: 59px;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-right: 12px;
}

.review_main_body_list {
    padding-top: 55px;
}

.partner_header_body {
    padding: 5px 8px 4px 12px;
    border-radius: 20px;
    background: #D5EC2A;
    font-family: WeblySleek UI;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.2px;
    text-align: left;
    color: #151515;
    width: fit-content;
}

.partner {
    padding-top: 30px;
}

.partner_body_title {
    font-family: WeblySleek UI;
    font-size: 52px;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -3.2px;
    text-align: center;
    color: #151515;
    max-width: 734px;
    width: 100%;
    margin: 0 auto;
}

.partner_body_item_image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.partner_body_item {
    background: #F2F2F2;
    padding: 20px;
    border-radius: 26px 0 26px 0;
    width: 258px;
}

.partner_body_item_title {
    font-family: WeblySleek UI;
    font-size: 21px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #151515;
    padding-top: 10px;
}

.partner_body_item_description {
    font-family: WeblySleek UI;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #5E5E5E;
    padding-bottom: 10px;
    padding-top: 10px;
}

.partner_body_list {
    gap: 20px;
    padding-top: 30px;
}

.partner_body_button a {
    font-family: WeblySleek UI;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.2px;
    text-align: left;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 20px;
    background: #171717;
    transition: all 0.4s;
}

.partner_body_button {
    margin-top: 38px;
}

.footer {
    background: #000000;
    padding: 40px 0 20px;
}

.footer_item nav ul li a {
    font-family: DM Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.25px;
    text-align: left;
    color: #8B8B8B;
    transition: all 0.4s;
    padding: 8px 0;
}

.footer_item nav ul li a:hover {
    color: #FFFFFF;
}

.footer_item_title {
    font-family: DM Sans;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #FFFFFF;
    padding-bottom: 21px;
}

.footer_list {
    gap: 30px;
}

.partner_body_button button:hover {
    background: #D5EC2A;
    color: #171717;
}

.review_main_body_slider {
    padding-top: 20px;
    position: relative;
}

.service_body_item_animate {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.service_body_item_animate.active {
    position: sticky;
    top: 0;
}

.service_body_item_animate.zoom {
    transform: scale(0.95);
}

.service_body_item {
    transition: all 0.6s;
}

::-webkit-scrollbar {
    width: 5px;
    /* Минимальная ширина полосы прокрутки */
    height: 10px;
    /* Для горизонтальной полосы */
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Цвет бегунка */
    border-radius: 5px;
    /* Закруглённые углы */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Цвет при наведении */
}

::-webkit-scrollbar-track {
    background-color: var(--header_nav_item_color);
}

.academy_list_item_info_feature {
    font-family: WeblySleek UI;
    font-size: 14px;
    font-style: normal;
    font-weight: 550;
    letter-spacing: .5px;
    line-height: 120%;
    color: #5e5e5e;
    text-transform: uppercase;
}

.academy_list_item_info_title {
    font-family: WeblySleek UI;
    font-size: 48px;
    font-weight: 600;
    color: #151515;
    font-style: normal;
    letter-spacing: -1px;
    line-height: 120%;
    paragraph-spacing: 20px;
    text-decoration: none;
    text-transform: none;
}

.academy_list_item_info_description {
    font-family: WeblySleek UI;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #151515;
}

.academy_list_item_info_button a {
    padding: 7px 27px 7px 7px;
    border-radius: 80px;
    font-family: WeblySleek UI;
    font-size: 18px;
    font-weight: 600;
    line-height: 24.03px;
    text-align: left;
    color: #FFFFFF;
    gap: 5px;
    background: #171717;
    width: fit-content;
}

.academy_list_item_info_button a span {
    height: 32px;
    width: 32px;
    border-radius: 16px;
    position: relative;
    background: #D5EC2A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    padding: 8px;
}

.academy_list_item_info {
    gap: 10px;
    max-width: 500px;
    width: 100%;
}

.academy_list_item_image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 24px;
    border: 24px solid #f2f2f2;
    max-width: 804px;
    width: 100%;
    height: 516px;
    transition: all 0.4s;
}

.academy_list_item {
    gap: 40px;
}

.academy_list_item_info_button {
    padding-top: 32px;
}

.academy_list_item_info_button button span svg {
    width: 20px;
    height: 20px;
}

.academy_list_item_info_button button:hover span {
    transform: rotate(-45deg);
}

.academy_list {
    gap: 80px;
    padding-bottom: 80px;
}

.body_white .header_nav_language_select_header {
    color: #151515;
}

.body_white .header_nav_language_select_header::after {
    content: '';
    background-image: url(../fonts/select_bleck.svg);
}

.body_white .mobile_menu_button span {
    background: #151515;
}

.item_detail_image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 580px;
    height: 377px;
    border-radius: 18px;
    border: 18px solid #f2f2f2;
    max-width: 804px;
    transition: all 0.4s;
}

.item_detail_title {
    font-family: WeblySleek UI;
    font-size: 52px;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: -2.5px;
    text-align: left;
    color: #FFFFFF;
}

.item_detail_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    text-align: left;
    color: #FFFFFF;
    padding-top: 25px;
}

.item_detail_footer {
    padding-top: 53px;
    gap: 100px;
}

.item_detail_footer_price {}

.item_detail_price {
    font-family: WeblySleek UI;
    font-size: 42px;
    font-weight: 600;
    line-height: 63px;
    text-align: left;
    color: #C2FF40;
}

.item_detail_price_info {
    font-family: WeblySleek UI;
    font-size: 17px;
    font-weight: 600;
    line-height: 23px;
    text-align: left;
    color: #FFFFFF;
}

.item_detail_button button {
    font-family: WeblySleek UI;
    font-size: 24px;
    font-weight: 600;
    line-height: 23px;
    text-align: left;
    color: #FFFFFF;
    padding: 25px 63px;
    background: #925FFF;
    border-radius: 63px;
}

.item_detail {
    gap: 95px;
}

.item_detail_info {
    max-width: 570px;
    width: 100%;
}

.detail_main {
    border-radius: 60px 60px 0 0;
    background: #FFFFFF;
    padding: 115px 0 126px;
    margin-top: 100px;
}

.detail_main_title_short {
    font-family: WeblySleek UI;
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    padding: 5px 12px;
    background: #D5EC2A;
    border-radius: 12px;
    width: fit-content;
    margin: 0 auto;
}

.detail_main_title {
    font-family: WeblySleek UI;
    font-size: 57px;
    font-weight: 600;
    text-align: center;
    color: #151515;
    padding-top: 15px;
}

.detail_main_description {
    font-family: DM Sans;
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    color: #5E5E5E;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding-top: 15px;
}

.detail_main_body_table_header {
    width: 100%;
    padding: 20px 28px 20px 28px;
    gap: 20px;
    border-radius: 24px;
    background: #171717;
    margin-top: 43px;
}

.detail_main_body_table_item {
    max-width: 210px;
    width: 100%;
}

.detail_main_body_table_item_title {
    font-family: WeblySleek UI;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: #FFFFFF;
}

.detail_main_body_table_item_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: #D5EC2A;
}

.detail_main_body_table_body_title {
    font-family: DM Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 150%;
    color: #151515;
    padding-top: 17px;
}

.detail_main_body_table_body_list_item_title {
    font-family: DM Sans;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #151515;
}

.detail_main_body_table_body_list_item_description {
    font-family: DM Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 150%;
    color: #151515;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.detail_main_body_table_body {
    padding-top: 42px;
}

.detail_main_body_table_body_list_item {
    padding: 24px 28px;
    border-radius: 20px;
    background: #F2F2F2;
    cursor: pointer;
    margin-top: 17px;
}

.detail_main_body_table_body_list_item_title span {
    background: #171717;
    border-radius: 30px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    min-width: 32px;
}

.detail_main_body_table_body_list_item_description.active {
    padding-top: 20px;
    visibility: visible;
    opacity: 1;
    min-height: 40px;
    height: auto;
}

.detail_main_body_table_body_list_item_title.active span {
    transform: rotate(45deg);
}

.detail_main_body_table_footer_teacher_info_item_image {
    width: 54px;
    height: 54px;
    border-radius: 54px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-right: 12px;
}

.detail_main_body_table_footer_teacher_info_item_name {
    font-family: DM Sans;
    font-size: 19px;
    font-weight: 500;
    line-height: 23px;
    text-align: left;
    color: #151515;
}

.detail_main_body_table_footer_teacher_info_item_description {
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0.5px;
    text-align: left;
    color: #5E5E5E;
}

.detail_main_body_table_footer_teacher_info_description {
    font-family: "DM Sans", sans-serif;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 110%;
}

.detail_main_body_table_footer_teacher_image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 311px;
    width: 100%;
    height: 259px;
    border-radius: 16px;
}

.detail_main_body_table_footer {
    border-radius: 24px;
    background: #F2F2F2;
    padding: 44px;
    margin-top: 83px;
}

.detail_main_body_table_footer_teacher {
    gap: 43px;
}

.detail_main_body_table_footer_teacher_info_title {
    padding-top: 20px;
    gap: 20px;
}

.detail_main_body_table_footer_teacher_info_social_item {
    width: 30px;
    height: 30px;
    background: #515151;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.4s;
}

.detail_main_body_table_footer_teacher_info_social {
    gap: 10px;
}

.footer_form {
    border-radius: 48px 48px 0 0;
    background: #171717;
    padding: 120px 0 165px;
    margin-top: -48px;
}

.footer_form_main_title {
    font-family: WeblySleek UI;
    font-size: 48px;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: -2.5px;
    text-align: center;
    color: #FFFFFF;
}

.footer_form_main_description {
    font-family: WeblySleek UI;
    font-size: 22px;
    font-weight: 300;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
}

.footer_form_main_form {
    padding-top: 58px;
}

.footer_form_main_form_label input {
    background: #FFFFFF;
    padding: 14px 20px;
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    text-align: left;
    color: #000000;
    border-radius: 8px;
    border: 0;
    max-width: 279px;
    width: 100%;
}

.footer_form_main_form_label {
    max-width: 279px;
    width: 100%;
}

.footer_form_main_form_input {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 100%;
    justify-content: center;
}

.footer_form_main_form {
    width: 100%;
}

.footer_form_main_form_button button {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    width: 100%;
    padding: 13px 54px 13px 54px;
    border-radius: 8px;
    background: #925FFF;
    color: #FFFFFF;
}

.footer_form_main_form_button {
    width: 100%;
    max-width: 870px;
    padding-top: 24px;
}

.news_header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 275px;
    border-radius: 22px;
}

.news_header_title h1 {
    font-family: Montserrat arm;
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-align: left;
    color: #FFFFFF;
    border-left: 6px solid #01AB70;
    padding-left: 15px;
}

.news_header {
    padding: 0 75px;
}

.news_category_item a {
    font-family: Montserrat arm;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #262626;
    padding: 10px 20px;
    background: #F7F7F7;
    border-radius: 15px;
    transition: all 0.4s;
}

.news_category {
    gap: 10px;
    padding: 30px 0;
}

.news_category_item a.active {
    background: #262626;
    color: #FFFFFF;
}

.news_category_item a:hover {
    background: #262626;
    color: #FFFFFF;
}

.news_list_item {
    padding: 16px;
    border-radius: 26px;
    background: #F2F2F2;
    max-width: 370px;
    width: 100%;
    transition: all 0.4s;
}

.news_list_item_image {
    width: 100%;
    height: 246px;
    border-radius: 17px;
    padding: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.news_list_item_image_tag {
    padding: 6px 14px;
    background: #D5EC2A;
    font-family: DM Sans;
    font-size: 13px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0.27px;
    color: #151515;
    width: fit-content;
    border-radius: 14px;
}

.news_list_item_title {
    padding: 20px 10px 11px;
}

.news_list_item_title h4 {
    font-family: WeblySleek UI;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #151515;
    transition: all 0.4s;
}

.news_list_item_description {
    font-family: WeblySleek UI;
    font-size: 17px;
    font-weight: 300;
    line-height: 26px;
    text-align: left;
    color: #5E5E5E;
    padding: 0 10px;
    transition: all 0.4s;
}

.news_list {
    gap: 30px;
    padding-bottom: 50px;
}

.news_list_item:hover {
    background: #171717;
}

.news_list_item:hover .news_list_item_title h4 {
    color: #FFFFFF;
}

.news_list_item:hover .news_list_item_description {
    color: #FFFFFF;
}

.portfolio_list_item_image {
    width: 100%;
    height: 291px;
    border-radius: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.portfolio_list_item_type_and_date {
    font-family: Montserrat arm;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #A8A8A8;
    padding-top: 22px;
    transition: all 0.4s;
}

.portfolio_list_item_title {
    font-family: Montserrat arm;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #262626;
}

.portfolio_list_item {
    max-width: 32%;
    width: 100%;
}

.portfolio_list {
    gap: 30px 20px;
    padding-bottom: 50px;
}

.portfolio_list_item_image_button button {
    width: fit-content;
    padding: 7px 16px 7px 7px;
    border-radius: 25px;
    font-family: WeblySleek UI;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.3px;
    text-align: left;
    color: #151515;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #D5EC2A;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.portfolio_list_item_image_button button span {
    width: 36px;
    height: 36px;
    border-radius: 25px;
    background: #171717;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio_list_item_image_button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.4s;
}

.portfolio_list_item:hover .portfolio_list_item_image_button {
    background-color: rgba(0, 0, 0, 0.5);
}

.portfolio_list_item:hover .portfolio_list_item_type_and_date {
    color: #925FFF;
}

.portfolio_list_item:hover .portfolio_list_item_image_button button {
    visibility: visible;
    opacity: 1;
}

.team_main_header_teg {
    font-family: DM Sans;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.3px;
    text-align: left;
    padding: 5px 12px;
    background: #D5EC2A;
    border-radius: 12px;
    width: fit-content;
}

.team_main_header_title {
    font-family: WeblySleek UI;
    font-size: 72px;
    font-weight: 600;
    line-height: 100px;
    text-align: center;
    color: #151515;
}

.team_main_header_description {
    font-family: WeblySleek UI;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #5E5E5E;
    max-width: 700px;
    width: 100%;
    padding: 30px 0;
}

.team_main_header_tab {
    background: #F2F2F2;
    padding: 5px;
    border-radius: 50px;
    gap: 10px;
}

.team_main_header_tab_item {
    font-family: WeblySleek UI;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-align: center;
    color: #151515;
    padding: 10px 55px;
    cursor: pointer;
    transition: all 0.4s;
}

.team_main_header_tab_item.active {
    background: #925FFF;
    border-radius: 50px;
    color: #FFFFFF;
}

.team_main_list_tab_item_image {
    max-width: 375px;
    width: 100%;
    height: 390px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    bottom: 50px;
}

.team_main_list_tab_item_title {
    font-family: WeblySleek UI;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #151515;
}

.team_main_list_tab_item_description {
    font-family: WeblySleek UI;
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: #5E5E5E;
}

.team_main_list_tab_item_button button {
    font-family: WeblySleek UI;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #151515;
    padding: 15px 30px;
    border-radius: 30px;
    background: #D5EC2A;
    width: 100%;
    margin-top: 20px;
}

.team_main_list_tab_item_image_main {
    max-width: 375px;
    width: 100%;
    height: 340px;
    border-radius: 27px;
    background: #F2F2F2;
}

.team_main_list_tab_item {
    max-width: 340px;
    width: 100%;
    margin-top: 58px;
}

.team_main_list_tab_item_footer {
    padding-top: 20px;
}

.team_main_list_tab {
    display: flex;
    gap: 20px 74px;
    flex-wrap: wrap;
    justify-content: center;
    transition: all 0.4s;
    height: auto;
    padding: 45px 0;
    width: 100%;
}

.team_main_list_tab_item_student {
    width: 100%;
}

.team_main_list_tab_item_student_image {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    visibility: visible;
    opacity: 0;
    transition: all 0.4s;
}

.team_main_list_tab_item_student_button {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(203, 251, 69, 0.55);
}

.team_main_list_tab_item_student_button button {
    width: 36px;
    height: 36px;
    border-radius: 25px;
    background: #D5EC2A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team_main_list_tab_item_student_image:hover {
    visibility: visible;
    opacity: 1;
}

.team_main_list_tab.item_student {
    gap: 20px;
}

.team_detail_main_header_image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 350px;
    width: 100%;
    height: 435px;
    position: absolute;
    top: -252px;
    left: 50px;
}

.team_detail_main_header {
    border-radius: 27px;
    background: #F2F2F2;
}

.team_detail_main_header_info_head_title {
    font-family: WeblySleek UI;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #151515;
}

.team_detail_main_header_info_head_description {
    font-family: WeblySleek UI;
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: #5E5E5E;
}

.team_detail_main_header_info_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #000000;
    padding-top: 30px;
    min-height: 220px;
}

.team_detail_main_header_info {
    max-width: 700px;
    width: 100%;
    padding: 35px;
}

.team_detail_main_header {
    gap: 20px;
}

.team_detail_main_header_image_main {
    max-width: 350px;
    width: 100%;
    height: 100%;
    position: relative;
}

.team_detail_teacher {
    font-family: WeblySleek UI;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    color: #151515;
    padding: 35px 0;
}

.team_detail {
    padding-top: 80px;
}

.news_detail_main {
    max-width: 795px;
    width: 100%;
}

.news_detail_main_title {
    font-family: Montserrat arm;
    font-size: 42px;
    font-weight: 500;
    line-height: 53px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #262626;
    padding-top: 40px;
}

.news_detail_main_description {
    font-family: Montserrat arm;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #515151;
}

.news_detail_main_info_date {
    font-family: Montserrat arm;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #262626;
}

.news_detail_main_info_date {
    padding: 10px 20px;
    border-radius: 20px;
    background: #F7F7F7;
    width: fit-content;
}

.news_detail_main_info {
    padding: 30px 0;
}

.news_detail {
    padding-bottom: 80px;
    gap: 70px;
}

.news_detail_banner {
    background: #925FFF;
    padding: 45px 30px;
    border-radius: 22px;
    position: sticky;
    max-width: 360px;
    width: 100%;
    height: fit-content;
    top: 20px;
}

.news_detail_banner_description {
    font-family: Montserrat arm;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #FFFFFF;
    padding-top: 44px;
}

.news_detail_banner_phone {
    font-family: Montserrat arm;
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #FFFFFF;
    padding-top: 36px;
}

.news_detail_banner_image {
    width: 108px;
}

.news_detail_banner_image img {
    width: 100%;
}

.news_detail_main_image {
    max-width: 795px;
    width: 100%;
    border-radius: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.news_detail_main_video {
    max-width: 795px;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.news_detail_main_video iframe {
    width: 100%;
    height: 100%;
}

.news_detail_main_video.active {
    height: 437px;
    visibility: visible;
    opacity: 1;
}

.news_detail_main_image.active {
    height: 437px;
    visibility: visible;
    opacity: 1;
}

.paginate a {
    display: block;
    font-family: Montserrat arm;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #262626;
    padding: 10px 20px;
    background: #F7F7F7;
    border-radius: 15px;
    transition: all 0.4s;
}

.paginate li.active a {
    background: #262626 !important;
    color: #FFFFFF !important;
}

.paginate {
    margin-bottom: 50px;
}

.paginate ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.opacity {
    opacity: 0.5;
}

.team_main_list_tab_main {
    display: flex;
    gap: 20px 74px;
    flex-wrap: wrap;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.4s;
    width: 100%;
    overflow: hidden;
}

.team_main_list_tab_main.active {
    visibility: visible;
    opacity: 1;
    height: auto;
}

.review_main_body_slider::after {
    content: "";
    width: 10rem;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0.2) 90%, transparent 100%);
    z-index: 111111;
}

.review_main_body_slider::before {
    content: "";
    width: 10rem;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 10%, white 70%);
    z-index: 111111;
}

.modal_for_player {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    left: 0;
    top: 0;
    z-index: 111111;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    padding: 15px;
}

.modal_for_player_header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.modal_for_player_header button {
    background: unset;
    font-family: WeblySleek UI;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

.modal_for_player.active {
    visibility: visible;
    opacity: 1;
}

.modal_for_player_body_iframe {
    max-width: 764px;
    width: 100%;
    height: 500px;
    background: #D5EC2A;
    padding: 5px;
    border-radius: 5px;
}

.modal_for_player_body_iframe iframe {
    width: 100%;
    height: 100%;
}

.contact_form_info_address,
.contact_form_info_phone_one,
.contact_form_info_phone_two,
.contact_form_info_email_one,
.contact_form_info_email_two {
    font-family: Montserrat arm;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    padding-bottom: 26px;
    max-width: 400px;
    width: 100%;
}

.contact_form_info {
    background: #171717;
    border-radius: 22px;
    padding: 35px 40px;
    max-width: 509px;
    width: 100%;
}

.contact_form_info_title {
    font-family: Montserrat arm;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    padding-bottom: 10px;
}

.contact_form_info_description {
    font-family: Montserrat arm;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #A39D9E;
    padding-bottom: 40px;
}

.contact_form {
    border-radius: 22px;
    padding: 26px;
    background: #FFFFFF;
    gap: 55px;
    box-shadow: 0px 0px 60px 30px #00000008;
}

.contact_form_main_list_input input {
    font-family: Montserrat arm;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #E0DEDF;
    width: 100%;
}

.contact_form_main {
    max-width: 500px;
    width: 100%;
    position: relative;
}

.form_modal {
    width: 100%;
}

.contact_form_main_header {
    font-family: Montserrat arm;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    padding-top: 24px;
}

.contact_form_main_list {
    padding-top: 14px;
}

.contact_form_main_list_main {
    gap: 40px;
}

.contact_form_main_list_input {
    width: 100%;
    padding-top: 36px;
}

.contact_form_main_list_main_item {
    width: 100%;
}

.contact_form_send button {
    font-family: Montserrat arm;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    background: #925FFF;
    border-radius: 25px;
    padding: 12px 50px;
    color: #FFFFFF;
}

.contact_form_send {
    padding-top: 50px;
    display: flex;
    justify-content: end;
}

.contact_form_main_list_input input.error {
    border-bottom: 1px solid red;
}

.contact_form_main_list_input p {
    font-family: Montserrat arm;
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    color: red;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.loader {
    width: 50px;
    height: 50px;
    border: 6px solid #ddd;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-container.active {
    visibility: visible;
    opacity: 1;
}

.contact_form_main_finish {
    font-family: Montserrat arm;
    font-size: 21px;
    font-weight: 600;
    color: green;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    z-index: 111111;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.contact_form_main_finish.active {
    visibility: visible;
    opacity: 1;
}

.modal_for_image_body {
    width: 100%;
    height: 100%;
}

.modal_for_player_main {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.image_main {
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image_main img {
    height: 100%;
}

.detail_main_body_table_footer_teacher_info {
    max-width: 730px;
    width: 100%;
}

.footer_form_main_form_label p {
    color: red;
    padding-top: 10px;
}

.lesson_form_main_loader {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}

.lesson_form_main_loader.active {
    visibility: visible;
    opacity: 1;
}

.footer_form_main_form {
    position: relative;
}

.footer_form_main_form .loader-container {
    visibility: unset;
    opacity: 1;
}

.lesson_form_main_finish {
    font-family: Montserrat arm;
    font-size: 21px;
    font-weight: 600;
    color: green;
    background-color: #f4f4f4;
    position: absolute;
    top: 50px;
    left: 0;
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    z-index: 111111;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.lesson_form_main_finish.active {
    visibility: visible;
    opacity: 1;
}

.about_page_header_title {
    font-family: Montserrat arm;
    font-size: 72px;
    font-weight: 500;
    text-align: center;
    text-decoration-skip-ink: none;
    color: #151515;
    max-width: 750px;
    width: 100%;
    word-wrap: break-word;
}

.about_page_header_description {
    font-family: Montserrat arm;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    text-decoration-skip-ink: none;
    color: #5E5E5E;
    max-width: 700px;
    width: 100%;
}

.about_page_body_list_item_header_description {
    font-family: Montserrat arm;
    font-size: 11px;
    font-weight: 500;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #5E5E5E;
    max-width: 700px;
    width: 100%;
}

.about_page_body_list_item_header_title {
    font-family: Montserrat arm;
    font-size: 43px;
    font-weight: 500;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #151515;
    max-width: 700px;
    width: 100%;
    word-wrap: break-word;
}

.about_page_body_list_item_header {
    max-width: 350px;
    width: 100%;
}

.about_page_body_list_item_body {
    max-width: 500px;
    width: 100%;
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #5E5E5E;
    padding-top: 5px;
}

.about_page_body_list_item {
    padding-top: 110px;
}

.about_page_body_contact_item {
    background: #F2F2F2;
    padding: 45px;
    border-radius: 24px;
    max-width: 360px;
    width: 100%;
    transition: all 0.4s;
}

.about_page_body_contact_item_icon {
    width: 37px;
    height: 37px;
    padding: 10px;
    border-radius: 50px;
    background: #D5EC2A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_page_body_contact_item_title {
    font-family: DM Sans;
    font-size: 21px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: -0.5px;
    text-align: left;
    padding-top: 20px;
    transition: all 0.4s;
}

.about_page_body_contact_item_description {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.4s;
}

.about_page_body_contact_item_link a {
    font-family: WeblySleek UI;
    font-size: 14.4px;
    font-weight: 500;
    text-align: left;
    text-decoration: underline !important;
    color: #151515;
    transition: all 0.4s;
}

.about_page_body_contact_item_link {
    padding-top: 20px;
}

.about_page_body_contact_item:hover {
    background: #171717;
}

.about_page_body_contact_item:hover .about_page_body_contact_item_title {
    color: #FFFFFF;
}

.about_page_body_contact_item:hover .about_page_body_contact_item_link a {
    color: #FFFFFF;
}

.about_page_body_contact_item:hover .about_page_body_contact_item_description {
    color: #8B8B8B;
}

.about_page_body_contact {
    padding: 110px 0 102px;
    gap: 10px;
}

.about_page_question_info_title {
    font-family: WeblySleek UI;
    font-size: 64px;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -3px;
    text-align: left;
    color: #151515;
    padding-bottom: 20px;
}

.about_page_question_info_description {
    font-family: WeblySleek UI;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    text-align: left;
    color: #5E5E5E;
}

.about_page_question_info {
    max-width: 490px;
    width: 100%;
}

.about_page_question_list {
    max-width: 520px;
    width: 100%;
}

.about_page_question {
    gap: 20px;
    padding-bottom: 100px;
}

.cooperaten_text_title h1 {
    font-family: Montserrat arm;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #262626;
}

.cooperaten_text_description {
    font-family: Montserrat arm;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #515151;
    padding-top: 40px;
}

.cooperaten_text {
    max-width: 650px;
    width: 100%;
    min-height: 450px;
}

.cooperaten_image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 454px;
    height: 642px;
    border-radius: 28px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.cooperaten_info {
    gap: 40px;
    justify-content: space-between;
    position: relative;
    padding-bottom: 70px;
}

.cooperaten_text_description_view_more_button {
    font-family: Montserrat arm;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #ED3237;
    border: 0;
    background: unset;
    gap: 10px;
    margin-top: 20px;
}

.cooperaten_text_description_view_more {
    transition: all 0.4s;
}

.cooperaten_slider {
    background: #F7F7F7;
    padding: 150px 0;
}

.cooperaten_slider_title {
    font-family: Montserrat arm;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.01em;
    text-align: left;
    text-decoration-skip-ink: none;
    color: #262626;
}

.cooperaten_slider_item {
    width: 401px;
    height: 336px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.cooperaten_slider_list {
    padding-top: 50px;
}

.header_nav_bar_child {
    position: absolute;
    right: 0;
    padding: 8px;
    border-radius: 50px;
    background-color: var(--header_nav_item_color);
    top: 60px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.header_nav_bar_child ul li a {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: 0.25px;
    color: var(--header_nav_item_text_color);
    padding: 10px 20px;
    transition: all 0.4s;
    border-radius: 20px;
    white-space: nowrap;
}

.header_nav_bar_child.active {
    visibility: visible;
    opacity: 1;
    z-index: 111111;
}

.header_nav_bar_child ul li a:hover {
    background-color: var(--header_nav_item_hover_color);
}

.header_nav_bar_child ul li a.active {
    background-color: var(--header_nav_item_hover_color);
}

.detail_main_body_table_footer_teacher_info_social_item img {
    width: 12px;
    height: 12px;
}

.mobile_nav {
    width: 100%;
    height: 100%;
    position: fixed;
    left: -120%;
    top: 0;
    z-index: 1;
    background: #FFFFFF;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.mobile_nav_body_list nav ul li a {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: 0.25px;
    color: #232323;
    padding: 10px 20px;
    transition: all 0.4s;
    white-space: nowrap;
    border-bottom: 0.5px solid #E7E7E7;
    width: 100%;
}

.mobile_nav_body_list nav ul li,
.mobile_nav_body_list,
.mobile_nav_body_list nav ul,
.mobile_nav_body_list nav,
.mobile_nav_body_list {
    width: 100%;
}

.mobile_nav_body_list nav ul li a.active {
    background-color: #232323;
    color: var(--header_nav_item_text_color);
}

.mobile_nav_body .header_nav_select {
    display: flex;
}

.mobile_nav_body_list {
    padding-top: 20px;
}

.mobile_nav_body {
    padding-top: 20px;
}

.close_mobile_nav button {
    border: unset;
    background: unset;
    font-family: WeblySleek UI;
    font-size: 30px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: 0.25px;
    color: #232323;
    padding: 10px 0;
}

.mobile_nav_body_header {
    padding: 0 20px;
}

.mobile_nav.active {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.header_nav_language_select_body {
    position: absolute;
    width: fit-content;
    border-radius: 5px;
    background: #232323;
    right: 0;
    top: 50px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    z-index: 111111;
}

.header_nav_language_select_body_item {
    font-family: WeblySleek UI;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: 0.25px;
    color: var(--header_nav_item_text_color);
    padding: 10px 20px;
    transition: all 0.4s;
    cursor: pointer;
}

.header_nav_language_select_body_item:hover {
    background-color: var(--header_nav_item_hover_color);
}

.header_nav_language_select {
    position: relative;
}

.header_nav_language_select_body.active {
    visibility: visible;
    opacity: 1;
}

#about .about_body_list_item_play_info_body {
    background: #D5EC2A;
}

#about .about_body_list_item_people_header:hover {
    background: #232323;
}

#about .about_body_list_item_people_header:hover .about_body_list_item_people_header_count,
#about .about_body_list_item_people_header:hover .about_body_list_item_people_body_title,
#about .about_body_list_item_people_header:hover .about_body_list_item_people_body_description {
    color: #FFFFFF;
}

.detail_main_body_table_footer_teacher_info_social_item:hover {
    background: #000000;
}

.first_section_body_footer_button button span {
    transition: all 0.4s;
}

.first_section_body_footer_button button:hover span {
    transform: rotate(-40deg);
}

.portfolio_list_item_image_button button span {
    transition: all 0.4s;
}

.portfolio_list_item_image_button button:hover span {
    transform: rotate(-40deg);
}

.open_child_nav {
    gap: 10px;
}

.mouse_effect {
    padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: #CBFB45;
    font-family: WeblySleek UI;
    font-size: 14.64px;
    font-weight: 500;
    line-height: 16.27px;
    color: var(--first_section_body_top_button_color);
    border-radius: 20px;
    text-wrap: nowrap;
}

.about_body_footer {
    width: 100%;
    border-radius: 24px;
    background: #232323;
    padding: 32px;
    gap: 38px;
    margin-top: 24px;
}

.about_body_footer_avatar_item {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    border: 2px solid #232323;
    margin-left: -15px;
}

.about_body_footer_avatar_list {
    padding-left: 15px;
}

.about_body_footer_avatar_item:last-child {
    border: 2px solid #CBFB45;
}

.about_body_footer_info {
    font-family: WeblySleek UI;
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -1px;
    text-align: left;
    color: #FFFFFF;
    max-width: 500px;
    width: 100%;
}

.about_body_footer .first_section_body_footer_button {
    padding: 0;
}

.about_body_list_item_conference_social_item img {
    height: 27px;
}

@media(max-width:1024px) {
    .container_fluid.white {
        padding: 0px 0 0px;
    }
}