/** Shopify CDN: Minification failed

Line 17:9 Expected identifier but found whitespace
Line 17:11 Unexpected "{"
Line 17:20 Expected ":"

**/


/* CSS from section stylesheet tags */
.banner-image-link-section {
  position: relative;
}

.banner-image-link-section img {
  width: 100%;
  height: {{ section.settings.image_height }};
  object-fit: cover;
  display: block;
}

.hero-btn{
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  padding: 13px 30px;
  border: 2px solid white;
  background: white;
  border-radius: 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: black;
  transition: all 0.5s;
}
.hero-btn:hover{
  background: transparent;
  border: 2px solid white;
  color: white;
}
.hero-btn:focus{
  color: black;
}