:root{
    --cl-x: #1D4A99;
    --cl-y: #F59D10;
    --cl-gray: #F5F5F5;
    --fs-12: 0.75rem;
    --fs-14: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
    --fs-18: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    --fs-20: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    --fs-24: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    --fs-28: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
    --fs-36: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
    --fs-title: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);

    --px-content: 8%;
    --py-content: 40px;
}

body{
    font-family: "Inter", sans-serif;
}

p:last-of-type{
    margin-bottom: 0;
}

a{
    color: #000;
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

.fs-12{
    font-size: var(--fs-12) !important;
}

.fs-14{
    font-size: var(--fs-14) !important;
}

.fs-18{
    font-size: var(--fs-18) !important;
}

.fs-20{
    font-size: var(--fs-20) !important;
}

.fs-24{
    font-size: var(--fs-24) !important;
}

.fs-28{
    font-size: var(--fs-28) !important;
}

.text-justify{
    text-align: justify !important;
}

.text-x{
    color: var(--cl-x) !important;
}

.text-y{
    color: var(--cl-y) !important;
}

.text-gray{
    color: var(--cl-gray);
}

/*background*/
.bg-x{
    background-color: var(--cl-x) !important;
}

.bg-y{
    background-color: var(--cl-y) !important;
}

.bg-gray{
    background-color: var(--cl-gray) !important;;
}

.btn-custom{
    display: inline-block;
    padding: 0.25rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    transition: all .3s ease-in-out;
    vertical-align: middle;
}

.btn-custom:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.btn-x{
    background-color: var(--cl-x);
    color: #fff;
    border: 1px solid var(--cl-x);
}

.btn-x:hover{
    color: #fff;
}

.btn-y{
    background-color: var(--cl-y);
    color: #fff;
    border: 1px solid var(--cl-y);
}

.btn-y:hover{
    color: #fff;
}

.btn-shape{
    display: inline-flex;
    transition: all .3s ease-in-out;
}

.btn-shape .label-text{
    position: relative;
    padding: 0.375rem 1rem;
    background-color: var(--cl-x);
    color: #fff;
    overflow: hidden;
}

.btn-shape .label-text .label-main{
    transition: all .3s ease-in-out;
}

.btn-shape .label-text .label-sub{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    padding: 0.375rem 1rem;
    transform: translate(-150%, -50%);
    transition: all .3s ease-in-out;
}

.btn-shape:hover .label-text .label-main{
    animation: label-main 0.5s;
}

.btn-shape:hover .label-text .label-sub{
    animation: label-sub 0.5s;
}


@keyframes label-main{
    0%{
        ttransform: translate(0);
    }
    100%{
        transform: translateX(150%);
    }
}

@keyframes label-sub{
    0%{
        transform: translate(-150%, -50%);
    }
    100%{
        transform: translate(-50%, -50%);
    }
}



.btn-shape .shape-cover-button{
    position: relative;
    width: 1.25rem;
}

.btn-shape:hover{
    filter: drop-shadow(2px 4px 6px rgba(149, 157, 165, 1));
}

.shape-cover-button:before,
.shape-cover-button:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(50% + 0.25rem);
}

.shape-cover-button:before{
    top: -0.25rem;
    background-color: #797979;
    clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
}

.shape-cover-button:after{
    bottom: -0.25rem;
    background-color: #BAA9A7;
    clip-path: polygon(0 0, 50% 0, 100% 100%, 50% 100%);
}

.shape-cover-button .inner-shape{
    position: absolute;
    inset: 0;
}

.shape-cover-button .inner-shape:before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--cl-x);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.shape-cover-button .inner-shape:after{
    content: "";
    position: absolute;
    top: -0.25rem;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    width: 100%;
    z-index: -2;
    background-color: #000;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: translateX(50%);
}


.shape-cover-button:last-of-type:before{
    clip-path: polygon(0 0, 50% 0, 100% 100%, 50% 100%);
}

