﻿/* CSS: Định nghĩa các hiệu ứng animation */
.amin {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.amin.animated {
  opacity: 1;
  animation-fill-mode: both; /* Đảm bảo hiệu ứng tiếp tục khi animation kết thúc */
  animation-duration: 1s;
}

.amin.animated.delay-250ms {
  animation-delay: 250ms;
}

.amin.animated.delay-500ms {
  animation-delay: 500ms;
}

.amin.animated.delay-750ms {
  animation-delay: 750ms;
}

.amin.animated.slow {
  animation-duration: 1500ms;
}

.amin.animated.fast {
  animation-duration: 800ms;
}

.amin.animated.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 200px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.amin.animated.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.amin.animated.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@media (max-width: 768px) {
   /* .amin.animated {
        animation: unset !important;
        transition: none !important;
    }*/
    .amin.animated.fadeInRight,

    .amin.animated.fadeInLeft,
    .amin.animated.fadeInUp
    {
          animation-name: fadeInUp!important;
    }
}


.form-popup p.des{
    line-height: 16px;
    margin-bottom: 10px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    margin: 0 auto;
    padding: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
}
.form-popup .form-text {
    line-height: 22px;
    margin-bottom: 10px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    margin: 0 auto;
    padding: 10px;
   /* background: rgba(255,255,255,0.4);*/
    border-radius: 2px;
    padding:0;
}
.form-popup .form-text h2{
    font-size: 24px;    margin-bottom: 18px;
}
.form-popup .form-text h3{
    font-size: 22px;
        margin-bottom: 18px;
}
#popup1{
padding-top:80px;
}
.form-popup{
    border-radius:2px;
    box-shadow:0 0 15px;
    font-size:14px;
    font-weight:bold;
    background-size: cover;
    background-repeat:no-repeat;
    width: 1000px;
    height: 496px;
    margin:0px;
    background-color:white;
    position: relative;
    margin: 70px  auto;
}

#contactdiv{
    opacity:1;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #000;
    display: none;
}
.popup1{
    opacity:1;
    position: fixed;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: 999999;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.popup1.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 100000;
	opacity: 0;
	background: rgba(40,43,49,.9);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}
