.footer {
    background-color: #211c30;
    display: flex;
    justify-content: center;
    padding: 60px 30px;
}

.footer-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
}

.footer-left {
    max-width: 320px;
    margin-right: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer-languages {
    margin-bottom: 25px;
}

.footer-lang {
    margin-right: 10px;
}

.footer-lang.disabled {
    opacity: 0.5;
}

.footer-lang:hover {
    opacity: 1;
}

.footer-descrizione {
    color: #a6a4ac;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.footer-warn {
    color: #a6a4ac;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-menu {
    display: flex;
}

.footer-menu-list {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    width: 25%;
}

.footer-menu-list:last-child {
    margin-right: 0;
}

.footer-menu-item {
    color: #a6a4ac;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-menu-title {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    margin-bottom: 50px;
}

.footer-social-link {
    height: 50px;
    width: 50px;
    margin-left: 10px;
}

.footer-social-link img {
    height: 100%;
    width: 100%;
}

.footer-newsletter {
    display: flex;
    padding: 25px 20px;
    border: 1px solid #4e79fc;
    margin-top: 60px;
}

.footer-newsletter-img {
    height: 40px;
    transform: rotate(-15deg);
    margin-right: 20px;
}

.footer-newsletter-title {
    color: white;
    font-size: 16px;
    min-width: 215px;
    line-height: 20px;
    font-weight: 300;
    margin-right: 50px;
}

.footer-newsletter-form {
    display: flex;
    position: relative;
    width: 100%;
}

.footer-newsletter-input {
    background: none;
    border: 1px solid white;
    border-radius: 999px;
    color: white;
    padding: 14px 20px;
    font-weight: 300;
    flex: 1;
}

.footer-newsletter-icon {
    position: absolute;
    right: 10px;
    top: 13px;
    height: 20px;
    width: 20px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.footer-newsletter-icon > img {
    height: 100%;
    width: 100%;
}

.footer-newsletter-input::placeholder {
    font-family: "Readex Pro", sans-serif;
    color: white;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    background-color: #211c30;
    padding: 0 30px 60px 30px;
}

.footer-copyright > .footer-box {
    align-items: flex-end;
}

.footer-copyright-left {
    color: white;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
}

.footer-copyright a {
    color: white;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    text-decoration: none;
}

@media only screen and (max-width: 1400px) {
    .footer-newsletter {
        display: none;
    }

    .footer-box {
        flex-direction: column;
    }

    .footer-left {
        max-width: 100%;
        margin-right: 0;
    }
    
    .footer-socials {
        justify-content: center;
    }

    .footer-copyright > .footer-box {
        align-items: flex-start;
    }
}

@media only screen and (max-width: 800px) {
    .footer-descrizione {
        font-size: 12px;
    }

    .footer-menu-item {
        font-size: 12px;
    }

    .footer-left {
        max-width: unset;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .footer-box {
        flex-direction: column;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .footer-social-link {
        margin-left: 0;
        margin: 5px;
    }

    .footer-menu {
        flex-direction: column;
    }

    .footer-menu-list {
        width: 100%;
        margin-bottom: 25px;
    }

    .footer {
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-copyright > .footer-box {
        align-items: center;
    }

    .footer-copyright-left {
        margin-bottom: 20px;
    }
}