/** Shopify CDN: Minification failed

Line 127:6 Expected identifier but found whitespace
Line 127:8 Unexpected "{"
Line 127:26 Expected ":"
Line 127:31 Expected ":"
Line 132:16 Expected identifier but found whitespace
Line 132:18 Unexpected "{"
Line 132:36 Expected ":"
Line 132:41 Expected ":"
Line 140:8 Expected identifier but found whitespace
Line 140:10 Unexpected "{"
... and 57 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-carousel (INDEX:0) */
.about-carousel-section {
  padding: 100px 0px 80px 20px;
  background: white;
}

.about-carousel {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc((100vw - min(calc(var(--page-width, 1320px) + var(--gutter) * 2), 90vw)) / 2);
  align-items: center;
}

.about-carousel .text-column {
  flex: 0 0 40%; /* Wider text column */
  min-width: 200px;
  align-content: center;
  padding-right: 50px;
}

.about-carousel .slider {
  flex: 0 0 60%; /* Adjust the slider width to fill remaining space */
  position: relative;
  overflow: hidden;
}

.about-carousel .slider__grid {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  transition: transform 0.5s ease;
}

.about-carousel .slider__item {
  flex: 0 0 100%;
  width: 100%;
  height: 500px; /* Fixed height for all slides */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Cover to maintain aspect ratio and crop */
}

.text-column h2 {
  font-size: 30px;
  color: #284E2F;
  text-align: left;
  margin-bottom: 10px;
}

.text-column p {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .about-carousel .text-column {
    flex: 0 0 100%;
    padding-right: 0px;
    margin-bottom: 30px;
  }
  .about-carousel .slider {
    flex: 0 0 100%;
  }
  .about-carousel-section {
    padding: 50px 30px 50px 10px;
  }
}

/* Dots Styles */
.dots {
  display: flex;
  justify-content: end;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 2%;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #284E2F;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  transition: width 0.3s ease;
  opacity: 50%;
}

.dot.active {
  width: 30px;
  border-radius: 50px;
  opacity: 100%;
}
/* END_SECTION:about-carousel */

/* START_SECTION:cards-section (INDEX:5) */
.cards-section {
  padding: 20px 0;
}

.cards-section .row {
  display: flex;
  flex-wrap: nowrap;
  gap: {{ card_gap_desktop }}px;
}

.cards-section .card {
  flex: 1 1 calc(33.33% - {{ card_gap_desktop }}px);
  margin-bottom: {{ card_gap_desktop }}px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .cards-section .row {
    gap: {{ card_gap_mobile }}px;
  }
  .cards-section .card {
    flex: 1 1 100%;
    margin-bottom: {{ card_gap_mobile }}px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .cards-section .row {
    gap: {{ card_gap_tablet }}px;
  }
  .cards-section .card {
    flex: 1 1 calc(50% - {{ card_gap_tablet }}px);
    margin-bottom: {{ card_gap_tablet }}px;
  }
}

.card-image img {
  display: block;
  width: auto;
  height: auto;
  border-radius: {{ block.settings.border_radius }}% !important;
  border-radius:50%;
}

.card-content {
  text-align: center;
}

@media (max-width: 768px) {
  .card-title {
    font-size: {{ block.settings.title_font_size_mobile }}px;
  }
  .card-description {
    font-size: {{ block.settings.description_font_size_mobile }}px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .card-title {
    font-size: {{ block.settings.title_font_size_tablet }}px;
  }
  .card-description {
    font-size: {{ block.settings.description_font_size_tablet }}px;
  }
}

@media (min-width: 992px) {
  .card-title {
    font-size: {{ block.settings.title_font_size_desktop }}px;
  }
  .card-description {
    font-size: {{ block.settings.description_font_size_desktop }}px;
  }
}
  @media (max-width: 992px) {
    .cards-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
  .cards-section .row   .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
  }
/* END_SECTION:cards-section */

/* START_SECTION:image-gallery-section (INDEX:26) */
.gallery-section {
  padding: 20px 0;
}

.gallery-section .gallery-title {
  text-align: left;
  margin-bottom: 20px;
}

.gallery-section .row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 20px;  
}

.gallery-section .gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: {{ section.settings.img_gap }}px;
  position: relative;  
}

.gallery-item .gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
}

.gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: {{ section.settings.img_shape }}%;
  transition: transform 0.3s ease;
}

