﻿@font-face {
    font-family: 'Ubuntu';
    src: url('../assets/fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../assets/fonts/Ubuntu-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../assets/fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text: #212121;
    --color-primary: #003971;
    --color-primary-light: #00A1E4;
    --color-secondary: #004990;
    --color-overlay: #002A53;
    --color-border: #E0E0E0;
}

html {
    font-size: 14px;
    /*position: relative;*/
    /*min-height: 100%;*/
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Ubuntu';
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    cursor: pointer;
}

h1 {
    margin: 0;
    padding: 0;
    color: #004990;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}

h2 {
    margin: 0;
    padding: 0;
    color: #004990;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

h3 {
    margin: 0;
    padding: 0;
    color: #004990;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

h1.color-black, h2.color-black, h2.color-black {
    color: #212121;
}

p {
    font-size: 16px;
    line-height: 22px;
    color: #212121;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

hr {
    border: none !important;
    opacity: 1 !important;
    margin: 0px !important;
    padding: 0px !important;
    color: #e0e0e0 !important;
    height: 1px !important;
    background-color: #e0e0e0;
    width: 100% !important;
}

hc {
    border-left: 1px solid #e0e0e0 !important;
    opacity: 1 !important;
    margin: 0px !important;
    padding: 0px !important;
    color: #e0e0e0 !important;
    height: 100% !important;
    width: 1px;
    background-color: #e0e0e0;
}

ul {
    margin-bottom: 0;
    padding-bottom: 0;
}

.component-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.dynamic-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.no-components {
    padding: 40px;
    min-height: 66dvh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

    .no-components p {
        font-size: 40px;
        font-weight: 700;
    }

.section-margin {
    margin-bottom: 60px;
}

.section-padding {
    padding-left: min(13.33%, 256px);
    padding-right: min(13.33%, 256px);
}

.max-1920 {
    max-width: 1920px;
}

@media(max-width: 948px) {
    .section-padding {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-margin {
        margin-bottom: 40px;
    }
}
/* Utilities */
.rotate-90 {
    transform: rotate(90deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-270 {
    transform: rotate(270deg);
}

.detail-page-name {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    color: #212121;
    font-family: Ubuntu;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 24px;
}

@media(max-width: 1200px) {
    .detail-page-name {
        font-size: 28px;
        line-height: 30px;
    }
}
/* ModalPopupViewModel */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 42, 83, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 1;
}

.modal-overlay-hidden {
    display: none;
}

.modal-popup {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px 32px 32px 32px;
    width: 90vw;
    min-width: 320px;
    max-width: 1280px;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

    .modal-popup.demo-modal {
        max-width: 640px;
    }

.modal-popup-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 18px;
    height: 18px;
    padding: 0;
}

.modal-popup-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
    text-align: start;
    color: var(--color-secondary);
}

.modal-popup-image {
    width: 100%;
    height: auto;
    max-height: min(520px, 90vw);
    object-fit: cover;
    border-radius: 24px 24px 0px 0px;
}

.modal-popup-text {
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: start;
    margin: 0;
}

.modal-popup-button {
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    background-color: #003971;
    padding: 13px 16px;
    border-radius: 8px;
    gap: 8px;
    display: flex;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: start;
    border: none;
    align-items: center;
    justify-content: center;
    transition: opacity 150ms ease;
}

    .modal-popup-button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none;
    }

        .modal-popup-button:disabled::after {
            content: "";
            width: 16px;
            height: 16px;
            border: 2px solid transparent;
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spinner-rotate 0.6s linear infinite;
        }

@keyframes spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}
/*DemoModalPopup*/
.modal-popup-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-popup-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: start;
}

.modal-popup-label {
    color: #212121;
    font-size: 14px;
    font-weight: 500;
}

.modal-popup-input {
    border-radius: 8px;
    border: 1px solid #BDBDBD;
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    font-size: 14px;
    line-height: 20px;
    color: #212121;
}

.modal-popup-validation {
    color: #b42318;
    font-size: 12px;
    line-height: 16px;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 150ms ease, max-height 150ms ease, min-height 150ms ease;
}

    .modal-popup-validation.is-visible {
        opacity: 1;
        min-height: 16px;
        max-height: 50px;
        text-align: left;
    }

.modal-popup-checkbox-row .modal-popup-validation {
    padding-left: 35px;
}

.modal-popup-success {
    display: none;
    color: #27ae60;
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
    transition: opacity 0.3s;
    opacity: 0;
}

    .modal-popup-success.is-visible {
        display: block;
        opacity: 1;
    }

.model-popup-checkbox-wrapper {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 24px;
    background: #FAFAFA;
}

.modal-popup-checkbox {
    display: flex;
    height: fit-content;
    align-items: start;
    gap: 6px;
    align-self: stretch;
    flex-direction: column;
}

.modal-popup-checkbox-row {
    display: flex;
    align-items: center;
    gap: 11px;
}

.modal-popup-checkbox-input {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #004990;
}

.modal-popup-checkbox-label {
    margin-top: 2px;
    color: #212121;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: start;
}

    .modal-popup-checkbox-label strong {
        color: #003971;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
/* Header */

.header-nav {
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1920px;
    gap: 24px;
    height: 100px;
    padding: 16px 72px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #ffffff;
}

@media (max-width: 1324px) {
    .header-nav {
        padding: 16px 16px;
    }
}


.header-nav__routes {
    display: flex;
    gap: 40px;
    position: relative;
    padding-top: 12px;
    cursor: pointer;
}

.header-nav__route {
    padding-bottom: 12px;
    background-image: linear-gradient(#212121, #212121);
    background-size: 0px 2px;
    background-repeat: no-repeat;
    transition: background-size 0.3s;
    background-position: 0 34px;
    position: relative;
    line-height: 24px;
    font-size: 18px;
    color: #212121;
    white-space: nowrap;
    text-decoration: none;
}

    .header-nav__route:hover {
        background-size: 100% 2px;
        color: #212121;
    }

.header-nav__route-item {
    position: relative;
}

.header-nav__route-modal {
    position: absolute;
    top: calc(100% + 48px);
    left: 0;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    min-width: 220px;
    width: fit-content;
    z-index: 1000;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

    .header-nav__route-modal::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 22px;
        width: 15.444px;
        height: 15.444px;
        transform: rotate(45deg);
        background-color: #ffffff;
        border-left: 1px solid var(--color-border);
        border-top: 1px solid var(--color-border);
    }

    .header-nav__route-modal.hidden {
        display: none;
    }

.header-nav__route-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    width: 100%;
    gap: 24px;
}



.header-nav__route-link {
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    width: 100%;
    color: #212121;
    text-align: center;
    /* Button/Large */
    font-family: Ubuntu;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 24px;
}

    .header-nav__route-link:last-child {
        margin-bottom: 0px;
    }

    .header-nav__route-link:hover {
        color: #003971;
    }

.mobile-col icon {
    width: 24px;
    height: 24px;
}

.header-nav__apply {
    justify-content: end;
    display: flex;
}

.header-nav__language {
    position: relative;
    display: inline-block;
    margin-right: 24px;
}

    .header-nav__language img {
        transition: opacity 0.3s ease;
    }

    .header-nav__language .lang-icon-hover {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .header-nav__language:hover .lang-icon {
        opacity: 0;
    }

    .header-nav__language:hover .lang-icon-hover {
        opacity: 1;
    }

.header-apply__wrapper {
    position: relative;
    display: flex;
    height: 54px;
    gap: 24px;
}

.header-apply__button {
    display: flex;
    border-radius: 40px;
    background: #00A1E4;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-align: center;
    font-style: normal;
    font-size: 18px;
    word-wrap: normal;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.5s;
}



    .header-apply__button:hover {
        background: #007FC0;
        color: #ffffff;
    }

.header-login__button {
    display: flex;
    border-radius: 40px;
    background: #003971;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-align: center;
    font-style: normal;
    font-size: 18px;
    word-wrap: normal;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.5s;
}

    .header-login__button:hover {
        color: #ffffff;
        background: #1366B2;
    }

.header-apply__button-wrapper {
    position: relative;
    display: flex;
}

.header-apply__modal {
    position: absolute;
    border: 1px solid var(--color-border);
    top: calc(100% + 34px);
    left: 26%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    min-width: 276px;
    width: fit-content;
    height: fit-content;
    gap: 20px;
    z-index: 1000;
}

    .header-apply__modal.hidden {
        display: none;
    }

.header-apply__modal-arrow {
    position: absolute;
    top: -6px;
    left: 75%;
    background-color: #ffffff;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-left: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
}

.header-apply__modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-apply__chapter {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: fit-content;
}

.header-apply__modal-content .highlight {
    color: #003971;
}

.header-apply__modal-button {
    display: flex;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: fit-content;
    text-align: center;
    padding: 11px 12px;
    background-color: #003971;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
}

    .header-apply__modal-button:hover {
        color: #fff;
    }

    .header-apply__modal-button img {
        justify-content: center;
        align-items: center;
        width: 12px;
        height: 12px;
    }

.header-wrapper {
    width: 100%;
}

.navbar-row {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
}

.navbar-desktop-wrapper {
    display: none;
}

.mobile-col {
    height: 56px;
    width: 100%;
    max-width: 1200px;
}

@media (max-width:1324px) {
    .header-apply__button {
        padding: 16px 16px;
    }

    .header-login__button {
        padding: 16px 16px;
    }

    .header-nav__routes {
        gap: 32px;
        width: 100%;
        justify-content: space-evenly;
    }
}

@media (min-width: 1200px) {
    .mobile-col {
        display: none;
    }

    .navbar-desktop-wrapper {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 55px;
        padding-right: 55px;
    }

        .navbar-desktop-wrapper .navbar-logo {
            min-width: 250px;
        }
}

.navbar-desktop-wrapper .cursor-pointer {
    cursor: pointer;
}

.navbar-routes {
    display: flex;
    gap: 40px;
}

    .navbar-routes .navbar-route-element {
        padding-bottom: 12px;
        background-image: linear-gradient(#212121, #212121);
        background-size: 0px 2px;
        background-repeat: no-repeat;
        transition: background-size 0.3s;
        background-position: 0 34px;
        position: relative;
        line-height: 24px;
        font-size: 18px;
        color: #212121 !important;
        font-weight: 400;
        white-space: nowrap;
        text-decoration: none !important;
    }

        .navbar-routes .navbar-route-element:hover {
            background-size: 100% 2px;
        }

        .navbar-routes .navbar-route-element:last-child {
            line-height: 24px;
            font-size: 18px;
            color: #ffffff !important;
            text-decoration: none !important;
            font-weight: 400;
            margin-right: 0;
        }

.navbar-apply {
    min-width: 335px;
    justify-content: end;
    margin-left: 10px;
    display: flex;
}

    .navbar-apply .asset {
        margin-right: 24px;
    }

.navbarButton-filled {
    display: flex;
    border-radius: 40px;
    background: var(--Neutral-White, #FFF);
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #004990;
    text-align: center;
    font-style: normal;
    font-size: 18px;
    word-wrap: normal;
    white-space: nowrap;
    font-weight: 500;
    font-weight: 500;
    padding: 16px 24px;
    text-decoration: none;
    transition: background 0.5s;
}

    .navbarButton-filled:hover {
        background: linear-gradient(90deg,#ffffff 10%, #4399e8 95%);
    }

@media (max-width: 1424px) {
    .navbar-mobile-wrapper {
        position: fixed;
        width: 100%;
        z-index: 999;
        background-color: #fff;
        height: 56px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
    }

    .logo-mobile {
        margin-left: auto;
        margin-right: auto;
    }
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    height: fit-content;
    background-color: #ffffff;
    box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.05);
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-height: 600px;
    overflow: auto;
    max-width: 800px;
    border-radius: 16px;
}

    .modal-content.max-height-80 {
        max-height: 80%
    }

    .modal-content .text-wrapper {
        padding: 16px 24px;
        height: fit-content;
        width: 100%;
        letter-spacing: 0;
        font-weight: 400;
        color: #1c1c1c;
        line-height: 22px;
        align-items: center;
        text-align: start;
        font-size: 16px;
        text-decoration: none;
    }

        .modal-content .text-wrapper #fullName {
            font-weight: 500;
        }

        .modal-content .text-wrapper #title {
            margin-bottom: 16px;
        }

#searchModal .close {
    color: #004990;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.close img {
    cursor: pointer;
}

form {
    gap: 16px;
    height: fit-content;
    width: 100%;
    justify-content: flex-start;
}

#searchInSite input[type="search"] {
    width: 100%;
    display: flex;
    height: fit-content;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    gap: 4px;
    padding-left: 30px;
    padding: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    vertical-align: middle;
    background: url("/assets/icons/search-icon.svg");
    background-position-y: center;
    background-position-x: 8px;
    background-size: 16px 16px;
    padding-left: 32px;
    color: #212121;
    background-color: white;
    background-repeat: no-repeat;
}

input::placeholder {
    color: #9e9e9e;
    opacity: 1;
}

#searchInSite .btn-filled {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    background-color: #004990;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    word-wrap: break-word;
    text-decoration: none;
    line-height: 22px;
    width: fit-content;
    height: fit-content;
    border-radius: 8px;
    border: 0px solid transparent;
    padding: 10px 16px;
    gap: 8px;
}

h3 {
    font-size: 18px;
    margin: 0;
    padding: 0;
    line-height: 24px;
    font-weight: 500;
    font-weight: 400;
}

.model-content-wrapper {
    max-height: 600px;
    height: fit-content;
    width: 100%;
    overflow: auto;
    padding: 16px 24px;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

@media(max-width:425px) {
    .model-content-wrapper {
        padding: 16px;
    }
}

#noResult {
    display: none;
}

.no-result {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

    .no-result .searchWord {
        color: #004990;
        font-weight: 400;
    }

#searchResultsWrapper {
    padding: 16px 0px;
    display: none;
}

    #searchResultsWrapper .row > * {
        margin-top: 0px;
        padding-top: 0px;
    }

        #searchResultsWrapper .row > *:not(:nth-child(1)) {
            border-top: 1px solid #e0e0e0;
            padding-top: 8px;
            margin-top: 8px;
        }

.result-row {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}

    .result-row .title {
        font-weight: 700;
        font-size: 22px;
        color: #004990;
        max-width: 100%;
    }

@media(max-width:1423px) {
    .result-row .title {
        font-size: 20px;
    }
}

.result-row .detail {
    max-width: 100%;
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#searchShortcutWrapper {
    gap: 24px;
    display: flex;
    flex-direction: column;
}

.top-searches {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 16px;
}

    .top-searches .top-search {
        border-radius: 8px;
        background-color: #f3f7fb;
        padding: 10px 16px !important;
        text-decoration: none;
        margin: 0px;
        width: fit-content;
        height: fit-content;
        color: #004990;
        font-size: 16px;
        line-height: 22px;
        font-weight: 500;
    }

    .top-searches .short-search {
        text-decoration: none;
        border-radius: 8px;
        padding: 10px 16px !important;
        margin: 0px;
        width: fit-content;
        height: fit-content;
        color: #004990;
        font-size: 16px;
        line-height: 22px;
        font-weight: 500;
        background-color: transparent;
        border: 1px solid #e0e0e0;
    }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Start hidden outside of screen */
    width: 100%;
    height: 100%;
    background-color: #004990;
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    padding-top: 6px;
    padding-bottom: 24px;
    flex-direction: column;
}

    .mobile-menu-overlay.active {
        right: 0; /* Slide in */
    }

