/* @import url('https://fonts.googleapis.com/css2?family=Baskervville+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville+SC&family=Mukta:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&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&display=swap');

*{
    /* font-family: "Mukta", sans-serif; */
    /* font-family: "centurygothic"; */
    font-family: "Poppins", sans-serif;
}

:root{
    --primary: #000000;
    --secondary: #931a1b;
    /* --secondary: #ffae00; */
}

@font-face {
    font-family: "centurygothic";
    src: url(../Century-Gothic/centurygothic.ttf);
}

p{
    text-align: justify !important;
}

h1, h2, h3{
    /* font-family: "Baskervville SC", serif; */
    /* font-family: "Playfair Display", serif; */
    color: var(--secondary);
}

.products h4, h5{
    color: var(--secondary);
}

a{
    text-decoration: none;
}


/****** Back to Top ******/

.back-to-top{
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: white;
    border-radius: 0px;
    position: fixed;
    bottom: 5%;
    right: 5%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}



/******Preloder ******/

/* .preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 26px;
    background: var(--rr-common-white);
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    right: 30px;
    top: 30px;
  }
  
  #preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #121212;
    z-index: 999;
  }


  .sk-three-bounce {
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #121212;
  }
  
  .sk-three-bounce .sk-child {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--rr-theme-primary);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  }
  
  .sk-three-bounce.is-brick-red.sk-three-bounce .sk-child {
    background-color: var(--rr-theme-2);
  }
  
  .sk-three-bounce.is-mainly-blue.sk-three-bounce .sk-child {
    background-color: var(--rr-theme-3);
  }
  
  .sk-three-bounce.is-orange.sk-three-bounce .sk-child {
    background-color: var(--rr-theme-4);
  }
  
  .sk-three-bounce.is-purple.sk-three-bounce .sk-child {
    background-color: var(--rr-theme-5);
  }
  
  .sk-three-bounce .sk-bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .sk-three-bounce .sk-bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-three-bounce {
    0%, 80%, 100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    40% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes sk-three-bounce {
    0%, 80%, 100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    40% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  } */


/****** Top Bar ******/

.top_bar{
    background-color: var(--primary);
}


/******* Navar *******/


.navbar-brand h1{
    color: var(--primary);
}

.navbar-brand h1 span{
    color: var(--secondary);
}


.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: var(--primary);
    font-size: 17px;
    font-weight: 500;
    /* text-transform: uppercase; */
    outline: none;
    /* font-family: "Mukta", sans-serif !important; */
    font-family: "Poppins", sans-serif;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary) !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; */
}


/****** Page Header ******/


.page-title{
    padding: 200px 0px;
    background-image: url(../imgs/header.jpeg);
    background-size: cover;
    /* background-position: center; */
    object-fit: cover;
    background-color: #0000007c;
    background-blend-mode: multiply;
    /* background-attachment: fixed; */
}

@media(max-width:768px){
    .page-title{
        padding: 130px 0px !important;
    }
}

.page-header{
    background-color: rgba(241, 241, 241, 0.76);
}


.page-header .page-h{
    font-size: 19px;
    color: black;
    transition: .5s all;
}

.page-header .page-h:hover{
    color: var(--secondary);
}

.page-header a span{
    color: var(--primary) !important;
}


/****** Carousel ******/


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

/* .slide-carousel h1{
    font-size: 70px;
    color: rgb(255, 255, 255);
    letter-spacing: 5px;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
    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; */
} 

@media(min-width:768px){
    .slide-carousel img{
        /* height: 100% !important; */
        object-fit: cover !important;
        background-position: center !important;
    }
}



/****** Highlight *****/


.cards{
    transition: .5s all ease-in-out;
    -webkit-box-shadow: 0px 30px 60px 0px rgba(0, 15, 32, 0.1);
    box-shadow: 0px 30px 60px 0px rgba(0, 15, 32, 0.1);
    border-bottom: 3px solid transparent;
}
.cards:hover{
    border-bottom: 3px solid var(--secondary);
}






/****** About ******/


.about p{
    /* font-size: 17px;
    letter-spacing: 1px;
    line-height: 30px; */
    color: black;
}

.icon{
    color: var(--secondary);
}



.btns{
    background-color: var(--secondary);
    color: white;
}



/****** Forms ******/

.forms input,textarea{
    box-shadow: none !important;
    border-radius: 0px !important;
}

.forms .btns{
    background-color: var(--secondary);
    color: white;
    border-radius: 0px !important;
    border: 1px solid var(--secondary);
}

.forms .btns:hover{
    background-color: transparent;
    color: var(--secondary);
}

.forms select{
    border-radius: 0px !important;
    box-shadow: none !important;
}







/****** Content ******/

.content{
    background-image: url(../imgs/content-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    background-attachment: fixed;
    background-color: #000000ad;
    background-blend-mode: multiply;
}

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



/**** Products *****/


.ui-widget.ui-widget-content {
    border: 0px !important;
}

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: 10px !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    gap:0px !important;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: 10px 20px !important;
    text-decoration: none;
}

@media(min-width:768px){
    .ui-tabs .ui-tabs-nav .ui-tabs-anchor{
        padding: 10px !important;
    }
    .ui-tabs .ui-tabs-nav li{
        font-size: 19px !important;
    }
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border: 1px solid var(--secondary) !important;
    padding: 0;
    white-space: nowrap;
    border-radius: 0px !important;
    border-bottom: 0px !important;
    font-size: 23px !important;
}

.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab.ui-tabs-active.ui-state-active{
    background-color: var(--secondary) !important;
    color: white !important;
    border: 1px solid var(--secondary) !important;
    border-bottom: 0px !important;
}

.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab{
    background-color: transparent !important;
    color: black !important;
    border: 1px solid var(--secondary) !important;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    border-bottom-right-radius: 0px !important;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
    border-bottom-left-radius: 0px !important;
}

.ui-widget-header {
    border: 0px !important;
    background: transparent !important;
    color: #333333;
    font-weight: bold;
}

.angle{
    font-size: 20px;
    color: var(--secondary);
}






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


/***** Footer *****/

.footer{
    background-color: #303030;
}

.copyright{
    letter-spacing: 2px;
}

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