@import url(https://cdnjs.cloudflare.com/ajax/libs/MaterialDesign-Webfont/5.3.45/css/materialdesignicons.min.css);

*{
    font-family: "Arimo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
h1{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
video{
    width: 75%;
}
nav  ul li .hov-line{
    background-color: #f97316;
    background-image: linear-gradient(to right, #ff6a00 ,rgb(249, 148, 70));
    transform-origin: right;
    transition: transform 0.5s ease-in-out;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
}
nav  ul li:nth-child(1) .hov-line{
    width: 100%;
    transform: scaleX(1);
}
nav  ul li:hover .hov-line{
    transform: scaleX(1);
    transform-origin: left;
}
.hero{
    width: 75%;
    
}
.home{
    background-image: url(../assets/images/panoramic-view-abstract-fog-white-600nw-2043241487.jpg);
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
::-webkit-scrollbar {
    width: 4px;
  }
  
  ::-webkit-scrollbar-track {
    background: #000000;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #de6007;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #a34e20;
  }



  @keyframes carouselAnim {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(calc(-63% + (1*300px)));
    }
  }
  
  @media only screen and (max-width: 768px) {
    .container .carousel-items {
      animation: carouselAnim 60s infinite alternate linear;
    }
    @keyframes carouselAnim {
      from {
        transform: translate(0, 0);
      }
      to {
        transform: translate(calc(-100% + (1*400px)));
      }
    }
  }
  
  .carousel-focus:hover {
    transition: all 0.8s;
    transform: scale(1.1);
  }