.shape-cover-button:last-of-type:after{
    clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
}

.shape-cover-button:last-of-type .inner-shape:before{
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shape-cover-button:last-of-type .inner-shape:after{
    transform: translateX(-50%);
}



.image-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block{
    position: relative;
    padding: var(--py-content) var(--px-content);
}

.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-cover.has-gradient:before,
.bg-cover.has-gradient:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%; /*50%*/
}

.bg-cover.has-gradient:before{
    top: 0;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}

.bg-cover.has-gradient:after{
    bottom: 0;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}


.main-title{
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
    text-transform: uppercase;
    position: relative;
}

/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
}
.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-top{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.navbar-main{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background-color: var(--cl-x);
    position: unset;
}

.navbar-fixed{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    animation: animate 1s;
    transition: all 2s ease-in-out;
    z-index: 30;
}

@keyframes animate {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
   }
}

.navbar-fixed.navbar{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar-nav{
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a{
    color: #fff;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: #fff;
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: var(--cl-y);
}

/*===*/
.navbar-nav .dropdown-menu{
    border-radius: 0.25rem
}
.navbar-nav .dropdown-menu .dropdown-item{
    padding: 0.375rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav .dropdown-menu .dropdown-item:active{
    background-color: var(--cl-y);
}

.navbar-nav .toggle-menu{
    margin-left: 0.5rem;
}

.navbar-brand{
    margin: 0;
    padding: 0;
}

.logo{
    width: 332px;
    transition: all .3s ease-in-out;
}

.navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--cl-x);
    box-shadow: none !important;
    color: var(--cl-x);
}

.box-search-header{
    display: flex;
    width: 100%;
    padding: 0.4rem;
    border: 2px solid #DDDDDD;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #fff;
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent;
    font-size: var(--fs-14);
}

.box-search-header button{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: none;
    border-radius: 50%;
    font-size: var(--fs-14);
}

.btn-popup-search{
    padding: 0;
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

.btn-popup-search svg{
    fill: #fff;
}

.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: var(--cl-x);
    font-size: var(--fs-18);
    position: relative;
}

.label-quantity{
    position: absolute;
    top: -6px;
    right: -10px;
    width: 1rem;
    height: 1rem;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--cl-x);
}

.translate .lang-item{
    color: #000;
}

.translate .lang-item img{
    width: 2rem;
}

.translate .lang-item.active{
    color: var(--cl-x);
}


