/* Слайдер картинок */
.univer-gallery {
    padding: 60px 0;
}

.univer-gallery .site-main {
    display: flex;
    gap: 85px;
    align-items: center;
}

.univer-gallery .site-main .univer-slider {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
}

.univer-gallery .site-main .univer-slider .slide {
    min-width: 100%;
    position: relative;
    line-height: 0;
}

.univer-gallery .site-main .univer-slider.slick-initialized .slide {
    min-width: var(--slide-width);
    width: var(--slide-width);
}

.univer-gallery .prev-slide,
.univer-gallery .next-slide {
    cursor: pointer;
}

.univer-gallery .univer-slider .slide .overlay {
    background: linear-gradient(185.6deg, rgba(33, 64, 128, 0) 59.96%, #214080 95.54%);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
}

.univer-gallery .univer-slider .slide .overlay .description {
    padding: 20px;
    font-size: 16px;
    line-height: 120%;
    color: var(--white);
}

.univer-gallery .univer-slider img {
    width: 100%;   /* Занимает всю доступную ширину */
    height: 540px; /* Устанавливаем одинаковую высоту для всех изображений */
    object-fit: cover; /* Обрезает изображение по заданным пропорциям */
}

.univer-gallery .slick-track {
    display: flex;
}

.univer-gallery .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Убираем последний отступ, чтобы слайдер не сдвигался */
.univer-gallery .slick-slide:last-child {
    margin-right: 0;
}

@media (max-width: 1024px) {
    .univer-gallery .site-main > div:not(.univer-slider) {
        display: none;
    }

    .univer-gallery .univer-slider img {
        height: 300px;
    }

    .univer-gallery .slider-controls {
        margin-top: 30px;
    }
}


/* Университет Reviews */
.univer-reviews {
    padding: 10px 0px 70px 0px;
    /* display: flex; */
    flex-direction: column;
    /* gap: 40px; */
}

.univer-reviews .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.univer-reviews .header h2 {
    font-family: Noto Serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 55.02px;
    color: var(--white);
    margin: 0;
}

.univer-reviews .slider-controls {
    display: flex;
    gap: 33px;
    align-items: center;
}

.univer-reviews .slider-controls span {
    padding: 10px 0;
    cursor: pointer;
}

.univer-reviews .reviews-slider {
    padding-left: 89px; /* Добавляем отступы слева и справа для симметрии */
    overflow: hidden;
}

.univer-reviews .review {
    background: #f1f1f1;
    padding: 26px 30px 40px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 4px; 
    height: 100%; /* Высота слайда на всю доступную высоту */
}

.univer-reviews .review .top {
    display: flex;
    gap: 25px;
}

.univer-reviews .review .top .info {
    margin-top: 20px;
}

.univer-reviews .review .top img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.univer-reviews .review .top b {
    font-size: 20px;
    font-weight: 600;
    line-height: 26.2px;
    text-align: left;
    color: var(--main);
    display: block;
}

.univer-reviews .review .top i {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 23.58px;
    color: var(--main);
    display: block;
}

.univer-reviews .review span {
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    margin-top: 12px;
}

.univer-reviews .slick-slide {
    margin-right: 20px; /* Отступ между слайдами */
}

.univer-reviews .slick-slide:last-child {
    margin-right: 0; /* Убираем отступ у последнего слайда */
}

.univer-reviews .slick-list {
    overflow: visible; /* Это нужно, чтобы позволить слайдам выходить за границы */
}

.univer-reviews .slick-prev,
.univer-reviews .slick-next {
    display: none; /* Отключаем стандартные стрелки */
}

/* Про университет */
.univer-about {
    padding: 60px 0;
}

.univer-about .header {
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    color: #ffffff;
    display: inline-block;
    margin: 0;
}

.univer-about .site-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.univer-about .description {
    font-family: Inter Tight;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: var(--main);
}

.univer-about .product-attributes-table tr td {
    padding: 20px;
    align-items: center;
}

.univer-about .product-attributes-table tr td:first-child {
    font-family: Noto Serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 110%;
    color: var(--main);
    text-transform: uppercase;
    line-height: 131%;
}

.univer-about .product-attributes-table tr td:last-child {
    font-family: Inter Tight;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 1024px) {
    .univer-about {
        padding: 50px 0;
    }

    .univer-about .header {
        font-size: 25px;
    }

    .univer-about .site-main {
        gap: 30px;
    }

    .univer-about .description {
        font-size: 13px;
    }

    .univer-about .product-attributes-table tr {
        display: flex;
        flex-direction: column;
    }

    .univer-about .product-attributes-table tr th,
    .univer-about .product-attributes-table tr td {
        padding: 15px;
    }

    .univer-about .product-attributes-table tr th:first-child,
    .univer-about .product-attributes-table tr td:first-child {
        padding-bottom: 5px;
        font-size: 15px;
        line-height: 130%;
    }

    .univer-about .product-attributes-table tr th:last-child,
    .univer-about .product-attributes-table tr td:last-child {
        padding-top: 5px;
        font-size: 13px;
        line-height: 130%;
    }

}


/* Стоимость обучения */
.univer-price {
    padding: 60px 0px;
    background: var(--main) url('/wp-content/uploads/2024/09/earth_hat.svg') right center no-repeat;

}

.univer-price .site-main {
    display: flex;
    flex-direction: column;
    gap: 45px;
    position: relative;
    align-items: flex-start;
}

.univer-price .header {
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    color: var(--white);
    margin: 0;
}

.univer-price .header::before {
    background-color: var(--red); /* Цвет фона */
    /* transform: rotate(-0.52deg); */
}

.univer-price .inner {
    display: flex;
    gap: 20px;
}

.univer-price .inner .block {
    width: 50%;
    display: flex;
    flex-direction: column;
}


.univer-price .inner .block .block-text {
    padding: 10px;
    background-color: var(--grey);
    padding: 20px;
    min-height: 70%;
    position: relative;
    font-size: 16px;
    line-height: 120%;
}


.univer-price .inner .block .block-text.pin::before {
    top: -30px;
    left: unset;
    right: 10%;
}




.univer-price .inner .list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 45%;
}

