@font-face {
    font-family: 'SVN-Gilroy';
    src: 
        url('../fonts/SVN-Gilroy-Bold.woff') format('woff');
        font-weight: 700;
}

@font-face {
    font-family: 'SVN-Gilroy';
    src: 
        url('../fonts/SVN-Gilroy-SemiBold.woff') format('woff');
        font-weight: 600;
}
@font-face {
    font-family: 'SVN-Gilroy';
    src: 
        url('../fonts/SVN-Gilroy-Medium.woff') format('woff');
        font-weight: 500;
}

@font-face {
    font-family: 'SVN-Gilroy';
    src: 
        url('../fonts/SVN-Gilroy-Regular.woff') format('woff');
        font-weight: 400;
}

@font-face {
    font-family: 'SVN-Gilroy';
    src: 
        url('../fonts/SVN-Gilroy-Thin.woff') format('woff');
        font-weight: 300;
}
@font-face {
    font-family: 'SVN-Gilroy';
    src: 
        url('../fonts/SVN-Gilroy-Italic.woff') format('woff');
        font-style: italic;
}
@font-face {
    font-family: 'SVN-Georgia';
    src: 
        url('../fonts/GeorgiaPro-Reg.woff') format('woff');
}

:root{
    --cl-x: #0767C8;
    --cl-y: #273797;
    --cl-z: #FFBC05;
    --cl-gradient: linear-gradient(0deg, #2064b8 0%, #1791db 100%);
    --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.5rem, 1.35rem + 0.75vw, 2.25rem);

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


body{
    font-family: "SVN-Gilroy", sans-serif;
    overflow-x: hidden;
}

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-grd{
    background: var(--cl-gradient);
    -webkit-background-clip: text !important;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

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

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

.bg-grd{
    background: var(--cl-gradient);
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    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;
    transform: translateY(-0.25rem);
}

.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{

}

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


.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);
}


.block-last{
    padding-bottom: clamp(6rem, 5.6rem + 2vw, 8rem);
}

.block-last + .footer{
    margin-top: calc(-1 * clamp(2rem, 1.4rem + 3vw, 5rem));
}

.img-cover{
    position: absolute;
    z-index: -1;
}

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

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

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

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

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


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

.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-main{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.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: flex-end;
    align-items: center;
}

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

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

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

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

/*===*/
.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{
    max-height: clamp(3rem, 2.8rem + 1vw, 4rem);
    transition: all .3s ease-in-out;
}

.navbar-toggler{
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    justify-content: center;
    margin-left: 0;
    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-shadow: none !important;
}

.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{
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--cl-y);
    padding: 0;
    border: 0;
    border-radius: 50%;
}

.btn-popup-search svg{
    fill: var(--cl-x);
}

.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;
    font-weight: 700;
}

.translate .lang-item + .lang-item{
    
}

.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(6rem, 2.2rem + 19vw, 25rem);
    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;
}

.breadcrumb{
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
}

.breadcrumb .breadcrumb-item.active{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--cl-x);
}

.simple-breadcrumb{
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #E7EDF2;
}

.simple-breadcrumb .breadcrumb-item.active{
    flex: 1;
}


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

.main-slide .swiper-pagination-bullet{
    width: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    height: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    border-radius: 50rem;
    background-color: #FFFFFF;
    opacity: 1;
    transition: all .3s ease-in-out;
}

.main-slide .swiper-pagination-bullet-active{
    width: clamp(2rem, 1.6rem + 2vw, 4rem);
    background: var(--cl-gradient);
}

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

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: calc(var(--px-content) + 1rem);
    transform: translateY(-50%);
    width: 40%;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.main-slide .banner-slide h2{
    font-size: clamp(1.5rem, 1.05rem + 2.25vw, 3.75rem);
}

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

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


[data-aos="new-animation"] {
    opacity: 0;
    transition-property: transform, opacity;
    transform: translateX(100px) rotate(45deg);
    &.aos-animate {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos="bounce-in-down"] {
    animation-name: bounceInDown;
    animation-delay: var(--delay);
    animation-duration: var(--duration);
    animation-play-state: paused;
    &.aos-animate {
        animation-play-state: running;
    }
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -1000px, 0) scaleY(3);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }

    75% {
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }

    90% {
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }

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



/*====*/
.box-line-process:after{
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    z-index: -2;
    transform: translate(-50%, 0%);
    width: 500px;
    border-bottom: 2px dashed #fff;
    mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
}

