#companies {
  background-color: #ffffff;
  .container {
    padding: 60px 20px;
    padding-bottom: 20px;
  }
  .section-heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 80px;
  }
  .section-paragraph {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #2B2B2B;
    max-width: 540px;
  }
  .section-subtitle {
    font-size: 32px;
    font-weight: 500;
    line-height: 32px;
    color: #586f47;
    margin-bottom: 16px;
  }
  .logo-slider {
    overflow: hidden;
    width: 100%;
    height: 120px;
  }

  .logo-column {
    position: relative;
    height: 120px;
    overflow: hidden;
  }

  .logo-image {
    max-width: 100%;
    max-height: 120px;
    position: absolute;
    left: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  }
  .mobile-partner-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
  }
  .logo-image-mobile {
    max-width: 100%;
    max-height: 120px;
    min-height: 45px;
  }

  .logo-image.current {
    transform: translateY(0);
    opacity: 1;
  }

  .logo-image.prev {
    transform: translateY(-100%);
    opacity: 0;
  }

  .logo-image.next {
    transform: translateY(100%);
    opacity: 0;
  }

  @media (min-width: 992px) {
    .container {
      padding: 0;
      padding-top: 48px;
      margin-bottom: 60px;
    }
    .section-heading {
      flex-direction: row;
      gap: 70px;
      margin-bottom: 54px;
    }
    .section-subtitle {
      font-size: 40px;
      line-height: 40px;
    }
    .section-paragraph {
      font-size: 16px;
    }
    .logo-slider {
      height: 96px;
    }
  
    .logo-column {
      height: 96px;
    }
  }
}