.univer-price .inner .list .item {
    font-size: 16px;
    line-height: 120%;
    color: var(--white);
}

.univer-price .inner .list .item b {
    font-family: Noto Serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 110%;
    background-color: var(--blue);
    padding: 10px;
    display: inline-block;
    color: var(--main);
    white-space: nowrap;
}

.univer-price .inner .list .item span {
    padding: 10px;
    display: block;
 }

.univer-price .inner .empty {
    width: 5%;
}

@media (max-width: 1024px) {
    .univer-price {
        padding: 50px 0;
        background: var(--main) url(/wp-content/themes/selfstartglobal/images/earth_hat_small.svg) right top no-repeat;
        background-size: 160px 200px;
    }

    .univer-price .header {
        font-size: 25px;
        line-height: 110%;
    }

    .univer-price .site-main {
        gap: 35px;
    }

    .univer-price .inner .block .block-text {
        padding: 18px;
        font-size: 13px;
    }

    .univer-price .inner .block .block-text ul,
    .univer-price .inner .block .block-text ol {
        padding-left: 10px;
    }

    .univer-price .inner .block .block-text.pin::before {
        content: url(/wp-content/themes/selfstartglobal/images/pin2.svg);
        top: -18px;
        right: 2%;
    }

    .univer-price .inner {
        flex-direction: column;
    }

    .univer-price .inner .block,
    .univer-price .inner .list {
        width: 100%;
    }

    .univer-price .inner .list .item {
        font-size: 13px;
    }


    .univer-price .inner .list .item b {
        font-size: 15px;
        line-height: 130%;
        padding: 5px;
    }

    .univer-price .inner .list .item span {
        padding: 10px 5px 5px 5px;
    }

    .univer-price .inner .empty {
        display: none;
    }
}

/* Программы */
.univer-programs {
    padding: 70px 0;
}

.univer-programs .header {
    font-family: Noto Serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 600;
    line-height: 63.29px;
    color: var(--main);
    margin-bottom: 75px;
}

.univer-programs .header::before {
    background-color: var(--blue); /* Цвет фона */
}

.univer-programs .inner {
    display: flex;
    gap: 20px;
}

