:root {
    --highlight-sky: #ceedf6;
    --neutral-grey: #e1e1de;
    --dark-grey: #8a8a8a;
    --primary-blue: #00196e;
    --white: #ffffff;
    --black: #222;
    --background-banner: var(--Highlight-Sky, #CEEDF6);
    --secondary-gold: #FFAD1D
}

@font-face {
    font-family: "Halyard Display Book";
    src: url(../css/megamenu-pro/fonts/HalyardDisplayBook.woff2)format("woff2"), url(../css/megamenu-pro/fonts/HalyardDisplayBook.woff)format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

/* sidebar */

.sidebar .sidebar__scroll {
    overflow-y: auto;
    padding-bottom: 80px;
    height: 100%;
}

.sidebar .sidebar__scroll::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.sidebar .sidebar__menu {
    list-style: none;
    padding-left: 20px;
}

.sidebar .sidebar__menu li a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #8a8a8a;
    margin-bottom: 12px;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s linear;
}

.sidebar .sidebar__custom {
    position: relative;
    height: calc(100% - 150px);
}

.sidebar .sidebar__custom::after {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%);
    content: '';
    display: block;
    height: 80px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.sidebar .sidebar__custom .sidebar__custom-header {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #8a8a8a;
    margin-bottom: 16px;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s linear;

    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar .sidebar__custom .sidebar__custom-header img {
    display: none;
    transform: rotate(-90deg);
    transition: all 0.3s linear;
}

.sidebar .sidebar__custom .sidebar__custom-header.show img {
    display: block;
}

.sidebar .sidebar__custom .sidebar__custom-header.active img {
    transform: rotate(90deg);
    transition: all 0.3s linear;
}

.sidebar .sidebar__custom .sidebar__custom-item:not(:first-child) .sidebar__menu {
    display: none;
}

.sidebar .sidebar__sections {
    margin-bottom: 60px;
}

.sidebar .sidebar__sections .sidebar__sections--item:first-child {
    display: none;
}

.sidebar .sidebar__sections--wrap .sidebar__sections--item a {
    color: #00196e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar .sidebar__sections--wrap .sidebar__sections--item ul {
    list-style: none;
    padding-left: 20px;
}

.sidebar .sidebar__sections--wrap .sidebar__sections--item a img {
    display: none;
}

.sidebar .sidebar__sections--wrap .sidebar__sections--item.active a img {
    transform: rotate(-180deg);
    transition: all 0.3s linear;
}

.sidebar .sidebar__sections--wrap .sidebar__sections--item.show a img {
    display: block;
    transition: all 0.3s linear;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #888;
}

.sidebar .sidebar__buttons {
    padding-top: 12px;
    border-top: 1px solid #e1e1e1;
}

.hero .hero__banner .hero__banner-dk {
    max-width: 100%;
    height: 400px;
    padding: 56px 0;
    background-color: var(--background-banner);
}

.hero .hero__banner::after {
    display: none
}

.hero .hero__content {
    max-width: 740px;
    min-height: 288px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px
}


.hero .hero__content .hero__heading {
    color: var(--Primary-Blue, #00196E);
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Garamond Premier Pro";
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    text-shadow: none;
}


/* Content */



.content__container section:not(:last-child) {
    padding-bottom: 100px;
}


.body__container {}



.introduce .title {
    margin-bottom: 36px;
}





.title {
    color: var(--primary-blue, #00196e);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: 'garamond-premier-pro';
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    margin: 0;
    margin-bottom: 36px;
}



.desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.desc p {
    color: var(--Black, #222);
    font-family: 'Halyard Text';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}



/* Avatar */

.teams__container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 36px;
    gap: 32px;
    row-gap: 48px;
}


.teams__container.divide {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}



.teams__container.divide .team__pack-area .team__pack-content img {
    width: 116px;
    height: 116px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.teams__container.divide .team__pack-area .team__pack-content {
    padding: 0;
    text-align: center;
}

.teams h3.subtitle {
    color: var(--Primary-Blue, #00196E);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: 'halyard-display', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 60px;
    margin-bottom: 24px;
}


.teams h2.title+h3.subtitle {
    margin-top: 0;
}


.teams__container .team__pack-area {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}


.teams__container .team__pack-area .team__pack-content {
    padding: 0 32px;
    text-align: center;
}


.teams__container .team__pack-area .team__pack-content img {
    width: 158px;
    height: 158px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}



.teams__container .team__pack-area .person-name {
    color: var(--Primary-Blue, #00196E);
    text-align: center;
    font-family: "Halyard Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}


.teams__container .team__pack-area .person-position {
    color: var(--Dark-Grey, #8A8A8A);
    text-align: center;
    font-family: "Halyard Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 490;
    line-height: 24px;
    /* 150% */
}




.sectionImage {
    margin-top: 36px;
}


.sectionImage img {
    width: 100%;
}


.visiting__container h3:first-child {
    margin-top: 24px;
}

.visiting__container h3 {
    color: var(--Primary-Blue, #00196E);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: 'halyard-display', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 36px;
    margin-top: 60px;
}



.visiting__table {
    width: 100%;
    box-sizing: border-box;
    border-collapse: collapse;
}



.visiting__table-row--body {
    border-bottom: 1px solid var(--Neutral-Grey, #E1E1DE);
}


.visiting__table-row {
    color: var(--Black, #222);
    font-family: 'Halyard Text';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 16px;
}


.visiting__table .visiting__table-row--body .visiting__table-row td {
    border-top: 1px solid var(--Neutral-Grey, #E1E1DE);
    width: 40%;
    padding: 0;
    padding-right: 36px
}


.visiting__table .visiting__table-row--body .visiting__table-row td:nth-child(2) {
    color: var(--Primary-Blue, #00196E);
    font-family: 'Halyard Text';
    font-size: 16px;
    font-style: normal;
    font-weight: 490;
    line-height: 24px;
    width: 60%;
}








.visiting__table .visiting__table-row--body .visiting__table-row a {
    color: var(--Black, #222);
    font-family: 'Halyard Text';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: block;
    padding: 12px 0px;
}


.visiting__table .visiting__table-row--body .visiting__table-row td:nth-child(2) a {
    color: var(--dark-grey);
    width: 100%;
}


.visiting__table .visiting__table-row--body .visiting__table-row:hover {
    background: var(--Neutral-Grey, #E1E1DE);
}



h3.team_subtitle {
    color: var(--Primary-Blue, #00196E);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: 'halyard-display', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 60px;
    margin-bottom: 32px;
}



.amount {
    padding: 0px 0px 100px;
    margin-top: 160px;
    border-top: 1px solid #e1e1de;
    position: relative;
}


@media (max-width : 991px) {




    .hero .hero__banner .hero__banner-tl {
        height: 320px;
        padding: 0 123px 36px 123px;
        background-color: var(--background-banner);
    }


    .hero .hero__content .hero__heading {
        font-size: 60px;
        line-height: 64px;
    }


    .breadcumb__global {
        border-bottom: none
    }


    .applying__breadcumb {
        padding: 24px 0 0px;
    }

    .content__container {
        padding: 36px 0 0px;
        max-width: 734px;
        margin: 0 auto;
    }


    /* .section-content {
        width: 522px;
        margin: 0 auto;
    } */



    .section-content {
        width: 522px;
        margin: 0 auto;
    }


    .section-content.team {
        width: 100%;
    }


    .title {
        width: 522px;
        margin: 0px auto 36px;
    }


    .desc {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 522px;
        margin: 0px auto;
    }

    .teams__container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        row-gap: 48px;
    }



    .teams__container.divide {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 36px;
        row-gap: 36px;
    }


    .amount {
        padding: 100px 0px 80px;
        margin-top: 140px;
    }


    .james__news .james__news--list .james_col-4:nth-child(3) {
        display: none;
    }

    .james__news .james__news--list .james_col-4 {
        max-width: 50%;
        width: 50%;
    }


    .james__news .james__news--list {
        max-width: 85%;
        margin: 0 auto;
        margin-bottom: 60px;
    }


    .james__connect .james__connect--list {
        max-width: 85%;
        margin: 0 auto;
    }


    .james__connect .james__connect--list .james_col-4 {
        flex-shrink: 0;
        width: 50%;
        max-width: 50%;
        padding-right: 18px;
        padding-left: 18px;
    }



    /* Sidebar */
    .sidebar__buttons--title {
        width: 100%;
    }

    .sidebar .sidebar__buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 12px;
        border-top: 1px solid #e1e1e1;
        gap: 12px;
    }


    .sidebar__buttons .sidebar__buttons--link {
        width: 48%;
        margin-bottom: 24px;
    }

    /* .sidebar.active {
        top: calc(100% - 540px);
    } */



    .sidebar .sidebar__sections {
        margin-bottom: 0px;
    }


    .sidebar__sections--title {
        padding: 0px 24px;
        margin-bottom: 0px;
    }


    .sidebar .sidebar__sections--wrap .sidebar__sections {
        border-top: none;
    }



    .sidebar .sidebar__sections--wrap {
        position: relative;
    }


    .sidebar .sidebar__sections--wrap::before {
        display: block;
        content: '';
        width: 100%;
        height: 70px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .sidebar .sidebar__sections--wrap.scrolled-hidden::before {
        display: none;
    }



    .sidebar .scroll-mb {
        max-height: calc(454px - 66px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .sidebar .sidebar__sections {
        max-height: fit-content;
        overflow-y: unset;
        margin-bottom: 0px;
        border-top: 0px;
    }

    .sidebar__sections--title {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .sidebar .sidebar__buttons {
        padding-bottom: 24px;
        padding-top: 24px;
    }




}



@media (max-width : 576px) {



    .hero .hero__banner .hero__banner-mb {
        height: 320px;
        padding: 0 16px 36px;
        background-color: var(--background-banner);
    }


    .hero .hero__content .hero__heading {
        font-size: 48px;
        line-height: 52px;
    }


    .applying__breadcumb {
        padding: 18px 0 0px;
    }



    .content__container {
        padding: 62px 0 0px;
        max-width: 423px;
        margin: 0 auto;
    }


    .section-content {
        width: 360px;
        margin: 0 auto;
    }

    .title {
        width: 360px;
        margin: 0px auto 24px;
    }


    .desc {
        width: 360px;
        margin: 0px auto;
    }


    .section-content.team {
        width: 100%;
    }


    .teams__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .teams__overflow {
        position: relative;
        max-width: 100%;
    }

    .teams__container.divide {
        grid-template-columns: repeat(11, 1fr);
        gap: 36px;
        row-gap: 36px;
        overflow-x: auto;
        max-width: 100%;
        padding-right: 50px;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }


    .teams__container.divide::after {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        z-index: 1;
        height: 100%;
        right: -1px;
    }


    .teams__container .team__pack-area .team__pack-content img {
        width: 110px;
        height: 110px;
        object-fit: cover;
    }

    .james__news .james__news--list .james_col-4 {
        max-width: 100%;
        width: 100%;
    }


    .james__connect .james__connect--list .james_col-4 {
        width: 100%;
        max-width: 100%;
    }

    .sidebar__buttons .sidebar__buttons--link {
        width: 100%;
        margin-bottom: 0px !important;
    }

    .sidebar .sidebar__buttons {
        gap: 16px;
    }

    .sidebar.active {
        top: calc(100% - 454px);
    }

    /* .sidebar.active {
        top: calc(100% - 504px) !important;
    } */

    /* .sidebar .sidebar__sections {
        max-height: 130px;
    } */



    .sidebar .sidebar__sections--wrap::before {
        height: 100px;
    }

}