.hero-container {
    min-height: clamp(500px, 70vh, 100vh);
    min-height: clamp(500px, 70dvh, 100dvh);
    background-color: black;
    width: 100%;
    /* margin: 5rem 0; */
}

.hero-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
}

.hero-img {
    grid-row: 1 / 1;
    grid-column: 1 / 1;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}

.hero-button-wrapper {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: repeat(24, 1fr);
    grid-row: 1 / 1;
    grid-column: 1 / 1;
    height: 100%;
}

.hero-button {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    grid-row: 14;
    grid-column: 12 / 26;
    gap: 5rem;
}

.hero-button button {
    width: 100%;
    height: 100%;
}

@media (min-width: 2200px) {
    .hero-button {
        grid-row: 18;
    }
}

@media (max-width: 2200px) {
    .hero-button {
        padding: 0 5.5rem;
        margin-left: 4rem;
    }
}

@media (max-width: 1440px) {
    .hero-button {
        grid-row: 13;
        padding: 0 5.5rem;
        margin-left: 4rem;
    }
}

@media (max-width: 1290px) {
    .hero-button {
        grid-row: 12;
        padding: 0 3rem;
    }
}

@media (max-width: 1150px) {
    .hero-button {
        grid-row: 11;
        padding: 0 2.5rem;
    }
}

@media (max-width: 1024px) {

    .hero-wrapper,
    .hero-button-wrapper {
        display: block;
    }

    .hero-button {
        display: flex;
        justify-content: space-between;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-container {
        min-height: clamp(450px, 60vh, 90vh);
        min-height: clamp(450px, 60dvh, 90dvh);
    }
}

@media (max-width: 480px) {
    .hero-container {
        min-height: clamp(400px, 50vh, 70vh);
        min-height: clamp(400px, 50dvh, 70dvh);
    }
}