:root {
    --color-main: #243d90;
    --color-main-yellow: #eac41a;
    --color-white: #fff;
    --p-block: 60px;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

body {
    font-family: SF-regular, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input, input:active, input:focus {
    outline: none;
    box-shadow: initial !important;
}

button, button:active, button:focus {
    outline: none;
    box-shadow: initial !important;
}

textarea, textarea:active, textarea:focus {
    outline: none;
    box-shadow: initial !important;
}

a {
    transition: all 0.2s linear 0s;
    text-decoration: none;
    display: block;
}

    a:hover {
        text-decoration: none;
        color: initial
    }

img {
    transition: all 0.2s linear 0s;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

    ul li {
        list-style-type: none;
    }

p {
    margin-bottom: 0;
}

h1 {
    font-family: SF-bold, sans-serif;
    font-size: 32px;
}

h2 {
    font-family: SF-light, sans-serif;
    font-size: 32px;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgb(164, 164, 164);
}

    ::-webkit-scrollbar-thumb:hover {
        background: #004193;
    }

@font-face {
    font-family: SF-light;
    src: url(../fonts/Montserrat-Light.ttf);
    font-display: swap;
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: SF-regular;
    src: url(../fonts/Montserrat-Regular.ttf);
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: SF-bold;
    src: url(../fonts/Montserrat-Bold.ttf);
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: semibold;
    src: url(../fonts/Montserrat-SemiBold.ttf);
    font-display: swap;
    font-weight: 600;
    font-style: normal;
}

.grecaptcha-badge {
    display: none !important;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* index */
.mn-top {
    transition: .5s linear;
    z-index: 999;
}

    .mn-top.fixed {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        background: #fff;
        animation: fadeInDown;
        box-shadow: 0 0 10px -6px #333333cf;
    }

/*        .mn-top.fixed .mn-lg {
            padding: 8px 0;
        }*/

.mn-top-ct {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 50px;
}

    .mn-top-ct .top-right {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        /* width: calc(100% - 240px); */
    }

.menu-icon {
    display: none;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-icon.change .bar1 {
    transform: translate(0, 7px) rotate(-45deg);
}

.menu-icon.change .bar2 {
    opacity: 0;
}

.menu-icon.change .bar3 {
    transform: translate(0, -7px) rotate(45deg);
}

.mn-top-ct .top-right .hotline-language {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.mn-top-ct .top-right .language-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

    .mn-top-ct .top-right .language-search .language {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        position: relative;
        cursor: pointer;
        width: 78px;
    }

        .mn-top-ct .top-right .language-search .language ul {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--color-white);
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            opacity: 0;
            transition: opacity 0.3s linear;
            pointer-events: none;
            z-index: 99;
            margin-top: 0 !important;
        }

        .mn-top-ct .top-right .language-search .language:hover ul {
            opacity: 1;
            pointer-events: all;
        }

        .mn-top-ct .top-right .language-search .language ul .lang {
            display: flex;
            align-items: center;
            gap: 10px;
            height: unset !important;
            width: 100px;
            padding: 10px;
            color: var(--color-main);
        }

            .mn-top-ct .top-right .language-search .language ul .lang:hover {
                color: var(--color-text);
            }

            .mn-top-ct .top-right .language-search .language ul .lang .img {
                height: 20px;
                width: 29px;
            }

        .mn-top-ct .top-right .language-search .language .list .item {
            display: none;
            color: var(--color-main);
        }

            .mn-top-ct .top-right .language-search .language .list .item.active {
                display: block;
            }

        .mn-top-ct .top-right .language-search .language .icon, .mn-top-ct .top-right .language-search .search-hd .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

    .mn-top-ct .top-right .language-search .search-hd {
        position: relative;
    }

        .mn-top-ct .top-right .language-search .search-hd form {
            position: absolute;
            right: 0;
            top: 44px;
            z-index: 10;
        }

.mn-top.fixed .mn-top-ct .top-right .language-search .search-hd form {
    top: 42px;
}

.mn-top-ct .top-right .language-search .search-hd.active form {
    opacity: 1;
    pointer-events: all;
}

.mn-top-ct .top-right .language-search .search-hd .icon-close, .mn-top-ct .top-right .language-search .search-hd.active .icon-show {
    display: none;
}

.mn-top-ct .top-right .language-search .search-hd.active .icon-close {
    display: block;
}

.mn-top-ct .top-right .language-search .language .icon svg, .mn-top-ct .top-right .language-search .search-hd .icon svg {
    fill: var(--color-main);
}

.mn-top-ct .form-search {
    height: 35px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    width: 250px;
    border: 1px solid var(--color-main);
    opacity: 0;
    pointer-events: none;
}

    .mn-top-ct .form-search.solution {
        width: 100%;
        height: 48px;
        opacity: 1;
        pointer-events: unset;
        border: 0;
    }

.mn-lg {
    width: 120px;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

    .mn-lg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.search {
    position: relative;
    margin: 0 26px 0 28px;
    z-index: 1;
}

    .search form {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        width: 240px;
        right: -40px;
        border: 1px solid #004c9859;
        border-radius: 4px;
        top: calc(100% + 34px);
        z-index: 1;
        background: #fff;
        transition: .2s linear
    }

.mn-top.fixed .search form {
    top: calc(100% + 22px)
}

.search form input {
    border: none;
    width: calc(100% - 30px);
    float: left;
    background: transparent;
    height: 30px;
    padding: 4px 4px 4px 8px;
}

    .search form input::placeholder {
        font-size: 14px;
    }

.search form button {
    background: transparent;
    border: none;
    float: left;
    width: 30px;
    height: 30px;
}

.search form.show {
    opacity: 1;
    visibility: visible;
}

.list-mn {
    display: flex;
    /*    padding: 0 0 10px;*/
    justify-content: center;
}

.mn-li {
    margin-right: 36px;
    position: relative;
}

    .mn-li a {
        color: var(--color-main);
        font-family: semibold, sans-serif;
        font-size: 20px;
        font-weight: 600;
    }

        .mn-li a.active {
            color: #ddbb5b;
        }



.btn-log {
    font-size: 14px;
    color: #004193;
    border: 1px solid #004193;
    border-radius: 4px;
    padding: 4px 14px;
}

.language {
    display: flex;
}

.vi, .en {
    margin-right: 6px;
    border-radius: 5px;
    overflow: hidden;
    width: 29px;
    height: 20px;
    display: block;
}


    .vi img, .en img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        display: block
    }

.it-solu {
}

.discover {
    height: calc((100vw - 10px)*9/21);
    overflow: hidden;
    position: relative;
}

.bgr-video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}

.des-dis {
    position: absolute;
    width: 30%;
    z-index: 1;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    display: none;
}

    .des-dis h2 {
        font-size: 50px;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 10px;
        font-family: SF-light, sans-serif;
    }

    .des-dis p {
        font-weight: 300;
        font-size: 20px;
        color: #fff;
        margin-bottom: 20px;
    }

.btn-dis-now {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    background: #e5c755;
    padding: 10px 36px;
    border-radius: 30px;
}

.ai-mk {
    display: flex;
    justify-content: flex-start;
    background: url("../image/bgr-ai.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0 90px;
    color: #fff;
    min-height: 500px;
}

.ai-mk-ct {
    width: 50%;
}

    .ai-mk-ct.active h2 {
        opacity: 1;
        visibility: visible;
        animation: slideInRight 2s ease;
    }

    .ai-mk-ct.active p {
        opacity: 1;
        visibility: visible;
        animation: slideInRight 2.5s ease;
    }

    .ai-mk-ct.active .btn-xct {
        opacity: 1;
        visibility: visible;
        animation: slideInRight 3s ease;
    }

.btn-xct {
    color: #fff;
    font-size: 16px;
    font-family: SF-light, sans-serif;
    opacity: 0;
    visibility: hidden;
    display: inline-block
}

    .btn-xct img {
        margin-left: 10px;
        margin-bottom: 3px;
    }

.ai-mk h2 {
    position: relative;
    margin-bottom: 20px;
    padding-left: 50px;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
}

    .ai-mk h2::before {
        content: '';
        position: absolute;
        height: 3px;
        width: 34px;
        background: #fff;
        left: 2px;
        top: 50%;
        transform: translateY(-50%);
    }

.ai-mk p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    text-align: justify;
}



/* footer */

footer {
    background-color: var(--color-main);
    position: relative;
}

    footer:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 0;
        pointer-events: none;
        background: url("/html/style/image/bg-footer.png");
    }

.ft-ct {
    /* border-bottom: 1px solid #777777; */
    /* padding: 40px 0 80px; */
    position: relative;
}

.it-ft {
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

    .it-ft.social-ft .list-social {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 15px;
    }


        .it-ft.social-ft .list-social .item {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 38px;
            height: 38px;
            border: 1px solid var(--color-white);
            border-radius: 50%;
        }

            .it-ft.social-ft .list-social .item svg {
                fill: var(--color-white);
            }

            .it-ft.social-ft .list-social .item.facebook:hover {
                background-color: #0866ff;
                border-color: #0866ff;
            }

            .it-ft.social-ft .list-social .item.linkedin:hover {
                background-color: #0a66c2;
                border-color: #0a66c2;
            }

            .it-ft.social-ft .list-social .item.tikTok:hover {
                border-color: var(--color-white);
                background: var(--color-white);
            }

                .it-ft.social-ft .list-social .item.tikTok:hover svg {
                    fill: #111111;
                    filter: drop-shadow(2px 0px 0px #fd3e3e) drop-shadow(-2px -2px 0px #4de8f4);
                }

            .it-ft.social-ft .list-social .item.youtube:hover {
                background-color: #ff0000;
                border-color: #ff0000;
            }


    .it-ft:first-child {
        padding-right: 30px;
    }

    .it-ft:nth-child(2) a {
        display: block
    }

    .it-ft:nth-of-type(1) .tit-ft:nth-of-type(2) {
        padding-top: 20px;
    }

.list-ft-ct {
    display: grid;
    gap: 30px;
    grid-template-columns: calc(50% - 90px) 15% 15% 20%;
}

.tit-ft {
    position: relative;
    z-index: 10;
    font-size: 15px;
    font-family: SF-bold, sans-serif;
    text-transform: uppercase;
    color: var(--color-white);
    padding-bottom: 8px;
}

.it-ft a, .it-ft p {
    display: inline-block;
    font-size: 16px;
    font-family: SF-regular, sans-serif;
    color: var(--color-white);
}

.it-ft:nth-child(2) a, .it-ft:nth-child(2) p, .it-ft:nth-child(3) a, .it-ft:nth-child(2) p {
    display: block;
}

.it-ft .btn-contact {
    background: var(--color-main-yellow);
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid var(--color-main-yellow);
    color: var(--color-main);
    font-size: 16px;
    text-transform: uppercase;
    font-family: sf-bold;
    display: inline-flex;
    font-size: 13px;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

    .it-ft .btn-contact:hover {
        background: var(--color-white);
        color: var(--color-main);
    }

.ft-ar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

    .ft-ar p {
        font-size: 14px;
        font-family: SF-light,sans-serif;
        color: #b0b0b0
    }

.social {
    display: flex;
    align-items: center;
}

    .social p {
        margin-right: 10px;
    }

    .social a {
        border: 1px solid #b0b0b0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        margin-right: 6px;
        text-align: center;
        line-height: 30px;
    }

        .social a i {
            color: #b0b0b0
        }

.edge-ai {
    background: #091b44;
    padding: 60px 0 70px;
}

    .edge-ai h2 {
        color: #fff;
        text-align: center;
        margin-bottom: 40px;
    }

.edge-ct {
    position: relative;
}

.it-edge {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid transparent;
    max-height: 450px
}

.txt-edge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 26px;
}

.it-edge h3 {
    font-size: 26px;
    color: #333;
    display: flex;
    align-items: center;
}

.it-edge p {
    font-size: 16px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.it-edge .txt-edge h3 img {
    max-width: 100%;
    width: initial !important;
    margin-left: 12px;
}

.edge-ct .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.edge-ct .owl-carousel {
    position: initial;
}

    .edge-ct .owl-carousel .owl-nav {
    }

        .edge-ct .owl-carousel .owl-nav .owl-prev {
            background: url(../image/prev-edge.png) no-repeat;
            left: -30px;
        }

        .edge-ct .owl-carousel .owl-nav .owl-next {
            background: url(../image/next-edge.png) no-repeat;
            right: -30px
        }

        .edge-ct .owl-carousel .owl-nav button {
            position: absolute;
            width: 14px;
            height: 25px;
            margin: 0 !important;
            top: 50%;
            transform: translateY(-50%);
        }

            .edge-ct .owl-carousel .owl-nav button span {
                opacity: 0;
            }

.certifi {
    padding: 60px 0 70px;
    background: #f0f0f0;
}

    .certifi h2 {
        text-align: center;
        font-family: SF-regular;
        color: #333;
        margin-bottom: 40px;
    }

.certifi-ct {
    width: 75%;
    margin: 0 auto;
    position: relative;
}

    .certifi-ct .owl-item .it-cer {
        transform: scale(0.8);
        transition: .2s linear;
        box-shadow: rgb(51 51 51 / 39%) 0px 0px 4px 1px;
    }

    .certifi-ct .owl-item.center .it-cer {
        transform: scale(1);
    }

    .certifi-ct .sl-certifi {
        position: initial;
    }

        .certifi-ct .sl-certifi .owl-nav {
            margin: 0 !important
        }

            .certifi-ct .sl-certifi .owl-nav button {
                width: 16px;
                height: 28px;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                margin: 0 !important;
            }

            .certifi-ct .sl-certifi .owl-nav .owl-prev {
                background: url(../image/prev-cer.png) no-repeat;
                left: -14px
            }

            .certifi-ct .sl-certifi .owl-nav .owl-next {
                background: url(../image/next-cer.png) no-repeat;
                right: -14px
            }

            .certifi-ct .sl-certifi .owl-nav button span {
                opacity: 0;
            }

    .certifi-ct .owl-carousel .owl-stage-outer {
        padding: 4px 0;
    }

/* login */
.login {
    background: #e4e4e4;
    padding: 40px 0 44px;
}

.login-ct {
    background: #fff;
    padding: 22px 20px;
    display: flex;
}

.login-left {
    width: 50%;
    float: left;
    padding-right: 16px;
}

    .login-left img {
        width: 100%;
    }

.login-right {
    color: #333;
    width: 50%;
    float: left;
}

    .login-right h1 {
        font-size: 16px;
        font-family: SF-bold, sans-serif;
        text-transform: uppercase;
    }

    .login-right form input {
        border-radius: initial;
        padding: 8px 16px;
        height: initial;
    }

        .login-right form input::placeholder {
            font-size: 16px;
            color: #333
        }

.forget {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .forget input {
        margin-right: 10px;
        background: #e2e2e2
    }

    .forget label {
        font-size: 16px;
        color: #333
    }

    .forget a {
        color: #004c98;
        font-size: 14px;
        font-family: SF-Regular;
    }

.btn-login {
    color: #fff;
    background: #034394;
    font-family: SF-bold, sans-serif;
    border-radius: initial;
    padding: 8px 28px;
    display: block;
    width: 150px;
    margin: 0 auto;
}

    .btn-login .fa-angle-right {
        margin-left: 4px;
    }

/* listdes */

.list-des {
    padding: 20px 0;
    display: flex
}

    .list-des li {
        display: flex;
        align-items: center
    }

        .list-des li a {
            font-size: 14px;
            color: #333
        }

        .list-des li i {
            color: #afafaf;
            margin: 0 8px;
        }

    .list-des .it-ld:last-child i {
        display: none;
    }

.solu-ct h1 {
    margin-bottom: 20px;
}

/* solution */

.banner {
    position: relative;
}

    .banner:not(.dots-white) {
        aspect-ratio: 1900/365;
    }

    .banner h2 {
        position: absolute;
        top: 65px;
        left: calc((100% - 1200px)/2);
        color: var(--color-white);
        font-family: sf-bold;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        width: 500px;
    }

    .banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner.banner-solution {
        position: relative;
    }

        .banner.banner-solution:after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 80%;
            background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0.7), rgba(255,255,255,0))
        }


        .banner.banner-solution h2 {
            z-index: 10;
            top: unset;
            color: var(--color-main);
            bottom: 30px;
        }

            .banner.banner-solution h2 span {
                display: block;
                font-size: 54px;
            }

                .banner.banner-solution h2 span:first-child {
                    font-size: 30px;
                }

.solution {
    background: #f7f7f7
}

.list-solu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    padding-bottom: 40px;
}

    .list-solu .it-solu {
        padding: 44px 36px 46px;
        background: url(../image/background-solution-item.png) no-repeat;
        background-size: 100% auto;
        background-position: top;
        text-align: center;
        box-shadow: 0 0 4px 1px #33333352;
        border-radius: 10px;
        position: relative;
    }

.img-solu {
    width: 114px;
    height: 114px;
    border: 5px solid #ddbb5b;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 10px 2px #00000059;
}

    .img-solu img {
        max-width: 100%;
    }

.txt-solu {
    padding-bottom: 40px;
}

    .txt-solu h3 {
        color: #333;
        font-size: 22px;
        font-family: SF-bold, sans-serif;
        margin-bottom: 18px;
    }

    .txt-solu p {
        color: #333;
        font-size: 16px;
        margin-bottom: 40px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.study {
    color: #000;
    font-size: 16px;
    background: #ddbb5b;
    width: 150px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 30px;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
}

/* News */
.news-ct {
    padding-bottom: 54px;
}

.list-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 34px;
    padding-bottom: 60px;
}

.it-news {
    box-shadow: 0 0 4px 1px #33333359;
    color: #333;
}

.img-news {
    height: 210px;
    overflow: hidden;
}

    .img-news img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.txt-news {
    padding: 30px 20px 40px;
}

    .txt-news h3 {
        font-family: SF-bold, sans-serif;
        font-size: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .txt-news .des-news {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .txt-news .des-news p {
            font-size: 14px;
        }

.news h1 {
    margin-bottom: 20px;
}

.list-next {
    display: flex;
    justify-content: center;
}

    .list-next a, .list-next span {
        border: 1px solid #b4b4b4;
        height: 30px;
        width: 30px;
        margin-right: 10px;
        transition: .2s linear;
    }

    .list-next a, .list-next span {
        color: #333;
        line-height: 30px;
        text-align: center;
        font-size: 16px;
        border-radius: 50%;
        font-family: 'SF-bold';
    }

        .list-next span.active-page {
            border: 1px solid #034394;
            color: #034394;
        }

.hidden {
    display: none
}

/* introduce */
.intro {
}

.intro-ct {
    position: relative;
}

.intro h1 {
    text-align: center;
    margin-bottom: 12px;
}

.list-intro {
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    justify-content: center;
    transition: .2s linear;
}

    .list-intro.fixed {
        animation: fadeInDown;
        position: fixed;
        left: 0;
        right: 0;
        top: 101px;
        background: #fff;
        padding-top: 6px;
    }

    .list-intro a {
        font-size: 17px;
        font-family: SF-regular,sans-serif;
        color: #777777;
        margin-right: 26px;
        padding-bottom: 6px;
        position: relative;
    }

        .list-intro a:after {
            position: absolute;
            content: '';
            background: #004193;
            height: 2px;
            left: 0;
            bottom: 0;
            transition: .3s linear;
            width: 0;
        }

        .list-intro a:last-child {
            margin-right: initial;
        }

        .list-intro a.active::after {
            width: 100%;
        }

        .list-intro a.active {
            color: #004193
        }

.ab-mk {
    padding: 60px 0;
}

.ab-mk-ct {
    display: flex;
}

.txt-ab-mk {
    float: left;
    width: 50%;
    padding-right: 30px;
}

    .txt-ab-mk h2 {
        margin-bottom: 16px;
    }

    .txt-ab-mk .des-ab-mk {
    }

        .txt-ab-mk .des-ab-mk p {
            text-align: justify;
            font-size: 16px;
            margin-bottom: 20px;
        }

            .txt-ab-mk .des-ab-mk p:last-child {
                margin-bottom: initial;
            }

.img-ab-mk {
    float: left;
    width: 50%;
    border-radius: 6px;
    overflow: hidden;
}

    .img-ab-mk img {
        width: 100%;
    }

.vi-miss {
    background: #f2f2f2;
    padding: 60px 0;
}

    .vi-miss h2 {
        text-align: center;
    }

    .vi-miss p {
        text-align: center;
        font-size: 17px;
    }

    .vi-miss .des-vm {
        line-height: 1.8;
        padding: 0 140px;
    }

.list-miss {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    padding-top: 50px;
}

.it-miss {
    background: #fff;
    padding: 40px 26px;
}

    .it-miss h3 {
        font-size: 26px;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
    }

        .it-miss h3 img {
            max-width: 100%;
            margin-left: 16px;
        }

    .it-miss .des-miss {
        display: -webkit-box;
        -webkit-line-clamp: 10;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .it-miss .des-miss p {
            font-size: 16px;
            text-align: justify;
        }

/* contact */
.contact {
}

    .contact h1 {
        margin-bottom: 20px
    }

.contact-ct {
}

.list-cont {
    display: flex;
    padding-bottom: 40px;
    border-bottom: 1px solid #d5d5d5;
}

.cont-left {
    float: left;
    width: 50%;
    padding-right: 40px;
}

.it-cont-l {
    padding-left: 22px;
    position: relative;
    border-bottom: 1px dotted #b5b5b5;
    margin-bottom: 14px;
    padding-bottom: 12px;
}

    .it-cont-l:last-child {
        border-bottom: initial;
        margin-bottom: initial;
        padding-bottom: initial;
    }

    .it-cont-l:before {
        position: absolute;
        content: '';
        width: 10px;
        height: 15px;
        background: url(../image/add-blue.png) no-repeat;
        left: 6px;
        top: 4px;
    }

.tit-cont {
    font-size: 16px;
    font-family: SF-bold, sans-serif;
    text-transform: uppercase;
}

.cont-left .tit-cont {
    font-family: SF-bold, sans-serif;
    margin-bottom: 4px;
}

.it-cont-l p {
    font-size: 15px;
}

.cont-right {
    width: 50%;
    float: left;
    text-align: right;
}

    .cont-right .tit-cont {
        font-size: 18px;
        text-transform: initial;
        margin-bottom: 16px;
        text-align: left;
    }

    .cont-right form .form-group {
        margin-bottom: 8px;
        position: relative;
    }

        .cont-right form .form-group input::placeholder {
            font-size: 15px;
        }

        .cont-right form .form-group textarea {
            height: 90px;
            overflow: hidden;
            overflow-y: auto;
        }

            .cont-right form .form-group textarea::placeholder {
                font-size: 15px;
            }

        .cont-right form .form-group:last-child {
            margin-bottom: 18px;
        }

.btn-send {
    background: #004193;
    width: 120px;
    padding: 8px;
    text-align: center;
    font-size: 15px;
    font-family: SF-bold, sans-serif;
    color: #fff;
    text-transform: uppercase;
}

.agency h2 {
    font-family: SF-bold, sans-serif;
}

.agency {
    padding: 30px 0 50px;
}

.list-agency {
    display: flex;
}

.agency-left {
    width: 50%;
    float: left;
    padding-right: 18px;
}

.find-agency {
    background: #e5c755;
    border-radius: 4px;
    padding: 14px 12px 24px;
    margin-bottom: 10px;
}

    .find-agency .from-agency {
        display: flex;
    }

        .find-agency .from-agency .form-control {
            font-size: 15px;
            font-family: SF-regular;
            width: 214px;
            margin-right: 10px;
            height: 40px;
        }

            .find-agency .from-agency .form-control:last-child {
                margin-right: initial;
            }

    .find-agency .btn-send i {
        font-size: 14px;
        margin-right: 4px;
    }

.tit-agency {
    font-family: SF-bold;
    font-size: 17px;
    margin-bottom: 8px;
}

.agency-right {
    width: 50%;
    float: right;
}

    .agency-right .right-map {
        height: 560px;
        border: 1px solid #dcdcdc;
        border-radius: 4px;
        overflow: hidden;
    }

        .agency-right .right-map iframe {
            height: 100%
        }

.all-agency {
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 18px 14px;
    height: 440px;
    overflow: hidden;
    overflow-y: auto;
}

    .all-agency .it-cont-l .tit-cont {
        font-family: SF-bold, sans-serif;
        margin-bottom: 4px;
    }

    .all-agency .tit-agency {
        border-bottom: 1px dotted #b5b5b5;
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

.smap {
    font-size: 14px;
    font-family: SF-regular,sans-serif;
    color: #004c98;
    display: inline-block;
}

.all-agency .it-cont-l p {
    margin-bottom: 2px;
}

/* tintucchitiet */
.all-news {
    overflow: hidden;
}

.des-content {
    width: 75%;
    float: left;
    padding-right: 26px;
}

.tit-des-ct {
    border-bottom: 1px dotted #aeaeae;
    margin-bottom: 22px;
    padding-bottom: 16px;
}

    .tit-des-ct h1 {
        margin-bottom: 10px;
    }

    .tit-des-ct .day-news {
        font-family: SF-regular,sans-serif;
        font-size: 14px;
        color: #6b6a6a;
    }

        .tit-des-ct .day-news i {
            color: #004193;
            margin-right: 8px;
        }

.syn-content {
    text-align: justify;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 80px;
    margin-bottom: 32px;
}

    .syn-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .syn-content img {
        max-width: 100% !important;
        height: auto !important;
        margin-bottom: 16px;
    }

    .syn-content ul {
        padding-left: 20px;
        margin-bottom: 16px;
    }

        .syn-content ul li {
            list-style-type: circle;
            font-family: SF-regular, sans-serif;
            font-size: 15px;
        }

    .syn-content tr td {
        font-family: SF-regular, sans-serif;
        padding: 10px 20px;
    }

.right-news {
    width: 25%;
    float: left;
    border: 1px solid #eaeaea;
    padding: 14px 14px 28px;
}

.tit-rn {
    font-size: 28px;
    padding-bottom: 4px;
    border-bottom: 2px solid #004193;
    margin-bottom: 6px;
}

.list-rn {
}

.it-rn {
    display: flex;
    padding: 12px 0 14px;
    border-bottom: 1px dotted #aeaeae;
}

    .it-rn:last-child {
        border-bottom: initial;
        padding-bottom: 0;
    }

    .it-rn .img-rn {
        width: 70px;
        height: 70px;
        float: left;
    }

        .it-rn .img-rn img {
            width: 100%;
            min-height: 100%;
            object-fit: cover;
        }

    .it-rn .txt-rn {
        width: calc(100% - 70px);
        float: left;
        padding-left: 10px;
    }

        .it-rn .txt-rn h3 {
            font-size: 15px;
            margin-bottom: 0;
            color: #333;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.other-news {
}

    .other-news .tit-rn {
        font-family: SF-bold,sans-serif;
        border-bottom: initial;
    }

    .other-news .list-news {
        grid-gap: 24px;
        padding-bottom: 50px;
        padding-left: 2px;
    }

    .other-news .it-news .img-news {
        height: 150px;
    }

    .other-news .it-news .des-news {
        display: none;
    }

    .other-news .it-news .txt-news {
        padding: 25px 20px 30px;
    }

        .other-news .it-news .txt-news h3 {
            font-size: 15px;
            margin-bottom: 0;
        }

.syn-content tr:nth-of-type(odd) {
    background: #e5c75578
}

.syn-content table {
    margin-bottom: 16px;
    border-color: #3333334d
}

    .syn-content table p {
        margin-bottom: 4px
    }
/* solution-content */
.solution-content {
    background: #fff;
}

.all-solu {
    overflow: hidden;
}

    .all-solu h1 {
        font-size: 28px;
        position: relative;
        padding-bottom: 20px;
        margin-bottom: 18px;
    }

        .all-solu h1:after {
            position: absolute;
            content: '';
            background: #d4d4d4;
            width: 600px;
            height: 1px;
            bottom: 0;
            left: 0;
        }

        .all-solu h1 img {
            max-width: 100%;
            margin-right: 16px;
        }

    .all-solu .syn-content {
        border-bottom: initial;
        margin-bottom: initial;
        padding-bottom: 20px;
    }

.syn-content h2 {
    font-size: 20px;
    font-family: SF-bold, sans-serif;
}

.syn-content h3 {
    font-size: 16px;
    font-family: SF-bold, sans-serif;
}

.syn-content h4 {
    font-size: 14px;
    font-family: SF-bold, sans-serif;
}

.like-share {
    font-family: SF-bold, sans-serif;
    font-size: 16px;
    padding-bottom: 50px;
    display: flex;
}

    .like-share a {
        margin-left: 6px;
    }

.other-solu {
}

    .other-solu .tit-rn {
        font-family: SF-bold, sans-serif;
        border-bottom: 1px solid #d4d4d4;
        position: relative;
    }

        .other-solu .tit-rn::after {
            position: absolute;
            content: '';
            background: #004193;
            width: 60px;
            height: 2px;
            bottom: 0;
            left: 0;
        }

.list-other-solu {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 15px;
    padding: 30px 0px 60px;
}

    .list-other-solu .img-solu {
        box-shadow: initial;
        margin: 0 auto 16px;
        transition: .2s linear;
    }

        .list-other-solu .img-solu img {
        }

    .list-other-solu .txt-solu h3 {
        font-size: 20px;
        margin-bottom: 0;
        text-align: center;
        transition: .2s linear;
    }

/* product */
.product {
    background: #fafafa;
    border-top: 1px solid #bfbfbf;
}

    .product .list-des {
        padding: 10px 0;
    }

.product-ct {
}

.all-atsc {
    display: flex;
    align-items: center;
}

.atsc {
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url(../image/bgr-product-1.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.atsc-ct {
    width: 44%;
    float: left;
    text-align: right;
}

.atsc-img {
    width: 56%;
    float: left;
}

    .atsc-img.active img {
        opacity: 1;
        visibility: visible;
        animation: slideInLeft 2s ease;
    }

    .atsc-img img {
        max-width: 100%;
    }

.atsc-ct h1 {
    font-family: SF-bold, sans-serif;
    font-size: 89px;
    color: #004193;
    margin-bottom: 12px;
    line-height: 0.5;
}

.atsc-ct.active h1 {
    opacity: 1;
    visibility: visible;
    animation: slideInRight 3s ease;
}

.atsc-ct.active .des-atsc {
    opacity: 1;
    visibility: visible;
    animation: slideInRight 3s ease;
}

.atsc-ct .des-atsc {
    font-size: 34px;
    margin-bottom: 8px;
}

.atsc-ct p {
    font-size: 22px;
    color: #000
}

.atsc-ct.active p {
    opacity: 1;
    visibility: visible;
    animation: slideInRight 3s ease;
}

.des-pro {
    padding: 80px 0 60px;
    background: url(../image/bgr-product-2.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.all-des-pr {
    overflow: hidden;
}

.des-pr-ct {
    width: 56%;
    float: left;
}

    .des-pr-ct.active .it-pro {
        opacity: 1;
        visibility: visible;
        animation: slideInLeft 2s ease;
    }

.des-pr-img {
    width: 44%;
    float: left;
}

    .des-pr-img.active img {
        opacity: 1;
        visibility: visible;
        animation: slideInRight 2s ease;
    }

    .des-pr-img img {
        max-width: 100%;
        margin-bottom: 20px
    }

.it-pro {
    border-bottom: 1px solid #949494;
    padding-bottom: 10px;
    margin-bottom: 8px;
}

    .it-pro:last-child {
        border-bottom: initial;
        padding-bottom: initial;
        margin-bottom: initial;
    }

.tit-it-pro {
    font-family: SF-bold, sans-serif;
    font-size: 20px;
    color: #004193;
    text-transform: uppercase;
}

.it-pr-sm {
    color: #000;
}

.tit-sm {
    font-family: SF-bold, sans-serif;
    font-size: 20px;
    position: relative;
    padding-left: 16px;
}

    .tit-sm:before {
        position: absolute;
        content: '';
        width: 7px;
        height: 13px;
        background: url(../image/ang-dot.png) no-repeat;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.line-des {
    display: flex;
    border-bottom: 1px solid #d7d7d7;
    padding: 4px 0;
}

    .line-des:last-child {
        border-bottom: initial;
    }

    .line-des p {
        font-size: 16px;
    }

    .line-des .line-bold {
        width: 246px;
        font-family: SF-bold, sans-serif;
    }

.sub-des {
    width: calc(100% - 246px);
    font-size: 16px;
}

    .sub-des p {
        margin-bottom: 6px;
    }

.install {
    background: #fff;
    padding-top: 50px;
}

    .install .img-all-pro.active {
        opacity: 1;
        visibility: visible;
        animation: slideInUp 1.5s ease;
    }

.img-all-pro img {
    width: 100%;
}

.tit-all-pr {
    font-family: SF-bold, sans-serif;
    font-size: 48px;
    color: #000;
    text-align: center;
}

.func {
    padding: 80px 0 90px;
}

    .func .tit-all-pr {
        margin-bottom: 20px;
    }

.it-func {
    font-family: SF-light, sans-serif;
    color: #000;
    text-align: center;
    padding-bottom: 40px;
}

    .it-func:last-child {
        padding-bottom: initial;
    }

.tt-func {
    font-size: 58px;
}

.it-func .des-func.active {
    animation: fadeInUp 2s ease;
    visibility: visible;
    opacity: 1;
}

.des-func {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 40px;
    transition: .3s linear;
}

.img-func {
    height: 500px;
    overflow: hidden
}

    .img-func img {
        height: 100%;
        max-width: 100%;
        object-fit: cover
    }

.real-img {
    background: #fff;
    padding: 40px 0 40px;
}

.sl-real {
    padding: 40px 0 0;
}

.real-img .owl-dots.disabled {
    display: block;
}

.real-img .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
}

.real-img .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.version {
    background: #ececec;
    padding: 40px 0;
}

.table-version {
    box-shadow: 0 0 4px 2px #33333357;
}

.version .tit-all-pr {
    padding-bottom: 40px;
}

.it-ver {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff
}

    .it-ver:nth-of-type(odd) {
        background: #ececec;
    }

    .it-ver:nth-of-type(even) {
        background: #fff;
    }

    .it-ver:nth-of-type(1), .it-ver:last-child {
        background: #fff;
    }

.it-ver-top {
    font-size: 24px;
    font-family: SF-bold, sans-serif;
    color: #fff;
    position: relative;
    padding: 10px;
    border-left: 1px solid #33333361;
}

    .it-ver-top img {
        width: 100%;
    }

    .it-ver-top p {
        position: absolute;
        top: calc(50% - 10px);
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 240px;
        text-align: center;
    }

    .it-ver-top:nth-of-type(1) {
        grid-column: 2/3;
    }

    .it-ver-top:nth-of-type(2) {
    }

    .it-ver-top:nth-of-type(3) {
    }

.call {
    font-family: SF-light, sans-serif;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    padding: 6px 0;
    margin: 10px;
}

    .call:nth-of-type(1) {
        background: #7fa0c9;
        grid-column: 2/3;
    }

    .call:nth-of-type(2) {
        background: #deb51a;
    }

    .call:nth-of-type(3) {
        background: #4c7bb6;
    }

.txt-ver {
    font-size: 18px;
    padding: 4px 4px 4px 24px;
}

.img-ver {
    border-left: 1px solid #33333361;
    display: flex;
    justify-content: center;
    align-items: center
}

    .img-ver img {
        max-width: 100%;
    }

/* submenu */
.sub-li a {
    font-family: SF-regular, sans-serif;
    color: var(--color-main);
    transition: .1s linear
}

.sub-menu {
    position: absolute;
    z-index: 1;
    background: #f9f9f8;
    top: calc(100% + 10px);
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: .2s linear;
    border: 1px solid transparent
}

    .sub-menu li {
        min-width: 200px;
        padding: 6px 14px;
    }

        .sub-menu li:last-child {
            border-bottom: initial;
        }

.sub-li {
    position: relative;
}

    .sub-li a {
        font-size: 18px;
        padding: 2px 0;
        font-family: 'semibold';
        /* font-weight: 600; */
    }

.small-mn {
    position: absolute;
    background: #f9f9f8;
    left: 100%;
    top: 0;
    opacity: 0;
    transform: translateX(-20px);
    visibility: hidden;
    transition: .2s linear;
}

.small-li {
}

    .small-li a {
    }

.click-mb {
    display: none;
}

.list-mn .mn-lg {
    display: none;
}

.plus, .add {
    display: none;
}

.list-mn .btn-log {
    display: none;
}

/*fix*/
.flex-item {
    display: flex;
    font-size: 15px;
}

    .flex-item a {
        color: #333;
        margin-left: 5px
    }

        .flex-item a:hover {
            color: #004193
        }

.form-group label.error {
    color: #ff0000d4;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    background: #f1f1f1;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 13px;
}

.lnews-ct-search h3 {
    font-size: 18px
}

    .lnews-ct-search h3 a {
        color: #004193
    }

.lnews-ct-search p {
    font-size: 14px
}

.lnews-ct-search .item-new {
    margin-bottom: 15px;
    overflow: hidden
}

    .lnews-ct-search .item-new p {
        text-align: left !important
    }

.tth1-ct {
    margin: 20px 0
}

    .tth1-ct h1 {
        font-size: 25px;
        border-left: 3px solid #004193;
        padding-left: 20px;
        line-height: 25px
    }
/*04032021*/
#ForgotPasswordSend {
    margin-bottom: 20px
}

.edge-ct .owl-carousel .owl-item img {
    height: 100%;
    object-fit: cover
}

.popup-login {
    z-index: 1
}

.mn-li::after {
    height: 5px;
    background: #ddbb5b;
    position: absolute;
    content: '';
    bottom: -8px;
    transition: .2s linear;
    transform: scale(0);
    width: 100%;
    left: 0;
}

.tb-mobile {
    background: #fff;
    position: absolute;
    bottom: 0;
    padding-top: 89px;
    left: -1px;
    width: calc(660px * 1/4);
    top: 0;
    z-index: 1;
    box-shadow: 2px 0px 2px #33333361
}

.it-ver-mb:nth-of-type(even) {
    background: #ececec
}

.all-vre {
    position: relative
}

/*11/03/2020*/
.order {
    position: initial;
    text-align: center;
    left: initial;
    transform: initial
}

.plus i, .add i {
    font-size: 22px;
}

.phone-ft {
    font-size: 14px;
    display: flex;
    align-items: center;
}

    .phone-ft a {
        margin: 0 2px
    }

.plus, .add {
    transition: .2s linear
}

.back-top {
    position: fixed;
    bottom: 10px;
    z-index: 99;
    right: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s linear 0s;
}

    .back-top.show {
        opacity: 1;
        visibility: visible;
    }

.all-ic-fix {
    position: fixed;
    bottom: 20px;
    right: 14px;
    z-index: 1000
}

.it-fix {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #88b83e;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0px;
    bottom: 160px;
    border: 2px solid #fff
}

    .it-fix:hover {
        right: 6px
    }

    .it-fix:nth-of-type(1) img {
        width: 30px;
        height: 30px
    }

    .it-fix:nth-of-type(2) img {
        width: 32px;
        height: 32px
    }

    .it-fix:nth-of-type(3) img {
        width: 34px;
        height: 34px
    }

    .it-fix:nth-of-type(2) {
        background: #096ef1;
        bottom: 100px
    }

    .it-fix:nth-of-type(3) {
        background: #3387d8;
        bottom: 40px
    }

    .it-fix img {
        max-width: 100%
    }

.product-ai-mk .ai-mk-ct {
    float: right; /* text-align: right; */
}

    .product-ai-mk .ai-mk-ct h2, .product-ai-mk .ai-mk-ct p, .product-ai-mk .ai-mk-ct a {
        color: #000
    }

        .product-ai-mk .ai-mk-ct h2:before {
            background: #000
        }

.all-des-pr .link-order {
    display: table;
    margin: 0 auto;
    background: #004193;
    color: #fff;
    padding: 10px 30px;
    border-radius: 3px;
}

.link-order:hover {
    background: #000;
    color: #fff;
}

.product-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000082;
    display: none;
    z-index: 999;
}

    .product-popup .desc {
        background: #ffffff;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%,-50%);
        padding: 30px 40px;
        border-radius: 5px;
        box-shadow: 0 0 20px rgba(0,0,0,.3);
        text-align: center;
        width: 700px;
        max-width: calc(100% - 20px);
    }

        .product-popup .desc h2 {
            font-weight: 700;
            font-size: 25px;
            text-transform: uppercase;
            margin-bottom: 30px;
            color: #004193;
        }

.content-prd {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    text-align: center
}

    .content-prd input {
        font-size: 14px;
    }

    .content-prd .form-group {
        position: relative
    }

    .content-prd img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        float: left;
        margin-right: 15px;
        border: 1px solid #dadada;
        padding: 10px;
    }

    .content-prd h3 {
        float: left;
        font-size: 20px;
        display: block
    }

.close-up {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.ft-frm {
    display: block;
    margin: 15px 0 0;
    overflow: hidden
}

    .ft-frm input {
        border: initial;
        padding: 0px 10px;
        height: 32px;
        font-size: 14px;
        width: 100%;
    }

    .ft-frm label.error {
        display: none !important;
    }

    .ft-frm input.error {
        border: 1px solid red
    }

    .ft-frm button {
        height: 32px;
        border: initial;
        background: #ffc107;
        margin-left: 0;
        color: #004193;
        position: absolute;
        font-weight: 700;
        top: 0;
        right: 0;
    }

        .ft-frm button i {
            margin-left: 5px;
            font-size: 14px
        }

.item-child-lv2 a {
    font-size: 18px;
    margin-bottom: 3px;
    display: block;
    font-family: 'SF-regular';
}

.alrt-email {
    display: inline-block;
    padding: 3px 20px;
    color: #fff;
    font-size: 14px;
    margin: 10px 0 0;
    border-radius: 3px
}

    .alrt-email.alrt-success {
        background: #28a745
    }

    .alrt-email.alrt-danger {
        background: #dc3545
    }

.atsc-index {
    background: #f0f0f0;
    padding: 40px 0 60px
}

    .atsc-index .atsc-ct {
        width: 50%
    }

    .atsc-index .atsc-img {
        width: 50%;
        text-align: center
    }

    .atsc-index h2 {
        font-family: SF-regular, sans-serif;
        font-size: 40px
    }

    .atsc-index .atsc-ct.active h2 {
        opacity: 1;
        visibility: visible;
        animation: slideInRight 3s ease;
    }

    .atsc-index .atsc-ct .des-atsc {
        font-size: 20px
    }

    .atsc-index .atsc-ct p {
        font-size: 16px
    }

    .atsc-index .btn-xct {
        color: #000;
        font-family: SF-regular, sans-serif
    }

    .atsc-index .atsc-ct.active .btn-xct {
        opacity: 1;
        visibility: visible;
        animation: slideInRight 3s ease;
    }

.product-ai-mk .ai-mk-ct.active h2 {
    opacity: 1;
    visibility: visible;
    animation: slideInLeft 2s ease;
}

.product-ai-mk .ai-mk-ct.active p {
    opacity: 1;
    visibility: visible;
    animation: slideInLeft 2.5s ease;
}

.product-ai-mk .ai-mk-ct.active .btn-xct {
    opacity: 1;
    visibility: visible;
    animation: slideInLeft 3s ease;
}

.phone-ft br {
    display: none
}

.skiptranslate {
    display: none !important
}

body {
    top: 0 !important
}

.flex-item span {
    display: flex
}

.table-version-v2 {
    overflow: hidden;
    background: #ffffff;
    padding-top: 60px;
}

    .table-version-v2 .it-ver-v2 {
        width: 50%;
        float: left;
        text-align: center;
    }

        .table-version-v2 .it-ver-v2:first-child {
            text-align: left;
        }

        .table-version-v2 .it-ver-v2 .img-ver {
            height: 35px;
            display: block;
        }

            .table-version-v2 .it-ver-v2 .img-ver:nth-of-type(odd), .table-version-v2 .it-ver-v2 .txt-ver:nth-of-type(odd) {
                background: #ececec
            }

.it-ver-click {
    display: inline-block;
    padding: 8px 10px;
    background: #dadada;
    margin: 4px auto;
    cursor: pointer;
    font-size: 11px;
    border-radius: 99px;
}

    .it-ver-click.active {
        background: #004193;
        color: #ffffff
    }

.attr-list {
    display: none
}

    .attr-list.active {
        display: block
    }

.arrt-title {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
}

#RegisterEmail {
    position: relative
}


.box-tab-sl {
    display: grid;
    margin-bottom: 0;
    grid-template-columns: 30px 60px 30px;
    padding-left: 0;
    grid-gap: 2px
}

    .box-tab-sl li {
        list-style: none
    }

        .box-tab-sl li input {
            width: 100%;
            border-radius: 3px;
            border: 1px solid #cdcdcd;
            text-align: center;
            height: 30px
        }

        .box-tab-sl li span {
            width: 30px;
            height: 30px;
            border: 1px solid #cdcdcd;
            display: flex;
            align-items: center;
            line-height: 24px;
            margin: 0;
            border-radius: 0;
            justify-content: center;
        }

            .box-tab-sl li span:hover {
                cursor: pointer
            }

            .box-tab-sl li span.minus-cart-1 {
                display: block;
                text-align: center;
            }

.form-search input {
    border: 0;
    width: 100%;
    height: 100%;
    padding-left: 15px;
    font-size: 14px;
}

    .form-search input::placeholder {
        font-size: 14px;
    }

.form-search button {
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background-color: var(--color-main);
}
/*30/03/2021*/
.ft-frm {
    display: none
}

    .ft-frm.desk {
        display: block
    }


.hotline-header {
    color: var(--color-main);
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.py-block {
    padding-top: var(--p-block);
    padding-bottom: var(--p-block);
}


.pb-block {
    padding-bottom: var(--p-block);
}

.pt-block {
    padding-top: var(--p-block);
}

.title a, .title span {
    font-size: 40px;
    font-weight: 700;
    font-family: SF-bold;
}

.title {
    margin-bottom: 30px;
}

    .title.main a, .title.main span {
        color: var(--color-main);
        display: block;
    }

    .title.uppercase a, .title.uppercase span {
        text-transform: uppercase;
    }

    .title.center a, .title.center span {
        text-align: center;
    }

    .title.line-bottom a, .title.line-bottom span {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

        .title.line-bottom a:before, .title.line-bottom span:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 117px;
            height: 4px;
            background: #EAC41A;
        }

.item-solution {
    position: relative;
    display: block;
    aspect-ratio: 1;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

    .item-solution.product {
        box-shadow: 7px 7px 19px rgba(0,0,0,0.3);
    }

    .item-solution .img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .item-solution.product .img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }

.img {
    overflow: hidden;
}

.item-solution:hover img {
    transform: scale(1.05);
}

.item-solution:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    z-index: 1;
}

.item-solution .img {
    width: 100%;
    height: 100%;
    display: block;
}

.item-solution span:last-child {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    font-family: SF-bold;
    text-transform: uppercase;
    z-index: 3;
}


.dots-main .owl-dots {
    margin-top: 15px;
}

    .dots-main .owl-dots .owl-dot span {
        background: 0 0;
        position: relative;
        border: 1px solid #ccc;
        width: 14px;
        height: 14px;
    }




        .dots-main .owl-dots .owl-dot span::before {
            position: absolute;
            content: "";
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            border-radius: 50%;
        }

    .dots-main .owl-dots .owl-dot.active span, .dots-main .owl-dots .owl-dot:hover span {
        border-color: var(--color-main);
        background: 0 0
    }

        .dots-main .owl-dots .owl-dot.active span::before, .dots-main .owl-dots .owl-dot:hover span::before {
            background-color: var(--color-main);
        }


.slide-technology .item, .slide-technology {
    aspect-ratio: 1912/745;
}

    .slide-technology .item {
        position: relative;
    }


        .slide-technology .item .info {
            position: absolute;
            left: 30px;
            bottom: 30px;
        }

            .slide-technology .item .info p {
                font-size: 30px;
                text-transform: uppercase;
                color: #fff;
                text-shadow: 1px 1px 2px #000;
            }

        .slide-technology .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slide-technology .item a, .slide-technology .item .img {
            width: 100%;
            height: 100%;
            display: block;
        }

.dots-white .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
}

    .dots-white .owl-dots .owl-dot span {
        background: 0 0;
        position: relative;
        border: 1px solid #ccc;
        width: 14px;
        height: 14px;
    }




        .dots-white .owl-dots .owl-dot span::before {
            position: absolute;
            content: "";
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            border-radius: 50%;
        }

    .dots-white .owl-dots .owl-dot.active span, .dots-white .owl-dots .owl-dot:hover span {
        border-color: var(--color-white);
        background: 0 0
    }

        .dots-white .owl-dots .owl-dot.active span::before, .dots-white .owl-dots .owl-dot:hover span::before {
            background-color: var(--color-white);
        }


.list-module-news {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .list-module-news .item {
        padding: 10px 30px;
        border: 1px solid var(--color-main);
        color: var(--color-main);
        text-transform: uppercase;
        border-radius: 50px;
        font-family: SF-bold;
    }

        .list-module-news .item:hover, .list-module-news .item.active {
            background-color: var(--color-main);
            color: var(--color-white);
            cursor: pointer;
        }

.item-grid-news {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.news-index .item-module {
    display: none;
    flex-wrap: wrap;
    gap: 20px;
}

.item-news-index {
    width: calc((100% - 40px)/3);
    display: block;
    aspect-ratio: 394/268;
    overflow: hidden;
    position: relative;
}

    .item-news-index:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(36, 61, 144, 0.60);
        z-index: 1;
    }

    .item-news-index img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .item-news-index:first-child {
        width: 100%;
        aspect-ratio: 1222/268;
    }


.news-index .item-module.active {
    display: flex;
}

.item-news-index .info {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}


    .item-news-index .info span {
        color: #fff;
        display: block;
    }



    .item-news-index .info .name {
        font-family: sf-bold;
        margin-bottom: 15px;
    }

    .item-news-index .info .btn-see {
        padding: 7px 20px;
        border: 2px solid var(--color-white);
        display: inline-flex;
        align-items: center;
        gap: 15px;
        font-family: sf-bold;
    }

        .item-news-index .info .btn-see svg path {
            fill: var(--color-white);
        }

        .item-news-index .info .btn-see:hover {
            background-color: var(--color-white);
            color: var(--color-main);
        }

            .item-news-index .info .btn-see:hover svg path {
                fill: var(--color-main);
            }

.item-news-index:hover img {
    transform: scale(1.05);
}

.slide-partner .item {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide-partner .item img {
        max-width: 100%;
        max-height: 100%;
        width: initial;
        height: initial;
        object-fit: contain;
    }


.social-fixed {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 20;
}

    .social-fixed a, .social-fixed div {
        display: flex;
        background: var(--color-white);
        margin: 15px 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        position: relative;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

        .social-fixed a i, .social-fixed div i {
            font-size: 20px;
        }

        .social-fixed a.phone, .social-fixed div.phone {
            background: red;
        }

        .social-fixed a.mess, .social-fixed div.mess {
            background: #1977f3;
        }

        .social-fixed a.zalo, .social-fixed div.zalo {
            background: #1977f3;
        }

    .social-fixed .coccoc-alo-ph-circle {
        width: 60px;
        height: 60px;
        top: -20px;
        left: -6px;
        position: absolute;
        background-color: transparent;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        border: 2px solid red;
        opacity: 0.1;
        -webkit-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
        -moz-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
        -ms-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
        -o-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
        animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .social-fixed .coccoc-alo-phone {
        background-color: transparent;
        cursor: pointer;
        z-index: 200000 !important;
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        -webkit-transition: visibility 0.5s;
        -moz-transition: visibility 0.5s;
        -o-transition: visibility 0.5s;
        transition: visibility 0.5s;
    }

    .social-fixed .coccoc-alo-ph-circle-fill {
        width: 38px;
        height: 38px;
        top: -15px;
        left: 0px;
        position: absolute;
        background-color: red;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        border: 2px solid transparent;
        -webkit-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
        -moz-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
        -ms-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
        -o-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
        animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .social-fixed .coccoc-alo-ph-img-circle {
        width: 40px;
        height: 40px;
        top: -10px;
        left: 5px;
        position: absolute;
        z-index: 10;
        background: url("../image/phone.png") no-repeat center center;
        background-size: 100% 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        border: 2px solid transparent;
        opacity: 1;
        -webkit-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
        -moz-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
        -ms-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
        -o-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
        animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    }

@-moz-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }

    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-webkit-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }

    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-o-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }

    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }

    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-moz-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.9;
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.9;
    }

    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.9;
    }
}

@-webkit-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.9;
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.9;
    }

    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.9;
    }
}

@-o-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.9;
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.9;
    }

    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.9;
    }
}

@keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.9;
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.9;
    }

    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.9;
    }
}

@-moz-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@-o-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

.navs-white .owl-nav {
    margin-top: 0;
}


    .navs-white .owl-nav .owl-prev, .navs-white .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .navs-white .owl-nav .owl-prev {
        left: 15px;
    }

    .navs-white .owl-nav .owl-next {
        right: 15px;
    }

        .navs-white .owl-nav .owl-prev:hover, .navs-white .owl-nav .owl-next:hover {
            background: 0 0;
        }

        .navs-white .owl-nav .owl-prev svg, .navs-white .owl-nav .owl-next svg {
            fill: var(--color-white);
        }

        .navs-white .owl-nav .owl-prev:hover svg, .navs-white .owl-nav .owl-next:hover svg {
            fill: var(--color-main-yellow);
        }

.overview-solution {
    background: #F3F3F3;
}

    .overview-solution .desc {
        max-width: 70%;
        margin: auto;
        text-align: center;
    }


.item-reverse {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    overflow: hidden;
}

    .item-reverse .img, .item-reverse .info {
        width: 50%;
        display: block;
    }

    .item-reverse .info {
        padding-left: 50px;
    }

        .item-reverse .info .img {
            aspect-ratio: 1;
        }

    .item-reverse .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .item-reverse:hover img {
        transform: scale(1.05);
    }

    .item-reverse .info h3 a {
        color: #000;
        font-family: sf-bold;
        font-size: 40px;
        font-weight: 600;
        text-transform: capitalize;
    }

        .item-reverse .info h3 a:hover {
            color: var(--color-main-yellow);
        }

    .item-reverse .info h3 {
        margin-bottom: 15px;
    }

    .item-reverse .info .desc li {
        list-style: disc;
        margin-bottom: 10px;
    }

    .item-reverse .info .desc ul {
        padding-left: 20px
    }

    .item-reverse:nth-child(even) {
        flex-direction: row-reverse
    }

        .item-reverse:nth-child(even) .info {
            padding-right: 50px;
            padding-left: 0;
        }


