.banner .image-wrapper img {
  width: calc(100% + 64px);
  margin-left: -32px;
  height: 100vh;
  object-fit: contain;
}

.banner .banner-title {
  color: var(--brand-text);
  font-size: 52px;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1392px;
  width: 70%;
  margin-inline: auto;
  text-shadow: 0 0 16px #000;
  transform: translateX(-50%) translateY(-50%);
}

.banner {
  position: relative;
}

.chelsea-desktop {
  display: block;
}
.chelsea-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .banner .image-wrapper img {
    height: auto;
    width: 100%;
    margin-left: 0;
  }
  .chelsea-desktop {
    display: none;
  }
  .chelsea-mobile {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 130px;
  }
  .mobile-banner-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobile-logo {
    width: 50% !important;
  }
}

@media (max-width: 768px) {
  .banner .banner-title {
    font-size: 32px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .mobile-banner-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .mobile-logo {
    width: 80% !important;
  }
}