﻿.hero-container {
    height: calc(100vh - var(--navbar-height)) !important;
}
    .hero-container .hero-next-page-arrow {
        bottom: 0;
        color: var(--light-color);
        font-size: 3rem;
        left: 50%;
        position: absolute;
        transform: translate(-50%, -20%);
    }

        .hero-container .hero-next-page-arrow i {
            transform: scale(1);
            animation: pulse 1.5s infinite;
        }

    .home-mro-top p, .home-manufacturing-top {
        line-height: 1.8;
    }

.home-manufacturing-bottom .text-danger, .home-mro-bottom .text-danger, .home-distribution-bottom .text-danger {
    font-size: 1.25rem;
}

.home-manufacturing-bottom .right-aligned {
    width: max-content;
}

img.company-logo {
    max-width: 200px !important;
}

.website-terms p.lead, .website-terms .btn-lg {
    font-size: 1.1rem !important;
}

.website-terms h6 {
    font-size: 1.15rem !important;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

/* Media Queries */

@media (min-width: 992px) {
    img {
        max-width: 400px !important;
    }
}


@media (max-width: 768px) {
    .home-manufacturing-bottom .right-aligned {
        width: 100%;
    }
}