:root{
    --cl-x: #DC3D28;
    --cl-y:#F3D457;
    --cl-gray: #F5F5F5;
    --cl-pink: #FFF1E4;
    --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.3rem + 1vw, 2.5rem);

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

@font-face {
    font-family: 'Times New Roman';
    src: 
        url('../fonts/times-new-roman.woff') format('woff');
}

@font-face {
    font-family: 'Times New Roman';
    src: 
        url('../fonts/times-new-roman-bold.woff') format('woff');
        font-weight: bold;
}


body{
    background: var(--cl-pink);
    font-family: 'Times New Roman';
    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: 12px;
}
.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;
}
.text-x{
    color: var(--cl-x) !important;
}
.text-y{
    color: var(--cl-y) !important;
}
.text-gray{
    color: var(--cl-gray) !important;;
}
/*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;;
}
.bg-pink{
    background-color: var(--cl-pink) !important;
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    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-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-x: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);
}

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

.main-title-underline:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: calc((-1) * (clamp(0.5rem, 0.4rem + 0.5vw, 1rem) + 2px));
    width: 70px;
    height: 7px;
    background-color: var(--cl-x);

}

.main-title-underline:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: calc((-1) * clamp(0.5rem, 0.4rem + 0.5vw, 1rem) );
    width: 100%;
    height: 1px;
    background-color: var(--cl-x);
}

.main-title-underline.text-white:after{
    background-color: #fff;
}

.sub-title{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 32px;
}

/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--cl-x);
    z-index: 10;
}
.navbar>*{
    width: 100%;
    max-width: 100%;
}
.navbar-main{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-bottom{
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    animation: animate 1s;
    transition: all 2s ease-in-out;
    z-index: 30;
}

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

.navbar-brand{
    margin: 0;
    padding: 0;
}
.logo{
    width: 200px;
    transition: all .3s ease-in-out;
}

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

.navbar-nav{
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    /*gap: 1rem;*/
}
.navbar-nav .nav-item .nav-link{
    padding: 1rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a{
    color: #fff;
}

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

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

.navbar-nav .dropdown-menu .dropdown-item:hover{
    background-color: var(--cl-x);
    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-toggler{
    border: 2px solid var(--cl-y);
    box-shadow: none !important;
    color: var(--cl-y);
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.box-search-header select{
    max-width: 120px;
    padding: 0.3rem;
    outline: none;
    border-width: 0 1px 0 0;
    border-color: var(--cl-x);
    border-style: solid;
    background: transparent;
    color: var(--cl-x);
}
.box-search-header input{
    flex: 1;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    width: 100%;
    background-color: transparent;
    font-size: 14px;
}
.box-search-header button{
    padding: 0.3rem;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.btn-popup-search{
    border: 0;
    /*padding: 4px 8px;*/
    color: #fff;
    box-shadow: none !important;
    background-color: transparent;
}
.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: var(--cl-x);
    text-decoration: none;
    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);
}


/*============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.swiper-slide img {
    /*display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;*/
}


/*banenr-page*/
.banner-page{
    min-height: 200px
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.banner-page .bg-cover{
    filter: opacity(0.1);
}
.banner-page .title{
    display: inline-block;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--cl-x);
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    text-transform: uppercase;
    position: relative;
}

.banner-page .breadcrumb{
    margin-bottom: 0;
}
.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: var(--cl-x);
    font-weight: 600;
}
.banner-page .breadcrumb .breadcrumb-item.active{
    color: var(--cl-y);
}
.simple-breadcrumb{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.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 ============*/
.banner{  }

.banner .swiper-slide{
    position: relative;
}
.banner .swiper-slide .banner-slide{
    position: absolute;
    bottom: 7%;
    left: 20%;
    right: 20%;
}
.banner-slide h1{
    margin-bottom: 0;
    color: var(--cl-y);
    font-weight: bold;
    font-size: clamp(1.75rem, 1.475rem + 1.375vw, 3.125rem);
}
.banner .swiper-pagination-bullets{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.banner .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D9D9D9;
    opacity: 1;
    transition: .3s ease-in;
}
.banner .swiper-pagination-bullet-active{  }

.banner-next,
.banner-prev{
    font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    color: #fff;
}
.banner-next:after,
.banner-prev:after{
    content: "";
}


/*Home========================*/
.box-image-introduce{
    position: relative;
}

.box-title-main h1,
.box-title-main h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-36);
    position: relative;
}
/*.box-title-main h1:before,
.box-title-main h2:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background-color: var(--cl-x);
}*/

