.hero-hp {
    position: relative;
    padding: 144px 16px 86px 16px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    margin-top: -72px !important;
}

@media screen and (min-width: 1024px) {
    .hero-hp {
        padding: 325px 16px 113px 16px;
        margin-top: -144px !important;
    }
}

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

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

.hero-hp--video::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-hp--container {
    position: relative;
    z-index: 1;
    color: var(--white);
}

@media screen and (min-width: 1024px) {
    .hero-hp--container {
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .hero-hp--container .hero-hp--content {
        display: grid;
        grid-template-columns: auto auto;
        gap: 40px;
    }
}

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

.hero-hp--container h1 {
    max-width: 1100px;
    font-size: 40px;
    margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
    .hero-hp--container h1 {
        grid-column: 1/-1;
        font-size: 80px;
        margin-bottom: 0;
    }
}

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

@media screen and (min-width: 1024px) {
    .hero-hp--container p {
        grid-column: 1/2;
    }
}

.hero-hp--content-link {
    display: none;
}

@media screen and (min-width: 1024px) {
    .hero-hp--content-link {
        display: flex;
        flex-direction: column;
        gap: 32px;
        grid-column: 2/3;
        justify-content: flex-end;
        align-items: flex-end;
    }
}

@media screen and (min-width: 1280px) {
    .hero-hp--content-link {
        gap: 80px;
        flex-direction: row;
    }
}