/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 65:0 Unexpected "<"

**/
<style>
.cb-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cb-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cb-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.cb-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.cb-banner__content h2 {
  font-size: 42px;
}

.cb-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

@media(max-width: 768px){
  .desktop-banner {
    display: none;
  }
  .mobile-banner {
    display: block;
  }
}
</style>