:root{
    --cl-x: #ff123f;
    --cl-y: #32324F;
    --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.5rem, 1.4rem + 0.5vw, 2rem);

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

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


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: rgba(218, 25, 128, 0.05) !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: 50rem;
    line-height: 2;
    font-weight: 700;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    position: relative;
    transition: all .3s ease-in-out;
    vertical-align: middle;
    box-shadow: #B00862 0px 3px 0px;
}

.btn-custom:hover{
    box-shadow: #B00862 0px 3px 4px;
}

.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-gray{
    background-color: #303029;
    color: #fff;
    border: 1px solid #303029;
}

.btn-gray:hover{
    background-color: #000;
}

.btn-outline-x{
    border: 2px solid var(--cl-x);
    background-color: transparent;
    color: var(--cl-x);
}

.btn-outline-x:hover{
    background-color: var(--cl-x);
    color: #fff;
}

.btn-outline-y{
    border: 2px solid var(--cl-y);
    background-color: transparent;
    color: var(--cl-y);
}

.btn-outline-y:hover{
    background-color: var(--cl-y);
    color: #fff;
}

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

.block{
    padding: var(--py-content) var(--px-content);
    overflow: hidden;
}

.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.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: 32px;
}

.box-shape-title{
    border-bottom: 1px solid var(--cl-x);
}
.box-shape-title .title{
    display: inline-block;
    margin-bottom: 0;
    padding: 0.5rem;
    background-color: var(--cl-x);
    color: #fff;
}


/*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;
    background-color: var(--cl-x);
    color: #fff;
    font-size: var(--fs-14);
}

.navbar-top .name-company{
    font-weight: 700;
}

.navbar-main{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #fff;
}

.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;
    /*gap: 0.5rem;*/
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: var(--fs-14);
    position: relative;
}

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

.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{
    padding: 0.5rem;
}

.navbar-nav .dropdown-menu .dropdown-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    white-space: normal;
}

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

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

.navbar-nav .nav-item.dropdown .dropdown-menu{
    animation: menu 0.3s;
}

.navbar-nav .dropdown:hover > .dropdown-menu{
    display: block;
}

.navbar-nav .dropdown .dropdown-menu .dropdown .dropdown-menu{
    top: 0;
    left: 98%;
}

@keyframes menu {
    0% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}

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

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

.navbar-fixed .logo{
    width: 100px;
}

.btn-booking-header{
    padding: 0.25rem 1.5rem;
}

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

#bookingchModal .wrapper-booking{
    padding: 5%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 1rem;
}

#bookingchModal .btn-close{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background-color: var(--cl-y);
    background-image: none;
    box-shadow: none;
    border-radius: 0 0 0 0.5rem;
    color: #fff;
    opacity: 1;
}

.form-booking .form-control{
    box-shadow: none !important;
}

.form-booking .form-control:focus{
    border-color: var(--cl-y);
}

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



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


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

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

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: var(--px-content);
    left: var(--px-content);
    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);
}

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

.h2-shadown h2{
    text-shadow: 2px 0px 0px var(--cl-x);
}

.box-video{
    position: relative;
    overflow: hidden;
}

.box-video:after{
    content: "\f04b";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    font-weight: bold;
    font-size: var(--fs-24);
    cursor: pointer;
    pointer-events: none;
    transition: all .4s ease-in-out;
}

.box-video:hover:after{
    border-color: var(--cl-x);
    background-color: var(--cl-x);
}

.box-video img{
    transition: all .4s ease-in-out;
    transform: scale(1.1);
}
.box-video:hover img{
    filter: brightness(0.5);
    transform: scale(1);
}

