* {
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}



.top-banner {
    position: relative;
    width: 100%;
    padding: 100px 60px;
    display: flex;
    justify-content: center;
}

.top-banner .banner-inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* .top-banner .banner-inner h1
{
    font-size: 48px; 
    font-weight: 600;
    color: #3A4775; 
    margin: 0;
} */
/* .top-banner .banner-inner p
{
    font-size: 24px; 
    line-height: 36px;
    margin-top: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.50);  
} */




.body-content {
    position: relative;
    width: 1400px;
    padding: 50px 60px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.body-content .left_content {
    position: relative;
    width: 375px;
    min-height: 200px;
    padding: 0px 20px;
}

.body-content .left_content .content_inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.body-content .left_content .content_inner label {
    position: relative;
    width: max-content;
    margin-bottom: 20px;
    padding: 15px 25px;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    color: #3A4775;
    border-radius: 10px;
    border: 1px solid rgba(58, 71, 117, 0.25);
    background: #FFF;
    cursor: pointer;
}

.body-content .left_content .content_inner label.isActive {
    position: relative;
    background: #3A4775;
    border: 1px solid #3A4775;
    color: #FFF;
}


.body-content .right_content {
    position: relative;
    width: calc(100% - 375px);
    padding: 0px 20px;
}

.body-content .right_content .content_inner {
    position: relative;
    width: 100%;
    min-height: 200px;
    padding-left: 50px;
}

.body-content .right_content .content_inner .content_box {
    position: relative;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: 0.2s;
}

.body-content .right_content .content_inner .content_box.isShow {
    max-height: 1500px;
    transition: 0.2s;
}

.body-content .right_content .content_inner .content_box .box_inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* .body-content .right_content .content_inner .content_box .box_inner h2
{
    position: relative;
    font-size: 36px; 
    font-weight: 700; 
    color: #3A4775; 
}
.body-content .right_content .content_inner .content_box .box_inner p
{
    position: relative;
    margin-top: 30px;
    font-size: 20px; 
    line-height: 28px; 
    font-weight: 400;
    color: rgba(0, 0, 0, 0.50); 
} */
.body-content .right_content .content_inner .content_box .box_inner p a {
    text-decoration: none;
}



/* ==================== Responsive =================== */

@media (max-width: 1440px) {

    .body-content {
        padding: 50px 40px;
        width: fit-content;
    }

}

@media (max-width: 991px) {
    .body-content {
        padding: 20px 60px;
        flex-direction: column;
        width: fit-content;
    }

    .body-content .left_content {
        width: 100%;
        padding: 0;
    }

    .body-content .left_content .content_inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .body-content .left_content .content_inner label {
        margin: 10px;
    }

    .body-content .right_content {
        position: relative;
        margin-top: 40px;
        width: 100%;
        padding: 0px;
    }

    .top-banner {
        padding: 60px;
    }
}

@media (max-width: 768px) {
    .top-banner {
        padding: 40px;
    }

    .body-content {
        padding: 50px 30px;
        padding-top: 20px;
    }

    .body-content .left_content .content_inner label {
        font-size: 18px;
    }

    .body-content .right_content .content_inner {
        padding-left: 30px;
    }
}



@media (max-width: 575px) {
    .top-banner .banner-inner h1 {
        padding-bottom: 10px;
    }

    .top-banner {
        padding: 25px;
    }

    .body-content {
        padding: 50px 10px;
        padding-top: 20px;
    }

    .body-content .right_content {
        padding: 0px 20px;
    }

    .body-content .right_content .content_inner {
        padding-left: 0;
    }

    .body-content .left_content .content_inner label {
        margin: 6px;
    }
}