.mobile-menu-content a {
    font-size: 18px;
    color: #003971;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 24px;
}

.icon-wrapper {
    padding: 11px 16px;
    display: flex;
    justify-content: end;
}

.language-row {
    position: absolute;
    bottom: 0px;
    padding: 0px 18px;
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
}

.language-wrapper {
    display: flex;
    width: 100%;
    padding: 24px 0;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #007FC0;
}

    .language-wrapper .lang-text {
        font-weight: 500;
        font-size: 14px;
        font-style: normal;
        text-decoration: none;
        cursor: pointer;
        line-height: 20px;
        color: #E0E0E0;
        transition: color 0.3s ease;
    }

        .language-wrapper .lang-text.active-lang {
            font-weight: 700;
            color: #bdbdbd;
        }

.side-menu {
    scrollbar-width: none;
    scroll-behavior: auto;
    box-sizing: border-box;
    overflow: auto;
    height: fit-content;
    width: 100%;
    align-self: start;
    margin-bottom: 60px;
}

    .side-menu > ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
        display: flex;
        flex-direction: column;
    }

        .side-menu > ul > li {
            width: 100%;
        }

            .side-menu > ul > li > ul {
                display: flex;
                flex-direction: column;
                padding-left: 24px;
                padding-right: 24px;
            }

.sub-menu > li {
    list-style: none;
    padding: 0px;
    width: fit-content;
    margin: 0px;
    gap: 16px;
}

.side-menu ul li.active a {
    color: #004990;
}

.side-menu .collapsible {
    background-color: transparent;
    justify-content: space-between;
    height: fit-content;
    font-weight: 400;
    font-size: 16px;
    text-align: start;
    word-wrap: break-word;
    text-decoration: none;
    line-height: 22px;
    display: flex;
    letter-spacing: 0;
    color: #ffffff;
    padding: 16px 24px;
    gap: 8px;
    width: 100%;
}

    .side-menu .collapsible.sub-collapsible {
        padding: 0px;
    }

        .side-menu .collapsible.sub-collapsible.open {
            background-color: transparent;
        }

    .side-menu .collapsible a {
        background-color: transparent;
        border: none;
        background: none;
        padding: 0;
        margin: 0;
        font: inherit;
        cursor: pointer;
        color: #fff;
    }

.side-menu .dropdown-btn {
    background-color: transparent;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    color: inherit;
}

.side-menu .collapsible.active {
    background-color: #003971;
    font-weight: 500;
}

.side-menu a {
    font-weight: 400;
    font-size: 15px;
    text-align: start;
    word-wrap: break-word;
    text-decoration: none;
    line-height: 22px;
    display: flex;
    letter-spacing: 0;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    width: 100%;
}

.side-menu .sub-menu {
    display: grid;
    grid-template-rows: 0fr;
    transition: 300ms ease-in-out;

    > div {
        overflow: hidden;
    }
}

    .side-menu .sub-menu .li-div {
        display: grid;
    }

        .side-menu .sub-menu .li-div li {
            height: fit-content;
            padding: 10px 8px 10px 24px;
            gap: 8px;
            margin: 0;
        }

    .side-menu .sub-menu.show {
        grid-template-rows: 1fr;
        padding: 6px 16px 6px 20px;
    }

    .side-menu .sub-menu.grand-sub-menu.show {
        grid-template-rows: 1fr;
        padding: 6px 0px 6px 0px;
    }

.dropdown-btn img {
    transition: 200ms ease;
}

.rotate img {
    rotate: -180deg;
}

