html, body {
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
}
body {
    background-color: white;
    color: #222222;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
header a {
    text-decoration: none;
}
footer a, footer a:hover {
    text-decoration: underline
}
header {

}
.logo {
    max-height: 140px;
    padding: 10px 0;
    max-width: 30%;
}
.logo_footer {
    max-height: 130px;
    max-width: 90%;
}
.baneficios {
    background-image: url('./img/background002.webp');
}
.formulario, header {
    background-image: url('./img/background001.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1
}
.formulario .cover, header .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}
.formulario .cover {background-color: rgba(0,16,16,.75);}
header .cover {background-color: rgba(0,16,16,.9);}

.blink {
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.wrapper {
    text-align: justify;
    font-weight: normal;
    h1 {
        color: #fff;
        font-weight: normal;
        letter-spacing: initial;
        background: linear-gradient(to right,#FFF 10%, #cc0033 50%, #FFF 60%);
        background-size: auto auto;
        background-clip: border-box;
        background-size: 200% auto;
        color: #fff;
        background-clip: text;
        text-fill-color: transparent;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textclip 5s linear infinite;
        display: inline-block;
    }
}
@keyframes textclip {
    to {
        background-position: 200% center;
    }
}
/* replace values*/
.text-danger {color:#cc0033}
.btn-danger {background-color: #cc0033; border-color: #cc0033;}
.btn-danger:hover, .btn-danger:focus {background-color: #aa0033; border-color: #aa0033;}