/* -------ОСНОВНЫЕ НАСТРОЙКИ САЙТА-------- */
*{
    margin: 0;
    padding: 0;
}
a {
    color: black;
}
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.delay-1s {
    animation-delay: 0.1s;
}
/* Установка шрифта по умолчанию */
body {
    font-family: "Inter", sans-serif;
}
/* плавный скролл */
html {
    scroll-behavior: smooth;
}
hr {
    margin: 0rem 0;
    color: white;
    background-color: white;
    opacity: 1;
    display: block;
    margin-top: 7px;
    margin-bottom: 7px;
}
hr:not([size]) {
    height: 1px;
    width: 100%;
}
ol, ul {
    padding-left: 0rem;
}
.dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
/* -------------------------------------------- */
/* ШРИФТЫ */

/* ---------------------------INDEX---------------------------- */
/* -------------------header------------------ */
/* -----top-bar----- */
.header__top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    font-size: 12px;
}
.header__socials {
    display: flex;
    gap: 25px;
    margin-right: 150px;
}
.header__address-number {
    display: flex;
}
.header__version button {
    background: none;
    border: none;
    display: flex;
    gap: 10px;
    font-weight:500;
}
/* анимация hover для top-bar */
.header__version {
    position: relative; 
    display: inline-block; 
}
.header__version::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; 
    width: 100%;
    height: 1.5px; 
    background-color: #000; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out; 
}
.header__version:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.header__address-number--address {
    position: relative; 
    display: inline-block; 
}
.header__address-number--address::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; 
    width: 100%;
    height: 1.5px; 
    background-color: #000; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out; 
}
.header__address-number--address:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.header__address-number--number {
    position: relative; 
    display: inline-block; 
}
.header__address-number--number::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; 
    width: 100%;
    height: 1.5px; 
    background-color: #000; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out; 
}
.header__address-number--number:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.header__socials-btn {
    position: relative; 
}
.circle-svg {
    width: 46px;
    height: 46px;
}
.circle {
    stroke-dasharray: 141; 
    stroke-dashoffset: 141; 
    transition: stroke-dashoffset 0.5s ease, opacity 0.9s ease; 
    opacity: 0; 
}
.header__socials-btn:hover .circle {
    stroke-dashoffset: 0;
    opacity: 1; 
}
.header__svg-header {
    position: absolute;
    top: -10px;
    left: -10px;
}
.header__version:hover svg {
    transform: scale(1.1);
}
.header__version svg {
    transition: all 0.3s ease;
}
/* ----------------------------------------------------- */
.header__socials button {
    background: none;
    border: none;
}
.header__address-number--address svg {
    margin-top: -7px;
}
.header__address-number {
    font-weight: 500;
    gap: 45px;
    display: flex;
    align-items: center;
}
.header__address-number--number svg {
    margin-top: -7px;
    margin-right: 3px; 
}
.header__address-number--number {
    cursor: pointer;
}
.header__address-number--address {
    cursor: pointer;
}
/* ---------NAV---------- */
.header__nav ul li {
    color: white;
    list-style-type: none;
    cursor: pointer;
    white-space: nowrap;
}
.header__nav__burger-menu {
    cursor: pointer;
}
.burger-icon span {
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 5px;
    background: white;
}
.dropdown-block-mobile {
    display: flex;
    margin-top: 5px;
    flex-direction: column;
    gap: 5px; /* Расстояние между пунктами */
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.header__nav ul {
    display: flex;
    gap: 25px;
    font-size: 16px;
    font-weight: 500;
}
.header__nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
.header__nav__inner-bg {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 120px;
    z-index: -1;
    background-color: #287D61;
}
.header__nav-description {
    font-size: 10px;
    color: white;
    gap: 5px;
    display: flex;
    flex-direction: column;
}
.header__nav-description--text {
    width: 211px;
}
.header__nav-logo {
    display: flex;
    gap: 15px;
}
.header__mobile-nav {
    display: flex;
    align-items: center;
}
.mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
}
.mobile_nav-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

