.site-footer {

    padding: 80px 0 30px;

}



.footer-newsletter {

    text-align: center;
    padding: 50px 30px;
    border-radius: 30px;
    margin-bottom: 60px;

}



.footer-newsletter h2 {

    font-size: 36px;
    margin-bottom: 15px;

}



.footer-newsletter p {

    max-width: 650px;
    margin: auto;
    line-height: 1.8;

}



.footer-form {

    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;

}



.footer-form input {

    width: 350px;
    height: 55px;
    border-radius: 50px;
    border: none;
    padding: 0 25px;

}




.footer-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

}



.footer-col h3 {

    font-size: 22px;
    margin-bottom: 20px;

}



.footer-col p {

    line-height: 1.8;

}



.footer-menu,
.footer-menu ul {

    list-style: none;
    padding: 0;

}



.footer-menu li {

    margin-bottom: 12px;

}



.footer-social {

    display: flex;
    flex-direction: column;
    gap: 12px;

}



.footer-logo {

    width: 180px;
    margin-bottom: 20px;

}



.footer-bottom {

    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .2);

}



@media(max-width:992px) {

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media(max-width:600px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-form {

        flex-direction: column;

    }


    .footer-form input {

        width: 100%;

    }

}