/* ===

Theme Name: Hey Victor
Author: Koval Web
Author URI: https://kovalweb.com/
Description: Website development by Koval Web
Tags: html5, css3, sass, js, gulp, bootstrap grid
Version: 1.0

=== */
.hero {
    position: relative;
}

.hero .hv-form-wrapper {
    text-align: center;
}

.hero .hv-form-wrapper .hv-form {
    text-align: left;
}

.hero-bg {
    position: relative;
}

.hero-bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.25;
}

.hero-bg img {
    width: 100%;
}

.hero-form {
    max-width: 395px;
    margin: 0 auto;
}

.hero-form .hv-form-confirmation-message {
    text-align: center;
}

.hero-form-label {
    position: relative;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 1.5rem 0;
    min-height: 1rem;
    overflow: hidden;
}

.hero-form-label span {
    position: relative;
    display: inline-flex;
    padding: 0 1rem;
}

.hero-form-label span::before, .hero-form-label span::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 3px;
    width: 300px;
    margin-top: -1.5px;
    background-color: currentColor;
}

.hero-form-label span::before {
    left: 100%;
}

.hero-form-label span::after {
    right: 100%;
}

.hero-form-desc {
    font-size: 0.75rem;
    line-height: 1.25;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
}

@media (min-width: 992px) {
    .hero-bg {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
    }

    .hero-bg img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-form-wrap {
        display: flex;
        align-items: center;
        padding: 6rem 0 4rem;
        background-color: transparent;
        min-height: 100dvh;
        z-index: 1;
    }

    .hero-form-wrap .hero-form-label span::before, .hero-form-wrap .hero-form-label span::after {
        background-color: currentColor;
    }

    .hero-form {
        color: var(--light);
        margin-right: 0;
    }

    .hero-form .btn {
        color: var(--accent-contrast) !important;
        background-color: var(--accent) !important;
    }

    .hero-form .btn .btn-ripple-hover {
        background-color: var(--accent-hover) !important;
    }

    .hero-form .form-labeled .required {
        color: var(--accent2);
    }
}