.footer_section{
    position: relative;
    margin-top: 200px;
    background-color: #F2F4F5;
}

.footer_bg{
    position: absolute;
    top: -100px;
    z-index: -1;
    background-image: url('../../images/footer.svg');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: top;
    width: 100%;
    height: 300px;
}

.footer{
    padding-bottom: 17px;
}

.footer_up::after{
    content: "";
    height: 2px;
    width: 100%;
    background: #E3E5E6;
    display: block;
    margin-left: 30px;
    margin-top: -10px;
}

.footer_link_list{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_brand{
    width: 120px;
    min-width: 120px;
    height: auto;
    transition: .2s
}

.footer_brand:hover{
    transform: scale(1.1);
    transition: .2s;
}

.footer_up{
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer_social{
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer_eula{
    width: 80%;
    color: #3A3A3A;
    font-size: 13px;
    margin-top: 40px;
}

.social_icon{
    width: 21px;
    transition: .2s;
}

.social_icon:hover{
    transform: scale(1.05);
    transition: .2s;
}

.footer_link{
    font-weight: 800;
    color: black;
    font-size: 17px;
}

.footer_link_list a{
    display: block;
    color: black;
    font-size: 14px;
    transition: .2s!important;
}

.footer_link_list a:hover{
    transform: translateY(-2px);
    transition: .2s;
    color: #3A3A3A;
}

.footer_link{
    margin-top: 30px;
}

.footer_owner{
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #E3E5E6;
    text-align: center;
}

.footer_owner p{
    color: #3A3A3A;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.authors{
    text-align: center;
    padding: 60px 7% 0;
    font-size: 13px;
}

.authors a{
    display: inline-flex;
    color: #000000;
    transition: .2s;
}

.authors a:hover{
    transform: translateY(-2px);
    transition: .2s;
}

.authors img{
    width: 50px;
}

@media only screen and (max-width: 1080px) {
    .footer{
        padding: 0 7%;
        padding-bottom: 20px;
    }
}