.footer{
    width: 100%;
    background: linear-gradient(rgba(34, 34, 34, .463), rgba(34, 34, 34, .486)) ,url(../Imagenes/Carousel/slider_7.jpeg) no-repeat center center fixed;
    background-size: cover;
}

.footer .logo-footer{
    width: 500px;
    display: flex;
}

.footer .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: .1rem 0rem;
    align-items: end;
}

.footer .grupo-1 .box a{
    display: inline-block;
    text-decoration: none;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
    line-height: 2.8rem;
    border-radius: 10%;
    margin-right: 2rem;
    background-color: #222;
    text-align: center;
    color: #fbe122;
    transition: all 500ms ease;
}

.footer .grupo-1 .box a:hover{
    color: #fff;
}

.footer .grupo-1 .box{
    color: #fff;
    margin-bottom: .2rem;
    font-size: 1rem;
}

.footer .grupo-1 .box p{
    color: #efefef;
    margin-bottom: .2rem;
}

.footer .grupo-2{
    background-color: #222;
    padding: 1rem 0rem;
    text-align: center;
    color: #fff;
}

.footer .grupo-2 small{
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .footer .logo-footer{
        width: 400px;
        align-items: center;
        justify-content: center;
    }
    .footer .box_img{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-right: 1rem;
    }
    .footer .grupo-1{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 3rem 0rem;
        text-align: center;
        align-items: center;
    }
}