.box-line-process.bottom:after{
    border-bottom: 1px solid #fff;
}

.box-line-process .icon{
    width: clamp(4.5rem, 4.2rem + 1.5vw, 6rem);
    height: 3rem;
    margin: 0 auto;
}

/**/
.box-icon-process{
    position: relative;
    width: 100%;
}

.box-icon-process .box-top{
    display: flex;
    align-items: end;
    gap: 3rem;
    margin-bottom: 0.75rem;
}

.box-icon-process .box-top .number{
    font-size: clamp(2rem, 1.875rem + 0.625vw, 2.625rem);
    font-weight: 700;
    color: var(--cl-x);
    line-height: 1;
}

.box-icon-process .box-top .icon{
    height: clamp(3rem, 2.45rem + 2.75vw, 5.75rem);
}

.box-icon-process .box-bottom{
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    line-height: normal;
}

.box-icon-process .box-bottom .title{
    margin-bottom: 0.375rem;
    font-size: inherit;
    font-weight: 700;
    color: var(--cl-x);
}


.box-icon-process.arrow:after {
    --space: clamp(1rem, 0.8rem + 1vw, 2rem);
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(calc(100% + (calc(var(--bs-gutter-x) - var(--space)) / 2)), -50%);
    width: var(--space);
    height: var(--space);
    background-image: url('../images/next-arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.box-icon-process.arrow-left:after {
    background-image: url('../images/prev-arrow.svg');
}

.image-down-process{
    width: clamp(1rem, 0.8rem + 1vw, 2rem);
}



@keyframes gridMove {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 0 40px, 0 40px;
    }
}

@keyframes gridMove-in {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 0 -40px, 0 -40px;
    }
}


/*===*/
.box-service .box-thumbnail{
    border-radius: 0.625rem;
}

.box-service .box-content{
    --w-icon: clamp(3rem, 2.8rem + 1vw, 4rem);
    position: relative;
    padding: 0.75rem;
    background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('/templates/images/down-arrow.svg');
    background-repeat: no-repeat;
    background-position: 98%;
    background-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}

.box-service .box-content .icon{
    position: absolute;
    left: 1.5rem;
    width: var(--w-icon);
    height: var(--w-icon);
    padding: 0.5rem;
    background: var(--cl-gradient);
    transform: translateY(-50%);
    border-radius: 0.375rem;
}

.box-service .box-content .title{
    padding-left: calc(var(--w-icon) + 3rem);
    font-size: var(--fs-20);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cl-y);
}

.box-service .box-content .view-more{
    position: absolute;
    top: 0;
    right: 0.75rem;
    padding: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem) clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background-color: #F0F0F0;
    color: var(--cl-x);
    transform: translateY(-100%);
}

.box-service .box-content .view-more i{
    transition: all .3s ease-in-out;
}

.box-service .box-content .view-more:hover i{
    transform: translateX(0.25rem);
}


/*===*/
#block-benefit .benefit-shape-1{
    width: clamp(5rem, 4rem + 5vw, 10rem);
    height: clamp(5rem, 4rem + 5vw, 10rem);
    left: 0;
    top: 0;
    z-index: -1;
    clip-path: url('#clip-path-benefit-shape-1');
}

#block-benefit .benefit-shape-2{
    width: clamp(13rem, 11.6rem + 7.000000000000001vw, 20rem);
    height: clamp(13rem, 11.6rem + 7.000000000000001vw, 20rem);
    right: -10rem;
    bottom: 0;
    z-index: -1;
    clip-path: url('#clip-path-benefit-shape-2');
}


#block-benefit .img-cover{
    width: clamp(5rem, 3rem + 10vw, 15rem);
    top: 0;
    right: 2%;
}

[data-aos="custom-aos-img-benefit"] {
    /*opacity: 0;*/
    transition-property: transform, opacity;
    transform: translate(300px, 100px);
    &.aos-animate {
        opacity: 1;
        transform: translate(0, 0);
    }
}


.list-icon-benefit{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.box-icon-benefit{
    display: flex;
    gap: 1rem;
}

.box-icon-benefit .icon{
    width: 3rem;
    height: 3rem;
    position: relative;
    padding: 0.5rem;
    z-index: 1;
}

.box-icon-benefit .icon:after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(50% 50% at 47% 50%, rgba(18, 173, 240, 1) 0%, rgba(29, 116, 197, 1) 100%);
    border-radius: 50%;
}

.box-icon-benefit .icon:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--cl-gradient);
}