/* Активное состояние (крестик) */
.burger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 7px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0; /* Средняя полоса исчезает */
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(-1px, -5px);
}
.burger-icon span {
    background-color: white;
    border-radius: 2px;
    transition: transform 0.3s ease-in-out;
}
.mobile-nav {
    display: none;
}
.mobile-nav-ul ul {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.mobile-nav-ul a {
    text-decoration: none;
    color: white;

}
.dropdown-block-mobile a {
    white-space: wrap;
    font-size: 12px;
}
#address-top-bar:active {
    color: #287D61;
}
#number-top-bar:active {
    color: #287D61;
}
.header__nav-search {
    cursor: pointer;
    margin-left: 10px;
}
.header__nav-description--link a {
    color: white;
    white-space: nowrap;
    transition: all 0.3s ease;

    &:hover {
        color: black;
    }
}
.svg-search-mobile {
    fill: white; /* Замените на оригинальный цвет */
    transition: fill 0.3s; /* Плавный переход цвета */
}
.svg-search-mobile.active path {
    fill: black; /* Замените на цвет при активном состоянии */
}
.search-mobile-block {
    margin-bottom: 25px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-mobile-block.active {
    justify-content: flex-end;
    padding-right: 15px;
    display: flex;
}
.mobile_nav-secondary {
    max-height: 0;
    transition: max-height 0.5s ease;
    overflow: hidden;
}

.mobile_nav-secondary.active {
    max-height: 700px;
}
.header__nav ul li:hover {
    color: black;
}
.header__nav ul li {
    transition: all 0.3s ease, max-height 0.5s ease;
}
.header__navigation a {
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    
    &:hover {
        color: black;
    }
}
.header__navigation > li:hover {
    background: white; 
}
.header__navigation > li {
    display: block;
    height: 120px;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
    line-height: 120px; 
    text-align: center; 
}
.header__name-nav {
    position: relative; 
    display: inline-block; 
}
.header__name-nav::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 48px; 
    width: 100%;
    height: 1.5px; 
    background-color: #000; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.header__name-nav:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.header__nav-search svg path {
    transition: fill 0.3s ease;
}

.header__nav-search:hover svg path {
    fill: black; 
}
.header__nav-mobile-hover {
    overflow: hidden;
    max-height: 30px;
    transition: all 0.5s ease;
}
.svg-mobile-nav {
    display: inline-block;
    transition: all 0.3s ease; /* Анимация поворота */
}
.svg-mobile-nav.rotated {
    transform: rotate(180deg);
}
.header__navigation li {
    position: relative; 
}
.dropdown-studies {
    max-height: 0; 
    overflow: hidden; 
    position: absolute; 
    top: 100%;
    left: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    width: 470px; 
    z-index: 10; 
    transition: max-height 0.5s ease-out; 
    display: flex !important;
}
.header__navigation li:hover .dropdown-studies {
    max-height: 500px;
}
/* Стиль для элементов в выпадающем меню */
.dropdown-studies li a {
    display: block;
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    padding-left: 35px;
    display: flex;
    line-height: 0;
    align-items: center;
}
.dropdown-studies li {
    margin-top: 25px;
}
.dropdown-studies li:last-child {
    margin-bottom: 25px;
}
.dropdown-block {
    display: flex;
    flex-direction: column;
}
.dropdown-block li::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    border: 1px solid black;
    left: 10px;
    transition: all 0.3s ease;
}
.dropdown-block li {
    position: relative;
}
.header__navigation .header__nav-hover:hover .header__name-nav  {
    color: black;
}
.header__navigation .header__nav-hover:hover .header__name-nav::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.header__navigation .header__nav-hover:hover .header__name-nav:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left; 
}
.dropdown-block li:hover::before {
    border: 1px solid #287D61;
    transform: translateX(5px);
}
.dropdown-teacher {
    width: 600px;
    padding-right: 40px;
}
.dropdown-teacher li a{
    line-height: 1;
    white-space: wrap;
}
.dropdown-teacher--before li::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    border: 1px solid black;
    left: 10px;
    top: 7px;
    transition: all 0.3s ease;
}
.dropdown-studies--other {
    max-height: 0; 
    overflow: hidden; 
    position: absolute; 
    top: 100%; 
    right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    flex-direction: column;
    background-color: white; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    width: 470px; 
    z-index: 10; 
    transition: max-height 0.5s ease-out; 
    display: flex !important;
}
.header__navigation li:hover .dropdown-studies--other {
    max-height: 500px; 
}
.dropdown-studies--other li a {
    display: block;
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    padding-left: 35px;
    display: flex;
    line-height: 0;
    align-items: center;
}
.dropdown-studies--other li {
    margin-top: 25px;
}
.dropdown-studies--other li:last-child {
    margin-bottom: 25px;
}
#search-inte {
    background-color: transparent;
}
#search-inte-mobile {
    background-color: transparent;
}
.search-inte::placeholder {
    color: white;
}
.search-inte-mobile::placeholder {
    color: white;
}
.search-inte {
    width: 0;
    opacity: 0;
    padding: 10px 5px 10px 20px;
    transition: opacity 0.3s ease, width 0.7s ease; /* Плавное изменение ширины */
}
.search-inte-mobile {
    width: 0;
    opacity: 0;
    padding: 10px 5px 10px 20px;
    transition: opacity 0.3s ease, width 0.7s ease; /* Плавное изменение ширины */
}
.search-div:active {
    color: black;
}
.search {
    position: relative;
}
#search-inte {
    align-items: center;
    border-radius: 20px;
    font-weight: 300;
    border: 1px solid #252525;
    background-color: white;
    padding: 10px 125px 10px 20px;
    position: absolute;
    z-index: 0;
    outline: none;
    top: -10px;
    right: -10px;
    width: 0px;
    opacity: 0;
    pointer-events: none;
    transition: width 0.7s ease, opacity 0.3s ease;
}
#search-inte-mobile {
    align-items: center;
    border-radius: 20px;
    font-weight: 300;
    border: 1px solid #252525;
    background-color: white;
    padding: 10px 125px 10px 20px;
    position: absolute;
    z-index: 0;
    outline: none;
    top: -10px;
    right: 0px;
    width: 0px;
    opacity: 0;
    pointer-events: none;
    transition: width 0.7s ease, opacity 0.3s ease;
}
.hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease; /* Плавное скрытие */
}
.active {
    display: block;
}
.svg-search.active path {
    fill: black;
}
.svg-search-mobile.active path {
    fill: black;
}
.svg-search-mobile{
    z-index: 999;
}
.search-div:focus-within #search-inte {
    width: 370px;  /* Ширина input, когда фокус на родительском элементе */
    opacity: 1;  /* Сделать input видимым */
    pointer-events: all;
}
.hidden {
    display: none;
}
.search-div:focus-within #search-inte-mobile {
    width: 100%;  /* Ширина input, когда фокус на родительском элементе */
    opacity: 1;  /* Сделать input видимым */
    pointer-events: all;
}
.search-mobile-block svg {
    z-index: 2;
    position: relative;
}
#search-inte::-webkit-search-cancel-button {
    display: none;
}
#search-inte-mobile::-webkit-search-cancel-button {
    display: none;
}
.header__nav-search .search svg {
    z-index: 2;
    position: relative;
}