.side-menu .sub-menu a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    border: 0px solid #e0e0e0;
    display: flex;
    letter-spacing: 0;
    padding-bottom: 0;
    padding-top: 0;
    color: #fff;
    padding-left: 0px;
    width: fit-content;
}

.hesap-ac-wrapper {
    position: relative;
    display: flex;
}

.hesap-ac-modal {
    position: absolute;
    border: 1px solid #E0E0E0;
    top: 140%;
    right: 0;
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    min-width: 276px;
    width: fit-content;
    height: fit-content;
    gap: 20px;
    z-index: 1000;
}

    .hesap-ac-modal.hidden {
        display: none;
    }

.modal-arrow {
    position: absolute;
    top: -6px;
    right: 24%;
    background-color: white;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-left: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
}

.modal-content-wrapper {
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chapter {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: fit-content;
}


.modal-content-wrapper .highlight {
    font-weight: 700;
    color: #003971;
}

.modal-button {
    display: flex;
    font-weight: 500;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: fit-content;
    text-align: center;
    padding: 11px 12px;
    background-color: #003971;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

    .modal-button img {
        justify-content: center;
        align-items: center;
        width: 12px;
        height: 12px;
    }
/* Header - End */

/*AutoPlaySlider and Currencies*/
.auto-slider-wrapper {
    width: 100%;
    max-width: 1920px;
    padding-left: min(13.33%, 256px);
    padding-right: min(13.33%, 256px);
    background-image: url('../assets/images/slider-bg.png');
    background-size: cover;
    margin-bottom: 84px;
}

.auto-slider {
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background-color: transparent;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

    .auto-slider * {
        user-select: none;
        -webkit-user-select: none;
    }

.auto-slider__track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
    cursor: grab;
}

.auto-slider:active .auto-slider__track {
    cursor: grabbing;
}

.auto-slider__slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    padding: 0px 1px;
}

.auto-slider__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.auto-slider__text {
    color: #002A53;
    font-family: Ubuntu;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
}

    .auto-slider__text > strong {
        color: #004990;
        font-weight: 500;
    }

.auto-slider__button {
    width: fit-content;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    height: fit-content;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 40px;
    border: 1px solid var(--Neutral-White, #FFF);
    background: #003971;
    transition: background ease-in-out 0.3s;
}

    .auto-slider__button:hover {
        background: #1366B2;
        color: #ffffff;
    }

.auto-slider__media {
    width: 50%;
    height: 100%;
}

.auto-slider__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-user-drag: none;
}

.auto-slider__pagination {
    position: absolute;
    left: 0;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 2;
}

.auto-slider__bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.auto-slider__bullet-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #1366B2;
}

.auto-slider__bullet.is-active .auto-slider__bullet-dot {
    background-color: #1366B2;
    width: 12px;
    height: 12px;
}

.auto-slider__bullet-progress {
    width: 60px;
    height: 4px;
    border-radius: 999px;
    background-color: #1366B2;
    overflow: hidden;
    display: none;
}

.auto-slider__bullet.is-active .auto-slider__bullet-progress {
    display: block;
}

.auto-slider__bullet-progress-fill {
    width: 0;
    display: flex;
    height: 100%;
    background-color: #89C2F8;
    border-radius: 999px;
    transition-property: width;
    transition-timing-function: linear;
}

@media (max-width: 1400px) {
    .auto-slider__content {
        width: 40%;
    }

    .auto-slider__media {
        width: 60%;
    }

    .auto-slider__text {
        font-size: 48px;
    }
}

