.header_space {
    transition: all ease-in-out 1s;
    -webkit-transition: all ease-in-out 1s;
}

.header_space .logo {
    position: absolute;
    z-index: 99999;
}
.h-55{ height: 55px;}
.batch-logo{
  width: 86px;
}
section {
  scroll-margin-top: 55px;
}
.tab-indicator{
    height: 48px;
}

/* Outer container */
.trusted-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Moving track */
.trusted-track {
  display: flex;
  gap: 2rem;
  width: max-content;

  animation: trusted-scroll 70s linear infinite;

  /* Prefixes */
  -webkit-animation: trusted-scroll 70s linear infinite;
}

/* Each logo block */
.trusted-track .group {
  flex: 0 0 auto;
  width: 200px;
}

/* Keyframes */
@keyframes trusted-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Webkit prefix */
@-webkit-keyframes trusted-scroll {
  0% {
    -webkit-transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .tab-indicator {
  height: 44px;
  }
}
@media (max-width: 640px) {
  .tab-indicator {
  height: 37px;
  }
}
@media (max-width: 420px) {
  .tab-btn {
        padding-left: 10px;
        padding-right: 10px;
  }
}