.univer-programs .inner .item {
    padding: 29px 26px 29px 36px;
    color: var(--main);
    background-color: #EFEFEF63;
;
}

.univer-programs .inner .item ul {
    padding-left: 20px;
}


.univer-programs .inner .item > b {
    font-family: Noto Serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 500;
    line-height: 32.75px;
    padding: 12px 10px;
    background-color: var(--main);
    display: inline-block;
    color: var(--white);    
    margin-bottom: 8px;
}

.univer-programs .inner .item span {
    font-family: Inter Tight;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    margin-bottom: 21px;
    display: block;
}

.univer-programs .inner .item span ul li:not(:last-child) {
    margin-bottom: 5px;
}

.univer-programs .inner .item div {
    background: #CFE7FD82;
    padding: 9px 12px 15px 12px;
}

.univer-programs .inner .item div b {
    display: block;
    font-family: Noto Serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 26.2px;
    margin-bottom: 6px;

}

.univer-programs .inner .item div:not(:last-child) {
    margin-bottom: 14px;
}



/* Факультеты */
.univer-faculties {
    padding: 60px 0;
}
/*
.univer-faculties .inner > * {
    width: 50%;
}

.univer-faculties .inner {
    padding-bottom: 50px;
}
*/

.univer-faculties .header {
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    color: var(--white);
    margin: 0;
}
/*
.univer-faculties .header.title-slant::before {
    transform: rotate(-0.84deg);
} */
 

.univer-faculties .description {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--main);
    /* margin: 30px 0 40px 0; */
}

        .univer-faculties .description {
            margin-top: 30px;
        }
    
        .univer-faculties .accordion {
            margin-top: 40px;
        }
/*
.univer-faculties .inner .header::before {
    transform: rotate(-0.84deg);
}*/

.univer-faculties .button_block {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 1024px) {
    .univer-faculties {
        padding: 50px 0;
    }

    .univer-faculties .header {
        font-size: 25px;
    }

    .univer-faculties .description {
        margin-top: 30px;
        font-size: 13px;
    }

    .univer-faculties .accordion {
        margin-top: 40px;
    }
}


/* Процесс поступения */
.univer-admission {
    padding: 60px 0;
}

.univer-admission .header {
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    color: var(--white);
    margin-bottom: 0;
}

.univer-admission .header {
    margin: 0;
}


.univer-admission .description {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--main);
    margin: 40px 0;
}

.univer-admission .description ul:not(:last-child),
.univer-admission .description ol:not(:last-child) {
    margin-bottom: 0.8em;
}



.univer-admission .button_block {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 1024px) {
    .univer-admission {
        padding: 50px 0;
    }

    .univer-admission .header {
        font-size: 25px;
    }

    .univer-admission .description {
        margin: 30px 0 0 0 ;
        font-size: 13px;
    }

    .univer-admission .accordion {
        margin-top: 40px;
    }

    .univer-admission .button_block {
        margin-top: 35px;
    }
}

/* Обустройство */
.univer-dormitory .site-main {
    display: table;
}

.univer-dormitory h3.header {
    font-family: Noto Serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 600;
    line-height: 63.29px;
    color: var(--white);
    margin: 100px 0 50px 0;
}

.univer-dormitory h3.header::before {
    transform: rotate(-0.77deg);
    background-color: var(--blue);
}

.univer-dormitory .inner .header {
    font-family: Noto Serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 55.02px;
    color: var(--white);
    margin: 0;
}

.univer-dormitory .inner > * {
    width: 50%;
}

.univer-dormitory .inner .description {
    font-family: Inter Tight;
    font-size: 20px;
    font-weight: 500;
    line-height: 26.2px;
    color: var(--white);
    border-left: 10px solid var(--red);
    padding-left: 19px;
}

.univer-dormitory .list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Две колонки одинаковой ширины */
    gap: 20px; /* Отступ между элементами */
    /* padding: 20px; */
    margin: 70px 0px 100px 0px;
}

.univer-dormitory .list .item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрирование содержимого по вертикали */
    background-color: var(--grey);
}

.univer-dormitory .list .item img {
    max-height: 250px; /* Ограничиваем максимальную высоту изображений */
    width: 100%;
    object-fit: cover; /* Изображение сохраняет пропорции */
    display: block;
    margin: 0 auto; /* Центрируем изображение */
}