@media (max-width: 1200px) {
    .auto-slider__content {
        width: 40%;
    }

    .auto-slider__media {
        width: 60%;
    }

    .auto-slider__text {
        font-size: 42px;
    }

    .auto-slider__pagination {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .auto-slider-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .auto-slider {
        height: 448px;
    }

    .auto-slider__track {
        height: 506px;
    }

    .auto-slider__content {
        max-height: 200px;
    }

    .auto-slider__media {
        height: calc(68% - 20px);
    }

    .auto-slider__slide {
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
        justify-content: flex-start;
    }

    .auto-slider__content,
    .auto-slider__media {
        width: 100%;
    }

    .auto-slider__content {
        padding: 0px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .auto-slider__image {
        height: 320px;
    }

    .auto-slider__text {
        font-size: 26px;
        line-height: 32px;
    }

    .auto-slider__image {
        height: 204px;
    }

    .auto-slider__button {
        padding: 12px 16px;
    }

    .auto-slider__pagination {
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.home-currency-container {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    bottom: -60px;
    height: fit-content;
    overflow-x: auto;
    border-radius: 16px;
    padding-bottom: 12px;
}

.home-currency-wrapper {
    display: flex;
    width: 1408px;
    padding: 24px 48px;
    height: 120px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-radius: 99px;
    border: 3px solid var(--Neutral-White, #FFF);
    background: var(--Neutral-White, #FFF);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

.home-currency-box {
    display: flex;
    width: 155px;
    align-items: center;
    gap: 16px;
    width: fit-content;
}

    .home-currency-box .arrow {
        width: 48px;
        height: 48px;
    }

    .home-currency-box .text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

        .home-currency-box .text .title {
            justify-content: start;
            background: transparent;
            color: #212121;
            line-height: 24px;
            display: inline-flex;
            align-items: center;
            font-size: 18px;
            letter-spacing: 0;
            vertical-align: middle;
            text-decoration: none;
            font-style: normal;
            font-weight: 400;
            white-space: nowrap;
        }

        .home-currency-box .text .price {
            justify-content: start;
            background: transparent;
            color: #424242;
            display: inline-flex;
            align-items: center;
            letter-spacing: 0;
            vertical-align: middle;
            text-decoration: none;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 24px; /* 133.333% */
        }

        .home-currency-box .text .percentage {
            justify-content: start;
            background: transparent;
            display: inline-flex;
            align-items: center;
            letter-spacing: 0;
            vertical-align: middle;
            text-decoration: none;
            font-size: 15px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
        }

.last-updated-row {
    display: flex;
    position: relative;
    bottom: -60px;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    width: 100%;
    padding: 0px 48px 20px 48px;
}

    .last-updated-row .last-updated-text {
        width: fit-content;
        background: transparent;
        color: #003971;
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0;
        vertical-align: middle;
        text-decoration: none;
    }

    .last-updated-row .all-currencies-btn {
        width: fit-content;
        background: transparent;
        color: #003971;
        display: flex;
        align-items: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        letter-spacing: 0;
        vertical-align: middle;
        text-decoration: none;
        gap: 12px;
    }

@media(max-width: 1424px) {
    .last-updated-row {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: fit-content;
        width: 100%;
        flex-direction: column-reverse;
        gap: 12px
    }

        .last-updated-row .last-updated-text {
            justify-content: center;
            background: transparent;
            color: #003971;
            line-height: 20px;
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            letter-spacing: 0;
            vertical-align: middle;
            text-decoration: none;
            font-weight: 400;
        }

        .last-updated-row .all-currencies-btn {
            width: fit-content;
            background: transparent;
            color: #003971;
            display: flex;
            align-items: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 22px;
            letter-spacing: 0;
            vertical-align: middle;
            gap: 12px;
        }
}

@media(max-width:948px) {
    .last-updated-row {
        margin-top: 0px;
    }
}
/*AutoPlaySlider and Currencies - End*/

/*fourCardWrapper*/

.four-card-wrapper .title {
    color: #003971;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 137.5% */
}

.four-card-wrapper .wrapper-description {
    color: #616161;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.four-card-wrapper .see-all-btn {
    color: #787878;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
}

.four-card-wrapper .iw-cards {
    margin-top: 16px;
}

.four-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: fit-content;
    gap: 24px;
}

    .four-card-wrapper .fc-bottom-row {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-top: 24px;
        text-decoration: none;
    }

        .four-card-wrapper .fc-bottom-row .show-all {
            color: #4a4a4a;
            text-align: center;
            font-family: "Ubuntu";
            font-size: 16px;
            text-decoration: none;
            font-style: normal;
            font-weight: 500;
            line-height: 22px; /* 137.5% */
        }

    .four-card-wrapper .iw-firstCard .content .bottom-row {
        margin-top: 24px;
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

        .four-card-wrapper .iw-firstCard .content .bottom-row .show-all {
            color: #4a4a4a;
            text-align: center;
            font-family: "Ubuntu";
            align-items: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 22px;
        }

    .four-card-wrapper .iw-cards {
        margin-top: 16px;
        display: flex;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
    }

        .four-card-wrapper .iw-cards .iw-firstCard {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            align-self: stretch;
            border-radius: 16px;
            flex: 0.68 0 0;
            background: #ffffff;
            box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.06);
        }

            .four-card-wrapper .iw-cards .iw-firstCard .video-card {
                position: relative;
                width: 100%;
                padding-top: 47.84%; /* 266/556 aspect ratio */
                overflow: hidden;
            }

                .four-card-wrapper .iw-cards .iw-firstCard .video-card iframe {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border: 0;
                    border-radius: 20px 20px 0px 0px;
                }

        .four-card-wrapper .iw-cards .iw-smallCardColumn {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: -webkit-fill-available;
            align-items: flex-start;
            gap: 24px;
            flex: 1 0 0;
        }

            .four-card-wrapper .iw-cards .iw-smallCardColumn .iw-smallCard {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                align-self: stretch;
                border-radius: 8px;
                height: -webkit-fill-available;
                background: #ffffff;
                box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.08);
            }

        .four-card-wrapper .iw-cards .iw-smallCard .image-wrapper {
            display: flex;
            width: 200px;
            flex-direction: column;
            align-items: center;
            align-self: stretch;
            border-radius: 16px;
        }

            .four-card-wrapper
            .iw-cards
            .iw-smallCard
            .image-wrapper
            .background-image {
                width: 200px;
                flex: 1 0 0;
                border-radius: 16px 0px 0px 16px;
            }

@media(max-width:768px) {
    .four-card-wrapper
    .iw-cards
    .iw-smallCard
    .image-wrapper
    .background-image {
        border-radius: 16px 16px 0px 0px;
    }

    .four-card-wrapper .title {
        font-size: 26px;
    }

    .four-card-wrapper .see-all-btn {
        font-size: 14px;
    }

    .four-card-wrapper .wrapper-description {
        font-size: 14px;
    }
}

@media (min-width: 769px) {

    .four-card-wrapper .iw-cards .iw-smallCard .image-wrapper.flex-116 {
        flex: 1.16;
        width: 100%;
    }

    .four-card-wrapper
    .iw-cards
    .iw-smallCard
    .image-wrapper
    .background-image.flex-116 {
        flex: 1.16;
        width: 100%;
    }
}

.four-card-wrapper .iw-cards .iw-smallCard .content {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: space-between;
    gap: 20px;
    flex: 1 0 0;
}

    .four-card-wrapper .iw-cards .iw-smallCard .content .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap-reverse;
        gap: 24px;
        align-self: stretch;
        margin-bottom: -8px;
    }

        .four-card-wrapper
        .iw-cards
        .iw-smallCard
        .content
        .top-row
        .top-row-icon {
            width: 24px;
            height: 24px;
            aspect-ratio: 1/1;
        }

        .four-card-wrapper
        .iw-cards
        .iw-smallCard
        .content
        .top-row
        .date-duration-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
        }

            .four-card-wrapper
            .iw-cards
            .iw-smallCard
            .content
            .top-row
            .date-duration-wrap
            .date {
                color: #4a4a4a;
                font-family: "Ubuntu";
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .four-card-wrapper
            .iw-cards
            .iw-smallCard
            .content
            .top-row
            .date-duration-wrap
            .duration {
                color: #4a4a4a;
                font-family: "Ubuntu";
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
                display: flex;
                align-items: center;
                gap: 10px;
            }

        .four-card-wrapper .iw-cards .iw-smallCard .content .top-row .image-tag {
            display: flex;
            padding: 3px 10px;
            justify-content: center;
            align-items: center;
            gap: 8px;
            border-radius: 8px;
            background: #3c86c8;
        }

            .four-card-wrapper
            .iw-cards
            .iw-smallCard
            .content
            .top-row
            .image-tag
            .tag-icon {
                width: 16px;
                height: 16px;
                aspect-ratio: 1/1;
            }

            .four-card-wrapper
            .iw-cards
            .iw-smallCard
            .content
            .top-row
            .image-tag
            .tag-text {
                color: #fff;
                font-family: "Ubuntu";
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
            }

    .four-card-wrapper .iw-cards .iw-smallCard .content .card-title {
        align-self: stretch;
        color: #212121;
        font-family: "Ubuntu";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 0px;
    }

    .four-card-wrapper .iw-cards .iw-smallCard .content .card-description {
        align-self: stretch;
        color: #212121;
        font-family: Ubuntu;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .four-card-wrapper .iw-cards .iw-smallCard .content .bottom-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        border-radius: 8px;
    }

.fc-container .four-card-wrapper
.iw-cards
.iw-smallCard
.content
.bottom-row
.show-detail {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #3C86C8;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    font-family: "Ubuntu";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.four-card-wrapper
.iw-cards
.iw-smallCard
.content
.bottom-row
.show-detail {
    display: flex;
    justify-content: center;
    padding: 0;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    color: #4A4A4A;
    text-align: center;
    font-family: "Ubuntu";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.four-card-wrapper .iw-cards .iw-smallCard .content .bottom-row .tag {
    color: #004587;
    font-family: "Ubuntu";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.four-card-wrapper .iw-cards .iw-firstCard .image-wrapper {
    display: flex;
    width: 100%;
    height: 266px;
    flex-direction: column;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

    .four-card-wrapper
    .iw-cards
    .iw-firstCard
    .image-wrapper
    .background-image {
        flex: 1 0 0;
        align-self: stretch;
        justify-content: flex-end;
        display: flex;
        border-radius: 16px 16px 0 0;
    }

        .four-card-wrapper
        .iw-cards
        .iw-firstCard
        .image-wrapper
        .background-image
        .image-tag {
            display: flex;
            padding: 3px 10px;
            justify-content: center;
            width: fit-content;
            height: fit-content;
            align-items: center;
            gap: 8px;
            margin-right: 24px;
            margin-top: 24px;
            border-radius: 8px;
            background: linear-gradient(0deg, #3c86c8 0%, #3c86c8 100%);
        }

            .four-card-wrapper
            .iw-cards
            .iw-firstCard
            .image-wrapper
            .background-image
            .image-tag
            .tag-icon {
                width: 16px;
                height: 16px;
                aspect-ratio: 1/1;
            }

            .four-card-wrapper
            .iw-cards
            .iw-firstCard
            .image-wrapper
            .background-image
            .image-tag
            .tag-text {
                color: #fff;
                font-family: "Ubuntu";
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
            }

.four-card-wrapper .iw-cards .iw-firstCard .content {
    display: flex;
    align-self: stretch;
    padding: 16px 24px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

    .four-card-wrapper .iw-cards .iw-firstCard .content .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        color: #4a4a4a;
    }

@media(max-width:768px) {
    .four-card-wrapper .iw-cards .iw-firstCard .content .top-row {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
}

.four-card-wrapper .iw-cards .iw-firstCard .content .top-row-icon {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.four-card-wrapper .iw-cards .iw-firstCard .content .top-row .date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.four-card-wrapper .iw-cards .iw-firstCard .content .top-row .duration {
    display: flex;
    align-items: center;
    gap: 10px;
}

.four-card-wrapper .iw-cards .iw-firstCard .content .card-title {
    color: #212121;
    font-family: "Ubuntu";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 133.333% */
    align-self: stretch;
    margin-bottom: 0px;
}

.four-card-wrapper .iw-cards .iw-firstCard .content .card-description {
    color: #4a4a4a;
    font-family: "Ubuntu";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    flex: 1 0 0;
    align-self: stretch;
}

.four-card-wrapper .iw-cards .iw-firstCard .content .bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

@media(max-width:768px) {
    .four-card-wrapper .iw-cards .iw-firstCard .content .bottom-row {
        margin: 0px;
    }
}

.fc-container .four-card-wrapper
.iw-cards
.iw-firstCard
.content
.bottom-row
.show-detail {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #3C86C8;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    font-family: "Ubuntu";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.four-card-wrapper
.iw-cards
.iw-firstCard
.content
.bottom-row
.show-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 8px;
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    color: #4A4A4A;
    text-align: center;
    font-family: "Ubuntu";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.four-card-wrapper .iw-cards .iw-firstCard .content .bottom-row .tag {
    color: #004587;
    font-family: "Ubuntu";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

@media (max-width: 1200px) {
    .four-card-wrapper .iw-cards {
        flex-direction: column;
    }

        .four-card-wrapper .iw-cards .iw-smallCardColumn {
            align-self: stretch;
        }

        .four-card-wrapper .iw-cards .iw-firstCard .content {
            max-width: 9999px;
        }
}

@media (max-width: 768px) {
    .four-card-wrapper .iw-cards .iw-smallCardColumn .iw-smallCard {
        flex-direction: column;
    }

    .four-card-wrapper .iw-cards .iw-smallCard .image-wrapper {
        height: 166px;
        width: 100%;
    }

        .four-card-wrapper
        .iw-cards
        .iw-smallCard
        .image-wrapper
        .background-image {
            width: 100%;
        }

    .four-card-wrapper .iw-cards .iw-smallCard .content {
        align-self: stretch;
    }
}


/*fourCardWrapper - End*/
/*twoCardBanner*/
.two-card-banner {
    display: flex;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: #F3F7FB;
}

.two-card-banner-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.two-card-banner .title {
    color: #003971;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.two-card-banner .see-all-btn {
    color: #787878;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.two-card-banner-card {
    display: flex;
    padding: 40px 24px 40px 32px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 24px;
    background: #FFF;
    cursor: pointer;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.10);
}

    .two-card-banner-card .date {
        color: #4a4a4a;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 8px;
    }

    .two-card-banner-card .card-title {
        color: #212121;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .two-card-banner-card .card-description {
        color: #212121;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        text-overflow: ellipsis;
    }

@media(max-width: 1424px) {

    .two-card-banner-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        align-self: stretch;
    }
}

@media (max-width: 948px) {
    .two-card-banner {
        padding: 24px 16px;
    }

        .two-card-banner .title {
            font-size: 26px;
            line-height: 32px;
        }

        .two-card-banner .see-all-btn {
            font-size: 14px;
            line-height: 20px;
        }

    .two-card-banner-card {
        padding: 16px;
    }
}
/*twoCardBanner - End*/
/* SSS */
.sss {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 48px;
    width: 100%;
}

    .sss .title {
        color: #003971;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px;
    }

    .sss .see-all-btn {
        color: #787878;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

.sss-wrapper {
    width: 100%;
}

.accordion-button {
    padding: 0;
}

    .accordion-button:not(.collapsed) {
        background-color: transparent !important;
    }

.sss-accordion {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sss-accordion-item {
    overflow: hidden;
    border: none;
}

.sss-accordion-button {
    color: #616161;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    background-color: #ffffff;
}

    .sss-accordion-button:not(.collapsed) {
        background-color: #F3F7FB;
        color: #004990;
        box-shadow: none;
    }

    .sss-accordion-button:focus {
        box-shadow: none;
    }

.sss-accordion-button-category {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.sss-accordion-body {
    color: #212121;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

    .sss-accordion-body a {
        color: #003971;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }

.accordion-button::after {
    background-image: url(/assets/icons/plus.svg);
    background-size: 32px;
    height: 32px;
    width: 32px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(/assets/icons/minus.svg);
}

@media (max-width: 948px) {
    .sss .title {
        font-size: 26px;
        line-height: 32px;
    }

    .sss .see-all-btn {
        font-size: 14px;
        line-height: 20px;
    }
}
/* SSS - End */
/* SSS Filter */
.sss-filter {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin-bottom: 50px;
    padding: 24px;
    border-radius: 16px;
    background: #F3F7FB;
}

.sss-filter__fields {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    width: 100%;
}

.sss-filter__field {
    display: flex;
    flex-direction: column;
    flex: 2 1 0;
    min-width: 0;
    position: relative;
}

    .sss-filter__field:last-child {
        flex: 1 1 0;
    }

/* Custom Dropdown */
.sss-dropdown {
    position: relative;
    width: 100%;
}

.sss-dropdown__toggle {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #BDBDBD;
    padding: 10px 36px 10px 10px;
    font-family: 'Ubuntu';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #212121;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: border-color 0.3s ease;
}

    .sss-dropdown__toggle:focus {
        outline: none;
        border-color: #003971;
    }

.sss-dropdown.is-open .sss-dropdown__toggle {
    border-color: #003971;
    border-radius: 8px 8px 0 0;
}

.sss-dropdown__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sss-dropdown__icon {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 12px;
    height: 12px;
    background-image: url('/assets/icons/angle-right-blue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.sss-dropdown.is-open .sss-dropdown__icon {
    transform: translateY(-50%) rotate(-90deg);
}

.sss-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #ffffff;
    border: 1px solid #003971;
    border-top: none;
    border-radius: 0 0 8px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #BDBDBD transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sss-dropdown.is-open .sss-dropdown__menu {
    display: block;
}

.sss-dropdown__item {
    padding: 10px 12px;
    font-family: 'Ubuntu';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #212121;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .sss-dropdown__item:hover {
        background-color: #F3F7FB;
        color: var(--color-secondary);
    }

    .sss-dropdown__item.is-selected {
        background-color: #F3F7FB;
        color: var(--color-secondary);
        font-weight: 500;
    }

    .sss-dropdown__item:last-child {
        border-radius: 0 0 8px 8px;
    }

.sss-filter__input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #BDBDBD;
    padding: 10px 36px 10px 10px;
    font-family: 'Ubuntu';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #212121;
    background-color: #ffffff;
    background-image: url('/assets/icons/search-icon.svg');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
}

    .sss-filter__input::placeholder {
        color: #9e9e9e;
        opacity: 1;
    }

    .sss-filter__input:focus {
        outline: none;
        border-color: #003971;
    }

.sss-filter__button {
    display: flex;
    width: 100%;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: none;
    background-color: var(--color-secondary);
    color: #ffffff;
    font-family: 'Ubuntu';
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

    .sss-filter__button:hover {
        background-color: #003971;
    }

@media (max-width: 948px) {
    .sss-filter {
        padding: 16px;
    }

    .sss-filter__fields {
        flex-direction: column;
    }

    .sss-filter__field {
        width: 100%;
        flex: none;
    }

        .sss-filter__field:last-child {
            flex: none;
        }
}
/* SSS Filter - End */

/* SSS Empty */
.sss-empty {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 60px 16px;
    min-height: 200px;
}

    .sss-empty p {
        color: #616161;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
    }
/* SSS Empty - End */

/* SSS Pagination */
.sss-pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
}

.sss-pagination__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sss-pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sss-pagination__link {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background-color: #ffffff;
    color: #212121;
    font-family: 'Ubuntu';
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    padding: 0;
    outline: none;
}

    .sss-pagination__link:hover {
        background-color: #F3F7FB;
        color: var(--color-secondary);
    }

    .sss-pagination__link:focus-visible {
        outline: 2px solid #004990;
        outline-offset: -2px;
    }

.sss-pagination__item--active .sss-pagination__link,
.sss-pagination__link--current {
    background-color: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-secondary);
    cursor: default;
}

    .sss-pagination__item--active .sss-pagination__link:hover,
    .sss-pagination__link--current:hover {
        background-color: var(--color-secondary);
        color: #ffffff;
    }

@media (max-width: 948px) {
    .sss-pagination {
        padding: 24px 0;
    }

    .sss-pagination__link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}
/* SSS Pagination - End */
/* FooterBanner */
.footer-banner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    height: 744px;
    background-image: url(/assets/images/footer-banner-background.svg);
    object-fit: cover;
}

.footer-btn-wrapper {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-banner-title {
    margin-bottom: 16px;
    color: #003971;
    font-family: Ubuntu;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.footer-btn-item {
    display: flex;
    height: 84px;
    padding: 16px 36px;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border-radius: 99px;
    border: 2px solid #BDE0FF;
    background-color: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(12px);
    color: #003971;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    transition: background-color 200ms ease;
    white-space: nowrap;
}

    .footer-btn-item .icon-wrapper {
        display: flex;
        width: 52px;
        height: 52px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        aspect-ratio: 1/1;
        border-radius: 80px;
        border: 2px solid #BDE0FF;
        background: #003971;
        transition: background-color 200ms ease;
    }

    .footer-btn-item:hover .icon-wrapper {
        border-radius: 80px;
        border: 2px solid #BDE0FF;
        background: #00A1E4;
    }

    .footer-btn-item:hover {
        background-color: rgba(255, 255, 255, 0.70);
        color: #003971;
    }

.footer-image-wrapper {
    width: 700px;
    height: 700px;
    display: flex;
    align-items: center;
    margin-top: -20px;
    justify-content: center;
}

.footer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    opacity: 1;
    transition: opacity 200ms ease;
}

.footer-image--is-fading {
    opacity: 0;
}

@media (max-width: 1200px) {
    .footer-image-wrapper {
        display: none;
    }

    .footer-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-btn-item {
        padding: 12px 20px;
        font-size: 22px;
        white-space: normal;
        gap: 16px;
    }
}
/* FooterBanner - End */
/* Footer */
footer {
    width: 100%;
    background-color: #002A53;
    display: flex;
    justify-content: center;
}

.footer-wrapper {
    width: 100%;
    max-width: 1920px;
    padding: 40px min(13.33%, 256px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-navigation-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.footer-social-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: fit-content;
    align-items: center;
    gap: 16px;
}

.footer-social-media-item {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
}

    .footer-social-media-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.footer-navigation {
    display: flex;
    width: fit-content;
    align-items: center;
    align-content: center;
    gap: 8px 32px;
    flex-wrap: wrap;
}

.footer-route-item {
    text-decoration: none;
    display: flex;
    padding: 16px 0 6px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background-image: linear-gradient(#FFF, #FFF);
    background-size: 0px 2px;
    background-repeat: no-repeat;
    transition: background-size 0.3s;
    background-position: 0 100%;
}

    .footer-route-item:hover {
        color: #fff;
        background-size: 100% 2px;
    }

.copyright {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    height: fit-content;
    vertical-align: central;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
    word-wrap: break-word;
    text-align: center;
}

    .copyright .vertical-seperator {
        width: 1px;
        background-color: #BDBDBD;
        height: 24px;
    }

.footer-text {
    flex: 1 0 0;
    color: #BDBDBD;
    text-align: justify;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

@media (max-width: 1440px) {
    .footer-wrapper {
        padding: 32px 16px;
        gap: 16px;
    }

    .footer-navigation-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-navigation {
        justify-content: center;
        gap: 16px;
    }

    .copyright {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        height: fit-content;
        vertical-align: central;
        justify-content: center;
        align-items: center;
        gap: 16px;
        word-wrap: break-word;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }
}


@media (max-width: 498px) {
    .copyright .vertical-seperator {
        display: none;
    }
}
/* Footer Legal Warning Modal */
.footer-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 42, 83, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 1;
}

.footer-modal-overlay-hidden {
    display: none;
}

.footer-modal-popup {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px 32px 32px 32px;
    width: 90vw;
    min-width: 320px;
    max-width: 80%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 18px;
    height: 18px;
    padding: 0;
}

.footer-modal-text {
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: start;
    margin: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #BDBDBD transparent;
}

    .footer-modal-text strong {
        color: #212121;
    }

    .footer-modal-text::-webkit-scrollbar {
        width: 6px;
    }

    .footer-modal-text::-webkit-scrollbar-track {
        background: transparent;
    }

    .footer-modal-text::-webkit-scrollbar-thumb {
        background-color: #BDBDBD;
        border-radius: 3px;
    }

    .footer-modal-text::-webkit-scrollbar-button {
        display: none;
    }

[data-footer-text-modal-trigger] span {
    color: #e0e0e0;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

    [data-footer-text-modal-trigger] span:hover {
        color: #BDE0FF;
    }
/* Footer - End */
/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 24px 0px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #212121;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.breadcrumb-item--active {
    color: #616161;
}

.breadcrumb-link {
    color: #212121;
    text-decoration: none;
}

    .breadcrumb-link:hover {
        color: #004990;
    }

.breadcrumb-item + .breadcrumb-item {
    padding: 0;
}

    .breadcrumb-item + .breadcrumb-item::before {
        display: none;
    }

.breadcrumb-separator {
    color: #212121;
    align-items: center;
    display: flex;
    padding-top: 2px;
}

.breadcrumb-current {
    color: #616161;
    font-weight: 500;
    font-size: 13px;
    font-style: normal;
    line-height: 18px;
}
/* Breadcrumb - End */
/* DetailPageBanner */
.detail-page-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    max-height: 366px;
    min-height: 366px;
    padding: 60px 0px 60px min(13.33%, 256px);
    background-image: url("../assets/images/banner-background.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .detail-page-banner.no-image {
        padding: 60px min(13.33%, 256px) 60px min(13.33%, 256px);
    }

.detail-page-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.detail-page-banner .title {
    color: #212121;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}

.detail-page-banner .text {
    color: #212121;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    text-overflow: ellipsis;
}

.detail-page-banner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 366px;
    flex: 0 0 auto;
}

    .detail-page-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

@media (max-width: 1424px) {
    .detail-page-banner {
        max-height: unset;
        min-height: 183px;
        height: fit-content;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 1200px) {
    .detail-page-banner {
        padding: 40px 16px;
    }

    .detail-page-banner-image {
        display: none;
    }
}

@media (max-width: 948px) {
    .detail-page-banner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;
    }

        .detail-page-banner .title {
            font-size: 26px;
            line-height: 32px;
        }

    .detail-page-banner-image {
        display: none;
    }
}
/* DetailPageBanner - End */
/* ParagraphWrapper */
.paragraph-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

    .paragraph-wrapper .title {
        color: #003971;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px;
    }

.paragraph-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.paragraph-title {
    color: #004990;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.paragraph-text {
    color: #212121;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 948px) {
    .paragraph-wrapper .title {
        font-size: 26px;
        line-height: 32px;
    }

    .paragraph-item {
        padding: 16px;
    }
}
/* ParagraphWrapper -End */
/* TableWrapper */
.table-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

.table-tabs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.table-tabs__headers-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.table-tabs__headers {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.table-tabs__header {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #237BCB;
    background: #fff;
    color: #003971;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
    flex: 0 0 auto;
}

    .table-tabs__header.is-active {
        color: #FFF;
        background: #004990;
    }

.table-tabs__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

    .table-tabs__arrow img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .table-tabs__arrow.is-visible {
        display: flex;
    }

.table-tabs__arrow--left {
    right: 100%;
    margin-right: 16px;
}

.table-tabs__arrow--right {
    left: 100%;
    margin-left: 16px;
}

.table-tabs__panel {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #DDEFFF;
    overflow-x: auto;
    scrollbar-width: none;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

    .table-tabs__panel.is-active {
        display: flex;
    }

    .table-tabs__panel table {
        width: max-content;
        min-width: 100%;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0;
    }

    .table-tabs__panel thead {
        background-color: #003971;
        color: #ffffff;
    }

    .table-tabs__panel th,
    .table-tabs__panel td {
        padding: 12px 16px;
        text-align: left;
        width: auto;
        white-space: nowrap;
    }

    .table-tabs__panel tbody tr:nth-child(odd) {
        background-color: #ffffff;
    }

    .table-tabs__panel tbody tr:nth-child(even) {
        background-color: #F3F7FB;
    }
/* TableWrapper - End */
/* StockCurrencyCardWrapper */

.stock-currency-card-banner {
    display: flex;
    width: 100%;
    height: fit-content;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: #DDEFFF;
    padding: 40px 0px;
}

.stock-currency-card-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
}

.stock-currency-card {
    display: flex;
    min-width: 308px;
    flex: 1 1 0;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 24px;
    border: 1px solid #DDEFFF;
    background: #FFF;
    overflow: hidden;
}

.stock-currency-card-header {
    width: 100%;
    display: flex;
    height: 32px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 20px;
    background: #004990;
}

.stock-currency-card-title {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.stock-currency-card-content {
    width: 100%;
    padding: 0;
}

    .stock-currency-card-content table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }

    .stock-currency-card-content thead {
        background-color: #F3F7FB;
    }

    .stock-currency-card-content th {
        color: #003971;
        font-family: Ubuntu;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #DDEFFF;
    }

        .stock-currency-card-content th:last-child {
            text-align: right;
        }

    .stock-currency-card-content td {
        color: #212121;
        font-family: Ubuntu;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        padding: 12px 0px;
        text-align: left;
        border-bottom: 1px solid #E0E0E0;
    }

        .stock-currency-card-content td:last-child {
            text-align: right;
            padding-left: 12px;
        }

        .stock-currency-card-content td:first-child {
            padding-right: 12px;
        }

    .stock-currency-card-content tbody tr:last-child td {
        border-bottom: none;
    }

    .stock-currency-card-content tbody tr:nth-child(odd) {
        background-color: #FFF;
    }

    .stock-currency-card-content tbody tr:nth-child(even) {
        background-color: #Fff;
    }



@media (max-width: 948px) {
    .stock-currency-card-content {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

        .stock-currency-card-content table {
            min-width: 100%;
            width: 100%;
        }
}
/* StockCurrencyCardWrapper - End */
/* FlipCardWrapper */
.flip-card-banner {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.flip-card-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
}

.flip-card {
    flex: 1 1 calc((100% - 48px) / 3);
    min-width: 320px;
    height: 484px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

.flip-card-front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.flip-card-front-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    padding: 66px 64px;
}

.flip-card-front-box {
    border-radius: 20px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.05);
    padding: 75px 32px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.flip-card-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.flip-card-title {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
}

.flip-card-detail {
    color: #FFF;
    text-align: center;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.flip-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    background-position: center;
    background-size: cover;
}

.flip-card-back-content {
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    color: #fff;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

    .flip-card-back-content table {
        width: 100%;
        border-collapse: collapse;
        border: none;
    }

    .flip-card-back-content tr {
        border-bottom: 1px solid #FFF;
    }

        .flip-card-back-content tr:last-child {
            border-bottom: none;
        }

    .flip-card-back-content td {
        padding: 16px;
        border: none;
        color: #FFF;
        font-family: Ubuntu;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

        .flip-card-back-content td:first-child {
            text-align: left;
        }

        .flip-card-back-content td:last-child {
            text-align: right;
        }

.flip-card-info {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.flip-card-info-text {
    color: #616161;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}
/* FlipCardWrapper - End */
/* PlatformCardWrapper */
.platform-card-banner {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}



.platform-card-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.platform-card {
    flex: 1 1 calc((100% - 40px) / 2);
    max-width: calc((100% - 40px) / 2);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    background: radial-gradient(50% 50% at 50% 50%, #05417C 0%, #003971 100%);
}

.platform-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 32px 24px 0 24px;
    border-radius: 16px;
}

.platform-card__title {
    color: #fff;
    text-align: center;
    font-family: Ubuntu;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    margin: 0 0 16px 0;
    width: 100%;
}

.platform-card__description {
    color: #fff;
    text-align: center;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin: 0 0 24px 0;
}

.platform-card__button {
    display: flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 193px;
    gap: 8px;
    border-radius: 50px;
    background: #FFF;
    color: #003971;
    text-align: center;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin: 0 0 32px 0;
}

    .platform-card__button:hover {
        background: #1366B2;
        color: #ffffff;
    }

.platform-card__image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.platform-card__image {
    width: 100%;
    max-width: 240px;
    max-height: 180px;
    height: auto;
    object-fit: none;
    overflow: visible;
}

.platform-card__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #FFF;
    text-align: center;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 32px 0px;
    border-top: 1px solid #004990;
}

    .platform-card__banner.last {
        margin-top: auto;
    }

    .platform-card__banner a {
        color: #FFF;
        font-family: Ubuntu;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }



.platform-card__download-banner {
    display: flex;
    width: 100%;
    padding: 16px 32px;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: #FFF;
    text-align: center;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    background: rgba(255, 255, 255, 0.10);
    margin-top: auto;
}

.platform-card__store-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
    width: 120px;
    height: 40px;
    object-fit: contain;
}

    .platform-card__store-link:hover {
        opacity: 0.8;
    }

.platform-card__store-badge {
    width: auto;
    object-fit: contain;
}

@media (max-width: 948px) {
    .platform-card-banner-title {
        font-size: 26px;
        line-height: 32px;
    }

    .platform-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
        padding: 32px 20px;
    }

    .platform-card__title {
        font-size: 22px;
        line-height: 28px;
    }

    .platform-card__description {
        font-size: 14px;
        line-height: 20px;
    }
}
/* PlatformCardWrapper - End */
/* RouteCardWrapper */
.route-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

    .route-card-wrapper .title {
        color: #003971;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px;
    }

.route-card-wrapper-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.route-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: visible;
    background: #FFF;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.3s ease;
}

    .route-card:hover {
        box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.14);
    }

.route-card__image-wrapper {
    width: 100%;
    height: 247px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    flex-shrink: 0;
}

.route-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-card__content {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 auto;
    background: #FFF;
    border-radius: 0 0 24px 24px;
}

.route-card__title {
    color: #003971;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.route-card__description {
    color: #212121;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    text-overflow: ellipsis;
    min-height: 0;
}

.route-card__button {
    display: flex;
    width: fit-content;
    padding: 7px 12px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    background: #003971;
    color: #FFF;
    font-family: Ubuntu;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
}

    .route-card__button:hover {
        background: #1366B2;
        color: #FFF;
    }

@media (max-width: 1298px) {
    .route-card-wrapper-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .route-card-wrapper-row {
        grid-template-columns: 1fr;
    }

    .route-card-wrapper .title {
        font-size: 26px;
        line-height: 32px;
    }

    .route-card__image-wrapper {
        height: 180px;
    }

    .route-card__content {
        padding: 16px;
    }
}
/* RouteCardWrapper - End */
/* Branches */

.branches-map-banner {
    width: 100%;
    margin: 0 auto 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    background-image: url("../assets/images/banner-background.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.branches-map {
    width: 100%;
    max-width: 752px;
}

    .branches-map svg {
        width: 100%;
        height: auto;
        display: block;
    }

        .branches-map svg g path,
        .branches-map svg g polygon {
            fill: #BDBDBD;
            stroke: #fff;
            stroke-width: 2;
            transition: fill 0.3s ease;
        }

        .branches-map svg g.branch-active path,
        .branches-map svg g.branch-active polygon {
            fill: #004990;
        }

.branches-directorate {
    margin-bottom: 70px;
    width: 100%;
}



.branches-directorate__grid {
    display: flex;
    gap: 24px;
    width: 100%;
}

.branches-card {
    width: 100%;
    height: 288px;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid var(--Default-300, #E0E0E0);
}

.branches-card__name {
    color: #fff;
}

.branches-card__header {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 16px;
    background: #003971;
    font-family: Ubuntu;
    text-align: center;
    /* Button/Huge */
    font-family: Ubuntu;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}


.branches-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
    align-self: stretch;
}

    .branches-card__body p {
        margin: 0;
        font-family: Ubuntu;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        color: #212121;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

.branches-card-body-row {
    gap: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.branches-card__phone a,
.branches-card__mail a {
    gap: 8px;
    color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .branches-card__phone a:hover,
    .branches-card__mail a:hover {
        color: #003971;
        text-decoration: underline;
    }

.branches-title {
    color: #004990;
    /* Headline/Medium/H6 */
    font-family: Ubuntu;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    width: 100%;
}

.branches-filter {
    display: flex;
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    background: #F3F7FB;
    margin-bottom: 24px;
    align-items: flex-start;
    gap: 24px;
}

.branches-filter__fields {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-end;
    width: 100%;
}

.branches-filter__field {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 6px;
}

.branches-filter__field--grow {
    flex: 1;
    min-width: 200px;
}

.branches-filter__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

    .branches-filter__input-wrapper .branches-filter__input {
        width: 100%;
        padding-right: 40px;
    }

.branches-filter__search-icon {
    position: absolute;
    right: 12px;
    color: #A8A9AC;
    pointer-events: none;
}


.branches-filter__select,
.branches-filter__input {
    width: 100%;
    height: 42px;
    border: 1px solid #BDBDBD;
    border-radius: 8px;
    padding: 0 12px;
    font-family: 'Ubuntu';
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #212121;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 180px;
}

    .branches-filter__select:focus,
    .branches-filter__input:focus {
        border-color: #003971;
        box-shadow: 0 0 0 3px rgba(0, 57, 113, 0.12);
    }

    .branches-filter__input::placeholder {
        color: #9e9e9e;
        opacity: 1;
    }

.branches-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1580px) {
    .branches-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1180px) {
    .branches-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 660px) {
    .branches-list {
        grid-template-columns: 1fr;
    }
}

.branches-empty {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 60px 16px;
    min-height: 200px;
}

    .branches-empty p {
        color: #616161;
        font-family: Ubuntu;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
    }

@media (max-width: 948px) {
    .branches-filter {
        padding: 16px;
    }

    .branches-filter__fields {
        flex-direction: column;
    }

    .branches-filter__field {
        width: 100%;
    }

    .branches-directorate__title {
        font-size: 20px;
        line-height: 28px;
    }

    .branches-card__body {
        padding: 12px 16px;
    }

    .branches-card__header {
        padding: 12px 16px 10px;
    }
}
/* Branches - End */
/* Accordion */
.tb-accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

    .tb-accordion .accordion-header {
        width: 100%;
    }

.tb-accordion__title {
    color: #003971;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.tb-accordion__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.tb-accordion__item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    border-top: 1px solid #E0E0E0 !important;
    border-bottom: 1px solid #E0E0E0 !important;
    border-left: 1px solid #E0E0E0 !important;
    border-right: 1px solid #E0E0E0 !important;
    background: #FFF;
}

.tb-accordion__button {
    color: #212121;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    width: 100%;
    background-color: #ffffff;
    padding: 16px;
}

    .tb-accordion__button:not(.collapsed) {
        background-color: transparent;
        color: #004990;
        box-shadow: none;
    }

    .tb-accordion__button:focus {
        box-shadow: none;
    }

    .tb-accordion__button::after {
        background-image: url(/assets/icons/angle-right-blue.svg);
        background-size: 24px;
        height: 24px;
        width: 24px;
        transform: rotate(90deg);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .tb-accordion__button:not(.collapsed)::after {
        background-image: url(/assets/icons/angle-right-blue.svg);
        transform: rotate(-90deg);
    }

.tb-accordion__body {
    color: #212121;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0 16px 16px;
    width: 100%;
}

@media (max-width: 948px) {
    .tb-accordion__title {
        font-size: 26px;
        line-height: 32px;
    }

    .tb-accordion__button {
        font-size: 18px;
        line-height: 24px;
    }
}
/* Accordion - End */
/* Market Analysis Reports - Filter */
.rr-filter {
    display: flex;
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    background: #F3F7FB;
    margin-bottom: 60px;
}

.rr-filter__fields {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.rr-filter__field {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
    position: relative;
}
/* Month/Year navigator */
.rr-filter__month-year {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    height: 48px;
    padding: 0;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background-color: #fff;
    flex: 0 0 0;
    min-width: 0;
    opacity: 0;
    transition: flex 0.3s ease, opacity 0.3s ease, padding 0.3s ease, min-width 0.3s ease, margin 0.3s ease;
    white-space: nowrap;
    margin-left: -24px;
}

    .rr-filter__month-year.is-expanded {
        flex: 1 1 0;
        min-width: 200px;
        opacity: 1;
        margin-left: 0;
        padding: 14px 16px;
    }

.rr-nav-btn {
    display: flex;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border: none;
    color: #212121;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

    .rr-nav-btn:hover {
        background-color: #F3F7FB;
        border-color: #003971;
        color: var(--color-secondary);
    }

.rr-month-year-label {
    min-width: 100px;
    flex: 1 1 auto;
    text-align: center;
    font-family: 'Ubuntu';
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: #212121;
    white-space: nowrap;
}

.rr-apply-btn {
    display: flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    border: none;
    background-color: var(--color-secondary);
    color: #ffffff;
    font-family: 'Ubuntu';
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: stretch;
}

    .rr-apply-btn:hover {
        background-color: #003971;
    }
/* >1200px: not expanded => dropdown takes 50% available, button right-aligned via space-between */
@media (min-width: 1201px) {
    .rr-filter__fields {
        justify-content: space-between;
    }

    .rr-filter__field {
        flex: 0 1 50%;
        max-width: 50%;
    }
    /* When month-year is expanded, dropdown + month-year share space equally */
    .rr-filter__month-year.is-expanded ~ .rr-apply-btn {
        /* button stays max-width:200px */
    }

    .rr-filter__month-year.is-expanded {
        flex: 1 1 0;
    }
    /* When expanded: dropdown and month-year each get equal flex */
    .rr-filter__field:has(~ .rr-filter__month-year.is-expanded) {
        flex: 1 1 0;
        max-width: none;
    }
}
/* <=1200px: stack vertically */
@media (max-width: 1200px) {
    .rr-filter {
        padding: 22px;
    }

    .rr-filter__fields {
        flex-direction: column;
        align-items: stretch;
    }

    .rr-filter__field {
        width: 100%;
        flex: none;
    }

    .rr-filter__month-year {
        margin-left: 0;
        height: 0;
        border-color: transparent;
    }

        .rr-filter__month-year.is-expanded {
            height: 48px;
            min-width: 0;
            border-color: #E0E0E0;
            min-height: 48px;
        }

    .rr-apply-btn {
        max-width: 100%;
    }
}

@media (max-width: 948px) {
    .rr-filter {
        padding: 16px;
    }

    .rr-filter__month-year.is-expanded {
        flex-wrap: wrap;
        height: auto;
        justify-content: center;
    }

    .rr-report-item {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .rr-report-item__title {
        white-space: normal;
    }
}
/* Category buttons */


.rr-categories::-webkit-scrollbar {
    display: none;
}
/* Category buttons */
.rr-categories-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
}

.rr-categories {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
}

    .rr-categories::-webkit-scrollbar {
        display: none;
    }

.rr-categories__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

    .rr-categories__arrow img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .rr-categories__arrow.is-visible {
        display: flex;
    }

.rr-categories__arrow--left {
    right: 100%;
    margin-right: 6px;
}

.rr-categories__arrow--right {
    left: 100%;
    margin-left: 6px;
}

.rr-category-btn {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #237BCB;
    background: #ffffff;
    color: #003971;
    font-family: 'Ubuntu';
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
    flex: 0 0 auto;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .rr-category-btn:hover {
        background-color: #F3F7FB;
    }

    .rr-category-btn.is-active {
        color: #ffffff;
        background: #004990;
        border-color: #004990;
    }
/* Loading */
.rr-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0;
}

.rr-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #E0E0E0;
    border-top-color: #004990;
    border-radius: 50%;
    animation: rr-spin 0.8s linear infinite;
}

@keyframes rr-spin {
    to {
        transform: rotate(360deg);
    }
}
/* Error */
.rr-error {
    display: flex;
    justify-content: center;
    padding: 24px 16px;
    color: #b42318;
    font-family: 'Ubuntu';
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
}
/* Report list */
.rr-report-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

    .rr-report-list > hr {
        margin: 0 !important;
    }

.rr-report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    border: none;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.15s ease;
    text-align: left;
    gap: 24px;
    font-family: 'Ubuntu';
}

    .rr-report-item:hover {
        background-color: #F3F7FB;
    }

    .rr-report-item:focus-visible {
        outline: 2px solid #004990;
        outline-offset: -2px;
    }

.rr-report-item__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 0;
    min-width: 0;
}

.rr-report-item__title {
    color: #616161;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rr-report-item__date {
    color: #616161;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
}

.rr-report-item__icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    object-fit: contain;
}
/* Pagination disabled state */
/* Pagination disabled state */
.rr-disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.rr-ellipsis {
    border-color: transparent;
    cursor: default;
    pointer-events: none;
    background: transparent;
}
/* Market Analysis Reports - End */
/* MAR Dropdown */
.mar-dropdown {
    position: relative;
    width: 100%;
}

.mar-dropdown__toggle {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #BDBDBD;
    padding: 10px 36px 10px 10px;
    font-family: 'Ubuntu';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #212121;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: border-color 0.3s ease;
}

    .mar-dropdown__toggle:focus {
        outline: none;
        border-color: #003971;
    }

.mar-dropdown.is-open .mar-dropdown__toggle {
    border-color: #003971;
    border-radius: 8px 8px 0 0;
}

.mar-dropdown__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mar-dropdown__icon {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 12px;
    height: 12px;
    background-image: url('/assets/icons/angle-right-blue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.mar-dropdown.is-open .mar-dropdown__icon {
    transform: translateY(-50%) rotate(-90deg);
}

.mar-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #ffffff;
    border: 1px solid #003971;
    border-top: none;
    border-radius: 0 0 8px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #BDBDBD transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mar-dropdown.is-open .mar-dropdown__menu {
    display: block;
}

.mar-dropdown__item {
    padding: 10px 12px;
    font-family: 'Ubuntu';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #212121;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .mar-dropdown__item:hover {
        background-color: #F3F7FB;
        color: var(--color-secondary);
    }

    .mar-dropdown__item.is-selected {
        background-color: #F3F7FB;
        color: var(--color-secondary);
        font-weight: 500;
    }

    .mar-dropdown__item:last-child {
        border-radius: 0 0 8px 8px;
    }
/* MAR Dropdown - End */
/* ═══════════════════════════════════════════
   Announcements - Row List
   ═══════════════════════════════════════════ */

.announcements {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.announcements__title {
    color: #003971;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.announcements__see-all {
    color: #787878;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.announcements__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

    .announcements__list > hr {
        margin: 0 !important;
    }

.announcements__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    gap: 24px;
    text-decoration: none;
    font-family: 'Ubuntu';
    cursor: pointer;
    transition: background-color 0.15s ease;
}

    .announcements__row:hover {
        background-color: #F3F7FB;
    }

    .announcements__row:focus-visible {
        outline: 2px solid #004990;
        outline-offset: -2px;
    }

.announcements__row-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 0;
    min-width: 0;
}

.announcements__row-title {
    color: #616161;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.announcements__row-date {
    color: #616161;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
}

.announcements__row-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}
/* Empty state */
.announcements__empty {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 60px 16px;
    min-height: 200px;
}

    .announcements__empty p {
        color: #616161;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
    }
/* Pagination */
.announcements__pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
}

.announcements__pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.announcements__pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcements__pagination-link {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background-color: #ffffff;
    color: #212121;
    font-family: 'Ubuntu';
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

    .announcements__pagination-link:hover {
        background-color: #F3F7FB;
        color: var(--color-secondary);
    }

.announcements__pagination-item--active .announcements__pagination-link,
.announcements__pagination-link--current {
    background-color: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-secondary);
    cursor: default;
}
/* ═══════════════════════════════════════════
   Announcement Detail Page
   ═══════════════════════════════════════════ */

.ann-detail {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.ann-detail__header {
    display: flex;
    align-items: center;
}

.ann-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #004990;
    font-family: 'Ubuntu';
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .ann-detail__back:hover {
        color: #003971;
    }

.ann-detail__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.ann-detail__title {
    color: #003971;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    margin: 0;
}

.ann-detail__date {
    color: #616161;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.ann-detail__body {
    color: #212121;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 948px) {
    .announcements__title {
        font-size: 26px;
        line-height: 32px;
    }

    .announcements__see-all {
        font-size: 14px;
        line-height: 20px;
    }

    .announcements__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .announcements__row-title {
        white-space: normal;
        font-size: 18px;
        line-height: 24px;
    }

    .announcements__pagination {
        padding: 24px 0;
    }

    .announcements__pagination-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .ann-detail__title {
        font-size: 26px;
        line-height: 32px;
    }
}
/* Announcements - End */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}


.cookie-icon {
    display: block;
    position: fixed;
    bottom: 20px;
    cursor: pointer;
    left: 20px;
    z-index: 9999999;
}

.cookie-banner {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999998;
    color: #000;
    background-color: #ffffff !important;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    display: none;
}

    .cookie-banner .cookie-banner-content {
        width: 100%;
        display: flex;
        flex-flow: row;
        align-items: center;
    }

@media(max-width: 1424px) {
    .cookie-banner .cookie-banner-content {
        width: 100%;
        display: flex;
        flex-flow: row;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

.cookie-banner .text-content {
    padding-right: 24px;
}

    .cookie-banner .text-content a {
        color: #004990;
        text-decoration: underline;
        font-weight: 500;
        cursor: pointer;
    }

.cookie-banner .cookie-btns {
    display: flex;
    flex-flow: row;
    align-items: center;
}

    .cookie-banner .cookie-btns .cookie-btn {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #fff;
        padding: 10px 20px;
        background: #004990;
        border: 1px solid #004990;
        border-radius: 10px;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        width: max-content;
    }

    .cookie-banner .cookie-btns .cookie-btn-bordered {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #212121;
        padding: 10px 20px;
        background: #ffffff;
        border: 1px solid #212121;
        border-radius: 10px;
        text-align: center;
        margin-right: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        width: max-content;
    }

@media(max-width:1424px) {
    .cookie-banner .cookie-btns .cookie-btn-bordered {
        width: 100%;
    }

    .cookie-banner .cookie-btns .cookie-btn {
        width: 100%;
    }

    .cookie-banner .cookie-btns {
        flex-direction: column;
        width: 100%;
    }
}

.cookie-modal-content {
    font-size: 16px;
    line-height: 22px;
    background-color: white;
    color: #212121;
    width: 100%;
    max-height: 80dvh;
    margin-left: clamp(16px, 13.33vw, 267px);
    margin-right: clamp(16px, 13.18vw, 267px);
    padding: 24px;
    gap: 4px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow-y: auto;
    height: fit-content;
}

    .cookie-modal-content a, .cookie-modal-content h3 {
        color: #003971;
        font-weight: 500;
    }



.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

    .cookie-option.last-child {
        border-bottom: 0px solid #e0e0e0 !important;
    }

.option-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .option-text-wrap > strong {
    }

.onoffswitch {
    position: relative;
    width: 48px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #ffffff;
    border-radius: 24px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.1s ease-in 0s;
}

    .onoffswitch-inner:before,
    .onoffswitch-inner:after {
        display: block;
        float: left;
        width: 44px;
        height: 24px;
        padding: 0;
        line-height: 24px;
        font-size: 11px;
        color: white;
        box-sizing: border-box;
    }

    .onoffswitch-inner:before {
        content: "";
        padding-left: 6px;
        background-color: #004990;
        color: #ffffff;
    }

    .onoffswitch-inner:after {
        content: "";
        padding-right: 6px;
        background-color: #eeeeee;
        color: #999999;
        text-align: right;
    }

.onoffswitch-switch {
    display: block;
    width: 20px;
    margin: 4px;
    background: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    border: 2px solid #ffffff;
    border-radius: 24px;
    transition: all 0.1s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

    .cookie-buttons button.filled {
        font-size: 16px;
        width: fit-content;
        text-align: start;
        word-wrap: break-word;
        text-decoration: none;
        line-height: 22px;
        padding: 10px 16px;
        border-radius: 8px;
        border-width: 0px;
        color: white;
        gap: 8px;
        background-color: #004990;
    }

    .cookie-buttons button.bordered {
        display: flex;
        font-size: 16px;
        text-align: start;
        justify-content: center;
        word-wrap: break-word;
        white-space: nowrap;
        text-decoration: none;
        line-height: 22px;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 8px;
        border-width: 1px;
        border-color: #212121;
        color: #212121;
        background-color: transparent;
    }

@media(max-width:1423px) {
    .cookie-modal-content {
        margin-left: 16px;
        margin-right: 16px;
    }

    .cookie-option {
        align-items: flex-start;
    }

    .cookie-buttons button.bordered {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .cookie-buttons button.filled {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
/* Demo Account Success Toast */
#demoSuccessToast {
    background-color: #ffffff;
    opacity: 1;
    padding: 6px 12px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

    #demoSuccessToast .toast-body {
        font-family: 'Ubuntu';
        font-size: 18px;
        color: #27AE60;
    }
