<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Main Section */
.our_gallery_section {
  background-color: #ffffff;
  padding: 120px 0;
  position: relative;
  text-align: center;
}

/* Section Title &amp; Description */
.our_gallery_section .section-title {
  color: var(--primary-dark-grey, #323132);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.our_gallery_section .section-description {
  color: var(--secondary-grey, #4C4C4E);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Slider Container */
.our_gallery_section .slider {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}

/* Apply fade transition to all slider images */
.our_gallery_section .slider img {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.fade-out {
  opacity: 0 !important;
}

/* Small Side Images */
.our_gallery_section #left-slide, 
.our_gallery_section #right-slide {
  display: flex;
  width: 381px;
  height: 428px;
  align-items: flex-end;
  flex-shrink: 0;
  margin-top: 75px;
}

.our_gallery_section #left-slide img, 
.our_gallery_section #right-slide img {
  width: 100%;
}

/* Main Center Slide */
.our_gallery_section .center-slide {
  width: 533px;
  height: 599px;
  flex-shrink: 0;
  margin-left: 12px;
  margin-right: 12px;
  position: relative;
   
}

.our_gallery_section .center-slide img {
  border-radius: 28px;
  width: 100%;
  height: auto;
}

/* Navigation Buttons (Default: Positioned Between Images) */
.our_gallery_section #prevBtn,
.our_gallery_section #nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  display: inline-flex;
  padding: 15px;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: var(--primary-orange, #F68E1E);
  z-index: 3;
  border:0px;
}

/* Positioning Buttons Between Images */
.our_gallery_section #prevBtn {
  left: calc(50% - 280px);
}

.our_gallery_section #nextBtn {
  right: calc(50% - 280px);
}

.our_gallery_section #prevBtn svg, 
.our_gallery_section #nextBtn svg {
  color: white;
}

.our_gallery_section .btn-outline-warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 1px solid #f68e1e;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
  color: #f68e1e;
  font-size: 18px;
  font-weight: 600;
  gap: 8px; 
  margin-top: 10px;
  display: flex;
  width: 188px;
  height: 53px;
  padding: 5px 27px 7px 15px;
  max-width: 350px;
  text-decoration: none;
  -webkit-transition: all .3sease;
  transition: all .3sease;
  white-space: nowrap;
  width: 100%;
}
.our_gallery_section .btn-outline-warning:hover {
  background-color: #f39c12;
  color: #fff;
}
.our_gallery_section .btn-outline-warning svg {
  stroke: #f68e1e;
  -webkit-transition: all .3sease;
  transition: all .3sease;
}
.our_gallery_section .btn-outline-warning:hover svg {
  stroke: #fff;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.view_gallery_btn_section{
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important ;
    -webkit-box-pack: center  ;
    -ms-flex-pack: center ;
    justify-content: center ;
    flex-wrap: wrap !important;
}

/* Responsive: Mobile View */
@media (max-width: 768px) {
  /* Hide Side Images */
  .our_gallery_section #left-slide, 
  .our_gallery_section #right-slide {
      display: none;
      
  }

  /* Center Slide Full Width */
  .our_gallery_section .center-slide {
      width: 100%;
      height: auto;
  }

  /* Move Buttons Below Image */
  .our_gallery_section #prevBtn,
  .our_gallery_section #nextBtn {
      position: static;
      transform: none;
      margin: 10px 5px;
      border:0px;
  }

  /* Center Buttons */
  .our_gallery_section .mobile-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
  }



  .our_gallery_section .btn-outline-warning { 
    max-width: 100%; 
  }
  
}
</pre></body></html>