:root {
  --primary-color: #0075bf;
  --bg-gradient: linear-gradient(180deg, #fff -30.99%, #0075bf 40.92%, #000 97.42%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-gradient);
  margin: 0;
  padding: 0;
}

.banner-wrapper {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto 24px auto;
}

.banner-image {
  width: 100vw;
  max-width: 100vw;
  height: 218px;
  display: block;
  object-fit: cover;
}

.banner-image-mobile {
  width: 100vw;
  max-width: 100vw;
  height: 120px;
  display: none;
  object-fit: cover;
}

.logo {
  position: absolute;
  left: 50%;
  bottom: 31px;
  top: auto;
  transform: translateX(-50%);
  max-width: 157px;
  max-height: 79px;
  width: 100%;
}

.win-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 180px;
  height: auto;
  margin-bottom: 40px;
}

/* Hide images with empty src */
img[src=""],
img:not([src]) {
  display: none;
}

@media (max-width: 600px) {
  .banner-image {
    display: none;
  }

  .banner-image-mobile {
    display: block;
  }

  .logo {
    max-width: 120px;
    max-height: 60px;
    bottom: 31px;
  }

  .win-logo {
    max-width: 120px;
    margin-top: 8px;
    margin-bottom: 24px;
  }
}
