
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.8;
}

html{
    line-height: 16px;
    font-size: 16px;
    overflow-x: hidden;
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}

body{
    color: #fff;
    background: var(--bg-color);
}

img{
    width: 100%;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}

p{
    margin-bottom: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

:root{
    --primary-color: #ffba03;
    --primary-color-2: #5a3c15;
    --bg-color-1: #171723;
    --bg-color: #242730;
    --text-color: #b1b1b1;
}




ul,ol{
    list-style: none;
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
}

input:focus{
    outline: none;
}

.section{
    padding: 60px 0;
    overflow: hidden;
}

.cursor {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: translate(20px,20px);
	z-index: 9999;
}

/* Loading */

.loading{
    background: var(--bg-color) url(../imgs/loading.webp) no-repeat center center;
    background-size: 6%;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading img{
    width: 40px;
    transform: translateY(-34px);
}


/* Breadcrumbs */
.breadcrumbs{
    background: var(--bg-color-1);
    display: flex;
    padding: 8px 20px;
}

.breadcrumbs > li{
    position: relative;
}
.breadcrumbs > li::after{
    content: "/";
    position: absolute;
    right: -2px;
    top: 6px;
    font-size: 12px;
}

.breadcrumbs > li:last-child::after{
    display: none;
}

.breadcrumbs > li > a{
    padding: 4px 12px;
    font-size: 13px;
    transition: .3s;
}

.breadcrumbs > li > a:hover{
    color: var(--primary-color);
}





/* Custom dots */

.banner-slick .slick-dots{
    bottom: 160px;
    right: 234px;
    text-align: end;
}

.banner-slick .slick-dots li{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.banner-slick .slick-dots li button{
    background: #c1c1c1;
    height: 4px;
    width: 4px;
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 50%;
}

.banner-slick .slick-dots li.slick-active{
    border: 1px solid #bd9e7a;
}

.slick-dots li button::before{
    display: none;
}

.slide-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    border: none;
    background: none;
    color: #000;
    background: rgba(255, 255, 255, 0.2);
    font-size: 22px;
    transition: .3s;
}
.slide-arrow.prev-arrow{
    left: 10px;
}
.slide-arrow.next-arrow{
    right: 10px;
}

.slide-arrow:hover{
    background: rgba(255, 255, 255, 0.4);
}

.product-for .slide-arrow{
    background: transparent;
    color: #fff;
    width: 20px;
}

.product-for .slick-disabled{
    opacity: 0.4;
}

.product-nav .slick-slide {
    opacity: 0.4;
}

.product-nav .slick-slide.slick-current {
    opacity: 1;
}



/* Search modal */

.modal-search{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    background: rgba(35,35,35,.95);
    align-items: center;
    justify-content: center;
    display: none;
}
.modal-search.active{
    display: flex;
    animation: modalSearch .3s ease;
}

@keyframes modalSearch {
    0%{opacity: 0; transform: translateY(-100px);}
    100%{opacity: 1; transform: translateY(0px);}
}

.form-search{
    position: relative;
    min-width: 600px;
}

.form-search input{
    width: 100%;
    height: 60px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    font-size: 22px;
    color: #fff;
}

.form-search button{
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 22px;
}

.close-modal-search{
    display: inline;
    position: absolute;
    top: 50px;
    right: 100px;
    font-size: 30px;
    cursor: pointer;
    transition: .5s;
}
.close-modal-search:hover{
    transform: rotate(180deg);
}


/* social */

.box-social{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-item{
    border-radius: 50%;
    animation: socialShake 1s ease-in-out infinite;
    position: relative;
}

.social-item::before{
    content: "";
    position: absolute;
    top: -7px;
    left:-7px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    animation: socialShadow 2s ease-in-out infinite;
    z-index: -1;
    border-radius: 50%;
}

.social-item::after{
    content: "";
    position: absolute;
    top: -7px;
    left:-7px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: socialBorder 2s ease-in-out infinite;
    z-index: -1;
    border-radius: 50%;
}

@keyframes socialShadow {
    0% {
        transform: rotate(0) scale(.8) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(.8) skew(1deg);
    }
    
}

@keyframes socialBorder {
    0% {
        transform: rotate(0) scale(.8) skew(1deg);
        opacity: 0;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 1;
    }
    100% {
        transform: rotate(0) scale(1.5) skew(1deg);
        opacity: 0;
    }
    
}

.social-item img{
    width: 36px;
    border-radius: 50%;
}

@keyframes socialShake {
    0%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
    10%{-webkit-transform: rotate(-8deg) scale(1) skew(1deg);}
    20%{-webkit-transform: rotate(8deg) scale(1) skew(1deg);}
    30%{-webkit-transform: rotate(-8deg) scale(1) skew(1deg);}
    40%{-webkit-transform: rotate(8deg) scale(1) skew(1deg);}
    50%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
    100%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
}


/*====== Reveal ======*/
.reveal{
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all ease 1s;
}
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}

.about-service .reveal:nth-child(4n-3){
    transition: all ease 0.25s;
}
.about-service .reveal:nth-child(4n-2){
    transition: all ease 0.5s;
}
.about-service .reveal:nth-child(4n-1){
    transition: all ease 0.75s;
}
.about-service .reveal:nth-child(4n){
    transition: all ease 1s;
}

.reveal-2{
    position: relative;
    transform: translateX(-30px);
    opacity: 0;
    transition: 1s ease;
}
.reveal-2.active{
    transform: translateX(0);
    opacity: 1;
}

.reveal-3{
    position: relative;
    transform: translateX(30px);
    opacity: 0;
    transition: 1s ease;
}
.reveal-3.active{
    transform: translateX(0);
    opacity: 1;
}

.reveal-caption{
    transform: translateX(-50px) !important;
    opacity: 0;
    transition: .5s;
}
.reveal-caption.active{
    transform: translateX(0) !important;
    opacity: 1;
}
.reveal-image{
    transform: translateX(50px);
    opacity: 0;
    transition: .5s;
}
.reveal-image.active{
    transform: translateX(0);
    opacity: 1;
}

.reveal-scale{
    transform: scale(0.4);
    opacity: 0;
    transition: .6s;
}

.reveal-scale.active{
    transform: scale(1);
    opacity: 1;
}



/* menu mobile */

.nav-mobile-toggle{
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
    margin-left: 8px;
    padding: 6px;
    cursor: pointer;
    display: none;
}
.nav-mobile-toggle > span{
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
}

.modal-mobile{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    -webkit-transition: visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
    transition: visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
    transition: transform 400ms ease 400ms, visibility 400ms ease 400ms;
    transition: transform 400ms ease 400ms, visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
    visibility: hidden;
}

.modal-mobile.active{
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
    transition: visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
    transition: transform 400ms ease 0ms, visibility 400ms ease 0ms;
    transition: transform 400ms ease 0ms, visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.8;
}

.mobile-nav-wrapper{
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: #252531;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
    transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
    transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, transform 400ms ease 0ms;
    transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, transform 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
}

.modal-mobile.active .mobile-nav-wrapper{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
    transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
    transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, transform 400ms ease 400ms;
    transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, transform 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
}


.close-modal-mobile{
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 20px;
}


.logo-mobile{
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo-mobile img{
    max-width: 50px;
}

.logo-mobile > div{
    text-align: center;
    color: var(--primary-color);
}

.logo-mobile > div > p{
    margin-top: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 10px;
}

.logo-mobile > div > span{
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transform: translateY(-6px);
}

.mobile-nav-content{
    margin-top: 30px;
}

.mobile-dropdown{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-content .mobile-dropdown:last-child{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown > a{
    padding: 14px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    display: block;
}


.dropdown-toggle{
    float: right;
    margin-top: 12px;
    width: 26px;
    height: 26px;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}


.submenu-mobile{
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 14px;
    text-transform: capitalize;
    display: none;

}


.submenu-mobile > li > a{
    display: block;
    padding: 10px 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}


.info-mobile{
    position: absolute;
    font-size: 14px;
    bottom: 20px;
}

.info-mobile > li{
    font-weight: 400;
    margin: 10px 0;
}

.info-mobile i{
    color: var(--primary-color);
    margin-right: 4px;
    font-weight: 500;
}


/* Btn view more */

.box-view-more{
    text-align: center;
}

.btn-view-more {
    margin-top: 50px !important;
}
