.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero {
    height: 75vh;
}

.hero {

    background-image: url(/assets/imgs/hero02.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 75vh;
}

@media(max-width:768px) {

    .hero,
    #hero {
        height: 100vh;
    }
}

.col-logo {
    display: flex;
    justify-content: end;
    align-items: end;
    padding-bottom: 3rem;
}

.logo-size {
    width: 10rem;
    height: 10rem;
    border-radius: 1rem;
}

.shadow {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 0.5rem;
    /* box-shadow: 0px 0px 0px 20px black; */
}

.rounded {
    border-radius: 1rem;
}

#cta,
#ct2,
#ct3,
#ct4 {
    height: 75vh;
}

.titulo {
    background-color: #D959B7;
    padding: 5rem;
    margin-top: 5rem;
    color: white;
}

.apadding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.wa {
    /* background-color:#25D366 ; */
    text-decoration: none;
    color: #FFF;
    background-color: #A62182;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    border-radius: 0.5rem;
}

.wa:hover {
    background-color: #F2AEE7;
    color: #FFF;
    border-radius: 0.5rem;
}

.boton {
    background-color: #D959B7;
    color: #FFF;
    border-radius: 0.5rem;
    text-decoration: none;
}

.boton:hover {
    background-color: #A62182;
    color: #FFF;
}