/*****************
*****1. Header
*****2. Banner
*****3. Home
*******************/

/* 1. Header */

.header{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.header-top{
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-color-2);
}

.header-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-text{
    font-size: 13px;
    color: #fff;
}
.header-top-text i{
    color: var(--primary-color);
    margin-right: 6px;
}


.header-top-main{
    display: flex;
    gap: 30px;
}
.header-top-info{
    font-size: 13px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}
.header-top-info::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.4);
}
.header-top-info.last::after{
    right: -20px;
}

.header-top-info i{
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 15px;
}
.header-top-info span, .header-top-info a{
    font-weight: 600;
    margin-left: 4px;
    color: #fff;
}

.header-top-social{
    display: flex;
}

.header-top-social > a{
    padding: 0 10px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    transition: .3s;
}
.header-top-social > a:hover{
    color: var(--primary-color);
}

.header-bottom{
    position: relative;
    top: 0;
    left: 0;
    box-shadow: 0 1px 1px #ddd;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 90px;
}
.logo img{
    width: 100px;
}

.logo-text h4{
    font-weight: 900;
    text-transform: uppercase;
    color: #4a4f55;
    font-family: 'Roboto', sans-serif;
}
.logo-text p{
    font-weight: 300;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

.navigation{
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item{
    position: relative;
}

.nav-link{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    font-weight: 600;
    position: relative;
}
.nav-link > i{
    position: absolute;
    right: -13px;
    opacity: 0.5;
    font-size: 13px;
}

.nav-link::after{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: .3s;
}
.nav-item:hover .nav-link,
.nav-link.active{
    color: var(--primary-color);
}

.nav-item:hover .nav-link::after,
.nav-link.active::after{
    width: 90%;
}


/* Submenu */

.submenu{
    position: absolute;
    top:100%;
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    /* border-bottom: 2px solid var(--primary-color); */
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease-in;
    transform: translateY(10px);
}

.nav-item:hover .submenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu::before{
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    height: 10px;
    width: 50%;
}

.submenu-item{
    position: relative;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.submenu-list .submenu-item:last-child{
    border-bottom: none;
}

.submenu-link{
    display: block;
    padding: 14px 20px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    transition: .3s;
}

.submenu-link:hover{
    background-color: var(--primary-color);
    color: #fff;
}

.submenu-list .submenu-item:first-child .submenu-link{
    padding-top: 16px;
}
/* .submenu-list .submenu-item:last-child .submenu-link{
    padding-bottom: 14px;
} */

.header-action{
    display: flex;
    gap: 18px;
    align-items: center;
}


.search-btn{
    display: inline-block;
    padding: 8px;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-color);
}

.support-btn{
    display: inline-block;
    padding: 10px 26px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    transition: .3s;
}
.support-btn:hover{
}

.button-1{
    font-size: 14px;
    display: inline-block;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: var(--primary-color);
    border: 1px solid transparent;
    padding: 12px 34px;
    border-radius: 2px;
    transition: .6s;
    animation-duration: .8s;
    animation-fill-mode: both;
    box-shadow: inset 0 0 0 50px var(--primary-color);
}
.button-1:hover{
    box-shadow: inset 0 0 0 0px #77262b;
}
/* .support-btn::after{
    content: '';
    position: absolute;
    top: -7px;
    left: 0;
    width: 120%;
    height: 120%;
    background-image: url(../imgs/bg_button-paint.png);
    background-size: cover;
    z-index: -1;
}
.support-btn::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -14px;
    width: 1px;
    height: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: .3s;
} */

.support-btn:hover{
    color: #fff;
}


/* menu nav */

.menu-nav{
    position: relative;
    display: none;
}

.menu-button{
    max-width: 38px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 2px;
    cursor: pointer;
}

.menu-button > span{
    background-color: #0A0A0A;
    height: 5px;
    width: 5px;
    display: block;
    border-radius: 50%;
    margin: 2px 3px;
}

.menu-button > span:nth-child(even){
    background: var(--primary-color);
}


.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: 33%;
    background: #fff;
    height: 100vh;
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all .3s cubic-bezier(.39,.575,.565,1);
    padding: 40px 35px 30px;
}
.nav_mobile-list.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav_mobile-menu.active{
    opacity: 1;
    visibility: visible;
}

.logo-mobile{
    width: 80px;
}

.nav-item.first{
    padding-top: 40px;
}

.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_mobile-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.nav_mobile-item span{
    font-weight: 700;
    display: inline-block;
    transition: .3s;
    position: relative;
    color: rgba(0, 0, 0, .8);
}

.nav_mobile-item:hover span{
    color: var(--primary-color);
}

.nav_mobile-item svg {
    width: 14px;
    height: 14px;
    transition: .3s;
}

.nav_mobile-item.active svg{
    transform: rotate(90deg) !important;
}


.btn-search-close{
    background: transparent;
    color: #ccc !important;
    cursor: pointer;
    font-size: 18px !important;
}


.nav-submobile {
    max-height: 600px;
    overflow-y: auto;
    display: none;
}

.nav-submobile-link {
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 30px 8px 20px;
    color: #555;
}

/* Nav submenu */


.nav-submenu{
    
}


.nav-submenu-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 46px;
}

