:root {
  --white: #ffffff;
  --black: #000000;
  --nav-text: #ffffff;
  --nav-accent: #024868;
  --nav-accent2: rgb(1,114,135);
  --dropdown-bg: #ffffff;
  --dropdown-shadow: rgba(0, 0, 0, 0.1);
  --dropdown-hover: #F4F7FA;
  --size-hd: calc(31px + 14px);  
}
@font-face {
    font-family: 'UTM Avo';
    src: url('../font/UTMAvo.woff2') format('woff2'),
        url('../font/UTMAvo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UTM Avo';
    src: url('../font/UTMAvoBold.woff2') format('woff2'),
        url('../font/UTMAvoBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

h1,h2,h3,h4,h5,h6,p,a,div,strong{
     font-family: 'UTM Avo' !important;
}

.img-wrap {
    position: relative;
    height: auto;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    padding-top: 56.25%;
}

.img-wrap img {
    vertical-align: middle;
    max-width: 100%;
    transform: translateZ(0);
    margin: 0 auto;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
    object-position: 50% 50%;
    object-fit: cover;
}
.header-nav-main{
    width: 100%;
    justify-content: center;
}
.header-nav-main .main-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  background: var(--black);
}
.header-nav-main .menu-item > a {
  display: inline-flex;            
  align-items: center;
  gap: 0.3em;             
  padding: 0.75em 1em;
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}
.header-nav-main .menu-item > a:hover {
  color: var(--nav-accent);
}
.header-nav-main .menu-item-has-children > a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--nav-text);
  border-bottom: 2px solid var(--nav-text);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.header-nav-main .menu-item-has-children:hover > a::after {
  transform: rotate(-135deg);
}
.header-nav-main .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0.5em 0;
  margin: 0;
  list-style: none;
  background: var(--dropdown-bg);
  border-radius: 6px;
  box-shadow: 0 8px 16px var(--dropdown-shadow);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.8);
  transition: opacity 0.3s ease,
              transform 0.3s ease,
              visibility 0.3s;
  z-index: 50;
}
.header-nav-main .sub-menu a{
    padding: 16px 0 !important;
    margin: 0;
}
.header-nav-main .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.header-nav-main .sub-menu.nav-dropdown-default{
    padding: 0 !important;
}
.header-nav-main .sub-menu .menu-item > a {
  display: block;
  padding: 0.6em 1.2em;
  color: var(--black);
  font-weight: 400;
  font-size: 0.95em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.header-nav-main .sub-menu .menu-item > a:hover {
  background: var(--dropdown-hover);
  color: var(--nav-accent);
}
.header-nav-main .menu-item-has-children {
  position: relative;
}
.header-nav-main .sub-menu a {
    position: relative;
    display: inline-block;
    color: #333; 
    text-decoration: none;
    padding-bottom: 5px; 
    transition: color 0.3s ease;
}
.header-nav-main .sub-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #0073aa; 
    transition: width 0.3s ease;
}
.header-nav-main .sub-menu a:hover::after {
    width: 100%;
}
.header-nav-main .btn-home{
    padding: 14px 20px !important;
    line-height: normal !important;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.header-nav-main .btn-home:hover{
    color: var(--white);
}

.list-phone {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hotline-header a {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hotline-header .icon{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}
.hotline-header:nth-child(1) .icon{
    background-image: url(../images/phone_header.svg);
}
.hotline-header:nth-child(2) .icon{
    background-image: url(../images/local_header.svg);
    width: 28px;
    height: 40px;
}
.hotline-header .hl {
    font-size: 15px;
    color: #4f5666;
    font-family: 'Roboto_bold';
    margin-bottom: 3px;
}
.hotline-header p:nth-child(2) {
    font-size: 16px;
    color: var(--nav-accent);
    font-weight: 700;
}
.header .header-main .logo a{
    position: relative;
    overflow: hidden;
    line-height: 1;
    display: inline-block;
}
.header .header-main .logo a::before{
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 100%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, .75);
    left: -5%;
    animation: light-left 3s infinite alternate linear;
}
.header .header-main .logo a::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 100%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.75);
    right: -5%;
    animation: light-right 3s infinite alternate linear;
}
.header .header-main .logo a img{
    -webkit-transition:0.3s ease-out;
    -moz-transition:0.3s ease-out;
    -o-transition:0.3s ease-out;
    transition:0.3s ease-out;
}
@keyframes light-left{0%{left:-5%;opacity:0;} 50%{left:50%;opacity:1;} 100%{left:105%;opacity:0;} }
@keyframes light-right{0%{right:-5%;opacity:0;} 50%{right:50%;opacity:1;} 100%{right:105%;opacity:0;} }
.header-bottom .flex-left{
    width: 100% !important;
}
.header-bottom .flex-left .header-nav-main {
    gap: 34px;
    justify-content: center;
}
.header-bottom .flex-left .header-nav-main .icon-angle-down{
    display: none;
}
.section-banner-home .img-inner{
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    padding-top: 30.25%;
}
.section-banner-home .img-inner img{
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    transform: translateZ(0);
    margin: 0 auto;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
    object-position: 50% 50%;
    object-fit: cover;
}
.section--home1 {
    padding-top: 0;
    margin-top: -90px;
}
.section--home1 .col{
  padding-bottom: 0 !important;
}
.section--home1 .box-item-icon {
    padding: 25px 25px 35px 25px;
    background-color: #FFF;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 12%);
}
.section--home1 .box-item-icon h3 {
    color: var(--nav-accent);
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}
.section--home1 .box-item-icon p{
   color: #4f5666;
   font-size: 14px;
}
.ot-heading{
    line-height: auto !important;
}
.ot-heading>span {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--nav-accent);
    margin-bottom: 10px;
}
.ot-heading>span.is_highlight {
    background: rgba(35, 166, 254, 0.1);
    padding: 2px 10px;
    border: 1px solid var(--nav-accent);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.section--home2 h2, .section--home2 p {
    margin-bottom: 35px;
}
.section--home2 .row{
  align-items: center;
}
.section--home3 .accordion-title {
    font-weight: 500;
    border-radius: 5px;
    background: #ffffff21;
    margin-bottom: 10px;
    border: 1px solid #80808099;
    color: var(--black)
}
.section--home3 .accordion-title.active {
    color: #fff;
    background: var(--nav-accent);
    border-radius: 5px;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.section--home3 .accordion-item{
    margin-bottom: 20px;
}
.section--home3 .accordion-item .accordion-inner{
    border: 1px solid var(--nav-accent);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.section--home3 .accordion-item .accordion-inner p{
   color: var(--black);
}
.section--home3 .row{
   align-items:center
}
.section--home3 h2{
    margin-bottom: 20px;
}
.section--home4{
    padding: 68px 0 110px !important;
    background: #308db817;
}
.section--home4 .block-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    color: var(--nav-accent);
    margin: 0 0 50px;
}
.section--home4 .block-title span{
    display: block;
    margin-top: 5px;
    color: var(--nav-accent2);
}
.section--home4 .box-service{
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    -webkit-box-shadow: 0px 5px 0.9375rem 2px rgba(144, 116, 218, .16);
    box-shadow: 0px 5px 0.9375rem 2px #74b8301a;
}
.section--home4 .box-service:hover{
    border: 1px solid var(--nav-accent);
}
.section--home4 .box-service .icon img{
    width: 50px;
    height: 26px;
    padding-top: unset !important;
}
.section--home4 .box-service .icon-box-text{
    padding-left: unset !important;
}
.section--home4 .box-service .icon-box-text h3{
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--nav-accent2);
}
.section--home4 .text_bot_expence{
    text-align: center;
    width: 100%;
    font-size: 25px;
    margin-top: 20px;
    color: var(--nav-accent);
    font-weight: 600;
}
.section--home4 .ot-heading{
    text-align: center;
}
.section--home5{
    background: #308db817;
}
.section--home5 .list-post .box-blog-post{
    border: 1px solid #fff;
    background-color: #fff;
    padding: 15px;
    -webkit-box-shadow: 0px 5px 0.9375rem 2px rgba(144, 116, 218, .16);
    box-shadow: 0px 5px 0.9375rem 2px #74b8301a;
}
.btn-home{
    padding: 6px 40px 6px 40px;
    background-color: transparent;
    background-image: linear-gradient(220deg, #4a74c1 0%, #044bd0 79%);
    box-shadow: 0 10px 25px rgba(36, 78, 161, 0.41);
    border-radius: 30px 30px 30px 30px;
    color: #fff;
}
.btn-home::before {
    content: '';
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    opacity: .2;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}
.btn-home:hover {
    background-image: linear-gradient(220deg, #00fbff, #00c8fff7);
}
.btn-home:hover::before {
    animation: thmBtnRipple 2s cubic-bezier(.47,2.02,.31,-.36) infinite;
}
@keyframes thmBtnRipple {
    0% {
        left: 10px
    }

    100% {
        left: calc(100% - 10px)
    }
}
.section--home6{
    height: 420px;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto;
}
.section--home6 .rocket-img {
    position: absolute;
    top: -35px;
    left: 15%;
    -webkit-animation: up_down 15s infinite;
    animation: up_down 15s infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    padding-bottom: 0 !important;
}
.section--home6 .rocket-img img{
    width: 148px;
    height: 339px;
}
@keyframes up_down {
    0% {
        transform: translateY(0) translateX(0)
    }

    25% {
        transform: translateY(-30px) translateX(0)
    }

    75% {
        transform: translateY(30px) translateX(0)
    }
}
.section--home6 .row{
    padding-top: 90px;
}
.section--home6 h2{
    font-size: 35px;
    font-weight: 700;
    line-height: 48px;
    position: relative;
    color: #fff;
    z-index: 1;
    display: inline-block;
    margin: 0 0 38px;
}
.footer-custom {
    padding: 30px 0px;
}
.footer-custom .box-item .logo {
    display: block;
    width: 100%;
    max-width: 270px;
    height: auto;
    margin-bottom: 20px;
}
.footer-custom .box-item .desc {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 26px;
}
.footer-custom .list-infor h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--black);
}
.footer-custom .list-infor .infor {
    display: flex;
    list-style-type: none;
    gap: 20px;
}
.footer-custom .list-infor .infor .item-infor a i {
    font-size: 26px;
    color: var(--black);
}
.footer-custom .box-item .lable {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 8px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--black);
}
.footer-custom .box-item .footer-menu li a {
    font-size: 14px;
    color: var(--black);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease-out;
}
.list-infor-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.list-infor-contact span, .list-infor-contact span a {
    color: var(--black);
    font-size: 16px;
}
.footer-custom {
    background-image: url(../images/bg-footer3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-custom .box-item .footer-menu {
    padding-left: 36px;
}
.footer-1, .footer-2, .absolute-footer{
    display: none !important;
}
.banner-about{
    position: relative;
    left: 0px;
    top: 0px;
    opacity: 1;
    height: 590px;
}
.section-slide__bottom {
    position: relative;
}
.section-slide__bottom>span {
    position: absolute;
    border-color: #fff transparent;
    border-style: solid;
    border-width: 0 2020px 160px 2000px;
    top: 100%;
    left: 50%;
    margin-top: 13px;
    transform: rotate(-1.05deg) translate(-51.41791045%);
    transition: all .8s ease-in-out;
}
.section-slide__bottom>span:first-child:after {
    background: hsla(0, 0%, 100%, .4);
    height: 500px;
    width: 2000px;
    top: 0;
    left: 0;
    transform: rotate(-5.6deg);
    transform-origin: 0 0;
    transition-delay: .6s;
}
.section-slide__bottom>span:first-child:after, 
.section-slide__bottom>span:first-child:before {
    content: "";
    display: block;
    position: absolute;
    transition: all .8s ease-in-out;
}
.about1{
    padding-top: 40px !important;
}
.about1 h2{
    font-size: 26px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 27px;
}
.about2 .box-item{
    display: inline-flex;
}
.about2 .box-item:before {
    content: "";
    width: 90%;
    left: 5%;
    bottom: -17px;
    height: 40px;
    background: rgb(255 255 255 / 46%);
    border-radius: 22px;
    z-index: 0;
    position: absolute;
    box-shadow: 0 26px 50px 0 rgba(0, 89, 138, .08);
    transition: .5s all;
}
.about2 .box-item .item {
    border-radius: 22px;
    background: #fff;
    min-height: 240px;
    text-align: left;
    padding: 30px 25px 50px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px rgba(0, 94, 120, .14);
    transition: .5s all;
    cursor: pointer;
}
.about2 .box-item .item  .number {
    position: absolute;
    top: 5px;
    right: 30px;
    font-size: 50px;
    font-weight: 700;
    color: #74b8303d;
    transition: .5s all;
}
.about2 .box-item .item  .block-icon {
    display: block;
    margin: auto;
    text-align: center;
    margin-bottom: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    display: inline-block;
    background-color: #fff;
    background-repeat: no-repeat;
    transition: .5s all;
    background-size: 100%;
}
.about2 .box-item .item .block-info h3 {
    color: #59960d;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.444;
    margin-bottom: 20px;
}
.about2 .box-item .item .block-info h3 {
    color: #59960d;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.444;
    margin-bottom: 20px;
}
.about2 .row-custom .col-inner {
    display: flex;
    justify-content: center;
}
.box-item-test {
  position: relative;
  width: 270px;
  height: 440px;  
  box-sizing: border-box;
  text-align: center;
}
.box-item-test::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/svg-box1.svg) center/cover no-repeat;
   background-size: 100% 100%;
  z-index: 1;
}
.box-item-test .icon-box-img {
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;  
  height: 80px;
  z-index: 2;
}
.box-item-test .icon-box-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  z-index: 2;
}

