:root{
    --cl-x: #ED0A6E;
    --cl-y: #0A96ED;
    --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: 40px;
}

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.375rem 1rem;
    border: 0;
    border-radius: 0.25rem;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
    transition: all .3s ease-in-out;
    vertical-align: middle;
    text-align: center;
}

.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-x-grd{
    background: linear-gradient(180deg, #ED0A6E 0%, #8D003E 100%);
    color: #fff;
}


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

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

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

.sub-title,
.main-title-cate h3{
    margin-bottom: 0;
    font-weight: 800;
    font-size: 2.5rem;
    color: rgba(30, 30, 30, 12%);
    line-height: 1;
}


/*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.25rem;
    padding-bottom: 0.25rem;
}

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

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

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

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

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

.navbar-nav .nav-item .nav-link:before{
    content: url('../images/icon-nav.svg');
    transition: all .15s ease-in-out;
    margin-right: 0.25rem;
}

.navbar-nav .nav-item .nav-link.active:before,
.navbar-nav .nav-item .nav-link:hover:before{
    filter: brightness(0) saturate(100%) invert(17%) sepia(82%) saturate(3664%) hue-rotate(320deg) brightness(96%) contrast(107%);
}

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

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

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

.navbar-fixed .logo{
    
}

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


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

.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;
    font-size:  clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
}

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


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

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

.swiper-pagination-bullet{
    width: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    height: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    background-color: #fff;
    border: 2px solid var(--cl-x);
    opacity: 1;
}

.swiper-pagination-bullet-active{
    background-color: var(--cl-x);
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    right: 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-title-main h1,
.box-title-main h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    position: relative;
}

.box-title-icon .label{
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--cl-x);
    border-radius: clamp(0.25rem, 0.225rem + 0.125vw, 0.375rem);
    color: #fff;
    font-size: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

.box-title-icon .title{
    color: var(--cl-x);
    font-weight: 800;
}

.box-title-icon .box-line{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.box-title-icon .box-line .line{
    display: inline-block;
    width: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    height: 1px;
    background-color: var(--cl-x);
}
.box-title-icon .shape{
    display: inline-block;
    width: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    height: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    background-image: url('../images/icon-title.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.box-title-icon.text-center .box-line{
    justify-content: center;  
}

.block-about-us{
    padding-bottom: clamp(3rem, 2rem + 5vw, 8rem);
}

.block-achievement{
    margin-top: -4%;
}

.wrapper-achievement{
    background-color: #FEF0D5;
    border-radius: 1.5rem;
    overflow: hidden;
}

.box-icon-achievement{
    padding: 15% 5%;
    text-align: center;
    color: #fff;
}

.box-icon-achievement .label-top{
    font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
    font-weight: 800;
}

.box-icon-achievement .label-bottom{
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.wrapper-achievement-right{
    position: relative;
    z-index: 1;
    background-color: var(--cl-x);
}

.wrapper-achievement-right:before{
    content: "";
    position: absolute;
    left: 1px;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: var(--cl-x);
    transform: translateX(-100%);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.wrapper-achievement-right:after{
    content: "";
    position: absolute;
    left: 1px;
    top: 50%;
    width: 100px;
    height: 80%;
    background-color: var(--cl-x);
    border-radius: 0.75rem;
    transform: translate(-50%, -50%) skewX(16deg);
    z-index: -1;
}

.partner-slide{
    padding: clamp(1rem, 0.8rem + 1vw, 2rem);
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background-color: #FAF9F9;
}

.box-img-partner{
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fff;
    cursor: pointer;
    transition: all 1s cubic-bezier(.3,.85,.29,.98);
}

.partner-slide .swiper-wrapper:hover .box-img-partner:not(.box-img-partner:hover){
    filter: brightness(0.8);
}

/*===*/
.box-question{
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.box-question + .box-question{
    margin-top: 0.5rem;
}

.box-question .box-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.box-question .box-left .number{
    width: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    height: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    padding: 1px;
    background: linear-gradient(180deg, #ED0A6E 0%, #8D003E 100%);
    border-radius: 50%;
}

.box-question .box-left .number .inner-number{
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(.3,.85,.29,.98);
}

.box-question .box-left .shape-line{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-question .box-left .line{
    flex: 1;
    width: 1px;
    background: linear-gradient(180deg, #ED0A6E 0%, #8D003E 100%);
}

.box-question .box-left .shape-line .dot{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.box-question .box-left .shape-line .dot:first-of-type{
    background-color: #ED0A6E;
}

.box-question .box-left .shape-line .dot:last-of-type{
    background-color: #8D003E;
}

.box-question .box-right{
    flex: 1;
    transition: all 1s cubic-bezier(.3,.85,.29,.98);
}

.box-question .box-right .title{
    font-size: var(--fs-18);
    font-weight: 700;
}

.box-question .box-right .content{
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E0E0E0;
}

.box-question:last-of-type .shape-line{
    display: none;
}

.box-question:last-of-type .box-right .content{
    border-bottom: 0;
}

.box-question:hover .box-left .number .inner-number{
    background-color: var(--cl-x);
    color: #fff;
}

.box-question:hover .box-right{
    transform: translateX(0.5rem);
}


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

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

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

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

.box-hover-zoom-out:hover .box-thumbnail img{
    transform: scale(1);
}

.wrapper-slide{
    position: relative;
} 

.swiper-button-next,
.swiper-button-prev{
    color: var(--cl-x);
    pointer-events: all;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size: 1.5rem;
}

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


/*===*/

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

.box-product{
    overflow: hidden;
}

.box-product .box-thumbnail{
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.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-action{
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.box-product .box-action .item{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-x);
    border-radius: 0.25rem;
    color: #fff;
    transform: translateX(150%);
    transition: all .3s cubic-bezier(.3,.85,.29,.98);
}

.box-product .box-action .item + .item{
    margin-top: 0.5rem;
}

.box-product .box-action .item:nth-child(2){
    transition: all .5s cubic-bezier(.3,.85,.29,.98);
}

.box-product .box-action .item:nth-child(3){
    transition: all .7s cubic-bezier(.3,.85,.29,.98);
}

.box-product:hover .box-action .item{
    transform: translateX(0%);
}

.box-product:hover .box-action .item:hover{
    transform: scale(1.2);
}


.box-product .box-content{
    margin-top: 0.75rem;
}

.box-product .box-title{

}

.box-product .title{
    margin-bottom: 0rem;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 600;
    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-blog{
    position: relative;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.box-blog .box-meta{
    display: flex;
    margin-bottom: 0.25rem;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
    transition: all .5s cubic-bezier(.3,.85,.29,.98);
}

.box-blog .box-meta .item + .item{
    margin-left: 1rem;
}

.box-blog .box-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(180deg, rgba(199, 24, 32, 0.00) 0%, #C71820 100%);
    color: #fff;
}

.box-blog .box-title{
    transition: all .7s cubic-bezier(.3,.85,.29,.98);
}

.box-blog .title{
    margin-bottom: 0;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .view-more{
    font-size: var(--fs-24);
    transition: all .7s cubic-bezier(.3,.85,.29,.98);
}

.box-blog:hover .box-meta{
    transform: translateY(-0.5rem);
}

.box-blog:hover .box-title{
    transform: translateY(-0.375rem);
}

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


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

.footer-center{
    font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
}

.footer-bottom{
    background-color: var(--cl-x);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer a{

}

.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: 1rem;
    font-size: var(--fs-20);
    font-weight: bold;
    color: var(--cl-x);
}

.list-footer ul{
    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: #000;
    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;
    transition: all .2s ease-out;
}

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

.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;
    color: #fff;
}

.coppyright a{
    color: #fff;
}

/**/
.form-contact-footer{
    display: flex;
    border-radius: 0.25rem;
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.form-contact-footer .form-control{
    flex: 1;
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
}

.form-contact-footer button{
    border-radius: 0.25rem;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}


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

#modalQuickView .btn-close{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    box-shadow: none !important;
    z-index: 1;
}