#contacto {
    flex-direction: column;
    justify-content: end;

    background-image: url('../images/contact_bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#panel-contacto {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    color: white;
    background-color: #15171a;
    width: 100vw;
    height: 45vh;
}

#logo-contacto {
    width: 18%;
    height: 35%;
    margin-top: 10px;
    margin-right: 10px;
    background-image: url('../images/logo_light.svg');
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    #logo-contacto {
        width: 80%;
    }

    #panel-contacto {
        justify-content: center;
        gap: 10px;
    }
}

.datos-contacto {
    color: white;
}

.datos-contacto a {
    color: white;
}

.fila-contacto {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    vertical-align: middle;
    margin-top: 10px;
    margin-bottom: 10px;
}

.fila-contacto a {
    color: white;
}

.caja-email {
    padding-left: 30px;
    background-image: url('../images/icons/mail.svg');
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.caja-telefono {
    padding-left: 30px;
    background-image: url('../images/icons/phone.svg');
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.caja-ubicacion {
    padding-left: 30px;
    background-image: url('../images/icons/location.svg');
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}
