.footer-container {
    background-color: #FAF3F3; 
    display: flex;
    flex-direction: column;
    justify-content: initial;
    align-items: center;
    padding: 30px 25px;
}

.social_icon {
    /*width: 30px;*/
    height: 30px;
    margin-right: 7px;
    /*margin-top: 10px;*/
}
.footer-child {
    width: 100%;
}
.footer-left a {
    text-decoration: none;
}
.footer-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.footer-right {
    display: flex; 
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}
.footer_link {
    text-decoration: none;
    text-transform: lowercase;
    color: #878E8D;
    cursor: pointer;
    padding-left: 7px;
    padding-right: 7px;
}

@media only screen and (min-width: 600px) {

}

@media only screen and (min-width: 900px) {
    .footer-container {
        flex-direction: row;
    }
    .footer-child {
        width: 50%;
    }
    .footer-left {
        justify-content: flex-start;
    }
    .footer-right {
        justify-content: flex-end;
        margin-top: 0;
    }
    .social_icon {
        height: 25px;
    }
    
}

@media only screen and (min-width: 1200px) {
    
    
}

@media only screen and (min-width: 1800px) {
    
}