@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

main section {
    padding: 100px 0;
}

/*region Top Slider*/
#top-slider section {
    display: flex;
    width: 100vw;
    height: 100vh;
    min-height: 300px;
    padding-top: 250px;
}

/* Базовые стили секции */
.post-slide {
    position: relative;
    overflow: hidden; /* Обрезает увеличенный фон */
    width: 100vw;
    height: 100vh;
    min-height: 300px;
}

/* Фоновая картинка (анимируется) */
.post-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 300px;
    animation: zoomBg 3.5s ease 1.5s forwards;
    background-size: cover;
}

.carousel-item:not(.active) .post-slide__bg {
    transform: scale(1);
    animation: none;
}

/* Градиентный оверлей */
.post-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 300px;
    background: linear-gradient(358deg, rgba(153, 152, 204, 0.00) 67.98%, rgba(51, 49, 133, 0.60) 88.8%);
}

/* Контент (поверх всего) */
.post-slide__content {
    position: relative;
    z-index: 2; /* Важно: контент выше фона и градиента */
    margin-top: auto;
    margin-bottom: auto;
}

/* Анимация увеличения фона */
@keyframes zoomBg {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}


#top-slider .custom-indicators-container {
    bottom: 30px;
}

#top-slider .custom-indicators {
    gap: 100px;
}

#top-slider .progress-bar-container {
    width: 100%;
    min-width: 125px;
    height: 6px;
    background-color: white;
}

#top-slider .indicator-label {
    font-family: Raleway;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    color: #FFF;
}

#top-slider .custom-indicator.active .indicator-label {
    color: var(--Spot-Orange, #FA0);
}

#top-slider .slider-title {
    font-family: Raleway;
    font-size: 50px;
    font-weight: 600;
    font-style: normal;
    line-height: 60px; /* 150% */
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#top-slider a.orange-link {
    max-width: 50%;
}

#top-slider .wrapper-lightslider {
    padding: 0 20px;
}

#top-slider .wow {
    visibility: hidden; /* Скрываем элементы до анимации */
}

#top-slider .wow.animated {
    visibility: visible; /* Показываем после анимации */
}

.top-image-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1px;
    border-radius: 6px;
    background-color: white;
    aspect-ratio: 1;
}

.top-logo {
    object-fit: contain;

}

/*endregion*/

/*region Main text block*/
section#main-content h1 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    line-height: 60px; /* 150% */
    color: #333185;
}

section#main-content .text-main,
section#main-content .text-main p {
    color: var(--dark-text, #444445);
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; /* 166.667% */
}

b,
strong {
    color: #333185;;
}

/*endregion*/

/*region main content icon block*/
.icon-row {
    display: flex;
    gap: 20px;
    margin-top: 96px;
}

.icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 25%;
    padding: 50px;
    border-radius: 6px;
    background: rgba(153, 152, 204, 0.10);
}

.icon-wrap img {
    max-width: 120px;
    max-height: 120px;
    margin-bottom: 16px;
    object-fit: contain;
}

.icon-text-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-header {
    color: #333185;
    text-align: center;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 120% */
    text-align: center;
    white-space: nowrap;
}

.icon-text {
    color: #333185;
    text-align: center;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 122.222% */
    margin-top: auto;
    white-space: nowrap;
}

/*endregion*/

/*region section publication*/
section#publications {
    padding-bottom: 0;
}

#publications .wrapper-lightslider {
    padding: 0 20px;
}

#publications .lSSlideWrapper {
    overflow: visible;
}

#publications .lSSlideOuter .lSPager.lSpg > li {
    padding: 0 50px;
}

#publications .lSSlideOuter .lSPager.lSpg > li a {
    width: 101px;
    height: 3px;
    border-radius: 0;
    background: #9998CC;
}

#publications .lSSlideOuter .lSPager.lSpg > li:hover a,
#publications .lSSlideOuter .lSPager.lSpg > li.active a {
    background: #FA0;
}

