:root{
    --cl-x: #FC0105;
    --cl-y: #ffd400f5;
    --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.5rem;
    line-height: 1.5;
    font-weight: 500;
    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;
}

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

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


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

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

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

.navbar-main{
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--cl-x);
}

.navbar-fixed{
    position: fixed;
    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;
    gap: 1.5rem;
}

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

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

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

/*===*/
.navbar-nav .dropdown-menu .dropdown-item{
    padding: 0.375rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.navbar-nav .toggle-menu{
    margin-left: 0.5rem;
}

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

.logo{
    width: 80%;
    transition: all .3s ease-in-out;
}

.box-content-header{
    text-align: center;
    color: var(--cl-x);
}


.box-img-header{
    position: relative;
    z-index: 1;
}

.box-img-header:after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--cl-x);
    transform: translateX(-10px);
    clip-path: url("#clip-path-img-header");
}

.box-img-header .inner-img{
    clip-path: url('#clip-path-img-header');
}  

.box-header-hotline{
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 4rem;
    background: linear-gradient(90deg, #ffffff00 0%, #FF8385 23.08%, #FC0105 50%, #FF8385 72.6%, #ffffff00 100%);
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-weight: 700;
    font-size: var(--fs-18);
}

.navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    margin-left: 0;
    align-items: center;
    border: 2px solid var(--cl-x);
    box-shadow: none !important;
    color: var(--cl-x);
}

.box-search-header{
    display: flex;
    width: 100%;
    padding: 0.125rem;
    border: 0;
    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);
}

.nav-item .box-search-header{
    padding: 2px;
}

.nav-item .box-search-header button{
    width: 2rem;
    height: unset;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0 5rem 5rem 0;
}

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

.banner-page .breadcrumb .breadcrumb-item.active{
    color: #fff;
}

.simple-breadcrumb{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f4f4f4;
}
.simple-breadcrumb .breadcrumb{
    flex-wrap: none;
    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.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.simple-breadcrumb .breadcrumb-item.active{
    color: var(--cl-x);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*===*/
.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{
    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);
    transition: all .3s ease-in-out;
    pointer-events: all;
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    color: var(--cl-x);
    font-size: 1rem;
}


/* 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========================*/
.main-title{
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
    text-transform: uppercase;
    position: relative;
}

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


.line-cover-title{
    text-align: center;
}

.line-cover-title .inner-line{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.325rem;
    margin-top: 0.5rem;
    position: relative;
}

.line-cover-title .dot{
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--cl-x);
}

.line-cover-title .dot:nth-child(2){
    width: 0.75rem;
    height: 0.75rem;
}

.line-cover-title .inner-line:before,
.line-cover-title .inner-line:after{
    content: "";
    position: absolute;
    top: 50%;
    width: 4rem;
    height: 1px;
    background-color: var(--cl-x);
    border-radius: 50%;
}

.line-cover-title .inner-line:before{
    left: 0;
    transform: translate(-120%, -50%);
}

.line-cover-title .inner-line:after{
    right: 0;
    transform: translate(120%, -50%);
}


.box-content-about ul{
    list-style: "\f058\00A0\00A0";
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
    position: relative;
}

.box-content-about ul:after{
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background-color: var(--cl-x);
}


.box-content-about ul li::marker{
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    color: var(--cl-x);
}