.gallery-section .gallery-item .gallery-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: {{ section.settings.title_color }};
  font-size: {{ section.settings.title_font_size }}px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.gallery-section .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-section .gallery-item:hover .gallery-caption {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-section .gallery-item {
    flex: 1 1 calc(100% / {{ section.settings.img_count_mobile }});
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .gallery-section .gallery-item {
    flex: 1 1 calc(100% / {{ section.settings.img_count_tablet }});
  }
}

@media (min-width: 992px) {
  .gallery-section .gallery-item {
    flex: 1 1 calc(100% / {{ section.settings.img_count_desktop }});
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  display: block;
  max-width: 90%;
  max-height: 80%;
  margin: 5% auto;
}

.lightbox .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.lightbox .arrow {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  user-select: none;
}

.lightbox .arrow.prev {
  left: 10px;
}

.lightbox .arrow.next {
  right: 10px;
}

.lightbox .caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}
/* END_SECTION:image-gallery-section */

/* START_SECTION:landscape-testimonials (INDEX:28) */
.testimonials-carousel-section {
  padding: 80px 0 60px 0;
  background: #fff;
  text-align: center;
}

.testimonials-carousel-section h2 {
  font-size: 32px;
  color: #284E2F;
  margin-bottom: 50px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.testimonials-carousel-viewport {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-behavior: smooth;
}

.testimonials-slider__grid {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  padding-bottom: 20px; /* space for dots */
}

.testimonial-card {
  background: #D10C1C;
  color: #fff;
  border-radius: 18px;
  padding: 60px 40px 40px 40px;
  margin: 0 20px;
  position: relative;
  min-width: 520px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  box-sizing: border-box;
  opacity: 0.4;
  filter: grayscale(30%);
  transition: opacity 0.3s, filter 0.3s, background 0.3s;
  scroll-snap-align: center;
}

.testimonial-card.active {
  opacity: 1;
  filter: none;
  background: #D10C1C;
  z-index: 2;
}

.testimonial-card.inactive {
  background: #D10C1C;
  opacity: 0.2;
}

.testimonial-quote-bg {
  position: absolute;
  top: 34px;
  left: 38px;
  font-size: 120px;
  color: rgba(255,255,255,0.18);
  font-family: serif;
  line-height: 1;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.testimonial-text {
  font-size: 21px;
  line-height: 1.5;
  margin: 40px 0 32px 0;
  z-index: 1;
  font-weight: 400;
  text-align: center;
}

.testimonial-client {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: auto;
  z-index: 1;
  letter-spacing: 0.01em;
}

.testimonial-client span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0 0 0;
  gap: 16px;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background: #D10C1C;
  opacity: 0.3;
  border: none;
  transition: width 0.3s, opacity 0.3s, background 0.3s;
  cursor: pointer;
}

.testimonials-dot.active {
  width: 40px;
  opacity: 1;
  background: #D10C1C;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .testimonial-card {
    min-width: 400px;
    max-width: 400px;
    margin: 0 15px;
    padding: 50px 30px 30px 30px;
  }
}

@media (max-width: 900px) {
  .testimonials-carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials-slider__grid {
    transition: none !important;
  }
  .testimonial-card {
    min-width: calc(100vw - 32px); /* 16px margin on each side */
    max-width: calc(100vw - 32px);
    margin: 0 16px;
    padding: 40px 16px 32px 16px;
    box-sizing: border-box;
  }
}
/* END_SECTION:landscape-testimonials */

/* START_SECTION:types-of-landscape (INDEX:75) */
.landscape-types-section {
  padding: 0px 20px 40px 20px;
  background: #fff;
}

.types-container {
  text-align: center;
  margin-bottom: 30px;
}

.types-title {
  font-size: 30px;
  color: #284E2F;
  margin-bottom: 10px;
}

.types-description {
  font-size: 1.1em;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.landscape-carousel {
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.landscape-carousel-list {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  width: fit-content;
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
}
  
.landscape-carousel-list.active {
  cursor: grabbing;
}

.landscape-item {
  flex: 0 0 calc(25% - 1rem);
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

.landscape-item:hover {
  transform: translateY(-5px);
}

.landscape-image {
  width: 100%;
  height: 100%; /* Fill container height */
  object-fit: cover; /* Cover container, cropping as needed */
  display: block;
    user-drag: none;          /* Safari */
  -webkit-user-drag: none;  /* Safari */
  -moz-user-drag: none;     /* Firefox */
  -o-user-drag: none;       /* Opera */
  user-select: none;        /* Prevent text selection while dragging */
  pointer-events: none;     /* Prevent pointer events on image during drag */
}

.landscape-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 80%, transparent 100%);
  text-align: center;
}

.overlay-title {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}

.overlay-text {
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .landscape-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media screen and (max-width: 600px) {
  .landscape-item {
    flex: 0 0 calc(80% - 1rem);
    height: 500px;
  }
}
/* END_SECTION:types-of-landscape */