.nav-submenu-link span{
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    transition: .3s;
    position: relative;
    display: inline-block;
}

.nav-submenu-link span::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: #000;
    transition: .3s;
}

.nav-item:hover .nav_mobile-item svg {
    opacity: 1;
    transform: translateX(0px);
}

.nav-submenu-link:hover span::after{
    width: 100%;
}


.nav-info{
    margin-top: 40px;
}

.nav-info-item{
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.nav-info-icon{
    color: var(--primary-color);
    font-size: 20px;
}

.nav-info-context h4{
    font-size: 14px;
    font-weight: 600;
}
.nav-info-context p{
    font-size: 12px;
    margin-top: 4px;
}


/* Banner */

.banner{

}

.banner-body{
    position: relative;
}


.banner-image{
    width: 100%;
    height: 0;
    padding-bottom: 41.67%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.banner-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(0,-50%);
    display: flex;
    flex-direction: column;
    max-width: 600px;
}
.banner-text.left{
    left: auto;
}

.banner-text-subtitle{
    text-transform: uppercase;
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    opacity: 0;
}

.slick-current .banner-text-subtitle{
    animation: transLeft 0.5s linear;
    animation-delay: .2s;
    opacity: 1;
}

@keyframes transLeft {
    0%{transform: translateX(-40px);opacity: 0;}
    100%{transform: translateX(0px); opacity: 1;}
}

.banner-text-subtitle i{
    color: var(--primary-color);
}

.banner-text-title{
    font-size: 50px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.zoom-in{
    transition: all .5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition-delay: .4s;
}

.zoom-in.active{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.to-top{
    transition: all .5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
}

.to-top.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.to-top-banner{
    transition: all .5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
}

.to-top-banner.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


.banner-text-desc{
    line-height: 1.8;
    margin-bottom: 20px;
}

.primary-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    width: 140px;
    height: 50px;
    transition: .3s;
    cursor: pointer;
    position: relative;
    letter-spacing: 1px;
}

.primary-button::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 0px;
    height: 1px;
    background: #fff;
    transition: .3s;
}
.primary-button:hover{
    width: 180px;
}
.primary-button:hover::before{
    width: 20px;
}

/* Main */

/* Introduce */

.wrapper-introduce{
    padding-top: 40px;
    padding-bottom: 40px;
}

.introduce-block{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}



.intro-inner-images {
    position: relative;
    padding: 0 70px 75px 0;
}

.intro-inner-img{
    border-radius: 10px;
    overflow: hidden;
}

.intro-inner-counter {
    position: absolute;
    right: 0;
    top: 45px;
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 18px 15px 15px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.ct-counter-number {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 3px;
}

.ct-counter-title {
    font-size: 26px;
    color: #fff;
    line-height: 1.1;
    font-weight: 700;
}

.intro-inner-small {
    position: absolute;
    bottom: 0;
    right: -15px;
    border: 15px solid #fff;
    border-radius: 5px;
    max-width: 285px;
    background-color: #fff;
}

.intro-inner-small img{
    border-radius: 5px;
}

.intro-inner-text{
    line-height: 1.8;
    font-weight: 300;
}

.intro-inner-text p{
    margin-bottom: 15px;
}

.introduce__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
    padding: 20px 0;
}

.introduce__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 18px;
}

