.Footer {
    padding: 50px 15%;
    background-image: -ms-linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -moz-linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -o-linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: -webkit-linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
    background-image: linear-gradient(to left, rgba(235, 235, 235, 0.5) 0%,  rgba(190, 162, 140, 0.5) 100%);
}

#Footer__content {
    display: flex; 
    justify-content: space-between;
}

.Footer > div > div > p {
    font-weight: bold;
}

.Footer > div > div {
    display: flex;
    flex-direction: column;
}

.Footer > div > div > a {
    color: black;
    text-decoration: none;
}

.Footer > div > div > a:hover {
    text-decoration: underline;
}

.Footer > div > div > * {
    padding: 5px 0px;
}

.Footer__socials__icon {
    width: 30px;
    height: 30px;
    display: inline-block !important;
}


@media screen and (max-width: 575.98px) {
    #Footer__content {
        flex-direction: column;
    }

    #Footer__content > div {
        margin-bottom: 20px;
    }    
}