.md-effect .form-popup {
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.md-show.md-effect .form-popup {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.form-popup .form-alert{   
    max-width: 480px;
    margin: 0 auto;
}
.form-popup .close{
    float: right;
    margin-top: -20px;
    margin-right: -12px;
}

.form-popup-content{
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    margin-right: 0px;
    margin-top: 0px;
    -moz-border-radius-topright: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 18px  20px 10px;
    margin: 0 ;
    width: calc(100% - 650px);
    background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
}
.form-popup .form-inner{
    max-width: 470px;
    margin: 0 auto;
    padding: 0 2px;
}
.form-popup input{
width:100%;
height:38px;
margin-top:5px;
border:1px solid #999;
border-radius:3px;
padding:5px;
}
.form-popup textarea{
    height: 54px;
    margin-top: 5px;
    border-radius: 3px;
    padding: 5px;
    resize: none;
    margin-bottom: 0;
}
.form-popup input,.form-popup textarea
{
    margin-top:8px;
}
.form-popup input, .form-popup textarea {font-size:15px;padding: 8px 12px;border-radius: 2px;margin-bottom: 4px;color: #212121;}
.form-popup textarea {min-height:56px;    border: 1px solid #999;}
.form-popup button
{
    background-color: #f94b00;
    border: 0!important;
    font-Weight: 600;
    font-size: 18px;
    color: white;
    width: 100%;
    text-align: center;
    outline: none!important;
    text-shadow: 0 1px 1px #f34a00;
    text-transform: uppercase;
    height: 50px;
  /*  background:rgb(232, 62, 48)!important;*/
    background-image: linear-gradient(#ebd428, #e4b70f);
    margin-bottom: 4px;
    transition: all 0.2s;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 4px;
}
.form-popup .close{cursor:pointer;}
.form-popup input[type=submit]:hover,.form-popup .close:hover
{
    opacity:0.9;
}
.form-popup #loading{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: rgba(255,255,255,0.7);
    z-index: 100;
    text-align: center;
    border-radius: 2px;
}
.form-popup #loading span{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    margin:auto;
    height:22px;
    width:90px;
    color:#333
}
.form-popup .send-success,.form-popup .send-error{
    padding: 0px 10px;
    color: #fff;
    text-align: center;
    border: none;
    background: none;
}
.form-popup .send-success  img,.form-popup .send-error img  {
    display: block;
    margin: 0 auto;
    width: 150px;
    margin-top: 30px;
}
.form-popup .send-success p
{color: #07970c; font-size: 14px;
    background: #fff;
    padding: 4px;
    border-radius: 24px;
}
.form-popup .send-error p
{color: #ec1e21;
    font-size: 14px;
    background: #fff;
    padding: 4px;
    border-radius: 24px;
}
.popup1 .left-image {width:650px;float:left;}
.popup1 .left-image img{
    max-width: 100%;
    height: auto;
}
.popup1 .pop-up-input {
    font-weight: 400;
    color: #1d55a4!important;
    font-size: 16px;
    width: 100%;
    border: none;
    border-bottom: 2px #1d55a4 solid;
    margin-bottom: 5px;
    background-color: transparent!important;
    box-shadow:unset;
    height: 40px !important;
    padding-left: 0;
}
@media only screen and (max-width:1120px) {
    .popup1 .left-image{display:none;}
    .form-popup {
        width: 470px;
        height: 610px;
    }
    .form-popup-content{width:100%;}
}
@media only screen and (max-width:768px) {
    .form-popup {
        width: 97%;
        margin-left: 1.5%;
        margin-right: 1.5%;
        margin: 80px auto 0;
    }
   .form-popup .close {
        margin-top: -12px;
        margin-right: -12px;
    }
}
@media only screen and (max-width:680px) {
    .form-popup-content{max-width:100%;padding:30px 15px 10px;}
    .form-popup .form-inner{padding:0;}
}
@media only screen and (max-width:580px) {
    .form-popup-right {
        width: calc(100% - 240px);
        padding: 16px 12px;
    }
    .form-popup-right .form-inner {
        padding: 2px 6px;
    }
    .form-popup h3 {
        font-size: 20px;
    }
    .form-popup {
        height: 572px;
    }
}
@media only screen and (max-width:520px) {
     .form-popup-right {
        width: calc(100% - 210px);
    }
     .form-popup-right .form-inner
     {
         margin-top:25px;
     }
}
@media only screen and (max-width:480px) {
    .form-popup p.des{display:block;}
     .form-popup-right {
        width: 100%;
    }
     .form-popup-right .form-inner
     {
         margin-top:10px;
     }
    .form-popup h3 {
        font-size: 20px;
    }
}

/*footer*/
.footer {
    color: #ffffff;
    margin-top: 0;
    position:relative;
}
.footer .contact{
    padding: 0px 0 2px;
    margin-bottom: 0;
    background: #f1d158;
}


.footer .contact .clogo img{
    max-width: 150px;
    margin-top: 0;
    padding: 3px;
}
.footer .contact .cinfo{
    display: flex;
    font-size: 17px;
    color: #ffffff;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
   
}
.footer .contact .chotline,.footer .contact .cemail{
     padding: 10px 0;
}
.footer .contact .cinfo p:first-child{margin-bottom:0;color: #148a4ea8;text-transform: uppercase;}
.footer .contact .cinfo p:last-child{margin-bottom:0px;}

.footer .contact .cinfo .hotline
{
    color: #ffa435;
    font-weight: 800;
    font-size: 21px;
    background: linear-gradient(to right, #12ac5b, #11bc62, #02ad53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}
.footer .contact .cinfo .email
{
    color: #ffa435;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(to right, #12ac5b, #11bc62, #02ad53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.3px;
}
.footer .contact .cform img{
    float: right;
    width: 175px;
    opacity: 0.7;
    cursor: pointer;
}
.footer .contact .cform img:hover{
    opacity:1;
}
.footer a {
    color: #ffffff;
    transition: all 0.3s;
}
.footer ul li a:hover,.footer .footer-about a:hover{
    color:#edc11b
}
.footer  a.more{
    color: #edc11b;
}
.footer .footer-main{
    font-weight: 500;
    padding-top: 60px;
    background: #4dec99;
    background-image: url(/theme/img/footer-bg.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    font-size: 15px;
    position: relative;
    background-size: cover;
}
.footer:before {
    content: '';
    width: 100%;
    height: 4px;
    background: #f6d24d;
    position: absolute;
    top: -8px;
    left: 0px;
    opacity: 0.8;
}
.footer .footer-about {
    margin-bottom: 30px;
    max-width: 920px;
    font-size: 16px;
}
.footer .footer-about p{
    margin-bottom:16px;
}

.footer .footer-about p span i.fa{
        margin-right: 12px;    width: 16px;
}

.footer .footer__title {
    margin: 10px 0 20px;
    text-transform: uppercase;
    /*border-bottom: 3px solid #efefef;*/
    padding-bottom: 10px;
    position: relative;
    margin-top: 0;
    font-weight: 900;
    font-size: 17px;
    font-family: Nunito,Arial,system-ui!important;
    white-space: nowrap;
    color: #fff;
}

.footer .footer__title:before {
    content: "";
    border-bottom: 3px solid #ffffff;
    width: 120px;
    position: absolute;
    top: 27px;
}

.footer .footer__title span {
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.footer .footer__content {
    line-height: 1.8;
    min-height: 100px
}

.footer__content.abouts img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
    border: 4px solid #fff
}
/*.footer__content.abouts strong{
    display:block;
    font-size:20px;
    margin-top:20px
}*/
.footer__content.abouts div > span {
    font-style: italic;
    font-size: 13.5px;
    color: #ff5722
}

.footer__content.abouts .entry-content {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eeeeee38;
    padding-bottom: 10px;
    font-weight:500;
    font-family: Nunito,Arial,system-ui!important;
    color: #fefefe;
}

.footer .copyright {
    padding: 8px 0;
    font-size: 13.5px;
    opacity: 0.8;
    border-top: 1px solid #1e9c5dc9;
    margin-top: 25px;
    background: #149052ba;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.footer .copyright .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .copyright .inner .logo{    width: 120px;
    margin-right: 10px;}
.footer .copyright a{color:unset;}
.footer .copyright a:hover {
    text-decoration:underline;
    color: unset;
}

.footer p.address {
    padding-top: 0;
    margin-top: 5px;
    font-size: 15px;
}

.footer .address span {
    display: inline-block;
    margin-right: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.footer .address p {
    margin-bottom: 6px;
    line-height: 1.5;
    font-weight: 500;
}

.footer .address i {
    width: 20px;
    height: 25px;
    text-align: center;
    line-height: 2.1;
    padding-right: 5px;
}

.footer .address .sitename {
    text-transform: uppercase;
    font-size: 115%;
    font-weight: bold;
    margin-top: 0;
    font-family: Tahoma, Arial;
}
.footer .name{
    font-size:25px;
    font-weight:bold;
}
.footer .company
{
    font-size: 105%;
    font-weight:600;
}
.footer .address .ame,
.contact-form p span.name{
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 15px;
    font-size: 22px;
    letter-spacing: -0.3px;
}
.contact-form p span.name{
   color: #519c47;
}
.footer .entry-content a {
   color:#519c47;
}
.contact-social{
    margin-bottom:20px
}
.footer .social-icons a{
        padding: 0 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #8cad9c;
    border-radius: 50%;
    display: block;
    float: left;
    text-align: center;
    margin-right: 10px; transition: all 0.3s ease;
 }
.footer .social-icons a.facebook{
    background:#0c56b3;
}
.footer .social-icons a.youtube{
    background:#d74006;
}
.footer .social-icons a.tiktok{
    background:#101010;
}
.footer .social-icons a.tiktok svg{
        width: 20px;
    line-height: 31px;
    display: inline-block;
    padding-top: 8px;
}
.footer .social-icons a.zalo{
    background:#376af6;
    padding: 6px 5px;
}
.footer .social-icons a i{line-height:38px;color:#fff;}

.footer .social-icons a:hover{
    transform: scale(1.05);
}
.footer h3.title{
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    color: #ffffffc4;
    margin-top: 20px;
    letter-spacing: 1px;
}
.footer .footer-links h3.title{
     margin-top: 50px;
}
.footer img.bct{
    max-width: 182px;
    margin-top: 13px;
    cursor: pointer;
}
.footer ul{
    padding-left: 0;
    color:#fff;
    font-weight: 500;
    list-style: none;
}
.footer ul li{
    margin-bottom: 5px;
}
.footer-content{
    display: flex;
}
.footer-about {
    width:50%
}
.footer-links {
    width:25%;

}
.footer-links .inner{
    align-items: flex-end;
    justify-self: flex-end;
}
@media only screen and (min-width:992px) {
    .footer .col-md-4 .footer__item {
        padding-left: 15px;
    }
}
@media (max-width: 991px) {
    .footer .contact .cinfo .cemail{display:none;}
    .footer .contact .cinfo{grid-template-columns: repeat(1,minmax(0,1fr));}
    .footer .contact .clogo img {
        max-width: 104px;
    }
    .footer-content {
        display: flex;
        flex-wrap: wrap;
    }
    .footer-about{width:100%}
    .footer-links {
        width: 50%;
    }
    .footer-links .inner {
        align-items: flex-start;
        justify-self: flex-start;
    }

     .footer    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
     .footer .footer-links h3.title {
        margin-top: 10px;
    }
}
@media (max-width:768px) {
    /* .footer{
             padding-top: 25px;
    }*/
     .footer .address .col-left{margin-bottom: 30px;}
     .footer .address .col-left,
     .footer .address .col-right{width:100%;}
    .footer .address .col-right ul {
        flex-flow: unset;
    }
    /*.copyright .container .pull-left{display:none;}*/

     .footer .footer__content form{
        max-width: 480px;
        margin: 0 auto;
    }
     
}
@media (max-width:587px) {
     .copyright .container .pull-left,
     .copyright .container .pull-right{width:100%;text-align:center;}
     .footer .copyright .inner {display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
    }
   
}

.section__news{
  padding-top: 40px;
    padding-bottom: 50px;
    margin-bottom: 20px;
    background: linear-gradient(#ffffff, #fdfcfa);
    background-image: url(/images/img/bg08.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0;
}
.section__news .news-header{
    background: #ffffff73;    padding-top: 32px;
}
.section__news .news-content{
       background: linear-gradient(#ffffff73, #fdfcfa);    padding-bottom: 80px;
}
.section__news .section__header{

}
/* Container chính */
.section__news .news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Tin lớn */
.news-item.large {
    flex: 1;
    min-width: calc(50% - 10px);
    position: relative;
    padding-top: 36%; /* Gần tỉ lệ 4:3 */
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

/* Nhóm tin nhỏ */
.news-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
    min-width: calc(50% - 5px);
}

/* Tin nhỏ */
.news-item.small {
     flex: 1 1 calc(50% - 5px);
     position: relative;
     padding-top: 36%;
     background-size: cover;
     background-position: center;
     border-radius: 4px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     text-decoration: none;
     color: inherit;
     overflow: hidden;
}

/* Tiêu đề với hiệu ứng blur */
.news-title-box {
    position: absolute;
    bottom: 5px;
    left: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-title {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
    text-shadow: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.2em;
    transition: all 0.3s ease;
}
.news-item.large .news-title-box{
    bottom: 15px;
    left: 18px;
    right: 18px;
    padding: 12px;
}
.news-item.large .news-title{
      font-size: 18px;
      line-height: 27px;
      font-weight: 600;
}
/* Hiệu ứng hover */
.news-item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
/* Hiệu ứng hover */
.news-item:hover .news-title{
    color:#00a64f;
}
/* Mobile responsive */
@media (max-width: 768px) {
    .news-item.large {
        flex: 1 1 100%;
        min-width: 100%;
        padding-top: 60%;
    }
    .news-group {
        flex: 1 1 100%;
        min-width: 100%;
    }
    .news-item.small {
        flex: 1 1 calc(50% - 5px);
    }

    .news-item.large .news-title-box {
        bottom: 10px;
        left: 12px;
        right: 12px;
        padding: 10px;
    }
    .news-item.large .news-title {
        font-size: 16.5px;
        line-height: 25px;
        font-weight: 600;
    }
    .news-title-box {
        bottom: 4px;
        left: 4px;
        right: 4px;
        padding: 3px;
        border-radius: 3px;
    }
    .news-title {
        font-size: 14px;
        line-height: 19px;
    }
}
/*slide*/
.my-slick-carousel{
   width: 100%;
      margin: 0 auto;
      padding: 0;
}

/* Container chính */
.project-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 10px;
    max-width: 1240px;
    margin: 0 auto;
    color: #333;
    padding: 0;
padding-bottom: 15px;
}

/* Dự án đầu tiên trên mobile */
.project-item.first-mobile {
    display: none;
    flex: 1 1 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.project-item.first-mobile img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-group {
display: flex;
    flex-wrap: wrap;
    gap: 50px 15px;
    flex: 1 1 100%;
    padding: 20px 12px;
    overflow: hidden;
}
.project-item {
    flex: 1 1 calc(33.33% - 15px);
    position: relative;
    text-decoration: none;
    color: inherit;
    border: 1px solid #fafafa;
    border-radius: 6px;
    min-width: 0; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-item a {
    padding: 15px 15px 10px;
    display: block;
    position:relative;
    z-index: 1;
}
.project-item a .cover{
  width: 100%;
  display: block;
  height: 0;
  padding-top: 66.67%;
  color: #333;
  position: relative;
}
.project-item a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #FFF;
    /* border: 1px solid red; */
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.project-item a .cover{

}
.project-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    position: absolute;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hiệu ứng hover */
.project-item:hover{
    transform: scale(1.015);
   /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);*/
}
.project-title-box{
    background: #fff;
    /* position: absolute; */
    /* left: 0px; */
    /* bottom: -38px; */
    height: 130px;
    z-index: 9;
    padding: 6px 0px 5px 0px;
    width: 100%;
    /* max-width: 330px; */
    background: #fff;
    /* border-radius: 2px; */
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); */
}

.project-title-box .title{
    font-weight: bold;
    font-size: 18px;
    color: #0daa58;
}
.project-title-box .tag{font-size: 12px;line-height: 13px;display: inline-block;text-transform: uppercase;position: relative;color: #999;padding-left: 15px;font-weight: 500;}
.project-title-box .tag::before {
    content: "";
    position: absolute;
    top: 16%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0daa58c7;
}
.project-title-box .description {
    color: #666;
    border-top: 1px solid #d9d0d099;
    padding: 4px 0px 0 0;
    margin-top: 6px;
    margin-right: 25px;
    position: relative;
}
.project-item .project-title-box .description::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #3b3b3bba;
    transition: all .6s ease-in-out;
}
.project-item:hover .project-title-box .description::before,
.project-title-box:hover .description::before{
	width: 100%;
	height: 1px;
}
/* Responsive */
@media (max-width: 1024px) {
    .project-item { flex: 1 1 calc(50% - 10px); }
    .project-group .project-item:nth-child(5) ,
    .project-group .project-item:nth-child(6){
        display:none;
    }
}

@media (max-width: 768px) {
    .project-item.first { display: none; }
    .project-item.first-mobile { display: block; }
    .project-group { flex: 1 1 100%; }
    .project-item { flex: 1 1 100%; padding-bottom:30px!important;}
    .project-group .project-item { padding-bottom:0px!important;    }
     .project-group .slick-list{overflow:unset;}
     /*.project-title-box{
         max-width: 380px;
        text-align: center;
        left: 0;
        position: relative;
        z-index: 10;
        margin: -60px auto 0;
     }*/
     .project-item:hover {
        transform: translateY(-10px);
    }
     .project-group .project-item:nth-child(4){
        display:none;
    }
     .project-title-box .title{
        font-size: 20px;
    }
}
.btn-tuvanonline{
    color: #fff!important;
    background: linear-gradient(to bottom, #e7bf20 0%, #edba1d 50%, #efa51f 100%);
    padding: 8px 20px;
    border-radius: 100px;
    border: 3px solid #ffffff;
    font-weight: 600;
    font-family: "Signika", sans-serif;
    margin: 0px 0 0 0;
    display: inline-block;
    letter-spacing: 0.4px;
    box-shadow: 0 0 2px #dcdcdc;  transition: all 0.3s ease-in-out;
}.btn-tuvanonline:hover{
    transform: scale(1.05);
}
 /* Phần chung */
        .social-section {
            position: relative;
            padding: 0px;
           background-image:url('/theme/img/top-bg.jpg');
            background-size: cover;
            background-position: center center;
            /*background: rgb(248 248 248 / 70%);*/
        }
        
        .social-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(125 125 125 / 29%);
            z-index: 1;
        }
        
        .section-container {
            max-width: 1920px;
            margin: 0 auto;
            padding: 0;
            position: relative;
            z-index: 2;
        }
        
        .section-label {
            background: #d4a762;
            color: white;
            display: inline-block;
            padding: 8px 20px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 30px;
            position: relative;
            left: -20px;
        }
        .social-grid{padding: 20px 0 10px;}
        /* Grid layout */
        /*.social-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }*/
        
        /* Social item */
        .social-item {
            position: relative;
            /* height: 580px; */
            border-radius: 0;
            overflow: hidden;
            transition: transform 0.3s ease;
            display: inline-block;
            width:100%;
        }
        
       /* .social-item:hover {
            transform: scale(1.05);
        }*/
        
        .social-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.4s ease;
        }
        
        
        
        .social-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(to bottom, transparent 0%, transparent 70%, #47544ca6 100%); */
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            color: white;
            text-align: left;
            padding: 20px;
            transition: all 0.3s ease;
        }
        .social-item:hover .social-bg {
            transform: scale(1.04);
        }
      
       /*  .social-item:nth-child(2n+1):hover .social-overlay {
            background: transparent;
        }*/
        .social-icon {
            font-size: 40px;
            margin-bottom: 0px;
        }
        
        /*.social-name {
            font-size: 18px;
            font-weight: 900;
            margin-bottom: -2px;
            background: #fff;
            border-radius: 29px;
            color: #00a64f;
            padding: 4px;
             line-height: 1.3;
            font-size: 20px;
            padding: 8px 26px;
            font-family: lora;
            font-style: italic;
            -webkit-box-shadow: 2px 1px 3px rgb(0 0 0);
            -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
            -webkit-transition: -webkit-transform .15s linear;
        }*/
        .social-name::before {
            content: "";
            display: block;
            width: 180px;
            height: 42px;
            background-image: url(/images/img/social/icon-facebook.png);
            background-repeat: no-repeat;
            background-size: cover;
            position: absolute;
            bottom: 22px;
            left: 14px;
            transition: all 0.4s;
        }
        .tiktok-item .social-name::before{
                background-image: url(/images/img/social/icon-tiktok.png);
        }
         .zalo-item .social-name::before{
                 background-image: url(/images/img/social/icon-zalo.png);
        }
          .youtube-item .social-name::before{
                 background-image: url(/images/img/social/icon-youtube.png);
        }
        .facebook-item .social-name::before{
                 background-image: url(/images/img/social/icon-facebook.png);
        }
        .social-item:hover .social-name::before{
            left: 20px;
        }
        /* Màu sắc riêng cho từng mạng */
        /*.tiktok-item .social-overlay {
            background: #3e1a228c;
        }
        
        .zalo-item .social-overlay {
            background: rgb(22 127 182 / 45%);
        }
        
        .youtube-item .social-overlay {
            background: rgb(75 8 8 / 60%);
        }
        
        .facebook-item .social-overlay {
            background: rgb(11 46 88 / 45%);
        }
        */

          .your-slider     .swiper-slide{
                 margin-right:72px;
                }

        /* Responsive */
        @media (max-width: 992px) {
            
           /* .social-item {
                height: 420px;display: 
            }*/
            .social-name::before{
                       width: 130px;
        height: 30px;
        left: 20px;
            }

             .your-slider     .swiper-slide{
                 margin-right:72px;
                }

        }
        
        @media (max-width: 576px) {
            /*.social-grid {
                grid-template-columns: 1fr;
            }*/
         /*   .social-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 0;
            }*/
           
           /*  .social-item {
                height: 220px;
            }*/
            .your-slider     .swiper-slide{
                 margin-right:8px;
                 width:112px;
                }
             .social-overlay{padding: 10px 0;align-items: center;}

             .social-name {
                padding: 4px;
                line-height: 1.3;
                font-size: 15px;
                padding: 4px 6px;
            }
            .section-label {
                font-size: 16px;
                left: 0;
            }
             .social-name::before {
                content: "";
                display: block;
                width: 221px;
                height: 52px;
                background-image: url(/images/img/social/icon-facebook.png);
                background-repeat: no-repeat;
                background-size: cover;
                position: absolute;
                bottom: 15px;
                left: 9px;

                transition: all 0.4s;
            }
            .tiktok-item .social-name::before{
                background-image: url(/images/img/social/icon-tiktok-2.png);
                }
                 .zalo-item .social-name::before{
                         background-image: url(/images/img/social/icon-zalo-2.png);
                }
                  .youtube-item .social-name::before{
                         background-image: url(/images/img/social/icon-youtube-2.png);
                }
                .facebook-item .social-name::before{
                         background-image: url(/images/img/social/icon-facebook-2.png);
                }
                .social-item:hover .social-name::before{
                    left: 20px;
                }

            .social-name::before{
                    width: 35px;
                    height: 35px;
                    left: 12px;
                    bottom: 10px;
            }
            .social-item:hover .social-name::before{
                width: 42px;
                    height: 42px;
                    left: 16px;
                    bottom: 13px;
            }
        }
    .your-slider     .swiper-wrapper {
  transition-timing-function: ease-in-out;
}
        .swiper-container {
  width: 100%;        /* hoặc đặt một kích thước cụ thể bạn mong muốn */
  overflow: hidden !important;
}
.your-slider {
  transition: transform 0.5s;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}
/*about*/
.page-about
{
        font-family: 'Lora';
}
.page-about .company-top{
    padding: 45px 0 15px;
    background: url(/theme/img/mid-bg.jpg);
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-about .company-about .inner{
    max-width:900px;padding:20px 10px;margin: 0 auto; font-size: 17px;

}
.page-about .company-about .inner h1{
    text-align: center;
    font-size: 22px;
    color: #19af60;
    position: relative;
    padding-bottom: 13px;
    margin-bottom: 27px;
}
.page-about .company-about .inner h1:before {
    content: "";
    display: block;
    height: 6px;
    width: 58px;
    border-radius: 25px;
    background-color: #30b770;
    position: absolute;
    top: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 1;
}

.page-about .company-about .inner h1:after {
content: "";
    display: block;
    width: 212px;
    height: 2px;
    background-color: #d2ded6;
    position: absolute;
    margin: 0 auto;
    left: 0;
    bottom: -4px;
    right: 0;
    z-index: 0;
}
.page-about .company-value .inner{
    max-width:1200px;    margin: 0 auto;
}
.page-about .company-value .company-info {
    display: flex;
    /* gap: 0rem; */
    /* margin: 2rem 0; */
    flex-wrap: wrap;
    flex-direction: row;
}
.page-about .company-value .label1{

    font-weight: bold;
    color: #6fb520;    margin-bottom: 2px;
}
.page-about .company-value .label2{

    font-weight: bold;
    color: #138b3e;    margin-bottom: 2px;
}

.page-about .company-value .label3{

    font-weight: bold;
    color: #fec000;    margin-bottom: 2px;
}
.page-about .company-value .content{
    background: linear-gradient(90deg, rgb(255 255 255 / 74%), rgb(241 250 249 / 0%));
    padding: 15px 0 1px 14px;
    min-height: 225px;
}
.page-about .company-value ol{
        padding-left: 20px;
}
.page-about .company-value .slick-slide{
  padding-left:15px;
  padding-right:15px;
}

.info-block {
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left; 
  width: 33.33%;
  margin: 0 auto 35px;
}

.info-block .icon {
    margin-bottom: 1rem;
    max-width: 290px;
    text-align: center;
    margin: 0 auto 20px;
    margin-left: 0px;
}

.info-block h2 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
}

.info-block ul {
  list-style: none;
  padding: 0;
  /* text-align: left; */ /* nếu muốn bullet nằm bên trái */
  padding-left: 20px;
}

.info-block ul li {
    margin-bottom: 0.1rem;
    position: relative;
    padding-left: 0.8rem !important;
    display: block;
}

.info-block ul li::before {
  content: "✓"; /* hoặc icon Unicode phù hợp */
  position: absolute;
  left: 0;
  color: #1abc9c; /* màu nhấn */
}

.info-block ul li:before {
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 16px;
    left: -22px;
    position: absolute;
    width: 16px;
    background-image: url(/theme/img/dot.png);
    margin: 5px 5px 0 0;
}

/*end tam nhin*/
.page-about .section-message{
    background: #f0fff3;
    padding: 10px 0 40px;
}
.info .quote-content {
    max-height: 480px;
    overflow: auto;
    padding-right: 20px;
}

.info .quote-content blockquote {
    font-size: 17px;
    border-left: 0;
}

.info1 .quote-content::-webkit-scrollbar-track {
    background-color: #00a550;
}

.info .quote-content::-webkit-scrollbar {
    width: 4px;
    background-color: #00a550;
}

.info .quote-content::-webkit-scrollbar-thumb {
    background-color: #00a550;
}

.info .ceo {
    background: #fff;
    display: inline-block;
    margin: 0 0 27px 30px;
    width: auto;
    padding: 10px 10px 5px;
    text-align: center;
    font-family: "Marker Felt", sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
    -webkit-transform: rotate(-1deg);
    -webkit-transition: -webkit-transform .15s linear;
    -moz-transform: rotate(-1deg);
}

.info .ceo:hover {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 50%);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,.5);
    position: relative;
    z-index: 5;
}

.info .ceo:after {
    content: attr(title);
    padding-top: 5px;
    display: block;
    font-family: 'UTM-Avo-Bold';
}


.title-career {
    font-family: "Signika", sans-serif;
    text-align: center;
    font-size: 30px;
    padding: 60px 0 30px;
    line-height: 40px;
    font-weight: 700;
}
.company-active{    background-image: url(/images/img/bg07.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;}