:root{
    --cl-x: #DB1010;
    --cl-y: #0C0975;
    --cl-gray: #F5F5F5;
    --fs-12: 12px;
    --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: 50px;
}

body{
    font-family: "Inter", 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-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.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-weight: 600;
    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-grd{
    background: linear-gradient(93deg, #DB1010 0%, #0C0975 100%);
    color: #fff;
    border: 0;
}

.btn-outline-grd{
    padding: 1px !important;
}

.btn-outline-grd .inner-button{
    display: block;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border-radius: 2px;
    
}

.btn-outline-grd span{
    background: linear-gradient(93deg, #DB1010 0%, #0C0975 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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 center;
    background-size: cover;
}

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

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

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

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

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

.sub-title{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 10;
}

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

.navbar-top{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background-color: var(--cl-x);
    color: #fff;
    font-size: var(--fs-14);
}

.navbar-main{
    padding-top: 0;
    padding-bottom: 0;
    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%;
    align-items: center;
}

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

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

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

/*===*/
.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{
    min-width: 2rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.navbar-toggler{
    margin-left: 0.5rem;
}

.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{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background-color: var(--cl-x);
    border: 0;
    border-radius: 50%;
    box-shadow: none !important;
    color: #fff;
}

.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{
    padding-left: 0.25rem;
    color: #000;
}

.translate .lang-item + .lang-item{
    border-left: 1px solid #000;
}

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


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

/*banenr-page*/
.banner-page{
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.row-img-banner{
    margin-bottom: -5%;
}

.wrapper-img-banner{
    clip-path: url(#clip-path-banner-page);
}

.row-icon-banner{
    position: relative;
    z-index: 1;
}

.box-icon-banner{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-icon-banner .box-icon-top{
    width: 40%;
    background-color: #ccc;
    border: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem) solid #fff;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
}

.box-icon-banner .box-icon-top .inner-icon-top{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.box-icon-banner .box-icon-top .icon{
    width: 50%;
}

.box-icon-banner .box-icon-top .number{
    font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
    font-weight: 800;
    color: var(--cl-x);
}


.box-icon-banner .box-icon-bottom{
    text-align: center;
}


.simple-breadcrumb{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #EEEEEE;
}

.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: #898989;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}

.simple-breadcrumb .breadcrumb-item.active{
    color: var(--cl-x);
}


/*===*/
.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{
    color: #fff;
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    font-size: clamp(1rem, 0.7rem + 1.5vw, 2.5rem);
}


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

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

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3%;
    border: 2px solid #fff;
}

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

/*Home========================*/

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

.box-content-main-title h3{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.icon-box-achievement{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-box-achievement .icon{
    width: clamp(4rem, 3.8rem + 1vw, 5rem);
    height: clamp(4rem, 3.8rem + 1vw, 5rem);
}

.icon-box-achievement .content{
    flex: 1;
    line-height: 1.2;
}

.icon-box-achievement .title{
    margin-bottom: 0.25rem;
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    font-weight: 700;
    color: var(--cl-x);
    line-height: 1;
}

/*===*/
.col-about-slide{
    --radius: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
    border-radius: var(--radius);
    overflow: hidden;
}

.wrapper-about-slide{
    width: 90%;
}

.about-slide,
.about-slide-cover{
    border-radius: var(--radius);
    overflow: hidden;
}

.about-slide-cover{
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(102%);
    opacity: 0.5;
}

.about-slide .swiper-wrapper .swiper-slide:first-child{
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    overflow: hidden;
}

.about-slide .swiper-wrapper .swiper-slide:last-child{
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    overflow: hidden;
}

/*===*/
.box-main-title{
    text-align: center;
    color: var(--cl-x);

}

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

.box-main-title h2{
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
}


.box-main-title h2:before,
.box-main-title h2:after{
    content: "";
    position: absolute;
    top: 50%;
    width: 1rem;
    height: 1rem;
    background-image: url('../images/h2-cover.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.box-main-title h2:before{
    left: 0;
    transform: translate(-120%, -50%) rotateY(180deg);
}

.box-main-title h2:after{
    right: 0;
    transform: translate(120%, -50%);
}


/*===*/
.box-icon-program{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.box-icon-program .icon{
    --icon-width: 3rem;
    width: var(--icon-width);
    height: var(--icon-width);
}

.box-icon-program .content{
    flex: 1;
}

.box-icon-program .content .title{
    font-weight: 700;
}

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

/*===*/
.box-study-abroad{
    height: 100%;
    padding: clamp(0.375rem, 0.3rem + 0.375vw, 0.75rem);
    background-color: #FFF6F7;
    border: 1px dashed var(--cl-y);
    border-radius: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
    transition: all .3s ease-in-out;
}

.box-study-abroad .box-thumbnail{
    position: relative;
    border-radius: clamp(0.5rem, 0.425rem + 0.375vw, 0.875rem);
    overflow: hidden;
}

.box-study-abroad .box-thumbnail img{
    transition: all .5s cubic-bezier(.06,.42,.49,.99);
    transform: scale(1.1);
}

.box-study-abroad .box-content{
    margin-top: 0.75rem;
    padding: 0 0.5rem;
}

.box-study-abroad .box-title .title{
    margin-bottom: 0.25rem;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 700;
    transition: all .5s cubic-bezier(.06,.42,.49,.99);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-study-abroad .box-excerpt{
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s cubic-bezier(.06,.42,.49,.99);
}

.box-study-abroad .box-view-more{
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--cl-x);
    color: #fff;
    font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
}

.box-study-abroad:hover .box-view-more i{
    animation: animation-icon-view 0.75s infinite;
}

@keyframes animation-icon-view{
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(0.25rem);
    }
    100%{
        transform: translateX(0);
    }
}

.box-study-abroad:hover{
    border-color: var(--cl-x);
}

.box-study-abroad:hover .box-thumbnail img{
    transform: scale(1);
}

.box-study-abroad:hover .box-title .title{
    transform: translateY(-0.25rem);
    color: var(--cl-x);
}

.box-study-abroad:hover .box-excerpt{
    transform: translateY(-0.125rem);
}


/*===*/
.wrapper-review-slide-top{
    position: absolute;
    left: 50%;
    right: 50%;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: 50%;
    transform: translateX(-50%);
}

.wrapper-review-slide-top .review-slide-top{
    border-radius: 1.25rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.wrapper-review-slide-top .review-slide-top .swiper-pagination-bullet{
    background-color: var(--cl-x);
}

.wrapper-review-slide-bottom{
    display: flex;
    gap: 1.5rem;
    margin-left: -30%;
    margin-right: -30%;
    opacity: 0.5;
}

.wrapper-review-slide-bottom .swiper-slide-active{
    opacity: 0;
}

.wrapper-review-slide .review-slide:first-child,
.wrapper-review-slide .review-slide:last-child{
    opacity: 0.5;
}

.box-review{
    position: relative;
    padding: clamp(2rem, 1.6rem + 2vw, 4rem) clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    z-index: 1; 
}

.box-review .box-top-review{
    display: flex;
    align-items: center;
    gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    margin-bottom: 0.5rem;
    padding-left: clamp(2rem, 1.8rem + 1vw, 3rem);
    padding-right: clamp(2rem, 1.8rem + 1vw, 3rem);
}

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

.box-review .box-top-review .box-title{
    flex: 1;
}

.box-review .box-top-review .rate{
    margin-bottom: 0.5rem;
    color: #FAD97F;
}

.box-review .box-top-review .title{
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

.box-bottom-review{
    display: flex;
}

.box-bottom-review .content{
    flex: 1;
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    color: #607D8B;
    text-align: center;
    font-family: "Lato", sans-serif;
}

.box-bottom-review svg{
    width: clamp(1.375rem, 1.175rem + 1vw, 2.375rem);
}

.box-bottom-review svg:last-of-type{
    align-self: flex-end;
}


/*===*/
.block-form-register-admission .box-main-title h3,
.block-form-register-admission .box-main-title h2{
    margin-left: 1rem;
}

.wrappper-form{
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.form-register-admission .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    border: 1px solid #FFF;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: none !important;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

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


/*===*/
.box-blog{
    height: 100%;
    padding: clamp(0.375rem, 0.3rem + 0.375vw, 0.75rem);
    background-color: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
}
.box-blog .box-thumbnail{
    position: relative;
    border-radius: clamp(0.5rem, 0.425rem + 0.375vw, 0.875rem);
}

.box-blog .box-badge{
    position: absolute;
    left: 1rem;
    bottom: 0;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
    background-color: var(--cl-x);
    color: #fff;
    font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
}

.box-blog .box-content{
    margin-top: 0.75rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.box-blog .box-title{

}

.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;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    line-height: 1.3;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .box-view-more{
    font-style: italic;
    color: var(--cl-x);
}

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


/*===*/
.box-img-partner{
    padding: 0.75rem;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
}

.wrapper-partner-slide .swiper-button-next,
.wrapper-partner-slide .swiper-button-prev{
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.wrapper-partner-slide .swiper-button-next{
    right: -2rem;
    background-image: url('../images/next.svg');
}

.wrapper-partner-slide .swiper-button-prev{
    left: -2rem;
    background-image: url('../images/prev.svg');
}

.wrapper-partner-slide .swiper-button-next:after,
.wrapper-partner-slide .swiper-button-prev:after{
    content: "";
}


/*===*/
.box-product{
    overflow: hidden;
}

.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{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

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

.box-product .title{
    margin-bottom: 0rem;
    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;
    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-product: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;
    color: #fff;
    font-weight: 300;
}

.footer-bottom{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #C70000;
}

.logo-footer{
    border-radius: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    background-color: #fff;
}

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

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

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

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

.list-footer ul{
    list-style-image: url('../images/icon-list.svg');
    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: #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);
}

.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: 4px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

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

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

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

.coppyright{
    font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
    font-weight: 300;
    text-align: center;
}

/**/
.form-contact-footer{
    display: flex;
    background-color: #fff;
    border-radius: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    overflow: hidden;
}

.form-contact-footer .form-control{
    padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
    box-shadow: none !important;
    border: 0;
    background-color: transparent;
}

.form-contact-footer button{
    padding-left: 2rem;
    padding-right: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}


/*===*/
.box-icon-contact{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    border: 1px solid #BBB9B9;
    background-color: #fff;
    text-align: center;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.box-icon-contact .top-icon{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.box-icon-contact .title{
    font-size: var(--fs-20);
    font-weight: 700;
    color: #8D8D8D;
}



.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}

.box-iframe-contact,
.box-iframe-contact iframe{
    height: 100%;
}

#contact-form{
    padding: clamp(2rem, 1.8rem + 1vw, 3rem);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: -4px 0px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#contact-form .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    box-shadow:none !important;
    border: 1px solid #D9D9D9;
    border-radius: clamp(0.375rem, 0.3rem + 0.375vw, 0.75rem);
    background: #FFF;
}


/*===*/
.box-core-value-mission{
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
}

.box-core-value-mission .inner-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 10%;
}

.box-core-value-mission .icon{
    margin-bottom: 0.5rem;
    width: 20%;
}

.box-core-value-mission .title{
    font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
    font-weight: 700;
    color: var(--cl-x);
}

.box-core-value-mission.box-1{
    z-index: 1;
    position: relative;
}

.box-core-value-mission.box-1 .inner-icon{
    clip-path: url(#clip-path-core-value-mission);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-top: 15%;
    padding-bottom: 15%;
    z-index: 2;
}


#tab-teaching{
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 0;
}

#tab-teaching .nav-link{
    padding: 0.5rem 2rem;
    border: 0;
    border-radius: 0.5rem;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    color: #000;
    font-weight: 600;
}

#tab-teaching .nav-link.active{
    background-color: var(--cl-x);
    color: #fff;
}

.box-info-teaching{
    background-color: var(--cl-x);
    border-radius: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    overflow: hidden;
}

.box-info-teaching .box-thumbnail{
    border-radius: 0.5rem;
    overflow: hidden;
}

.box-info-teaching .inner-thumbnail{
    --bs-aspect-ratio: 120%;
}

.box-info-teaching .box-content{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    text-align: center;
    color: #fff;
}

.box-info-teaching .box-content .label-title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 500;
}

/*===*/
.wrapper-form-look-up{
    position: relative;
}

.wrapper-form-look-up .wrapper-form-input{
    display: flex;
    background: rgba(200, 200, 200, 0.32);
    backdrop-filter: blur(2.6500000953674316px);
}

.wrapper-form-look-up .wrapper-form-input .form-control{
    flex: 1;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
}

.wrapper-form-look-up .wrapper-form-input .form-control::-webkit-inner-spin-button,
.wrapper-form-look-up .wrapper-form-input .form-control::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Loại bỏ mũi tên trên Firefox */
.wrapper-form-look-up .wrapper-form-input .form-control {
    -moz-appearance: textfield;
}

.wrapper-form-look-up .wrapper-form-input .btn-custom{
    padding-left: 2rem;
    padding-right: 2rem;
}

.wrapper-form-look-up .wrapper-form-results{
    /*position: absolute;
    left: 0;
    right: 0;*/
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.25rem;
    background-color: #fff;
    box-shadow: 0px 0px 28.2px 0px rgba(0, 0, 0, 0.15);
}

.wrapper-form-look-up .wrapper-form-results table{
    width: 75%;
}

.dots {
    display: inline-block;
   width: 40px;
   height: 19.2px;
   background: radial-gradient(circle closest-side,#db1010 90%,#0000) 0%   50%,
          radial-gradient(circle closest-side,#db1010 90%,#0000) 50%  50%,
          radial-gradient(circle closest-side,#db1010 90%,#0000) 100% 50%;
   background-size: calc(100%/3) 9.6px;
   background-repeat: no-repeat;
   animation: dots-7ar3yq 1s infinite linear;
}

@keyframes dots-7ar3yq {
   20% {
      background-position: 0%   0%, 50%  50%,100%  50%;
   }

   40% {
      background-position: 0% 100%, 50%   0%,100%  50%;
   }

   60% {
      background-position: 0%  50%, 50% 100%,100%   0%;
   }

   80% {
      background-position: 0%  50%, 50%  50%,100% 100%;
   }
}