/**/
.icon-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0.5rem;
    transition: all .3s ease-in-out;
}
.icon-box .icon{
    width: 60px;
    height: 60px;
}
.icon-box .content{
    flex: 1;
}
.icon-box .title{
    margin-top: 1rem;
    margin-bottom: 0px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}
.icon-box.icon-box-vertical .icon{  }


/*===*/
.shake-animation{
    animation: shake-long 25s infinite;
}
@keyframes shake-long {
    0% { transform: translate(4px, 4px); }
    10% { transform: translate(-4px, -8px); }
    20% { transform: translate(-12px, 0px); }
    30% { transform: translate(12px, 8px); }
    40% { transform: translate(4px, -4px); }
    50% { transform: translate(-4px, 8px); }
    60% { transform: translate(-12px, 4px); }
    70% { transform: translate(12px, 4px); }
    80% { transform: translate(-4px, -4px); }
    90% { transform: translate(4px, 8px); }
    100% { transform: translate(4px, -8px); }
}

/*===*/
.card-hover-circle .thumbnail:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-100%, -100%);
    width: 100px;
    height: 100px;
    background-color: rgba(255 255 255 / 0.3);
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}
.card-hover-circle .thumbnail:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(100%, 100%);
    width: 100px;
    height: 100px;
    background-color: rgba(255 255 255 / 0.3);
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}
.card-hover-circle:hover .thumbnail:before,
.card-hover-circle:hover .thumbnail:after{
    transform: scale(7);
    opacity: 0;
}

.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.05);
}
.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: 40px;
    height: 40px;
    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: "";
}

.swiper-button-circle.hover-show-button .swiper-button-next,
.swiper-button-circle.hover-show-button .swiper-button-prev{
    opacity: 0;
}
.swiper-button-circle.hover-show-button:hover .swiper-button-next,
.swiper-button-circle.hover-show-button:hover .swiper-button-prev{
    opacity: 1;
}
.swiper-button-circle.hover-show-button:hover .swiper-button-disabled{
    opacity: 0.5;
}




/*===*/
.box-service-home{
    display: flex;
    flex-direction: column;
    position: relative;
}
.box-service-home:nth-child(odd){
    /*flex-direction: column-reverse;*/
}
.box-service-home .content{
    padding: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    background-color: var(--cl-x);
    color: #fff;
}
.box-service-home:nth-child(even) .content{
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, #DC3D28 0%, rgba(0, 0, 0, 0) 100%);
}
.box-service-home:nth-child(even) .thumbnail{
    height: 100%;
}
.box-service-home .description{
    color: #fff;
}
.box-service-home .view-more{
    margin-top: 1rem;
    color: #fff;
    text-decoration: underline;
}
.card-service{
    transition: all .3s ease-out;
}
.card-service .thumbnail{  }

