@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

*{
    font-family: "Cabin", sans-serif;
}

a{
    text-decoration: none;
}

:root{
    --primary: #291900;
    --secondary: #ffbb00;
}



/***** Navbar ******/

.navbar{
    background-color: var(--primary);
}

.navbar .nav-link{
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    transition: .5s all ease-in-out;
}

.navbar .nav-link:hover{
    color: white;
}

.navbar .nav-item .active{
    color: white;
}

.navbar-brand h4{
    color: white;
}

.navbar .dropdown-menu{
    border: 0px !important;
    border-radius: 0px !important;
    background-color: var(--primary);
    /* color: white; */
}

@media(max-width:768px){
    .navbar .dropdown-menu{
        background-color: white;
    }
    .navbar .dropdown-menu .dropdown-item{
        color: var(--primary) !important;
    }
    .navbar .dropdown-menu .dropdown-item:hover{
        color: var(--secondary) !important;
    }
}

.navbar .dropdown-menu .dropdown-item{
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    transition: .5s all ease-in-out;
}

.navbar .dropdown-menu .dropdown-item:hover{
    background-color: transparent !important;
    color: white;
    margin-left: 7px;
    /* letter-spacing: 1px; */
}
.navbar .navbar-toggler{
    box-shadow: none !important;
    border-radius: 0px !important;
    color: white !important;
    border: 0px !important;
    font-size: 35px;
}

.dropdown .dropdown-item.active{
    color: white !important;
    background-color: transparent !important;
}

@media(min-width:768px){

    
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 7px;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: var(--primary);
        /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
        transition: 0.3s;
      }
    
      .navbar .dropdown ul li {
        min-width: 200px;
      }
    
      .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--color-default);
        font-weight: 400;
      }
    
      .navbar .dropdown ul a i {
        font-size: 12px;
      }
    
      .navbar .dropdown ul a:hover,
      .navbar .dropdown ul .active:hover,
      .navbar .dropdown ul li:hover>a {
        color: var(--color-primary);
      }
    
      .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
      }
    
      .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
      }
    
      .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
      }
    
      @media (min-width: 1280px) and (max-width: 1366px) {
        .navbar .dropdown .dropdown ul {
          left: -90%;
        }
      
        .navbar .dropdown .dropdown:hover>ul {
          left: -100%;
        }
      }
}




/****** Carousel ******/

/* .slide-carousel{
    z-index: inherit;
} */

.owl-carousel{
    display: block;
}

.slide-carousel h1{
    font-size: 70px;
    color: #ffffff;
    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 #b4b4b4;
    letter-spacing: 2px;
}


.slide-carousel img{
    height: 80vh !important;
    width: 100%;
    object-fit: cover;
} 

@media(max-width:768px){
    .slide-carousel img{
        height: 50vh !important;
    }
}




/***** Breadcrumbs *****/

.breadcrumbs {
    padding: 140px 0 70px 0;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
  }
  
  .breadcrumbs:before {
    content: "";
    /* background-color: rgba(0, 0, 0, 0.6); */
    position: absolute;
    inset: 0;
  }
  
  .breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-secondary);
  }
  
  @media(max-width:768px){
    .breadcrumbs h2{
      font-size: 30px;
    }
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
  }
  
  .breadcrumbs ol a {
    color: var(--secondary);
    transition: 0.3s;
  }
  
  .breadcrumbs ol a:hover {
    text-decoration: underline;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--primary);
    content: "/";
  }



/***** About *****/

.about .bg-secondary{
    background-color: var(--primary) !important;
}

.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}




/***** Highlight Content *****/

.highlight-content{
    background-image: url(../imgs/pillers.jpg);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    padding: 130px 0px;
    background-attachment: fixed;
    /* background-position: center; */
    /* background: linear-gradient(90deg, black, transparent);
    background-blend-mode: multiply; */
}

@media(max-width:768px){
    .highlight-content{
        padding: 30px 15px!important;
    }
}



/***** Images *****/

.images img{
    height: 250px !important;
    width: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}

.images img:hover{
    box-shadow: 0px 15px 10px 0px rgb(194, 193, 193);
    margin-top: -20px;
}



.port-img{
    height: 250px !important;
    width: 100%;
    object-fit: cover;
}



/****** Contact *******/


.contact .ctn-icon{
    font-size: 19px;
    color: white;
    background-color: var(--secondary);
    border-radius: 0px;
}

.contact input, textarea{
    border-radius: 0px !important;
    box-shadow: none !important;
}

.contact .btns{
    border: 1px solid var(--secondary) !important;
    background-color: var(--secondary) !important;
    color: white !important;
    border-radius: 0px !important;
}


/****** Footer *******/

.footer{
    background-color: #212121;
    color: white;
}

.footer .footer-item a{
    color: white;
}

.footer .footer-item ul li a{
    color: white;
    transition: .5s all ease-in-out;
    transition-duration: 0.7s 0.ms;
}

.footer .footer-item ul li a:hover{
    color: rgb(178, 178, 178);
    letter-spacing: 3px;
}

.footer .footer-social a{
    color: white;
    font-size: 19px;
    background-color: #767575;
    border: 1px solid #767575;
    border-radius: 0px !important;
    transition: .5s all ease-in-out;
    transition-duration: 0.7s 0.ms;
}

.footer .footer-social a:hover{
    background-color: #7675755c;
}

.footer .copyright{
    color: #767575;
}

.footer .copyright a{
    color: #ffffff;
    transition: .5s all ease-in;
}

.footer .copyright a:hover{
    color: var(--secondary);
}

@media(max-width:768px){
    .footer .copyright{
        text-align: center;
    }
}