/* ====================custom css============================*/
:root {
  --primary-color: #1F1F1F;
  --secondary-color: #185ca1;
  --heading-color: #0a1851;
  --binary-color:#fda31b;
}
.main-menu .main-menu__list>li.dropdown>a:after{
    display: none;
}
/*curssor*/
.cursor {
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
      background-color 0.3s, width 0.3s, height 0.3s;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border: 1px solid #0981d1;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 1px solid #0981d1;
    outline-offset: 10px;
    &.active {
      transform: translate(-50%, -50%) scale(1.5);
    }
    &.hidden {
      opacity: 0 !important;
    }
  }
  

  /*bottom to top button css*/
  .progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background: #0981d1;
    box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
  }
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .progress-wrap::after {
    position: absolute;
    font-family: 'FontAwesome';
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #fff; /* --- Pijl kleur --- */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
  }
  .progress-wrap:hover::after {
    opacity: 0;
  }
  .progress-wrap::before {
    position: absolute;
    font-family: 'FontAwesome';
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: #fff; /* --- Pijl hover kleur --- */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
  }
  .progress-wrap:hover::before {
    opacity: 1;
  }
  .progress-wrap svg path { 
    fill: none; 
  }
  .progress-wrap svg.progress-circle path {
    /* stroke:var(--primary-color); */
    stroke-width: 5;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
  }

  /*truc animation */
  .banner-two{
    position: relative;
  }
  .truck-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: moveTruck 8s linear infinite;
    will-change: transform;
  }
  
  @keyframes moveTruck {
    0% {
      transform: translateX(-100%); 
    }
    100% {
      transform: translateX(110vw);
    }
  }

  .container-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    animation: ShapeTruck 8s linear infinite;
    will-change: transform;
    z-index: 3;
  }
  
  @keyframes ShapeTruck {
    0% {
      transform: translateX(-50%); 
    }
    100% {
      transform: translateX(110vw);
    }
  }


 .icon-shap {
  position: absolute;
  bottom: 0;
  left: 50%;
  animation: arrowAnimate 7s linear infinite;
  will-change: transform;
  z-index: 3;
}

@keyframes arrowAnimate {
  0% {
    transform: translateX(-50%); 
  }
  100% {
    transform: translateX(110vw);
  }
}
.icon-plane1{
  top: 0;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
}

::-webkit-scrollbar-thumb {
  background: #0981d1;
}


/* custom css */
.transport-img{
  width: 30px;
}
/*custom mobile view side bar*/
.custom-mob-menu{
  background-color:var(--primary-color) !important;
  color: #fff;
}
 .custom-mob-menu ul.navbar-nav{
  width: 100%;
  flex-direction: column;
}
.custom-mob-menu .navbar-light .navbar-nav .nav-link{
  color: #fff;
  border-top: 1px solid #3f3e3e;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 .custom-mob-menu.navbar-nav{
  width: 100%;
}
 .navbar-nav .dropdown-menu{
  background-color: var(--primary-color);
}
.custom-mob-menu .dropdown-item{
  color: #fff;
  border-top: 1px solid #3f3e3e;
}

/*sub menu under sub menu*/
.custom-mob-menu .navbar-nav .nav-link {
  color: #fff;
}
.custom-mob-menu .dropend .dropdown-toggle {
  color: salmon;
  margin-left: 1em;
}
.custom-mob-menu .dropdown-item:hover {
  background-color: lightsalmon;
  color: #fff;
}
.custom-mob-menu .dropdown .dropdown-menu {
  display: none;
}
.custom-mob-menu .dropdown:hover > .dropdown-menu,
.custom-mob-menu .dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}
@media screen and (min-width: 769px) {
 .custom-mob-menu .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
 .custom-mob-menu .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}


/*custom bar*/
.custom-bar div{
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  padding-bottom: 3px;
}