/* Desktop */
@media only screen and (min-width: 1367px) and (max-width: 1920px) {
    .container {
        width: 100%;
        max-width: 1250px;
        margin: 0 auto;
    }
}

/* Laptop */
@media only screen and (min-width: 1251px) and (max-width: 1366px) {
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Smaller Laptop */
@media only screen and (min-width: 1025px) and (max-width: 1250px) {
    .container {
        width: auto;
        max-width: 100%;
        margin: 0 30px;
    }

    /* Fonts */
    h1 {
        font-size: 4.25rem;
    }
}

/* Ipad Pro view Landscape */
@media only screen and (min-width: 901px) and (max-width: 1024px) {
    .container {
        width: auto;
        max-width: 100%;
        margin: 0 30px;
    }

    /* Fonts */
    h1 {
        font-size: 4.25rem;
    }
}

/* Portrait : Ipad Pro */
@media only screen and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 1) and (min-device-width : 901px) and (max-device-width : 1024px) {
    .hero_text {
        width: 80%;
    }
}

/* Ipad Mini view Landscape */
@media only screen and (min-width: 768px) and (max-width: 900px) {
    .container {
        width: auto;
        max-width: 100%;
        margin: 0 30px;
    }

    /* Fonts */
    h1 {
        font-size: 4.25rem;
    }
    h2 {
        font-size: 2.75rem;
    }
    h4 {
        font-size: 1.2rem;
    }

    .hero_text {
        width: 80%;
    }
    #contact .col_6:first-child {
        width: 40%;
    }
    #contact .col_6:last-child {
        width: 60%;
    }

}

/* Mobile Devices */
@media only screen and (min-device-width : 100px) and (max-device-width : 767px) {
    .container {
        max-width: 100%;
        width: auto;
        margin: 0 1rem!important;
    }
    .col_6 {
        width: 100%;
    }

    /* Header */
    nav {
        display: none;
    }

    /* Fonts */
    h1 {
        font-size: 3.9rem;
    }
    h2 {
        font-size: 2rem;
        letter-spacing: -1.5px;
    }
    h4 {
        font-size: 1.2rem;
    }

    .hero_text {
        width: 100%;
    }
    .service_heading {
        margin-bottom: 55px;
    }
    .single_service_box {
        width: 100%;
    }
    .single_service_box_items {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px 0;
    }
    #contact .flexbox {
        flex-direction: column;
    }
    .contact_banner img {
        width: 50%;
        margin-left: -7%;
    }
    #contact .col_6:last-child {
        margin-left: 0;
    }

    /* Footer */
    footer .flexbox {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .c_info {
        margin-top: 30px;
        flex-flow: wrap;
        width: 70%;
    }

    /* Button */
    .hero_buttons {
        flex-direction: column;
        gap: 20px 0;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .btn_primary {
        height: 54px;
    }
    .btn_arrow {
        width: 54px;
        visibility: visible;
        opacity: 1;
        margin-left: 10px;
    }
    .btn_linear {
        padding-right: 6px;
    }
    .btn_linear:hover .btn_arrow {
        width: 54px;
        visibility: visible;
        opacity: 1;
        margin-left: 10px;
    }
}