footer {
    display: flex;
    flex-direction: column;
    background-color: #2D2D2D;
    padding: 50px 100px 15px 100px;
    position: relative;
    z-index: 2;
}
footer > div {
    display: flex;
    align-self: stretch;
}
.middleFooter {
    padding: 15px 0px;
}
.bottomFooter {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 132.1%;
    color: rgba(255, 255, 255, 0.6);
}
.foterBox {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.foterBox > h4 {
    display: flex;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    position: relative;
}
.foterBox > h4:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: #737373;
    bottom: -15px;
    left: 0;
}

.foterBox ul {
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.foterBox ul li {
    display: flex;
    flex-direction: column;
    margin-bottom: 7.5px;
}
.foterBox ul li a {
    display: flex;
    flex-direction: column;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 122.1%;
    color: #b3b3b3;
    text-decoration: none;
}
.foterBox ul li.liIcon {
    flex-direction: row;
}
.foterBox ul li.liIcon span {
    margin-right: 10px;
}
.foterBox ul li span {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 122.1%;
    color: #b3b3b3;
    text-decoration: none;
}
.foterBox ul li input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #D2D2D2;
    padding: 7.5px 0px;
    outline: none;
    width: 200px;
    background: transparent;
    color: #b3b3b3;
}

/* MEDIA */
@media screen and (max-width: 900px) {
    footer {
        padding: 30px 20px 20px 20px;
    }
    .middleFooter {
        flex-direction: column;
    }
}