.cs_title_cont {
    background-color: var(--bg-sub-color);
    padding: 40px 0;
    border-bottom: 1px solid #EBEBEB;
}


.cs_title_cont .title,
.cs_title_sect .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cs_title_cont .sub_title,
.cs_title_sect .sub_title {
    color: #5E5E5E;
    font-size: 18px;
}

.cs_cont {
    padding: 70px 0;
}

.cs_banner {
    background-color: var(--bg-sub-color);
    border: 2px solid var(--sub-color);
    border-radius: 4px;
    padding: 16px 24px;
    margin-bottom: 50px;
}

.cs_banner .banner_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cs_banner .banner_title .title {
    font-size: 20px;
    font-weight: 500;
}

.cs_banner .banner_title .logo {
    display: flex;
    width: 104px;
}

.cs_banner .banner_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs_banner .btn_default {
    padding: 14px 46px;
    font-size: 18px;
    font-weight: 600;
}

.list_group {
    margin-bottom: 32px;
}

.list_group .btn_default {
    display: block;
    width: 100%;
    max-width: 215px;
    font-size: 18px;
    font-weight: 600;
    padding: 14px;
    text-align: center;
}

@media screen and (max-width:1023px) {

    .cs_title_cont .title,
    .cs_title_sect .title {
        font-size: 24px;
    }

    .cs_title_cont .sub_title,
    .cs_title_sect .sub_title {
        font-size: 16px;
    }
}

@media screen and (max-width:767px) {
    .cs_title_cont {
        padding: 24px 0;
    }

    .cs_title_cont .title,
    .cs_title_sect .title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .cs_title_cont .sub_title,
    .cs_title_sect .sub_title {
        font-size: 14px;
    }

    .cs_cont {
        padding: 30px 0;
    }

    .cs_banner {
        padding: 12px 16px;
        margin-bottom: 30px;
    }

    .cs_banner .banner_title {
        flex-direction: column-reverse;
        gap: 4px;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .cs_banner .banner_title .title {
        font-size: 16px;
    }

    .cs_banner .banner_title .logo {
        display: flex;
        width: 104px;
    }

    .cs_banner .banner_content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        font-size: 14px;
    }

    .cs_banner .btn_default {
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }

    .list_group {
        margin-bottom: 24px;
    }
}