.navbar-brand img{
    max-width: 180px;
}

.nav-item{
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 600;
}

p{
    font-size: 14px;
}

.section-marquee {
    display: block;
    position: relative;
  }
  .section-marquee:before, .section-marquee:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
  }
  .section-marquee:before {
    left: 0;
    /* background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%); */
  }
  .section-marquee:after {
    right: 0;
    /* background: rgb(255, 255, 255);
    background: linear-gradient(270deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 100%); */
  }
  
  .marquee {
    --gap: 80px;
    position: relative;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    align-items: center;
    gap: var(--gap);
  }
  
  .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 30s linear infinite;
    margin: 0;
    padding: 0;
  }
  .marquee__content li {
    list-style: none;
  }
  .marquee__content li img {
    margin-top: 16px;
  }
  .marquee__content.slow {
    animation-duration: 120s;
  }
  .marquee__content.reverse {
    animation-direction: reverse;
  }
  
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  @property --num {
    syntax: "<integer>";
    initial-value: 29;
    inherits: false;
  }
  @property --num2 {
    syntax: "<integer>";
    initial-value: 1994;
    inherits: false;
  }
  .num-1::after {
    content: counter(num);
  }
  
  .num-2::after {
    content: counter(num2);
  }
  
  @keyframes establishment {
    from {
      --num: 0;
    }
    to {
      --num: 29;
    }
  }
  @keyframes customers {
    from {
      --num2: 0;
    }
    to {
      --num2: 1994;
    }
}

.bg-grey{
    background-color: #F7F7F7;
}

.active-filter{
  color: #FF0000 !important;
  background-color: #ff000061 !important;
}

.show-mobile{
  display: none;
}

.container-about{
  padding: 3rem;
}

@media (max-width: 668px) {
  .hide-mobile{
    display: none !important;
  }

  .show-mobile{
    display: block !important;
  }

  .container-about{
    padding: 1rem !important;
  }
}