#lightSlider-publications li {
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightSlider-publications li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    border: 1px solid #333185;
    border-radius: 6px;
    background: #FFF;
}

#lightSlider-publications li a img {
    max-width: 80%;
    max-height: 90%;
}

/*endregion*/

/*region section funding*/
section#funding h2 {
    color: #333185;
    font-family: Raleway;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px; /* 150% */
}


section#funding .text-funding,
section#funding .text-funding p {
    color: var(--dark-text, #444445);
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

/*endregion*/

/*region section recommendation and other funding*/
section#recommendation {
    font-family: Raleway;
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    line-height: 50px;
    min-height: 500px;
    transition: transform 0.3s ease-in-out;
    color: #FFF;
    background: linear-gradient(310deg, rgba(153, 152, 204, 0.00) 20.91%, #333185 76.41%), url("../img/auxilo-Forschungszulage.jpeg");
    background-attachment: fixed; /* Зафиксировать изображение */
    background-position: center;
    background-size: cover; /* Масштабировать изображение для заполнения блока */
}

section#recommendation:hover {
    /*transform: scale(1.1);*/
}


section#recommendation .recommendation-border {
    position: sticky;
    top: 200px;
    padding: 50px;
    border: 1px solid #FFF;
    background-color: rgba(51, 49, 133, 0.20);
}

section#recommendation h2 {
    color: var(--Spot-Orange, #FA0);
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

section#recommendation .header-orange-text {
    color: var(--Spot-Orange, #FA0);
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

section#recommendation .header-orange {
    color: #FA0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Raleway;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px; /* 130% */
}

section#recommendation .header-white {
    color: #FFF;
    font-family: Raleway;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
}

section#recommendation-no-background .recommendation-text,
section#recommendation-no-background .recommendation-text p {
    color: var(--dark-text-2, #444445);
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; /* 166.667% */
}

section#recommendation-no-background .col-4:has( > .icon-recommendation-wrap) {
    margin-top: 90px;
}

section#recommendation-no-background .icon-recommendation-wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 333px;
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    background: rgba(153, 152, 204, 0.10);
}

section#recommendation-no-background .icon-recommendation-img-wrap {
    display: flex;
    width: 100%;
    flex-basis: 150px;
    justify-content: center;
    align-items: center;
}

section#recommendation-no-background .icon-recommendation-img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

section#recommendation-no-background .icon-recommendation-text-wrap {
    display: flex;
    flex-direction: column;
}

section#recommendation-no-background .icon-recommendation-text-wrap .icon-recommendation-header {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #333185;
    text-align: center;
    font-family: Raleway;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px; /* 173.077% */
}

section#recommendation-no-background .icon-recommendation-text-wrap .icon-recommendation-text {
    color: #333185;
    text-align: center;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 122.222% */
}

.orange-text {
    font-family: Raleway;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 26px; /* 130% */
    color: var(--Spot-Orange, #FA0);
}

section#other-funding h2 {
    color: var(--auxilo-lila, #333185);
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 86.667% */
    margin-bottom: 40px;
}

#top-slider .orange-link,
section#other-funding .other-funding-card .other-funding-card-text-wrap a,
section#recommendation .orange-link {
    font-family: Raleway;
    font-size: 16px;
    font-weight: 900;
    font-style: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
    color: #FA0;
}

#top-slider .orange-link:hover .arrow,
section#other-funding .other-funding-card .other-funding-card-text-wrap a:hover .arrow-black,
section#recommendation .orange-link:hover .arrow {
    margin-right: 10px;
    margin-left: 10px;
    transition: 0.3s margin-right, 0.3s margin-left;
}

#top-slider .orange-link .arrow,
section#other-funding .other-funding-card .other-funding-card-text-wrap a .arrow-black,
section#recommendation .orange-link .arrow {
    position: relative;
    display: flex;
    width: 100%;
    height: 1px;
    margin-right: 20px;
    margin-left: 0;
    transition: 0.3s margin-right, 0.3s margin-left;
    background-color: #FFFFFF;
}

