/** Shopify CDN: Minification failed

Line 29:21 Unexpected "{"
Line 29:29 Expected ":"
Line 29:34 Unexpected "{"
Line 30:13 Expected identifier but found whitespace
Line 30:15 Unexpected "{"
Line 30:23 Expected ":"
Line 30:50 Expected ":"

**/


/* CUSTOM-VIDEO-SECTION */

.video-container {
  position: relative;
  overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   flex-direction: column;
}
   .video-container .mobile-video{
      display: none;
   }
@media only screen and (max-width: 768px){
   #video-container-{{section.id}}{
      height: {{section.settings.mobile_height}}px;
   }
   .video-container .desktop-video{
      display: none;
   }
   .video-container .mobile-video{
      display: block;
   }
}

.video-container video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  pointer-events: none;
}
@media screen and (min-width: 1201px) {
  .video-container .text-overlay {
    max-width: 1200px; /* increase from default ~700–800px */
  width: 100%;
  margin: 0 auto;
  padding: 50px 80px; /* optional: more horizontal space */
  z-index:2;
  }
}
@media screen and (max-width: 1200px) {
  .video-container .text-overlay {
     z-index: 2;
    padding: 50px; 
  }
}
.video-container:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity .35s;
    background: rgba(0, 0, 0, 0.12);
    pointer-events: none;
}
.iframe-holder{
   position: absolute;
    overflow: hidden;
    top: 50%;
    width: 100%;
    height: 100%;
    padding-top: 56.3%;
    transform: translateY(-50%);
    pointer-events: none;
     background-color: rgba(16, 8, 6, .4)
}
.iframe-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-container .iframevideo{
    position: absolute;
    top: -60px;
    left: 50%;
    width: 100%;
    height: calc(100% + 120px);
    transform: translate(-50%);
}
.video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   pointer-events: none;
}
.placeholder-video{
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    transition: opacity .3s;
    max-width: 100%;
    object-fit: cover;
    vertical-align: baseline;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.placeholder-video.video-played-hidden{
    opacity: 0;
    pointer-events: none;
}
.text-col{
text-align:left !important;
}
.text-overlay p,
.text-overlay h2,
.text-overlay h1,
.text-overlay div{
   color: white;
 /* text-align: center;  */
}
/* .text-overlay a{
 background-color:none !important; 
} */
.text-overlay h2,
.text-overlay h1{
   margin: 0;
   margin-bottom: 1.25rem;
       margin-left: auto;
    margin-right: auto;
}
.text-overlay div.subheading{
   font-size: .8em;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.3em;
}
.text-overlay p{
   margin-top: 0;
   font-size: 18px;
   margin-bottom: 1em;
   max-width: 780px;
   text-align: left;
    margin-left: auto;
    margin-right: auto;
    line-height:1;
}
.text-overlay p + p {
  margin-top: -2.5rem;
}
@media only screen and (max-width: 768px){
   .text-overlay p{
      font-size: 16px;
      text-align:center !important;
   }
}
@media only screen and (max-width: 768px){
   .text-overlay a{
      font-size: 16px;
      text-align:center !important;
   }
}
.text-overlay a{
   text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.1rem;
    /* padding: 14px 20px;  */
   margin: 10px .5em 0;
   vertical-align: middle;
   color: white;
    /* background-color: transparent;  */
   display: inline-block;
   height: auto;
   line-height: 18px;
   transition: background-color .1s;
}
.video-container.top-left {
    justify-content: flex-start;
    align-items: flex-start;
}
.video-container.top-center {
   justify-content: flex-start;
    align-items: center;
    text-align: center;
}
.video-container.top-right {
   justify-content: flex-start;
    align-items: flex-end;
}
.video-container.middle-left {
   justify-content: center;
    align-items: flex-start;
}

.video-container.middle-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.video-container.middle-right {
    justify-content: center;
    align-items: flex-end;
}
.video-container.bottom-left {
    justify-content: flex-end;
    align-items: flex-start;
}
.video-container.bottom-center {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}
.video-container.bottom-right {
    justify-content: flex-end;
    align-items: flex-end;
}
.video-container svg{
   width: 100%;
   height: 100%;
   position: absolute;
   fill: #ffffff;
  background: transparent;
}

.bottom-left .video-text, 
.bottom-left p,
.top-left .video-text,  
.top-left p,
.middle-left .video-text,  
.middle-left p{
    text-align: left;
}
.bottom-right .video-text, 
.bottom-right p,
.top-right .video-text,  
.top-right p,
.middle-right .video-text,  
.middle-right p{
    text-align: right;
}

/* Text + Button Inline Layout */
.text-button-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  text-align: left;
  max-width: 1000px;
  margin: 1rem auto;
}
@media screen and (max-width: 768px) {
  .text-button-row {
    gap:10px;
  }
}
.text-button-row .text-col {
  flex: 1;
}

.text-button-row .btn-col {
  flex-shrink: 0;
}

.inline-btn {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  border:1px solid #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  width:200px;
  text-align:center;
}

 .inline-btn:hover {
  background-color: #222;
} 

/* Mobile responsiveness */
@media (max-width: 1000px) {
  .text-button-row {
    flex-direction: column;
    text-align: center;
  }

  .text-button-row .btn-col {
    margin-top: -30px;
  }
}

/* === SHARE ICON STYLES === */
.share-button-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  justify-content: center;
}

.share-icon {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
   /* background: #000000;  */
  width: 30px;
  height: 30px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.share-icon:hover {
  background: #222;
}

/* Dropdown Panel */
.share-dropdown {
  position: absolute;
  top: 0px;
  right: 0rem;
  background: #000000;
  display: flex;
  gap: 2px;
  padding: 1px 1px 8px 1px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateY(10px);
  z-index: 10;
}

 .share-icon:hover .share-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
} 

/* Social Icons inside dropdown */
.share-dropdown a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .share-button-wrapper {
    justify-content: flex-start;
  }
  .share-dropdown {
    right: auto;
    left: 0;
  }
}
