/* ===

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 .section-header {
    margin-bottom: 1.5rem;
}

.hero-form-wrap {
    padding: 3rem 0;
}

.hero-form {
    max-width: 30.25rem;
    margin: 0 auto;
}

.hero-form .section-header {
    text-align: center;
}

.hero-form > p {
    margin-bottom: 0;
}

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

.hero-form .hv-form .btn {
    font-size: 1.5rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    line-height: 1.5;
}

.hero-form-label {
    font-family: var(--heading-font-family), sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1;
    margin-bottom: 1.75rem;
    text-transform: capitalize;
    text-align: center;
}

.hero-form-desc {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-socials {
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .hero .section-header h1, .hero .section-header h2 {
        font-size: 3.5rem;
    }

    .hero-form-label {
        font-size: 1.875rem;
    }

    .hero-form-wrap {
        padding: 5rem 0;
    }
}

@media (min-width: 1200px) {
    .hero {
        display: flex;
        align-items: center;
        padding-top: 6rem;
        min-height: 100dvh;
    }

    .hero-form-wrap {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 10rem;
        padding-bottom: 3rem;
        height: 100%;
        width: 100%;
    }

    .hero .hero-image {
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        z-index: 2;
    }

    .hero-form-label {
        text-align: left;
    }

    .hero-form .section-header {
        text-align: left;
    }
}

@media (max-width: 1199.98px) {
    .hero-image {
        position: relative;
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .hero-image::after {
        content: "";
        float: left;
        margin-top: 85%;
    }

    .hero-image > img {
        position: absolute;
        left: 0;
        top: 0;
    }
}