.line,
.line2{
    width: 100px;
    margin: 0 auto;
}


.line{
    border-bottom: 2px solid black;
}

.line2{
    border-bottom: 2px solid #fff;
}

.expand{
    position: fixed;
    bottom: 170px;
    width: 210px;
    height: 50px;
    left: -270px;
    z-index: 2;
    transition: ease-in .3s;
}

.content{
    background-color: #fff;
    width: 80%;
    height: 100%;
    float: left;
    position: relative;
    background-color: rgb(98, 0, 255);
}

.btn{
    color: #f5f5f5;
    background-color: rgb(98, 0, 255);
    border-radius: 0 50px 50px 0;
    width: 20%;
    height: 50px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn:target .expand{
    background-color: aqua;
    transform: translateX(-20px);
}

/*|--- -- ------ -- ---|*/
/*|--- -- FOOTER -- ---|*/
/*|--- -- ------ -- ---|*/

footer{
    width: 100%;
    height: auto;
    color: gray;
}

footer i{
    margin: 0 10px;
    font-size: 20px;
    color: #585858;
    cursor: pointer;
}

footer a{
    text-decoration: none;
    color: gray;
}

/*|--- -- --------- -- ---|*/
/*|--- -- OUR-REDES -- ---|*/
/*|--- -- --------- -- ---|*/

.our-redes{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.our-redes span{
    text-align: left;
    font-size: 16px;
    width: 65%;
    margin-left: 20px;
}

.redes{
    width: 35%;
    text-align: right;
    float: right;
}

.redes a{
    text-decoration: none;
}

/*|--- -- -------- -- ---|*/
/*|--- -- CONTACTO -- ---|*/
/*|--- -- -------- -- ---|*/

.contacto{
    width: 100%;
    height: auto;
    padding: 0 10px 0 30px;
    font-size: 15px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 2fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.contacto div{
    text-align: center;
    margin: auto;
    padding: 20px 0;
}

.contacto div img{
    height: 100px;
    border-radius: 50%;
    margin: 0 0 10px 0;
}

.contacto h5{
    font-size: 15px;
    margin: 20px 0;
}

.contacto i{
    margin: 0 0 15px 0;
}

/*|--- -- ------- -- ---|*/
/*|--- -- .FOOTER -- ---|*/
/*|--- -- ------- -- ---|*/

.footer{
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px 0;
}

.footer,
.footer a{
    color: #a8a8a8;
}

.footer p{
    font-size: 15px;
}

/*|--- -- ---------- -- ---|*/
/*|--- -- RESPÓNSIVE -- ---|*/
/*|--- -- ---------- -- ---|*/

@media screen and (max-width: 1200px) {
    .our-redes span{
        display: none;
    }

    .redes{
        width: 100%;
        text-align: center;
    }

    .contacto{
        padding: 0 30px;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .expand{
        left: 0;
    }

    .move{
        transform: translateX(-170px);
        transition: ease-in-out .3s;
    }

    .our-redes span{
        display: block;
        width: unset;
    }

    .redes{
        width: 35%;
        text-align: right;
    }

    .contacto{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 670px) {
    .our-redes span{
        display: none;
    }

    .redes{
        width: 100%;
        text-align: center;
    }

    .contacto{
        grid-template-columns: repeat(1, 1fr);
    }
}