<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero-v2 {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: -3rem;
}

.hero-image {
    height: 450px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 3rem 1rem;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 1320px;
}

.hero-content .hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: normal;
    color: #003D7C;
}

.hero-content .hero-description {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 400;
    color: #00345E;
}

.hero-link {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: #EF7C00;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    gap: 1rem;
}

.hero-link:hover {
    color: white;
    background-color: #E67500;
}

@media screen and (min-width: 768px) {
    .hero-link {
       width: fit-content;
    }
}

/* Desktop styles */
@media screen and (min-width: 768px) {
    .hero-v2 {
        height: 774px;
        display: block;
    }

    .hero-image {
        height: 100%;
    }

  .hero-content-wrapper {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        margin: 0 auto;
    }

    .hero-content-wrapper .container {
        padding: 0;
    }

    .hero-content {
        gap: 1.5rem;
        max-width: 750px;
        padding: 1.875rem;
        background: #FFF;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    }

    .hero-content .hero-title {
        font-size: 2.25rem;
        line-height: 3.0625rem;
    }
}

@media screen and (min-width: 1024px) {
    .hero-content-wrapper {
        /* max-width: 960px; */
    }
    
}


/* editor */
.acf-block-preview .hero-v2 {
    margin-top: 0;
}</pre></body></html>