/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #bdbdbd;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #df0a34;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
  }
  
  /*--------------------------------------------------------------
  # Get Startet Button
  --------------------------------------------------------------*/
  .get-started-btn {
    margin-left: 30px;
    background: #01ab86;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
  }
  
  .get-started-btn:hover {
    background: #111111;
    color: #fff;
  }
  
  @media (max-width: 992px) {
    .get-started-btn {
      margin: 0 15px 0 0;
      padding: 6px 18px;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 14px;
    color: #111111;
    white-space: nowrap;
    padding:0.5rem 1rem;
    transition: 0.3s;
  }
  
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar a:hover, .navbar .active, .navbar li:hover > a:hover {
    color: #a5999c;
  }
  
  .navbar .active{
    color: #fff;
    background: #df0a34;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    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: 14px;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
    margin-right: 60px;
  }
  
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #767272;
  }
  
  .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 (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #adb5bd !important;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.fa-times {
    color: rgb(232, 102, 102);
  }
  
  @media only screen and (min-width: 768px) and (max-width:2400px){
    .mobile-nav-toggle {
      visibility: hidden;
    }
  }
  @media only screen and (min-width: 340px) and (max-width:768px){
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #111111;
  }
  
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #df0a34;
  }
  
  .navbar-mobile .getstarted {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #01ab86;
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  
  
  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 1.875rem 0;
    overflow: hidden;
    position: relative;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    animation: fadeIn 5s;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #01ab86;
    bottom: 0;
    left: calc(50% - 25px);
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
  .section-bg {
    padding: 120px 0;
    color: #fff;
  }
  
  .section-bg:before {
    content: "";
    background: #1b1b1b;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*------------- Added for Project detail page  ------------- */
  
  /*------------- onload form ------------- */
  
  
  select{
    background-color: #df0a34;
    color: white;
    font-size: 16px;
    border: none;
    height: 37px;
    width:100%;
  
  }
  select:hover{
    background-color: #a4a2a2;
    border-color: #1b1b1b;
    border-width: 5px;
  }
  option {
   background-color: #a4a2a2;
   margin-top: 0;
  }
  select:hover option {display: block;}
  
  
  
  #enbtns1{
    margin-left: 32%;
   align-items: center;
    height: 35px;
    background-color: #df0a34;
  }
  #enbtns1:hover{
    background-color: #a4a2a2;
  }
  /*--------------------------main-image----------------------*/
  
  .main-img{
    --_g: 10% /45% 45% no-repeat linear-gradient(#000 0 0);
    --m:
   
    -webkit-mask: var(--m);
            mask: var(--m);
    filter: grayscale();
    transition: .3s linear;
    cursor: pointer;
    height:90%;
    width:100%;
  }
  
  .main-img:hover {
    --_i: 10%;
    filter: grayscale(0);
  }
  /*----------------------main heading--------------------------*/
  #main-heading{
    animation: fadeIn 5s;
  }
  
  
  /*---------------------------------moving icons---------------------*/
  
  #box_img{
    border-radius: 30%;
   font-size:45px;
    text-align: center;
    margin-bottom: 10px;
    color: #df0a34;
   
     }
   
     #box_img:hover{
     
      box-shadow: 0px 25px 10px -15px rgb(193, 189, 189);
      -webkit-animation: mover 1s infinite  alternate;
      animation: mover 1s infinite  alternate;
     }
     
  @-webkit-keyframes mover {
      0% { transform: translateY(0); }
      100% { transform: translateY(-12px); }
  }
  @keyframes mover {
      0% { transform: translateY(0); }
      100% { transform: translateY(-12px); }
  }
  
  /*-----------------------buttons---------------------*/
  button{
    background-color:#df0a34;
  }
  #enbtns{
    /* margin-top: 30px;
    margin-bottom: 30px;
    background-color:#df0a34; */
    font-weight: 600;
    padding: 15px 30px;
    color: #ffffff;
    background-color: #f8ed00;
    background-image: linear-gradient(-269.64deg, #f7eb00 -27.05%, #df0a34 109.96%);
    box-shadow: 0px 4px 4px rgb(103 121 255 / 25%);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    
  }
  #enbtns:hover{
    /* transform: translateY(5px);
    background-color: #4f4d4d;
    box-shadow: inset 10px 10px 20px 10px rgba(149, 145, 145, 0.7); */
    font-weight: 600;
    padding: 15px 30px;
    color: #ffffff;
    background-color: #f8ed00;
    background-image: linear-gradient(-269.64deg, #df0a34 -27.05%, #f7eb00 109.96%);
    box-shadow: 0px 4px 4px rgb(103 121 255 / 25%);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    
  }
  
  
  /*-----------------tabs---------------->*/
   .w3-black, .w3-hover-black:hover {
      color: #ede2e2!important;
      background-color: #df0a34!important;
      width: 60%;
      align-items: center;
     
  }
  .w3-black .w3-bar{
      padding-left:90px
  }
  .w3-bar .w3-button {
      white-space: normal;
  }
  .w3-bar .w3-bar-item{
      padding: 12px 16px;
      margin-top: 10px!important;
      float: left;
      width: auto;
      border: none;
      color:white;
    
   }
  .w3-button:hover {
      color: #df0a34!important;
      background-color: #f8f9fa!important;
      border-top-left-radius: 10px;
    border-top-right-radius: 15px;
  
  }
  .w3-container, .w3-panel {
      padding: 20px;
      width: 60%;
      align-items: center;
      background-color: #f8f9fa!important;
  }
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
  
    width: auto;
    /* padding: 5px; */
    top: 30%;
    color: white !important;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 35px;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: right;
    width: 16.66%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
  
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }

 