.hero-container {
    .product-banner {
        position: absolute;
        left: 50%;
        top: 0;
        border-radius: 5px;
        color: var(--text-secondary);
        text-wrap: nowrap;
        background-color: var(--brand-2);
        transform: translateX(-50%);
        min-width: 100%;
        text-align: center;
    }

    .hover-scale {
        transition: all .3s ease;

        &:hover {
            transform: scale(1.01) rotate(1deg);
        }
    }
}

@media(min-width: 992px) {
    .hero-container {
        padding-top: 10rem !important;
    }

    .product-banner.left {
        top: 0;
        left: 0;
        transform: translate(-50%, -20%) rotate(-25deg);
    }

    .product-banner.right {
        top: 0;
        right: 0;
        transform: translate(0%, -20%) rotate(25deg);
    }
}

.banner-scroller {
    color: var(--text-secondary);
    background-color: var(--brand-1);
    overflow: hidden;
    padding-left: 1.5rem;
    width: 100%;
    position: relative;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* transform: rotate(1.5deg); */

    .scroll-content-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        min-height: 30px;
        width: fit-content;
        animation: scroll 90s infinite forwards linear;
    }
}

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

@media(min-width: 992px) {
    .banner-scroller {
        .scroll-content-wrapper {
            animation: scroll 60s infinite forwards linear;
        }
    }
}

/* why choose section */
.hover-icon {
    transition: all .3s ease;

    &:hover {
        background-color: var(--brand-2);
        color: var(--text-secondary) !important;
    }
}

.call-queue-container {
    padding-top: 100px;
    margin-top: 250px;
}

@media(min-width: 768px) {
    .call-queue-container {
        padding-top: 0px;
        margin-top: 100px;
    }
}

.float-vert {
    display: inline-block;
    animation: floatvert 1s infinite alternate ease-in-out;
    /* position: absolute; */
}

@keyframes floatvert {
    from { transform: translateY(-2px); }
    to { transform: translateY(2px); }
}