.introduce__list-item .icon {
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.button-87 {
  margin: 10px;
  padding: 16px 50px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 4px;
  display: inline-block;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(45deg, #d40700 0%, #eb6530  51%, #d40700  100%);
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}

.button-87:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.button-87:active {
  transform: scale(0.95);
}

.introduce-more{
    font-size: 16px;
    padding: 14px 40px;
}

/* Services home */

.sv-home{
    margin-bottom: 60px;
}

.sv-home-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.sv-home-content{
    text-align: center;
    padding: 0 20px;
    position: relative;
}


.sv-home-icon{
    margin: auto;
    width: 140px;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.sv-home-icon > svg{
    width: 90px;
    transition: .3s;
    fill: var(--primary-color);
}

.sv-home-icon:hover > svg{
    transform: scale(1.02);
}

.sv-home-name{
    font-weight: 700;
    color: #000;
    font-size: 20px;
    margin-bottom: 20px;
}

.sv-home-desc{
    font-size: 14px;
}


.partner{
    padding: 40px 0 20px;
}

.partner-data{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
}

.partner-content{
    position: relative;
    overflow: hidden;
}
.partner-content img{
    margin: auto;
    transition: .5s;
}
.partner-content:hover img{
    transform: scale(1.04);
}

.intro-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
}
.intro-item {
    height: 102px;
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 124px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.intro-item::before {
    width: calc(100% + 6px);
    height: 45px;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.intro-item::after {
    height: calc(100% + 6px);
    width: 45px;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.intro-item__cover {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-item__icon {
    position: relative;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s, transform 0.5s;
    transform: scale(1);
}

.intro-item:hover .intro-item__icon {
    opacity: 0;
    transform: scale(1.4);
}

.intro-item__icon>img {
    max-width: 70px;
}

.intro-item__text {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    font-size: 14px;
    padding: 0 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: scale(1.7) translate(-30%, -30%);
}

.intro-item:hover .intro-item__text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* projects-home */

.projects-new{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pj-new-sub{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.projects-nav{
    padding: 20px 0;
}
.projects-nav-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.projects-nav-item{
    display: inline-block;
    padding: 16px 30px;
    background: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    cursor: pointer;
}
.projects-nav-item.active,
.projects-nav-item:hover{
    background: var(--primary-color);
    color: #fff;
}

.projects{
    margin-top: 30px;
}

.projects-body{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.projects-post{
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
}

.projects-post-flex{
    display: flex;
    position: relative;
    background: #fff;
}

.projects-post-flex .projects-image{
    width: 150px;   
}

.projects-post-flex .projects-data{
    width: calc(100% - 150px);   
}

.projects-image{
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.projects-image .image-container {
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

/* .projects-image img{
    transition: 1s;
    height: 100%;
} */
.pj-new-sub .projects-image img{
    object-fit: cover;
}

.projects-image:hover img{
    transform: scale(1.1);
}

.projects-data{
    background: #fff;
    padding: 15px 20px 14px;
}

.projects-category{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 10px;
}

.projects-name{
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #000;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.projects-desc{
    font-size: 14px;
    margin-bottom: 10px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    min-height: 34px;
}

.projects-view{
    display: inline-block;
    line-height: 35px;
    padding: 0 15px;
    background: var(--primary-color);
    text-align: center;
    color: #fff;
    border: solid 1px transparent;
    transition: .3s;
    font-size: 14px;
}
.projects-view:hover{
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.box-button-center{
    text-align: center;
    padding: 20px 0 0;
}

.default-btn{
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: #fff;
    text-transform: capitalize;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}
.default-btn:hover{
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

/* Construction */

.bg-construction{
    background-image: url(../imgs/about_bg.jpg);
    background-position: center;
    background-size: cover;
}

.construction{
    margin: 0 0 60px;
}

.slider-item{
    padding: 0 10px;
}

.construction-content{
    margin: 10px 0;
    padding: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.construction-img{
    position: relative;
    overflow: hidden;
}

.construction-img > img{
    transition: 1s;
}
.construction-img:hover > img{
    transform: scale(1.1);
}

.construction-data{
    padding: 10px 10px 20px;
}

.construction-category{
    background: #f5f5f5;
    font-size: 14px;
    display: inline-block;
    padding: 4px 8px;
}

.construction-name{
    margin: 15px 0;
    font-weight: 600;
    font-size: 20px;
}

.construction-desc{
    font-weight: 300;
}


/* activities */

.activities-body{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.activities-content{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* .activities-content::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient( to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    opacity: 0;
    visibility: hidden;
    transition: .3s;
} */

.activities-content:hover::after{
    opacity: 1;
    visibility: visible;
}

.activities-data{
    position: absolute;
    bottom: 0px;
    left: 20px;
    color: #fff;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.activities-content:hover .activities-data{
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.activities-img{
    width: 100%;
    height: 100%;
}

.activities-img img{
    width: 100%;
    height: 100%;
}

.activities-subtitle{
    font-size: 12px;
    margin-bottom: 6px;
    font-weight: 300;
}

.activities-title{
    font-weight: 500;
    font-size: 14px;
}

/* news home */

.news-home{
    margin-top: 30px;
}

.news-slider-item{
    margin: 20px 10px;
}

.news-content{
    padding: 15px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    height: 100%;
}

.news-image{
    position: relative;
    overflow: hidden;
}

.news-image .image-container {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
    display: block;
}


.news-image .image-container:hover img{
    transform: scale(1.1);
}

.news-data{
    padding: 20px 0;
}

.news-info{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    opacity: .8;
}

.news-info span i{
    color: var(--primary-color);
    margin-right: 4px;
}

.news-title{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 14px;
    line-height: 1.6;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.news-desc{
    font-weight: 300;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.read-mode{
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--primary-color);
    transition: .3s;
}

.read-mode i{
    transition: .3s;
}

.read-mode:hover i{
    transform: translateX(6px);
}


/* contact home */

.bg-contact{
    background-image: url(../imgs/contact-bg.jpg);
    background-position: center;
    background-size: cover;
}

.contact-body{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form{

}

.group-input{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.input-50{
    width: 50%;
}

.group-input input{
    width: 100%;
    height: 54px;
    padding: 0 15px;
    border: none;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
}

.group-input input::placeholder,
.group-input textarea::placeholder{
    color: rgba(0, 0, 0, 0.4);
}


.group-input textarea{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.gg-map iframe{
    height: 500px;
    width: 100%;
}


/*  Footer */

.footer{
    padding: 80px 0 0px;
    background-image: url(../imgs/footer.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.ft-row{
    display: flex;
}

.ft-col{
    width: 25%;
    padding: 0 15px;
    color: #fff;
}

.ft-logo{
    display: block;
    margin-bottom: 40px;
}

.ft-logo-text h4{
    color: #fff;
    font-size: 24px;
}

.ft-logo-text p{
    color: #fff;
}

.ft-desc{
    margin-bottom: 10px;
    line-height: 1.7;
}


.ft-title{
    font-weight: 500;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 40px;
}

.ft-text{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}


.ft-text i{
    color: var(--primary-color);
    font-size: 22px;
}

.ft-link{
    margin-bottom: 20px;
}

.ft-link a{
    color: #fff;
    display: block;
}

.ft-link a i{
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

.ft-form{
    padding-top: 10px;
}

.ft-form input{
    width: 100%;
    height: 50px;
    background: #444;
    padding: 0 10px;
    margin-bottom: 15px;
    border: none;
    color: #fff;
    transition: .2s;
}

.ft-form input:focus{
    background-color: #fff;
    color: #111;
}

.ft-form input::placeholder{
    color: #fff;
    font-weight: 300;
    opacity: 0.8;
}
.ft-form input:focus::placeholder{
   color: #111;
}


.ft-submit{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 0;
    border: none;
    text-transform: uppercase;
}

.ft-social{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.ft-social a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    transition: .3s;
}
.ft-social a:hover{
    background: rgb(185, 3, 3);
    box-shadow: 0 2px 10px rgb(223, 1, 1);
}


.copyright{
    background: rgba(51,51,51,0.4);
    padding: 20px 0;
    margin-top: 50px;
}

.copyright-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text{
    color: #fff;
    font-size: 14px;
}

.ft-nav{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.ft-nav a{
    color: #fff;
    padding: 4px 10px;
    position: relative;
    transition: .3s;
}

.ft-nav a:hover{
    color: #d80505;
}


.ft-nav a::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
}
.ft-nav a:last-child::after{
    display: none;
}


/* About */

.about-text{
    font-size: 18px;
    line-height: 1.7;
    color: #4a4f55;
    text-align: justify;
    margin: auto;
}

.about-img{
    margin: auto;
    max-width: 990px;
    text-align: center;
    font-style: italic;
    padding: 20px 0;
}

.about-img p{
    background: #f5f5f5;
    padding: 10px 0;
}


.staff-content{
    padding: 10px;
}

.staff-img{
    margin: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.staff-img img{
    transition: 1s;
    border-radius: 50%;
    cursor: pointer;
}

.staff-img:hover img{
    transform: scale(1.1);
}

.staff-name{
    font-weight: 700;
    margin: 20px 0 10px;
    text-align: center;
    font-size: 20px;
}

.staff-position{
    font-weight: 300;
    text-align: center;
}

.staff-social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
}

.staff-social a img{
    width: 24px;
}

.staff-phone{
    text-align: center;
    font-size: 14px;
}
.staff-phone i{
    color: var(--primary-color);
    margin-right: 4px;
}


.testimonials{
    display: flex;
}

.testimonials-left, .testimonials-right{
    width: 50%;
}

.testimonials-img{
    padding: 0 40px;
}

.testi-content{
    position: relative;
}

.testi-body{
    background: #f5f5f5;
    padding: 50px 50px 70px;
}

.testi-icon{
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testi-text{
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
}

.test-avt{
    margin-left: 50px;
    width: 80px;
    transform: translateY(-40px);
}

.test-avt img{
    border-radius: 50%;
    overflow: hidden;
}

.test-name{
    position: relative;
    top: -35px;
    margin-left: 50px;
    font-weight: 700;
    font-size: 20px;
}

.test-position{
    position: relative;
    top: -30px;
    margin-left: 50px;
}

/* Map */

.wrapper-first {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.first-context{
    width: 40%;
}

.first-image {
    width: 60%;
    padding: 0;
}

.introduce__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 0;
    width: 100%;
}

.introduce__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 18px;
}

.introduce__list-item .icon {
    width: 26px;
    height: 26px;
    color: var(--head-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wrapper-btn {
    margin: 30px 0;
}



.block-map{
    position: relative;
}

.map-vietnam

.map-vietnam svg{
    width: 100%;
}


.map-vietnam > svg{
    width: 100%;
    max-height: 800px;
}

.gaph-vi > .province{
    cursor:pointer;
    fill:#afabaa;
    transition:.3s;
}

.gaph-vi > .province:hover{
    fill:#8f8b8a;
}
.province.active{
    fill: var(--primary-color) !important;
}

.province.highlight{
    fill:#06A3DA !important;
}

.tooltip{
    position: absolute;
    background:rgba(255,255,255,.9);
    box-shadow:1px 2px 4px rgba(0,0,0,.4);
    padding:5px 10px;
    border-radius:5px;
    font-size:14px;
    font-weight:500;
    display:none;
    z-index:9;
    pointer-events: none;
}

.capital{
    opacity:.7;
    cursor:pointer;
    x:712;
    y:272;
    width:8px;
    height:8px;
    stroke-width:1;
    transition:.3s;
    fill:#ffd000!important;
}

.capital:hover{
    width:9px;
    height:9px;
    opacity:1;
}

.text-svg{
    opacity:.9;
    font-weight:500;
    fill:#555;
    font-size:18px;
    stroke-width:0;
}

.number-text {
    font-size: 36px;
    fill: var(--clr);
    font-weight: 900;
}

.fixed-content{
    position: absolute;
    top: 30%;
    left: 10%;
    /* transform: translateY(-50%); */
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fixed-content-item .number{
    color: var(--clr);
    font-size: 40px;
    font-weight: 700;
}

.fixed-commit{
    position: absolute;
    top: 8%;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fixed-commit-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.fixed-commit-item .icon{
    width: 30px;
}

.fixed-commit-item .icon img{
    width: 30px;
    height: 30px;
}

.fixed-commit-item .text{
    width: calc(100% - 40px);
    color: #07194f;
}


/* Service */

.wrapper-service {
    padding: 20px 0;
}

.service-content {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 16px;
    border: 2px solid #fff;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
    background-color: #ffff;
    transition: .3s linear;
}

.service-image {
    display: block;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
}

.service-content .image-container {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    display: block;
}

.service-context {
    margin: 20px 0;
    text-align: center;
}

.service-name {
    color: #091e3e;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 17px;
}

.service-desc {
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}


.service-content .wrapper-btn {
    margin-bottom: 0;
}
.wrapper-btn {
    margin: 30px 0;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 14px;
    position: relative;
    background-color: transparent;
    border: 2px solid #091e3e;
    font-weight: 600;
    line-height: 24px;
    border-radius: 35px;
    transition: .3s linear;
}

.btn-readmore:hover{
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.service-pagination{
    text-align: center;
}
.swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}

.bg-about{
    background-image: url(../imgs//bg-ab-1.png);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}
.bg-about::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #001e57;
    opacity: .9;
}

.block-mission{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    background: #fff;
    position: relative;
    z-index: 1;
}
.block-mission-2{
    padding-top: 30px;
}

.mission-content{
    text-align: center;
}

.mission-pad{
    padding: 40px 50px 0;
}

.mission-title{
    margin-bottom: 25px;
    text-align: center;
}


.mission-title h2{
    font-weight: 700;
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 1.2em;
    color: #001e57;
    padding-bottom: 10px;
}

.mission-title h2::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    width: 0;
    height: 1px;
    border-right: 60px solid #df6512;
    border-left: 20px solid #001e57;
}

.mission-context{
    padding-bottom: 20px;
}

.mission-context p{
    line-height: 28px;
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    text-align: justify;
}

.mission-img{
    position: relative;
}
.mission-img img{
    width: 100%;
    display: block;
}