.header__nav__inner {
    background-color: #287D61;
}
.header__nav__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* ----------------SLIDER---------------- */
.header_down_slide {
    transition: transform 0.5s ease-in-out;
}
.header__down-slider--inner {
    width: 100%;
    height: 77vh;
    overflow: hidden;
}
.header__down-slider--inner {
    border-bottom: 1px solid black;
}
.header__down-slider--main {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
}
.header__down-slide-pagination.active {
    background-color: white;
    border: 2px solid black;
}
.header_down_slide {
    
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center; 
    position: relative; 
    display: flex;
    align-items: center;
    
}
.header_down_slide div{
    width: inherit;
    height: inherit;
    position: absolute;
    left: 0;
    top:0;
    background-position: center;
}

.header_down_slide div.bg{
    filter: blur(10px);
    background-size: cover; 
}
.header_down_slide div.content{
    
    background-repeat: no-repeat;
    background-size: contain;
    
    
}
.header__down__colledge-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 35%;
    right: 19%;
    z-index: 1;
}
.header__down__colledge-text span:nth-child(1) {
    font-size: 20px;
    color: white;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(90deg, #008000, #006400, #004d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block
}
.header__down__colledge-text span:nth-child(2) {
    font-size: 50px;
    color: white;
    font-weight: 600;
    background: linear-gradient(90deg, #008000, #006400, #004d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block
}
.header__down-slide-pagination {
    height: 20px;
    width: 20px;
    border: 2px solid white;
    background-color: black;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        background-color: white;
        border: 2px solid black;
    }
}

.header__down-slider--inner {
    position: relative;
}
.header__down-slider-pagination {
    display: flex;
    position: absolute;
    right: calc(50% - (width / 2));
    margin:auto;
    top: calc(100% - 30px);
    gap: 5px;
}
/* ------------FOOTER---------- */
footer {
    background-color: #2A3531;
    color: white;
    margin-top: 100px;
}
.footer__inner {
    padding-top: 65px;
    display: flex;
    flex-direction: column;
}
.footer_inner_block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer__name-contact--number, .footer__name-contact--address, .footer__name-contact--mail {
    display: flex;
    align-items: center;
}
.footer__inner__main {
    display: flex;
    justify-content: space-between;
}
.footer__svg {
    border: 1px solid white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__info {
    margin-left: 15px;
    white-space: nowrap;
}
.footer__name__inner {
    font-size: 20px;
    white-space: nowrap;
}
.footer__svg svg {
    min-width: 35px;
}
.footer__name__inner--adaptive {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    gap:20px;
}
.footer__name-social__inner {
    display: flex;
    gap: 48px;
    margin-top: 7px;
}
.footer__name-social {
    border: 1px solid white;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.footer__name-social svg path {
    transition: all 0.3s ease;
}
.footer__name-social:hover svg path {
    fill: #287D61;
}
.footer__copy-student {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.footer__student-ivan {
    max-width: 550px;
    text-align: center;
}
.footer__student-ivan a {
    text-decoration: none;
    color: white;
    cursor: pointer;
}
.footer__student-ivan a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: white;
}
.footer__student-ivan a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px; 
    width: 100%;
    height: 1.5px; 
    background-color: white; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.footer__student-ivan a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.footer__name-links-hover a {
    text-decoration: none;
    color: white;
    cursor: pointer;
}
.footer__name-links-hover a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: white;
}
.footer__name-links-hover a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px; 
    width: 100%;
    height: 1.5px; 
    background-color: white; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.footer__name-links-hover a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.footer__info {
    cursor: pointer;
}
/* ----------------MAIN------------- */
.main__btn-up {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2A3531;
    align-items: center;
    display: flex;
    justify-content: center;
    position: fixed;
    right: -30px;
    bottom: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    visibility: hidden;
    transform: translateX(50px);
    &:hover {
        background-color: #287D61;
    }
}
.main__btn-up svg path {
    transition: all 0.2s ease;
}
.main__btn-up:active svg path {
    stroke: black;
}
.main__btn-up svg {
    animation: arrow-move 1s infinite ease-in-out;
}
@keyframes arrow-move {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); } /* Двигаем вправо */
    100% { transform: translateY(0); } /* Возвращаем обратно */
}
.main__btn-up.visible {
    display: flex;
    transform: translateX(-50px);
}
/* --------------specialties----------- */
.main__specialties--name {
    display: flex;
    justify-content: center;
    font-size: 48px;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 50px;
}
.main__specialties--cards a {
    text-decoration: none;
    color: black;
    text-align: center;
}
.main__specialties--card {
    width: 344px;
    height: 470px;
    border: 1px solid black;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.main__specialties--cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 80px;
    padding-right: 80px;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    gap: 0px 30px;
    margin: 0 auto; /* Центрирует сам контейнер */
    text-align: center;
}
#Layer_1 {
    max-width: 100px;
    margin-top: 35px;
}
.specialties_card--name {
    font-weight: 500;
    font-size: 24px;
    transition: all 0.4s ease;

}
.specialties_card--text {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    transition: all 0.5s ease;
}
.specialties_card--svg svg {
    margin-top: 30px;
    margin-bottom: 15px;
}
.main__specialties--card:hover .specialties_card--text {
    color: white;
}
.main__specialties--card:hover .specialties_card--name {
    color: white;
}
.specialties_card--svg path {
    transition: all 0.3s ease;
}
.main__specialties--card:hover .specialties_card--svg path {
    stroke: white;
    fill: white;
}
.main__specialties--card:hover .specialties_card--svg rect {
    fill: white;
}

