/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Ysabeau+Office:ital@0;1&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ysabeau+Office:ital@0;1&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap'); */


:root {
    /* --primary: #FFCE03; */
    --secondary: #4c4c4c;
    --headings: #705b16;

    --transprent-color: #ffffffa2;



    /* --primary: #8f007c;
    --secondary: #2c9285;
    --light: #F8F8F8;
    --dark: #252525; */

    /* --first: #F5F0ED;
    --second: #D4C6BD;
    --third: #D6B7B5;
    --four: #3D5361;
    --five: #d5ac63;
    --pargraph: #3f3e3e; */
}

*{
    font-family: "Josefin Sans", sans-serif;  
}

h1, h2, h3{
    font-weight: bolder;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Josefin Sans", sans-serif;
    /* font-family: "Ysabeau Office", 'sans-serif' !important; */
}

 /* h1, h2, h3, h4, h5{
    font-family: "Inter", sans-serif !important;
} */

h1, h2, h3{
    color: var(--secondary);
}

p{
    text-align: justify;
    color: var(--pargraph) !important;
}

/* h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
} */

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 40px;
    z-index: 99;
    background-color: var(--secondary);
}

.back-to-top:hover{
    background-color: transparent !important;
    border-color: grey !important;
    color: black !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: white !important;
    border-color: #ffffff;
}

