.corefeaturesection {
    background-size: 100% 100%;
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.ctaSection {
    background-size: 100% 100%;
}

.companiesList {
    animation:10s infinite linear moveCompany;
}


@keyframes moveCompany {
    0%{
        top:0;
    }

    100%{
        top:-50%;
    }
}

/* media queries */

@media (min-width: 1100px) {
    .nav-desktop {
        display: flex !important; 
    }
    .nav-mobile {
        display: none !important;
    }
}
@media (max-width: 1099px) {
    .nav-desktop {
        display: none !important;
    }
    .nav-mobile {
        display: flex !important;
    }
}

   