.box-icon-benefit .content .title{
    margin-bottom: 0;
    font-size: 1.25rem;
    color: var(--cl-x);
}


.box-icon-outstanding-figures{
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    color: #fff;
}

.box-icon-outstanding-figures .icon{
    width: clamp(3rem, 2.6rem + 2vw, 5rem);
    height: clamp(3rem, 2.6rem + 2vw, 5rem);
}

.box-icon-outstanding-figures .title{
    margin-bottom: 0.25rem;
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    font-weight: 700;
}


/*===*/
.label-image-wcu{
    position: absolute;
    left: 0;
    top: 50%;
    writing-mode: vertical-rl;
    font-size: clamp(6rem, 5.6rem + 2vw, 8rem);
    font-weight: 700;
    transform: translate(-50%, -50%) rotate(180deg);
    -webkit-text-stroke: 3px #ffffff;
    opacity: 0.7;
    color: transparent;
    line-height: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}

.label-image-wcu.label-2{
    z-index: -1;
    -webkit-text-stroke: 3px #8998E1;
    color: #8998E1;
    clip-path: unset;
}


.box-icon-wcu{
    transition: all .3s ease-in-out;
}

.box-icon-wcu .icon{
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
    transition: all .3s ease-in-out;
}

.box-icon-wcu .title{
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: var(--fs-20);
    background: var(--cl-gradient);
    -webkit-background-clip: text !important;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.box-icon-wcu:hover{
    transform: translateY(-0.25rem);
}

.box-icon-wcu:hover .icon{
    transform: translateY(-0.5rem);
}


/*===*/
.form-register-consultation .form-control{
    padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}


/*===*/
.box-hover-zoom .box-thumbnail,
.box-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{
    --swiper-navigation-size: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    /*--w-slide: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    --h-slide: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);*/
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    background-color: #D9D9D9;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    color: var(--cl-x);
    transition: all .3s ease-in-out;
    pointer-events: all;
}

.wrapper-slide .swiper-button-next{
    right: calc(-1 * var(--swiper-navigation-size) / 2);
}

.wrapper-slide .swiper-button-prev{
    left: calc(-1 * var(--swiper-navigation-size) / 2);
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    font-family: "Font Awesome 6 Pro";
    font-size: 1.5rem;

}

.wrapper-slide .swiper-button-next:after{
    content: "\f105";
}

.wrapper-slide .swiper-button-prev:after{
    content: "\f104";
}


/*===*/
.box-product{
    overflow: hidden;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 0.5rem;
}

.box-product .box-thumbnail{
    position: relative;
}

.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{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

.box-product .title{
    margin-bottom: 0rem;
    text-align: center;
    font-size: var(--fs-20);
    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: #EC2424;
}

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

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

.btn-custom.btn-icon{
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.125rem 0.125rem 0.125rem 1rem;
    border-radius: 50rem;
}

.btn-custom.btn-icon .icon{
    --img-icon: url('/templates/images/icon-btn-x.svg');
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80%;
    position: relative;
    overflow: hidden;
}

.btn-custom.btn-icon.btn-icon-sm{
    font-size: 0.875rem;
}

.btn-custom.btn-icon.btn-icon-sm .icon{
    width: 2rem;
    height: 2rem;
}

.btn-custom.btn-icon .icon:before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    background-image: var(--img-icon);
}

.btn-custom.btn-icon .icon:after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    background-image: var(--img-icon);
    transform: translateX(-100%);
}

.btn-custom.btn-icon:hover .icon:before{
    animation: icon-before-animate .3s linear infinite;
}

.btn-custom.btn-icon:hover .icon:after{
    animation: icon-after-animate .3s linear infinite;
}


@keyframes icon-before-animate{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(100%);
    }
}

@keyframes icon-after-animate{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(0);
    }
}





/*===*/
.box-blog{
    border-radius: 0.75rem;
    background-color: #F3F3F3;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    overflow: hidden;
}

.box-blog .box-thumbnail{
    position: relative;
}

.box-blog .box-content{
    padding: 1rem;
    position: relative;
}

.box-blog .box-date{
    position: absolute;
    top: 0;
    left: 1rem;
    transform: translateY(-100%);
    background-color: #F3F3F3;
    padding: 0.25rem;
    font-size: 0.5rem;
    font-weight: 700;
    text-align: center;
    line-height: normal;
    color: #717171;
}

.box-date .date{
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    border-bottom: 1px solid #717171;
}

