.insurance-providers p {
    font-family: "Poppins", "sans-serif" !important;
    font-size: 18px;
    font-weight: 600;
}

.carousel {
    position: relative;
    overflow: hidden;
    /*width: 100vw;*/
    margin: auto;
    background-color: white;
}

.carousel::before,
.carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 1;
}

.carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
}

.carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
}

.carousel-track {
    display: flex;
    animation: scroll 35s linear infinite;
    width: calc(200px * 6);
    margin-top: 20px;
}

.carousel-track img {
    width: auto;
    height: auto;
    max-height: 35px;
    margin: 0 40px;
}

@keyframes scroll  {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 12));
    }
}

@media (max-width: 600px) {
    .carousel-track img {
        max-height: 30px;
    }
}
