:root{
    --orange: #f16735;
    --cl-x: #006699;
    --cl-y: #afd598;
    --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);
    --rd-4-8: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);

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

body{
    font-family: "Mulish", 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(--orange) !important;
}

.text-y{
    color: var(--orange) !important;
}

.text-gray{
    color: var(--cl-gray);
}

/*background*/
.bg-x{
    background-color: var(--orange) !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: var(--rd-4-8);
    line-height: 1.5;
    font-weight: 700;
    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(--orange);
    color: #fff;
    border: 1px solid var(--orange);
}
.btn-x:hover{
    color: #fff;
}

.btn-y{
    background-color: var(--orange);
    color: #fff;
    border: 1px solid var(--orange);
}

.btn-y:hover{
    color: #fff;
}

.btn-gray{
    background-color: #303029;
    color: #fff;
    border: 1px solid #303029;
}

.btn-gray:hover{
    background-color: #000;
}

.btn-outline-x{
    border: 2px solid var(--orange);
    background-color: transparent;
    color: var(--orange);
}

.btn-outline-x:hover{
    background-color: var(--orange);
    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);
    position: relative;
}

.block.page{
    background: rgba(0, 102, 153, 0.10);
}

.bg-cover-new{position: absolute;top: 0;bottom: 0;left: 0;right: 0;z-index: -1;}

.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0.8;
    background-color: var(--orange);
}

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

.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;
    padding-bottom: 0;
}

.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{
    margin-left: auto;
    justify-content: end;
    align-items: center;
    position: relative;
    z-index: 10;
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.5rem;
    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 .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: 220px;
    transition: all .3s ease-in-out;
}

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

.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{
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: 0;
    box-shadow: none !important;
    background-color: #fff;
    color: var(--orange);
    font-size: var(--fs-14);
}

.btn-popup-search svg{
    fill: var(--orange);
}

.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: var(--orange);
    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(--orange);
}

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


