/* General styles */
@media (min-width: 1200px) {
    /* body>div.main>div:nth-child(2)>div.top-banner { min-height: 64.125em; } */
}
.top-banner__bg {

    padding: 0 20px;
}
.main__container {
    width: 100%;
    max-width: 70.75em;
    /* ~1132px */
    margin-right: auto;
    margin-left: auto;
    padding-right: .9375em;
    /* ~15px */
    padding-left: .9375em;
    /* ~15px */
}

.swiper-pagination-container {
    display: flex;
    width: 70%;
    align-items: center;
    flex-direction: row-reverse;
}

.swiper-pagination {
    position: relative;
    width: 100%;
}

.about-us-offers__first p,
.about-us-offers__last p,
.info-liforg,
body>div.main>div.content.main__body>div.main__container>div.about-us__bottom>div.text.text--size-s>p {
    text-align: justify;
}

    .top-banner {
        padding: 0px;
        display: flex;
        justify-content: flex-start;
    }

    .info-liforg {
        font-family: Inter;
        font-weight: 400;
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 0%;
        text-align: justify;

    }

    .top-banner__logo {
        width: auto;
        position: relative;
        margin: 4em;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

.text-highlight {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
}

.text-highlight--primary-color {
    color: #FFB800;
}

.top-banner__breadcrumbs {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 20px;
    z-index: 1;
    position: absolute;
    top: 2em;
    left: 28em;
    /* Match logo left position */
}

.top-banner__breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
}

/* About Us Section */
.about-us__bottom>.text.text--size-s>h2 {
    font-size: 50px;
}

/* Team Section */
.team-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-title {
    max-width: 13em;
    font-size: 50px;
    font-weight: normal;
    color: #000;
    margin-bottom: 60px;
    text-align: left;
    /* margin-top: 3.5em;
    margin-bottom: 2em; */
}

.team-members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.team-member-card {
    flex: 0 0 auto;
    width: calc((100% - 5 * 30px) / 6);
    /* For 6 columns with 5 gaps */
    min-width: 150px;
    /* Ensure a minimum size */
    text-align: center;
}

.team-member-image-placeholder {
    width: 100%;
    padding-bottom: 100%;
    /* Creates a square aspect ratio */
    background-color: #D9D9D9;
    margin-bottom: 15px;
    background-size: cover;
    /* Ensure image covers the placeholder */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
}