.propose-block .title {
    margin-bottom: 30px;
}

.slide-product-propose .item .img {
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    margin-bottom: 30px;
}

    .slide-product-propose .item .img img {
        object-fit: contain;
        width: 80%;
        height: 80%;
    }

.slide-product-propose .item h3 {
    text-align: center;
}

    .slide-product-propose .item h3 a {
        font-family: sf-bold;
        font-size: 24px;
        color: #000;
    }

.slide-product-propose .img-parent {
    position: relative;
}

.navs-main .owl-nav {
    margin-top: 0;
}

    .navs-main .owl-nav .owl-prev, .navs-main .owl-nav .owl-next {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
    }

    .navs-main .owl-nav .owl-prev {
        left: -40px;
    }

    .navs-main .owl-nav .owl-next {
        right: -40px;
    }

        .navs-main .owl-nav .owl-prev svg, .navs-main .owl-nav .owl-next svg {
            fill: var(--color-main);
        }

        .navs-main .owl-nav .owl-prev:hover, .navs-main .owl-nav .owl-next:hover {
            background: 0 0;
        }

            .navs-main .owl-nav .owl-prev:hover svg, .navs-main .owl-nav .owl-next:hover svg {
                fill: var(--color-main-yellow);
            }

.slide-product-propose .see-detail {
    width: 50px;
    height: 50px;
    background-color: var(--color-main-yellow);
    border-radius: 50%;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-main-yellow);
}

    .slide-product-propose .see-detail:hover {
        background-color: var(--color-white);
    }

        .slide-product-propose .see-detail:hover svg path {
            fill: var(--color-main-yellow);
        }