.box-date:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.375rem;
    background-color: var(--cl-x);
    transform: translateY(100%);
}


.box-blog .title{
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    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-blog .box-view-more{
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    --h-view: 1.75rem;
    z-index: 1;
    transition: all .3s ease-in-out;
}

.box-blog .box-view-more:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: var(--h-view);
    height: var(--h-view);
    background: var(--cl-gradient);
    border-radius: 50rem;
    transition: all .3s ease-in-out;
}

.box-blog .box-view-more .icon{
    width: var(--h-view);
    height: var(--h-view);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-blog .box-view-more:hover{
    color: #fff;
}

.box-blog .box-view-more:hover:after{
    width: calc(100% + var(--h-view) / 2);
}



/*===*/
.footer{
    color: #fff;
}

.footer .footer-top{
    padding-top: clamp(4rem, 3.4rem + 3vw, 7rem);
    padding-bottom: 1rem;
}

.footer .bg-cover{
    clip-path: url('#clip-path-footer');
}

.footer-bottom{
    background-color: #0055AC;
}

.footer a{
    color: #fff;
}

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

.title-footer{
    position: relative;
    margin-bottom: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    font-size: var(--fs-20);
    font-weight: bold;
}

.list-footer ul{
    list-style: none;
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
}

.list-footer ul li:before{
    content: "\f0da";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    margin-right: 0.25rem;
}

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

.list-footer ul li{
    transition: transform .2s ease-in-out;
}

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

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

.list-footer ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    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);
}


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

.social-contact .item{
    /*width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);*/
    /*height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);*/
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /*background-color: #fff;*/
    color: #fff;
    font-size: 1.5rem;
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 1.25rem;
    font-weight: 900;
}

.social-contact-footer .item:hover{
    /*animation: scale-icon 0.5s;
    background-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;
}

.coppyright a{
    color: inherit;
}

/*===*/
.form-footer .form-group{
}

.form-footer .form-control{
    padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
    border: 0;
    box-shadow: none !important;
    font-size: var(--fs-18);
}

.form-footer .form-control::placeholder{
    color: #969696;
}

.form-footer button{
    width: 100%;
    border: 0;
    background: var(--cl-gradient);
    text-transform: uppercase;
    color: #fff;
}


/*===*/
.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.box-iframe-contact iframe{
    /*height: 100%;*/
}

#contact-form{
    background-color: rgba(3, 73, 108, 0.05);
    border-radius: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    padding: clamp(1rem, 0.8rem + 1vw, 2rem);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#contact-form .form-control{
    padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
    border: 1px solid #D7D7D7;
    border-radius: 0.5rem;
    box-shadow: none !important;
    font-size: inherit;
}

#contact-form .g-recaptcha-contact{
    transform: scale(0.8);
    transform-origin: center;
}



/*=== Page Tin tức*/
.nav-child-category{
    display: inline-flex;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.25rem;
    background-color: #ECECF0;
    border-radius: 50rem;
}

.nav-child-category .nav-link{
    color: #000;
    font-size: var(--fs-18);
    border-radius: 50rem;
    transition: all .3s ease-in-out;
}

.nav-child-category .nav-link.active,
.nav-child-category .nav-link:hover{
    background-color: #fff;
}


.flag-cover-top{
    width: clamp(8rem, 4.6rem + 17vw, 25rem);
    top: 0;
    left: 0;
}

.flag-cover-bottom{
    width: clamp(12rem, 9.4rem + 13vw, 25rem);
    right: 0;
    bottom: 0;
}

.flag-cover-top-2{
    width: clamp(12rem, 8.4rem + 18vw, 30rem);
    left: 0;
    top: 0;
}

.flag-cover-bottom-2{
    width: clamp(12rem, 8.4rem + 18vw, 30rem);
    right: 0;
    bottom: 0;
}


.box-gallery{
    position: relative;
}

.box-gallery .box-thumbnail{
    overflow: hidden;
    border-radius: 0.75rem;
}

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

.box-gallery .box-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem;
}

.box-gallery .box-content .title{
    margin-bottom: 0;
    font-size: var(--fs-18);
    color: #fff;
}

.box-gallery:hover .box-thumbnail img{
    filter: blur(2px) brightness(0.8);
}



/*=== Page About*/
.box-video{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: inline-block;
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--cl-x);
    transition: all 2s cubic-bezier(.09,.68,.42,1.02);
    transform: translate(-50%, -50%);
    --speed: 2s;
}

