:root {
    --mauchinh: #2e86c1;
    --trang: white;
    --nav: #4b4b4b;
    --buttondk: #f89a36;
    --den: black;
    --shawdow: rgba(0, 0, 0, 0.1);
    --trangmo: rgba(255, 255, 255, 0.8);
    --duongvien: #69a297;
    --xanhla: #2ecc71;
    --burger: #000;
}

@font-face {
    font-family: 'inter';
    src: url(/css/font/Total/Inter_18pt-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'inter';
    src: url(/css/font/Total/Inter_18pt-Bold.ttf);
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: 'inter';
    src: url(/css/font/Total/Inter_18pt-BoldItalic.ttf);
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'inter';
    src: url(/css/font/Total/Inter_18pt-Italic.ttf);
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'roboto';
    src: url(/css/font/Total/roboto-bold.ttf);
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: 'roboto';
    src: url(/css/font/Total/roboto-bolditalic.ttf);
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'roboto';
    src: url(/css/font/Total/roboto-italic.ttf);
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'roboto';
    src: url(/css/font/Total/roboto-regular.ttf);
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: 'roboto';
}


/* Đặt lại mặc định */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: 'roboto';
    padding-top: 80px;
}


/* Header chính */

.skybar {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: var(--trang);
    box-shadow: 0 4px 8px var(--nav);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
}

.body-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 80px;
}

.logo-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width:87%;
	text-align:left;
}

.logo-skybar {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: .7em;
    line-height: 1.2em;
    padding-left: 10px;
    color: #222;
}

.logo-skybar img {
    display: inline-block;
    width: auto;
    height: 50px;
    margin-bottom: 5px;
}

.hamburger {
    margin-right: 10px !important;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 28px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    right: 10px;
}

.nav-toggle .line {
    width: 100%;
    height: 4px;
    background-color: var(--den);
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.menu-link {
    font-size: 1.5em;
    color: var(--den);
    font-weight: bold;
}

.overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--shawdow);
    display: none;
    z-index: 999;
    box-shadow: 0 4px 8px var(--shawdow);
}

.overlay.show {
    display: block;
}

.menu-nav {
    position: fixed;
    top: 80px;
    left: -120%;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 9999;
    background-color: #FFF;
    transition: all .3s;
    border-top: 1px solid #DDD;
}

.menu-nav.active {
    left: 0;
}

.menu-list {
    padding-top: 10%;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 3em;
}

.menu-link {
    text-decoration: none;
    font-size: 1.4em;
    color: var(--nav);
    transition: all 0.3s ease;
    display: block;
    font-family: 'roboto';
    padding: 8px 5px;
}

.menu-link:hover, .menu-link.active {
    background-color: var(--mauchinh);
    color: var(--trang);
}

.hotline-top {
    position: fixed;
    bottom: 50px;
    right: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    z-index: 10000;
    flex-direction: column;
}

.cta-area {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
	margin:50px 0; 
}

.cta-area .cta-content {
    display: inline-block;
    width: 80%;
    max-width: 820px;
    padding: 30px 0;
    font-size: 1.5em;
    color: var(--mauchinh);
    font-weight: bold;
    position: relative;
}

.cta-area .cta-content:before,
.cta-area .cta-content:after {
    content: '"';
    font-size: 1.2em;
    position: absolute;
}

.cta-area .cta-content:before {
    top: 40px;
    left: -20px;
}

.cta-area .cta-content:after {
    bottom: 0;
    right: 10px;
}

.cta-area .button {
    display: inline-block;
    width: auto;
    height: 40px;
    background-color: var(--xanhla);
    color: #FFF;
    line-height: 40px;
    text-decoration: none;
    border: none;
    margin-right: 0;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: normal;
    transition: all .5s;
}

.cta-area .button:hover {
    background-color: var(--mauchinh);
}


.commit {
    margin: 50px 0 ;
    text-align: center;
}

.commit .commit-content {
    padding: 0 20px;
}

.commit .commit-title {
    font-size: 1.5em;
    color: var(--mauchinh);
    border-bottom: 2px solid var(--mauchinh);
    margin-bottom: 40px;
}

.commit .commit-image-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.commit .commit-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

.commit .commit-image:before {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    padding-top: 56.3%;
}

.commit .commit-image:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(31, 97, 141, .8);
    transition: all .5s;
}

.commit .commit-image:hover:after {
    background: rgba(31, 97, 141, 1);
    height: 30%;
}

