
/* *********************
***** Style CSS ********
************************ 
---- 1.Header (10-) ----
---- 2.Header (10-) ----
*/


.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(26 28 34);
    z-index: 99;
    border-bottom: 1px solid transparent;
}

.header.active{
    background: var(--bg-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: header-animation 1s ease;
}

@keyframes header-animation {
    0%{transform: translateY(-30px);}
    100%{transform: translateY(0px);}
}

.header-container{
    padding: 0 30px;
}

.header-main{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo{
    max-width: 80px;
    text-align: center;
}

.navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-item{
    position: relative;
}

.nav-item-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s;
    color: var(--primary-color);
    position: relative;
}


.nav-item-link::after{
    content: "";
    position: absolute;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.nav-item:hover .nav-item-link::after ,.nav-item-link.active::after{
    width: 20px;
}

.nav-item:hover .nav-item-link, .nav-item-link.active{
    color: #fff;
}

.submenu{
    position: absolute;
    top: 100%;
    background: rgb(26 28 34);
    min-width: 200px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    transform: scaleY(0);
    transform-origin: top;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.submenu-links{
    color: #fff;
    padding: 8px 14px;
    font-weight: 500;
    display: block;
    transition: .3s;
}
.submenu-links:hover{
    background: var(--primary-color);
    color: #000;
}

.nav-item:hover .submenu{
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.nav-item-link i{
    font-size: 10px;
    margin-left: 5px;
}

.header-group{
    display: flex;
    align-items: center;
}

.search-icon{
    display: inline-block;
    padding-right: 14px;
    color: #fff;
    font-size: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.hotline{
    display: flex;
    gap: 10px;
    margin-left: 14px;
}

.hotline-icon{
    display: inline-flex;
    padding: 10px;
    background: var(--primary-color-2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.hotline-icon img{
    max-width: 24px;
}

.hotline-text{
    color: #fff;
}

.hotline p{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.hotline-text h5{
    font-size: 14px;
    margin-top: 4px;
}


/* Banner */

.banner{
    margin-top: 85px;
    position: relative;
}

.banner-item{
    position: relative;
}

.banner-item img{
    max-height: 90vh;
    object-fit: cover;
}

.banner-item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0,0,0,0.0));
    z-index: 1;
}

.banner-text{
    position: absolute;
    top: 20%;
    left: 100px;
    z-index: 2;
}

.banner-subtitle{
    color: var(--primary-color);
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 30px;
    position: relative;
    font-family: 'Oswald', sans-serif;
}
.banner-subtitle::before{
    content: "";
    position: absolute;
    bottom: 8px;
    left: -30px;
    width: 20px;
    height: 1px;
    background: var(--primary-color);
}

.banner-title{
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
}

.banner-title > p{
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
}

.banner-title span{
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
}


.default-btn{
    display: inline-block;
    margin-top: 20px;
    padding: 14px 40px;
    background: rgb(44 44 44 / 40%);
    color: var(--primary-color);
    /* color: #000; */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 300ms ease-out 0s;
    font-family: 'Oswald', sans-serif;
}

.default-btn::before{
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: rgba(255, 186, 3, 0.9);
    left: 40px;
    top: 50%;
    z-index: -1;
    transition: all 300ms ease-out 0s;
}

.default-btn.default-disable{
    opacity: 0.5;
    margin-top: 50px;
    pointer-events: none;
}

.default-btn:hover{
    padding: 14px 40px 14px 80px;
}

.default-btn:hover::before{
    width: 30px;
}

/* .banner-btn::before{
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: rgba(255, 186, 3, 0.9);
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 300ms ease-out 0s;
}

.banner-btn::after{
    content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    background: rgba(255, 186, 3, 0.9);
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: all 300ms ease-out 0s;
} */

/* .banner-btn:hover::before, .banner-btn:hover::after{
    width: 100%;
    height: 100%;
    background: var(--primary-color);
} */


.banner-subtext{
    margin-left: 100px;
    position: absolute;
    bottom: 20px;
    z-index: 2;
}

.banner-box{
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.banner-box-item{
    background: rgb(26 28 34);;
    width: 200px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.banner-box-item::before{
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}
.banner-box-item:hover::before{
    animation: shine 1.3s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.banner-box .banner-box-item:first-child{
    border-right: none;
}

.box-item-icon{
    max-width: 80px;
}
.box-item-icon img{
    transition: .3s;
}

.banner-box-item:hover .box-item-icon img{
    transform: scale(1.05);
}

.box-item-text{
    text-transform: uppercase;
    font-size: 18px;
}

.box-item-style{
    position: absolute;
    right: 0;
    bottom: 150px;
    border-bottom: none;
}


.banner-image{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 60vh;
    overflow: hidden;
}
.banner-image img{
    object-fit: cover;
}

.banner-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.banner-image.hide-after::after{
    background: transparent;
}

.textbox{
    position: absolute;
    z-index: 2;
    text-align: center;
}
.textbox h2{
    font-size: 60px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.textbox-title{
    font-size: 40px !important;
    line-height: 1.6;
}


/*--------------------------
--------------Main----------
----------------------------*/

.wrapper-subtitle{
    margin: 10px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.wrapper-title{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
    text-transform: uppercase;
}

.wrapper-text{
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    max-width: 1000px;
    margin: auto;
}

/* about */

.about-wrapper{
    margin-top: 50px;
}

.about-main{
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.about-main figure{
    margin: 0;
    position: relative;
    width: 50%;
    overflow: hidden;
    border: 5px solid #fff;
}

.about-main figure::after{
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.about-main figure:hover::after{
    animation: shine 1.3s;
}

.about-main .caption{
    background: var(--bg-color);
    width: 50%;
}

.about-subtitle{
    color: var(--primary-color);
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.about-title{
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about-text{
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 20px;
}

.about-text > p{
    margin-bottom: 10px;
}

.about-text span{
    display: block;
    margin-top: 16px;
}

.btn-about{
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    background: var(--primary-color-2);
    color: #fff;
    padding: 8px 24px;
    margin-top: 20px;
    position: relative;
    font-size: 15px;
    z-index: 2;
}

.btn-about span{
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 2;
}

.btn-about::after{
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: #704f27;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-about:hover::after{
    width: 100%;
    left: 0;
    transition: width 0.3s ease;
}


.about-service{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.about-service-item{
    position: relative;
    background: var(--bg-color-1);
    padding: 30px;
    cursor: pointer;
    transition: .3s ease;
    overflow: hidden;
    z-index: 1;
}

.about-service-item::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #02041a;
    transition: all 400ms ease;
    height: 100%;
    width: 0%;
    z-index: 0;
}

.about-service-item:hover::before{
    width: 100%;
}



.about-service-icon{
    max-width: 60px;
    position: relative;
    z-index: 1;
}
.about-service-number{
    position: absolute;
    top: 16px;
    right: 30px;
    font-size: 50px;
    font-family: 'Dancing Script', cursive;
    color: rgba(255,255,255,0.05);
    z-index: 1;
}

.about-service-item:hover .about-service-number{
    color: rgba(255, 255, 255, 0.1);
}

.about-service-name{
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.about-service-text{
    font-weight: 300;
    font-size: 14px;
    padding-top: 10px;
    position: relative;
    z-index: 1 ;
}


/* Tab Menu */

.menutab{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.menutab-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.menutab-link{
    display: inline-block;
    padding: 16px 6px;
    text-transform: capitalize;
    transition: .3s;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.menutab-link.active,.menutab-link:hover{
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}



/* Home product */

.wrapper-product{
    display: none;
    margin-bottom: 30px;
}
.wrapper-product.active{
    display: block;
    animation: opaProduct .8s ease;
}

@keyframes opaProduct {
    0%{opacity: 0;}
    100%{opacity: 1;}
}


.wrapper-product-content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.wrapper-loader{
    padding-top: 30px;
}

.wrapper-product-image{
    margin: 4px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.wrapper-product-image img{
    transition: 1s;
}

.wrapper-product-image:hover img{
    transform: scale(1.06);
}

.wrapper-product-item{
    background: var(--bg-color-1);
    border-radius: 15px;
    border: 4px solid var(--primary-color);
}

.wrapper-product-name{
    font-size: 20px;
    text-transform: uppercase;
    margin: 16px 16px 10px;
}

.wrapper-product-name > a{
    transition: .3s;
    font-weight: 500;
    display: block;
}

.wrapper-product-item:hover .wrapper-product-name > a{
    color: var(--primary-color);
}

.wrapper-product-address{
    font-size: 14px;
    margin-top: 4px;
    margin: 4px 0 20px 16px;
}
.wrapper-product-address i{
    margin-right: 4px;
}

/* Why */

.why-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-left{
    position: relative;
    height: 780px;
    margin-right: 20px;
}

/* .why-left::before{
    content: "";
    position: absolute;
    top: 0;
    left: 62px;
    width: 15px;
    height: 350px;
    background: #af9d91;
} */

.why-image-1{
    width: 500px;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
}

.why-image-1::after{
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}
.why-image-1:hover::after{
    animation: shine 1s ease-in-out;
}

.why-image-2{
    width: 440px;
    position: absolute;
    left: 50px;
    bottom: 0;
    overflow: hidden;
    border: 12px solid var(--bg-color);
}

.why-right .why-wrapper-title{
    font-size: 54px;
    text-align: start;
    margin-bottom: 10px;
    text-transform: uppercase;
}


.why-content{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.why-content-text{
    background: var(--bg-color-1);
    padding: 30px;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 30px;
}

.why-content-icon{
    max-width: 60px;
}

.why-content-icon img{
    width: 60px;
}

.why-title{
    font-size: 26px;
    font-weight: 500;
    color: var(--primary-color);
}

.why-subtitle{
    font-weight: 400;
    font-size: 18px;
}

.why-number{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.why-number-item{
    padding: 40px 20px;
    background: var(--bg-color-1);
    text-align: center;
    position: relative;
}
.why-number-item::after{
    content: "";
    position: absolute;
    top: 15px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
}

.why-number-item .number{
    font-size: 40px;
    font-weight: 500;
}
.why-number-item .text{
    text-transform: uppercase;
    font-weight: 400;
}

/* Partner */

.partner-slick{
    margin-top: 50px;
}

.partner-image{
    padding: 0 15px;
}

/*------------------------
-------Footer-------------
--------------------------*/


.footer{
    padding: 60px 0 0;
    background: var(--bg-color-1);
}

.footer-main {
    margin-top: 20px;
}

.footer-box {
    margin-bottom: 20px;
}

.ft-logo{
    max-width: 130px;
}

.ft-company-name{
    margin: 10px 0;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

.ft-company-desc{
    font-weight: 300;
    font-size: 14px;
}

.ft-company{
    margin-top: 20px;
    font-weight: 300;
    font-size: 14px;
    font-size: 20px;
}

.ft-company > li{
    margin-bottom: 6px;
}

.ft-company > li > span > i{
    font-size: 14px;
    color: var(--primary-color);
    margin-right: 4px;
}

.ft-company > li > span {
    margin-right: 6px;
}

.ft-title{
    margin-top: 30px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 20px;
    text-transform: uppercase;
}


.ft-box-center{
    max-width: 90%;
}

.form-contact{
    background: var(--bg-color);
    padding: 20px;
    margin-top: 20px;
}

.group-input{
    margin-bottom: 10px;
    position: relative;
}
.group-input input{
    height: 44px;
}
.group-input textarea{
    padding-top: 10px;
}
.group-input input, .group-input textarea{
    width: 100%;
    padding-left: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #f1f1f1;
}

.group-input input::placeholder, .group-input textarea::placeholder{
    font-size: 14px;
}
.group-input input:focus, .group-input textarea:focus{
    outline: none;
}

.send-contact{
    border: none;
    padding: 8px 20px;
    background: var(--primary-color);
    font-weight: 500;
}

.copyright{
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.gg-map iframe{
    margin: 80px 0;
    width: 100%;
    height: 400px;
}

.ft-links{
    color: #fff;
    padding: 2px 10px 2px 0;
    transition: .3s;
}
.ft-links:hover{
    color: var(--primary-color);
}

.ft-social{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.ft-social > a{
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #000;
    transition: .3s;
}
.ft-social > a:hover{
    background: orange;
    color: #fff;
}

/* Contact */

.contact-title{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 50px;
}

.contact-heading{
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: #c5a47e;
    margin-bottom: 40px;
}

.contact-head{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info{
    font-weight: 300;
    margin-right: 20px;
}

.contact-info span{
    color: #c5a47e;
    margin-right: 4px;
}

.contact-info li{
    margin-bottom: 10px;
    line-height: 1.8;
}

.group-input label{
    margin-bottom: 8px;
}

.contact-main{
    margin-top: 30px;
}

.contact-main .group-input{
    margin-bottom: 30px;
}

.contact-text{
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.8;
    margin-right: 20px;
}

.btn-contact{
    background: #b3936f;
    color:#fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    transition: .3s;
}

.btn-contact:hover{
    background: #866e51;
}

/* News */

.news-container{
    margin: 0 40px;
}

.news-body-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    position: relative;
    gap: 30px;
}

.news-grid-item{
    margin-top: 20px;
    background: var(--bg-color-1);
}

.news-grid-item .image{
    overflow: hidden;
}

.news-grid-item .image img{
    transition: .8s;
}

.news-grid-item:hover .image img{
    transform: scale(1.1);
}
.news-info{
    padding: 10px 30px;
}

.news-title{
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

.news-datetime{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-weight: 300;
}

.news-desc{
    font-weight: 300;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.news-details-btn{
    margin: 20px 0 10px;
    display: inline-flex;
    padding-left: 24px;
    position: relative;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
    color: var(--primary-color);
    transition: .3s;
}

.news-details-btn::before{
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    width: 14px;
    height: 1px;
    background: var(--primary-color);
    transition: .2s;
}

.news-details-btn:hover{
    color: #aa9274;
    padding-left: 30px;
}
.news-details-btn:hover::before{
    width: 22px;
    background: #aa9274;
}


.news-details-title{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-details-image{
    margin: 20px 0;
}

.content-details-body{
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.news-recommend-head{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding: 6px 0;
    margin-bottom: 20px;
}   
.news-recommend-head::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100px;
    background: var(--primary-color);
}

.links-recommend{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.links-recommend img{
    width: 80px;
}

.news-recommend-title{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-recommend-desc{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.clear-recommend{
    height: 50px;
}

.news-recommend-product{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px 10px;
}

.recommend-product-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.recommend-product-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: .3s;
}

.recommend-product-text{
    position: absolute;
    transition: .3s;
    opacity: 0;
    padding: 10px;
    transform: translateY(20px);
    z-index: 2;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}
.recommend-product-text:hover{
    color: var(--primary-color);
}

.recommend-product-item:hover::before{
    opacity: 1;
}

.recommend-product-item:hover .recommend-product-text{
    opacity: 1;
    transform: translateY(0px);
}


/* Category */

.category-container{
    padding: 0 30px;
}

.category-title{
    text-align: center;
    margin-bottom: 20px;
}

.category-title span{
    font-size: 26px;
    font-weight: 500;
    display: inline-flex;
    padding: 14px 0;
    position: relative;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: var(--primary-color);
}

.category-title span::after{
    content: "";
    position: absolute;
    bottom: 4px;
    width: 100px;
    height: 1px;
    background: #fff;
}


.category-layout{
    display: flex;
    flex-wrap: wrap;
}

.category-col{
}

.category-col-1{
    width: 65%;
}

.category-col-2{
    width: 35%;
}

.category-item-product{
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.category-item-product::after{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-image: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0), rgba(0,0,0,0));
    border-radius: 20px;
    padding: 10px;
}

.category-row{
    height: 600px;
}

.category-row-1{
    height: 300px
}

.category-item-product > .image{
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.category-item-product img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: 1.5s;
}

.category-item-product:hover img{
    transform: scale(1.1);
}


.product-info-links{
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 3;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color-2);
}

.product-info{
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 3;
}

.product-info-category{
    font-weight: 600;
    color: var(--primary-color);
    padding-left: 26px;
    position: relative;
    font-size: 14px;
}
.product-info-category::before{
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 1px;
    background: var(--primary-color);
}


.product-info-name{
    font-weight: 500;
}




.product-row{
    display: flex;
}

.product-row-6{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.product-main{
    width: 100%;
    position: relative;
}

.product-row-6 > a{
    width: 100%;
}

.product-main::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0,0,0,0.5),rgba(0,0,0,0),rgba(0,0,0,0));
}


.product-main .image-25{
   margin: 3px;
   overflow: hidden;
}

.product-main .image-50{
    margin: 3px;
    overflow: hidden;
}

.product-main .image-25 img{
    height: 300px;
    object-fit: cover;
    transition: 1s all;
}

.product-main .image-50 img{
    height: 606px;
    object-fit: cover;
    transition: 1s all;
}

.product-main img{
    transition: .8s;
}

.product-main:hover img{
    transform: scale(1.06);
}

.product-main-info{
    position: absolute;
    left: 20px;
    bottom: 10px;
    z-index: 2;
    font-size: 18px;
}

.product-title-50{
    font-size: 25px;
}

.product-name{
    font-weight: 500;
    color: var(--primary-color);
}


.layout-product{
    margin: 0 4px 20px;
}

.layout-product .image{
    border-radius: 14px;
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
}

.layout-product .image img{
    transition: 1s;
}

.layout-product .image:hover img{
    transform: scale(1.1);
}


.product-for{
    margin-bottom: 30px;
}

.product-for-image img{
    max-height: 560px;
    width: auto;
    margin: auto;
}


.product-image{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: .3s;
}
.product-image:hover::after{
    opacity: 1;
}

.product-info-head{
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 500;
}

.product-info-icon{
    position: absolute;
    font-size: 22px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.product-info-icon:hover{
    color: var(--primary-color);
}
.product-image:hover .product-info-icon{
    transform: translateY(0px);
    opacity: 1;
}

.preview-images{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 99;
    display: none;
}
.preview-images.active{
    display: flex;
}

.preview-close{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .5s;
}
.preview-close:hover{
    transform: rotate(180deg);
}


.preview-main{
    position: absolute;
}

.preview-main > img{
    max-width: 80vw;
    max-height: 80vh;
}

.product-info-title{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-info-name{
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
}

.product-info-desc{
    line-height: 2;
    margin-bottom: 10px;
}

.product-info-address{
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
}

.product-info-content{
    margin: 40px 0 10px;
}

.info-content-image{
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.btn-view-more{
    margin-top: 20px;
    font-size: 18px;
}

.btn-view-more > a{
    color: var(--primary-color);
    text-decoration: underline;
}


.layout-product-2{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.product-2-image{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-2-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .3s;
}

.product-2-image:hover::after{
    opacity: 1;
}

.product-2-info{
    position: absolute;
    z-index: 2;
    letter-spacing: 1px;
    opacity: 0;
    transition: .3s;
}

.product-2-info a{
    font-weight: 600;
    font-size: 20px;
}
.product-2-info a:hover{
    color: var(--primary-color);
}

/* .product-2-info::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    width: 100px;
} */

.product-2-image:hover .product-2-info{
   opacity: 1;
}

.product-2-image img{
    height: 300px;
    object-fit: cover;
}


.quote-main{
    margin-top: 50px;
}

.quote-icon{
    max-width: 80px;
    margin: 0 auto 10px;
}

.view-quote{
    font-weight: 500;
    color: #aa9274;
    margin-top: 10px;
    transition: .3s;
}

.view-quote:hover{
    color: var(--primary-color);
}


.quote-info{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    background: var(--bg-color-1);
    max-width: 90%;
    margin: auto;
    box-shadow: 0 10px 30px #000;
}

.quote-col{
    border: 1px solid rgba(255, 255, 255, 0.2);

}



.quote-title{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--primary-color);
    color: #000;
    text-align: center;
}

.quote-price{
    padding: 20px 30px;
    text-align: center;
    min-height: 150px;
    font-size: 26px;
    font-weight: 600;
}