.card-service .content{
    padding: 1rem;
    text-align: center;
}
.card-service .title{
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: var(--fs-20);
    transition: all .3s ease-out;
}
.card-service .description{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-service .btn-custom{
    margin-top: 1rem;
    padding: 0.25rem 0.5rem;
    font-size: var(--fs-14);
}
.card-service:hover .title{
    color: var(--cl-x);
}

.title-category{
    font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-category img{
    width: clamp(2rem, 1.8rem + 1vw, 3rem);
}


/**/
.card-category{
    transition: all .4s ease-in-out;
    overflow: hidden;
    position: relative;
}
.card-category .thumbnail{
    overflow: hidden;
    position: relative;
    border: 3px solid #fff;
    border-radius: 50%;
    margin-bottom: 1rem;
    padding: 20%;
}
.card-category .thumbnail img{
    transition: all .6s ease-in-out;
}
.card-category .title{
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: var(--fs-18);
    text-decoration: none;
}
.card-category:hover{
    transform: translateY(-5px);
}
.card-category:hover .thumbnail img{
    transform: rotateY(360deg);
}

/**/
.card-product{
    display: flex;
    gap: 0.75rem;
    position: relative;
}

.card-product .thumbnail{
    width: clamp(5rem, 4.5rem + 2.5vw, 7.5rem);
    height: clamp(5rem, 4.5rem + 2.5vw, 7.5rem);
    border-radius: 50%;
}

.card-product .content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.card-product .bottom-content{  }

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

.card-product .title{
    flex: 1;
    margin-bottom: 0;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: bold;
    color: var(--cl-x);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-price{
    display: flex;
    align-items: center;
    font-weight: 700;
}
.card-price .label-sale-price{
    color: var(--cl-x);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}
.card-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
}


/**/
.card-blog{  }

.card-blog .thumbnail{  }

.card-blog .content{
    margin-top: 1rem;
    position: relative;
}

.card-blog .title{
    margin-bottom: 0.5rem;
    height: clamp(2.625rem, 2.55rem + 0.375vw, 3rem);
    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{
    font-size: 15px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-blog .view-more{
    margin-top: 0.5rem;
    font-size: var(--fs-14);
    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);
    height: inherit;
}
.card-blog-vertical .content{
    flex: 1;
    padding: 0rem;
}
.card-blog-vertical .title{
    margin-bottom: 6px;
    font-size: 1rem;
    height: 38px;
}
.card-blog-vertical .description{
    font-size: 14px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-post-vertical{
    display: flex;
    flex-direction: column;
    /*gap: 1rem;*/
    border: 1px solid #ccc;
}
.list-post-vertical .card-blog-vertical{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}
.list-post-vertical a + a .card-blog-vertical{
    border-top: 1px solid #ccc;
}

.related-news .thumbnail{
    height: 150px;
}



/**/
.footer{
    position: relative;
    background-color: var(--cl-x);
    color: #fff;
}
.footer-bottom{
    background-color: #D03824;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.footer a{
    color: #fff;
    text-decoration: none;
}
.footer a:hover{
    color: var(--cl-y);
}
.footer p{
    margin-bottom: 0.7rem;
}
.logo-footer{
    width: clamp(8.75rem, 8rem + 3.75vw, 12.5rem);
}
.title-footer{
    position: relative;
    margin-bottom: 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 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;
    padding: 4px;
    /*border-radius: 50%;*/
    /*background-color: #929292;*/
    display: flex;
    justify-content: center;
    align-items: center;
    color: #909497;
    font-size: 20px;
    transition: all .2s ease-out;
}
.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: #909497;
}


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


@keyframes shake {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

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

.list-information ul li{
    display: flex;
    align-items: baseline;
}

.copyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    color: #d8d1d1;
}
.copyright a{
    color: #d8d1d1;
}
/**/
.form-booking-footer .form-control{
    padding: 0.75rem 1rem;
    border: 1px solid #fff;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}
.form-booking-footer button{
    width: 100%;
    height: 100%;
    color: var(--cl-x);
    font-weight: 700;
}
.form-booking-footer .form-control::placeholder{
    color: #fff;
}

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


.box-video{
    position: relative;
    transition: all .3s ease-in-out;
}
.box-video:after{
    content: "\f04b";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(3.125rem, 2.75rem + 1.875vw, 5rem);
    height: clamp(3.125rem, 2.75rem + 1.875vw, 5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--cl-x);
    border-radius: 50%;
    font-weight: bold;
    color: var(--cl-x);
    font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
}
.box-video:hover{
    filter: brightness(0.9);
}


.quote-next:after,
.quote-prev:after{
    content: "";
}
.quote-next,
.quote-prev{
    width: 30px;
    height: 30px;
    border: 1px solid var(--cl-x);
    border-radius: 50%;
    color: var(--cl-x);
}
/*.quote-next{
    right: -30px;
}
.quote-prev{
    left: -30px;
}*/

.box-quote{
    padding: 1rem 2rem;
    text-align: center;
    font-style: italic;
}
.box-quote .title{
    margin-bottom: 0;
    margin-top: 1rem;
    font-weight: 500;
}


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

.product-next,
.product-prev{
    width: 30px;
    height: 30px;
    border: 1px solid var(--cl-x);
    border-radius: 50%;
    color: var(--cl-x);
}

.product-next{
    right: calc((-1) * clamp(0rem, -0.4rem + 2vw, 2rem));
}
.product-prev{
    left: calc((-1) * clamp(0rem, -0.4rem + 2vw, 2rem));
}

.box-product .content{
    padding: 1rem;
    text-align: center;
}
.box-product .title{
    margin-bottom: 0;
    font-weight: 600;
    font-size: var(--fs-18);
}


.form-booking .form-control{
    padding: 1rem;
    border-radius: 0.25rem;
    box-shadow: none !important;
    background-color: #FFF1E4;
}

.form-booking button{
    width: 100%;
    height: 100%;
    border-radius: 0.25rem;
    background-color: #000;
    color: var(--cl-x);
    font-size: var(--cl-x);
}


.row-block-service + .row-block-service{
    margin-top: 1.5rem;
}