/** Shopify CDN: Minification failed

Line 29:13 Expected identifier but found whitespace
Line 29:15 Unexpected "{"
Line 29:24 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-banner {
  position: relative;
  width: 100%;
  height: auto;
}

.custom-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: {{ section.settings.text_alignment }};
  color: white;
  padding: 20px;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin: 0;
}

.banner-text p {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .banner-text h1 {
    font-size: 1.8rem;
  }

  .banner-text p {
    font-size: 1rem;
  }
}