/* Medium screen styles using media query */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 750px;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    z-index: -1;
  }

  .partners,
  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
}
