/* Global Styles */
:root {
    --highlight-sky: #ceedf6;
    --neutral-grey: #e1e1de;
    --dark-grey: #8a8a8a;
    --primary-blue: #00196e;
    --white: #ffffff;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

/* Banner */
.banner {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #f0f0f0;
    position: relative;
}



.banner picture {
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    /* height: 320px; */
    height: auto;
    object-fit: cover;
}

.banner-title {
    color: var(--white, #fff);
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    text-shadow: 0.5px 0.5px 24px rgba(0, 0, 0, 0.4);
    font-family: Garamond Premier Pro;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

/* Sidebar */
.slider {
    padding: 80px 36px 0 0;
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    left: 0;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Explore More List */
.explore-more-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* border-bottom: 1px solid var(--neutral-grey); */
    overflow-y: auto;
    max-height: calc(100% - 130px);
    padding-bottom: 50px;
    position: relative;
}

.explore-more-list::-webkit-scrollbar {
    display: none;
}

.explore-more-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    padding: 12px 0;
}

.next-step-item p,
.explore-more-item p {
    color: var(--dark-grey);
    font-family: Halyard Display;
    font-size: 16px;
    font-style: normal;
    margin: 0;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.explore-more-item a {
    color: var(--dark-grey, #8a8a8a);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.explore-more-item.active a {
    color: var(--primary-blue);
}

.explore-more-item a:hover {
    color: var(--primary-blue);
    transition: all 0.3s linear;
}

/* Next Step List */
.next-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* overflow: hidden; */
    padding-top: 12px;
    border-top: 1px solid #e1e1e1;
    position: relative;
}

.next-step-list::before {
    content: '';
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), #fff);
    position: absolute;
    bottom: calc(100% + 0.5px);
    left: 0;
    z-index: 2;
}

.next-step-item {
    margin-bottom: 12px;
}

.next-step-item.center {
    display: flex;
    max-width: 330px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--neutral-grey);
}

.next-step-item.center a {
    color: var(--primary-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    text-align: center;
    padding: 8px 20px;
}

.next-step-item.see {
    max-width: 115px;
}

.next-step-item.apply a {
    color: var(--primary-blue, #00196e);
    font-size: 18px;
    font-style: normal;
    font-weight: 490;
    line-height: 24px;
    border: 1px solid #00196e;
    padding: 12px 24px;
}

.next-step-item a:hover {
    background-color: #00196e;
    color: #ffad1d;
    transition: all 0.3s linear;
}

/* Content */
.content {}

.content-wrapper {
    margin: 0 95px;
    margin-top: 80px;
}

.title-header {
    color: var(--primary-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 350;
    line-height: 32px;
    margin-bottom: 36px;
}

.title {
    color: var(--primary-blue, #00196e);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Garamond Premier Pro;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
}

.description-wrapper {
    margin-bottom: 36px;
}

.description-wrapper p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

.images-content {
    width: 100%;
    min-height: 200 px;
    margin-bottom: 36px;
    object-fit: contain;
}

.btn-more-wrap {
    margin-bottom: 36px;
}

.btn-more {
    color: var(--primary-blue);
    leading-trim: both;
    text-edge: cap;
    font-size: 18px;
    font-style: normal;
    font-weight: 490;
    line-height: 16px;
}

.btn-more img {
    transform: translateY(1px);
    transition: all 0.3s linear;
}

.btn-more:hover img {
    padding-left: 5px;
    transition: all 0.3s linear;
}

/* drown slider*/
.dropdown-slider {
    display: none;
}

.dropdown-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    border-top: 1px solid var(--neutral-grey);
    border-bottom: 1px solid var(--neutral-grey);
    cursor: pointer;
}

.dropdown-slider__header__title {}

.dropdown-slider__header__title .title {
    color: var(--primary-blue);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.dropdown-slider__header__icon {
    transform: rotate(180deg);
    transition: all 0.3s linear;
}

.dropdown-slider__header__icon.active {
    transform: rotate(0deg);
    transition: all 0.3s linear;
}

.dropdown-slider__content {
    display: none;
    transition: all 0.3s linear;
}

.dropdown-slider__content.active {
    display: block;
    background-color: var(--white);
    padding: 12px;
    transition: all 0.3s linear;
}

/* Responsive PC */
@media (max-width: 1440px) {}

/* Responsive tablet */
@media (max-width: 1024px) {
    .slider {
        display: none;
    }

    .banner-image {
        height: 320px;
    }

    .dropdown-slider {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background-color: var(--white);
        transition: all 0.3s linear;
    }

    .content-wrapper {
        margin: 0;
        margin-top: 30px;
    }

    .explore-more-list {
        margin: 0;
    }

    .next-step-item.center {
        min-width: 100%;
    }

    .next-step-list {
        background-color: var(--neutral-grey);
    }

    .dropdown-slider__content.active {
        padding: 0;
    }

    .content ul {
        padding: 24px;
    }

    .next-step-item.center {
        border: 1px solid var(--primary-blue);
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    .title {
        color: var(--primary-blue, #00196e);
        font-family: Garamond Premier Pro;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 40px;
    }

    .content-wrapper {
        margin: 0;
        margin-top: 30px;
    }

    .explore-more-list {
        margin: 0;
    }

    .next-step-item.center {
        min-width: 100%;
    }

    .next-step-list {
        background-color: var(--neutral-grey);
    }

    .dropdown-slider__content.active {
        padding: 0;
    }

    .content ul {
        padding: 24px;
    }

    .next-step-item.center {
        border: 1px solid var(--primary-blue);
    }
}

/* Youtube */

.youtube-container {
    position: relative;
    padding-bottom: 56.25%;
    /* scale 16:9: (9 / 16) * 100 = 56.25% */
    height: 0;
    overflow: hidden;
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}