.brands-section__container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: whitesmoke; */
    height: 100vh;
    overflow: hidden;
}

/* Mobile devices */
@media screen and (max-width: 480px) {
    .brands-section__container {
        transform: scale(0.65);
        height: 80vh;
    }
}

/* Small tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .brands-section__container {
        transform: scale(0.75);
        height: 85vh;
    }
}

/* Large tablets */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .brands-section__container {
        transform: scale(0.85);
        height: 90vh;
    }
}

/* Small laptops */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .brands-section__container {
        transform: scale(0.95);
    }
}

@media screen and (min-width: 1440px) and (max-width: 1920px) {
    .brands-section__container {
        transform: scale(1.2);
    }
}

@media screen and (min-width: 1920px) and (max-width: 2100px) {
    .brands-section__container {
        transform: scale(1.5);
    }
}

.brands-section__center-text {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

.brands-section__center-text h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
}

.brands-section__center-text p {
    font-size: 10px;
}

.brands-section__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #80808033;
    border-style: dashed;
    border-radius: 50%;
    z-index: 2;
    animation: 30s infinite linear;
}

@keyframes orbit-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbit-rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.brands-section__orbit-icon {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: contain;
    position: absolute;
    animation: rotate-reverse 30s infinite linear;
    transform-origin: center;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
}

/* Responsive icon sizes */
@media screen and (max-width: 480px) {
    .brands-section__orbit-icon {
        height: 2rem;
        width: 2rem;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .brands-section__orbit-icon {
        height: 2.5rem;
        width: 2.5rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .brands-section__orbit-icon {
        height: 2.8rem;
        width: 2.8rem;
    }
}

.brands-section__orbit-icon.anticlockwise {
    animation: rotate 30s infinite linear;
}

@keyframes rotate-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.logo-smaller {
    transform: scale(0.85);
}

.logo-smaller-strong {
  transform: scale(0.5);
  transform-origin: center;
}

.brands-section__orbit-icon-wrapper {
  position: absolute;
  transform-origin: center;
}

.logo-smaller {
  transform: scale(0.85);
}

.logo-smaller-strong {
  transform: scale(0.1);
}