/* 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;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.opacity-0 {
    opacity: 0.5;
    cursor: not-allowed;
    user-select: none;
}

.opacity-0 select {
    cursor: not-allowed;
    user-select: none;
}

.cursor-pointer {
    cursor: pointer;
}

/* Banner */
.banner {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #f0f0f0;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.banner-image-mobile {
    display: none;
}

.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-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;
    overflow-y: auto;
    max-height: 300px;
}

.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;
}

.explore-more-item.bold {
    color: var(--dark-grey, #8a8a8a);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.next-step-item p,
.explore-more-item p {
    color: var(--dark-grey);
    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);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.explore-more-item.active a {
    color: var(--primary-blue);
}

.explore-more-item a:hover {
    color: var(--highlight-sky);
    transition: all 0.3s linear;
}

/* Next Step List */
.next-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-top: 1px solid var(--neutral-grey);
}

.next-step-item {
    margin-bottom: 12px;
}

.next-step-item:first-child {
    margin-top: 12px;
}

.next-step-item.center {
    display: flex;
    max-width: 255px;
    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, #00196e);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    text-align: center;
    padding: 8px 20px;
    border: 1px solid #00196e;
}

.next-step-item.see {
    max-width: 130px;
    margin: 36px 0;
}

.next-step-item a:hover {
    background-color: #00196e;
    color: #ffad1d;
    transition: all 0.3s linear;
}

/* Content */
.container {
    margin-bottom: 120px;
}

.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-size: 22px;
    font-style: normal;
    font-weight: 490;
    line-height: 28px;
}

.description-wrapper {
    margin-bottom: 36px;
}

.description-wrapper p {
    color: var(--black, #222);
    font-size: 24px;
    font-style: normal;
    font-weight: 350;
    line-height: 32px;
}

.description-wrapper.collapsed {
    max-height: 350px;
    overflow: hidden;
}

.backgroud-blur,
.show_hide {
    display: none;
}

.images-content {
    width: 100%;
    height: 360px;
    margin-bottom: 36px;
    object-fit: cover;
}

.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;
}

/* 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 .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;
}

.dropdown-slider__content.active {
    background-color: var(--white);
    padding: 12px;
}

.line {
    width: 100%;
    height: 1px;
    background-color: var(--neutral-grey);
    margin: 60px auto;
}

.description-gray p {
    color: var(--dark-grey, #8a8a8a);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 16px 0;
}
.description-black p {
    color: var(--black, #222);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Select */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select {
    font: 400 14px/16px 'halyard-display', sans-serif;
    position: relative;
    display: flex;
    justify-content: space-between;
    min-width: 300px;
    align-items: center;
    cursor: pointer;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--neutral-grey);
    background-color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-grey);
    transition: all 0.3s linear;
}
.custom-select.filled {
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border-bottom: 1px solid black;
}

.custom-select:focus {
    outline: none;
}

/* Responsive tablet */
@media (max-width: 1024px) {
    .slider {
        display: none;
    }

    .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);
    }

    .next-step-item.see {
        max-width: 130px;
        margin: 36px 0;
    }
}
.number_ratio {
    display: flex;
    align-items: center;
    gap: 100px;
}

/* radio */
.radio-list {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.radio-item {
    display: flex;
    align-items: center;
}
.radio-item label {
    padding-left: 8px;
}

.radio-list label.active {
    color: var(--primary-blue, #00196e);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}
.radio-list label {
    color: var(--dark-grey, #8a8a8a);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.input_fill {
    color: var(--black, #222);
    width: 352px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border: none;
    border-bottom: 1px solid var(--neutral-grey);
}
.input_fill:focus {
    outline: none;
    border-bottom: 1px solid var(--primary-blue);
}

/* table */
.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 36px;
}
.table_header {
    border-bottom: 1px solid var(--neutral-grey);
}
.table_header h3 {
    color: var(--primary-blue, #00196e);
    font-size: 18px;
    font-style: normal;
    font-weight: 490;
    line-height: 24px;
}
.table_content.blue {
    background: var(--highlight-sky, #ceedf6);
    padding: 16px 24px;
}
.table_content.gray {
    background: var(--light-grey, #f4f4f4);
    padding: 16px 24px;
}
.table_content__item.blue p {
    color: var(--primary-blue, #00196e);
    font-size: 18px;
    font-style: normal;
    font-weight: 490;
    line-height: 24px;
}
.table_content__item.gray p {
    color: var(--primary-blue, #00196e);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.table_content__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.table_content__item p:first-child {
    text-align: left;
    max-width: 400px;
}
.table_content__item p:last-child {
    text-align: right;
    min-width: 150px;
}
.table_content__item p {
    color: var(--black, #222);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.table_content__item.total p {
    color: var(--primary-blue, #00196e);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.a_download {
    color: var(--primary-blue, #00196e);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
}
.section-content.table {
    display: none;
}
.section-content.table.active {
    display: block;
}
/* 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%;
}
/* Responsive PC */
@media (max-width: 1440px) {
}
/* Responsive mobile */
@media (max-width: 768px) {
    .banner-image {
        display: none;
    }
    .banner-image-mobile {
        display: block;
        width: 100%;
        height: 320px;
        object-fit: cover;
    }
    .banner-title {
        color: var(--white, #fff);
        text-align: center;
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 52px;
    }
    .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);
    }

    .section-content .title {
        color: var(--primary-blue, #00196e);
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
    }
    .description-wrapper p {
        text-align: center;
    }
    .section-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .section-content {
        opacity: 0.5;
    }
    .section-content.active {
        opacity: 1;
    }
    .description-gray p {
        text-align: center;
    }

    .radio-list {
        flex-direction: column;
        align-items: center;
    }
    .number_ratio {
        gap: 20px;
    }
    .next-step-item.see {
        max-width: 130px;
        margin: 36px 0;
    }
}

.containerRadio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.containerRadio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containerRadio:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containerRadio input:checked ~ .checkmark {
    background-color: #00196e;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.containerRadio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.containerRadio .checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
