@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


:root {
    --default-font: 'DM Sans', Arial, Helvetica, sans-serif;
}

body {
    font-family: var(--default-font);
    line-height: 1.6em;
    /* font-size: 1em; */ /* 0.875 */
}

p {
    font-size: 16px;
    line-height: 1.6em;
    color: #000000;
}

.cursor-pointer {
    cursor: pointer;
}

.body-top-padding {
    padding-top: 154px;
}

/* .custom-card-item {
    cursor: default;
    transition: all 550ms;
}

.custom-card-item:hover {
    transition: all 550ms;
    background-color: #e4e7ea !important;
} */

.contact-us-bgimage {
    background-image: url('./../../assets/img/gdpr.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 83px 0px 68px 0px;
}

/* Las imagenes deben ser estilo portrait(h > w) y no landscape(w > h) */
.card-bg-custom {
    background-color: dimgrey !important;
    background-image: var(--bg-src);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    cursor: default;
    height: 350px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.card-bg-custom:hover {
    background-size: auto 120%;
    transition: all 0.3s ease-in-out;
}
.card-bg-custom * {z-index: 100;}
.card-bg-custom::after {
    z-index: 99;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}
.card-bg-custom:hover::after {
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
}

.text-justify,
.text-justify * {
    text-align: justify !important;
}

section#inicio h1 {
    font-size: 45px;
}


@media (max-width: 767.98px) {
    .card-bg-custom {
        height: 250px;
    }
    .card-bg-custom,
    .card-bg-custom:hover {
        /* background-size: 100% auto; */
        background-size: cover;
    }
    /* .card-bg-custom:hover {
        background-size: 120% auto;
    } */
}