.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    border-top: 4px solid var(--primary-color);
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.header-body{
    display: flex;
}

.header-logo{
    width: 22%;
}

.header-right{
    width: 78%;
    display: flex;
    flex-direction: column;
}

.logo{
    padding: 10px 0 8px;
    width: 100px;
    display: block;
}

.header-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 0 16px;
    position: relative;
}

.header-head::before{
    content: "";
    position: absolute;
    left: -80px;
    top: 0;
    width: 100px;
    height: 100%;
    background-color: inherit;
    transform: skew(40deg);
    transform-origin: top left;
    z-index: -1;
}

.header-head::after{
    content: "";
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    z-index: -1;
}

.hotline a, .email a{
    color: #fff;
    font-size: 14px;
}

.social{
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation{
    display: flex;
    align-items: center;
    transform: translateX(-56px);
}

.nav-item{
    position: relative;
}

.nav-link{
    display: inline-block;
    padding: 28px 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
    transition: .3s;
    position: relative;
}

.nav-link::after{
    content: "";
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 50%;
    background: #333;
    opacity: 0;
    transition: .3s;
}

.nav-link.active::after{
    opacity: 1;
}

.nav-item:hover .nav-link{
    color: var(--primary-color);
}

.nav-item:hover .nav-link::after{
    opacity: 1;
    background: var(--primary-color);
}

.submenu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
}

.nav-item:hover  .submenu{
    opacity: 1;
    visibility: visible;
}

.submenu-link{
    display: block;
    padding: 10px 14px;
    text-transform: uppercase;
    color: var(--text-color);
    transition: .3s;
}

.submenu-link:hover{
    color: var(--primary-color);
}

.nav-action{
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-icon{
    font-size: 20px;
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}

.btn-primary{
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color-2);
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: .3s;
    border: 1px solid transparent;
    text-transform: uppercase;
}
.btn-primary:hover{
    border-color: var(--primary-color-2);
    background: transparent;
}


/* Banner */

.banner-content{
    position: relative;
}

.banner-content > img{
    object-fit: cover;
}

.banner-content::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4); */
}

.banner-info{
    max-width: 600px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    color: #fff;
}

.banner-info h1{
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    transform: translateY(30px);
    opacity: 0;
    transition: .5s;
    transition-delay: .2s;
}

.banner-info h2{
    text-transform: uppercase;
    font-weight: 600;
    padding: 20px 0 40px;
    font-size: 46px;
    transform: translateY(30px);
    opacity: 0;
    transition: .5s;
    transition-delay: .4s;
}

.banner-info h3{
   font-weight: 700;
    font-size: 40px;
}

.banner-info p{
    opacity: 0.9;
    line-height: 1.7;
    transform: translateY(30px);
    opacity: 0;
    transition: .5s;
    transition-delay: .6s;
}
.banner-page{
    max-height: 400px !important;
    object-fit: cover;
}


.banner-content.slick-current  .banner-info h1{
    opacity: 1;
    transform: translateY(0);
}
.banner-content.slick-current  .banner-info h2{
    opacity: 1;
    transform: translateY(0);
}
.banner-content.slick-current  .banner-info p{
    opacity: 1;
    transform: translateY(0);
}


/* Breadcrumbs */

.wrapper-breadcrumbs{
    background: #f3f3f3;
}

.breadcrumbs{
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs li{
    position: relative;
}

.breadcrumbs li::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    height: 12px;
    width: 1px;
    background: #aaa;
    transform: translateY(-50%);
}
.breadcrumbs li:last-child::after{
    background: transparent;
}

.breadcrumbs li a{
    padding: 10px;
    display: block;
    font-size: 14px;
    color: #000;
}

