/* ===

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;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero .section-header {
    margin-bottom: 2rem;
}

.hero .section-header h1, .hero .section-header h2 {
    letter-spacing: 0;
}

.hero .section-header p {
    letter-spacing: 0.03rem;
}

.hero .section-footer {
    margin-top: 2rem;
}

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

.hero .hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 28, 81, 0.5) 0%, #071C51 100%);
    z-index: 1;
}

.hero .socials {
    position: relative;
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    max-width: 50rem;
    margin: 0 auto;
    z-index: 1;
}

.hero-content .section-header p {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.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.59375rem;
    padding-bottom: 0.59375rem;
    line-height: 1.5;
}

.hero-subheading {
    font-size: 1.25rem;
    letter-spacing: 0.04rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-subheading {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .hero {
        min-height: 900px;
    }
}

@media (min-width: 1200px) {
    .hero-subheading {
        font-size: 2rem;
    }

    .hero-content .section-header {
        font-size: 1.25rem;
    }
}

@media (max-width: 1199.98px) {
    .hero-content {
        max-width: 42rem;
        margin-left: auto;
        margin-right: auto;
    }
}