.section-hero-container{
    width:  100%;
    height: 40vh;
    object-fit: contain;
    object-position: center;
    position: relative;
}
.section-hero-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.why-us{
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.why-top{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.why-top p{
    width: 80%;
}
.why-card-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.why-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 3rem;
    width: 300px;
    border-radius: 3px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.192);
    padding: 3rem 0.5rem;
    transition: all 0.5s;
}
.why-card:hover{
    background-color: black;
    color: white;
}
.why-card p{
    font-size: 0.9rem;
}