:root{
    --cl-x: #13132D;
    --cl-y: #FF9D00;
    --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: 50rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    transition: all .3s ease-in-out;
    vertical-align: middle;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.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: 1px 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: 1px 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{
    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: 100%; /*50%*/
}

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

/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--cl-x);
}

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

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

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    font-weight: 400;
    font-size: var(--fs-18);
    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: #51BFEC;
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: #51BFEC;
}

/*===*/
.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: 250px;
    transition: all .3s ease-in-out;
}

.navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    box-shadow: none !important;
    color: #fff;
}

.box-search-header{
    display: flex;
    width: 100%;
    padding: 0.125rem;
    border: 1px solid #7c7c7c;
    border-radius: 50rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.29);
}

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

.box-search-header button{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    font-size: var(--fs-14);
}

.btn-popup-search{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    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(7rem, 2.3999999999999995rem + 23vw, 30rem);
    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.25rem, 1.1rem + 0.75vw, 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: #fff;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

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

/*===*/
.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{
    top: 50%;
    transform: translateY(-50%);
    width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    margin: 0;
    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;
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 700;
}

.wrapper-slide.hover-show-button .swiper-button-next,
.wrapper-slide.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;
}

.wrapper-slide-button-outline .swiper-button-next{
    right: -3rem;
}

.wrapper-slide-button-outline .swiper-button-prev{
    left: -3rem;
}



/* Home ============*/
.main-slide{
    padding-bottom: 2rem;
    position: relative;
}

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

.main-slide .swiper-pagination-bullets{
    bottom: 0;
}

.main-slide .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: #D9D9D9;
    border-radius: 50rem;
    opacity: 1;
    transition: all .3s ease-in-out;
}

.main-slide .swiper-pagination-bullet-active{
    width: clamp(2rem, 1.8rem + 1vw, 3rem);
    background-color: var(--cl-y);
}


.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    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-main h3{
    font-size: 1.125rem;
    font-weight: 500;
}


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



/*====*/
.album-slide{
    --w-slide: 50%;
}

.album-slide .swiper-slide{
    width: var(--w-slide);
    transition: all .3s ease-in-out;
    transform: scale(0.9);
}

.album-slide .swiper-slide-active{
    transform: scale(1);
}


.album-slide .album-next{
    right: calc((100% - var(--w-slide)) / 2 + 2%);
}

.album-slide .album-prev{
    left: calc((100% - var(--w-slide)) / 2 + 2%);
}



.box-img-album{
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    overflow: hidden;
}



/*====*/
.partner-next:after,
.partner-prev:after{
    content: "";
}

.partner-next.swiper-button-next{
    background-color: transparent;
    background-image: url('/templates/images/img-next.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
    box-shadow: none;
}

.partner-prev.swiper-button-prev{
    background-color: transparent;
    background-image: url('/templates/images/img-prev.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
    box-shadow: none;
}


.box-img-partner{
    padding: 1rem;
    background-color: #fff;
    border-radius: 0.75rem;
}



/*====*/
.box-year-history{
    display: flex;
    justify-content: center;
    font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
    padding: 10%;
    line-height: 1;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #BCBCBC;
}

.box-content-history{
    padding: 4%;
}

.swiper-slide-active .box-year-history{
    -webkit-text-stroke-color: var(--cl-x);
}


.history-content-slide{
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}




/*====*/
.box-category{
    padding: 0.25rem;
    border-radius: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    transition: all .3s ease-in-out;
}
.box-category .box-thumbnail{
    border-radius: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
}

.box-category .box-content{
    padding: 0.5rem;
    text-align: center;
}

.box-category .box-content .title{
    margin-bottom: 0.25rem;
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
    font-weight: 700;
}

.box-category .box-content .excerpt{
    color: #999999;
}

.box-category .box-content .btn-custom{
    margin-top: 0.75rem;
    padding: 0.25rem 1rem;
    font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
    background-color: #29235C;
    border-radius: 0.325rem;
}

.box-category:hover{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



/*====*/
.box-product{
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.5rem;
    box-shadow: 0 0 5.2px 0 rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    transition: all .3s ease-in-out;
}

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

.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-content{
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.box-product .box-content-top{
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.box-product .box-title{
    flex: 1;
}

.box-product .title{
    margin-bottom: 0rem;
    font-size: var(--fs-18);
    font-weight: 700;
    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{
    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-content-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.box-content-bottom .view-more{
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 50rem;
    border: 1px solid var(--cl-x);
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-content-bottom .view-more:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 10rem;
    height: 10rem;
    transform: translate(-10%, -50%) scale(0);
    background-color: var(--cl-x);
    border-radius: 50%;
    transition: all .3s ease-in-out;
}


.box-content-bottom .contact{
    font-weight: 700;
}

.box-product:hover{
    box-shadow: 0 0 5.2px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-0.25rem);
}

.box-content-bottom .view-more:hover{
    color: #fff;
}

.box-content-bottom .view-more:hover:after{
    transform: translate(-10%, -50%) scale(1);
}

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





/*===*/
.box-blog .box-thumbnail{
    position: relative;
    border-radius: 0.5rem;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.box-blog .box-content{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.box-blog .box-title{
    max-height: 2.5rem;
}

.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-meta{
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    font-size: 0.875rem;
    color: #969696;
    border-top: 1px solid #C4C4C4;
}


.box-blog .view-more{
    margin-left: auto;
    color: var(--cl-x);
    font-weight: 700;
}

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


/*===*/
.footer{
    position: relative;
    background-color: var(--cl-x);
    color: #fff;
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
}

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

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

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

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

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

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

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

.list-footer ul{
    list-style: none;
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
    list-style-image: url('/templates/images/icon-list.svg');
}

.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 [class*="fa-"]{
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--cl-y);
    border-radius: 50%;
    color: var(--cl-y);
}

.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: #fff;
    color: var(--cl-x);
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 0.75rem;
    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.575rem + 0.25vw, 0.875rem);
    font-weight: 300;
    text-align: center;
}

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

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


/* Animation */
.waves {
  position:relative;
  width: 100%;
  height: 10vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% { 
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}

/*===*/
/**/
#contact-form{
    padding: 5%;
    border: 1px solid #D7D7D7;
    border-radius: 1rem;
}

#contact-form .form-group{
    display: flex;
    align-items: baseline;
    padding: 0.25rem 0.5rem;
    border: 1px solid #D7D7D7;
    border-radius: 0.25rem;
}

#contact-form .form-group i{
    color: var(--cl-x);
}

#contact-form .form-control{
    border: 0 !important;
    border-radius: 0;
    box-shadow:none !important;
}

#contact-form .btn-custom{
    padding-left: 3rem;
    padding-right: 3rem;
}

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