/* `xxxl` applies to xx-large devices (large desktops, less than 1680px) */
@media (max-width: 1679.98px) {
    html {
        font-size: 58.5%;
    }
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    html {
        font-size: 58.5%;
    }
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .navbar .navbar-brand {
        flex: 0 0 24rem;
    }
    .navbar.bg-black .navbar-brand {
        flex: 0 0 22rem;
    }

    /* hero section */
    .hero_section .content_wrapper {
        width: 75rem;
    }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section_padding {
        padding: 10rem 0;
    }

    /* navbar  */
    .navbar {
        padding-top   : 1.2rem;
        padding-bottom: 1.2rem;
    }

    .navbar .navbar-brand {
        flex: 0 0 20rem;
    }

    .navbar.bg-black .navbar-brand {
        flex: 0 0 18rem;
    }

    .navbar-light .navbar-toggler,
    .navbar-light .navbar-toggler:focus {
        color       : var(--gray);
        border-color: var(--gray);
        box-shadow  : none;
    }

    .navbar-light .navbar-toggler-icon {
        width : 2.4rem;
        height: 2.4rem;
        filter: grayscale(0) invert(1);
    }

    .navbar-nav {
        padding-top: 2.4rem;
    }

    .navbar-nav .nav-item:not(:last-of-type) {
        margin-right : 0;
        margin-bottom: 3.2rem;
    }

    .navbar-nav .nav-item .nav-link {
        display: inline-block;
    }


    /* hero section */
    .hero_section {
        height: 70vh;
    }

    .hero_section .content_wrapper {
        width: 84%;
    }


    /* about us section */
    .about_us .row {
        margin-top: -16px;
    }

    .about_us .row>* {
        padding-top: 16px;
    }


    /* services section */
    .service_section .icon_wrapper img {
        width: 62px;
        height: 62px;
    }


    /* footer */
    .contact_info_wrapper ul {
        display: block;
    }

    .contact_info_wrapper li {
        justify-content: flex-start;
    }

    .contact_info_wrapper li:not(:last-child) {
        margin-bottom: 12px;
        margin-right : 0;
    }


    /* single blog page */
    .single_content img {
        float: left;
        margin-left: 0;
        margin-bottom: 2.4rem;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    html {
        font-size: 40%;
    }

    .blog-slide .owl-nav {
        bottom: -20px;
    }

    .section_padding {
        padding: 8rem 0;
    }



    /* services section */
    .service_section .icon_wrapper img {
        width : 42px;
        height: 42px;
    }

    .service_section .content_wrapper .content {
        max-height: 82px;
    }

    .service_section .content_wrapper p {
        font-size: 2.1rem;
    }

    /* map section */
    .map_wrapper {
        min-height: 380px;
    }

    .map_wrapper iframe {
        height: 380px;
    }


    /* footer */
    .footer {
        padding: 12px 0;
    }



    .contact_info_wrapper p {
        font-size: 12px;
    }

    .social_Icons_wrapper {
        flex-direction: column;
    }

    .social_Icons_wrapper a {
        max-width : 22px;
        max-height: 22px;
    }

    .social_Icons_wrapper a:not(:last-child) {
        margin-bottom: 4px;
        margin-right : 0;
    }

    .contact_info_wrapper img {
        max-width: 12px;
    }
}