.commit .commit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commit .commit-image span {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    z-index: 6;
    transform: translate(-50%, 50%);
    color: #FFF;
    font-size: 1.3em;
    font-weight: bold;
    transition: all .5s;
}

.commit .commit-image:hover span {
    bottom: 15%;
}

.language {
    display: none;
}

.call {
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--mauchinh);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    animation: shake 0.8s infinite;
}

.icon-call {
    width: 24px;
    height: 24px;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

#sdt {
    display: none;
}

.text-hltop {
    color: var(--mauchinh);
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    display: inline-block;
    animation: pulse 0.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.video-banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.video-banner:before {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    padding-top: 56%;
}

.video-banner:after {
    content: "";
    display: block;
    width: 100%;
    height: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 75, 107, 1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: .7;
    z-index: 2;
}

.video-banner video {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: auto;
}

.video-banner .video-banner-content {
    font-size: 1.2em;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #FFF;
    text-shadow: 0 0 3px #000;
    z-index: 3;
}

.video-banner .video-banner-content h2 div {
    font-size: .4em;
    font-weight: normal;
}

.video-banner .video-banner-content .video-banner-slogan {
    font-size: .6em;
    margin-top: 10px;
    font-weight: bold;
}

.lienhe {
    display: none;
}

.search-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10000;
}

.btn-search {
    position: fixed;
    bottom: 130px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--mauchinh);
    transition: background-color 0.3s ease;
    transition: transform 0.3s ease;
    animation: pulse 0.8s infinite;
}

.input-search {
    position: fixed;
    bottom: 130px;
    right: 80px;
    width: 0;
    padding: 0;
    opacity: 0;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 4px;
    background-color: var(--trang);
    border: 1px solid var(--nav);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    transition: width 0.4s ease, opacity 0.4s ease, padding 0.4s ease, transform 0.4s ease;
    z-index: 10001;
}

.search-wrapper:hover .input-search,
.input-search:focus {
    width: 180px;
    padding: 8px 12px;
    opacity: 1;
}


/*Banner*/

.banner {
    position: relative;
    background: url('../images/banner.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    padding: 0 40px;
    overflow: hidden;
    height: 50vh;
    color: var(--trang);
}

.content-banner {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.title-banner {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1em;
}

.mask-banner {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--mauchinh), transparent 50%);
    z-index: 1;
}


/*Section 1*/

.section1-container {
    padding: 30px 20px;
    color: var(--den);
}

.title-sct1 {
    font-size: 1.5em;
    font-family: 'roboto';
    text-align: center;
    color: var(--mauchinh);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--mauchinh);
}

.content-imgsct2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.img-sct2ct {
    width: 100%;
    max-width: 500px;
}

.nd-ctsct2 {
    flex: 1;
    max-width: 600px;
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--nav);
}

#content-sct2 {
    text-align: left;
    font-family: 'inter';
    overflow: hidden;
    -webkit-line-clamp: 6;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}


/*Section 3*/

.section3-container {
    padding: 30px 20px;
}

.section3-container.home { padding:60px 20px; }

.content-imgsct3 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.img-sct3 {
    width: 100%;
    max-width: 450px;
}

.title-sct3 {
    font-size: 2em;
    color: var(--mauchinh);
    margin-bottom: 40px;
    border-bottom: 2px solid var(--mauchinh);
    text-indent: -.2em;
    text-align: center;
    line-height: 1.5;
}

.list-lc {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.list-lc li {
    text-align: center;
    margin-bottom: 20px;
}

.list-lc li img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.list-lc li strong {
    display: block;
    color: var(--xanhla);
    font-size: 1.4em;
    margin-bottom: 10px;
}


/*Section 4*/

.section4-container {
    position: relative;
    margin-top: 50px;
    padding: 60px 20px;
    text-align: center;
    background-image: url(../images/bg-service.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    overflow: hidden;
}

.overlay-sct4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--trangmo);
    z-index: 1;
}

.section4-container>*:not(.overlay-sct4) {
    position: relative;
    z-index: 2;
}

.title-sct4 {
    font-size: 2em;
    color: var(--mauchinh);
    margin-bottom: 40px;
}

.card-dvsct4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.card-dvsct4.home{max-width:1200px;}

.card-contentsct4 {
    border: 1px solid var(--mauchinh);
    background-color: transparent;
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-contentsct4:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px var(--nav);
}

.icon-cardsct4 {
    width: auto;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: opacity(.7);
}