.main__specialties--card {
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease-in-out;
}

.main__specialties--card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #287D61; /* Цвет заливки */
    transition: top 0.4s ease-in-out;
    z-index: -1;
}

.main__specialties--card:hover::before {
    top: 0;
}
.specialties_block-two a {
    text-decoration: none;
    color: black;
    text-align: center;
}
.specialties_block-two {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px 30px;
}
/* ------------COLLEDGE-WE----------- */
.colledge-we__inner {
    text-align: center;
    margin-top: 80px;
}
.colledge-we__inner span:first-child {
    font-size: 48px;
    font-weight: 600;
}
.colledge-we__blocks-div span:first-child {
    font-size: 38px;
}
.colledge-we--spans {
    width: 190px !important;
    display: block;
    text-align: center;
}
.colledge-we--plus {
    font-size: 35px;
    font-weight: 500;
}

.colledge-we__blocks {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    padding-right: 100px;
    padding-left: 100px;
}
.div-spans-colledge {
    display: flex;
    align-items: center;
    margin-top: -15px;
    max-height: 47px;
}
.div-spans-colledge span {
    max-height: 47px;
    align-items: center;
    margin-top: -5px;
}
.div-spans-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.colledge-we__blocks hr {
    height: 1px;
    width: 200px;
    background-color: black;
    margin-top: 15px;
    margin-bottom: 15px;
}
.odometer-formatting-mark {
    display: none;
}