.univer-dormitory .list .item div {
    flex: 1;
    padding: 20px 30px 30px 30px;
}

.univer-dormitory .list .item b {
    display: block;
    font-family: Inter Tight;
    font-size: 20px;
    font-weight: 600;
    line-height: 26.2px;
}

.univer-dormitory .list .item span {
    font-family: Inter Tight;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;  
}

.univer-dormitory .list2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Создаем три равные колонки */
    gap: 60px 20px;
    margin: 100px 0px 65px 0px;
}

.univer-dormitory .list2 .item b {
    font-family: Noto Serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 28.82px;
    background-color: var(--red);
    color: var(--white);
    display: inline-block;
    padding: 0.5px 10px;
    margin-bottom: 10px;
}

.univer-dormitory .list2 .item span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    color: var(--white);
    padding-right: 40px;
}

/* Условия проживания */
.univer-conditions .site-main {
    display: table;
}

.univer-conditions .inner {
    margin: 65px 0 65px 0;
}

.univer-conditions .inner .header {
    font-family: Noto Serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 55.02px;
    color: var(--white);
    margin: 0;
}

.univer-conditions .inner > * {
    width: 50%;
}

.univer-conditions .inner .description {
    font-size: 20px;
    font-weight: 500;
    line-height: 26.2px;
    color: var(--white);
    border-left: 10px solid var(--red);
    padding-left: 19px;
}

.univer-conditions .info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.univer-conditions .info .text {
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    color: var(--white);
}

/* */
.univer-conditions .info .images {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.univer-conditions .info .images .img-wrapper {
    max-width: 100%;
    transform-origin: center;
}

.univer-conditions .info .images .img-wrapper img {
    width: 300px;
    height: auto;
}

.univer-conditions .info .images .img-wrapper:first-child {
    transform: translateX(25%) rotate(5deg);
}

.univer-conditions .info .images .img-wrapper:nth-child(2) {
    transform: translateX(-25%) translateY(-60px) rotate(-5deg);
}

/* Инфраструктура */
.univer-infrastructure .site-main {
    display: table;
}


.univer-infrastructure .inner .header {
    font-family: Noto Serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 55.02px;
    color: var(--white);
    margin: 0;
}

.univer-infrastructure .inner > * {
    width: 50%;
}

.univer-infrastructure .inner {
    margin: 60px 0 100px 0;
}

.univer-infrastructure .inner .description {
    font-size: 20px;
    font-weight: 500;
    line-height: 26.2px;
    color: var(--white);
    border-left: 10px solid var(--red);
    padding-left: 19px;
}

.univer-infrastructure .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Создаем три равные колонки */
    gap: 60px 20px;
    margin: 100px 0px 110px 0px;
}

.univer-infrastructure .list .item b {
    font-family: Noto Serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 28.82px;
    background-color: var(--red);
    color: var(--white);
    display: inline-block;
    padding: 0.5px 10px;
    margin-bottom: 10px;
}

.univer-infrastructure .list .item span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    color: var(--white);
    padding-right: 40px;
}


/* Поступление 
.univer-admission {
    padding: 80px 0 240px 0;
}


.univer-admission:not(.univer-admission + .univer-admission) {
    padding-bottom: 120px;
}

.univer-admission .inner > * {
    width: 50%;
}

.univer-admission .inner {
    padding-bottom: 50px;
}

.univer-admission .inner .header {
    font-family: Noto Serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 600;
    line-height: 63.29px;
    color: var(--white);
    display: table-caption;
}


.univer-admission .inner .description {
    font-size: 20px;
    font-weight: 500;
    line-height: 26.2px;
    border-left: 10px solid var(--red);
    padding-left: 19px;
    color: var(--main);

}

.univer-admission .inner .header::before {
    transform: rotate(-0.84deg);
}

.univer-admission h2.header {
    font-family: Noto Serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 55.02px;
    color: var(--main);
    padding: 0;
    margin: 50px 0;
}

.univer-admission .list {
    display: flex;
    gap: 20px;
    margin: 50px 0 100px 0;
}

.univer-admission .list .item {
    flex-grow: 1;
    flex-basis: 0;
}

.univer-admission .list .item b {
    font-family: Noto Serif;
    font-size: 19.98px;
    font-style: italic;
    font-weight: 600;
    line-height: 26.18px;
    color: var(--white);
    background-color: var(--main);
    padding: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.univer-admission .list .item span {
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    text-align: left;
    padding-right: 20px;
    display: block;
}

.univer-admission .list2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 20px;
    margin: 50px 0 0 0;
}

.univer-admission .list2 .item {
    display: flex;
    gap: 30px;
    position: relative;
}

.univer-admission .list2 .item .txt {
    padding: 10px 30px 0 0;
}

.univer-admission .list2 .item .pre {
    font-family: Noto Serif;
    font-size: 85px;
    font-style: italic;
    font-weight: 500;
    color: transparent;
    line-height: 1em;
    -webkit-text-stroke: 2px var(--main); /* Обводка текста для WebKit браузеров */
    text-stroke: 2px var(--main); /* Обводка для остальных браузеров (поддерживается в некоторых) */
}

