:root{
    --cl-x: #285A5B;
    --cl-y: #DF000B;
    --cl-bg: #DBDAD0;
    --fs-12: 0.75rem;
    --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.5rem, 1.3rem + 1vw, 2.5rem);

    --px-content: 10%;
    --py-content: 60px;
}

body{
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    background-color: var(--cl-bg);
    color: #285A5B;
    font-weight: 200;
}

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

a{
    text-decoration: none;
    color: #285A5B;
}

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-x{
    color: var(--cl-x) !important;
}

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

.bg-x{
    background-color: var(--cl-x) !important;
}

.bg-y{
    background-color: var(--cl-y) !important;
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    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;
}

.btn-white{
    background-color: #fff;
    color: var(--cl-x);
    border: 1px solid #fff;
}


.btn-custom.has-icon{
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-custom.has-icon .icon{
    width: 1.5rem;
    height: 1rem;
    background-image: url('/templates/images/icon-btn.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: all .3s ease-in-out;
}

.btn-custom.has-icon:hover .icon{
    transform: translateX(0.25rem);
}

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

.block .container-fluid{
    max-width: 1800px;
}

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

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

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

.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;
    z-index: 30;
}

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

.navbar-top{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background-color: #d4d3c5;
}

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

.navbar-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: animate 1s;
    transition: all 1s 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: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    font-weight: 300;
    font-size: var(--fs-20);
    white-space: nowrap;
    line-height: normal;
    font-family: "Oswald", sans-serif;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a{
    color: var(--cl-x);
    text-transform: capitalize;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: var(--cl-x);
    font-weight: 600;
}

.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;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
}

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

.navbar-nav .dropdown-menu .dropdown-item.active a{
    color: #fff;
}

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

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

.logo{
    width: auto !important;
    max-height: 4rem;
    transition: all .3s ease-in-out;
}

.header-content{
    line-height: 1;
}

.header-content *{
    margin-bottom: 0.25rem;
}

.header-content h2{
    font-size: 200%;
}


.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.4rem;
    border: 1px solid #DDDDDD;
    border-radius: 50rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.25);
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #fff;
}

.box-search-header input::placeholder,
.box-search-header input:focus{
    color: #fff;
}

.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 !important;
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

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


.translate img{
    height: 20px;
}


/*============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*banenr-page*/
.banner-page{
    height: 30rem;
    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 .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #717171;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.banner-page .breadcrumb .breadcrumb-item.active{
    color: var(--cl-x);
    font-weight: 600;
}

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

.box-hover-zoom .box-thumbnail img{
    transition: all 0.5s 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: #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{
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 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;
}


/* Home ============*/
.main-slide{
    height: 90vh;
}

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

.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);
    border-radius: 50rem;
    background-color: #fff;
    opacity: 1;
    transition: all .5s ease;
}

.main-slide .swiper-pagination-bullet-active{
    width: 2.5rem;
    background-color: #9AD998;
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    opacity: 0;
    font-size: clamp(0.625rem, 0.525rem + 0.5vw, 1.125rem);
    text-align: center;
    color: #fff;
    transition: all 1s ease-in-out;
}

.main-slide .swiper-slide-active .banner-slide{
    opacity: 1;
    transform: translateY(-50%);
}

.main-slide .banner-slide h2{
    position: relative;
    display: inline-block;
}

.main-slide .banner-slide h2:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    clip-path: ellipse(50% 1% at 50% 50%);
}

.main-slide .banner-slide h2:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    clip-path: ellipse(50% 1% at 50% 50%);
}


.main-slide .banner-slide .btn-custom{

}


/*===*/
.box-content-main h3{
    margin-bottom: 0.375rem;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    line-height: 1;
}

.box-content-main h2{
    margin-bottom: 0;
    font-size: var(--fs-title);
    position: relative;
}

.box-content-main div:first-of-type{
    margin-bottom: 0.25rem;
}

.box-content-main h2 + *{
    margin-top: 0.5rem;
}

.main-title{
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}


/*===*/
.box-video{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: inline-block;
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--cl-x);
    transition: all 2s cubic-bezier(.09,.68,.42,1.02);
    transform: translate(-50%, -50%);
    --speed: 2s;
}

.box-video:before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
    opacity: 0.8;
    animation: wave var(--speed) infinite ease-out;
    z-index: -1;
}

.box-video:after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
    opacity: 0.8;
    animation: wave var(--speed) infinite ease-out;
    animation-delay: .8s;
    z-index: -1;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: .8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.box-video:hover{
    transform: translate(-50%, -50%) scale(1.1);
}

.box-video:hover:before{
    --speed: 1s;
}