.btn-download-file {
    margin-top: 15px;
    padding: 5px 17px;
    background-color: var(--color-main-yellow);
    border: 1px solid var(--color-main-yellow);
    border-radius: 8px;
    color: var(--color-white);
    display: inline-block;
    font-weight: 600;
    margin-right: 15px;
}

    .btn-download-file:hover {
        background: var(--color-white);
        color: var(--color-main-yellow);
    }

.product-layout .block-1 .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

    .product-layout .block-1 .container .left {
        width: 50%;
    }

    .product-layout .block-1 .container .right {
        width: 50%;
    }

    .product-layout .block-1 .container .left img {
        object-fit: contain;
        width: 80%;
        height: 80%;
    }

    .product-layout .block-1 .container .right h1 {
        color: #243D90;
        font-family: sf-bold;
        font-size: 55px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: right
    }

    .product-layout .block-1 .container .right .desc > h2:first-of-type {
        color: #000;
        font-size: 26px;
        font-weight: 600;
        font-family: semibold;
    }

.product-layout .block-2 .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

    .product-layout .block-2 .container .item {
        display: flex;
        width: calc((100% - 50px) /2);
        flex-direction: column;
        justify-content: space-between;
    }

        .product-layout .block-2 .container .item h2, .specifications h2 {
            color: #000;
            font-size: 28px;
            font-weight: 600;
            font-family: semibold;
        }

