#sectionHero {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sectionHeroContent {
    width: 100%;
    height: 90dvh;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;

}

.heroLogoText {
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

.heroLogoText a{
    height: 100%;
}

.logoImg {
    height: 100%;
    max-width: none;
}

.heroImg {
    height: 70%;
}

.heroImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 450px) {
    .logoImg {
        height: 100%;
        max-width: none;
    }
}