#top-slider .orange-link .arrow:after,
section#other-funding .other-funding-card .other-funding-card-text-wrap a .arrow-black:after,
section#recommendation .orange-link .arrow:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    width: 8px;
    height: 8px;
    content: '';
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid white;
    border-right: 1px solid white;
}

section#other-funding .other-funding-card {
    height: 100%;
    border: 1px solid #333185;
    border-radius: 6px;
    background: rgba(51, 49, 133, 0.00);
}

section#other-funding .other-funding-card .image-wrap {
    overflow: hidden;
    width: 100%;
}

section#other-funding .other-funding-card img {
    width: 100%;
    height: 270px;
    transition: transform 0.3s ease-in-out;
    border-radius: 6px 6px 0 0;
    object-fit: cover;
}

section#other-funding .other-funding-card:hover img {
    transform: scale(1.1);
}

section#other-funding .other-funding-card .other-funding-card-text-wrap {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 45px;
}

section#other-funding .other-funding-card .other-funding-card-text-wrap h2 {
    font-family: Raleway;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    color: #333185;
}

section#other-funding .other-funding-card .other-funding-card-text-wrap div {
    font-family: Raleway;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    line-height: 26px; /* 144.444% */
    margin-top: auto;
    margin-bottom: 30px;
    color: #333185;
}

section#other-funding .other-funding-card .other-funding-card-text-wrap div b {
    font-weight: 700;
}

section#other-funding .other-funding-card .other-funding-card-text-wrap a .arrow-black {
    background-color: #333185;
}

section#other-funding .other-funding-card .other-funding-card-text-wrap a .arrow-black:after {
    border-top: 1px solid #333185;
    border-right: 1px solid #333185;
}

/*endregion*/

/*region section logo clients*/
#clients-container {
    padding: 0 40px;
}

.logo-client-header {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 300;
    font-style: normal;
    line-height: 60px;
    color: #333185;
}

.logo-client {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 100px 0;
    padding: 0;
    list-style: none;
}

.logo-client li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    min-height: 270px;
    aspect-ratio: 1;
}

.logo-client li:nth-child(4n):not(:last-child):after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: -300%;
    width: 400%;
    content: '';
    border-bottom: 1px solid #333185;
}

.logo-client li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.logo-client li a img {
    width: 90%;
    -moz-transition: 0.3s -moz-filter linear;
    -moz-transition: 0.3s filter linear;
    -ms-transition: 0.3s -ms-filter linear;
    -o-transition: 0.3s -o-filter linear;
    -webkit-transition: 0.3s -webkit-filter linear;
    transition: 0.3s width, 0.3s filter linear, 0.3s -webkit-filter linear;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.logo-client li:hover a img {
    width: 100%;
    -moz-transition: 0.3s -moz-filter linear;
    -moz-transition: 0.3s filter linear;
    -ms-transition: 0.3s -ms-filter linear;
    -o-transition: 0.3s -o-filter linear;
    -webkit-transition: 0.3s -webkit-filter linear;
    transition: 0.3s width, 0.3s filter linear, 0.3s -webkit-filter linear;
    filter: none;
    -webkit-filter: none;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--auxilo-lila, #333185);
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.pagination-a {
    padding: 10px;
    color: var(--auxilo-lila, #333185);
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
}

.pagination-prev {
    display: flex;
    width: 15px;
    height: 28px;
    min-width: 15px;
    min-height: 28px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='28' viewBox='0 0 15 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5869 27.6084L1 14.0215L14.5869 0.434593' stroke='%23333185'/%3E%3C/svg%3E");
}

.pagination-next {
    display: flex;
    width: 15px;
    height: 28px;
    min-width: 15px;
    min-height: 28px;
    margin-left: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='28' viewBox='0 0 15 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.413109 0.434593L14 14.0215L0.413109 27.6084' stroke='%23333185'/%3E%3C/svg%3E");
}

.page-numbers {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--auxilo-lila, #333185);
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.page-numbers.current,
.page-numbers.current > .pagination-a {
    color: var(--Spot-Orange, #FA0);
}

.page-numbers:has( > .pagination-a) + .page-numbers:has( > .pagination-a)::before {
    content: '|';
    display: flex;
    align-items: center;
    color: var(--auxilo-lila, #333185);
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    text-decoration: none;
}

/*endregion*/

/*region section client quotes*/
section#quotes {
    padding: 80px 0;
    background: linear-gradient(258deg, rgba(153, 152, 204, 0.10) 19.75%, rgba(51, 49, 133, 0.10) 94.11%);
}

section#quotes h3 {
    color: #333185;
    font-family: Raleway;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px; /* 150% */
    margin-bottom: 50px;
}

.quotes-wrapper-lightslider {
    padding: 0 20px;
}

#quotes .lSSlideOuter .lSPager.lSpg > li {
    padding: 0 50px;
}

#quotes .lSSlideOuter .lSPager.lSpg > li a {
    width: 101px;
    height: 3px;
    border-radius: 0;
    background: #9998CC;
}

#quotes .lSSlideOuter .lSPager.lSpg > li:hover a,
#quotes .lSSlideOuter .lSPager.lSpg > li.active a {
    background: #FA0;
}

.quotes-clients-card {
    z-index: 100;
    display: flex;
    flex-direction: row;
    height: 400px;
    border: 2px solid rgba(51, 49, 133);
    border-radius: 15px;
}

.quote-client-photo img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    border-radius: 14px 0 0 14px;
    object-fit: cover;
}