.product-layout.layout-2 .block-2 .container .item h2 {
    /* min-height: 68px; */
}

.product-layout .block-2 .container .item .desc {
    min-height: 100px;
    margin-bottom: 20px;
    color: #000;
}

    .product-layout .block-2 .container .item .desc p {
        color: #000;
    }

.product-layout .block-2 .container .item .img {
    aspect-ratio: 585/329;
}

    .product-layout .block-2 .container .item .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-layout .video, .product-layout .block-3 {
    height: 100vh;
    position: relative;
}

    .product-layout .video iframe, .product-layout .video video {
        width: 100%;
        height: 100%;
        display: block;
    }

.product-layout.layout-3 .block-3, .product-layout.layout-4 .block-3 {
    height: auto;
    aspect-ratio: 1900/750;
}

.product-layout .block-3 .bg-block-3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    z-index: -1;
    background-repeat: no-repeat;
}

.btn-main-blue {
    background: var(--color-main);
    padding: 10px 25px;
    border-radius: 5px;
    color: var(--color-white);
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
    font-family: semibold;
    font-size: 15px;
    border: 1px solid var(--color-main);
}

    .btn-main-blue:hover {
        background: #fff;
        color: var(--color-main);
    }

.block-4 .item {
    display: flex;
    align-items: center;
}

    .block-4 .item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .block-4 .item .img, .block-4 .item .info {
        width: 50%;
    }

    .block-4 .item .img {
        aspect-ratio: 611/395;
        border: 1px solid #ccc;
    }

        .block-4 .item .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .block-4 .item .info {
        padding-left: 50px;
    }


    .block-4 .item:nth-child(even) .info {
        padding-left: 0;
        padding-right: 50px;
    }

    .block-4 .item .info h2 {
        color: #000;
        font-family: semibold;
        font-size: 40px;
        font-weight: 600;
        margin-bottom: 15px;
    }


