#home {
    background-image: url(../../images/home/video.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    min-height: 88.5vh;
    position: relative;
}

#home .container {
    position: relative;
    z-index: 1;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

h1 span {
    font-family: var(--ff-title);
}

h3 {
    font-family: var(--ff-title);
}


.hero-agency {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 88.5vh;
    /* min-height: 768px; */
    overflow: hidden;
}

#form .form-control {
    display: block;
    width: 100%;
    padding: .675rem .75rem;
    font-size: 0.9rem;
    color: var(--dark);
    border-color: var(--dark);
}

#form .form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #A10026;
}

#form .form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #7ba100;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .hero-agency {
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 50vh;
        /* min-height: 768px; */
        overflow: hidden;
    }
}