.box-video:before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
    opacity: 0.8;
    animation: wave var(--speed) infinite ease-out;
    z-index: -1;
}

.box-video:after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
    opacity: 0.8;
    animation: wave var(--speed) infinite ease-out;
    animation-delay: .8s;
    z-index: -1;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: .8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.box-video:hover{
    transform: translate(-50%, -50%) scale(1.1);
}

.box-video:hover:before{
    --speed: 1s;
}

.wrapper-video-about{
    height: clamp(12.5rem, 10rem + 12.5vw, 25rem);
}



/*===*/
.box-icon-vm{
    --space: 8rem;
    --space-top: 2rem;
    position: relative;
    height: 100%;
    padding: 10%;
}

.box-icon-vm .top-icon{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.box-icon-vm .icon{
    width: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    height: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    flex-shrink: 0;
}

.box-icon-vm .title{
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    font-weight: 700;
}



/*===*/
.box-core-value{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.box-core-value .icon{
    width: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    height: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
}

.box-core-value .content{
    margin-top: 0.75rem;
    text-align: center;
}

.box-core-value .content .title{
    margin-bottom: 0.25rem;
    text-align: center;
    font-size: var(--fs-18);
    font-weight: 500;
}

.wrapper-slide-simple .service-prev:after,
.wrapper-slide-simple .service-next:after{
    font-size: 2rem;
}

.wrapper-slide-simple .service-prev{
    left: -3rem;
    color: #fff;
}

.wrapper-slide-simple .service-next{
    right: -3rem;
    color: #fff;
}


.gallery-about{
    --f-carousel-gap: 1rem;
    --f-carousel-slide-width: 20%;
    --f-carousel-slide-padding: 0;
}

.gallery-about img{
    transition: all .3s ease-in-out;
}

.gallery-about:hover img:not(img:hover){
    filter: brightness(0.8);
}



/*=== Trang đội ngũ*/
.box-info-staff{
    height: 100%;
    padding: 0.25rem;
    background: var(--cl-gradient);
    border-radius: 0.75rem;    
}

.box-info-staff .thumbnail{
    --bs-aspect-ratio: 120%;
    border-radius: 0.75rem;
    overflow: hidden;
}

.box-info-staff .content{
    padding: 0.5rem;
    text-align: center;
    color: #fff;
}

.box-info-staff .content .title{
    font-size: var(--fs-24);
    font-weight: 700;
}

.box-info-description{
    position: relative;
    background-color: #ffffff52;
    border-radius: 0.75rem;
    padding: 2.5rem;
    height: 100%;
}

.box-info-description:before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 5px;
    border-radius: inherit;
    background: linear-gradient(180deg,
    rgba(18, 173, 240, 1) 0%,
    rgba(39, 55, 150, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}



/*=== Trang chương trình*/
.box-requirement-visa{
    height: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    background-color: #fff;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}


/*===*/
.box-process-visa{
    display: flex;
    gap: clamp(2rem, 1.8rem + 1vw, 3rem);
    position: relative;
}

.box-process-visa .box-number{
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    background: var(--cl-gradient);
}

.box-process-visa .box-content{
    flex: 1;
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.box-process-visa:not(.col-box-process-visa:last-of-type .box-process-visa) .box-content:after{
    content: "";
    position: absolute;
    top: 4.25rem;
    left: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    width: 4px;
    height: calc(100% - 3rem);
    background: var(--cl-gradient);
    border-radius: 50rem;
}


.box-process-visa .box-content .icon{
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    flex-shrink: 0;
}

.box-process-visa .box-content .title{
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}


/*===*/
.box-priority-profession{
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    background-color: #fff;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}

.box-priority-profession .icon{
    width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
}

.box-priority-profession .content{
    flex: 1;
}

.box-priority-profession .title{
    margin-bottom: 0;
    font-size: 1.125rem;
}

.box-priority-profession:hover{
    background-color: #e9f8ff;
    transform: translateY(-0.5rem);
}


/*===*/
.box-advantage-visa{
    height: 100%;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem) clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    background-color: #fff;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}

.box-advantage-visa .title{
    font-size: var(--fs-20);
    font-weight: 600;
    color: var(--cl-x);
}

.box-advantage-visa:hover{
    transform: translateY(-0.5rem);
}




/*=== Trang Thời vụ*/
.blog-general-information{
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}

.blog-general-information .box-icon{
    width: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    height: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: #12ADF0;
}

.blog-general-information .box-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-general-information .box-content .title{
    margin-bottom: 0;
    font-size: var(--fs-24);
    color: var(--cl-x);
}

.blog-general-information .box-content .date{
    margin-top: auto;
    color: #717171;
}


/*===*/
.box-profession{
    height: 100%;
    padding: 1.5rem;
    border-radius: 0.875rem;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}

.box-profession .box-top{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.box-profession .box-top .icon{
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: var(--cl-x);
}

.box-profession .box-top .label{
    background-color: #D3EDF8;
    padding: 0.25rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: var(--cl-x);
}

.box-profession .box-bottom{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: normal;
}

.box-profession .box-bottom .title{
    margin-bottom: 0;
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    color: var(--cl-x);
}

.box-profession .box-bottom .date{
    margin-top: auto;
    color: #717171;
}

.box-profession:hover{
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.25rem);
}


/*===*/
.box-job{
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-width: 1px 1px 1px 4px;
    border-style: solid;
    border-color: var(--cl-x);
    border-radius: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    background-color: #fff;
}

.box-job .box-left{
    flex: 1;
}

.box-job .label-featured{
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
    border-radius: 0.25rem;
    background-color: #E80101;
    font-size: var(--fs-18);
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.box-job .title{
    font-size: var(--fs-24);
    font-weight: 600;
    color: var(--cl-x);
}

.box-job .meta{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    margin-top: 1rem;
}

.box-job .meta i{
    color: var(--cl-x);
}


.box-job .box-right .btn-outline-gray{
    border: 1px solid #CACACA;
    color: #424242;
}

.box-job .box-right .btn-outline-gray:hover{
    background-color: #424242;
    color: #fff;
}



/*=== Trang Đào tạo*/
.box-choose-us{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.box-choose-us .icon{
    width: 3rem;
    height: 3rem;
}

.box-choose-us .content{
    text-align: center;    
}

.box-choose-us .content .title{
    font-size: var(--fs-20);
    color: var(--cl-x);
}


/*===*/
.box-review{
    padding: clamp(2rem, 1.8rem + 1vw, 3rem) clamp(4rem, 3.8rem + 1vw, 5rem);
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.15);
    border-radius: 0.75rem;
}
.box-review .box-top{
    display: flex;
    gap: 1rem;
}

.box-review .box-top .box-humbnail{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
}

.box-review .box-infor .star{
    color: #FAD97F;
}

.box-review .box-infor .name{
    font-size: var(--fs-20);
    font-weight: 700;
}

.box-review .box-bottom{
    position: relative;
    margin-top: 1.5rem;
    color: #607D8B;
}

.box-review .box-bottom:before,
.box-review .box-bottom:after{
    content: "";
    position: absolute;
    width: 2rem;
    height: 2rem;
    background-image: url('/templates/images/dot-cover-review.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.box-review .box-bottom:before{
    left: 0;
    top: 0;
    transform: translate(-140%, -50%);
}

.box-review .box-bottom:after{
    right: 0;
    bottom: 0;
    transform: translate(100%) rotateZ(180deg);
}

.review-slide .swiper-slide{
    opacity: 0.5;
    transition-property: all;
}

.review-slide .swiper-slide-active{
    opacity: 1;
}

.review-swiper-pagination{
    bottom: -2rem !important;
}

.review-swiper-pagination .swiper-pagination-bullet{
    width: 0.75rem;
    height: 0.75rem;
    background-color: #fff;
}



/*===*/
.box-level{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem) clamp(1rem, 0.6rem + 2vw, 3rem);
    border-radius: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    background-color: #fff;
    text-align: center;
}

.box-level .title{
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: 700;
}

.box-level .description p{
    margin-bottom: 0.5rem;
}

.box-level .price{
    margin-top: auto;
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    font-weight: 700;
    color: #12ADF0;
}


.box-content-schedule table tr td{
    padding: 1rem;
    white-space: nowrap;
}

.box-content-schedule table tr td:nth-child(2) > span{
    background-color: #22D3EE;
    padding: 0.25rem 1rem;
    border-radius: 5rem;
    color: #fff;
}

.box-content-schedule table tr td:last-of-type a{
    padding: 0.5rem 1rem;
    background-color: #1E3A8A;
    color: #fff;
    border-radius: 0.5rem;
}



/*=== Trang Đất nước Đức*/
.wrapper-info-country{
    padding: 3rem 1.5rem;
    background-color: #F5F5F5;
}