@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&display=swap');
#landing{
    font-family: 'Barlow', sans-serif;
    background-size: cover;
    background-position: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
    background: linear-gradient(-45deg, #ee765258, #e73c7e58, #23a6d558, #23d5ab58);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-size: 400% 200%;
    animation: gradient 15s ease infinite;
    height: 110vh;
}
.imgIco{
    max-width: 60px;
    margin-bottom: 20px;
    opacity: .8;
    filter: brightness(0.2);
}
#landing p{
    line-height: 1.1;
}
div.imgFondo{
    position: absolute;
    width: 100%;
    height: 110vh;
    background-image: url(img/bg-blanco.png);
    background-size: cover;
    background-position: center;
    z-index: -999;
}

div.card-body p{
    color: #545454;
    font-weight: 400;
}

div.card{
    margin-bottom: 20px;
    background-color: #54545420;
    border: 0;

}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


@media (max-width: 575.98px) {
    #landing{
        height: 170vh;
    }
    div.imgFondo{
        height: 170vh;
    }
}