.hero-section {
    height: 100vh;
    width: 100%;
    min-height: 600px;
    max-height: 100vh;
    position: absolute;
    top: 0;
    z-index: 10000;

    


    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        overflow: hidden;
    }
}

.info-body-text {
    display: flex;
    flex-direction: column;
    gap: 40px;

    & img {
        padding-top: 40px;
        max-height: 500px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.main-container {
    margin-top: 100vh;
    padding-top: 240px;
}


@media (max-height: 625px) and (min-width: 1250px) {
    .main-container {
        margin-top: 600px;
    }
}



@media (max-height: 725px) {
    .main-container {
        margin-top: 600px;
    }

}

@media (max-width: 1250px) {
    .main-container {
        padding-top: 240px;
    }

}

@media (max-width: 625px) {
    .main-container {
        padding-top: 200px;
    }

    .hero-section {
        height: 100%;
    }

}
