/*

Estilos de la sección "datos-contacto"

*/

.datos-contacto {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 20vh;
    height: auto;
    margin-bottom: 3rem;
}

.datos-contacto>.image {
    max-width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 50%;
    background-image: none;
    opacity: 0;
    transition: opacity .6s;
    min-height: 20vh;
}

.datos-contacto>.info {
    max-width: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
}

.datos-contacto>.info>.title {
    font-size: 4rem;
    font-weight: bold;
    margin: 1rem 0;
}

.datos-contacto>.info>.title strong {
    font-size: 5rem;
}

.datos-contacto>.info>.subtitle {
    font-size: 3rem;
}

.datos-contacto>.info>.text {
    padding-left: 2rem;
    padding-top: 1rem;
}

.datos-contacto>.info>.text>div {
    width: 100%;
}

.datos-contacto>.info>.text>div span {
    width: 100%;
    display: block;
    line-height: 2.6rem;
}

.datos-contacto>.info>.text>.street {
    font-size: 2rem;
    margin: 1rem 0;
}

.datos-contacto>.info>.text>.phone {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.datos-contacto>.info>.text>.email {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.datos-contacto>.info>.text>.email a{
    color: var(--theme-dark2);
    font-weight: bold;
}

strong {
    color: var(--theme-dark2);
}

@media only screen and (max-width: 980px)
/*, (pointer: coarse)*/
    {

    .datos-contacto {
        flex-direction: column;
        height: auto;
        margin-bottom: unset;
    }

    .datos-contacto>.image {
        max-width: 100%;
        height: 30vh;
        width: 100%;
    }

    .datos-contacto>.info {
        max-width: 90%;
        display: flex;
        flex-direction: column;
    }

    .datos-contacto>.info>.title {
        font-size: var(--title-size);
        text-align: center;
    }

    .datos-contacto>.info>.subtitle {
        font-size: var(--subtitle-size);
        text-align: center;
    }

    .datos-contacto>.info>.text {
        font-size: var(--faqs-text-size);
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
    }

}