.hero-page {
    padding: 200px 0 220px 0;
    box-sizing: border-box;
    position: relative;

    /* mask */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H100 V85 Q50,100 0,85 Z' fill='black'/%3E%3C/svg%3E")
    0 0 / 100% 100% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H100 V85 Q50,100 0,85 Z' fill='black'/%3E%3C/svg%3E")
    0 0 / 100% 100% no-repeat;
}

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

.hero-page .hero-page-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.hero-page .hero-page-background:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #252944;
    background: linear-gradient(122deg, rgba(37, 41, 68, 1) 30%, rgba(37, 41, 68, 0) 66%);
}

.hero-page .inner {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
}

.hero-page .inner .hero-title,
.hero-page .inner .hero-intro,
.hero-page .inner .hero-ctas {
    max-width: 800px;
}

.hero-page .inner .hero-title,
.hero-page .inner .hero-intro {
    color: white;
}

.hero-page .hero-intro {
    font-size: 22px;
    font-weight: 500;
}

.hero-page .hero-ctas {
    display: flex;
    gap: 30px;
}

.hero-page .hero-ctas a.btn-secondary {
    color: white;
    border-color: white;
}

.hero-page .hero-ctas a.btn:hover {
    background-color: white;
    border-color: white;
    color: var(--dark-blue);
}

.hero-page ul {
    list-style-type: none;
    padding-left: 0;
}

.hero-page ul li {
    position: relative;
    padding-left: 45px;
    box-sizing: border-box;
}

.hero-page ul li:before {
    content: "";
    position: absolute;
    width: 33px;
    height: 20px;
    left: 0;
    top: 7px;
    background: url('../images/arrow-yellow.svg') no-repeat center center;
    background-size: contain;
}

.hero-page + .hero-collage {
    position: relative;
    background: red;
    height: 150px;
    z-index: 3;
    width: 100%;
    overflow: visible;
}

.hero-page + .hero-collage img {
    width: 50%;
    position: absolute;
    bottom: 0;
    right: -5%;
    height: auto;
}