.breadcrumbs li a.active{
    padding: 10px;
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

/* Main */

.about{
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.about-image{
    max-width: 992px;
    margin: auto;
}

.about-list{
    padding: 20px 0;
}

.about-item{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.about-icon{
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    transition: .3s;
}
.about-icon.active{
    background-color: var(--primary-color);
    color: #fff;
}

.about-item:hover .about-icon{
    background-color: var(--primary-color);
    color: #fff;
}

.about-icon i{
    font-size: 30px;
}

.about-text{
    width: calc(100% - 55px);
    display: flex;
    align-items: center;
}

.about-text.text{
    width: calc(100% - 55px);
    flex-direction: column;
    align-items: start;
}

.about-text h3{
    margin-bottom: 6px;
}

.about-text p{
    color: rgb(89, 89, 89);
}

.about-image{
    position: relative;
}


/* Services */

.wrapper-service{
    padding: 40px 0;
}
.services{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.service-content{
    background-color: #fff;

}

.service-info{
    padding: 10px 20px 20px;
    text-align: center;
}

.service-info .head{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-info .name{
    font-weight: 700;
    font-size: 20px;
    padding: 10px 0;
}

.service-info .name.customer{
    font-size: 18px;
    font-weight: 600;
}

.service-info .desc{
    font-size: 15px;
}

.wrapper-number{
    padding: 40px 0;
}


.number-body{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.number-content{
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
}

.number-content::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 60px;
    height: 70px;
    background-color: var(--primary-color);
    transform: skew(-20deg);
}

.number-icon{
    width: 60px;
    height: 60px;
    margin: auto;
}

.number-name{
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 16px 0;
}


.wrapper-elementor{
    padding: 60px 0 20px;
}


.elementor-row{
    display: flex;
}

.elementor-col-1{
    width: 55%;
}

.elementor-col-2{
    width: 45%;
}

.elementor-content{

}

.elementor-blog-image{
    padding-right: 20px;
}

.elementor-list{
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.elementor-list li{
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.elementor-list li .about-icon{
    width: 40px;
    height: 40px;
    border-width: 2px;
}

.elementor-list > li > span{
    width: calc(100% - 40px);
    display: block;
}


.elementor-list li .about-icon i{
    font-size: 24px;
}

.middle{
    padding: 80px 0;
    background-image: url(../imgs/lien-he.jpg);
    background-size: cover;
    position: relative;
}

.middle::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
}

.wrapper-middle{
    text-align: center;
    position: relative;
    z-index: 1;
}

.wrapper-middle h2{
    color: var(--primary-color-2);
}

.wrapper-middle h3{
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 2px 2px #000;
    padding: 30px 0;
}

.wrapper-middle p{
    color: #fff;
    font-style: italic;
    line-height: 1.8;
    max-width: 900px;
    margin: auto;
}

.btn-contact{
    color: #000;
    margin-top: 30px;
}
.btn-contact:hover{
    color: #000;
    background: var(--primary-color-2);
}

.elementor-news{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.news-content{
    padding: 15px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 14%);
}

.news-time{
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.news-time i{
    color: var(--primary-color);
    font-size: 16px;
}

.news-name{
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
    color: #333;
}

.news-desc{
    font-weight: 400;
    margin-bottom: 20px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.news-readmore{
    padding-bottom: 10px;
    color: var(--primary-color);
}

.partners{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 40px;
}

.elementor-form{
    display: flex;
    gap: 40px;
}

.contact-form{
    width: 45%;
    box-shadow: 0 0 20px #000;
    background: #fff;
}

.group-contact{
    padding: 20px 40px;
}

.contact-form input{
    display: block;
    height: 50px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 14px; 
}

.contact-form textarea{
    display: block;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 14px;
    height: 160px;
    
}

.contact-form h2{
    font-size: 28px;
    font-weight: 700;
    padding: 20px;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}   

.contact-submit{
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 14px 40px;
    font-size: 18px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
}

.contact-image{
    width: 60%;
}


.footer-head{
    background-color: #f3f3f3;
    border-bottom: 3px solid var(--primary-color);
}

.ft-head-body{
    display: flex;
    justify-content: space-between;
}

.ft-head-left{
    padding: 20px 0;
    width: 50%;
    position: relative;
    background-color: var(--primary-color);
    color: #fff;
}

.ft-head-left h2{
    font-weight: 500;
}

.ft-head-left::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
}

.ft-head-left::after{
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    height: 100%;
    width: 80px;
    background-color: var(--primary-color);
    transform: skew(30deg);
}

.ft-head-right{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.btn-download{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--primary-color-2);
    cursor: pointer;
    position: relative;
    color: #333;
}


.footer{
    padding: 40px 0;
}

.ft-row{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.ft-logo{
    width: 80px;
    margin-bottom: 20px;
}

.ft-text{
    font-weight: 400;
    padding-right: 20px;
    font-size: 15px;
}

.ft-title{
    text-transform: capitalize;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 20px;
}

.group-ft{
    padding: 20px 0;
}

.ft-link{
    display: block;
    padding: 8px 0;
    color: #000;
}

.ft-context{
    padding: 8px 0;
    line-height: 1.6;
}

.ft-context i{
    color: var(--primary-color);
}


.wrapper-blog{
    display: flex;
    justify-content: space-between;
}

.elementor-blog{
    width: 70%;
    
}

.elementor-blog-image{
    width: 25%;
}


.blog-title{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

.blog-text{
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-text p{
    margin-bottom: 10px;
}

.wrapper-button{
    padding: 10px 0 30px;
}

.button-quote{
    text-transform: uppercase;
    font-weight: 600;
    color: #f00;
    cursor: pointer;
}

.blog-subtitle{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-list{
    padding-left: 30px;
    list-style: disc;
    margin-bottom: 30px;
}

.blog-text ul{
    padding-left: 30px;
    list-style: disc;
    margin-bottom: 30px;
}

.blog-text ul li{
    margin-bottom: 10px;
}


.blog-list li{
    margin-bottom: 16px;
}

.blog-image{
    margin-bottom: 20px;
}

.blog-image img{
    max-width: 100%;
}


/* Contact */


.contact-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-title{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 50px;
}

.contact-heading{
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--title-color);
    margin-bottom: 40px;
}

.contact-head{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info{
    font-weight: 300;
    margin-right: 20px;
}

.contact-info span{
    color: var(--primary-color);
    margin-right: 4px;
}

.contact-info li{
    margin-bottom: 10px;
    line-height: 1.8;
}

.group-input label{
    margin-bottom: 8px;
}

.contact-main{
    margin-top: 30px;
}

.contact-main .group-input{
    margin-bottom: 30px;
}

.contact-text{
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.8;
    margin-right: 20px;
}

.btn-contact{
    display: inline-block;
    padding: 10px 40px;
    background: var(--primary-color);
    color:#fff;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    transition: .3s;
    line-height: 1.8;
}

.btn-contact:hover{
}

.contact-input{
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.contact-input input{
    height: 44px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 0 20px;
}
.contact-input textarea{
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px 20px 0;
}
.contact-input input:focus{
    outline: none;
}


.gg-map{
    margin-top: 50px;
}
.gg-map iframe{
    width: 100%;
    height: 400px;
}




.news-details{
    display: flex;
    gap: 30px;
}
.news-details-left{
    width: 70%;
}
.news-details-right{
    width: 30%;
}

.news-details-subtitle{
    font-size: 12px;
    display: inline-block;
    background: #fbfd03;
    padding: 3px 6px;
    margin-bottom: 15px;
}

.news-details-title{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.news-details-desc{
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 15px;
   font-style: italic;
}

.news-details-created{
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.news-details-created i{
    color: #000;
    font-size: 16px;
}

.news-details-content{
    line-height: 1.6;
}
.news-details-content p{
    margin-top: 10px;
}
.news-details-content h2{
    font-size: 18px;
}
.news-details-content img{
    max-width: 100%;
}

.news-details-img{
    max-width: 700px;
    padding: 10px 0;
}

.news-related{
    margin-top: 50px;
}
.news-related .news-details-created{
    margin-bottom: 0;
    color: #999;
}

.news-related-title{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.news-related-content{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    color: #333;
}
.news-related-content .image{
    width: 120px;
    height: 85px;
}
.news-related-content .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-related-content .info{
    width: calc(100% - 120px);
}
.news-related-name{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: .3s;
}
.news-related-content:hover .news-related-name{
    color: var(--primary-color);
}


.news-footer{
    margin-top: 50px;
}

.news-footer h4{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}
.news-footer p{
    margin-bottom: 8px;
}


/* Nav mobile */

.nav-mobile{
    display: none;
    align-items: center;
    gap: 20px;
    min-width: 50px;
}

.logo-mobile{
    display: none;
    padding: 6px 0 4px;
}

.logo-mobile img{
    width: 65px;
}

.btn_show-menu{
    padding: 10px 0;
    cursor: pointer;
    width: 100%;
}

.nav-mobile-toggle{
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}
.nav-mobile-toggle > span{
    display: block;
    width: 20px;
    height: 1px;
    background-color: #000;
    transition: .3s;
}

.nav_mobile-menu{
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    height: calc(100vh - 0px);
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}


.nav_mobile-list{
    position: relative;
    width: 35%;
    background: #fff;
    height: 100vh;
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all .3s cubic-bezier(.39,.575,.565,1);
    padding: 30px 0;
}
.nav_mobile-list.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.nav_mobile-menu.active{
    opacity: 1;
    visibility: visible;
}

.btn-close-nav{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-block;
    padding: 10px;
    font-size: 22px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 9999;
}
.btn-close-nav i{
    transition: .3s;
}

.btn-close-nav:hover i{
    transform: rotate(180deg);
}

.line-nav {
    width: 100%;
    height: 1px;
    margin-top: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-logo{
    max-width: 80px;
    margin-left: 30px;
    margin-bottom: 20px;
}

.nav_mobile-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px;
    cursor: pointer;
}
.nav_mobile-item span{
    color: rgba(0, 0, 0, 0.8);
    display: inline-block;
    transition: .3s;
    position: relative;
}
.nav_mobile-item span::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: #000;
    transition: .3s;
}

.nav_mobile-item svg{
    width: 14px;
    height: 14px;
    transition: .3s;
}

.nav_mobile-item:hover span,
.nav_mobile-item.active span{
    color: #000;
}

.nav_mobile-item:hover span::after{
    width: 100%;
}

.phone-mobile{
    display: block;
    color: rgba(0, 0, 0, 0.8);
    font-family: "utm-caviar";
    position: absolute;
    bottom: 5px;
    left: 0;
    padding: 10px 46px;
}
.phone-mobile svg{
    transform: rotate(-35deg);
}
.btn-search-close{
    background: transparent;
    color: #ccc !important;
    cursor: pointer;
    font-size: 18px !important;
}

/*menu mobile */

.nav-submobile{
    max-height: 600px;
    overflow-y: auto;
    display: none;
}

.nav-submobile.active{

}

.nav-submobile-item{
    cursor: pointer;
    text-transform: capitalize;
}

.nav-submobile-link{
    display: block;
    font-size: 15px;
    padding: 8px 40px;
    color: #555;
}

.nav-submobile-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 36px 10px 36px;
    color: #222;
}

.nav-submobile-head span{
    font-size: 16px;
}

.nav-submobile-head svg{
    width: 12px;
    height: 12px;
}

.submobile-child{
    display: none;
}



.elementor-contact{
    padding: 40px 0;
}

.elementor-contact p{
    line-height: 2;
    font-size: 18px;
}

.elementor-contact .head{
    font-size: 22px;
    margin-bottom: 10px;
}

.about-text-bt{
    padding: 20px 0;
}

.info-text{
    padding: 10px 0;
    font-weight: 600;
}

.info-text a{
    text-decoration: underline;
    color: blue;
}