.quote-client-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.quote-client-content > img {
    width: 220px;
    height: 80px;
    object-fit: contain;
    object-position: left;
    margin-right: auto;
}

.quote-client-name {
    font-family: Raleway;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    line-height: 26px; /* 144.444% */
    margin-top: 25px;
    color: #7F7F80;
}

.quote-client-position {
    font-family: Raleway;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    line-height: 26px; /* 144.444% */
    color: #7F7F80;
}

.quote-client {
    font-family: Raleway;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 18px;
    color: #7F7F80;
    margin-top: auto;
}

/*endregion*/

/*region Bootstrap5 custom indicators*/
/* Скрываем стандартные индикаторы */
.carousel-indicators {
    display: none;
}

/* Стили для кастомных индикаторов */
.custom-indicators-container {
    position: absolute;
    z-index: 15;
    right: 0;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.custom-indicators {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 15px;
}

.custom-indicator {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    cursor: pointer;
}

.progress-bar-container {
    overflow: hidden;
    width: 90px;
    height: 2px;
    margin-bottom: 5px;
    background-color: #333185;
}

.progress-bar {
    width: 0;
    height: 100%;
    transition: width linear;
    background-color: var(--Spot-Orange, #FA0);
}

.custom-indicator.active .progress-bar {
    width: 100%;
    transition-duration: var(--slide-interval);
}

.indicator-label {
    font-family: Raleway;
    font-size: 8px;
    font-weight: 700;
    font-style: normal;
    color: #333185;
}

.custom-indicator.active .indicator-label {
    color: #FA0;
}

/*endregion*/

@media all and (max-width: 1399.9px) {
    .icon-wrap {
        margin: 50px 0;
        padding: 50px 10px;
    }

    #top-slider section {
        padding-top: 150px;
    }

    #top-slider .slider-title {
        font-size: 40px;
    }
}

@media all and (max-width: 1199.9px) {
    .icon-wrap {
        margin: 0;
    }

    .icon-text-wrap {
        width: 100%;
    }

    .icon-header {
        font-size: 30px;
    }

    .icon-text {
        font-size: 15px;
    }

    #publications .lSSlideOuter .lSPager.lSpg > li {
        padding: 0 20px;
    }

    #publications .lSSlideOuter .lSPager.lSpg > li a {
        width: 50px;
    }
}

