/** Shopify CDN: Minification failed

Line 122:19 Expected identifier but found whitespace
Line 122:21 Unexpected "{"
Line 122:30 Expected ":"

**/
/*start-Custom Footer*/
.custom-footer {
  background-color: #000000;
  padding: 40px 10px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align:center;

}
/* Titles */
.footer-column h4 {
  text-align:center;
  margin-bottom: 10px;
  font-size: 22px;
  color: #ffffff;
}

/* Paragraphs & Lists */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column p {
  color:#fff;
}
.footer-column .go-to-myth a {
  display:block;
  color:#fff;
      font-size:18px;
   margin-bottom: 5px;
  transition:ease-in-out 0.3s all;
}
.footer-column .go-to-myth a:hover {
  color: #c79f5e;
   text-decoration:underline;
}
/* Social Buttons */
.social-buttons {
  display: flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  background-color: #c79f5e;
  transition: all 0.3s ease-in-out;
}

.social-btn:hover {
  background-color: #ffffff; 
  color: #c79f5e;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-column h4 {
    font-size:18px;
  }
  .footer-column .go-to-myth a {
    font-size:14px;
  }
  .footer-container {
         grid-template-columns: 1fr 1fr;
        text-align: center;
  }
}
/*end-Custom Footer*/
/*. ANimation Backgorund  */
.custom-hero {
  position: relative;
  width: 100%;
  height: 80dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(0.7);
  transition: transform 1.3s ease-in-out;
  z-index: 0;
}

.custom-hero__img.animated {
  transform: scale(1);
}

.custom-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: {{ section.settings.overlay_color }};
  opacity:0.4;
  pointer-events: none;
}

.custom-hero__btn {
  padding: 10px 30px;
  border: 1px solid #C79F5E;
  cursor: pointer;
  font-size:16px;
  color: #fff;
  top:52%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  text-decoration: none;
  white-space: nowrap;
}

.custom-hero__btn:hover {
  background: #C79F5E !important;
  border: 2px solid #C79F5E;
}

@media (max-width: 767px) {
  .custom-hero .desktop-img { display: none; }
  .custom-hero .mobile-img  { display: block; }
}
@media (min-width: 768px) {
  .custom-hero .mobile-img  { display: none; }
  .custom-hero .desktop-img { display: block; }
}
/*. ANimation Backgorund  */
/*.icon with title */
.parent-slider-myth .icon-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.parent-slider-myth .icon-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.parent-slider-myth .icon-slider-section {
  border-top: 1px solid #C79F5E;
}

.parent-slider-myth {
  padding-top: 35px;
  position: relative;
}

.parent-slider-myth .icon-item {
  text-align: center;
  padding: 20px;
  box-shadow: 1px 0 #C79F5E;
}

.parent-slider-myth .icon-image img {
  margin: 0 auto 15px;
  display: block;
  width: 100px;
}

.parent-slider-myth .icon-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000000;
}

.parent-slider-myth .icon-description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}

/* Desktop grid */
@media (min-width: 768px) {
  .parent-slider-myth .icon-slider-wrapper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .parent-slider-myth .swiper-pagination {
    display: none;
  }
}

.parent-slider-myth .icon-slider-section .swiper-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px !important;
  gap: 8px;
}

.parent-slider-myth .icon-slider-section .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.2;
}

.parent-slider-myth .icon-slider-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(255, 255, 255);
  width: 10px;
  height: 10px;
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 8px #fff;
  transition: all 0.3s ease;
}
/*.icon with title */