.colledge-we {
    margin-bottom: 140px;
}
.colledge-we__blocks-div {
    margin-left: 15px;
}
/* --------------directions----------- */
.directions__name {
    font-size: 48px;
    font-weight: 600;
}
#zaoch {
    display: none;
}
.directions {
    margin-bottom: 130px;
}
.directions__name {
    display: flex;
    justify-content: center;
}
.directions__inner {
    position: relative;
}
.directions__inner-slider--btn {
    position: absolute;
    display: flex;
    top: 50%;
    gap: 1265px;
}
.directions_slider_main {
    position: relative;
}
.directions__slider-btn--next:hover svg path, 
.directions__slider-btn--back:hover svg path {
    stroke: white;
}
.directions__slider__card {
    min-width: 420px;
    height: 665px;
    border: 1px solid black;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
    z-index: 1;
    
}
.directions__slider__card-main {
    padding-bottom: 55px;
}
.directions_slider_main {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    width: 100%; /* Задайте нужную ширину, например, 100% или фиксированную ширину */
    transition: transform 0.3s ease-in-out;
}
.directions__inner-slider {
    transition: transform 0.3s ease-in-out;
}
.directions__slider-btn--back {
    border-radius: 50%;
    border: 1px solid black;
    width: 60px;
    display: flex;
    height: 60px;
    transform: translateX(-85px);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; /* Убедитесь, что кнопки выше других элементов */
    transition: background-color 0.3s ease;

    &:hover {
        background-color: #287D61;
    }
}
.directions__slider-btn--next {
    border-radius: 50%;
    border: 1px solid black;
    width: 60px;
    display: flex;
    z-index: 1;
    height: 60px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;

    &:hover {
        background-color: #287D61;
    }
}
.directions__slider__card--svg {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.full-time_course {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.course {
    text-align: left;
}
.budget-padding {
    padding-right: 30px;
    padding-left: 30px;
    margin-top: 19px !important;
}
.gaz-budget {
    margin-top: 33px !important;
}
.budget-stroit {
    margin-top: 5px !important;
}
.course-style {
    font-size: 16px;
}
.full-time {
    text-align: right;
}
.directions__slider__card-padding-course {
    padding-right: 15px;
    padding-left: 15px;
}
.directions__slider__card--specialties {
    text-align: center;
    margin-top: 25px;
    font-weight: 600;
}
.directions__inner-slider span {
    transition: all 0.5s ease;
}
.directions__inner-slider svg path {
    transition: all 0.5s ease;
}
.directions__slider__card--svg svg{
    margin-top:10px;
}
.directions__slider__card--number-specialties {
    text-align: center;
    margin-top: 5px;
}

.directions__slider__card--term {
    text-align: center;
    margin-top: 5px;
}
.directions__slider__card--form-education {
    text-align: center;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 600;
}
.directions__slider__card--full-time {
    text-align: center;
    margin-top: 5px;
    font-size: 20px;
}
.directions__slider__card--score {
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
}
.directions__inner-slider-view-all a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: black;
}
.directions__inner-slider-view-all a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px; 
    width: 100%;
    height: 1.5px; 
    background-color: black; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.directions__inner-slider-view-all a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.directions__slider__card-number-style {
    font-size: 18px;
    font-weight: bold;
    color: #25644F;
}
.directions__slider__card--budget {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.directions__slider__card--more-details {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid black;
    font-size: 20px;
    height: 70px;
}
.directions__slider__card--more-details span {
    display: flex;
    align-items: center;
}
.directions__slider__card-padding {
    padding-right: 45px;
    padding-left: 45px;
}
.directions__slider__card--places {
    margin-top: 10px;
}
.directions__inner {
    min-width: 1315px !important;
}
.directions--pagination {
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        background-color: #287D61;
    }
}
.directions--pagination.active {
    width: 30px;
    border-radius: 10px;
    background-color: transparent;
    border: 2px solid black;
}
.directions__inner-slider--pagination {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 50px;
}
.directions__inner-slider-view-all button {
    background-color: transparent;
    border: none;
}
.directions__inner-slider-view-all {
    display: flex;
    justify-content: center;
    margin-top: 45px;
    font-size: 20px;
    font-weight: 400;
}
.directions_slider_main {
    display: flex;
    gap: 20px;
}
.directions-slide-svg-one {
    margin-top: 0 !important;
}
.directions__slider__card:hover {
    color: white;
    
}
.directions__slider__card:hover span {
    color: white;
}
.directions__slider__card:hover svg {
    color: white;
}
.directions__slider__card:hover svg path{
    stroke: white;
}
.directions__slider__card {
    position: relative;
}

.directions__slider__card-main,
.directions__slider__card--more-details {
    position: relative;
    overflow: hidden;
}

.directions__slider__card-main::before,
.directions__slider__card--more-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* Начальная позиция - за границей слева */
    width: 100%;
    height: 100%;
    background: #287D61; /* Цвет заливки для main */
    transition: left 0.5s ease-in-out;
    z-index: -1;
}

/* Изменяем цвет заливки для .directions__slider__card--more-details */
.directions__slider__card--more-details::before {
    background: #25644F;
}