/*====*/
.box-service{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.box-service .box-thumbnail{
    border-radius: 1.5rem 1.5rem 0 0;
}

.box-service .box-content{
    flex: 1;
    position: relative;
    z-index: 1;
    margin-top: -2rem;
    margin-left: 2rem;
    padding: 1rem;
    background-color: #F5F5F5;
    transition: all .3s ease-in-out;
}

.box-service .box-content .title{
    margin-bottom: 0.25rem;
    font-size: var(--fs-18);
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.box-service .box-content .excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-service:hover .box-thumbnail img{
    filter: brightness(0.5);
}

.box-service:hover .box-content{
    transform: translateY(-0.5rem);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

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


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

.box-product .box-thumbnail{
    position: relative;
    border-radius: 1rem 1rem 0 0;
}

.box-product .box-content{
    padding: 0.75rem;
}

.box-product .title{
    margin-bottom: 0rem;
    font-size: var(--fs-18);
    font-weight: 700;
    text-align: center;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

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

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

.box-product .box-price .label-sale-price{
    color: #FC0105;
}

.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-category{
    padding: 0.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.box-category .box-thumbnail{
    border-radius: 1rem 1rem 0 0;
}

.box-category .box-content{
    padding: 0.75rem;
    background: #FFF;
    text-align: center;
}

.box-category .box-content .title{
    margin-bottom: 0;
    font-size: var(--fs-18);
    font-weight: 700;
}

.box-category .box-content .product-count{
    color: rgba(0, 0, 0, 0.50);
}



/*===*/
.box-blog .box-thumbnail{
    position: relative;
    border-radius: 1rem;
}

.box-blog .box-badge{
    margin-bottom: 0.5rem;
    color: rgba(0, 0, 0, 0.50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
    padding: 0.5rem 0;
}

.box-blog .box-content{
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.box-blog .title{
    font-size: var(--fs-18);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-blog .box-excerpt{
    margin-top: 0.5rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .box-view-more{
    margin-top: 0.5rem;
    text-decoration: underline;
    color: var(--cl-x);
}

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


/*====*/
.icon-box{
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.icon-box:not(.icon-box-reverse) .label-number-bottom{
    opacity: 0;
}

.icon-box.icon-box-reverse .label-number-top{
    opacity: 0;
}

.icon-box .label-number{
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    font-weight: 700;
    color: var(--cl-x);
}

.icon-box .inner--icon{
    padding: clamp(0.5rem, 0.3rem + 1vw, 1.5rem);
}

.icon-box .inner--icon:after{
    content: "";
    position: absolute;
    inset: 0;
    border: clamp(0.0625rem, 0.0375rem + 0.125vw, 0.1875rem) solid var(--cl-x);
    border-radius: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    pointer-events: none;
}

.icon-box .inner--icon:before{
    content: "";
    position: absolute;
    inset: 0;
    border: clamp(0.0625rem, 0.0375rem + 0.125vw, 0.1875rem) dashed var(--cl-x);
    border-radius: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    pointer-events: none;
}

.col-icon-box-1 .icon-box .inner--icon:after{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 50% 50%, 0 50%);
}

.col-icon-box-2 .icon-box .inner--icon:after{
    clip-path: polygon(0 50%, 50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%);
}

.col-icon-box-3 .icon-box .inner--icon:after{
    clip-path: polygon(0 0, 50% 0, 50% 50%, 100% 50%, 100% 100%, 0 100%);
}

.col-icon-box-4 .icon-box .inner--icon:after{
    clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 50%, 50% 100%, 0 100%);
}

.icon-box .inner-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(1rem, 0.6rem + 2vw, 3rem);
    height: 100%;
    border-radius: 20px;
    background: #F7F7F7;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}

.icon-box .inner-icon .icon{
    width: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    height: clamp(2.5rem, 2rem + 2.5vw, 5rem);
}

.icon-box .inner-icon .content{
    margin-top: clamp(0.5rem, 0.3rem + 1vw, 1.5rem);
    text-align: center;
}

.icon-box .inner-icon .title{
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 700;
}

.icon-box:hover .inner-icon{
    transform: scale(1.2);
    box-shadow: 0 0 4px 0 rgba(252, 1, 5, 0.25);
}


/*===*/
.footer{
    background-color: #000000;
    position: relative;
    color: #fff;
}

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

.logo-footer{
    width: clamp(6.25rem, 5rem + 6.25vw, 12.5rem);
}

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

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

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

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

.title-footer:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.75rem;
    width: 3rem;
    height: 2px;
    background-color: #fff;
}

.list-footer ul{
    list-style: "\f061\00A0\00A0";
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
}

.list-footer ul li::marker{
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
}

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

.box-info-contact{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    line-height: 1.4;
}

.box-info-contact .icon{
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--cl-x);
    font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
    color: #fff;
}

.box-info-contact .label{
    flex: 1;
}

.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-radius: 50%;
    background-color: var(--cl-x);
    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: 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;
}

/**/
.form-footer .form-group{
    display: flex;
    background-color: #fff;
    padding: 0.25rem;
    border-radius: 50rem;
}

.form-footer .form-control{
    flex: 1;
    padding: 0.5rem 1.25rem;
    border: 0;
    border-radius: 50rem;
    box-shadow: none !important;
    background-color: transparent;
    font-size: inherit;
}

.form-footer .btn-custom{
    border-radius: 50rem;
}


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

.box-iframe-contact{
    margin-top: -5rem;
}

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

#contact-form{
    padding: clamp(3rem, 2.6rem + 2vw, 5rem) clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

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