.gv-hero {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 64px);
    padding: 40px 0;
}

.gv-hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.gv-hero__container {
    position: relative;
    max-width: 560px;
    text-align: center;
    margin: 0 auto;
    z-index: 3;
}

.gv-hero__title {
    font: 400 42px/1 "Cera Stencil Pro", sans-serif;
    color: #ffffff;
    text-wrap: balance;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gv-hero__cta {
    margin-top: 12px;
}

.gv-floating-cta {
    position: fixed;
    bottom: 20px;
    right: 0;
    writing-mode: vertical-lr;
    font: 500 20px/1.1 "Cera Stencil Pro";
    background: #004C97;
    color: #ffffff;
    padding: 8px;
    transform: rotate(180deg);
    z-index: 99;
}

@media only screen and (min-width: 1280px) {
    .gv-hero {
        height: calc(100vh - 196px);
        margin-bottom: 120px;
    }

    .gv-hero__title {
        font-size: 80px;
    }
}