:root {
    --cl-0: #333;
    --cl-1: #0d47a1;
    --cl-2: #1565c0;
    --cl-3: #4a90c2;
    --cl-4: #e53935;
}
html{
    font-size: 1.112vw;
}
body{
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    font-weight: 500;
}
a{
    color: #333;
}
a:hover{
    color: var(--cl-1);
}
.cl-0{
    color: var(--cl-0);
}
.cl-1{
    color: var(--cl-1);
}
.cl-2{
    color: var(--cl-2);
}
.sc_nav-wrapper{
    background-color: var(--cl-2);
}
.sc_nav .menu {
    display: flex;
}
.sc_nav-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}
.sc_nav li{
    list-style: none;
    position: relative;
}
.sc_nav ul.sub-menu {
    position: absolute;
    background-color: var(--cl-2);
    display: flex;
    flex-direction: column;
    left: 0;
    top: 100%;
    min-width: max-content;
    display: none;
}
.sc_nav li:hover > ul.sub-menu{
    display: flex;
}
.sc_nav ul.sub-menu .sub-menu {
    left: 100%;
    top: 0;
}
.sc_nav .sub-menu li.menu-item-has-children > a{
    background-image: url(../images/chevron.png);
    background-repeat: no-repeat;
    background-position: 99.5% center;
    background-size: 15px;
}
.sc_nav a {
    color: #fff;
    display: block;
    line-height: 46px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
}
.sc_nav li:hover > a{
    background-color: var(--cl-1);
}
.triggerSearch img {
    width: 16px;
}
a.triggerSearch {
    margin-left: 20px;
}
.sc_hero-slogon {
    margin-top: 30px;
    margin-bottom: 40px;
}
.sc_hero {
    background-color: #e3f2fd;
    padding: 60px 0;
}
.sc_hero-banner-slider .item .pic {
    border-radius: 10px;
}
.sc_btn {
    color: #fff;
    background-color: var(--cl-4);
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    border: 0;
    box-shadow: 0 0 0;
}
.sc_btn:hover{
    background-color: var(--cl-1);
}
.title_block {
    font-size: 27px;
    color: var(--cl-1);
    margin-top: 60px;
    margin-bottom: 20px;
}
.sc_tasklist{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    grid-template-columns: repeat(var(--grid,4), 1fr);
}
.sc_tasklist img.pic {
    border-radius: 10px 10px 0 0;
    aspect-ratio: 3 / 2;
    width: 100%;
    object-fit: cover;
}
.sc_tasklist .box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}
.sc_tasklist .title {
    font-size: 1.17em;
    font-weight: 700;
    margin-top: 20px;
    display: inline-block;
    margin-bottom: 15px;
}
.sc_tasklist .text {
    margin-bottom: 15px;
}
.sc_tasklist .link:hover{
    color: #fff;
}
.sc_group{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}
.sc_group .item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.sc_group .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.15);
    border-color: #0d47a1;
}
.sc_group .pic {
    flex: 0 0 35%;
    width: 40%;
    height: 180px;
    object-fit: cover;
}
.sc_group .title {
    color: var(--cl-1);
    font-size: 1.3em;
    margin-bottom: 10px;
}
.sc_group .box {
    padding: 0 20px;
}
.sc_block-magin{
    margin-top: 60px;
}
.sc_competencies {
    display: flex;
    gap: 30px;
    align-items: center;
}
.sc_competencies > * {
    flex: 1;
    width: calc(50% - 15px);
}
.sc_competencies .pic {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}
.sc_competencies .title_block {
    margin-top: 0;
    margin-bottom: 15px;
}
.sc_competencies .text {
    margin-bottom: 20px;
}
.sc_btn:hover{
    color: #fff;
}
.content_p p,.content_p h1,.content_p h2,.content_p h3,.content_p h4,.content_p h5,.content_p h6,.content_p ul,.content_p img,.content_p ol{
    margin-bottom: 20px;
}
.sc_competencies .content p,.sc_competencies .content h1,.sc_competencies .content h2,.sc_competencies .content h3,.sc_competencies .content h4,.sc_competencies .content h5,.sc_competencies .content h6,.sc_competencies .content ul,.sc_competencies .content img,.sc_competencies .content ol{
    margin-bottom: 10px;
}
table{
    width: 100%;
    display: table;
    border-collapse: collapse;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}
tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}
table td,table th {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}
.sc_about-page {
    margin-top: 60px;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.sc_about-history-content{
    margin-top: 50px;
    margin-bottom: 30px;
}
.sc_about-history-items,.sc_about-tasklist-items{
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}
.sc_competencies .year {
    color: var(--cl-1);
    font-weight: 800;
    font-size: 25px;
    margin-bottom: 15px;
}
.sc_about-history-items .sc_competencies:nth-child(2n+1) .picBox,.sc_about-tasklist-items .sc_competencies:nth-child(2n+1) .picBox,.sc_kinhdoanh-muilt .boxlist:nth-child(2n+1) .picBox{
    order: 2;
}
.sc_about-history-items:before {
    content: "";
    display: inline-block;
    background-color: var(--cl-1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
}
.sc_about-history-items .sc_competencies .pic:hover{
    transform: scale(1.05);
}
.sc_about-tasklist-items{
    margin-top: 60px;
}
.sc_about-teams-items{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.sc_about-teams-items .avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.sc_about-teams-items .name {
    color: var(--cl-1);
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.sc_competencies .content {
    margin-bottom: 50px;
}
.sc_contact-group{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 30px;
}
.sc_contact-group .info iframe {
    width: 100%;
    border: 0;
    height: 500px;
}
.info {
    background-color: #e3f2fd;
    border-radius: 10px;
    padding: 20px 25px;
}
.sc_contact-group .form-wrapper{
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px 25px;
}
.wpcf7-form input[type="text"],.wpcf7-form input[type="email"],.wpcf7-form input[type="tel"] {
    width: 100%;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    line-height: 36px;
    font-size: 13px;
    background: #fff;
    box-shadow: 0 0 0;
    margin-bottom: 10px;
}
.wpcf7-form select{
    height: 38px;
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0 5px;
    margin-bottom: 10px;
    font-size: 13px;
}
.wpcf7-form textarea{
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    height: 120px;
    margin-bottom: 10px;
    font-size: 13px;
}
.wpcf7-form label {
    font-weight: bold;
    font-size: 14px;
}
h1.title_block {
    line-height: 1;
}
.sc_competencies_news .picBox {
    width: 54%;
    flex: 0 0 54%;
}
.sc_competencies_news {
    align-items: flex-start;
}
.sc_competencies_news .title_block {
    margin-top: 30px;
}
.sc_tasklist-news{
    grid-template-columns: repeat(3, 1fr);
}
.sc_tasklist-news.sc_tasklist img.pic {
    aspect-ratio: 2 / 1;
}
.sc_tasklist-news.sc_tasklist .title {
    margin-top: 10px;
    margin-bottom: 10px;
}
.sc_tasklist .label {
    color: #777;
    font-size: 12px;
}
.sc_tasklist .text {
    font-size: 14px;
}
.sc_competencies_muiltiList .item_list {
    margin-left: 30px;
}
.sc_competencies_muiltiList .item_list:last-child {
    margin-bottom: 30px;
}
.sc_competencies_muiltiList .item {
    display: inline-block;
    background-color: #e3f2fd;
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    margin-right: 5px;
    font-size: 14px;
}
.project_album{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
    margin-top: 20px;
}
.project_album .pic {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    border-radius: 10px;
}
.sc_sxnl-items{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 15px;
}
.sc_sxnl-items .moreLink {
    background-color: #e3f2fd;
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
}
.sc_sxnl-items .item {
    border: 1px solid #f3f3f3;
    border-radius: 10px;
}
.sc_sxnl-items .text {
    padding: 10px;
    font-size: 13px;
}
.sc_sxnl-items .link {
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.sc_sxnl-btn {
    background-color: #0d47a1;
    margin-top: 15px;
}
.sc_sxnl-btn:hover{
    background-color: var(--cl-4);
}
.sc_about-tasklist-capacity .sc_competencies:nth-child(2n+1) .box{
    order: 3;
}
.sc_about-tasklist-capacity .sc_competencies:nth-child(2n) .picBox{
    order: 3;
}
.sc_box-contact {
    background-color: #0d47a1;
    color: #fff;
    border-radius: 10px;
    margin-top: 60px;
    padding-top: 100px;
    padding-bottom: 50px;
}
.sc_box-contact .text {
    margin-bottom: 30px;
}
.sc_box-contact .link:hover{
    background-color: #e3f2fd;
    color: #000;
}
.sc_header{
    background-color: var(--cl-1);
}
.logo img {
    height: 80px;
}
#sc_header {
    display: flex;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.slogonBox {
    text-align: center;
    color: #fff;
}
.slogon {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}
.slogon-text {
    font-style: italic;
    font-size: 1rem;
}
.lang {
    display: flex;
    gap: 10px;
}
.lang img {
    width: 30px;
}
.triggerMenu{
    display: none;
}
.sc_footer {
    background-color: #3e9cea;
    color: #fff;
    margin-top: 50px;
}
.sc_footer-hotline .item,.sc_footer-hotline .item a {
    color: #EBFF00;
}
.sc_footer-hotline .item .time,.sc_footer-hotline .item .link{
    color: #fff;
}
.sc_footer-title {
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 30px;
}
.sc_footer-hotline {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#sc_footer {
    padding: 30px 0;
}
.sc_footer-support {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.sc_footer-support .item {
    background-image: url(../images/zalo.png);
    background-repeat: no-repeat;
    background-size: 40px;
    padding-left: 50px;
    line-height: 50px;
    background-position: left center;
    color: #EBFF00;
}
.sc_footer-support .item a{
    color: #EBFF00;
}
.footer-logo {
    height: 80px;
    margin-bottom: 15px;
}
.sc_footer-info .box {
    font-weight: 700;
    margin-top: 30px;
}
.dathongbaobct img {
    width: 150px;
}
.logoMobile{
    display: none;
}
.searchBox{
    position: relative;
}
form#search {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    display: flex;
    gap: 5px;
    position: absolute;
    right: 0;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    display: none;
}
form#search input {
    background: transparent;
    border: 0;
    padding: 0 10px;
    line-height: 30px;
    flex-grow: 1;
}
form#search button{
    background-color: var(--cl-1);
    border: 0;
    box-shadow: 0 0 0;
    line-height: 35px;
    padding: 0 10px;
}
form#search button img {
    width: 15px;
}
.searchBox.active form#search{
    display: flex;
}
.socialPopup {
    position: fixed;
    right: 10px;
    z-index: 10;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.socialPopup .item img{
    width: 64px;
}
#comp-luktugiz{
    position: fixed;
    bottom: 0;
    right: -10px;
    z-index: 10;
}
#comp-luktugiz.active{
    width: 360px!important;
    height: 300px!important;
}
.UkML6 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.sc_tasklist .box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    flex-grow: 1;
}
.sc_tasklist .item {
    display: flex;
    flex-direction: column;
}
.sc_social-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}
.sc_social-footer img {
    height: 35px;
}
.sc_footer-box li {
    list-style: none;
}
.sc_footer-box .menu{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sc_footer-box .menu a{
    color: #fff;
}
a:focus{
    outline: 0;
}