/*===*/
.icon-box{
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 2rem 1rem;
    transition: all .3s ease-in-out;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.icon-box .icon{
    width: 4.5rem;
    height: 4.5rem;
}

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

.icon-box .title{
    margin-bottom: 0.5rem;
    font-size: var(--fs-24);
    text-align: center;
}

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

/*===*/
.block-achievement{
    margin-top: -2.5rem;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.group-box-counter{
    padding: 2% 0;
    border-radius: 1.5rem;
    background-color: var(--cl-x);
}

.icon-box-counter{
    padding: 5%;
    color: #fff;
    text-align: center;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    line-height: 1.2;
}

.icon-box-counter .label-counter{
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    font-weight: 700;
}


/*===*/
.icon-choose-us .top-icon{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

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

.icon-choose-us .title{
    font-weight: 700;
    font-size: var(--fs-18);
}

.icon-choose-us .content{
    text-align: justify;
}

/*===*/
.teacher-prev,
.teacher-next{
    width: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

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

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

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



.card-teacher{
    height: 100%;
    cursor: pointer;
    border-radius: 0.5rem;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.card-teacher .thumbnail{
    --bs-aspect-ratio: 120%;
}

.card-teacher .thumbnail:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -1px;
    background-image: url('../images/cover-card-teacher.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.card-teacher .content{
    height: 100%;
    padding: 1rem;
    background-color: #fff;
}

.card-teacher .title{
    color: var(--cl-x);
    text-align: center;
    font-size: var(--fs-20);
    font-weight: 700;
}


/*===*/
.grid-wrapper > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper {
    display: grid;
    grid-gap: clamp(0.375rem, 0.3rem + 0.375vw, 0.75rem);
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    grid-auto-rows: clamp(5rem, 2.875rem + 10.625vw, 15.625rem);
    grid-auto-flow: dense;
}

.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-image .grid-item-image:nth-child(1),
.grid-image .grid-item-image:nth-child(7),
.grid-image .grid-item-image:nth-child(8){
    grid-column: span 2; 
}

.grid-image .grid-item-image:nth-child(2){
    grid-row: span 2; 
}

.grid-image .grid-item-image{
    cursor: pointer;
}

.grid-image img{
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.grid-image:hover img:not(:hover){
    filter: brightness(0.8);
}


/*===*/
.card-sutdent .thumbnail{
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0px 2px 4px 0px rgba(218, 25, 128, 0.25);
}

.card-sutdent .thumbnail img{
    transition: all .3s ease-in-out;
}

.card-sutdent .content{
    padding: 1rem;
}

.card-sutdent .description{
    position: absolute;
    inset: 0rem;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all .3s ease-in-out;
}

.card-sutdent .title{
    margin-bottom: 0;
    text-align: center;
    font-size: var(--fs-20);
}

.card-sutdent:hover img{
    filter: blur(10px);
}

.card-sutdent:hover .description{
    opacity: 1;
}


/*===*/
.card-review{
    height: 100%;
    padding: 5% 0 5% 8%;
    border-radius: 1.5rem;
    background-color: var(--cl-x);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all .2s ease-in-out;
    color: #fff;
}

.card-review .card-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.card-review .thumbnail{
    width: clamp(8rem, 7.6rem + 2vw, 10rem);
    height: clamp(8rem, 7.6rem + 2vw, 10rem);
    border-radius: 50%;
    overflow: hidden;
}

.card-review .card-name{
    width: 60%;
    font-size: var(--fs-20);
    font-weight: 700;
    text-align: center;
}

.card-review .label-name{
    margin-bottom: 0.5rem;
    padding: 0.5rem 5rem;
    border-radius: 50rem 0 0 50rem;
    background-color: rgba(218, 25, 128, 0.05);
}

.card-review .card-bottom{
    margin-top: 1rem;
    padding-right: 8%;
}

.review_show .swiper-slide-shadow{
    display: none;
}

.review_show .swiper-slide{
    padding: 1rem;
}

.review_show .swiper-slide-active .card-review{
    background-color: #fff;
    color: #000;
}


.box-children{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 1rem;
    font-size: var(--fs-20);
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.box-children .thumbnail{
    width: clamp(6rem, 5.8rem + 1vw, 7rem);
    height: clamp(6rem, 5.8rem + 1vw, 7rem);
    border-radius: 50%;
    overflow: hidden;
    border: 0.5rem solid transparent;
    transition: all .3s ease-in-out;
}

.box-children .name{
    transform: translateX(-1.5rem);
    opacity: 0;
    transition: all .5s ease-in-out;
}

.box-children .thumbnail:hover,
.review_thumb .swiper-slide-active .thumbnail{
    border: 0.5rem solid #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.review_thumb .swiper-slide-active .name{
   transform: translateX(0);
   opacity: 1; 
}

/*===*/
.card-hover-zoom .thumbnail,
.card-hover-zoom-long .thumbnail{
    overflow: hidden;
}

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

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

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

.swiper-button-circle .swiper-button-next,
.swiper-button-circle .swiper-button-prev{
    width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    background-color: #fff;
    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);
    opacity: 1;
    transition: all .3s ease-in-out;
    pointer-events: all;
}
.swiper-button-circle .swiper-button-next:after,
.swiper-button-circle .swiper-button-prev:after{
    content: "";
}


/*===*/
.product-slide .swiper-slide{
    height: calc((100% - 30px) / 2) !important;
}

.card-product{
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.card-product .thumbnail{
    border-radius: 1.5rem;
    overflow: hidden;
}
.card-product .thumbnail img{
    transition: all .5s ease-in;
}
.discount-percent{  }

.card-product .content{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.card-product .title{
    margin-bottom: 0rem;
    height: 2.5rem;
    font-size: 1rem;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

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

.cart-group-action{
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.75rem;
}
.cart-group-action [class*='item-']{
    background-color: #ccc;
    width: 2rem;
    height: 2rem;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.cart-group-action [class*='item-'],
.cart-group-action [class*='item-'] a{
    color: var(--cl-x);
}

.cart-group-action [class*='item-']:hover{
    color: #fff;
    background-color: var(--cl-x);
}
.cart-group-action [class*='item-']:hover a{
    color: #fff;
}

/*===*/
.card-course{
    padding: 0.5rem;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}

.card-course .content{
    margin-top: 0.5rem;
    padding: 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.card-course .title{
    margin-bottom: 0;
    font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
    font-weight: 700;
    color: var(--cl-x);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-course .description{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-course .view-more{
    margin-top: auto;
    padding: 0.25rem 1.25rem;
    font-weight: 500;
}

.card-course:hover{
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
}


/*===*/
.card-blog .thumbnail{
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    overflow: hidden;
}
.card-blog .content{
    margin-top: 0.5rem;
}

.card-blog .title{
    margin-bottom: 0.25rem;
/*    height: 44px;*/
    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;
}

.card-blog .description{
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-blog .view-more{
    margin-top: 0.5rem;
    font-size: var(--fs-18);
    color: var(--cl-x);
    text-decoration: underline;
}

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

.card-blog-vertical{
    display: flex;
    gap: 1rem;
}

.card-blog-vertical .thumbnail{
    width: clamp(8.125rem, 7.75rem + 1.875vw, 10rem);
    border-radius: 0.75rem;
}

.card-blog-vertical .content{
    flex: 1;
    padding: 0rem;
}

.card-blog-vertical .title{
    margin-bottom: 6px;
}

.card-blog-vertical .description{
    font-size: 14px;
    text-align: justify;
}

.list-post-vertical{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/*===*/
.card-gallery{
    display: block;
    position: relative;
}

.card-gallery .title{
    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);
}
.card-gallery:hover .title{
    opacity: 1;
    transform: scale(1);
}

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

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


/**/
.footer{
    position: relative;
    background-color: var(--cl-x);
    color: #fff;
    font-size: 1rem;
}

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


.footer-bottom{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid #fff;
}

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

.footer a:hover{
    color: #fff;
}

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

.logo-footer{
    width: clamp(8.75rem, 8rem + 3.75vw, 12.5rem);
}

.title-footer{
    position:1 relative;
    margin-bottom: 1.25rem;
    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 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: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-radius: 50rem;
    background-color: #fff;
    color: var(--cl-x);
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: var(--cl-x);
}

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


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

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