:root{
    --cl-x: #88C949;
    --cl-y: #FFC700;
    --cl-z: #38423B;
    --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-22: clamp(1.25rem, 1.225rem + 0.125vw, 1.375rem);
    --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: 4%;
    --py-content: 40px;
}

body{
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    color: #38423B;
}

p:last-of-type{
    margin-bottom: 0;
}

a{
    color: #38423B;
    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);
    border: 1px solid var(--cl-x);
    color: var(--cl-z);
}

.btn-x:hover{

}

.btn-y{
    background-color: var(--cl-y);
    border: 1px solid var(--cl-y);
    color: var(--cl-z);
}

.btn-y:hover{

}

.btn-z{
    background-color: var(--cl-z);
    color: var(--cl-x);
    border: 0;
}

.btn-custom.has-shape:after{
    content: "";
    position: absolute;
    top: 0;
    right: 1px;
    width: 0.75rem;
    height: 100%;
    background-color: inherit;
    transform: translateX(100%);
    clip-path: polygon(0 0, 100% 51%, 0 100%);
}

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

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

.main-title.dotted-cover:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 10rem;
    border-bottom: 5px dotted var(--cl-x);
}
.main-title.dotted-cover:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1.75rem;
    transform: translateX(-50%);
    width: 8rem;
    border-bottom: 5px dotted var(--cl-x);
}


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

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

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

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    font-weight: 700;
    white-space: nowrap;
}

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

.navbar-nav .nav-item .nav-link.active{
    border-bottom: 1px solid var(--cl-z);
}

.navbar-nav .nav-item:hover .nav-link{
    border-bottom: 1px solid var(--cl-z);
}

/*===*/
.navbar-nav .dropdown-menu{
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.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-brand{
    margin: 0;
    padding: 0;
}

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

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


.content-header{
    font-size: clamp(0.5rem, 0.2rem + 1.5vw, 2rem);
    font-weight: bold;
}

.hotline-header{
    padding: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem) clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    font-weight: 700;
    font-size: clamp(0.625rem, 0.5rem + 0.625vw, 1.25rem);
}

.navbar-toggler{
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    box-shadow: none !important;
    color: #fff;
    font-size: var(--fs-14);
}

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

.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 .bg-cover{
    filter: brightness(0.8);
}

.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: 0rem;
    padding-bottom: 0rem;
}
.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{
    height: 600px;
    overflow: hidden;
    position: relative;
}

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

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

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

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

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


.box-image-about{
    position: relative;
    z-index: 1;
}

.box-image-about:after{
    content: "";
    position: absolute;
    top: 0;
    left: -1rem;
    bottom: 0;
    right: -2rem;
    transform: translateY(2rem);
    background-color: #ccc;
    background-image: repeating-conic-gradient(rgba(235, 235, 235, 0.3) 0% 25%, #88c949 0% 50%);
    background-position: 0 0, 32px 32px;
    background-size: 1.5rem 1.5rem;
    background-color: #88c949;
    z-index: -1;
}

.box-image-about .inner-image,
.box-image-about:after{
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 23% 100%, 0 50%);
}

.box-image-about img{
    transition: all .3s ease-in-out;
}

.box-image-about:hover img{
    transform: scale(1.1);
}


/**/
.icon-box{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(1rem, 0.8rem + 1vw, 2rem) 1rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
    position: relative;
}

.icon-box .icon{
    width: clamp(3rem, 2.7rem + 1.5vw, 4.5rem);
    height: clamp(3rem, 2.7rem + 1.5vw, 4.5rem);
}

.icon-box .content{
    flex: 1;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

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

.icon-box:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 200%;
    background-color: var(--cl-x);
}

.icon-box.icon-box-left:before{
    right: 0;
}

.icon-box.icon-box-right:before{
    left: 0;
}

.icon-box.icon-box-left:after,
.icon-box.icon-box-right:after{
    content: "";
    position: absolute;
    top: 0;   
    bottom: 0;
    width: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    background-color: var(--cl-x);
}

.icon-box.icon-box-left:after{
    right: 1px;
    transform: translateX(100%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.icon-box.icon-box-right:after{
    left: 1px;
    transform: translateX(-100%);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

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


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

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


/*===*/
.card-project{
    position: relative;
}

.card-project .thumbnail{
    border-radius: 1rem;
    overflow: hidden;
}
.card-project .content{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(0deg, #000000 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 1rem;
    color: #fff;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.card-project .title{
    margin-bottom: 0;
    font-size: var(--fs-20);
}

.card-project:hover .content{
    opacity: 1;
}

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


/*===*/
.swiper-pagination-white{
    padding-bottom: 2.5rem;
}
.swiper-pagination-white .swiper-pagination-bullets{
    bottom: 0;
}
.swiper-pagination-white .swiper-pagination-bullet{
    width: 0.75rem;
    height: 0.75rem;
    background-color: #fff;
}

.card-category{
    border-radius: 2rem;
    background-color: #F9F9EC;
    overflow: hidden;
}
.card-category .thumbnail{
    padding: 5%;
    border-radius: 2rem;
    background-color: #FCFFF5;
    overflow: hidden;
}
.card-category .title{
    margin-bottom: 0;
    padding: 1rem;
    color: var(--cl-x);
    text-align: center;
    font-weight: 500;
    font-size: var(--fs-24);
}

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

.card-product{
    position: relative;
}

.card-product .content{
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 4rem;
    background-color: var(--cl-x);
    border-radius: 0.35rem;
}

.card-product .title{
    margin-bottom: 0rem;
    font-size: var(--fs-18);
    font-weight: 700;
    text-align: center;
    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);
}


/**/
.card-blog .thumbnail{
    border-radius: 1rem;
    overflow: hidden;
}
.card-blog .content{
    position: relative;
    margin: 0 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    transform: translateY(-1.5rem);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

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

.card-blog .description{
    font-size: var(--fs-14);
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-blog .view-more{
    margin-top: 0.5rem;
    text-decoration: underline;
    text-transform: uppercase;
}

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

/*===*/
.card-catalogue{
    padding: 0.5rem;
    border: 1px solid #676767;
}

.card-catalogue .content{
    margin-top: 0.5rem;
}

.card-catalogue .title{
    margin-bottom: 0;
    font-size: var(--fs-20);
}



/*===*/
.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{
    padding-top: 2rem;
    position: relative;
    background-color: var(--cl-x);
}

.footer-main{
    padding-top: 0;
    padding-bottom: 0;
}

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

.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: relative;
    margin-bottom: 1rem;
    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: 50%;
    background-color: var(--cl-y);
    color: #303029;
    font-size: var(--fs-24);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size:var(--fs-14);
    font-weight: 900;
    color: #303029;
}

.social-contact-footer .item:hover{
    animation: scale-icon 0.5s;
    background-color: var(--cl-z);
    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);
    text-align: center;
}


/**/
.form-booking-footer .form-control{
    padding: 0.75rem 1rem;
    border: 1px solid var(--cl-z);
    border-radius: 0.5rem;
    box-shadow: none !important;
    background-color: transparent;
    color: var(--cl-z);
}

.form-booking-footer button{
    width: 100%;
    border-radius: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.form-booking-footer .form-control::placeholder{
    color: var(--cl-z);
    font-style: italic;
}

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


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

.box-iframe-contact iframe{
    border-radius: 0.5rem;
    overflow: hidden;
}