.univer-admission .list2 .item:not(.info) b {
    font-family: Noto Serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 28.82px;
    display: block;
    color: var(--main);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.univer-admission .list2 .item:not(.info) span {
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    text-align: left;
}


.univer-admission .info_box {
    position: absolute;
    background-color: var(--blue);
    padding: 37px;
    right: 0;
}

.univer-admission .info_box::before {
    top: unset;
    left: unset;
    bottom: -35px;
    right: 10%;
}

.univer-admission .info_box  > b {
    font-family: Noto Serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 28.82px;
    display: inline-block;
    color: var(--white);
    margin-bottom: 10px;
}

.univer-admission .info_box  > span {
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    text-align: left;
    color:var(--main);
    padding-right: 40px; 
    display: block;
}
/* */

/* Особенности поступления */
.univer-features-admission {
    padding: 60px 0;
}


.univer-features-admission .site-main {
    display: table;
}

.univer-features-admission .header {
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    line-height: 110%;
    color: var(--main);
    margin: 0 0 30px 0;
}

.univer-features-admission .list {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    gap: 20px;
    margin: 30px 0 65px 0;
}

.univer-features-admission .list .item {
    font-size: 14px;
    line-height: 120%;
}


.univer-features-admission .list .item:not(.info) div {
    border-left: 4px solid var(--blue);
    padding-left: 15px;
}

.univer-features-admission .list .item:not(.info) b {
    font-family: Noto Serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 110%;
    display: inline-block;
    color: var(--main);
    margin-bottom: 14px;
}

.univer-features-admission .list .item:not(.info) div span {
    padding-right: 20px;
    display: block;
}

.univer-features-admission .list .item.info {
    position: relative;
}

.univer-features-admission .header_add {
    font-family: Noto Serif;
    font-weight: 400;
    font-style: italic;
    font-size: 30px;
    line-height: 110%;
    color: var(--main);
    /* margin-bottom: 30px; */
    white-space: nowrap;
    width: 30%;
    background-image: url('/wp-content/themes/selfstartglobal/images/arrow2.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
}

.univer-features-admission .text_add {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    background-color: var(--blue-trans2);
    padding: 20px;
    width: 70%;
}


.univer-features-admission .block_add {
    display: flex;
    gap: 30px;
}

@media (max-width: 1024px) {
    .univer-features-admission {
        padding: 50px 0;
    }

    .univer-features-admission .header {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .univer-features-admission .list {
        gap: 30px;
        flex-direction: column;
        margin: 25px 0 50px 0;
    }

    .univer-features-admission .block_add {
        flex-direction: column;
        gap: 25px;
    }

    .univer-features-admission .text_add {
        width: 100%;
        padding: 15px;
        font-size: 13px;
    }

    .univer-features-admission .header_add {
        background-image: unset;
        font-size: 20px;
    }
}

/* Учебный процесс */
.univer-educational-process .header {
    font-family: Noto Serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 600;
    line-height: 63.29px;
    color: var(--white);
    margin: 100px 0 50px 0;

}

.univer-educational-process .header::before {
    background-color: var(--blue);
    transform: rotate(-0.77deg);
}

.univer-educational-process .description {
    font-size: 20px;
    font-weight: 500;
    line-height: 26.2px;
    text-align: left;
    border-left: 10px solid var(--red);
    padding-left: 20px;
    color: var(--white);
    margin: 50px 0 65px 0;
}

.univer-educational-process .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 65px 0 90px 0;
}

.univer-educational-process .list .item {
    background-color: var(--grey);
}

.univer-educational-process .list .item .img-block {
    height: 220px;
    width: 100%;
    position: relative;
}

.univer-educational-process .list .item .img-block .image-container {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 220px;
}

.univer-educational-process .list .item .img-block .image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.54); /* Черное затенение с прозрачностью 50% */
    z-index: 1; /* Убедитесь, что затенение выше изображения */
    pointer-events: none; /* Затенение не блокирует клики на изображении */
}

