/*START PARTNERS*/
/* .slider-items {
    display: flex;
    animation: slide-partners 30s linear infinite;
}

.slider-items img {
    width: 200px;
    height: 75px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.slider {
    width: 60%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    padding: 20px;
    margin: 0 auto;
}

@keyframes slide-partners {
    0% {
        transform: translateX(0);
    }

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

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

.slider-items {
    animation: slide-partners 30s linear infinite;
}

.slider-items {
    display: flex;
    gap: 30px;
}

.slider-items {
    display: flex;
    gap: 30px;
}

.slider-items::after {
    content: '';
    display: block;
    width: 100%;
} */

/* END PARTNERS */


/* -----------partners ----------- */

#partners{
display: flex;
justify-content: center;
z-index: 1;
}


/* #partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%; 
  transform: translateX(-50%); 
  width: 80%; 
  height: 1px; 
  background-color: rgba(0, 0, 0, 0.308); 
} */

#partners::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%; 
  transform: translateX(-50%); 
  width: 80%; 
  height: 1px; 
  background-color: rgba(0, 0, 0, 0.249);
}

.partnersContainer{
    background-color: #fff;
    width:80%;
    margin-left: auto;
    margin-right: auto;
}








.PartnersGallery {
    width: 60vw;
    max-width: 60em;
/*     background-color: aqua; */
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
/*   border-top: 1px solid rgb(116, 116, 116); */
  padding: 1em;
}

.item {
  position: relative;
}

.item img {
  width: 15em;
  height: 10em;
  object-fit:contain;
  display: block;
  border: 2px solid transparent;
  transition: border-color 0.4s;
  opacity: 0.6;
  padding: 0.4em;
  border-radius: 2%;

}

.item.active img {
  border-color: rgba(116, 116, 116, 0.265);
  opacity: 1;
/*     filter: grayscale(100%) contrast(120%) brightness(90%); */
  box-shadow: 0 0 40px 20px rgba(0, 0, 0, 0.078) inset;
}





/* responsive mobile-------------------- */

@media (max-width: 700px) {


.partnersContainer{
    background-color: #fff;
    width:100%;
    margin-left: auto;
    margin-right: auto;
}



.PartnersGallery {
    width: 90vw;
    max-width: 60em;
/*     background-color: aqua; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
/*   border-top: 1px solid rgb(116, 116, 116); */
  padding: 1em;
/*   background-color: red; */
}

}


