/** Shopify CDN: Minification failed

Line 120:12 Expected identifier but found whitespace
Line 120:14 Unexpected "{"
Line 120:21 Expected ":"
Line 120:50 Expected ":"
Line 121:14 Expected identifier but found whitespace
Line 121:16 Unexpected "{"
Line 121:23 Expected ":"

**/


.text-left {
padding-bottom: 50px !important;}
/* Add your custom styles here */
.contact-form-section {
  /* Your styles for the contact form section */
}

.contact-form-section label {
  /* Your styles for the form field labels */
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
  /* Your styles for the form fields */
}

.contact-form-section button {
  /* Your styles for the submit button */
}






.multi-column-section {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 0; /* Add 20% padding to the top and bottom */
}

.section-title {
  width: 100%;
  text-align: center;
}

.columns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.column {
  width: calc(100% / {{ section.settings.column_count }});
  padding: 20px; /* Adjust the padding as needed */
  text-align: center;
}

.column-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.column-image img {
  height: auto;
  object-fit: cover;
}

@media (min-width: 1750px) {
  .column-image img {
    width: 705px;
  }
}

@media (min-width: 1600px) and (max-width: 1749px) {
  .column-image img {
    width: 600px;
  }
}

@media (min-width: 1250px) and (max-width: 1599px) {
  .column-image img {
    width: 550px;
  }
}

@media (max-width: 1039px) {
  .column {
    width: 100%; /* make each column full width on mobile */
  }
  .column-image img {
    width: 100%;
  }
}

.column-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: rgba(30, 30, 30, 0.5);
  padding: 10px;
  box-sizing: border-box;
  z-index: 1;
  font-size: {{ block.settings.text_font_size }}px;
  font-family: {{ block.settings.text_font_family }};
}

.column-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.5);
  opacity: 0.5;
}

.column-text-content {
  position: relative;
  z-index: 2;
}


.slider-section {
  width: 80vw;
  height: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.side {
  background-color: #282828;
}

.side img {
  opacity: 0.5;
}

#shopify-section-template--19725209076015__c4519145-bba7-4bc8-bf28-9bd71bedbe2d {
  padding: 50px 0px;
}

.slider-header {
  text-align: center;
  margin-bottom: 8px;
}

.slider-carousel {
  margin-top: -2%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slider-item {
  flex: 0 0 16%;
  height: auto;
  margin: 0 -2%; /* Reduce the horizontal margin */
  transition: opacity 0.5s, transform 0.5s;
  position: relative;
  z-index: 0;
}

.slider-item.center {
  flex: 0 0 36%;
  z-index: 2;
}

.slider-item:nth-child(2),
.slider-item:nth-child(4) {
  flex: 0 0 26%;
  z-index: 1;
}

.slider-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slider-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.slider-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #282828;
  opacity: 0.5;
  z-index: -1;
  transition: opacity 0.5s;
}

.slider-item:not(.center):before {
  opacity: 1;
}

.slider-item:hover:before {
  opacity: 0;
}

@media (max-width: 767px) {
  /* Styles for mobile devices with a maximum width of 767px */
  .slider-section {
    height: 100%;
  }
}

.slider-item:hover {
  opacity: 1;
  transform: scale(1);
  transition: none;
}

@media only screen and (max-width: 767px) {
  .slider-item.side:nth-child(1),
  .slider-item.side:nth-child(5) {
    display: none;
  }
  
  .slider-item.center {
    flex: 0 0 50%;
    z-index: 2;
  }
  
  .slider-item:nth-child(2),
  .slider-item:nth-child(4) {
    flex: 0 0 50%;
    z-index: 1;
  }
  
  .slider-item {
    margin: 0;
  }
  
  .slider-carousel {
    height: auto;
  }
}