.univer-educational-process .list .item .img-block .image-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.univer-educational-process .list .item .img-block b {
    z-index: 1;
    position: absolute;
    bottom: 20px;
    left: 35px;
    font-family: Noto Serif;
    font-size: 27px;
    font-style: italic;
    font-weight: 500;
    line-height: 35.37px;
    color: var(--white);
}

.univer-educational-process .list .item .text {
    padding: 24px 36px 36px 36px;
    font-size: 18px;
    font-weight: 400;
    line-height: 23.58px;
    text-align: left;
}

.univer-educational-process .button_block {
    margin-top: 105px;
    text-align: center;
    padding-bottom: 85px;
}


/* Степендии и гранты */
.univer-grants {
    padding: 60px 0;
}

.univer-grants .inner > *,
.univer-grants .img-block > * {
    width: 50%;
    position: relative;
}


.univer-grants .header {
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    color: var(--main);
    margin: 0;
}


.univer-grants .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: var(--white);
    margin: 40px 0;
}

.univer-grants .header::before {
    /* transform: rotate(0.91deg); */
    background-color: var(--grey);
}

.univer-grants .accordion {
    margin: 40px 0 0 0;
}

.univer-grants .accordion-header {
    color: var(--white);
}

.univer-grants .accordion-item {
    background-color: rgba(255, 255, 255, 0.07);
}


.univer-grants .accordion-item .accordion-content > div {
    color: var(--white);
}

@media (max-width: 1024px) {
    .univer-grants {
        padding: 50px 0;
    }

    .univer-grants .header {
        font-size: 25px;
    }

    .univer-grants .description {
        margin: 25px 0 0 0;
        font-size: 13px;
    }

    .univer-grants .accordion {
        margin-top: 30px;
    }
}

/* Перспективы */
.univer-prospects {
    padding: 60px 0;
}

.univer-prospects h2.header {
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    color: var(--white);
    margin: 0;
}
/*
.univer-prospects h2.header::before {
    transform: rotate(0.43deg);
}*/

.univer-prospects .text-main {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--main);
    margin: 40px 0 50px 0;
}

.univer-prospects .inner {
    margin-top: 40px;
}

.univer-prospects .inner .text .item {
    border-left: 4px var(--blue) solid;
    padding-left: 15px;
}

.univer-prospects .inner .text .item:not(:last-child) {
    margin-bottom: 30px;
}
/*
.univer-prospects .inner .text .head:before {
    content: "";
    width: 10px;
    height: 16px;
    top: 7px;
    background-color: var(--blue);
    display: flex;
    position: absolute;
    left: 0px;
}
 */
.univer-prospects .inner .text .head {
    font-family: Noto Serif;
    font-weight: 500;
    font-style: italic;
    font-size: 25px;
    line-height: 110%;
    color: var(--main);
    margin-bottom: 10px;
    position: relative;
}

.univer-prospects .inner .text .txt {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}

@media (max-width: 1024px) {
    .univer-prospects {
        padding: 50px 0;
    }

    .univer-prospects h2.header {
        font-size: 25px;
    }

    .univer-prospects .text-main {
        margin: 25px 0 0 0;
        font-size: 13px;
    }

    .univer-prospects .inner {
        margin-top: 35px;
    }

    .univer-prospects .inner .text .item {
        border-left: none;
        padding-left: unset;
    }

    .univer-prospects .inner .text .item .head {
        border-left: 5px var(--blue) solid;
        padding-left: 10px;
        font-size: 18px;
        text-transform: uppercase;
    }

    .univer-prospects .inner .text .txt {
        padding-left: 15px;
        font-size: 13px;
    }

}
/* Научные достижения */

