/* PORTADA */
.portada-hero {
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-blend-mode: color;
}
@supports (-ms-ime-align: auto) {
    .portada-hero::before {
        content: "";
        position: absolute;
        height: 70vh;
        width: 100%;
        background-color: rgba(28, 73, 66, 0.6);
        background-blend-mode: unset;
    }
}


.bg-opaco {
    background-color: rgba(28, 73, 66, 0.6);
    height: 100%;
}
.portada-logo {
    width: 150px;
    z-index:10;
}
.portada-tagline {
    color:white;
    font-family:agron;
    margin: 1rem 0;
    z-index:10;
}
.portada-cta {
    margin: 1rem;
    z-index:10;
}
.portada-cta a {
    text-decoration: none;
    color: white;
    padding:.75rem 2rem;
    margin-top: 1rem;
    border: 1px solid white;
    transition: all .5s;
    z-index:10;
}
.portada-cta a:hover {
    background-color: white;
    color: #1c4942;
}

/* HOME PAGE */
.home-section {
    min-height: 75vh;
    min-height: 75vh;
}
.home-about {
    background-color: #1c4942;
    min-height: 45vh;
    text-align: center;
    padding: 5rem 0
}
.home-about p {
    color:#dadada;
    letter-spacing: 1px;
    font-size: 1.15rem;
    font-family: arial-light;
}
.contact-form-submit-btn input {
    width: 100%;
    background-color: #1c4942;
    color: #B79F3F;
    padding: .25rem;
    font-size: 1.25rem;
    font-family: arial-narrow-bold;
}
.contact-form-submit-btn input:hover {
    color: #1c4942;
    background-color: #B79F3F;
}