/*============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*banenr-page*/
.banner-page{
    min-height: clamp(11rem, 10rem + 5vw, 16rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-page .title{
    display: block;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.banner-page .breadcrumb{
    justify-content: center;
    margin-bottom: 0;
}

.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
}

.banner-page .breadcrumb .breadcrumb-item.active{
    color: #fff;
}

.simple-breadcrumb{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f4f4f4;
}
.simple-breadcrumb .breadcrumb{
    justify-content: center;
    margin-bottom: 0;
}

.simple-breadcrumb .breadcrumb .breadcrumb-item,
.simple-breadcrumb .breadcrumb .breadcrumb-item a,
.simple-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}

.simple-breadcrumb .breadcrumb-item.active{
    color: var(--cl-x);
}
/*===*/
.box-hover-zoom .box-thumbnail,
.card-hover-zoom-long .box-thumbnail{
    overflow: hidden;
}

.box-hover-zoom .box-thumbnail img{
    transition: all 0.3s ease-in-out;
}

.box-hover-zoom:hover .box-thumbnail img,
.box-hover-zoom-long:hover .box-thumbnail img{
    transform: scale(1.1);
}

.box-hover-zoom-long .box-thumbnail img{
    transition: all 1s ease-in-out;
}

.wrapper-slide{
    position: relative;
}

.wrapper-slide .swiper-button-next,
.wrapper-slide .swiper-button-prev{
    width: clamp(1.75rem, 1.7rem + 0.25vw, 2rem);
    height: clamp(1.75rem, 1.7rem + 0.25vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-x);
    clip-path: url(#clip-path-btn-review);
}
.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    content: "";
}

.wrapper-slide [class*="swiper-button-"] svg{
    fill: #fff;
    width: clamp(0.625rem, 0.525rem + 0.5vw, 1.125rem);
}


/* Home ============*/
.main-slide{
    overflow: hidden;
    position: relative;
}

.main-slide .swiper-slide{
    position: relative;
}

.wrapper-slide [class*="main-slide-"]{
    background-color: transparent;
}

.wrapper-slide .main-slide-next{
    right: -2rem;
}

.wrapper-slide .main-slide-prev{
    left: -2rem;
}

.wrapper-slide [class*="main-slide-"] svg{
    fill: transparent;
}

.wrapper-thumb-main-slide{
    position: absolute;
    left: 5%;
    bottom: 5%;
    width: 25%;
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    transform: translateY(-50%);
}

.main-slide .banner-slide h2{
    margin-bottom: 0;
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    color: #fff;
}`


/*Home========================*/
.box-main-title h1,
.box-main-title h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    position: relative;
}

.box-main-title h3{
    font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
}


/*===*/
.box-counter{
    color: var(--cl-x);
    font-weight: 700;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.box-counter .box-counter-top{
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 0.1rem + 0.75vw, 1rem);
}
.box-counter .number{
    font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
}

.box-counter .sub-title{
    width: min-content;
    line-height: 1;
}

.box-counter .title{
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
}

/*====*/
.box-operating{
    position: relative;
    padding: clamp(1.5rem, 1.3rem + 1vw, 2.5rem) 0 clamp(1.5rem, 1.3rem + 1vw, 2.5rem) clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    background-color: #fff;
    height: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
}   

.box-operating:hover{
    transform: translateY(-0.5rem);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.box-operating h3{
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    font-weight: 700;
    color: var(--cl-x);
}

.box-operating .shape{
    --w-shape: clamp(3.5rem, 3rem + 2.5vw, 6rem);
    width: var(--w-shape);
    height: var(--w-shape);
    float: right;
    shape-outside: circle(100.8% at 100% 100%);
    -webkit-shape-outside: circle(100.8% at 100% 100%);
    margin-top: 6rem;
}

.box-operating .shape:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(var(--w-shape) + 2rem);
    height: calc(var(--w-shape) + 1rem);
    background-color: var(--cl-x);
    background-image: var(--thumb);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: calc(100% - clamp(2rem, 1.8rem + 1vw, 3rem)) calc(100% - clamp(2rem, 1.8rem + 1vw, 3rem));
    border-top-left-radius: 3.5rem;
}


/*====*/
.box-description-activity{
    height: 100%;
    padding: 1.5rem;
    background-image: url('/img_data/images/bg_field_of_activity.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.box-activity{
    position: relative;
}

.box-activity .box-content{
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.5rem;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    background-color: #fff;
}

.box-activity .box-title{
    display: flex;
    align-items: center;
}

.box-activity .box-content .title{
    flex: 1;
    margin-bottom: 0;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
    color: var(--cl-x);
}

.box-activity .view-more{
    position: relative;
    overflow: hidden;
    background-color: var(--cl-x);
    clip-path: url(#clip-path-btn-view-more-activity);
}

.box-activity .view-more .arrow-left,
.box-activity .view-more .arrow-right{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease-in-out;
}

.box-activity .view-more .arrow-left{
    position: absolute;
    left: -100%;
}

.box-activity .view-more .arrow-right{
    width: 2.5rem;
    height: 2.5rem;
}

.box-activity .view-more:hover .arrow-left{
    animation: arrow-left 0.5s;
}

.box-activity .view-more:hover .arrow-right{
    animation: arrow-right 0.5s;
}


@keyframes arrow-left{
    0%{
        ttransform: translate(0);
    }
    100%{
        transform: translateX(100%);
    }
}

@keyframes arrow-right{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(100%);
    }
}


.svg-clip-path{
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
}

/*===*/
.box-review .box-thumbnail{
    width: 30%;
    margin-bottom: -5rem;
    padding: 0.375rem;
    background-color: var(--cl-x);
    clip-path: url('#clip-path-thumb-review');
}

.box-review .box-thumbnail .inner-thumbnail{
    clip-path: url('#clip-path-thumb-review');
}

.box-review .box-content{
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.box-review .box-content .inner-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.box-review .box-content .top-content{
    width: 80%;
    padding-right: 1.5rem;
    padding-left: 20%;
    text-align: center;
    clip-path: url(#clip-path-top-conten-review);
    background-color: #fff;
}

.box-review .box-star{
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    background-color: #F6F6F6;
    color: #FFBE27;
    font-size: 1.125rem;
}

.box-review .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
}

.box-review .sub-title{
    font-weight: 700;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.box-review .bottom-content{
    margin-top: -1px;
    padding: 1.5rem;
    border-radius: 0.75rem 0 0.75rem 0.75rem;
    background-color: #fff;
}

.review-prev,
.review-next{
    position: relative;
    inset: unset;
    margin: 0;
}

.review-prev:after,
.review-next:after{
    content: "";
}


.album-slide,
.thumb-album-slide{
    height: auto;
}

.thumb-album-slide .swiper-slide{
    filter: brightness(0.8);
}

.thumb-album-slide .swiper-slide-thumb-active{
    filter: brightness(1);
}

.wrapper-slide .swiper-button-next.partner-next,
.wrapper-slide .swiper-button-prev.partner-prev{
    background-color: transparent;
}

.wrapper-slide [class*="partner-"] svg{
    fill: var(--cl-x);
}

.partner-next{
    right: calc(-1 * clamp(0rem, -0.6rem + 3vw, 3rem));
}

.partner-prev{
    left: calc(-1 * clamp(0rem, -0.6rem + 3vw, 3rem));
}

/*===*/
.box-product{
    display: block;
    height: 100%;
    background-color: #fff;
    border-radius: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-product .box-thumbnail{
    position: relative;
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}

.box-product .box-badge{
    position: absolute;
    left: 0;
    top: 1rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--cl-x);
    font-size: var(--fs-18);
    color: #fff;
}

.box-product .box-content{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: clamp(0.25rem, 0.15rem + 0.5vw, 0.75rem);
    text-align: center;
}

.box-product .box-title{
    max-height: 2.5rem;
}

.box-product .title{
    margin-bottom: 0rem;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-product .box-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-product .box-price{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
}

.box-product .box-price .label-sale-price{
    color: #000;
}

.box-product .box-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
    font-size: var(--fs-14);
}

.box-variation-color{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.box-variation-color .item.variation-color{
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}


.box-product:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.box-product:hover .title{
    color: var(--cl-x);
}


/*===*/
.box-blog .box-thumbnail{
    position: relative;
}

.box-blog .box-content{
    position: relative;
    padding: 1.75rem 1rem 1rem;
    background-color: #F5F5F5;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.box-blog .box-meta-post{
    display: flex;
    gap: 0.75rem;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.box-blog .box-meta-post .item{
    position: relative;
    padding: 0.25rem 1rem;
    background-color: var(--cl-x);
    color: #fff;
    font-size: 0.875rem;
}

.box-blog .box-meta-post .item:first-child:after{
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 100%;
    right: 1px;
    top: 0;
    transform: translateX(100%);
    background-color: var(--cl-x);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.box-blog .box-meta-post .item:last-child:after{
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 100%;
    left: 1px;
    top: 0;
    transform: translateX(-100%);
    background-color: var(--cl-x);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.box-blog .title{
    margin-bottom: 0;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-blog .box-excerpt{
    margin-top: 0.5rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog:hover .title{
    color: var(--cl-x);
}

/*===*/
.box-gallery{
    position: relative;
}

.box-gallery .box-content{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease-in-out;
    opacity: 0;
    transform: scale(0.7);
}

.box-gallery:hover .box-content{
    opacity: 1;
    transform: scale(1);
}

.box-gallery img{
    transition: all .2s ease-in-out;
}

.box-gallery:hover img{
    filter: brightness(0.5);
}


/*===*/
.footer{
    position: relative;
    overflow: hidden;
    color: #fff;
}

.footer-top{
    padding: 0;
}

.footer-top > .row > .col:nth-child(odd){
    background: rgba(16, 52, 146, 0.74);
}

.footer-top > .row > .col:nth-child(even){
    background: rgba(16, 52, 146, 0.43);
}

.box-info-footer{
    height: 100%;
    padding: 10%;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.box-info-footer .title{
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.footer-bottom{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgba(16, 52, 146, 0.43);
}

.footer a{
    color: #fff;
    text-decoration: none;
}

.footer a:hover{
    color: var(--cl-y);
}

.footer p{
    margin-bottom: 0.7rem;
}

.logo-footer{
    margin-bottom: 1rem;
    width: 15rem;
    border-radius: 0.5rem;
}

.title-footer{
    position: relative;
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    font-weight: bold;
}

.list-footer ul{
    list-style-type: "\f105\00A0\00A0";
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
}

.list-footer ul li a{
    position: relative;
}

.list-footer ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--cl-y);
    bottom: -4px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
}

.list-footer ul li a:hover::before{
  transform-origin: left;
  transform: scaleX(1);
}

.list-footer ul li::marker{
    font-family: "Font Awesome 6 Pro";
}
.list-footer ul li{
    transition: transform .2s ease-in-out;
}

.list-footer ul li:hover{
    transform: translateX(5px);
}

.list-footer ul li + li{
    margin-top: 0.7rem;
}

.list-footer ul li i{
    margin-right: 6px;
    color: var(--cl-x);
}

.social-contact{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-contact .item{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    color: #fff;
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.zalo{
    background-color: #018EDE;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.social-contact .item.facebook{
    background-color: #002CCA;
}

.social-contact .item.youtube{
    background-color: #DE0101;
}

.social-contact-footer .item.zalo{
    background-color: transparent;
}

.social-contact-footer .item:hover{
    animation: scale-icon 0.5s;
    background-color: var(--cl-y);
    border-color: var(--cl-y);
    color: #fff;
}

@keyframes scale-icon {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

.coppyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    text-align: center;
}


/**/
.form-booking-footer{
    display: flex;
    background-color: #F2F2F2;
    padding: 0.125rem;
    border-radius: 50rem;
    margin-bottom: 1rem;
}

.form-booking-footer .form-control{
    padding: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem) 1.5rem;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
}

.form-booking-footer button{
    padding: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    font-weight: 700;
    border-radius: 50rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.g-recaptcha-contact{
    transform: scale(0.7);
    transform-origin: 0 0;
}    

/*===*/
.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.map-footer iframe{
    width: 450px;
    max-width: 100%;
    height: 150px;
}

.contact-information{
    padding: 5% 20%;
    border-radius: 1rem;
    background-color: var(--cl-x);
}

.contact-information li{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-align: center;
}

.contact-information li + li{
    margin-top: 1.5rem;
}

.contact-information li span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cl-x)
}

/*===page about*/
.block-about-us .box-counter{
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background-color: var(--cl-x);
    border-radius: 1rem;
    color: #fff;
}

.block-about-us .box-counter .number{
    font-size: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
}

.block-about-us .box-counter .title{
    font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
}

.block-about-us .box-counter .sub-title{
    font-size: clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
}

.block-about-us .box-counter-1{
    clip-path: url(#clip-path-box-counter-first);
    margin-right: -1rem;
    padding-right: 2rem;
}

.block-about-us .box-counter-3{
    clip-path: url(#clip-path-box-counter-last);
    margin-left: -1rem;
    padding-left: 2rem;
}


.list-vision-mission .item{
    display: flex;
    gap: 1rem;
    position: relative;
}

.list-vision-mission .item .thumbnail{
    width: clamp(4rem, 3.6rem + 2vw, 6rem);
    height: clamp(4rem, 3.6rem + 2vw, 6rem);
    padding: 0.25rem;
    background-color: #fff;
    clip-path: url(#clip-path-thumb-vision-mission);
}

.list-vision-mission .item .inner-thumbnail{
    width: 100%;
    height: 100%;
    padding: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    background-color: var(--cl-x);
    clip-path: url(#clip-path-thumb-vision-mission);
}

.list-vision-mission .item img{
    transition: all 0.7s ease-in-out;
}

.list-vision-mission .item:hover img{
    transform: rotate3d(0, 1, 0, 360deg);
}


.list-vision-mission .item .content{
    flex: 1;
}

.list-vision-mission .item .title{
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    font-weight: 700;
    color: var(--cl-x);
}


.box-company-strengths{
    height: 100%;
    background: #F8F8F8;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.box-company-strengths .box-thumbnail{
    clip-path: url(#clip-path-thumb-company-strengths);
}

.box-company-strengths .box-content{
    padding: 1rem;
}

.box-company-strengths .title{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cl-x);
}

.box-company-strengths:hover{
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.375);
    transform: translateY(-0.5rem);
}


.box-circle{
    clip-path: circle(62% at 50% 100%);
    overflow: hidden;
}

.box-circle .item-circle{
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.box-circle .item-1{
    background-color: #1D4A99;
    clip-path: polygon(0 38%, 0 100%, 100% 100%);
}

.box-circle .item-2{
    background-color: #1E53AF;
    clip-path: polygon(60% 0, 0 38%, 100% 100%);
}

.box-circle .item-3{
    width: 50%;
    transform: translateX(50%);
    background-color: #1F5CC5;
    clip-path: polygon(90% 0, 10% 0, 50% 100%);
}

.box-circle .item-4{
    left: 50%;
    background-color: #1F63D9;
    clip-path: polygon(100% 38%, 40% 0, 0 100%);
}

.box-circle .item-5{
    left: 50%;
    background-color: #1D68EA;
    clip-path: polygon(100% 100%, 100% 38%, 0 100%);
}

.box-circle .label-text{
    position: absolute;
    font-size: clamp(0.375rem, 0.19999999999999998rem + 0.8750000000000001vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all .3s ease-in-out;
}

.box-circle .item-circle.active .label-text{
    color: var(--cl-y);
}

.box-circle .item-1 .label-text{
    left: 35%;
    top: 85%;
    transform: translateX(-50%);
}

.box-circle .item-2 .label-text{
    left: 50%;
    top: 45%;
    transform: translateX(-50%);
}

.box-circle .item-3 .label-text{
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
}

.box-circle .item-4 .label-text{
    left: 50%;
    top: 45%;
    transform: translateX(-50%);
}

.box-circle .item-5 .label-text{
    left: 65%;
    top: 85%;
    transform: translateX(-50%);
}

.wrapper-tab-content-circle{
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    background: rgba(31, 100, 168, 0.08);
    border-radius: 0.75rem;
}


.cover-circle{
    position: absolute;
    left: 50%;
    bottom: -53%;
    width: 80%;
    height: 100%;
    transform: translateX(-50%);
    filter: drop-shadow(0px -22px 18.5px rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

.cover-circle .inner-cover-circle{
    width: 100%;
    height: 100%;
    clip-path: url(#clip-path-circle);
    background-color: #fff;
}

.content-circle{
    margin-top: -8rem;
    z-index: 1;
}