@media all and (max-width: 991.98px) {
    .icon-wrap {
        margin: 20px 10px;
    }

    section#other-funding .other-funding-card .other-funding-card-text-wrap {
        min-height: 225px;
        padding: 30px;
    }

    section#other-funding .other-funding-card .other-funding-card-text-wrap h2 {
        font-size: 20px;
    }

    section#other-funding .other-funding-card .other-funding-card-text-wrap div {
        font-size: 16px;
    }

    section#recommendation .funding-text-wrap {
        padding: 50px 0 50px 0;
    }

    section#recommendation .funding-text {
        padding-right: 0;
    }
}

@media all and (min-width: 768px) and (max-width: 991.98px) {
    #top-slider section {
        padding-top: 190px;
    }

    #top-slider .slider-title {
        font-size: 35px;
        line-height: 50px;
    }

    section#recommendation h2 {
        font-size: 30px;
        line-height: 45px;
    }

    section#recommendation .recommendation-border {
        padding: 50px 20px;
    }

    section#recommendation .funding-text,
    section#recommendation .funding-text p {
        font-size: 28px;
        line-height: 30px;
    }

    .icon-row {
        flex-wrap: wrap;
    }

    .icon-wrap {
        width: auto;
        flex-basis: 45%;
        flex-grow: 1;
    }

    section#recommendation-no-background .icon-recommendation-text-wrap .icon-recommendation-header {
        font-size: 24px;
        line-height: normal;
    }

    section#recommendation-no-background .icon-recommendation-text-wrap .icon-recommendation-text {
        font-size: 16px;
        line-height: normal;
    }

    section#other-funding .other-funding-card {
        display: flex;
        flex-direction: column;
    }

    section#other-funding .other-funding-card .other-funding-card-text-wrap {
        display: flex;
        flex-grow: 1;
        padding: 15px;
    }

    section#other-funding .other-funding-card .other-funding-card-text-wrap h2 {
        font-size: 18px;
    }

    #clients-container {
        padding: 0;
    }

    .logo-client li {
        min-height: auto;
        flex-grow: 1;
    }

    #quotes .lSSlideOuter .lSPager.lSpg > li {
        padding: 0 10px;
    }

    #quotes .lSSlideOuter .lSPager.lSpg > li a {
        width: 60px;
    }
}