#text-cardsct4 {
    font-size: 1.2em;
    color: var(--den);
    line-height: 1.6;
    font-weight: bold;
}

.service-description {
    font-size: .9em;
    line-height: 1.5em;
    margin-top: 10px;
    color: var(--nav);
}


/*Form*/

.section5-container {
    position: relative;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 0;
    background-color: var(--mauchinh);
    color: #FFF;
}

.form-container {
    margin: 0 auto;
    text-align: center;
    font-family: sans-serif;
}

.form-container h2 {
    color: #FFF;
    font-size: 1.5em;
    margin-bottom: 20px;
    line-height: 1.5em;
    max-width: 800px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

input,
textarea {
    padding: 10px;
    border: 1px solid #FFF;
    border-radius: 5px;
    flex: 1;
    font-family: 'roboto';
    font-size: 0.9em;
    color: #222;
}

textarea {
    resize: vertical;
    resize: none;
}

.btn-dk {
    background-color: var(--xanhla);
    color: var(--trang);
    border: none;
    padding: 10px 25px;
    height: 40px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 auto;
    width: 100%;
    text-transform: uppercase;
    transition: all 0.3s;
}

button.btn-dk:hover {
    background-color: rgb(70, 168, 70);
}


/* /*Icon
             
             .social-icons {
                 position: fixed;
                 top: 40%;
                 right: 0;
                 display: flex;
                 flex-direction: column;
                 z-index: 9999;
             }
             
             .icon {
                 width: 36px;
                 height: 36px;
                 color: white;
                 text-align: center;
                 line-height: 36px;
                 font-size: 20px;
                 font-weight: bold;
                 text-decoration: none;
             }
             
             .icon.fb {
                 background: #1877f2;
             }
             
             .icon.x {
                 background: #000000;
                 font-family: Arial, sans-serif;
             }
             
             .icon.in {
                 background: #0077b5;
             }
             
             */


/*Footer*/

.footer {
    background-color: var(--trang);
    padding: 50px 10px 0;
    border-top: 1px solid #2e86c1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 10px;
}

.footer-logo-slogan {
    color: var(--mauchinh);
    font-size: 1.2em;
    line-height: 1.5em;
}

.footer-logo-slogan span {
    display: block;
}

.footer-links {
    margin-top: 30px;
    list-style-type: none;
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-column h3 {
    color: var(--mauchinh);
    text-transform: uppercase;
    margin: 40px 0 20px;
}

.footer-services li a {
    color: var(--nav);
}

.footer-services li {
    margin: 10px 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--nav);
}

.social-iconsft {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.social-iconsft img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-credit {
    text-align: center;
    margin: 50px auto 10px;
    font-style: italic;
    font-size: .7em;
    color: #666;
}

.footer-credit a {
    font-weight: bold;
    color: inherit;
    text-decoration: none;
}


/*Back to top*/

#backToTop {
    display: none !important;
    background-color: unset;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--nav);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#backToTop:hover {
    transform: scale(1.05);
}

#backToTop img {
    margin: 0;
}

.background-img {
    position: relative;
    height: 200px;
	background-color:var(--mauchinh);
}

.background-img .background-layout {
    height: 100%;
    width: 100%;
    object-fit: cover;
    height: 200px;
	opacity:.7;
}

.background-img::before {
    background: rgba(31, 97, 141, .4);
    position: absolute;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
}

