/** Shopify CDN: Minification failed

Line 19:16 Expected identifier but found whitespace
Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:78 Expected ":"
Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 20:84 Expected ":"

**/

.video-banner, .video-banner__wrapper {
  min-height: 500px;
}

.video-banner{
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  /* background:black; */
}
.video-banner {
   margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.video-banner__wrapper {
  position: relative;
}

.video-banner__video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-banner__overlay {
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as needed */
}

.video-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

.video-banner__button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(120deg, #f15a24, #b67a31, #009245);
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    border-radius:20px;
    text-transform: uppercase;
}

/* .video-banner__button:hover {
  background-color: #ddd;
} */

a:empty, ul:empty, dl:empty, div:empty, section:empty, article:empty, p:empty, h1:empty, h2:empty, h3:empty, h4:empty, h5:empty, h6:empty {
    display: block;
}

.video-banner__content h2 {
    color: #f8f8f8;
    font-size: 52px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}
  
 .video-banner__content p {
    font-size: 18px;
   color:#f8f8f8;
}

  @media screen and (max-width: 950px){
.video-banner__video {
    width: 100%;
        height: 100% !important;
        object-fit: cover;
        min-height: 500px;
}
.video-banner__content h2 {
    color: #f8f8f8;
    font-size: 30px;
    }
    .video-banner__content{
          width: 100%;
    padding: 0 15px;
    }
  }