/*============*/
.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.25rem;
    padding-bottom: 0.25rem;
    background-color: #D9D9D9;
}
.simple-breadcrumb .breadcrumb{
    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;
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

.simple-breadcrumb .breadcrumb-item.active{
    color: rgba(0, 0, 0, 0.50);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Home ============*/
.main-slide{
    height: calc(100vh - 80px);
    overflow: hidden;
    position: relative;
}

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

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    transform: translateX(-50%);
}

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

.main-slide .swiper-pagination{
    left: 1rem;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    width: unset;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main-slide .swiper-pagination-bullet{
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.5;
    transition: all .2s ease-in-out;
}

.main-slide .swiper-pagination-bullet-active{
    opacity: 1;
}

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

.box-main-title h3{
    margin-bottom: 0;
    font-weight: 700;
    font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
    line-height: normal;
    background: -webkit-linear-gradient(-90deg, var(--orange) 5%,#ffffff 90%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #fff;
}

.box-main-title h2{
    margin-top: -0.5rem;
    font-size: var(--fs-title);
    font-weight: 700;
}

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

.box-hover-zoom .inner-thumbnail,
.box-hover-zoom-long .inner-thumbnail{
    overflow: hidden;
}

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

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

.box-hover-zoom-long .inner-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(--orange);
    opacity: 1;
    transition: all .3s ease-in-out;
    pointer-events: auto;
    pointer-events: all;
}
.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    font-size: 1rem;
    font-weight: 700;
}

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


/*===*/
.box-project{
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.375rem;
    overflow: hidden;
}

.box-project .box-content{
    flex: 1;
    padding: 0.75rem;
    background-color: var(--orange);
    color: #fff;
}

.box-project .box-title .title{
    font-size: 1.125rem;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-project .box-excerpt{
    height: 3rem;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-project .box-price-project{
    margin-top: 0.5rem;
    font-weight: 600;
}


/*===*/
.box-product{
    background: #FFF;
    border-radius: var(--rd-4-8);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

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

.box-product .box-badge{
    position: absolute;
    left: 0;
    top: 1rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--orange);
    font-size: var(--fs-18);
    color: #fff;
}

.box-product .box-content{
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
}

.box-product .box-title{
    margin-bottom: 0.25rem;
    max-height: 2.5rem;
}

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

.box-product .box-excerpt{
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-infor-product{
    list-style: none;
    margin-bottom: 0.5rem;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(0, 0, 0, 0.50);
    font-size: 0.875rem;
}

.box-product .box-price{
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 700;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
}

.box-product .box-price .label-sale-price{
    color: var(--orange);
}

.box-product .box-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
    font-size: var(--fs-14);
}

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

/*===*/
.box-product-vertical{
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.30);
}

.box-product-vertical .box-thumbnail{
    width: clamp(9rem, 7.2rem + 9vw, 18rem);
}

.box-product-vertical .box-thumbnail .inner-thumbnail{
    border-radius: var(--rd-4-8);
}

.box-product-vertical .box-content{
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.box-product-vertical .box-content .box-content-top{
    flex: 1;
}

.box-product .box-excerpt{
    -webkit-line-clamp: 2;
}

/*===*/
.box-blog{
    border-radius: var(--rd-4-8);
    background-color: #fff;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

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

.box-blog .box-badge{

}

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

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

.box-blog .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    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{
    text-align: justify;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .box-view-more{
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
    color: var(--orange);
}

.box-blog .box-view-more i{
    transition: all .3s ease-in-out;
}

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

.box-blog .box-view-more:hover i{
    transform: translateX(10px);
}

.box-blog-vertical{
    display: flex;
    align-items: center;
}

.box-blog-vertical .box-thumbnail{
    width: clamp(8rem, 6.4rem + 8vw, 16rem);
}

.box-blog-vertical .box-thumbnail .inner-thumbnail{
    border-radius: var(--rd-4-8);
}

.box-blog-vertical .box-content{
    flex: 1;
}

/*===*/
.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;
    color: #fff;
    font-size: 1rem;
}

.footer-bottom{
    background-color: var(--orange);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    overflow: hidden;
}

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

.title-footer.has-bottom:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 1px;
    background-color: #fff;
}

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

.social-contact{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

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

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: var(--orange);
}

.social-contact-footer:before{
    content: "";
    position: absolute;
    left: 50%;
    top: -0.5rem;
    transform: translateX(-50%);
    width: 5rem;
    height: 1px;
    background-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;
}

.list-visitor{
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
}


/*===*/
.form-booking-footer .form-control{
    border: 1px solid #D9D9D9;
    border-radius: clamp(0.25rem, 0.225rem + 0.125vw, 0.375rem);
    box-shadow: none !important;
    background-color: #fff;
}

.form-booking-footer .form-control::placeholder{
    color: rgba(0, 0, 0, 0.50);
}

.form-booking-footer button{
    border: 1px solid #fff;
    background-color: transparent;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.icon-contact{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: var(--rd-4-8);
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.icon-contact .icon{
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(241, 103, 53, 0.5);
    color: var(--orange);
}

.icon-contact .content{
    flex: 1;
    font-weight: 500;
    line-height: normal;
}

.icon-contact:hover{
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

/*===*/
#contact-form{
    padding: 1.5rem;
    background-color: #fff;
    border-radius: var(--rd-4-8);
}
#contact-form label{
    color: var(--orange);
}

#contact-form .form-control{
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: var(--rd-4-8);
    background-color: #F7F7F7;
}

#contact-form .form-control:focus{
    box-shadow: 0 0 0.5rem .125rem rgba(0 102 153 / 0.5);
}


#contact-form .g-recaptcha-contact{
    transform: scale(0.8);
    transform-origin: 0 0;
}

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


/*===*/
.widdget-shop{
    border-top: 2px solid var(--orange);
    background-color: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    transition: all 1s ease-in-out;
    
}

.box-admin-contact{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.box-admin-contact .left-admin-contact{
    width: 100px;
}

.box-admin-contact .right-admin-contact{
    flex: 1;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 700;
    font-size: var(--fs-18);
}

.box-admin-contact .right-admin-contact h5{
    margin-bottom: 0.25rem;
    font-family: "Dancing Script", cursive;
    font-size: var(--fs-24);
    color: var(--orange);
}

.box-social-admin{
    list-style: none;
    padding-left: 0;
}

.box-social-admin li{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #E2E5E7;
    font-size: 1.125rem;
    font-weight: 700;
}

.box-social-admin li .icon{
    width: 2.5rem;
    height: 2.5rem;
}

.form-contact-sidebar{
    padding: 0 1rem 1rem;
}

.form-contact-sidebar .g-recaptcha-contact{
    transform: scale(0.8);
    transform-origin: 0 0;
}

.form-contact-sidebar .form-control{
    box-shadow: none !important;
    border-radius: 0.25rem;
}

.form-contact-sidebar .form-control:focus{
    border-color: var(--orange);
}

.form-contact-sidebar .btn-custom{
    width: 100%;
    border-radius: 0.25rem;
}


.wrapper-content-project{
    padding: 1rem;
    background-color: #fff;
    border-radius: var(--rd-4-8);
}

.wrapper-content-project .wrapper-title{
    font-size: var(--fs-24);
    font-weight: 700;
}