
.company {
	height: 40px;
	width: auto;
}


/* 
.companyList {

	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2.5rem;

	flex-wrap: wrap;
	gap: 6rem;


}

.home-logo-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}
.home-logo-wrapper.reverse {
  margin-top: -2rem;
}
.clients-grid.logo-animate {
  grid-column-gap: 3rem;
  opacity: 1;
  flex: none;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
}
.logo-animate {
  animation: slide 35s infinite linear;
}
.clients-grid.logo-animate-alt {
  grid-column-gap: 3rem;
  flex: none;
  width: 100rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}
.logo-animate-alt {
  animation: slidealt 35s infinite linear;
  animation-direction: reverse;
}

@keyframes slide {
  0% {
    transform: translateX(calc(0% + 50px));
  }

  100% {
    transform: translateX(-100%);
  }
}

.logo-animate {
  animation: slide 35s infinite linear;

}


@keyframes slidealt {
  0% {
    transform: translateX(calc(0% + 50px));
  }

  100% {
    transform: translateX(-100%);
  }
}

.logo-animate-alt {
  animation: slidealt 35s infinite linear;

  animation-direction: reverse;
}


.logos-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.clients-grid {
  flex: 0 0 auto;
  padding: 0 2rem;
}

.clients-grid img {
  object-fit: contain;
}


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

*/

.divider.companies {
	margin-bottom: 1rem;
}

.section.section-company {
  padding-bottom: 50px;
}

.companyList .row {
  display: flex;
  
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: space-around;
}

.companyList .row a img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.companyList .row a {
  display: flex;
  justify-content: center; 
  align-items: center;     
}


@media (max-width: 1150px) {
  .companyList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .companyList .row {
    display: contents; 
  }

  .companyList a img {
    max-height: 45px;
  }
}

@media (max-width: 780px) {
  .companyList {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .companyList a img {
    padding-bottom: 10px;
  }
}

@media (max-width: 560px) {
  .companyList .row a img {
    max-height: 35px; 
    width: auto;
  }
}