/*Media Query for Height Size Screen */
@media (max-height: 600px) {

}
@media (max-height: 500px) {

}

/* Media Query for Medium Devices */
@media only screen and (max-width: 1024px){
    header.header-1 .navbar-nav a.nav-item.last-nav-item {
        margin-left:10px;
    }
}
@media only screen and (min-width: 991px) {


}
/*Media Query for Large Devices */
@media only screen and (min-width:1441px ) and (max-width: 2560px){
    /*Form Steps*/
    .steps {
        left:20%;
    }
}

@media only screen and (min-width: 1380px) and (max-width: 1440px){
    /*Form Steps*/
    .steps {
        left:11%;
    }
}

@media only screen and (min-width: 767px) and (max-width:1023px){
    .container-lg {
        max-width: 95%;
    }

}

@media only screen and (min-width: 767px) and (max-width:834px){
    /*footer*/
    footer .footer-contact-form, footer .contact-details {
        padding-top:25px;
    }
}

/*Mobile Devices media query */
@media (max-width: 480px){
    /*Header*/
    .navbar {
        padding-left:0;
    }
    .social-media-nav {
        justify-content: space-evenly;
        margin-left: 0;
        padding-left: 0;
    }
    .section-heading h2 {
        font-size:1.75rem;
    }

    .steps {
        left: 0;
    }

    .steps li {
        margin: 0 2em;
    }

    .steps li::before {
        left: -7em;
    }

    .document-container ul {
        grid-template-columns: repeat(2, 1fr);
    }

    /*Footer*/
    .footer-bottom {
        padding-left:15px;
    }
    .footer-bottom ul li {
        height: 25px;
    }
    ul.social-media {
        justify-content: center;
        padding-left: 0;
    }
}
