footer{
    margin-top: 20px;
    background-color: #fff;
}
.footer_wrapper{
    padding: 20px 0px;
    border-top: 1px solid #e5e5e5;
    width: 100%;

}

.footer_top, .footer_bottom{
    width: 100%;
    max-width: 1140px;
    margin: 0px auto;
}

.footer_top{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}

.footer_logo{
    width: auto;
    height: 130px;
}

.footer_links{
    width: auto;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.footer_links a{
    color: #828282;
    font-family: "Roboto Slab","Andika",sans-serif;
    font-size: 13px;
    margin: 5px 0px;
}

.footer_links a:hover{
    color:var(--red);
}

.footer_bottom{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer_icons{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.footer_icons a{
    margin: 0px 3px;
    transition: .25s
}

.footer_icons a img{
    width: 35px;
    height: 35px;
}

.footer_icons a:hover{
    transform: scale(1.2);

}

.footer_bottom_links{
    margin: 10px 0px;
    font-family: "Roboto Slab","Andika",sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.footer_bottom_links a{
    color: var(--red);
    transition: .25s
}

.footer_bottom_links a:hover{
    text-decoration: underline;
}


@media(max-width:700px){
    .footer_links{
        display: none;
    }
    .footer_top{
        justify-content: center;
        align-items: center;
        margin: 20px 0px;
    }
    .footer_bottom_links{
        width: 100%;
        text-align: center;
    }
}

.company_info{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.company_info_content{
    font-family: "Roboto Slab","Andika",sans-serif;
    line-height: 1;
    font-size: 12px;
    padding: 10px;
    font-weight: 300;
    color:#828282;
}