.univer-achievements {
    padding: 60px 0;
}

.univer-achievements h2.header {
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    color: var(--white);
    margin: 0;
}

.univer-achievements .description {
    margin: 40px 0 50px 0;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--main);
}

.univer-achievements .list .head {
    font-family: Noto Serif;
    font-weight: 400;
    font-style: italic;
    font-size: 30px;
    line-height: 110%;
    color: var(--main);
    margin-top: 50px;
}

.univer-achievements .list .repeater {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.univer-achievements .list .repeater .name {
    font-family: Noto Serif;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 110%;
    color: var(--main);
    background-color: var(--blue);
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 10px;

}

.univer-achievements .list .repeater .name.red {
    background-color: var(--red);
    color: var(--white);
}

.univer-achievements .list .repeater .text {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--main);
}

@media (max-width: 1024px) {
    .univer-achievements {
        padding: 50px 0;
    }

    .univer-achievements h2.header {
        font-size: 25px;
    }

    .univer-achievements .description {
        font-size: 13px;
        margin: 25px 0 0 0;
    }

    .univer-achievements .list {
        margin-top: 50px;
    }

    .univer-achievements .list .head {
        font-size: 22px;
    }

    .univer-achievements .list .repeater {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .univer-achievements .list .repeater .name {
        font-size: 18px;
        padding: 7px;
        margin-bottom: 10px;
    }

    .univer-achievements .list .repeater .text {
        font-size: 13px;
    }
}




/* Интересные факты */
.univer-facts {
    overflow: hidden;
    padding: 60px 0;
}


.univer-facts .site-main {
    /* background: url("/wp-content/themes/selfstartglobal/images/study_clean.svg");
    background-position-y: -60px;
    background-position-x: right;
    background-repeat: no-repeat; */

    position: relative;
}

.univer-facts .site-main .study-hands {
    position: absolute;
    right: 0px;
    bottom: -60px;
    z-index: -1;
}


.univer-facts h2.header::before {
    background-color: var(--blue);
    /* transform: rotate(1.01deg); */
}

.univer-facts div.header {
    padding-top: 0;
    margin-bottom: 50px;
}

.univer-facts h2.header {
    color: var(--main);
    font-family: Noto Serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    margin: 0;
}

.univer-facts .img-block {
    gap: 80px;
}

.univer-facts .img-block > div:last-child {
    width: 25%;
}

.univer-facts .img-block > div:first-child {
    width: 75%;
}



.univer-facts .img-block .text .description {
    font-size: 20px;
    font-weight: 500;
    line-height: 26.2px;
    border-left: 10px solid var(--red);
    padding-left: 19px;
    color: var(--main);
}

.univer-facts .img-block .text .items {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.univer-facts .img-block .text .items .item {
    padding: 20px;
    background-color: var(--blue-bg);
}


.univer-facts .img-block .text .items .item > b {
    font-family: Inter Tight;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: var(--main);
    display: block;
    margin-bottom: 10px;
}

.univer-facts .img-block .text .items .item div {
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}

.univer-facts .img-block .images {
    position: relative;
    text-align: center;
}

.univer-facts .img-block .images img {
    max-width: 300px;
    max-height: 370px;
    object-fit: cover;
}


.univer-facts .img-block .images .img-wrapper:first-child {
    transform: rotate(7.44deg);
    top: -50px;

}

.univer-facts .img-block .images .img-wrapper.pin::before {
    /* top: unset; */
    left: unset;
    bottom: unset;
    right: 20%;
}

@media (max-width: 1024px) {
    .univer-facts {
        padding: 50px 0;
        background: unset;
    }

    .univer-facts .site-main .study-hands {
        position: relative;
        width: auto;
        height: 230px;
        bottom: -34px;
    }
    

    .univer-facts h2.header {
        font-size: 25px;
    }

    .univer-facts div.header {
        margin-bottom: 0;
    }

    .univer-facts .img-block {
        flex-direction: column-reverse;
        margin-top: 30px;
        gap: 0px !important;
    }

    .univer-facts .img-block .images {
        background: url('/wp-content/themes/selfstartglobal/images/hands.svg');
        background-size: contain;
        background-position: left bottom;
        background-repeat: no-repeat;
        text-align: right;
    }

    .univer-facts .img-block .images img {
        max-width: 150px;
        max-height: 200px;
    }

    .univer-facts .img-block .images .img-wrapper.pin::before {
        content: url(/wp-content/themes/selfstartglobal/images/pin2.svg);
        right: 5%;
        top: unset;
        bottom: -15px;
    }

    .univer-facts .img-block > div:first-child,
    .univer-facts .img-block > div:last-child {
        width: 100%;
    }

    .univer-facts .img-block .images .img-wrapper:first-child {
        top: 0;
        right: 0;
        margin-bottom: 35px;
    }

    .univer-facts .img-block .text .items {
        gap: 15px;
    }

    .univer-facts .img-block .text .items .item {
        padding: 15px;
    }

    .univer-facts .img-block .text .items .item div {
        font-size: 12px;
    }

    .univer-facts .img-block .text .items .item > b {
        font-size: 13px;
        margin-bottom: 8px;
    }
}


/* Обустройство */
.univer-arrangement {
    padding: 60px 0;
}

.univer-arrangement .header.title-slant {
    color: var(--main);
    font-family: Noto Serif;
    font-weight: 600;
    font-style: italic;
    font-size: 40px;
    line-height: 110%;
    margin: 0;
}

.univer-arrangement .header.title-slant::before {
    background-color: var(--blue);
    /* transform: rotate(-0.77deg); */
}

.univer-arrangement h3.header-add {
    font-family: Noto Serif;
    font-weight: 400;
    font-style: italic;
    font-size: 30px;
    line-height: 110%;
    color: var(--white);
    margin: 50px 0 20px 0;
}

.univer-arrangement .description {
    font-family: Inter Tight;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: var(--white);
    margin-bottom: 40px;
}

.univer-arrangement .description ul.item:not(:last-child),
.univer-arrangement .description ol.item:not(:last-child) {
    margin-bottom: 1rem;
}


.univer-arrangement .images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.univer-arrangement .images .img {
    position: relative;
}

.univer-arrangement .images .img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.66%, rgba(0, 0, 0, 0.72) 100%);

}

