/** Shopify CDN: Minification failed

Line 76:13 Expected identifier but found whitespace
Line 76:15 Unexpected "{"
Line 76:24 Expected ":"
Line 77:8 Expected identifier but found whitespace
Line 77:10 Unexpected "{"
Line 77:19 Expected ":"
Line 147:8 Expected identifier but found whitespace
Line 147:10 Unexpected "{"
Line 147:19 Expected ":"
Line 290:8 Expected identifier but found whitespace
... and 18 more hidden warnings

**/


/* CSS from section stylesheet tags */
.button-section {
    background-color: #b17f4a30;
}  
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Adjust gap between buttons */
}

.button-link {
  display: inline-block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid black;
  background-color: white;

}

.button-link:hover {
  background-color: #B17F4A;
  color: white;
  border-color: #B17F4A;
}
.slider-container {
  display: flex;
  overflow: hidden;
  position: relative;
  scroll-snap-type: x mandatory;
}
.slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  position: relative;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  background: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
}
.slider-arrow.left {
  left: 10px;
}
.slider-arrow.right {
  right: 10px;
}
/* Custom styles for the heading */
.custom-heading {
  width: 100%;
  text-align: {{ section.settings.text_alignment }};
  color: {{ section.settings.text_color }};
}
.custom-heading-h1 {
  margin-top: 4%;
}
.video-flex-section {
  display: flex;
  justify-content: center; 
  align-content: center; 
  width: 100%;
  overflow: hidden;
}

.video-flex-content {
  width: 100%;
}

.video-flex-content video {
  width: 100%; 
  height: 88vh;
  object-fit: cover;
}

.banner__content {
  position: absolute !important;
  top: 10%;
}

.image-flex-content img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 749px) {
  .video-hide {
    display: none;
  }
  
  .banner__mobile,
  .image-flex-section,
  .image-flex-content {
    display: block !important;
  }

  .banner__mobile {
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .image-flex-content img {
    height: 60vh;
  }
  
  .banner__box-custom {
    padding-top: 12rem !important;
  }
}

@media screen and (min-width: 750px) {
  .banner__mobile {
    display: none;
  }
}
.hero-video-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 70vh; /* Full viewport height */
  text-align: center;
  color: {{ section.settings.title_color }};
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire section */
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.hero-video-title {
  font-size: 8rem; /* Large font size for impact */
  line-height: 1.2; /* Ensures tight line spacing */
  color: white;
  margin: 0;
  font-weight: bold;
          letter-spacing: 10px;
}

@media screen and (max-width: 767px) {
  .hero-video-title {
    font-size: 2.5rem; /* Adjust font size for smaller screens */
  }
}
/* Base setup */
.instagram-embed-section {
  position: relative;
  padding: 20px;
  overflow: hidden; /* Ensures anything outside the slider bounds is hidden */
}

/* Slider setup */
.instagram-slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform; /* Optimizes animations */
}

.slider-item {
  flex: 0 0 25%; /* Each item takes up 25% of the slider */
  max-width: 25%;
  box-sizing: border-box;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: white;
  z-index: 999;
}

.instagram-embed-wrapper {
  position: relative;
  z-index: 1;
  height: 480px;
  overflow: hidden;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 10px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Responsive adjustments */
@media (max-width: 1200px) {
  .slider-item {
    flex-basis: 33.33%; /* 3 posts per slide on medium screens */
    max-width: 33.33%;
  }
}

@media (max-width: 768px) {
  .slider-item {
    flex-basis: 50%; /* 2 posts per slide on small screens */
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .slider-item {
    flex-basis: 100%; /* 1 post per slide on very small screens */
    max-width: 100%;
  }
}
.icon-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; 
  width: 100%;
  padding: 2% 5%;
}

.icon-with-text {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 10px;
  flex: 1;
  max-width: 33%; 
  padding: 0 10px;
  text-align: center;
}

.icon-with-text img {
  width: 60px; 
  height: auto;
}

.icon-with-text p {
  margin: 0;
  font-size: 14px; 
  color: {{ section.settings.font_color }};
}


@media (min-width: 993px) {
  .icon-with-text {
    flex-direction: row; 
    align-items: center; 
  }

  .icon-with-text img {
    margin-right: 15px; 
  }
}

  @media (max-width: 660px) {
  .icon-text-container {
    flex-direction: row; 
    justify-content: center; 
    align-items: start;
  }

  .icon-with-text {
    width: 100%; 
    padding: 5px 0; 
  }
}
.video-with-text-section {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .video-with-text-section {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.video-container {
  position: relative;
  overflow: hidden;
  width: 85%; /* Adjust this value to control the width of the video */
  margin: 0 auto; /* Centers the video horizontally */
  height: auto;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
}


#shopify-section-template--22590178492765__image_with_text_yXQ3mA > div > div > div > div > div.image-with-text__media-item.image-with-text__media-item--medium.image-with-text__media-item--top.grid__item > div {
  border-radius: 10px;
}  

#shopify-section-template--22590178492765__video_text_column_dCbcJj > div > div > div > div > div.image-with-text__media-item.image-with-text__media-item--medium.image-with-text__media-item--top.grid__item > div > video {
  border-radius: 10px;
} 

#shopify-section-template--22590178492765__video_text_column_dCbcJj > div {
  padding-top: 50px;
  padding-bottom: 100px;
  
}