.background-img .article-header-title {
    position: absolute;
    top: 50%;
    left: 50%;
	transform:translate(-50%,-50%);
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content .introduction-us {
    text-align: left;
    padding-bottom: 30px;
}

.background-img .article-header-title {
    color: #fff;
    margin: 0;
    padding: 0;
}

.main-content .introduction-us p,
.main-content .introduction-us span,
.main-content .introduction-us strong {
    font-size: 16px;
    color: var(--nav);
    margin-bottom: 16px;
    font-family: 'roboto';
    text-align: justify;
    line-height: 140%;
}

.main-content .introduction-us h3,
.main-content .introduction-us h4,
.main-content .introduction-us h5,
.main-content .introduction-us h6 {
    margin: 16px 0;
    font-size: 16px;
    font-family: 'roboto';
    color: var(--nav);
    font-weight: 700;
}

.main-content .introduction-us h2 {
    font-size: 20px;
    margin: 16px 0;
    font-family: 'roboto';
    color: var(--mauchinh);
}

.main-content .introduction-us a {
    font-family: 'roboto';
    color: var(--mauchinh);
    font-size: 16px;
}

/* div.boundary {
    width: 86%;
} */

h1.article-header-title {
    margin-top: 30px;
    font-weight: 400;
    font-size: 30px;
    color: var(--mauchinh);
    padding: 30px 0 16px;
    border-bottom: 1px solid var(--mauchinh);
    margin-bottom: 16px;
    text-align: left;
}

div.boundary .breadcrumb {
    margin-top: 40px;
}

.card.card-post {
    display: none;
}

.box-bottom .box-list {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

.box-cate.news .news-item .news-description,
.box-cate.news .news-item a {
    font-family: 'roboto';

}

.box-cate.news .box-bottom.dich-vu .news-item .news-description {
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.box-cate .page-title {
    padding-top: 25px;
}

.box-bottom.tuyen-dung .box-list .news-item {
    flex-direction: row;
    gap: 16px;
}

.box-bottom.tuyen-dung .box-list .news-item .news-image {
    width: 40%;
    height: 100%;
}

.box-bottom.tuyen-dung .box-list .news-item .news-title {
    margin-top: 0;
}

.box-bottom.tuyen-dung .box-list .news-item .news-image a {
    width: 100%;
    height: 100%;
    max-height: 100px;
}

.box-bottom.tuyen-dung .box-list .news-item .news-content {
    width: 60%;
}

.box-bottom.tuyen-dung .box-list .news-item .news-content a {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

#page-contact {
    width: 96%;
    max-width: 1200px !important;
    margin: 0 auto;
}

#page-contact .box-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

#page-contact .box-contact .contact-form input,
#page-contact .box-contact .contact-form textarea {
    width: 100%;
    border: 1px solid #ccc;
}

@media(min-width:480px) {}

@media(min-width:576px) {
    .card-dvsct4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .box-bottom .box-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .box-bottom.tuyen-dung .box-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(min-width:768px) {
    .background-img {
        height: 300px;
    }

    .background-img .background-layout {
        height: 300px;
    }

    .title-sct1 {
        font-size: 2em;
    }

    .commit .commit-title {
        font-size: 2em;
    }

    .commit .commit-image-list {
        flex-direction: row;
    }

    .form-container h2 {
        font-size: 2em;
    }

    .footer-column.services-column {
        margin-top: 90px;
    }

    .video-banner .video-banner-content div.video-banner-slogan {
        font-size: .8em;
    }

    .title-banner {
        font-size: 2em;
    }

    .cta-area {
        padding: 30px 0;
    }

    .form-row {
        flex-direction: unset !important;
    }

    .list-lc {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-dvsct4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .box-bottom.tuyen-dung .box-list .news-item .news-image {
        width: 25%;
    }

    .box-bottom.tuyen-dung .box-list .news-item .news-content {
        width: 75%;
    }
}

.video-banner .video-banner-content .video-banner-slogan {
    font-size: .5em;
}

.video-banner .video-banner-content {
    bottom: 50%;
    font-size: 2em;
    transform: translateY(50%);
}

.cta-area .cta-content {
    font-size: 1.2em;
    padding-bottom: 30px;
}

.cta-area .cta-content:after {
    bottom: 0;
    right: 100px;
}

.commit .commit-title {
    line-height: 1.8;
    display: inline-block;
}

.commit .commit-content {
    max-width: 1200px;
    margin: 0 auto;
}

.list-lc {
    flex-direction: row;
}

.list-lc li {
    font-size: .8em;
}

.list-lc li img {
    width: auto;
    height: 80px;
}

.content-sct3 {
    text-align: center;
}

.title-sct3 {
    text-indent: unset;
    display: inline-block;
    margin: 0 auto 40px;
}

.img-sct2ct {
    width: 90%;
    max-width: unset;
}

.img-sct3 {
    max-width: 200px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.footer-logo-slogan {
    font-size: .9em;
}

.footer-logo-slogan span {
    display: inline-block;
}

.footer-logo-slogan span:before {
    content: "\00a0- ";
}

.footer-content {
    flex-direction: row;
}

.footer-column {
    text-align: left;
}

.footer-services li {
    text-align: left;
}

.footer-column h3 {
    margin-top: 0;
}


.social-iconsft {
    justify-content: start;
}

@media(min-width:996px) {
    h1.article-header-title {
        font-size: 40px;
        font-weight: 700;
    }

    .list-lc {
        grid-template-columns: repeat(4, 1fr);
    }
    .list-lc.home {
        grid-template-columns: repeat(5, 1fr);
    }

    .card-dvsct4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .box-bottom.tuyen-dung .box-list .news-item .news-image a {
        max-height: 150px;
    }

    .box-bottom .box-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .box-bottom.tuyen-dung .box-list {
        grid-template-columns: repeat(1, 1fr);
    }

    /*Nav*/
    .hamburger {
        display: none !important;
    }

    .video-banner:before {
        padding-top: 40%;
    }

    .video-banner .video-banner-content {
        font-size: 2.3em;
        bottom: 30%;
        text-shadow: unset;
    }

    .cta-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-area .cta-content:after {
        right: 10px;
    }

    .list-lc li {
        font-size: 1em;
        line-height: 1.5em;
        padding: 0 25px;
    }

    .list-lc li img {
        height: 90px;
    }

    .content-imgsct3 {
        max-width: 1200px;
        margin: 0 auto;
    }

    .nav-toggle {
        display: none;
    }

    .body-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hotline-top {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: var(--mauchinh);
        height: 40px;
        position: absolute;
        top: 0;
        left: 30%;
        right: 0;
        color: var(--trang);
        z-index: 1000;
        border-radius: unset;
        font-size: 0.8em;
    }

    .line-stand {
        width: 1px;
        height: 24px;
        background-color: var(--trang);
    }

    .line-fist {
        position: absolute;
        left: 20%;
    }

    .line-second {
        position: absolute;
        left: 40%;
    }

    .line-thirst {
        position: absolute;
        left: 58%;
    }

    .line-for {
        position: absolute;
        left: 70%;
    }

    .call {
        position: absolute;
        width: 50px;
        height: 50px;
        border-radius: unset;
        background-color: unset;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        animation: unset;
        left: 25%;
        top: -4px;
        z-index: unset;
        text-decoration: none;
        gap: 5px;
    }

    .icon-call {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    #sdt {
        display: block;
        font-weight: 600;
        color: var(--trang);
        font-size: 0.8em;
    }

    .text-hltop {
        position: absolute;
        left: 43%;
        animation: unset;
        text-decoration: none;
        color: var(--trang);
        font-weight: 500;
        padding-left: 10px;
        display: flex;
        flex-direction: row;
    }

    .lienhe {
        position: absolute;
        left: 60%;
        display: block;
    }

    .language {
        display: block;
        position: absolute;
        left: 80%;
    }

    .menu-nav {
        position: relative;
        top: unset;
        left: unset;
        width: auto;
        height: 80px;
        display: inline-block;
        vertical-align: top;
        background: unset;
        transition: unset;
        padding: unset;
    }

    .menu-list {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 0;
        font-size: 1.1em;
        height: 80px;
    }

    .menu-link {
        font-size: 1em;
        padding: 0 20px;
    }

    .btn-search {
        position: fixed;
        top: 10px;
        right: 28%;
        background: none;
        border: none;
        cursor: pointer;
        width: 20px;
        height: 20px;
        border-radius: unset;
    }

    /*Banner*/
    .mask-banner {
        opacity: 0.7;
    }

    /*Section 1*/
    .img-sct2ct {
        width: 100%;
        max-width: 500px;
    }
}

@media (min-width:1024px) {
    .banner {
        height: 60vh
    }

    #slogan-phu {
        font-size: 1.3em;
        width: 300px;
    }

    .title-sct1 {
        text-align: left;
    }

    .title-sct3 {
        font-size: 2.5em;
    }

    .form-container {
        max-width: 1000px;
    }

    .title-sct4 {
        font-size: 2.5em;
    }
}

@media(min-width:1200px) {

    .cta-area .cta-content {
        font-size: 2em;
    }

    .content-imgsct2 {
        align-items: start;
    }

    .menu-list {
        font-size: 1.3em;
    }
}

@media(min-width:1300px) {
    .video-banner .video-banner-content {
        font-size: 3em;
    }

    .video-banner .video-banner-content .video-banner-slogan {
        margin-top: 30px;
        font-size: .8em;
    }

    .section4-container {
        padding: 120px 0;
        background-position: top center;
    }

    .title-sct4 {
        margin-top: -20px;
    }

    .footer-content {
        display: block;
    }

    .footer-column {
        flex: unset;
        display: inline-block;
        vertical-align: top;
        width: 30%;
    }

    .footer-column.services-column {
        width: 65%;
        display: inline-flex;
        flex-direction: row;
        justify-content: start;
    }

    .social-iconsft {
        padding-left: 30px;
        margin-top: 90px;
    }
}