#home {
  display: flex;
  flex-flow: row nowrap;
}

#home > div {
  width: 50%;
}

#home .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#home .logo img:first-of-type {
  height: auto;
  width: 8.5rem;
  position: absolute;
}

#home .logo img:last-of-type {
  height: auto;
  width: 60%;
}

#home .logo button {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}

#home .banner {
  /*object-fit: cover;
  object-position: center;
  height: auto;*/
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#home .banner img {
  width: 100%;
  height: 110%;
}


@media only screen and (min-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
  #home {
  flex-flow: column nowrap;
  }
  #home > div {
    width: 100%;
  }
  #home .logo {
    flex-flow: column nowrap;
    margin: 1.5rem 0;
    grid-gap: 1.5rem;
  }
  
#home .banner img {
  width: 100%;
  height: 100%;
}
#home .logo img:first-of-type {
  position: unset;
}
#home .logo button {
  position: unset;
}
}
@media only screen and (max-width: 992px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 576px) {
}
@media only screen and (max-width: 576px) {
  .nav-bar {
    width: 100%;
  }
}

