/*  MEDIA QUERIES FOR RESPONSIVENESS (By James Ok!)
============================================================================= */


/*========================================================================
    || Big screen to 1200px (width smaller than the 1140px row)         ||
==========================================================================*/
@media only screen and (max-width: 1200px) {
    .services-computer {
        margin: 5rem 4% 5rem 5%;
    }
    .services-translation {
        margin: 5rem 4% 5rem 5%;
    }
}

/*========================================================================
    ||       small to big tablets (from 768px to 1023px)         ||
==========================================================================*/
@media only screen and (max-width: 1023px) {   
    .section-projects p {
        margin: 2rem 10%;     
    }
    .section-blog div:first-child p {
        margin: 2rem 10%;   
    }
    .contact-form {
        width: 80%;
    }
}

/*========================================================================
    ||   big phones to small tablets ( from 481px to 767px )        ||
==========================================================================*/
@media only screen and (max-width: 767px) {
    .main-heading-box {
        margin-right: 6%;
        margin-left: 6%;
    }

    .top-contact-list {
        display: none;
    }

    .services-computer {
        margin-left: 10%;
        margin-right: 5%;
    }
    .services-translation {
        
        margin-left: 10%;
        margin-right: 5%;
    }

    .contact-form {
        width: 100%;
    }

    .contact-us-details {
    
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-content: center;
        /* padding: 5rem 0; */
        text-align: center;
    }
    .contact-us-item {
        margin-bottom: 1.5rem;
    }
    .logo {
        height: 6rem;
        width: auto;
    }
}

/*========================================================================
    ||   small phones  ( from 0 to 480px )        ||
==========================================================================*/
@media only screen and (max-width: 500px) {
    .main-heading-box {
        display: flex;
        flex-direction: column;
    }

    .main-heading-box h1 {
        font-size: 3rem;
    }

    .main-heading-box p {
        font-size: 2.5rem;
    }

    .heading-buttons {
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
    }

    .heading-buttons .btn-full {
        margin-bottom: 1rem;
    }
    .heading-buttons .btn-outline {
        margin-left: 0;
    }

    .my-tools {
        display: flex;
        flex-flow: column;
    }

    footer {
        display: flex;
        flex-flow: column wrap;
        align-items: flex-start;
    }

    .footer-nav {
        margin: 0 auto;
    }
    /* .footer-last-line {
        margin-right: 5%;
        /* margin-left: 5%; */
   
}
