.system-banner {
    height: 660px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.system-banner-box {
    background: rgba(255, 255, 255, 0.5);
    /* Tạo nền mờ */
    padding: 20px;
    border-radius: 40px 40px 0px 0px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.system-banner-box-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    padding: 40px;
    line-height: 64px;
}

.system-banner-box-description p {
    font-size: 24px;
    padding: 40px;
    line-height: 38px;
    color: #000;
    font-weight: 400;
}

.system-main-content-overview,
.system-main-content-application,

.system-main-content-pros-and-cons,
.system-main-content-benefits {
    margin-bottom: 50px;
}

.system-main-content-overview-title h1,
.system-main-content-application-title h1,
.system-main-content-classify-title h1,
.system-main-content-pros-and-cons-title h1,
.system-main-content-benefits-title h1 {
    font-size: 32px;
    padding-top: 30px;
}

.system-main-content-overview-title,
.system-main-content-application-title,
.system-main-content-classify-title,
.system-main-content-pros-and-cons-title,
.system-main-content-benefits-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.system-main-content-overview-title::after,
.system-main-content-application-title::after,
.system-main-content-classify-title::after,
.system-main-content-pros-and-cons-title::after,
.system-main-content-benefits-title::after {
    content: "";
    background-color: #1E3A8A;
    width: 20%;
    height: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.system-main-content-overview-content-1,
.system-main-content-overview-content-2,
.system-main-content-application-content,
.system-main-content-classify-content,
.system-main-content-pros-and-cons-content-1,
.system-main-content-pros-and-cons-content-2 {
    font-size: 20px;
    line-height: 32px;
}

.system-main-content-overview-repeater {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%
}


.system-main-content-overview-repeater {
    position: relative;
    padding: 20px;
    display: inline-block;
    font-size: 18px;
    color: #000;
    border: 2px solid transparent;
}

.system-main-content-overview-repeater::before,
.system-main-content-overview-repeater::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: #002E6E;
    border-style: solid;
}

.system-main-content-overview-repeater::before {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.system-main-content-overview-repeater::after {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}



.grid-items {
    position: relative;
    padding: 20px;
    display: inline-block;
    font-size: 18px;
    color: #000;
    border: 2px solid transparent;
}

.grid-items::before,
.grid-items::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: #002E6E;
    border-style: solid;
}

.grid-items::before {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.grid-items::after {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}



/* Hình thoi */
.diamond {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #002E6E;
    transform: rotate(45deg);
}

.top-left {
    top: 80px;
    left: -4px;
}

.bottom-right {
    bottom: 80px;
    right: -4px;
}

.system-main-content-overview-repeater .row .col-6 {
    align-items: center;
    justify-content: center;
    display: flex;

}

.system-main-content-overview-repeater .button-text {
    display: inline-block;
    background-color: #1E4396;
    padding: 10px 40px 15px 40px;
    border-radius: 35px;
    text-align: center;
    width: 100%;
}

.system-main-content-overview-repeater p {
    color: white;
    padding: 0;
    margin: 0;
    font-size: 20px;
}

.system-main-content-pros-and-cons-repeater {
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #1E4396;
    border-radius: 5px;
    overflow: hidden;
}

#system_pros_and_cons_table {
    width: 100%;
    border-collapse: collapse;

}

#system_pros_and_cons_table th {
    background-color: #1E4396;
    color: white;
    padding: 12px;
    text-align: center;
}

#system_pros_and_cons_table th:nth-child(1),
#system_pros_and_cons_table td:nth-child(1) {
    width: 25%;
    /* Cột tiêu chí rộng hơn */
}

#system_pros_and_cons_table th:nth-child(2),
#system_pros_and_cons_table td:nth-child(2) {
    width: 37.5%;
    /* Cột ưu điểm */
}

#system_pros_and_cons_table th:nth-child(3),
#system_pros_and_cons_table td:nth-child(3) {
    width: 37.5%;
    /* Cột nhược điểm */
}

#system_pros_and_cons_table td {
    padding: 12px;
    vertical-align: top;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;

    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

#system_pros_and_cons_table td:first-child {
    font-weight: bold;
}

#system_pros_and_cons_table tr:last-child td {
    border-bottom: none;
}

#system_pros_and_cons_table ul {
    padding-left: 20px;
    margin: 0;
}

#system_pros_and_cons_table ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

#system_pros_and_cons_table ul li::marker {
    font-size: 10px;
}

.system-main-content-application-repeater {
    margin-top: 30px;
}

.application-items {
    position: relative;
}

.application-items img {
    display: block;
    width: 100%;
    height: auto;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 70%;
}

.text-overlay h1 {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    text-transform: uppercase;
}

.text-overlay p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}

.system-main-content-benefits-repeater .grid-items {
    background-color: #F8f8f8;
}

.system-main-content-benefits-repeater .grid-items p img {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.system-main-content-benefits-repeater .grid-items h1 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
}

.system-main-content-benefits-repeater .grid-items p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.system-main-content-classify-repeater {
    margin-top: 20px;
}

.system-main-content-benefits-repeater {
    padding-top: 30px;
}

.system-main-content-benefits-repeater .grid-items {
    padding: 20px;
}

.system-main-content-benefits-repeater .grid-items .row {
    margin-top: 15px;
    align-items:center;
}

.system-main-content-benefits-repeater .grid-items .row .col-6 {
    align-items: center;
    justify-content: center;
    display: flex;

}

