/* responsive.css
    Mobile-first base styles + major media queries
*/


/* Large screens (<= 1024px) - small laptops / desktops */

@media (max-width: 1366px) {
    .home-banner .content {
        padding: 60px 0px 200px;
    }
    .home-banner h1,
    .title-area h1 {
        font-size: 60px;
    }
}


/* Large screens (<= 1024px) - small laptops / desktops */

@media (max-width: 1280px) {
    .stats .stats-cta h2 {
        font-size: 45px;
    }
    .nav-right {
        display: none;
    }
    footer .email {
        word-break: break-all;
    }
}


/* Medium screens (<= 768px) - tablets */

@media (max-width: 1024px) {
    .stats .stats-cta {
        height: unset;
        margin-top: -154px;
        border-radius: 15px;
        background: rgba(0, 0, 0, 0.35);
    }
}


/* Small screens (<= 480px) - phablets / large phones */

@media (max-width: 992px) {
    section h2 {
        font-size: 36px;
    }
    .stats .stats-cta h2 {
        font-size: 40px;
    }
    .home-banner h1,
    .title-area h1 {
        font-size: 50px;
    }
    .title-area .content {
        padding: 50px 0px;
    }
    .about-us .image-area img.rotate-about {
        left: 0;
        top: 0;
    }
}


/* Small screens (<= 480px) - phablets / large phones */

@media (max-width: 768px) {
    .stats .stats-cta {
        margin-bottom: 25px;
    }
    .step-box.arrow-box::after {
        right: 0px;
        border-right: 24px solid #fff;
    }
    .process-text {
        max-width: 100%;
        margin: auto;
        font-size: 15px;
        color: #444;
    }
    .error-404 h1 {
        font-size: 80px;
    }

    .error-404 h2 {
        font-size: 28px;
    }

    .error-404-icon {
        font-size: 100px;
    }
    
}


/* Small screens (<= 480px) - phones / large phones */

@media (max-width: 480px) {
    .service-areas ul li {
        flex: 0 0 50%;
    }
}