:root {
    --text-gradient-primary: linear-gradient(to bottom, #0F4D98, #199F5A);
}

.menu-child-left_list a,
.breadcrumb a {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #000;
    text-decoration: none;

    &:hover,
    &.active {
        background: var(--text-gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title_head,
.label_head,
.text-center {
    float: unset;
}

.text-gradient {
    background: var(--text-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.banner_info {
    margin-top: 100px;

    .banner_info_ct {
        position: relative;

        .banner_info_title {
            width: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 32px;
            font-weight: 500;
            line-height: 160%;
            text-align: center;
            background: var(--text-gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0;
        }
    }
}

.breadcrumb {
    padding: 16px 0;
    background-color: #fff;
    margin-bottom: 0px;

    .breadcrumb_ct {
        gap: 10px;

        a:not(:first-child) {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }
    }
}

.main-content {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.menu-child-left {
    padding: 16px 16px;
    min-width: 212px;
    background-color: #fff;
    height: fit-content;
    border-radius: 8px;
    position: relative;


    .menu-child-left_title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 18px;
        font-weight: 500;
        line-height: 160%;
        margin-bottom: 0
    }

    .menu-child-left_list {
        padding-left: 0;
        list-style: none;

        li {
            margin-bottom: 16px;
            font-weight: 500;
        }
    }
}

.content-right {
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
    flex: 1;

    .main-banner-about {
        margin-bottom: 16px;
    }

    .right_item_title {
        font-size: 32px;
        line-height: 160%;
    }
}

/* menu danh much */
.menu-child-left_icon {
    display: none;
}

@media only screen and (max-width: 1250px) {
    .menu-child-left {
        min-width: auto;
        margin-bottom: 16px;
    }
}

/* responsive */
@media (max-width: 1000px) {
    .sp-none {
        display: none;
    }

    .banner_info_ct img {
        height: 100px;
    }

    .main-content {
        flex-direction: column;
    }

    .menu-child-left_icon {
        display: block;
    }

    .menu-child-left_list {
        display: none;

        &.active {
            background-color: #fff;
            border-radius: 8px;
            display: block;
            width: 205px;
            padding-top: 20px;
            position: absolute;
            z-index: 1;
            top: 100%;
            left: 0;
            box-shadow: 0px 4px 8px 0px #00000029;
            padding: 16px 16px;
        }
    }

    .breadcrumb {
        .breadcrumb_ct {
            a:not(:first-child) {
                min-width: 60px;
            }
        }
    }
}

@media only screen and (max-width: 570px) {
    .banner_info {
        .banner_info_ct {
            .banner_info_title {
                font-size: 24px;
            }
        }
    }
}