.system-main-content-benefits-repeater .grid-items .button-text {
    display: inline-block;
    background-color: #1E4396;
    padding: 10px 10px 15px 10px;
    border-radius: 35px;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
}

.system-main-content-benefits-repeater .grid-items .button-text p {
    color: white;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
}

.system-main-content-benefits-repeater {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-areas:
        "h1 h2"
        "h3 h3"
        "h4 h4";
}

.system-main-content-benefits-repeater .grid-items:nth-child(1) {
    grid-area: h1;
}

.system-main-content-benefits-repeater .grid-items:nth-child(2) {
    grid-area: h2;
}

.system-main-content-benefits-repeater .grid-items:nth-child(3) {
    grid-area: h3;
}

.system-main-content-benefits-repeater .grid-items:nth-child(4) {
    grid-area: h4;
}

.system-main-content-classify-repeater .row .col-6 {
    margin-bottom: 30px;
    text-align: center;
}

.system-main-content-classify-repeater .row .col-6 .classify-modal h1 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.system-main-content-classify-repeater .row .col-6 .classify-modal p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: none;
}

.system-main-content-classify-repeater .row .col-6 .classify-modal ul li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: none;
}

.classify-items {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.image-frame {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#classifyModal .modal-content{
    border-radius: 40px;
}
#classifyModal .modal-body h1 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

#classifyModal .modal-body p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

#classifyModal .modal-body ul li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    list-style: disc;
    margin-left: 18px;
}

#classifyModal .modal-body ul li::marker {
    font-size: 10px;
}

#classifyModal .modal-body {
    text-align: center;
}

#classifyModal .modal-header{
    border: none;
}

#classifyModal .classify-items{
    margin-top: -70px;
}

#classifyModal button{
    z-index: 1;
}

.relationship-product-title h1{
    padding-top: 30px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #1e4396;
}

.relationship-product ul li .system-relation-title a{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
}

.system-relation-img{
    margin-bottom: 10px;
}

.system-relation-content{
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #818181;
    margin-bottom: 30px;
}

.system-relation-content a{
    color: #818181;
}

.custom-sticky {
    position: sticky;
    top: 150px; /* Khoảng cách mong muốn từ top */
    z-index: 1; /* Đảm bảo nằm trên các phần tử khác nếu cần */
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .system-main-content-benefits-repeater {
        grid-template-columns: 1fr;
        grid-template-areas:
            "h1"
            "h2"
            "h3"
            "h4";
    }

    .system-banner-box {
        padding: 10px;
    }

    .system-banner-box-title h1 {
        font-size: 24px;
        line-height: 38px;
        padding: 20px;
    }

    .system-banner-box-description p {
        font-size: 14px;
        line-height: 30px;
        padding: 20px;
    }

    .system-main-content-overview,
    .system-main-content-application,
    .system-main-content-classify,
    .system-main-content-pros-and-cons,
    .system-main-content-benefits {
        margin-bottom: 5px;
    }

    .system-main-content-overview-title h1,
    .system-main-content-application-title h1,
    .system-main-content-classify-title h1,
    .system-main-content-pros-and-cons-title h1,
    .system-main-content-benefits-title h1 {
        font-size: 18px;
        padding-top: 20px;
    }

    .system-main-content-overview-title,
    .system-main-content-application-title,
    .system-main-content-classify-title,
    .system-main-content-pros-and-cons-title,
    .system-main-content-benefits-title {
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .system-main-content-overview-title::after,
    .system-main-content-application-title::after,
    .system-main-content-classify-title::after,
    .system-main-content-pros-and-cons-title::after,
    .system-main-content-benefits-title::after {
        content: "";
        background-color: #1E4396;
        width: 25%;
        height: 4px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

    .system-main-content-overview-content-1,
    .system-main-content-overview-content-2,
    .system-main-content-application-content,
    .system-main-content-classify-content,
    .system-main-content-pros-and-cons-content-1,
    .system-main-content-pros-and-cons-content-2,
    .system-main-content-benefits-repeater .grid-items p {
        font-size: 14px;
        line-height: 25px;
    }

    .system-main-content-overview-repeater .button-text {
        display: inline-block;
        background-color: #1E4396;
        padding: 10px 40px 15px 40px;
        border-radius: 35px;
        text-align: center;
        margin-bottom: 15px;
    }

    .system-main-content-overview-repeater p {
        color: white;
        padding: 0;
        margin: 0;
        font-size: 14px;
    }

    .system-main-content-overview-repeater {
        margin-bottom: 15px;
        padding-bottom: 5px;
    }

    .text-overlay h1 {
        font-size: 12px;
        font-weight: 700;
        line-height: 18px;
        margin: 0;
        text-transform: uppercase;
    }

    .text-overlay p {
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
        margin: 0;
        text-transform: uppercase;
    }

    .system-main-content-classify-repeater .row .col-6 {
        margin-bottom: 0px;
    }
    .system-main-content-benefits-repeater .grid-items .button-text p {
        color: white;
        padding: 0;
        margin: 0;
        font-size: 14px;
        line-height: 16px;
    }

    .system-main-content-pros-and-cons-repeater{
        /* overflow: scroll; */
        margin-bottom: 15px;
        margin-top: 15px;
    }

    /* #system_pros_and_cons_table{
        width: 800px;
    } */

    .system-main-content-benefits-repeater .grid-items .button-text{
        min-height: max-content;
    }
}