@media all and (max-width: 767.9px) {
    #top-slider section,
    #top-slider .post-slide__bg,
    #top-slider .post-slide__overlay {
        height: 100dvh;
    }

    #top-slider .post-slide__bg {
        background-position: top center !important;
    }

    #top-slider .post-slide__content {
        margin-bottom: 0;
    }

    #top-slider .custom-indicators-container {
        bottom: 45px;
    }

    #top-slider .custom-indicators {
        gap: 15px;
    }

    #top-slider .progress-bar-container {
        width: 70px;
        min-width: 50px;
        height: 2px;
        background-color: white;
    }

    #top-slider .indicator-label {
        font-family: Raleway;
        font-size: 8px;
        font-weight: 700;
        font-style: normal;
        color: white;
    }

    #top-slider .top-image-logo {
        position: relative;
        left: 6%;
        max-width: 70px;
        margin-bottom: 35px;
    }

    #top-slider .top-logo {

    }

    #top-slider .orange-text {
        font-size: 16px;
        line-height: normal;
    }

    #top-slider .slider-title {
        color: #FFF;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        font-family: Raleway;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px; /* 120% */
    }

    #top-slider a.orange-link {
        margin: 30px 0;
        max-width: 100%;
    }

    .icon-wrap {
        flex-direction: row;
        width: 100vw;
        margin: 0;
    }

    .icon-wrap img {
        margin-left: auto;
        margin-right: 10px;
    }

    .icon-text-wrap {
        width: auto;
        margin-right: auto;
    }

    #main-content .carousel-indicators,
    #recommendation-no-background .carousel-indicators {
        display: flex;
    }

    #main-content .carousel-indicators [data-bs-target],
    #recommendation-no-background .carousel-indicators [data-bs-target] {
        width: 50px;
        background-color: #333185;
        margin-left: 14px;
        margin-right: 14px;
        opacity: 1;
    }

    #main-content .carousel-indicators .active,
    #recommendation-no-background .carousel-indicators .active {
        background-color: #FFAA00;
        opacity: 1;
    }

    #publications .lSSlideOuter .lSPager.lSpg > li {
        padding: 0 14px;
    }

    #publications .lSSlideOuter .lSPager.lSpg > li a {
        width: 50px;
        height: 2px;
    }

    section#main-content h1,
    section#funding h2,
    .logo-client-header {
        color: #333185;
        font-family: Raleway;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 46px; /* 153.333% */
    }

    section#main-content .text-main,
    section#funding .text-funding {
        margin: 0;
    }

    section#recommendation {
        display: flex;
        align-items: center;
        min-width: 400px;
    }

    section#recommendation .header-orange-text {
        color: var(--Spot-Orange, #FA0);
        font-family: Raleway;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    section#recommendation .header-orange {
        color: #FA0;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        font-family: Raleway;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px; /* 120% */
    }

    section#recommendation .header-white {
        color: #FFF;
        font-family: Raleway;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px;
    }

    section#other-funding h2 {
        margin-bottom: 15px;
        color: var(--auxilo-lila, #333185);
        font-family: Raleway;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px; /* 130% */
    }

    #OtherFundingCustomCarousel {
        margin-bottom: 50px;
    }

    #OtherFundingCustomCarousel .custom-indicators-container {
        bottom: -90px;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    #OtherFundingCustomCarousel .custom-indicators {
        justify-content: space-between;
        width: 100%;
    }

    #OtherFundingCustomCarousel .progress-bar-container {
        width: 90px;
        height: 2px;
    }

    #OtherFundingCustomCarousel .indicator-label {
        font-family: Raleway;
        font-size: 8px;
        font-weight: 700;
        font-style: normal;
        color: #333185;
    }

}

@media all and (max-width: 575.9px) {
    main section {
        padding: 50px 0;
    }

    #top-slider section {
        display: flex;
        padding-bottom: 90px;
    }

    #top-slider .post-slide__bg {
        background-position: top center !important;
    }

    #top-slider .post-slide__overlay {
        background: linear-gradient(291deg, rgba(153, 152, 204, 0.00) 15.77%, #333185 73.63%);
    }

    #top-slider .post-slide__content {
        margin-bottom: 0;
    }

    #top-slider a.orange-link {
        max-width: 75%;
    }

    #top-slider .orange-link,
    section#other-funding .other-funding-card .other-funding-card-text-wrap a,
    section#recommendation .orange-link {
        font-size: 12px;
        font-weight: 700;
        line-height: 10px; /* 83.333% */
    }

    .icon-row {
        margin-top: 30px;
    }

    #clients-container {
        padding: 0;
    }

    .logo-client {
        border: none
    }

    .logo-client li {
        width: 50%;
        min-height: 150px;
        margin: 0;
    }

    .logo-client li a {
        padding: 10px;
    }

    .logo-client li:nth-child(2n):not(:last-child):after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: -100%;
        width: 200%;
        content: '';
        border-bottom: 1px solid #333185;
    }

    .quotes-clients-card {
        flex-direction: column;
        height: 100%;
    }

    .quote-client-photo img {
        height: 300px;
        border-radius: 14px 14px 0 0;
    }

    .quote-client-name {
        font-size: 16px;
        line-height: 20px; /* 125% */
    }

    .quote-client-position {
        font-size: 16px;
        font-weight: 600;
        line-height: 20px; /* 125% */
    }

    .quote-client {
        margin-top: 10px;
        font-size: 10px;
        line-height: 14px;
    }

    .lSSlideOuter .lSPager.lSpg > li {
        padding: 0 10px !important;
    }

    .lSPager.lSpg > li a {
        width: 20px !important;
        height: 3px !important;
    }
}