.block-about-cover-1{

}


/*===*/
.box-vsc .title{
    margin-bottom: 1rem;
    font-size: var(--fs-title);
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}


.box-icon-achievement{
    padding: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.box-icon-achievement .box-top{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.box-icon-achievement .box-top .box-top-left{
    width: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    height: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    flex-shrink: 0;
}


.box-icon-achievement .box-top h3{
    margin-bottom: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}


/*===*/
.box-activity{
    position: relative;
}

.box-activity .box-thumbnail{
    border-radius: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

.box-activity .box-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 0 0 clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem) clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.box-activity .box-content .box-content-left{
    flex-shrink: 0;
}

.box-activity .box-content .box-content-left .icon{
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background-color: var(--cl-x);
    border-radius: 0.75rem;
}

.box-activity .box-content h3{
    font-family: "Oswald", sans-serif;
    font-size: var(--fs-20);
    font-weight: 600;
}


/*===*/
.box-review .box-content{
    text-align: center;
}

.box-review .box-info{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.box-review .box-info .avatar{
    flex-shrink: 0;
    width: clamp(5rem, 4.6rem + 2vw, 7rem);
    height: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    border-radius: clamp(2rem, 1.8rem + 1vw, 3rem);
    overflow: hidden;
}

.box-review .box-info h3{
    margin-bottom: 0.25rem;
    font-size: var(--fs-18);
    font-weight: 300;
}        

.box-review .box-info .rating{
    color: #F5C400;
    line-height: normal;
}

.img-review-cover{
    position: absolute;
}

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


.img-review-cover-1{
    left: 0;
    transform: translate(-140%, 0) rotate(15deg);
    width: clamp(4rem, 2.8rem + 6vw, 10rem);
}

.img-review-cover-2{
    left: 0;
    top: 40%;
    transform: translate(-140%, 0%) rotate(10deg);
    width: clamp(3rem, 2.4rem + 3vw, 6rem);
}

.img-review-cover-3{
    right: 0;
    top: 40%;
    transform: translate(140%, -120%) rotate(10deg);
    width: clamp(3rem, 2.4rem + 3vw, 6rem);
}

.img-review-cover-4{
    right: 0;
    top: 40%;
    transform: translate(180%, -20%) rotate(-10deg);
    width: clamp(4rem, 2.8rem + 6vw, 10rem);
}

.img-review-cover-5{
    left: 0;
    top: 0%;
    transform: translate(0%, -20%);
    width: clamp(4rem, 3.4rem + 3vw, 7rem);
}

.img-review-cover-6{
    right: 0;
    top: 0%;
    transform: translate(80%, 120%);
    width: clamp(4rem, 2.4rem + 8vw, 12rem);
}

.img-review-cover-7{
    right: 0;
    top: 0%;
    transform: translate(500%, -70%);
    width: clamp(2rem, 1.6rem + 2vw, 4rem);
}


.review-slide .swiper-pagination{
    bottom: 4rem;
    transform: translateX(20%);
}

.review-slide .swiper-pagination-bullet{
    width: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    height: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    border-radius: 50rem;
    background-color: #B4B4B4;
    opacity: 1;
    transition: all .3s ease-in-out;
}

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



/**/
.box-product{
    padding: 0.375rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

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

.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{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    text-align: center;
}

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

.box-product .title{
    margin-bottom: 0rem;
    font-size: var(--fs-20);
    color: var(--cl-x);
    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;
    font-size: var(--fs-18);
}

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

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

.label-contact{
    color: #E80101;
    font-weight: 400;
}


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


/*===*/
.box-blog{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border-radius: 0.75rem;
}

.box-blog .box-thumbnail{
    position: relative;
    border-radius: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

.box-blog .box-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    padding: 1rem;
}

.box-blog .box-meta{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #959396;
}

.box-blog .cate{
    color: #38A9F9;
    font-weight: 600;
}

.box-blog .box-meta i{
    font-size: 0.375rem;
}

.box-blog .title{
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 200;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-blog .box-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.875rem;
    color: #616161;
}

.box-blog .box-date{
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.5rem;
    border-bottom: 4px solid var(--cl-x);
    border-radius: 0.75rem;
    background-color: #fff;
    color: var(--cl-x);
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
}

.box-blog .box-date .date{
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--cl-x);
    font-size: clamp(1.75rem, 1.7rem + 0.25vw, 2rem);
    font-weight: 700;
    text-align: center;
}

.box-blog .box-read-more{
    display: inline-flex;
    align-items: center;
    align-self: start;
    gap: 0.5rem;
    margin-top: auto;
    color: var(--cl-x);
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}

.box-blog .box-read-more:after{
    content: "";
    position: absolute;
    left: 0rem;
    top: 0;
    z-index: -1;
    width: 2rem;
    height: 2rem;
    border-radius: 50rem;
    background-color: var(--cl-x);
    transition: all .3s ease;
}

.box-blog .box-read-more .icon{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 4px;
    border-radius: 50%;
    /*background-color: var(--cl-x);*/
}

.box-blog .box-read-more:hover{
    transform: translateX(0.25rem);
    color: #fff;
}

.box-blog .box-read-more:hover:after{
    width: calc(100% + .75rem);
}



/*===*/
.box-real-estate{
    position: relative;
    padding: 1.5rem;
    border-radius: 0 0 1rem 1rem;
    background-color: #F4F9F4;
    transition: all .3s ease-in-out;
}

.box-real-estate .icon{
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    margin-bottom: 0.75rem;
}

.box-real-estate .title{
    font-weight: 700;
    font-size: var(--fs-20);
    color: var(--cl-x);
}

.box-real-estate .label-view{
    position: absolute;
    top: 0;
    right: 2rem;
    padding: 0.5rem 1rem;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    border-radius: 0 0 0.75rem 0.75rem;
    background-color: #9AD998;
    color: var(--cl-x);
    line-height: 1;
}

.box-real-estate .label-view i{
    transition: all .3s ease-in-out;
}

.box-real-estate:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.box-real-estate .label-view:hover i{
    transform: translateX(1rem);
}



/*===*/
.footer{
    color: #fff;
}
    
.footer a:hover{

}

.wrapper-footer-info{
    padding: 7%;
    background-color: var(--cl-x);
}

.logo-footer{
    width: clamp(5rem, 4.6rem + 2vw, 7rem);
}

.title-footer{
    position: relative;
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}

.list-footer ul{
    list-style: none;
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
}

.list-footer ul li a{
    position: relative;
    color: #fff;
}

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

.list-footer ul li:hover{
    transform: translateX(5px);
}

.list-menu-footer{
    justify-content: center;
}

.list-menu-footer .nav-link{
    color: #fff;
}

.list-menu-footer .nav-link i{
    font-size: 6px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/*===*/
.icon-info-footer{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-info-footer .icon{
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    flex-shrink: 0;
}

.icon-info-footer .title{
    font-size: 1rem;
    font-family: "Oswald", sans-serif;
}


/*===*/
.form-footer .form-control{
    padding: 0.75rem 1rem;
    box-shadow: none !important;
}

.form-footer .btn-custom{
    background-color: #F5C400;
    width: 100%;
}

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

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

.social-contact .item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cl-x);
    font-weight: 500;
}

.social-contact .item{
    width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: var(--fs-24);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 900;
}

.social-contact .item > *{
    color: inherit;
}

.social-contact-footer .item .icon:hover{
    animation: scale-icon 0.5s;
}

@keyframes scale-icon {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}


.social-contact-header{
    gap: 0.5rem;
}

.social-contact-header .item{
    width: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    height: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    border: 1px solid var(--cl-x);
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    color: var(--cl-x);
}

.social-contact-header .item.item-zalo{
    font-size: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}


.coppyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
}

.coppyright a{
    color: inherit;
}



/*=== Page Contact*/
.box-iframe{
    height: 100%;
}

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

.box-iframe-contact{
    height: 15rem;
}

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

.box-icon-contact{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--cl-x);
    border-radius: 1rem;
}

.box-icon-contact .icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    height: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    color: var(--cl-x);
}

.box-icon-contact .content{
    text-align: center;
}

.contact-form .form-control{
    padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
    box-shadow: none;
}

.contact-form .form-control:focus{
    border-color: var(--cl-x);
}

.contact-form label{
    margin-bottom: 0.125rem;
}

.contact-form label.required:after{
    content: "*";
    color: #DF000B;
}


.wrapper-fillter{
    display: flex;
    gap: 1rem;
}

.wrapper-fillter .group-fillter{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wrapper-fillter .group-fillter label{
    white-space: nowrap;
}

.wrapper-fillter .group-fillter .form-select{
    background-color: #CECDBF;
    color: var(--cl-x);
    box-shadow: none !important;
    border: 0;
    border-radius: 0.5rem;
}


/* --- LOADER --- */
.loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: #fec84b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease-out, visibility 0.6s;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.logo-img {
    width: 200px;
    height: auto;
    animation: fade-up 0.8s ease-out;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tracking-widest{
    margin-top: 0.5rem;
    color: #fff;
}

.progress-track {
    width: 160px;
    height: 2px;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: var(--cl-x);
    transition: width 0.2s ease-out;
}