.team-member-name {
    margin-bottom: 5px;
    color: #000000;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.team-member-role {
    color: #000000;
    margin-bottom: 0;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Roadmap Timeline Section */
.roadmap-timeline {
    max-width: 1210px;
    margin: 50px auto;
    padding: 0 20px;
    position: relative;
}

.timeline-line,
.timeline-line-active {
    position: absolute;
    left: 11.25%;
    /* Responsive position for the line */
    width: 4px;
    border-radius: 6px;
    z-index: 0;
}

.timeline-line {
    top: 0;
    bottom: 0;
    background-color: #C0C0C0;
}

.timeline-line-active {
    top: 0;
    /* JS will set this dynamically */
    height: 0;
    /* JS will set this dynamically */
    background-color: #146EB4;
    box-shadow: 0px 0px 4px 1px #146EB480;
    transition: top 0.5s ease, height 0.5s ease;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    padding-left: calc(10% + 50px);
    /* Adjust content offset from the line */
    min-height: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: #146EB4;
    border-radius: 50%;
    position: absolute;
    left: calc(10% - 8px);
    /* Aligned with the line (10% - half dot width) */
    transform: translateY(-50%);
    /* Vertically center dot on its line */
        top: calc(50% - 8px);
    /* Adjust top for initial alignment, JS will handle active line positioning */
    z-index: 2;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 1px 4px 1px #146EB480;
}

.timeline-item-content {
    flex-grow: 1;
    padding: 1em 8em 1em 5em;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    background: url("/upload/map_back.png");
    background-size: cover;
    background-position: center;
    width: 100%;
}

.timeline-text {
    margin-right: 20px;
}

.timeline-title {
    margin-bottom: 1em;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #ffffff;
}

.timeline-description-ul {
    list-style: disc;
    margin-left: 17px;
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 2em;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.timeline-date {
    font-family: Inter;
    font-weight: 900;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    min-width: 60px;
    text-align: right;
}

.timeline-item.highlighted-map .timeline-item-content {
    background: url("/upload/map_back_active.png");
    background-size: cover;
    background-position: center;
    width: 100%;
}

.timeline-item.highlighted-map .timeline-dot {
    /* background-color: #FFB800;
    box-shadow: 0px 1px 4px 1px #FFB80080;
    border: 1px solid #FFB800; */
}


/* Achievement Slider Styles */
.achievements-section {
    position: relative;
    width: 100%;
    /* Полная ширина, как запрошено */
    margin: 60px auto;
}

.achievements-bg {
    background: url("/upload/backgraund_achivments.png");
    background-color: #146EB4;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    /* Adjusted padding */
    color: white;
    position: relative;
    overflow: hidden;

}

.achievements-container {
    max-width: 1110px;
    /* Keep content contained for larger screens */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievements-title {
    font-family: Inter;
    font-weight: 400;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    max-width: 15em;
    z-index: 1;
    margin-bottom: 40px;
    /* Added spacing */
}

.achievements-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
    /* display: flex; REMOVED - Let Swiper handle this on swiper-wrapper */
    /* align-items: flex-end; REMOVED */
    padding-top: 60px;
    /* Space for the slider content */
}

/* 
   Swiper автоматически устанавливает width и transform на .swiper-slide.
   Мы НЕ ДОЛЖНЫ переопределять эти свойства здесь.
   Убедитесь, что нет других CSS-правил, которые принудительно задают ширину .swiper-slide
   или изменяют его flex-поведение (display, flex-shrink, flex-grow).
*/
.swiper-slide {
    /* Эти свойства (padding, box-sizing) БЕЗОПАСНЫ, т.к. не конфликтуют с шириной/позицией Swiper. */
    padding: 0;
    box-sizing: border-box;
    /* Если у вас где-то еще были display: flex или align-items/justify-content на swiper-slide,
       удалите их или перенесите на achievement-slide-content-wrapper! */
}

/* Новый внутренний обертка для управления компоновкой контента внутри слайда */
.achievement-slide-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* Занимает всю ширину ВНУТРИ слайда */
    height: 100%;
    /* Занимает всю высоту ВНУТРИ слайда */
    /* Важно: эти свойства применяются к ВНУТРЕННЕМУ элементу, а не к самому слайду. */
}

.achievement-text-content {
    flex: 0 0 65%;
    padding-right: 40px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: justify;
    color: #FFFFFF;
}

.achievement-description {
    margin: 0;
}

.achievement-additional-text {
    margin-top: 15px;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: justify;
    color: rgba(255, 255, 255, 0.8);
}

.achievement-date-display {
    text-align: left;
    font-family: Inter;
    font-weight: 900;
    line-height: 3em;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFFFFF;
    min-width: 60px;
}

.achievement-date-month {
    display: block;
    font-weight: 400;
    font-size: 50px;
    line-height: 100%;
    text-transform: uppercase;
}

.achievement-date-year {
    display: block;
    font-family: Inter;
    font-weight: 900;
    font-size: 50px;
    line-height: 100%;
    text-transform: uppercase;
}

/* Swiper Navigation (Arrows) and Pagination Footer Wrapper */
.achievements-footer-elements {
    position: relative;
    width: 100%;
    margin-top: 40px;
    /* Space between slider and footer elements */
    padding-bottom: 20px;
    /* Space from bottom of section */
    display: flex;
    /* Use flexbox to align buttons and pagination */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    align-items: center;
    /* justify-content: space-between; */
    /* Space out buttons and pagination */
}

.swiper-button-prev,
.swiper-button-next {
    position: relative;
    width: 33.33px;
    height: 33.33px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    /* Removed float and absolute positioning */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: white;
}

.swiper-button-prev::after {
    content: "\f053";
    /* fa-chevron-left */
}

.swiper-button-next::after {
    content: "\f054";
    /* fa-chevron-right */
}

/* Adjusted button margins for desktop layout */
.swiper-button-prev {
    margin-right: 30px;
}

.swiper-button-next {
    margin-right: 0;
}

/* No margin on the last button */


.achievements-timeline-line {
    position: relative;
    width: 100%;
    height: 5px;
    border-radius: 2px;
    margin-top: 20px;
    z-index: 1;
    opacity: 0.8;
}

.achievements-timeline-progress {
    /* position: absolute;
    left: 0;
    width: 0%;
    top: 0;
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
    z-index: 3; */
}

.achievements-timeline-dots {
    position: absolute;
    width: 100%;
    height: 25px;
    top: 13.5px;
    left: 0;
    padding: 0 40px;
    box-sizing: border-box;
    pointer-events: none;
}

.timeline-month-tick {
    width: 1px;
    height: 10px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.timeline-month-tick.new-year {
    height: 20px;
    top: 17px;
}

.timeline-achievement-dot {
    width: 1px;
    height: 10px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
    pointer-events: all;
}

.timeline-achievement-dot.active {
    width: 3px;
    height: 14px;
}

.achievements-pagination {
    height: 5em;
}

.timeline-achievement-dot.inactive {
    cursor: not-allowed;
}

.achievements-timeline-years {
    position: absolute;
    width: 100%;
    top: 40px;
    left: 0;
    padding: 0 40px;
    box-sizing: border-box;
    pointer-events: none;
}

.timeline-year-label {
    position: absolute;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
}

.timeline-year-label.active-year {
    color: #FFFFFF;
    font-weight: 700;
}

.timeline-year-label.inactive-year {
    opacity: 1;
}

.achievements-footer-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    color: #FFFFFF;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 0 20px;
    clear: both;
    /* Ensure it's below buttons and pagination */
}

    .top-banner {
        min-height: 31.125em;
    }
/* --- Media Queries --- */
@media (max-width: 1200px) {
    .main__container {
        max-width: 960px;
    }

    .top-banner__logo {
        margin-left: 20em;
    }

    .top-banner__breadcrumbs {
        left: 20em;
    }

    .achievements-container {
        max-width: 900px;
    }

    .achievements-pagination {
        max-width: 860px;
    }
}

@media (max-width: 992px) {
    .main__container {
        max-width: 720px;
    }

    .top-banner {
        min-height: 500px;
    }

    .top-banner__logo {
        margin-left: 10em;
        font-size: 0.9em;
        /* Scale font size down */
    }

    .top-banner__breadcrumbs {
        left: 10em;
    }

    .team-member-card {
        width: calc((100% - 3 * 30px) / 4);
        /* 4 columns */
    }

    .achievements-title {
        font-size: 40px;
    }

    .achievement-date-month,
    .achievement-date-year {
        font-size: 40px;
    }

    .achievements-container {
        max-width: 600px;
    }

    .achievements-pagination {
        max-width: 560px;
    }
}

@media (max-width: 768px) {

    .timeline-line-active,
    .timeline-dot {
        display: none !important;
    }

    /* Top Banner */
    .top-banner {
              min-height: 200px;

        padding: 1em;
    }

    .top-banner__logo {
        display: none;
        /* Hide logo/description block on mobile */
    }

    .top-banner__breadcrumbs {
        left: 1em !important;
        top: 1em;
    }

    /* About Us */
    .about-us>.text.text--size-s {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .about-us>.text.text--size-s p {
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;
    }

    /* Team Section */
    .team-member-card {
        width: calc((100% - 1 * 30px) / 2);
        /* 2 columns */
    }

    /* Roadmap Timeline */
    .roadmap-timeline {
        max-width: 100%;
        padding: 0 15px;
    }

    .timeline-line,
    .timeline-line-active {
        display: none;
        /* Hide lines on mobile */
    }

    .timeline-item {
        padding-left: 0;
        /* Remove left padding */
        display: flex;
        /* Keep flex to center content, but direction column */
        flex-direction: column;
        align-items: center;
        /* Center content */
        margin-bottom: 20px;
        text-align: center;
        /* Center text within item */
    }

    .timeline-dot {
        position: static;
        /* Remove absolute positioning */
        margin: 0 auto 15px;
        /* Center dot and add margin below it */
        transform: none;
        /* Remove transform */
    }

    .timeline-item-content {
        padding: 1em;
        /* Reduce padding */
        flex-direction: column;
        /* Stack content within the item */
        align-items: unset;
        /* Center content horizontally */
    }

    .timeline-text {
        margin-right: 0;
        margin-bottom: 15px;
        /* Add space between text and date */
        text-align: center;
        /* Ensure text is centered */
    }

    .timeline-description-ul {
        text-align: left;
        /* Keep list items left-aligned within their container */
    }

    .timeline-title {
        text-align: center;
    }

    .timeline-date {
        text-align: center;
        /* Center date */
    }

    /* Achievements Slider */
    .achievements-bg {
        padding: 50px 0;
    }

    .achievements-title {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: left;
        /* Align title left */
    }

    .achievements-container {
        min-height: auto;
        padding-top: 0;
        width: 100%;
        /* Full width, как запрошено */
        max-width: none;
        /* Убираем max-width */
        padding: 0 15px;
        /* Adjust padding for mobile */
    }

    .achievements-slider {
        padding-top: 0;
        padding-bottom: 30px;
        /* Adjust spacing to buttons */
        /* Удаляем display: flex; align-items: flex-start; отсюда, они были на самом swiper-slider,
           и это могло конфликтовать. Swiper-wrapper уже flex. */
    }

    /* 
       Важно: это влияет на *внутреннюю* обертку для стекирования контента.
       Swiper-slide остается под контролем Swiper.
    */
    .achievement-slide-content-wrapper {
        flex-direction: column-reverse;
        /* Stack elements, date first then text */
        align-items: flex-start;
        /* Align all content to the left */
        width: 100%;
        /* Убедитесь, что занимает всю ширину внутри слайда */
    }

    .achievement-text-content {
        flex: none;
        /* Отменяем flex-basis с десктопа */
        width: 100%;
        /* Занимает всю ширину */
        padding-right: 0;
        margin-bottom: 30px;
        font-size: 15px;
        text-align: left;
        /* Align text left */
    }

    .achievement-description,
    .achievement-additional-text {
        text-align: left;
        /* Ensure text is left-aligned */
    }

    .achievement-date-display {
        flex: none;
        width: 100%;
        text-align: left;
        /* Align date left */
    }

    .achievement-date-month {
        font-size: 28px;
    }

    .achievement-date-year {
        font-size: 48px;
    }

    .achievements-footer-elements {
        margin-top: 0;
        padding-bottom: 0;
        height: 33.333332061767706px;
    }

    .swiper-pagination-container {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .swiper-button-prev,
    .swiper-button-next {
        /* margin: 0 10px 20px; */
        /* Space between buttons, and margin below them */
    }

    .swiper-button-prev {
        margin-right: 0px;
    }

    .swiper-button-next {
        margin-left: 10px;
    }

    /* Скрыть timeline пагинацию на мобильных, как запрошено */
    .achievements-pagination {
        /* display: none; */
    }

    .achievements-footer-text {
        font-size: 13px;
        line-height: 20px;
        margin-top: 40px;
        text-align: center;
        width: 100%;
        /* Take full width */
        max-width: none;
        /* Remove max-width */
        padding: 0 15px;
        /* Add padding for content */
    }
}

@media (max-width: 480px) {

    /* Top Banner */
    .top-banner {
        min-height: 100px;
    }

    .top-banner__breadcrumbs {
        left: 0.5em !important;
        top: 0.5em;
    }

    /* Team Section */
    .team-member-card {
        width: 100%;
        /* 1 column on very small screens */
    }

    /* Achievements Slider */
    .achievements-bg {
        padding: 30px 0;
    }

    .achievements-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .achievement-description {
        font-size: 14px;
        line-height: 22px;
    }

    .achievement-additional-text {
        font-size: 13px;
        line-height: 20px;
    }

    .achievement-date-month {
        font-size: 24px;
    }

    .achievement-date-year {
        font-size: 40px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .achievements-footer-text {
        font-size: 12px;
        line-height: 18px;
        margin-top: 30px;
    }
}




















































































/* General styles - mostly untouched from your original */
@media (min-width: 1200px) {
    /* body>div.main>div:nth-child(2)>div.top-banner {
            min-height: 64.125em;
        } */
}

.main__container {
    width: 100%;
    max-width: 70.75em;
    margin-right: auto;
    margin-left: auto;
    padding-right: .9375em;
    padding-left: .9375em;
}

.about-us-offers__first p {
    text-align: justify;
}

.about-us-offers__last p {
    text-align: justify;
}

.top-banner {
    padding: 0px;
    display: flex;
    justify-content: flex-start;
}

.info-liforg {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: justify;

}

.top-banner__logo {
    width: auto;
    position: relative;
    margin: 4em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.achievements-title-main {
    margin: 0 8em;
    /* Adjusted margin to match container's padding, potentially */
}

.team-member-role {
    color: #000000;
    margin-bottom: 0;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

body>div.main>div.content.main__body>div.main__container>div.about-us__bottom>div.text.text--size-s>p {
    text-align: justify;
}

body>div.main>div.content.main__body>div.main__container>div.about-us__bottom>div.text.text--size-s>h2 {
    font-size: 50px;
}

/* --- Секция "Дорожная Карта" (верхний блок с фоном) --- */
.roadmap-hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('https://via.placeholder.com/1920x600/34495e/ffffff?text=Background+Image');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.roadmap-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background: url("/upload/road_map_banner.png");
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1110px;
    padding: 0 20px;
    text-align: start;
}

.hero-content h1 {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: Inter;
    font-weight: 900;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero-content p {
    margin-bottom: 50px;
    text-align: left;
    font-family: Inter;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 77%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.scroll-down i {
    margin-left: 10px;
    font-size: 14px;
}






.about-us-description_a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {


    .timeline-line {
        bottom: 12em;
        /* This might need to be dynamic or removed for mobile if not visible */
    }

    .timeline-item-content {
        padding: 1em 1em 1em 1em;
    }

    .about-us>.text.text--size-s {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .about-us>.text.text--size-s p {
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;
    }


}

.top-banner__logo h1 {
    color: #FFFFFF;
    font-weight: 900;
    font-size: 3.125em;
    font-family: Inter;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.top-banner__description {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    letter-spacing: 0em;
    font-family: Inter;
    font-weight: 400;
    font-size: 1.563em;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.text-highlight {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
}

.text-highlight--primary-color {
    color: #FFB800;
}

@media (max-width: 768px) {
    .top-banner__logo h1 {
        font-size: 2.5rem;
    }

    .top-banner__logo {
        display: none;
    }

    .top-banner__breadcrumbs {
        left: 1em !important;
        top: 1em;
    }

    .top-banner__description {
        font-size: 1.1rem;
    }
}

.top-banner__breadcrumbs {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 20px;
    z-index: 1;
    position: absolute;
    top: 2em;
    left: 28em;
}

.top-banner__breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
}

/* --- New Achievement Slider Styles --- */
.achievements-section {
    position: relative;
    width: 100%;
    margin: 60px auto;
}

.achievements-bg {
    background: url("/upload/backgraund_achivments.png");
    background-color: #146EB4;
    background-size: cover;
    background-position: center;
    padding: 80px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.achievements-container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievements-title {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    max-width: 15em;
    z-index: 1;
}

.achievements-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 80px;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.achievement-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.achievement-text-content {
    flex: 0 0 65%;
    padding-right: 40px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: justify;
    color: #FFFFFF;
}

.achievement-description {
    margin: 0;
}

/* New style for per-slide additional text */
.achievement-additional-text {
    margin-top: 15px;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: justify;
    color: rgba(255, 255, 255, 0.8);
}

.achievement-date-display {
    text-align: left;
    font-family: Inter;
    font-weight: 900;
    line-height: 3em;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.achievement-date-month {
    display: block;
    font-weight: 400;
    font-style: Regular;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.achievement-date-year {
    display: block;
    font-family: Inter;
    font-weight: 900;
    font-style: Black;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

/* Swiper Navigation (Arrows) */
.swiper-button-prev,
.swiper-button-next {
    /* position: absolute; */
    /* top: auto; */
    /* bottom: 60px; */
    width: 33.333332061767706px;
    height: 33.333332061767706px;
    /* background-color: rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: white;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    background: transparent;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.swiper-button-prev {
    /* left: calc(0%);
    right: auto; */
}

.swiper-button-next {
    /* left: calc(0% + 90px); */
    /* right: auto; */
}

/* Custom arrow icons */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: white;
}

.swiper-button-prev::after {
    content: "\f053";
    /* fa-chevron-left */
}

.swiper-button-next::after {
    content: "\f054";
    /* fa-chevron-right */
}


/* The main timeline line */
.achievements-timeline-line {
    position: relative;
    width: 100%;
    height: 5px;

    border-radius: 2px;
    margin-top: 20px;
    z-index: 1;
    /* Replaced SVG with CSS-driven ticks for simplicity and dynamism */
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 8.33%, transparent 8.33%, transparent 100%); */
    background-size: 8.33% 100%;
    opacity: 0.8;
}

/* The active progress line */
.achievements-timeline-progress {
    position: absolute;
    left: 0;
    width: 0%;
    /* Will be controlled by JS */
    top: 0;
    height: 100%;
    /* background-color: #FFB800; */
    border-radius: 2px;
    transition: width 0.3s ease;
    z-index: 3;
}


/* Individual dot styling */
.timeline-dot-custom {
    width: 1px;
    height: 10px;
    background-color: #FFFFFF;
    /* border-radius: 50%; */
    position: absolute;
    /* Positioned dynamically by JS */
    cursor: pointer;
    /* box-shadow: 0px 0px 4px 1px rgba(20, 110, 180, 0.5); */
    /* border: 1px solid #146EB4; */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.timeline-dot-custom.active {
    /* background-color: #FFB800; */
    /* box-shadow: 0px 0px 4px 1px rgba(255, 184, 0, 0.5); */
    /* border: 1px solid #FFB800; */
    height: 20px;
    margin-top: 5px;
    width: 3px;
}

/* Container for year labels */
.achievements-timeline-years {
    position: absolute;
    width: 100%;
    top: 35px;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 4;
    padding: 0 40px;
    box-sizing: border-box;
}

.timeline-year-label {
    position: absolute;
    /* Positioned dynamically by JS */
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(-50%);
    transition: color 0.3s ease, font-weight 0.3s ease;
    white-space: nowrap;
}

.timeline-year-label.active-year {
    color: #FFFFFF;
    font-weight: 700;
}

.achievements-footer-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    color: #FFFFFF;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 0 20px;
}


/* --- Media Queries for Achievements Slider --- */
@media (max-width: 992px) {
    .achievements-title {
        font-size: 40px;
    }

    .achievement-date-month {
        font-size: 30px;
    }

    .achievement-date-year {
        font-size: 50px;
    }

    .swiper-button-prev {
        /* left: calc(50% - 40px); */
        left: 0px;
    }

    .swiper-button-next {
        /* right: calc(50% - 40px); */
        left: 10px;
    }
}

@media (max-width: 1200px) {
    .achievements-container {
        max-width: 600px;
    }


}

@media (max-width: 768px) {
    .achievements-bg {
        padding: 50px 0 70px;
    }

    .achievements-title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: left;
        position: static;

        padding-top: 0;
    }

    .achievements-container {
        min-height: auto;
        padding-top: 0;
        max-width: 400px;
    }

    .achievements-slider {
        display: flex;
        flex-direction: column-reverse;
        align-items: start;
        padding-top: 0;
        padding-bottom: 10px;



    }

    .achievement-slide {
        display: flex;
        flex-direction: column-reverse;
        align-items: start;
    }

    .achievement-text-content {
        flex: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        font-size: 15px;
        text-align: left;
    }

    .achievement-description {
        text-align: left;
    }

    .achievement-additional-text {
        text-align: left;
    }

    .achievement-date-display {
        flex: none;
        width: 100%;
        text-align: left;
    }

    .achievement-date-month {
        font-size: 28px;
    }

    .achievement-date-year {
        font-size: 48px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        /* bottom: 40px;
        width: 35px;
        height: 35px; */
    }

    .swiper-button-prev {
        /* left: calc(50% - 40px); */
        /* left: 0px; */
    }

    .swiper-button-next {
        /* right: calc(50% - 40px); */
        /* left: 50px; */
    }



    .achievements-timeline-line {
        margin-top: 15px;
        height: 3px;
    }

    .achievements-timeline-line::before {
        background-size: 8px 100%;
    }

    .achievements-timeline-progress {
        height: 3px;
    }



    .timeline-dot-custom {
        width: 10px;
        height: 10px;
    }

    .achievements-timeline-years {
        top: calc(15px + 3px + 8px);
        font-size: 12px;
        padding: 0 20px;
    }

    .achievements-footer-text {
        font-size: 13px;
        line-height: 20px;
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .achievements-bg {
        padding: 30px 0 50px;
    }

    .achievements-container {
        min-height: auto;
        padding-top: 0;
        max-width: 300px;
    }

    .achievements-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .achievement-description {
        font-size: 14px;
        line-height: 22px;
    }

    .achievement-additional-text {
        font-size: 13px;
        line-height: 20px;
    }

    .achievement-date-month {
        font-size: 24px;
    }

    .achievement-date-year {
        font-size: 40px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        /* bottom: 30px;
        width: 30px;
        height: 30px; */
    }

    .swiper-button-prev {
        /* left: calc(50% - 40px); */
        /* left: 0px; */
    }

    .swiper-button-next {
        /* right: calc(50% - 40px); */
        /* left: 50px; */
    }



    .achievements-timeline-line {
        margin-top: 10px;
        height: 2px;
    }

    .achievements-timeline-line::before {
        background-size: 7px 100%;
    }

    .achievements-timeline-progress {
        height: 2px;
    }



    .timeline-dot-custom {
        width: 8px;
        height: 8px;
    }

    .achievements-timeline-years {
        top: calc(10px + 2px + 5px);
        font-size: 10px;
    }

    .achievements-footer-text {
        font-size: 12px;
        line-height: 18px;
        margin-top: 30px;
    }
}