.page-hero {
    padding: 90px 20px 160px 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.page-hero p {
    color: var(--yellow);
    margin: 0 0;
}

.page-hero p.hero-label {
    font-size: 14px;
    letter-spacing: 3.08px;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 10px;
    font-weight: 800;
}

.page-hero p.hero-sub-title {
    font-family: 'Pacifico Regular', sans-serif;
    font-size: 33.3px;
    line-height: normal;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 80px;
    font-weight: 400;
    line-height: 78.4px;
    text-transform: uppercase;
}

.page-hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 40, 64, 0.66) 0%, rgba(10, 50, 80, 0.48) 55%, rgba(14, 44, 66, 0.66) 100%);
}

.page-hero img.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.page-hero p.hero_content {
    color: rgba(255, 255, 255, 0.94);
    font-size: 15.8px;
    font-weight: 500;
    line-height: 27.2px;
    margin: 16px auto 28px auto;
    max-width: 600px;
}

.page-hero .btn-orange::before {
    background: linear-gradient(130deg, #F47A4A 0%, #E8461C 100%);
    box-shadow: 0 12px 26px 0 rgba(232, 79, 37, 0.38), 0 1px 0 0 rgba(255, 255, 255, 0.28) inset;
}

.page-hero .btn-orange:hover:before {
    box-shadow: none;
}

.page-hero .hero_ctas {
    justify-content: center;
    gap: 15.99px;
    margin-top: 28px;
}

@media(max-width:767px) {
    .page-hero {
        padding: 84px 18px 100px 18px;
    }

    .page-hero::before {
        background: linear-gradient(180deg, rgba(8, 40, 64, 0.70) 0%, rgba(8, 40, 64, 0.45) 100%);
    }

    .page-hero h1 {
        font-size: 40px;
        line-height: 41.2px;
    }

    .page-hero .hero_ctas {
        flex-direction: column;
    }
}