.block-3 .container {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .block-3 .container .info {
        max-width: 50%;
    }

.block-3 .info h2, .images-product h2 {
    color: #FFF;
    font-family: semibold;
    font-size: 40px;
    font-weight: 600;
}

.block-3 .info .desc, .block-3 .info .desc p {
    color: #fff;
}

.block-3.other .container {
    justify-content: flex-start;
    padding-top: 100px;
}

.block-3.other .info {
    width: 40%;
    top: 100%;
}

    .block-3.other .info h2 span {
        display: block;
    }

    .block-3.other .info .desc {
        position: absolute;
        bottom: 100px;
        right: calc((100% - 1200px)/2);
        text-align: right;
        max-width: 30%
    }


.images-product h2 {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

.slide-images .item, .slide-images {
    aspect-ratio: 981/571;
}

.slide-images {
    max-width: 80%;
    margin: auto;
}

    .slide-images .item {
        overflow: hidden;
        border: 1px solid #ccc;
    }

        .slide-images .item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.specifications h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .specifications h2 a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 3px 15px;
        font-size: 15px;
        border-radius: 30px;
        background: var(--color-main);
        color: var(--color-white);
        border: 1px solid var(--color-main);
    }

        .specifications h2 a svg {
            margin-bottom: 5px;
        }

.specifications .container {
    display: flex;
    flex-wrap: wrap;
}

    .specifications .container .left {
        width: 60%;
        padding-right: 100px;
    }

    .specifications .container .right {
        width: 40%;
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .specifications .container .right .img {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .specifications .container .right .img img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .specifications .container .right .btn-main-blue {
            margin: auto;
        }

.specifications .detail table {
    border: 0;
    border-collapse: collapse;
    max-width: calc(100% - 20px);
}

    .specifications .detail table tr td {
        border-bottom: 1px solid #ccc;
        position: relative;
        padding: 7px 5px;
    }

.specifications .detail table {
    margin-left: 20px;
}

    .specifications .detail table tr td:first-child img {
        position: absolute;
        left: -20px;
        top: 10px;
    }


.layout-3 .block-end .item:last-child, .layout-4 .block-end .item:nth-last-child(-n+2) {
    flex-direction: column-reverse;
    gap: 30px;
}

    .layout-3 .block-end .item:last-child .img, .layout-3 .block-end .item:last-child .info, .layout-4 .block-end .item:nth-last-child(-n+2) .img, .layout-4 .block-end .item:nth-last-child(-n+2) .info {
        width: 80%;
    }

    .layout-3 .block-end .item:last-child .info, .layout-4 .block-end .item:nth-last-child(-n+2) .info {
        text-align: center;
    }

.sub-menu-solution {
    position: fixed;
    left: calc((100% - 1200px)/2);
    z-index: 100;
    background-color: #fff;
    width: 1200px;
    display: flex;
    margin-top: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s linear;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

    .sub-menu-solution .menu-sub-left {
        padding: 20px 0;
        width: 25%;
        background-color: var(--color-main);
    }

        .sub-menu-solution .menu-sub-left a {
            color: #fff;
            padding: 10px 20px 10px 25px;
            font-family: 'semibold';
            font-size: 18px;
        }

            .sub-menu-solution .menu-sub-left a:hover, .sub-menu-solution .menu-sub-left a.active {
                background-color: var(--color-main-yellow);
                color: var(--color-main);
            }

    .sub-menu-solution .menu-sub-right {
        padding: 20px 30px;
        width: 75%;
    }

        .sub-menu-solution .menu-sub-right > ul {
            height: 100%;
        }

            .sub-menu-solution .menu-sub-right > ul > li:not(:first-child) {
                height: calc(100% - 60px);
            }

            .sub-menu-solution .menu-sub-right > ul > li > ul {
                max-height: calc(100% - 50px);
                overflow-y: auto;
            }

        .sub-menu-solution .menu-sub-right .search-solution {
            display: block;
            height: 42px;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 1px solid #ccc;
        }

            .sub-menu-solution .menu-sub-right .search-solution form, .sub-menu-solution .menu-sub-right .search-solution input {
                display: block;
                height: 100%;
                position: relative;
            }


                .sub-menu-solution .menu-sub-right .search-solution form .icon-search {
                    position: absolute;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                    z-index: 10;
                }


                .sub-menu-solution .menu-sub-right .search-solution form input {
                    padding-left: 40px;
                }


.item-child-lv2 {
    display: none;
}

    .item-child-lv2.active {
        display: block;
    }

    .item-child-lv2 .title-lv1 {
        font-family: sf-bold;
        margin-bottom: 15px;
        font-size: 20px;
    }


.mn-li:hover .sub-menu-solution {
    opacity: 1;
    pointer-events: all;
}


.menu-bottom-mb {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: space-between;
    background-color: var(--color-white);
    padding: 0 20px;
    z-index: 99;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .menu-bottom-mb img {
        height: 30px;
        width: initial;
        object-fit: contain;
    }

    .menu-bottom-mb .phone svg {
        fill: red;
        width: 30px;
        height: 30px;
    }

    .menu-bottom-mb .mess svg {
        fill: #0469e4;
        width: 30px;
        height: 30px;
    }

.technology-index .owl-dots {
    display: flex;
    flex-direction: row-reverse;
}

.list-product-propose {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}

    .list-product-propose .item {
        width: calc((100% - 200px)/3);
    }

.item-product-propose {
    position: relative;
}

    .item-product-propose .img {
        aspect-ratio: 1;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

        .item-product-propose .img img {
            width: 80%;
            height: auto;
            object-fit: contain;
        }

    .item-product-propose a {
        position: relative;
        z-index: 1;
        text-align: center;
        font-family: semibold;
        font-size: 18px;
    }

        .item-product-propose a:hover {
            color: var(--color-main-yellow);
        }

.bg-blur {
    position: absolute;
    top: 11px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    aspect-ratio: 1;
    filter: blur(16px);
}

    .bg-blur:before {
        position: absolute;
        content: "";
        background: #eeeeee;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
    }

.item-product-propose .img img {
    position: relative;
    z-index: 10;
    width: 70%;
    height: 70%;
    object-fit: contain;
}


.btn-contact-min {
    background: var(--color-main);
    padding: 5px 17px;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #ffff76;
    font-size: 16px;
    font-family: sf-bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

    .btn-contact-min:hover {
        border-color: var(--color-main);
        background: var(--color-white);
        color: var(--color-main);
    }
/* An toàn thông tin */
.banner-an-toan-thong-tin {
    aspect-ratio: 1920 / 483;
    background: url("../image/banner-an-toan-thong-tin.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
}

    .banner-an-toan-thong-tin .img {
        width: 100%;
        height: 100%;
    }

        .banner-an-toan-thong-tin .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .banner-an-toan-thong-tin .info {
        position: absolute;
        top: 50%;
        left: calc(((100% -  1230px) / 2) + 15px);
        transform: translateY(-50%);
    }

        .banner-an-toan-thong-tin .info > h1 {
            color: white;
            font-family: semibold;
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
        }

        .banner-an-toan-thong-tin .info > .subtitle {
            color: #FFF;
            font-family: SF-regular;
            font-size: 18px;
            font-weight: 500;
        }

.pad-section {
    padding: 50px 0;
}

.system-secure .flex-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

    .system-secure .flex-title .title {
        width: 50%;
        color: var(--color-main);
        font-family: semibold;
        font-size: 40px;
        font-weight: 600;
        line-height: 1.2;
        margin: 0;
        padding: 0;
    }

    .system-secure .flex-title .description {
        width: 50%;
    }

        .system-secure .flex-title .description p, .system-secure .flex-title .description div {
            color: #000;
            font-family: SF-regular;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.3;
        }

.system-secure .flex-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
}

    .system-secure .flex-item .card-item {
        width: calc((100% / 4));
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 50px;
        border-right: 1px solid #E2E2E2;
    }

        .system-secure .flex-item .card-item:first-child {
            padding-left: 0px;
        }

        .system-secure .flex-item .card-item:last-child {
            padding-right: 0px;
            border-right: none;
        }

        .system-secure .flex-item .card-item .icon {
            width: 94px;
            height: 79px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .system-secure .flex-item .card-item .icon img {
                max-width: 100%;
                max-height: 100%;
                width: initial;
                height: initial;
                object-fit: contain;
            }

        .system-secure .flex-item .card-item .desc div, .system-secure .flex-item .card-item .desc p {
            margin-top: 0 !important;
        }

.system-secure .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.system-secure .short-descripton {
    width: 53%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #000;
    text-align: center;
    font-family: semibold;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
}

    .system-secure .short-descripton div, .system-secure .short-descripton p {
        color: #000;
        text-align: center;
        font-family: semibold;
        font-size: 18px;
        font-style: italic;
        font-weight: 600;
        line-height: 1.5;
    }

.manage-secure {
    background: #F4F4F4;
}

    .manage-secure .container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 90px;
    }

        .manage-secure .container .left-side {
            width: calc((50% - 90px));
        }

            .manage-secure .container .left-side .item {
                padding: 30px 0;
                border-bottom: 1px solid #CECECE;
            }

                .manage-secure .container .left-side .item:last-child {
                    border-bottom: none;
                }

            .manage-secure .container .left-side .flex-title {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .manage-secure .container .left-side .title {
                margin: 0;
                margin-bottom: 30px;
                color: var(--color-main);
                font-family: semibold;
                font-size: 40px;
                font-weight: 600;
                line-height: 1.5;
            }

            .manage-secure .container .left-side .title-name {
                color: #000;
                font-family: semibold;
                font-size: 23px;
                font-weight: 600;
                line-height: 1.3;
                margin: 0;
            }

            .manage-secure .container .left-side .description {
                color: #000;
                font-family: SF-regular;
                font-size: 18px;
                font-weight: 400;
                line-height: 1.3;
                display: none;
            }

                .manage-secure .container .left-side .description div, .manage-secure .container .left-side .description p {
                    color: #000;
                    font-family: SF-regular;
                    font-size: 18px;
                    font-weight: 400;
                    line-height: 1.6;
                }

        .manage-secure .container .right-side {
            width: 50%;
            border-radius: 8px;
        }

            .manage-secure .container .right-side .img {
                aspect-ratio: 653/579;
                width: 100%;
                border-radius: 8px;
            }

                .manage-secure .container .right-side .img:hover img {
                    transform: scale(1.1);
                }

                .manage-secure .container .right-side .img img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 8px;
                }

.btn-plus {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

    .btn-plus::before,
    .btn-plus::after {
        content: '';
        position: absolute;
        background: #A4A4A4;
        transition: all 0.3s ease;
    }

    .btn-plus::before {
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        transform: translateY(-50%);
    }

    .btn-plus::after {
        left: 50%;
        top: 0;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }

    .btn-plus.active::after {
        opacity: 0;
    }

.report-secure .container {
    display: flex;
    flex-direction: row;
    gap: 71px;
    align-items: center;
}

    .report-secure .container .left-side {
        width: 50%;
        aspect-ratio: 653/579;
        border-radius: 8px;
    }

    .report-secure .container .right-side {
        width: calc(50% - 71px);
    }

        .report-secure .container .right-side .title {
            margin-top: 0;
            margin-bottom: 30px;
            color: var(--color-main);
            font-family: semibold;
            font-size: 40px;
            font-weight: 600;
            line-height: 1.3;
        }

        .report-secure .container .right-side .description div, .report-secure .container .right-side .description p {
            color: #000;
            text-align: justify;
            font-family: SF-regular;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.3;
        }

    .report-secure .container .left-side .img {
        width: 100%;
        height: 100%;
        aspect-ratio: 653/579;
        border-radius: 8px;
    }

        .report-secure .container .left-side .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .report-secure .container .left-side .img:hover img {
            transform: scale(1.1);
        }

.progress-secure {
    background: #F4F4F4;
}

    .progress-secure .container .title {
        margin: 0;
        color: var(--color-main);
        text-align: center;
        font-family: semibold;
        font-size: 40px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .progress-secure .container .owl-dots {
        margin-top: 15px !important;
    }

    .progress-secure .container .card-progress {
        position: relative;
        padding: 30px 20px 52px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        border-radius: 8px;
        background: #FFF;
        aspect-ratio: 302/417;
    }

        .progress-secure .container .card-progress .icon {
            width: 111px;
            height: 114px;
            aspect-ratio: 37/38;
            margin-bottom: 15px;
        }

            .progress-secure .container .card-progress .icon img {
                max-width: 100%;
                max-height: 100%;
                width: initial;
                height: initial;
                object-fit: contain;
            }

        .progress-secure .container .card-progress .title-name {
            margin: 0;
            color: #333;
            text-align: center;
            font-family: SF-bold;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            min-height: 52px;
        }

        .progress-secure .container .card-progress .desc div, .progress-secure .container .card-progress .desc p {
            color: #000;
            text-align: center;
            font-family: SF-regular;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.3;
        }

.number-progress {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #EEE;
    font-family: SF-bold;
    font-size: 88px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8;
}

.list-secure .title {
    color: var(--color-main);
    text-align: center;
    font-family: semibold;
    font-size: 40px;
    font-weight: 600;
    padding: 0;
    margin-top: 0;
}

.table-wrap {
    width: 100%;
}

.security-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-spacing: 0px 5px;
}

    .security-table thead th {
        background: var(--color-main);
        color: #FFF;
        text-align: center;
        font-family: SF-bold;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 14px 12px;
    }

        .security-table thead th:first-child {
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
        }

        .security-table thead th:last-child {
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
        }

    .security-table tbody td {
        padding: 14px 12px;
        text-align: center;
        vertical-align: middle;
        color: #000;
        text-align: center;
        font-family: SF-regular;
        font-size: 18px;
        font-weight: 400;
    }

        .security-table tbody td:first-child {
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
        }

        .security-table tbody td:last-child {
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        .security-table tbody td:nth-child(2) {
            text-align: left;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }

    .security-table tbody tr {
        border: 1px solid #EDEDED;
        background: #FFF;
        box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
    }

.action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action svg {
    transition: transform 0.2s ease;
}

.action a:hover svg {
    transform: scale(1.15);
}

.form-contact-progress {
    position: relative;
    background: url("../image/background-mkvision.jpg") no-repeat center center;
    background-size: cover;
}

    .form-contact-progress::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.50);
    }

    .form-contact-progress .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
    }

        .form-contact-progress .container .title {
            color: #FFF;
            text-align: center;
            font-family: semibold;
            font-size: 40px;
            font-weight: 600;
            line-height: 1.3;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .form-contact-progress .container .description {
            width: 60%;
            color: #FFF;
            text-align: center;
            font-family: SF-light;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 30px;
        }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 998;
}

    .overlay.active {
        display: flex;
    }

.alrt-contact.alrt-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: green;
    background: #fff;
    padding: 20px;
    border: 1px solid green;
    border-radius: 12px;
    z-index: 999;
}

form#SendSecure {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-secure {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 33px;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

    .form-secure .form-group label.error {
        display: none !important;
    }

.form-control.error {
    border-color: red !important;
    color: red !important;
}

form#SendSecure .form-group {
    width: 100%;
}

    form#SendSecure .form-group.half {
        width: calc(((100% - 33px) / 2));
    }

    form#SendSecure .form-group input {
        width: 100%;
        height: 46px;
        border-radius: 4px;
        border: 1px solid #E3E3E3;
        background: #FFF;
        padding: 0 15px;
        color: #565656;
        font-family: SF-regular;
        font-size: 16px;
        font-weight: 400;
        box-sizing: border-box;
    }

form#SendSecure .flex-form-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 33px;
    width: 100%;
}

    form#SendSecure .flex-form-group .left, form#SendSecure .flex-form-group .right {
        width: calc((100% - 33px) / 2);
    }

    form#SendSecure .flex-form-group .left {
        display: flex;
        flex-direction: column;
        gap: 33px;
    }

    form#SendSecure .flex-form-group .right .form-group {
        width: 100%;
        height: 100%;
        max-height: 204px;
    }

        form#SendSecure .flex-form-group .right .form-group textarea {
            padding: 15px;
            width: 100%;
            height: 100%;
            color: #565656;
            font-family: SF-regular;
            font-size: 16px;
            font-weight: 400;
            box-sizing: border-box;
            overflow: scroll;
            border-radius: 4px;
            border: 1px solid #E3E3E3;
            background: #FFF;
        }

