@media screen and (max-width: 991px) {
 .navbar-wrapper {
  display: flex;
  position: relative;
 }
 .hamburger-menu {
    display: block;
}
 .brand-wrapper {
  /* display: none; */
 }
 .menu-wrapper {
  display: none;
 }
 .menu-wrapper-mobile {
  display: none; 
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
 }
 .is-active {
  display: flex;
 }
 .hamburger-menu {
  position: absolute;
  top: 5%;
  right: 5%
 }
 .nav-menu {
  position: relative;
  display: block;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
 }
 .logo-wrapper-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
 }
 .about-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2rem;
 }
 .section-heading {
    margin-bottom: 2rem;
 }
 .logos-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    row-gap: 2rem;
 }
 .text-small-footer {
    text-align: center;
 }
 .nav-secondary-menu > li {
    
 }
 
}
@media screen and (max-width: 576px) {
    .info-wrapper {
        display: block;
        padding: 2rem auto;
    }
    .info-item-wrapper {
        min-height: auto;
        display: block;
    }
    .large-hero-text {
        font-size: 4rem;
    }
    .value-item-wrapper {
        min-width: 300px;
        min-height: 300px;
    }
    
}