.btn-outline-body:hover {
    color: #FFFFFF !important;
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-primary{
    background-color: var(--secondary) !important;
    border-color: var(--secondary);
    color: white !important;
}
.btn-primary:hover{
    background-color: transparent;
    border-color: var(--secondary);
}

.text-primary{
    color: white !important;
}

/*** Top Bar ***/

.top-bar{
    background-color: var(--secondary);
}
.top-icon{
    font-size: 17px;
    color: rgb(255, 255, 255);
}
.top-bar a{
    transition: .5s all !important;
}
.top-bar a:hover{
    color: var(--secondary) !important;
}



/*** Navbar ***/

.bg-color{
    background-color: white !important;
}

/* .nav{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 111111 !important;
} */

/* .navs{
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(240, 248, 255, 0.333) !important;
    z-index: 11111 !important;
} */

.navbar{
    z-index: 999999 !important; 
    width: 100%;
    transition: .5s ease-in-out;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-brand h2{
    color: white;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    font-family: 'Josefin Sans', sans-serif !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgb(190, 185, 185) !important;
}

.text-darks{
    color: rgb(138, 133, 133);
}

/* .navbar.sticky-top {
    top: -100px;
    transition: .5s;
} */

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler{
    border: none !important;
    box-shadow: none !important;
}

.menu{
    font-size: 25px;
    /* color: white; */
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 20px;
    position: relative;
}
  
.serv.section-title{
    padding-bottom: 40px !important;
}
  
.section-title h2 {
    font-size: 24px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    width: fit-content;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    /* color: color-mix(in srgb, var(--default-color), transparent 30%); */
    position: relative;
    align-items: center !important;
    display: flex;
}
  
/* .lines {
     
    width: 120px;
    height: 2px;
    display: inline-block;
    background: var(--transprent-color);
    margin: 4px 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
   */
/* .lines::before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
     
   display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--transprent-color);
    border-radius: 50%;
} */





/*** Header ***/

.slide-carousel{
    z-index: inherit;
}

/* .slide-carousel .owl-nav {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content:space-between;
    bottom: 5%;
    padding: 0px 5%;
   
  } */

  .slide-carousel h1{
    font-size: 70px;
    color: rgb(255, 255, 255);
    letter-spacing: 5px;
    /* -webkit-text-stroke: 1px rgb(250, 0, 0); */
    text-shadow: 0px 0px 6px black;
  }

  .slide-carousel p{
    font-size: 25px;
    text-shadow: 0px 0px 6px rgb(94, 92, 92);
    letter-spacing: 2px;
  }


 .slide-carousel img{
    height: 100vh !important;
    width: 100%;
    object-fit: cover;

 } 




/* .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.521);
}

.owl-carousel-item {
    background-color: rgba(0, 0, 0, 0.651) !important;
    background-blend-mode: multiply;
    height: 100%;
    width: 100%;
}

.header-carousel .owl-carousel-item img{
    height: 90vh !important;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
    .header-carousel .owl-carousel-item .owl-carousel-inner h1{
        font-size: 25px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
} */



/*** Page Header ***/

/* .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.322), rgba(0, 0, 0, 0.24)), url(../img/header.jpg) center center no-repeat;
    background-size: cover;
    object-fit: cover;
    height: 100vh;
    width: 100%;
    top: 0;
    text-align: center;
} */

.page-header-about{
        background: linear-gradient(rgba(0, 0, 0, 0.322), rgba(0, 0, 0, 0.24)), url(../img/cover-4.jpg) center center no-repeat;
        background-size: cover;
        object-fit: cover;
        background-position: center;
        height: 100%;
        width: 100%;
        /* top: 0; */
        text-align: center;
}

.page-header-quality{
        background: linear-gradient(rgba(0, 0, 0, 0.322), rgba(0, 0, 0, 0.24)), url(../img/service-banner.jpg) center center no-repeat;
        background-size: cover;
        object-fit: cover;
        height: 100%;
        width: 100%;
        /* top: 0; */
        text-align: center;
}

.page-header-service{
        background: linear-gradient(rgba(0, 0, 0, 0.322), rgba(0, 0, 0, 0.24)), url(../img/service-banner.jpg) center center no-repeat;
        background-size: cover;
        object-fit: cover;
        height: 100%;
        width: 100%;
        /* top: 0; */
        text-align: center;
}

.page-header-contact{
        background: linear-gradient(rgba(0, 0, 0, 0.322), rgba(0, 0, 0, 0.24)), url(../img/contact-banner1.jpg) center center no-repeat;
        background-size: cover;
        object-fit: cover;
        height: 100%;
        width: 100%;
        /* top: 0; */
        text-align: center;
        background-position: center;
}

.page-header-product{
        background: linear-gradient(rgba(0, 0, 0, 0.322), rgba(0, 0, 0, 0.24)), url(../img/product-banner.jpg) center center no-repeat;
        background-size: cover;
        object-fit: cover;
        height: 100%;
        width: 100%;
        /* top: 0; */
        text-align: center;
}

.page-header-gallery{
    background: linear-gradient(rgba(0, 0, 0, 0.322), rgba(0, 0, 0, 0.24)), url(../img/galler-banner.jpg) center center no-repeat;
    background-size: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    /* top: 0; */
    text-align: center;
}

/* @media(max-width:768px){
    .page-header{
        height: 100% !important;
    }
} */

.page-header .container{
    display: flex;
    justify-content: center;
    padding: 130px 0px; 
    /* margin-top: 20%; */
    align-items: center;
    text-align: center;
}

@media(max-width:768px){
    .page-header .container{
        padding: 130px 0px;
    }
}

.page-header .nav .breadcrumb{
    text-align: center !important;
    align-items: center;
    justify-content: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
/* .section-title {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
} */



/*** About & Feature ***/


/* .about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--secondary);
    z-index: -1;
} */

/* .angle{
    color: var(--secondary);
    font-size: 25px;
} */


/* .about{
    background-image: url(../img/post-wedding2.jpg);
    background-size: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    background-attachment: fixed;
}

.about .row{
    box-shadow:  0px 0px 20px rgb(73, 72, 72);
} */

.abt-bg{
    background-color: #ffffff3f;
    backdrop-filter: blur(10px);
    /* color: white; */
}

.abt-bg h4{
    font-weight: 800 !important;
    text-transform: uppercase;
}




/*** Service ***/

.services img{
    height: 400px !important;
    width: 100%;
    object-fit: cover;
    transition: .5s all ease-in-out;
}

.services h2{
    font-family: "Josefin Sans", sans-serif !important;
}

.service-head{
    overflow: hidden;
}

.services img:hover{
    transform: scale(1.1);
}

.cards{
    position: relative;
}

.cards h5{
   font-family: "Josefin Sans", sans-serif !important;
   font-style: italic;
   font-size: 25px;
}

.cards::after{
    content: "";
    position: absolute;
    background-color: rgba(41, 41, 41, 0.384);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: .5s all ease-in-out;
    /* z-index: 1; */
}
.cards:hover::after{ 
    background-color: transparent !important;   
}
.cards .inner-content{

    opacity: 0;
    position: absolute;
    padding: 20px;
    /* text-align: center; */
    background-color: #ffcd0391;
    width: 100%;
    align-items: start;
   bottom: 0;
   transition: .5s;
   
  
}
.cards:hover .inner-content{
    opacity: 1;
}

.btn-close{
    box-shadow: none !important;
}

.modal h1{
    font-family: "Josefin Sans", sans-serif !important;
    color: var(--transprent-color);
    font-size: 27px !important;
}

.service_carousel img{
    display: flex;
    height: 600px;
    width: 100%;
    object-fit: cover;
     /* min-height: 500px; */
  }
  .service_carousel .position-absolute h4{
    background: linear-gradient( -90deg, transparent  , #ffffffa2);
    color: white;
    padding: 0px 10px;
  }
  .service_carousel .position-absolute{
    z-index: 10;
    height: 100%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* background: linear-gradient( transparent 70%, var(--primary-color)); */
    /* background-color: #000000; */
    top: 0;
    bottom: 0; 
  }
  

  .service_carousel, .slide-carousel{
    position: relative;
  }
  .service_carousel .owl-nav {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content:space-between;
    top: 50%;
    
   
  }
   .slide-carousel .owl-nav {
    position: absolute;
    display: flex;
    width: 100%;
    /* justify-content:space-between; */
    bottom: 5%;
      padding: 0px 5%;
     
   
  }
  .service_carousel .owl-nav button span{
    background-color: white;
    padding: 20px;
    
  }




/*** Speciality ***/

.speciality h5{
    font-family: "Josefin Sans", sans-serif !important;
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 30px;
}

.sp-card{
    transition: .5s all ease-in-out;
}

.sp-card:hover .sp-icon{
    filter: drop-shadow(4px 4px 3px #a0a0a0);
    /* text-shadow: 0px 0px 20px grey; */
    /* filter: blur(20px); */
}


.sp-icon{
    font-size: 40px;
    transition: .5s all ease-in-out;
}


/*** Products ***/

.products img{
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.products h5{
    font-family: "Josefin Sans", sans-serif !important;
    font-size: 25px;
    font-weight: bolder;
}

.product-top{
    position: relative;
    transition: .5s all;
    overflow: hidden;
}

.product-content{
    position: absolute;
    content: "";
    color: white !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    padding: 20px;
    opacity: 0;
    transition: .5s all;
}

.product-top:hover .product-content{
    background-color: var(--transprent-color);
    height: 100%;
    top: 0;
    opacity: 1;
}

.product_section{
    background-image: url(../img/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-attachment: fixed;
    /* background-color: #1313137c;
    background-blend-mode: multiply; */
}

.product_section p{
    letter-spacing: 1px;
    line-height: 30px;
}


.product_carousel img{
    display: flex;
    /* height: 600px; */
    width: 100%;
    object-fit: cover;
     /* min-height: 500px; */
  }
  .product_carousel .position-absolute h4{
    background: linear-gradient( -90deg, transparent  , #ffffffa2);
    color: black;
    padding: 10px 10px;
  }
  .product_carousel .position-absolute{
    z-index: 10;
    height: 100%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* background: linear-gradient( transparent 70%, var(--primary-color)); */
    /* background-color: #000000; */
    top: 0;
    bottom: 0; 
  }
  

  .product_carousel, .slide-carousel{
    position: relative;
  }
  .product_carousel .owl-nav {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content:space-between;
    top: 50%;
    
   
  }
   .slide-carousel .owl-nav {
    position: absolute;
    display: flex;
    width: 100%;
    /* justify-content:space-between; */
    bottom: 5%;
      padding: 0px 5%;
     
   
  }
  .product_carousel .owl-nav button span{
    background-color: white;
    padding: 20px;
    
  }



/**** Quality ****/

.quality h3{
    font-weight: 700;
}





/*** Content ***/

.content{
    background-image: url(../img/service-banner.jpg);
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: #00000025;
    background-blend-mode: multiply; */
    background-attachment: fixed;
}

.content p{
    letter-spacing: 1px;
    line-height: 40px;
    font-size: 18px;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* .testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
} */

/* .testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
} */

/* .testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    background: var(--transprent-color);
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
} */

/* .testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
    background-color: #bdc0c2a4;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
} */



.quote{
    font-size: 50px;
    color: rgb(189, 185, 185);
}

.testimonial-carousel .owl-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    letter-spacing: 3px;
    font-size: 23px;
    color: #b9a893;
}


.testimonial-carousel .owl-nav .owl-prev{
    position: absolute;
    left: -20%;
}
.testimonial-carousel .owl-nav .owl-next{
    position: absolute;
    right: -20%;
}

@media(max-width:999px){
    .testimonial-carousel .owl-nav{
        display: flex;
        align-items: center;
        justify-content: center !important;
        justify-items: center !important;
        /* width: 100%; */
        position: absolute;
        /* top: 50%; */
        bottom: 0;
        left: 0;
        right: 0;
    }
    .testimonial-carousel .owl-nav .owl-prev{
        left: 0;
        bottom: 10%;
    }
    .testimonial-carousel .owl-nav .owl-next{
       bottom: 10%;
        right: 0;
    }
}


/*** Gallery ***/

.ind-gallery .gallery-item {
    overflow: hidden;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
}
  
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
  
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}
  
.gallery-img{
    height: 450px;
    width: 100%;
    object-fit: cover;
    background-size: cover;
}
  
@media(max-width:768px){
    .gallery-img{
        height: 600px !important;
    }
}


/*** Contact ***/

.contact-bg{
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
  }
  
  input,textarea{
    border-radius: 0px !important;
    /* border: 0px !important;
    border-bottom: 1px solid rgb(180, 180, 180) !important; */
    box-shadow: none !important;
  }
  
  .btns{
    border: 1px solid var(--secondary) !important;
    background-color: var(--secondary) !important;
    color: white !important;
    border-radius: 0px !important;
    transition: .5s all ease-in-out;
  }
  
  .btns:hover{
    border-color: #383737 !important;
    background-color: #383737 !important;
  }

  .contact-icon{
    font-size: 17px;
    color: rgb(187, 187, 187);
    /* background-color: var(--transprent-color); */
    /* border-radius: 30px; */
  }

  .contact h3{
    font-family: "Josefin Sans", sans-serif !important;
  }


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .5s all ease-in-out;
}


.footer .btn.btn-link:hover {
    color: var(--transprent-color);
    letter-spacing: 4px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--transprent-color) !important;
}

.footer .footer-icon{
    font-size: 17px;
    color: white;
}

.footer span{
    color: white;
}

.footer .btn-square:hover{
    border-color: var(--transprent-color);
    background-color: var(--transprent-color);
}

.whats a{
    transition: .5s ;
    
}
  
.whats span{
    font-size: 0px;
     word-spacing: -40px;
    transition: .5s ;
   
}
  
.whats:hover span{
   font-size: 13px;
   font-weight: bolder;
   word-spacing:  0px;
    transition: .5s all;
    /* margin-right: 50px; */
}