html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

* {
    font-family: 'Lato', sans-serif;
}

.top-container {
    background-image: url('./foto-web.jpg');
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top-container-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 5%
}

.column-flex-between {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.column-flex-even {
    justify-content: space-evenly;
    display: flex;
    align-content: center;
    flex-direction: column;
}

.color-dark {
    color: #575757;
}

.text-footer {
    font-size: 14px;
    color: #9a9a9a !important;
}

.footer-a {
    cursor: pointer;
}
.footer-a:hover {
    text-decoration: underline !important;
}

.h-50-custom {
    height: 50%;
}

@media screen and (max-width: 501px) {
    .h-50-custom {
        height: 100%;
    }
}


.display-none {
    display: none;
}
.bold {
    font-weight: 700;
}

.bolder {
    font-weight: 900;
}

.color-white {
    color: #ffffff;
}

.email-link {
    color: #A6005B;
    text-decoration: underline;
}

.bg-grey {
    background: #F7F7F7 !important;
}

.color-brand {
    color: #A6005B;
}

/* Ripple effect */
.ripple {
    background-position: center;
    transition: background 0.8s;
}

.ripple:hover {
    background: #C6006C radial-gradient(circle, transparent 1%, #C6006C 1%) center/15000%;
}

.ripple:active {
    background-color: #FCEEF6;
    background-size: 100%;
    transition: background 0s;
}

/*!* Button style *!*/
button {
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
    background-color: #A6005B;
    outline: none;
}


