footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 25px 2px 2px 2px;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}

footer:before{
    content: '';
    position: absolute;
    left: 5px;
    width: 250px;
    height: 200px;
    background-image: url(../img/violin.svg);
    background-repeat: no-repeat;
    background-size: 250px;
    background-position: center;
    opacity: .2;
    transform: none;
}
footer::after{
    content: '';
    position: absolute;
    right: 1px;
    width: 250px;
    height: 260px;
    background-image: url(../img/nota_musical\ 1.svg);
    background-repeat: no-repeat;
    background-size: 250px;
    background-position: center;
    opacity: .2;
    transform: rotate(0deg);
}

.footer_cta a{
    color: white;
    background-color: #012f63c8;
    border-radius: 10px;
    padding: 10px 20px;
    border: 1.2px solid rgba(255, 255, 255, 0.474);
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.4);
    transition: .2s;
}

.footer_cta a:hover{
    color: #012e63;
    background-color: white;
}

.footer_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer_logo img{
    width: 300px;
    transition: .2s;
    position: relative;
}

.footer_logo img:hover{
    width: 302px;
}

.footer_cta{align-self: center;}

.social_2{
    display: flex;
    gap: 20px;
}

.social_2 img{
    width: 30px;
    transition: .2s;
}

.social_2 img:hover{
    width: 32px;
}

@media screen and (max-width:800px){
    footer:before{
        content: '';
        display: none;
    }
    footer::after{
        content: '';
        display: none;

    }
}