.footer-container {
    z-index: 10;
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent linear-gradient(90deg, #777777 0%, #909090 100%) 0 0 no-repeat padding-box;
}

.footer-content {
    width: 60%;
    height: 100%;
    display: flex;
}

.footer-contact {
    margin-bottom: 40px;
    margin-top: 40px;
    border-right: 2px dashed rgba(255,255,255,0.12);
    justify-content: center;
    width: 50%;
    display: flex;
    flex-flow: column;
}

.sign-up-text {
    margin-right: 20px;
    color: white;
    text-align: left;
    font: normal normal 300 40px/50px Roboto Slab;
}

.signup-input {
    padding: 5px;
    margin-right: 10px;
    max-width: 260px;
    background: #FFFFFF 0 0 no-repeat padding-box;
    box-shadow: 0 3px 20px #0000000D;
    border: 2px solid #FFFFFF;
    border-radius: 4px;
    text-align: left;
    font: normal normal 500 14px/15px Roboto;
}

.footer-contact-right {

}

.socials-container {
    margin-top: 25px;
    width: 176px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 986px) {
    .footer-container {
        height: unset;
        flex-flow: column;
    }

    .footer-content {
        width: 100%;
        flex-flow: column;
    }

    .footer-contact {
        box-sizing: border-box;
        border-right: unset;
        width: 100%;
        padding-left: 10px!important;
    }

    .signup-input {
        height: 20px;
    }
}