.box-item-test .icon-box-text h3 {
    line-height: normal;
    margin-top: 32px;
    font-size: 18px;
    color: var(--nav-accent);
}
.box-item-test .icon-box-text p {
    font-size: 14px;
    letter-spacing: 1px;
}
.box-item-test .icon-box-text ul li{
    text-align: start;
    font-size: 13px;
    letter-spacing: 0px;
}
.section-differences-in-staff .box-title-top .title {
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    color: var(--nav-accent2);
    line-height: 52px;
    font-family: "Saira", sans-serif;
    margin-bottom: 20px;
}
.section-differences-in-staff .box-title-top .sub-title {
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    color: var(--black);
    font-family: "Maven Pro", sans-serif;
    text-align: center;
    display: inline-block;
}
.section-differences-in-staff .featured-box .icon-box-text p{
    margin-bottom: 0;
}
.page-header-wrapper .title-breadcrumbs{
    color: var(--nav-accent) !important;
}
.main-category-taxonomy .list-post-item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.main-category-taxonomy .list-post-item .item-post {
    height: 100%;
    position: relative;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--nav-accent2);
    overflow: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.main-category-taxonomy .list-post-item .item-post .thumb-inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 87.25%;
}
.main-category-taxonomy .list-post-item .item-post .thumb-inner img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.main-category-taxonomy .list-post-item .item-post .prod-name {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--nav-accent);
    margin-top: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main-category-taxonomy .list-post-item .item-post .info-prod-card {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: #214446;
    opacity: 0.9;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    visibility: hidden;
    padding: 4.5rem 2.4rem;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.main-category-taxonomy .list-post-item .item-post .info-prod-card .title {
    text-align: center;
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
}
.main-category-taxonomy .list-post-item .item-post .info-prod-card .link {
    display: block;
    color: #ffffff;
    text-align: center;
}
.main-category-taxonomy .list-post-item .item-post:hover .info-prod-card {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    visibility: visible;
}
.section-main-single {
    padding-top: 30px;
}
.section-main-single .blog-wr {
    padding-top: 40px;
}
.section-main-single .blog-wr img {
    width: 100%;
}
.section-main-single .blog-content-wr {
    padding: 20px 15px;
}
.section-main-single .asiderbar {
    position: sticky;
    top: calc(var(--size-hd) + 2rem);
    border-radius: 0.8rem;
    border: 0.1rem solid #CBD5E1;
    background-color: #ffffff;
}
.section-main-single .asiderbar .inner {
    padding: 24px;
}
.section-main-single .asiderbar .inner .tt-aside {
    font-size: 24px;
    font-weight: 700;
    line-height: 170%;
    margin-bottom: 16px;
    color: var(--nav-accent);
}
.section-main-single .asiderbar .list-category {
    list-style-type: none;
}
.section-main-single .asiderbar .list-category .item a {
    display: block;
    padding: 12px 16px;
    color: var(--nav-accent2);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.banner-category, .banner-single {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    height: 60vh;
    width: 100%;
    position: relative;
}
.banner-category .box-title-search .title-page {
    font-size: 42px;
    color: var(--white);
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
}
.banner-category .box-title-search .search-box {
    width: 100%;
    max-width: 50%;
    display: flex;
    align-items: center;
    position: relative;
}
.banner-category .box-title-search .search-box input {
    height: 45px !important;
    border-radius: 99px;
    padding: 0 55px 0 25px;
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}
.banner-category .box-title-search .search-box button {
    line-height: unset;
    padding: 0;
    height: 43px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    background: var(--white);
    border-radius: 0 99px 99px 0;
    position: absolute;
    right: -16px;
    top: 1px;
}
.main-category {
    background: var(--white);
}
.main-category .list-post-cate {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.main-category .list-post-cate .item-post-cate {
    box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.main-category .list-post-cate .item-post-cate .content {
    padding: 15px 0 15px;
}
.main-category .list-post-cate .item-post-cate .content .title {
    padding: 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 22px;
    color: var(--nav-accent);
    font-weight: 700;
    text-transform: uppercase;
}
.main-category .list-post-cate .item-post-cate .content .is-divider {
    background: linear-gradient(to right, #3439D7 0%, #12ada9 100%) !important;
    height: 1px !important;
    max-width: 50%;
    margin-bottom: .5em;
    margin-top: .5em;
    margin-right: auto;
}
.main-category .list-post-cate .item-post-cate .content .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    padding: 0 20px 0;
    color: var(--black);
    margin-bottom: .1em;
    margin-top: .1em;
}
.main-category .list-post-cate .item-post-cate .content .cate-date {
    padding: 15px 20px 0;
    border-top: 1px solid #efefef;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #595959;
    margin-top: 15px;
}
.main-category .list-post-cate .item-post-cate:hover .content {
    background: var(--nav-accent);
}
.main-category .list-post-cate .item-post-cate:hover .content .title,
.main-category .list-post-cate .item-post-cate:hover .content .desc,
.main-category .list-post-cate .item-post-cate:hover .content .cate-date {
    color: var(--white);
}
.banner-single .box-inner .title {
    color: var(--white);
    font-size: 30px;
    line-height: normal;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.banner-single .box-inner .post-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    color: var(--white);
}
.main-single {
    background-color: #f5f7fa;
}
.main-single .box-content {
    padding: 30px 20px 15px;
    background-color: var(--white);
    border: 1px solid #dddedf;
    border-radius: 6px;
}
.main-single .box-post-new {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    height: max-content;
    padding: 16px 10px 10px;
    background-color: var(--white);
    border: 1px solid #dddedf;
    border-radius: 6px;
}
.main-single .box-post-new .title-widget {
    font-size: 18px;
    color: var(--nav-accent);
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 16px;
}
.main-single .list-post a {
    display: flex;
    padding: 12px 0;
    width: 100%;
    border-top: 1px dashed #bababa;
}
.main-single .list-post a .thumbnail {
    width: 100%;
    max-width: 30%;
}
.main-single .list-post a .thumbnail img {
    width: 60px;
    height: 44px;
}
.main-single .list-post a .title-post {
    width: 100%;
    max-width: 70%;
    margin: 0;
    font-size: 16px;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notification {
    padding-top: 30px;
    text-align: center;
}
.notification .search-results-info {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
}
.banner-taxonomy .taxonomy-title{
    text-align: center;
    color: var(--white);
    font-size: 30px;
}
.contact-us-main .col-inner{
    border-radius: 10px;
    padding: 12px 16px;
    background-color: #f7f7f7;
    text-align: center;
    position: relative;
    transition: all .4s ease-in-out;
}
.contact-us-main .contact-box-items{
    border-radius: 10px;
    border: 1px solid #e1e4e5;
    padding: 28px 30px;
}
.contact-us-main .contact-box-items h3{
    color: #000;
    font-weight: 700;
}
.contact-us-main .col-inner:hover{
    background: var(--nav-accent);
}
.contact-us-main .col-inner:hover .contact-box-items svg{
    filter: grayscale(100%) brightness(300%) !important;
}
.contact-us-main.hover .col-inner .contact-box-items h3,
.contact-us-main .col-inner:hover .contact-box-items h3{
    color: #fff;
}
.contact-us-main.hover .col-inner .contact-box-items p,
.contact-us-main .col-inner:hover .contact-box-items p{
    color: #fff;
}
.contact-us-main.hover .col-inner{
    background: var(--nav-accent);
}
.section-form-contact p{
    margin-bottom: 0 !important;
}
.section-form-contact .sub-title-ct{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    font-family: Kalam, sans-serif;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.section-form-contact .title-ct{
    font-size: 48px;
    font-weight: 700;
    line-height: 125%;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 5px;
}
.section-form-contact .form-contact .form-group p{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.section-form-contact .form-contact .input-form-ct{
    width: 100%;
    outline: none;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 30px 20px;
    background-color: transparent;
    font-weight: 400;
    color: #fff;
}
.section-form-contact .form-contact .input-form-textarea{
    width: 100%;
    outline: none;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 30px 20px;
    background-color: transparent;
    font-weight: 400;
    color: #fff;
}
.section-form-contact .form-contact input::placeholder,
.section-form-contact .form-contact textarea::placeholder {
  color: #fff;
  opacity: 1;  
}
.section-form-contact .form-contact .btn-contact {
    position: relative;
    z-index: 1; /* giảm z-index xuống 1 thay vì 2 */
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #1ca8cb;
    color: #fff;
    padding: 22px 24px;
    min-width: 170px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    line-height: 1;
    text-align: center;
    text-transform: capitalize;
    display: inline-block;
    transition: color 0.4s ease-out;
}

.section-form-contact .form-contact .btn-contact::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    background-color: #1ca8cb;
    z-index: -1;
    border-radius: inherit;
    transition: all 0.4s ease-out;
}

.section-form-contact .form-contact .btn-contact:hover {
    color: #fff;
}

.section-form-contact .form-contact .btn-contact:hover::before {
    width: 100%;
}
.section-form-contact .row{
    display: flex;
    align-items: center;
}
.Skill .box-image{
    position: relative;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}
.Skill .box-image img{
    border-radius: 20px;
}
.Skill .sub-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--black);
    margin-bottom: 20px;
}
.Skill .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    color: var(--nav-accent);
}
.Skill .desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: var(--black);
    margin-bottom: 10px;
}
.Skill .progress-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
}
.Skill .progress-item {
    margin-bottom: 20px;
}
.Skill .box-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.Skill .progress-title {
    flex: 1;
    font-size: 16px;
    font-weight: bold;
}
.Skill .progress-percent {
    font-size: 16px;
    font-weight: bold;
}
.Skill .progress-bar {
    flex: 3;
    height: 10px;
    background-color: #d3d3d3;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.Skill .progress-fill {
    height: 100%;
    background-color: #4a4a4a;
    border-radius: 5px;
    width: 0;
    transition: width 2s ease-in-out;
}