.univer-arrangement .images .img img {
    height: 100%;
    object-fit: cover;
}

.univer-arrangement .images .img span {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: var(--white);
    font-family: Noto Serif;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 110%;
}

.univer-arrangement .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 45px 0;
}

.univer-arrangement .list .item {
    background-color: var(--blue-trans);
    padding: 20px;
    color: var(--white);
}

.univer-arrangement .list .item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}

.univer-arrangement .list .item div b {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
}

.univer-arrangement .list_add {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px;
    margin-top: 30px;
}

.univer-arrangement .list_add .item {
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}

.univer-arrangement .list_add .item span {
    display: block;
}

.univer-arrangement .list_add .item b {
    display: inline-block;
    font-family: Noto Serif;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 110%;
    background-color: #FF542C;
    padding: 4px 10px;
    text-wrap: nowrap;
}

.univer-arrangement .description ul:not(:last-child),
.univer-arrangement .description ol:not(:last-child) {
    margin-bottom: 1rem;
}


@media (max-width: 1024px) {
    .univer-arrangement {
        padding: 50px 0;
    }

    .univer-arrangement .header.title-slant {
        font-size: 25px;
    }

    .univer-arrangement h3.header-add {
        margin: 35px 0 15px 0;
        font-size: 20px;
    }

    .univer-arrangement .description {
        font-size: 13px;
    }

    .univer-arrangement .images {
        margin: 35px 0;
        gap: 8px;
        grid-template-columns: 1fr 1fr;
    }
    
    .univer-arrangement .images .img span {
        font-size: 15px;
        left: 10px;
        bottom: 10px;
    }

    .univer-arrangement .list {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 35px 0 45px 0;
    }

    .univer-arrangement .list_add {
        display: grid;
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .univer-arrangement .list_add .item {
        gap: 10px;
        font-size: 13px;
    }
}