/* Срабатывание анимации при наведении на всю карточку */
.directions__slider__card:hover .directions__slider__card-main::before,
.directions__slider__card:hover .directions__slider__card--more-details::before {
    left: 0; /* Заливка двигается слева направо */
}
/* ------------------NEWS--------------- */
.news-span {
    font-size: 48px;
    font-weight: 600;
}
.news__inner--card {
    width: 390px;
    height: 426px;
    border: 1px solid black;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    cursor: pointer;
    overflow: hidden;
}
.news__view-all button {
    background-color: transparent;
    border: none;
    font-size: 20px;
    font-weight: 500;
}
.news__view-all {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}
.news__inner-card-main {
    margin-top: 100px;
    display: grid;
    gap: 25px;
    grid-template-columns: 0.1fr 0.1fr;
}
.news__inner--card:hover img {
    transform: rotate(5deg) scale(1.2);
}
.news__inner--img {
    overflow: hidden;
}
.news__inner--card img {
    width: 100%;
    transition: all 0.3s ease;
    object-fit: cover; /* Сохраняет пропорции без искажений */
}
.news_name {
    font-weight: 500;
}
.news_name-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}
.news_info {
    max-width: 350px;
    margin-top: 20px;
}
.news-card--more {
    display: flex;
    justify-content: space-between;
    padding-right: 35px;
    padding-left: 35px;
    font-weight: 500;
}
.news-card--more {
    margin-top: auto; /* Отталкивает блок вниз */
}
.news-card--more a {
    text-decoration: none;
    color: black;
}
.news-card--more a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: black;
}
.news-card--more a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px; 
    width: 100%;
    height: 1.5px; 
    background-color: black; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.news-card--more a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.news-links--main {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.link_inner-links-photo img {
    width: 100px;
}
.news__view-all a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: black;
}
.news__view-all a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px; 
    width: 100%;
    height: 1.5px; 
    background-color: black; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.news__view-all a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.links-name {
    font-size: 48px;
    font-weight: 600;
}
.links__inner-links--block {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 400;
}
.links-name--colledge {
    font-size: 26px;
    font-weight: 600;
}
.links__inner hr {
    height: 1px;
    width: 250px;
    background-color: black;
    margin-top: 15px;
    margin-bottom: 15px;
}
.links__inner-links--block a {
    color: black;
    text-decoration: none;
}
.links__inner--useful-links a {
    color: black;
    text-decoration: none;
}
.links__inner--useful-links {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 400;
    gap: 20px;
    margin-top: 50px;
}
.colledge-block {
    margin-top: 90px;
    gap: 20px;
}
.links__inner-links--block {
    gap: 20px;
}
.links--block-img-one {
    gap: 55px;
    display: flex;
}
.links--block-img {
    display: flex;
    margin-left: 75px;
}
.colledge-block a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: black;
}
.colledge-block a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px; 
    width: 100%;
    height: 1.5px; 
    background-color: black; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.colledge-block a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.links__inner-block-two a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: black;
}
.links__inner-block-two a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px; 
    width: 100%;
    height: 1.5px; 
    background-color: black; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.links__inner-block-two a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.links__inner--useful-links a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: black;
}
.links__inner--useful-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px; 
    width: 100%;
    height: 1.5px; 
    background-color: black; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.links__inner--useful-links a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
/* ----------questions----------- */
.questions--name {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 600;
}
.questions__inner {
    margin-top: 130px;
}
.questions__card--cell {
    width: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    flex-direction: column;
}
.questions__inner__card {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.name-questions--card:hover{
    color: white;
}
.name-questions--card:hover svg path {
    stroke: white;
}
.name-questions--card svg path {
    transition: all 0.3s ease;
}
.name-questions--card {
    display: flex;
    justify-content: space-between;
    width: 100%;
    transition: all 0.3s ease;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
    cursor: pointer;
    align-items: center;
    border: 1px solid black;
    background-color: white;
    font-size: 25px;
    &:hover {
        background-color: #287D61;
    }
}
.name-questions--card.active {
    background-color: #287D61;
    color: white;
}
.name-questions--card.active svg path {
    stroke: white;
}
.info-mt {
    margin-top: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
}
.info-questions--card {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-right: 1px solid black;
    border-left: 1px solid black;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}
.info-questions--card.active {
    max-height:1500px;
    overflow: visible;
    padding-bottom: 20px;
    border-bottom: 1px solid black;
}
.info__ul-li {
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 5px;
    display: inline-block;
}
.info-questions--card ul li {
    margin-left: 30px;
}
.info-questions--card ul li a {
    text-decoration: none;
    color: black;
}
.info-questions--card ul li a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: black;
}
.info-questions--card ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px; 
    width: 100%;
    height: 1.5px; 
    background-color: black; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.info-questions--card ul li a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
/* ----------independence------------ */
.independence__inner__name span:nth-child(1) {
    font-size: 48px;
    font-weight: 600;
    max-width: 726px;
}
.independence__inner__name span:nth-child(2) {
    font-size: 32px;
    font-weight: 500;
    max-width: 1015px;
}
.independence__inner__name span:nth-child(3) {
    font-size: 26px;
    font-weight: 500;
    max-width: 1000px;
}
.independence__inner__name {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.independence__inner {
    margin-top: 120px;
}
.independence--block-info-span, .independence--block-info-span-two {
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
}
.independence--block-info-span {
    margin-bottom: 35px;
}
.independence--block-info-span-two {
    margin-top: 35px;
}
.independence__inner__main {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 150px;
    padding-left: 150px;
}
.independence__main--block-info ul li {
    font-size: 18px;
    font-weight: 500;
}
.independence__main--block-info ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 30px;
    max-width: 450px;
}
.independence__main--block-qr--name {
    font-size: 36px;
    font-weight: 500;
}
.independence__main--block-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.independence__main--block-qr--link span {
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}
.independence__main--block-qr--link a{
    color: black;
    transition: all 0.3s ease;

    &:hover {
        color: #287D61;
    }
}
.indepedence__inner__gerb span {
    display: block;
    font-size: 20px;
    text-align: center;
}
.indepedence__inner__gerb {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}
.indepedence__inner__gerb a {
    color: black;
    transition: all 0.3s ease;

    &:hover {
        color: #287D61;
    }
}
.indepedence__inner__gerb span:nth-child(2) {
    max-width: 550px;
    margin-top: 30px;
    margin-bottom: 20px;
}
/* ---------------resources------------ */
.resources__inner__name {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 48px;
    font-weight: 600;
}
.resources__inner {
    margin-top: 120px;
}
.resources__inner__name img {
    margin-top: 60px;
}
.resources__inner--slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid black;
    min-width: 350px;
    height: 400px;
    justify-content: center;
    gap: 50px;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.4s ease;
}
.resources__inner__slider {
    display: flex;
    gap: 125px;
    margin-top: 80px;
    overflow: hidden;
    min-width: 1305px;
    position: relative;
    width: 100%;
}
.resources__inner__slider a {
    text-decoration: none;
}
.resources__inner--slide:hover {
    color: white;
}
.resources__inner--slide {
    position: relative;
}

