.hero-secondary {
    position: relative;
    padding: 85px 16px 86px 16px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

@media screen and (min-width: 1260px) {
    .hero-secondary {
        padding: 113px 80px;
    }
}

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

.hero-secondary--image img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: relative;
    transform: translateY(0);
    transition: transform 0.1s linear;
}

.hero-secondary--image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(2, 27, 19, 0.7) 0%, rgba(2, 27, 19, 0) 27.29%), linear-gradient(180deg, rgba(2, 27, 19, 0) 31.88%, #021B13 93.35%);
}

.hero-secondary--container {
    position: relative;
    z-index: 1;
    color: var(--white);
}

@media screen and (min-width: 768px) {
    .hero-secondary--container {
        text-align: center;
    }
}

.hero-secondary--container .uptitle {
    color: var(--green-light);
    margin-bottom: 16px;
}

.hero-secondary--container h1 {
    max-width: 1100px;
    margin: 0 auto 40px auto;
    word-break: break-word;
}

@media screen and (min-width: 1024px) {
    .hero-secondary--container h1 {
        font-size: 72px;
    }
}

.hero-secondary--container p {
    max-width: 550px;
}

@media screen and (min-width: 768px) {
    .hero-secondary--container p {
        margin: auto;
    }
}