/* max-widht-900px */
@media screen and (max-width:900px) {
    .nav a {
        display: none;
    }

    .list-bar {
        display: block;
    }

    .list-bar i {
        display: block;
    }
}

/* max-widht-700px */
@media screen and (max-width:700px) {
    .nav-contact a {
        display: none;
    }

    .footer-container {
        align-items: start;
        flex-direction: column;
    }

    /* newsletter-main-content */
    .newsletter-main-content {
        width: 100%;
        padding: 20px;
        margin-left: 0px;
    }

    .newsletter-home-content h1 {
        color: var(--white);
        font-size: 40px;
    }

}

/* max-widht-500px */
@media screen and (max-width:500px) {
    .newsletter-home-content h1 {
        color: var(--white);
        font-size: 25px;
    }

    .newsletter-home-content {
        width:90%;
    }

}

/* max-widht-600px */
@media screen and (max-width:600px) {
    .footer-service {
        margin-top: 5%;
    }

    .footer-nav {
        margin-top: 5%;
    }

    .footer-email {
        margin-top: 5%;
    }

}