.form-policy {
    width: 100%;
}

.policy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

    .policy-check input {
        display: none;
    }

    .policy-check .checkmark {
        width: 20px;
        height: 20px;
        min-width: 20px;
        border: 1px solid #CFCFCF;
        border-radius: 4px;
        background: #fff;
        position: relative;
        margin-top: 2px;
    }

    .policy-check input:checked + .checkmark::after {
        content: "";
        position: absolute;
        left: 4px;
        top: 1px;
        width: 6px;
        height: 10px;
        border: solid #2466C9;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.policy-text {
    flex: 1;
    user-select: none;
    color: #565656;
    font-family: SF-regular;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
}

.policy-check:hover .checkmark {
    border-color: #2466C9;
}

.btnSendContact {
    border-radius: 12px;
    background: #EAC41A;
    width: 218px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--color-main);
    text-align: center;
    font-family: SF-bold;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.detail-contact .list-des {
    padding: 0;
    margin-top: 0;
    margin-bottom: 15px;
}

.detail-contact .title {
    color: var(--color-main);
    font-family: semibold;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0px;
    margin-bottom: 15px;
}

.detail-contact .flex-top-contact {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #D4D4D4;
    gap: 30px;
}

    .detail-contact .flex-top-contact .item {
        margin-bottom: 0;
        padding-top: 0 !important;
    }

        .detail-contact .flex-top-contact .item span {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
            color: #000;
            font-family: SF-regular;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.5;
        }

            .detail-contact .flex-top-contact .item span strong {
                font-size: 18px !important;
            }

.detail-contact .item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

    .detail-contact .item:first-child {
        padding-top: 25px;
    }

    .detail-contact .item .title-name {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        color: #000;
        font-family: semibold;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.2;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .detail-contact .item .description {
        color: #000;
        font-family: SF-regular;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;
        padding-left: 25px;
    }

        .detail-contact .item .description div, .detail-contact .item .description p, .detail-contact .item .description li {
            color: #000;
            font-family: SF-regular;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.3;
            margin-top: 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 5px;
        }

        .detail-contact .item .description ul {
            list-style: disc !important;
            margin-top: 0 !important;
        }
