:root{
  --primary: #FA4216 ;
  --primaryDark: #FA4216 ;
  --secondary: #192C70 ;
  --secondaryDark: #042447 ;
  --darkGrey: #333333 ;
  --lightGrey: #F7F7F8 ;
}
body{
  font-family: 'Poppins', sans-serif;
}

.who_we_are::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: url('/assets/images/road.jpg') no-repeat right bottom;
    background-size: cover;
    z-index: 0;
    display: none;
  }
  /* feature black gradient curtain */
  .feature_img::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background:linear-gradient(0deg, rgba(0,0,0,.7) 20%, rgba(0,0,0,0) 100%);
    z-index: 0;
    height: 200px;
  }
/* image zoom effect */
  .bg-img {
      transition: transform 6s; /* Animation */
      margin: 0 auto;
    }
    
    .bg-img:hover {
      transform: scale(1.03); 
    }

    /* footer logo */
    .isnad-footer_logo{
      height: 100px;
    }
    /* fade effect on image */
    img.fade {
      opacity: 0.3;
      transform: scale(0.8);
      animation: fadeIn linear forwards; 
      animation-timeline: view();
      animation-range: cover contain;
    }

/* ===========  Images Slider  start ============ */


.slider {
  margin: 0 auto;
  height: 100%;
}

.slide_viewer {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
}

.slide:first-child {
  display: block;
}


.slide_buttons {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  bottom: 0px;
}

a.slide_btn {
  color: white;
  font-size: 42px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide_btn.active, .slide_btn:hover {
  color: var(--primary);
  cursor: pointer;
}

.directional_nav {
  height: 340px;
  margin: 0 auto;
  position: relative;
  top: -340px;
}

.previous_btn {
  bottom: 0;
  left: 100px;
  margin: auto;
  position: absolute;
  top: 0;
}

.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 100px;
  top: 0;
}

.previous_btn, .next_btn {
  cursor: pointer;
  height: 65px;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 65px;
}

.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .previous_btn {
    left: 50px;
  }
  .next_btn {
    right: 50px;
  }
}
/* Images Slider  end*/

/* ===================== Services page =========================== */
.service_card{
  box-shadow: 0 0 16px #00000021;
}
/* ===================== Services page end =========================== */
    
    @keyframes fadeIn {
      75%{
        top:200px;
        opacity: 1;
        transform: scale(1);
      }
    }
    /* slide effect on image */
    img.scaleInOut {
      transform: scale(0.4);
      animation: scaleInOut linear forwards; 
      animation-timeline: view();
      animation-range: cover contain;
    }
    
    @keyframes scaleInOut {
      75%{
        top:200px;
        transform: scale(1.2);
      }
    }


  @media (min-width: 1200px) {
    .who_we_are::after{
      width: 550px;
      height: 250px;
      display: block;
      
    }
  }