.resources__inner--slide::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0;
    background: #287D61; /* Цвет заливки, можно изменить */
    transition: height 0.4s ease-in-out;
}

.resources__inner--slide:hover::before {
    height: 100%;
}
.resources__inner {
    position: relative;
}
.resources__inner__slider-btn--next, .resources__inner__slider-btn--back {
    position: absolute;
    top: 75%;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.resources__inner__slider-btn--next {
    right: -50px;
}
.resources__inner__slider-btn--back {
    left: -50px;
}
.resources__inner__slider-btn--next svg path {
    transition: all 0.3s ease;
}
.resources__inner__slider-btn--back svg path {
    transition: all 0.3s ease;
}
.resources__inner__slider-btn--next:hover svg path {
    stroke: #287D61;
    transform: scale(1.2);
}
.resources__inner__slider-btn--back:hover svg path {
    stroke: #287D61;
    transform: scale(1.2);
}
/* ------------other-------------- */
.other__info__inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 200px;
}
.other__info--block-one {
    font-size: 30px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.other__info--block-one-video {
    margin-top: 90px;
}
.other__info--block-one-video video {
    width: 100%;
    margin: 0 auto;
}
.other__info--block-two {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}
.other__info--block-two img {
    width: 100%;
}
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ---------------ПРИЕМНАЯ КОМИССИЯ-------------- */
.commission__inner-up span {
    font-size: 64px;
    font-weight: bolder;
}
.commission__inner-up a {
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    transition: all 0.3s ease;
}
.bread {
    margin-top: 20px;
}
.commission__inner-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.bread a {
    position: relative; 
    display: inline-block; 
    text-decoration: none;
    color: black;
}
.bread a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px; 
    width: 100%;
    height: 1.5px; 
    background-color: black; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
.bread a:hover::after {
    transform: scaleX(1); 
    transform-origin: bottom left; 
}
.restangle_scroll {
    min-height: 0px;
    margin-top: 30px;
    margin-bottom: 50px;
    transition: all 1s ease;
}
.btn-commission {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    width: 100%;
}
.btn-commission button {
    width: 100%;
    border: none;
    background-color: #25644F;
    min-height: 55px;
    color: white;
}
.btn-commission-flex-d {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}
.btn-commission-flex-d button {
    width: 100%;
    border: none;
    background-color: #25644F;
    height: 55px;
    color: white;
}
.btn-commission-flex {
    margin-top: 10px;
    width: 100%;
}
.btn-commission-flex button {
    width: 100%;
    border: none;
    background-color: #25644F;
    height: 55px;
    color: white;
}
.btn-commission button {
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Скрыть переполнение */
    transition: color 0.4s ease; /* Плавный переход цвета текста */
}
.btn-commission button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Начальная позиция слева */
    width: 100%;
    height: 100%;
    background-color: white; /* Цвет заливки */
    transition: left 0.4s ease; /* Плавный переход для заливки */
}
.btn-commission button:hover::before {
    left: 0; /* Перемещение заливки на всю ширину кнопки при наведении */
}
.btn-commission button:hover {
    border: 1px solid black;
    color: black; /* Цвет текста при наведении (можно изменить) */
}
.btn-commission span {
    font-size: 20px;
    font-weight: 400;
    position: relative;
}
.btn-commission-flex-d button {
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Скрыть переполнение */
    transition: color 0.4s ease; /* Плавный переход цвета текста */
}
.btn-commission-flex-d button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Начальная позиция слева */
    width: 100%;
    height: 100%;
    background-color: white; /* Цвет заливки */
    transition: left 0.4s ease; /* Плавный переход для заливки */
}
.btn-commission-flex-d button:hover::before {
    left: 0; /* Перемещение заливки на всю ширину кнопки при наведении */
}

.btn-commission-flex-d button:hover {
    border: 1px solid black;
    color: black; /* Цвет текста при наведении (можно изменить) */
}
.btn-commission-flex-d span {
    font-size: 20px;
    font-weight: 400;
    position: relative;
}
.btn-commission-flex button {
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Скрыть переполнение */
    transition: color 0.4s ease; /* Плавный переход цвета текста */
}
.btn-commission-flex button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Начальная позиция слева */
    width: 100%;
    height: 100%;
    background-color: white; /* Цвет заливки */
    transition: left 0.4s ease; /* Плавный переход для заливки */
}
.btn-commission-flex button:hover::before {
    left: 0; /* Перемещение заливки на всю ширину кнопки при наведении */
}
.btn-commission-flex button:hover {
    border: 1px solid black;
    color: black; /* Цвет текста при наведении (можно изменить) */
}
.btn-commission-flex span {
    font-size: 20px;
    font-weight: 400;
    position: relative;
}
.commission__inner--contacts-one div {
    display: flex;
    gap: 15px;
    align-items: center;
}
.commission__inner--contacts-one {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.commission--name {
    font-size: 40px;
    font-weight: bold;
}
.commission__inner--contacts {
    margin-top: 85px;
}
.proezd-name {
    font-weight: bold;
}
.commission__inner--contacts-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.commission__inner--contacts-two div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.commission__inner--contacts-two svg {
    margin-right: 10px;
}
.commission__inner--foto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 85px;
    font-weight: bold;
    gap: 30px;
    font-size: 24px;
}
.commission__inner--foto span{
    text-align: right;
}
.commission__inner-down {
    display: flex;
    justify-content: space-between;
}
.commission__inner--foto img {
    width: 100%;
}
.commission__map {
    display: flex;
    justify-content: center;
    margin-top: 120px;
}
.commission__documents--name {
    font-size: 40px;
    font-weight: bold;
    display: block;
}
.commission__documents--name-two {
    display: block;
    margin-top: 30px;
}
.commission__documents__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
}
.scrollbar--figure {
    width: 800px;
    background-color: black;
    height: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.figure-div::after {
    content: "";
    width: 40px;
    height: 40px;
    top: -30%;
    right: -30%;
    border: 1px solid black;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}
.scrollbar--figure {
    position: relative;
}   
.figure-div {
    width: 25px;
    position: relative;
    height: 25px;
    background-color: black;
    border-radius: 50%;
    z-index: 1;
    
}
.scrollbar--numbers {
    display: flex;
    justify-content: space-between;
    font-size: 40px;
    margin-bottom: 25px;
}
.scrollbar--info-one {
    display: grid;
    grid-template-columns: 300px 500px 300px;
    justify-content: center;    
    text-align: center;
    width: 100%;
    margin-top: 35px;
    font-size: 18px;
}
.scrollbar--info-two {
    display: grid;
    grid-template-columns: 300px 500px 300px;
    justify-content: center;    
    text-align: center;
    width: 100%;
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
}
.commission__documents__scrollbar {
    margin-top: 80px;
}
.figure-div-main::before {
    content: "";
    background-color: white;
    width: 50px;
    height: 50px;
    display: flex;
    top: -25px;
    left: -25px;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
}
.scrollbar--figure {
    position: relative;
    cursor: pointer;
    transition: color 0.4s ease; /* Плавный переход цвета текста */
}
.scrollbar--figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Начальная позиция слева */
    width: 100%;
    height: 100%;
    background-color: white; /* Цвет заливки */
    transition: left 2s ease; /* Плавный переход для заливки */
}
.scrollbar--figure.animated::before {
    background-color: green; /* Цвет заливки */
    left: 0; /* Перемещение заливки на всю ширину кнопки при наведении */
}
.commission__documents__scrollbar {
    overflow: hidden;
    padding-bottom: 20px;
    padding-right: 8px;
    padding-left: 8px;
}
.commission__credit__name {
    font-size: 40px;
    font-weight: bold;
}
.commission__credit__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
}
.list_obshezitie {
    margin-top: 50px;
}
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* ---------------АБИТУРИЕНТУ-------------- */
.commission__inner-card-h {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}
.commission__inner__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 80px;
}
.directions__slider__card__center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.commission__inner__contacts--name {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}
.commission__inner__contacts-blocks--name {
    font-size: 32px;
    font-weight: bold;
}
.commission__inner__contacts-blocks {
    display: flex;
    justify-content: space-between;
}
.commission__inner__contacts-blocks--address {
    max-width: 287px;
}
.commission__inner__contacts-blocks--name {
    margin-bottom: 25px;
}
.commission__inner__contacts {
    margin-top: 100px;
}
.commission__inner__contacts-blocks {
    margin-top: 80px;
}
.commission__inner__contacts--btn {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-top: 80px;
}
.commission__inner__contacts--btn a {
    transition: all 0.3s ease;
}
.commission__inner__contacts--btn a:hover {
    color: green;
}