/* ============================================================ */
/* File Path: /assets/css/theme-colors.css */
/* Purpose: MASTER OVERRIDE STYLESHEET FOR THE ENTIRE WEBSITE */
/* Block Separator: Main Theme Styles */
/* Status: Updated to revert banner buttons to purple (#2e0c5e), preserve yellow (#facc15) for about section, update feature and footer icons, adjust story section, standardized section comments, corrected color comments for .mega-accordion-link and .resize-handle */
/* ============================================================ */

/* ============================================================ */
/* Purpose: Importing Google Fonts for Consistent Typography */
/* Block Separator: Font Imports */
/* Affects: All pages */
/* ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* ============================================================ */
/* Purpose: Global Resets and Typography Styles */
/* Block Separator: Global Resets & Typography */
/* Affects: All pages (index.html, about.html, contact.html, etc.) */
/* ============================================================ */
body {
  color: #ffffff !important; /* Text Color: #ffffff */
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  background-color: #ffffff !important; /* Background Color: #ffffff */
}
h2,
h3,
h4,
h5,
heln6 {
  color: #222222 !important; /* Heading Color: #222222 */
  font-family: "DM Sans", sans-serif !important;
  text-transform: capitalize !important;
}
h1 {
  font-size: 68px !important;
  font-weight: 600 !important;
  line-height: 120% !important;
  font-family: "DM Sans", sans-serif !important;
}
p {
  font-size: 16px !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
  color: #888888 !important; /* Paragraph Text Color: #888888 */
  font-family: "DM Sans", sans-serif !important;
}
a {
  text-decoration: none !important;
  text-transform: capitalize !important;
  margin: 0 !important;
  color: #222222 !important; /* Link Color: #222222 */
  font-family: "DM Sans", sans-serif !important;
  transition: all 0.3s !important;
}
a:hover {
  text-decoration: none !important;
  color: #facc15 !important; /* Link Hover Color (Grenier's Yellow): #facc15 */
}
ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
input {
  color: #ffffff !important; /* Text Color: #ffffff */
}
input:focus {
  color: #ffffff !important; /* Text Color: #ffffff */
  outline: none !important;
}

























/* ============================================================ */

/* Purpose: NEED TO REMOVE SECTION BELOW IN HTML
/* Block Separator: Header & Navigation */
/* Affects: Header on all pages (index.html, about.html, etc.) */

/* =========  NEED TO REMOVE SECTION BELOW IN HTML  ========== */

/* ============================================================ */
/* Purpose: Styling for Header and Navigation Elements */
/* Block Separator: Header & Navigation */
/* Affects: Header on all pages (index.html, about.html, etc.) */
/* ============================================================ */
.header__one,
.menu-fixed {
  background: #2c0e53 !important; /* Header Background Color (Dark Purple): #2c0e53 */
}
.header-wrapper .main-menu li a {
  color: #ffd901 !important; /* Header Link Color: #ffffff */
}
.header-wrapper .menu__components i,
.header-wrapper .main-menu li a i {
  color: #ffffff !important; /* Icon Color: #ffffff */
}
.header-wrapper .main-menu li .sub-menu {
  background: #ffffff !important; /* Background Color: #ffffff */
}
.header-wrapper .main-menu li .sub-menu li a {
  color: #222222 !important; /* Text Color: #222222 */
}
.header-wrapper .main-menu li .sub-menu li:hover a {
  color: #facc15 !important; /* Dropdown Hover Color (Grenier's Yellow): #facc15 */
}
.header-wrapper .main-menu li .sub-menu li a::before {
  background: #facc15 !important; /* Dropdown Accent Color (Grenier's Yellow): #facc15 */
}
.header-wrapper .main-menu li:hover .sub-menu::before {
  background: #ffffff !important; /* Background Color: #ffffff */
}
.header-bar span {
  background: #ffffff !important; /* Background Color: #ffffff */
}

/* ============================================================ */
/* This changes the Mobile Mneu Items Backround Color
/* ============================================================ */

@media screen and (max-width: 991px) {
  .main-menu {
    background: #17171717 !important; /* Background Color: #ffffff */
  }
  .main-menu li a {
    color: #222222 !important; /* Text Color: #222222 */
  }
}
/* ============================================================ */
/* Mobile Mneu Items Backround Color End
/* ============================================================ */


/* ============================================================ */
/* Purpose: Styling for Sidebar (Mobile Menu Panel) */
/* Block Separator: Sidebar (Mobile Menu Panel) */
/* Affects: Sidebar on all pages (index.html, about.html, etc.) */
/* ============================================================ */
.side_bar {
  background-color: #2c0e53 !important; /* Sidebar Background Color (Dark Purple): #2c0e53 */
}
.side_bar p.text-justify,
.side_bar .info li a,
.side_bar .info li i,
.side_bar .social__icon li a i {
  color: #ffffff !important; /* Text Color: #ffffff */
}
.side_bar button {
  background-color: #ffffff !important; /* Background Color: #ffffff */
}
.side_bar button i {
  color: #facc15 !important; /* Icon Color (Grenier's Yellow): #facc15 */
}
.side_bar .social__icon li {
  border: 1px solid #bb00ff !important; /* Border Color: #ffffff */
}
.side_bar .social__icon li:hover {
  background-color: #ffffff !important; /* Background Color: #ffffff */
}
.side_bar .social__icon li:hover a i {
  color: #facc15 !important; /* Icon Hover Color (Grenier's Yellow): #facc15 */
}

/* ============================================================ */
/* Purpose: Styling for Reusable Components and Buttons */
/* Block Separator: Reusable Components & Buttons */
/* Affects: All pages */
/* ============================================================ */
.section__title h6 {
  color: #275c53 !important; /* Subtitle Color: #275c53 */
}
.primary-color {
  color: #facc15 !important; /* Primary Accent Color (Grenier's Yellow): #facc15 */
}
.blacks {
  color: #181818 !important; /* Text Color: #181818 */
}

.cmn--btn {
  color: #2e0c5e !important; /* Button Text Color (Primary Purple): #2e0c5e */
  border: 2px solid #2e0c5e !important; /* Button Border Color (Primary Purple): #2e0c5e */
}
.cmn--btn span {
  color: #2e0c5e !important; /* Button Span Color (Primary Purple): #2e0c5e */
}
.cmn--btn:hover,
.cmn--btn::before {
  background-color: #facc15 !important; /* Button Hover Background (Grenier's Yellow): #facc15 */
}
.cmn--btn:hover span {
  color: #ffffff !important; /* Text Color: #ffffff */
}
.cmn--btn2 {
  background: #2e0c5e !important; /* Solid Button Background (Primary Purple): #2e0c5e */
  color: #ffffff !important; /* Text Color: #ffffff */
}
.cmn--btn2::before {
  background-color: #facc15 !important; /* Hover Background (Grenier's Yellow): #facc15 */
}
.cmn--btn2:hover {
  background-color: #facc15 !important; /* Hover Background (Grenier's Yellow): #facc15 */
}
.cmn--btn3,
.cmn--btn3 i {
  color: #222222 !important; /* Text Color: #222222 */
}
.cmn--btn3:hover,
.cmn--btn3:hover i {
  color: #facc15 !important; /* Link Button Hover (Grenier's Yellow): #facc15 */
}

/* ============================================================ */
/* Purpose: Styling for Banner and Breadcrumbs */
/* Block Separator: Banner & Breadcrumbs */
/* ============================================================ */
.banner__section .arry__button .arry__prev i,
.banner__content p,
.banner__content h1,
.banner__section .arry__button .arry__next i {
  color: #ffffff !important; /* Text Color: #ffffff */
}
.banner__section .arry__button .arry__prev {
  background-color: #2e0c5e!important; /* Background Color: #ffffff */
  border: 1px solid #ffffff !important; /* Border Color: #ffffff */
}
.banner__section .arry__button .arry__prev:hover {
  background-color: #facc15 !important; /* Background Color (Grenier's Yellow): #facc15 */
  border: 1px solid #facc15 !important; /* Border Color (Grenier's Yellow): #facc15 */
}
.banner__section .arry__button .arry__next {
  background-color: #2e0c5e !important; /* Background Color (Primary Purple): #2e0c5e */
  border: 1px solid #2e0c5e !important; /* Border Color (Primary Purple): #2e0c5e */
}
.banner__section .arry__button .arry__prev:hover i,
.banner__section .arry__button .arry__next i {
  color: #ffffff !important; /* Icon Color: #ffffff */
}
.banner__section .arry__button .arry__next:hover {
  background-color: #facc15 !important; /* Hover Background (Grenier's Yellow): #facc15 */
  border: 1px solid #facc15 !important; /* Hover Border (Grenier's Yellow): #facc15 */
}
.banner__image::before,
.imagetwo::before,
.imagethree::before,
.breadcumd__banner::before,
.contact__section::before {
  background: rgba(0, 0, 0, 0.7) !important; /* Overlay Color: rgba(0, 0, 0, 0.7) */
}
.breadcumd__banner .breadcumd__wrapper .left__content,
.breadcumd__banner .breadcumd__wrapper .right__content li a,
.breadcumd__banner .breadcumd__wrapper .right__content li i {
  color: #ffffff !important; /* Text Color: #ffffff */
}
.breadcumd__banner .breadcumd__wrapper .right__content li,
.breadcumd__banner .breadcumd__wrapper .right__content li a:hover {
  color: #facc15 !important; /* Accent Color (Grenier's Yellow): #facc15 */
}

/* ============================================================ */
/* Purpose: Styling for Feature Section */
/* Block Separator: Feature Section */
/* ============================================================ */
.feature__section .feature__wrapper {
  background-color: #ffffff !important; /* Background Color: #ffffff */
}
.feature__section .feature__items .feature__thumb::after {
  background: linear-gradient(360deg, #2222229c, transparent) !important; /* Gradient Overlay from #222222 to transparent */
}
.feature__section .feature__items .feature__box .feature__title,
.feature__section .feature__items .feature__content p,
.feature__section .feature__items .feature__content .feature__title {
  color: #ffffff !important; /* Text Color: #ffffff */
}
.feature__section .feature__items .feature__box .feature__icon i {
  color: #2e0c5e !important; /* Icon Color (Primary Purple): #2e0c5e */
}
.feature__section .feature__items .feature__box .feature__icon .icon,
.feature__section .feature__items .feature__content {
  background: #2e0c5e !important; /* Background Color (Primary Purple): #2e0c5e */
}

/* ============================================================ */
/* Purpose: Styling for About, Story, and Service Sections */
/* Block Separator: About, Story, Service Sections */
/* ============================================================ */
.about__section .about__content h2 span,
.about__section .about__content ul li i {
  color: #facc15 !important; /* Accent Color (Grenier's Yellow): #facc15 */
}
.story__section {
  background-color: #facc15 !important; /* Background Color (Grenier's Yellow): #facc15 */
}
.story__section .story__content h6 {
  color: #2e0c5e !important; /* Accent Color (Primary Purple): #2e0c5e */
}
.story__section .story__content p {
  color: #e0e0e0 !important; /* Text Color (Light Gray): #e0e0e0 */
}
.story__section .story__content h2,
.story__section .story__content h6:not(.sub__tittle) {
  color: #ffffff !important; /* Text Color: #ffffff */
}
.story__section .story__content a:hover {
  color: #facc15 !important; /* Hover Color (Grenier's Yellow): #facc15 */
}
.service__section {
  background-color: #f5f0ea !important; /* Background Color: #f5f0ea */
}
.service__items:hover .service__content h4 a {
  color: #facc15 !important; /* Accent Color (Grenier's Yellow): #facc15 */
}

/* ============================================================ */
/* Purpose: Styling for Product/Service Cards */
/* Block Separator: Product/Service Cards */
/* ============================================================ */
.product__section .product__items {
  background-color: #ffffff !important; /* Background Color: #ffffff */
}
.product__section .product__items .product__content ul li i,
.product__items .product__content h4 a:hover {
  color: #facc15 !important; /* Accent Color (Grenier's Yellow): #facc15 */
}
.product__section .product__items .product__thumb .product__icon li {
  background-color: #facc15 !important; /* Background Color (Grenier's Yellow): #facc15 */
}
.product__section .product__items .product__thumb .product__icon li a i {
  color: #ffffff !important; /* Text Color: #ffffff */
}

/* ============================================================ */
/* Purpose: Styling for Footer Section */
/* Block Separator: Footer */
/* ============================================================ */
.footer__section::before {
  background: rgba(0, 0, 0, 0.7) !important; /* Overlay Color: rgba(0, 0, 0, 0.7) */
}
.footer__section p,
.footer__section .footer__top .footer__widget .list li a,
.footer__section .footer__top .footer__widget .contact__list li a,
.footer__section .footer__top .footer__widget .widget__head h5,
.footer__section .footer__top .footer__widget .recent__items .content h6 a,
.footer__bottom p {
  color: #ffffff !important; /* Text Color: #ffffff */
}
.footer__section .footer__top .footer__widget .contact__list li a i,
.footer__section .footer__top .footer__widget .list li a i {
  color: #2e0c5e !important; /* Icon Color (Primary Purple): #2e0c5e */
}
.footer__section .footer__top .footer__widget .recent__items .content p,
.footer__bottom p a {
  color: #facc15 !important; /* Accent Color (Grenier's Yellow): #facc15 */
}
.footer__section .footer__top .footer__widget .footer__newsletter button {
  background: #facc15 !important; /* Button Background (Grenier's Yellow): #facc15 */
  color: #ffffff !important; /* Text Color: #ffffff */
}
.social__icon li {
  border: 1px solid #ffffff !important; /* Border Color: #ffffff */
}
.social__icon li a i {
  color: #ffffff !important; /* Icon Color: #ffffff */
}
.social__icon li:hover {
  background-color: #facc15 !important; /* Hover Background (Grenier's Yellow): #facc15 */
  border: 1px solid #facc15 !important; /* Hover Border Color (Grenier's Yellow): #facc15 */
}












/* ============================================================ */
/* Purpose: Styling for Mega Menu Component */
/* Block Separator: Mega Menu Component Styles */
/* ============================================================ */
.mega-container {
  display: none !important; 
  position: fixed !important;
  background: #fff !important; /* Background Color: #ffffff */
  border: 1px solid #e0e0e0 !important; /* Border Color: #e0e0e0 */
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  z-index: 999999 !important;
  width: 800px !important;
  max-height: 600px !important;
  min-width: 320px !important;
  min-height: 250px !important;
  font-family: "Poppins", sans-serif !important;
  color: #333 !important; /* Text Color: #333333 */
  opacity: 0 !important;
  transform: translateY(15px) !important;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out !important;
  overflow: hidden !important;
  flex-direction: column !important;
}
.mega-container.active {
  display: flex !important; 
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.mega-header {
  background: #f7f7f7 !important; /* Background Color: #f7f7f7 */
  padding: 15px 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: move !important;
  border-bottom: 1px solid #e0e0e0 !important; /* Border Color: #e0e0e0 */
  user-select: none !important;
  flex-shrink: 0 !important;
}
.mega-header h3 {
  margin: 0 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important; /* Text Color: #1a1a1a */
}
.mega-close {
  background: 0 0 !important;
  border: none !important;
  color: #888 !important; /* Icon Color: #888888 */
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}
.mega-close:hover {
  background: #e9e9e9 !important; /* Background Color: #e9e9e9 */
  color: #1a1a1a !important; /* Text Color: #1a1a1a */
  transform: rotate(90deg) !important;
}
.mega-content {
  padding: 20px !important;
  overflow-y: auto !important;
  flex-grow: 1 !important;
}
.mega-columns {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 20px !important;
}
.mega-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.mega-item a {
  display: block !important;
  color: #333 !important; /* Text Color: #333333 */
  background-color: #f5f5f5 !important; /* Background Color: #f5f5f5 */
  text-decoration: none !important;
  padding: 12px 18px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  border: 1px solid transparent !important;
  transition: all 0.25s ease-out !important;
}
.mega-item a:hover {
  background-color: #fff !important; /* Background Color: #ffffff */
  color: #facc15 !important; /* Text Color (Grenier's Yellow): #facc15 */
  border-color: #facc15 !important; /* Border Color (Grenier's Yellow): #facc15 */
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}
.mega-accordion {
  border: 1px solid #e5e7eb !important; /* Border Color: #e5e7eb */
  border-radius: 8px !important;
  overflow: hidden !important;
  transition: box-shadow 0.2s ease !important;
}
.mega-accordion:hover {
  border-color: #d1d5db !important; /* Border Color: #d1d5db */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}
.mega-accordion-trigger {
  width: 100% !important;
  padding: 15px 20px !important;
  background-color: #f9fafb !important; /* Background Color: #f9fafb */
  border: none !important;
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #111827 !important; /* Text Color: #111827 */
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.mega-accordion-trigger:hover {
  background-color: #f3f4f6 !important; /* Background Color: #f3f4f6 */
}
.mega-accordion-trigger i {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  font-size: 12px !important;
  color: #6b7280 !important; /* Icon Color: #6b7280 */
}
.mega-accordion.active .mega-accordion-trigger {
  background-color: #e5e7eb !important; /* Background Color: #e5e7eb */
}
.mega-accordion.active .mega-accordion-trigger i {
  transform: rotate(180deg) !important;
}
.mega-accordion-panel {
  /* This rule is intentionally left blank. The specific state rules below control its behavior. */
}
.mega-accordion:not(.active) .mega-accordion-panel {
  max-height: 0 !important;
  overflow: hidden !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: none !important;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out !important;
}
.mega-accordion.active .mega-accordion-panel {
  max-height: 500px !important;
  background: #fff !important; /* Background Color: #ffffff */
  padding: 10px !important;
  border-top: 1px solid #e5e7eb !important; /* Border Color: #e5e7eb */
  transition: max-height 0.4s ease-out, padding 0.4s ease-out !important;
}
.mega-accordion-link {
  display: block !important;
  padding: 12px 10px !important;
  color: #ffffff !important; /* Text Color: #ffffff */
  text-decoration: none !important;
  font-size: 15px !important;
  border-radius: 4px !important;
  margin: 4px 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}
.mega-accordion-link:hover {
  background-color: #f3f4f6 !important; /* Background Color: #f3f4f6 */
  color: #f9f9f7 !important; /* Text Color: #f9f9f7 */
  transform: translateX(5px) !important;
}
.resize-handle {
  position: absolute !important;
  background: #2e0c5e !important; /* Handle Color: #2e0c5e (Primary Purple) */
  z-index: 1000000 !important;
  transition: all 0.2s ease !important;
  border-radius: 8px !important;
}
.resize-top,
.resize-bottom {
  height: 10px !important;
  left: 12px !important;
  right: 12px !important;
  cursor: ns-resize !important;
}
.resize-left,
.resize-right {
  width: 10px !important;
  top: 12px !important;
  bottom: 12px !important;
  cursor: ew-resize !important;
}
.resize-top {
  top: -5px !important;
}
.resize-bottom {
  bottom: -5px !important;
}
.resize-left {
  left: -5px !important;
}
.resize-right {
  right: -5px !important;
}
.resize-top-left,
.resize-top-right,
.resize-bottom-left,
.resize-bottom-right {
  width: 16px !important;
  height: 16px !important;
  background: rgba(0, 123, 255, 0.4) !important; /* Handle Color: rgba(0, 123, 255, 0.4) */
  border: 2px solid #fff !important; /* Border Color: #ffffff */
  border-radius: 50% !important;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1) !important;
}
.resize-top-left {
  top: -8px !important;
  left: -8px !important;
  cursor: nwse-resize !important;
}
.resize-top-right {
  top: -8px !important;
  right: -8px !important;
  cursor: nesw-resize !important;
}
.resize-bottom-left {
  bottom: -8px !important;
  left: -8px !important;
  cursor: nesw-resize !important;
}
.resize-bottom-right {
  bottom: -8px !important;
  right: -8px !important;
  cursor: nwse-resize !important;
}
.resize-handle:hover {
  background: #facc15 !important; /* Handle Hover Color (Grenier's Yellow): #facc15 */
  transform: scale(1.1) !important;
}
















/* ============================================================ */
/* Purpose: Styling for Third-Party Plugins (Nice Select, Magnific Popup, Swiper) */
/* Block Separator: Third-Party Plugin Styles */
/* ============================================================ */
.nice-select {
  -webkit-tap-highlight-color: transparent !important;
  background-color: transparent !important;
  border-radius: 5px !important;
  border: solid 1px #2e0c5e !important; /* Border Color (Primary Purple): #2e0c5e */
  box-sizing: border-box !important;
  clear: both !important;
  cursor: pointer !important;
  display: block !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: normal !important;
  outline: none !important;
  padding: 14px 35px 14px 15px !important;
  position: relative !important;
  text-align: left !important;
  transition: all 0.2s ease-in-out !important;
  user-select: none !important;
  white-space: nowrap !important;
  width: 160px !important;
}
.nice-select:hover {
  border-color: #facc15 !important; /* Border Hover Color (Grenier's Yellow): #facc15 */
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #2e0c5e !important; /* Border Color (Primary Purple): #2e0c5e */
}
.nice-select:after {
  border-bottom: 2px solid #2e0c5e !important; /* Border Color (Primary Purple): #2e0c5e */
  border-right: 2px solid #2e0c5e !important; /* Border Color (Primary Purple): #2e0c5e */
  content: '' !important;
  display: block !important;
  height: 12px !important;
  margin-top: -6px !important;
  pointer-events: none !important;
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform-origin: 66% 66% !important;
  transform: rotate(45deg) !important;
  transition: all 0.15s ease-in-out !important;
  width: 12px !important;
}
.nice-select.open:after {
  transform: rotate(-135deg) !important;
}
.nice-select.disabled {
  border-color: #2e0c5e !important; /* Border Color (Primary Purple): #2e0c5e */
  color: #2e0c5e !important; /* Text Color (Primary Purple): #2e0c5e */
  pointer-events: none !important;
}
.nice-select.disabled:after {
  border-color: #2e0c5e !important; /* Border Color (Primary Purple): #2e0c5e */
}
.nice-select .list {
  background-color: #150145 !important; /* Background Color: #150145 */
  border-radius: 5px !important;
  box-sizing: border-box !important;
  margin-top: 4px !important;
  opacity: 0 !important;
  width: 160px !important;
  display: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  right: 0 !important;
  transform-origin: 50% 0 !important;
  transform: scale(0.75) translateY(-21px) !important;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out !important;
  z-index: 9 !important;
}
.nice-select.open .list {
  opacity: 1 !important;
  display: block !important;
  pointer-events: auto !important;
  transform: scale(1) translateY(0) !important;
}
.nice-select .option {
  cursor: pointer !important;
  font-weight: 400 !important;
  line-height: 40px !important;
  list-style: none !important;
  min-height: 40px !important;
  outline: none !important;
  z-index: 9999999 !important;
  padding: 0px 10px !important;
  border: 1px solid #121254 !important; /* Border Color: #121254 */
  text-align: left !important;
  transition: all 0.2s !important;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #facc15 !important; /* Background Color (Grenier's Yellow): #facc15 */
}
.nice-select .option.disabled {
  background-color: transparent !important;
  color: #999 !important; /* Color: #999999 */
  cursor: default !important;
}

.mfp-bg {
  top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
  z-index: 1042 !important;
  overflow: hidden !important;
  position: fixed !important;
  background: #0b0b0b !important; /* Color: #0b0b0b */
  opacity: 0.8 !important;
}
.mfp-wrap { top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; z-index: 1043 !important; position: fixed !important; outline: none !important; }
.mfp-container { text-align: center !important; position: absolute !important; width: 100% !important; height: 100% !important; left: 0 !important; top: 0 !important; padding: 0 8px !important; box-sizing: border-box !important; }
.mfp-container:before { content: '' !important; display: inline-block !important; height: 100% !important; vertical-align: middle !important; }
.mfp-content { position: relative !important; display: inline-block !important; vertical-align: middle !important; margin: 0 auto !important; text-align: left !important; z-index: 1045 !important; }
.mfp-preloader {
  color: #CCC !important; /* Color: #cccccc */
  position: absolute !important;
  top: 50% !important;
  width: auto !important;
  text-align: center !important;
  margin-top: -0.8em !important;
  left: 8px !important;
  right: 8px !important;
  z-index: 1044 !important;
}
.mfp-preloader a { color: #CCC !important; } /* Color: #cccccc */
.mfp-preloader a:hover { color: #FFF !important; } /* Color: #ffffff */
button.mfp-close, button.mfp-arrow { background: transparent !important; border: 0 !important; }
.mfp-close {
  width: 44px !important; height: 44px !important; line-height: 44px !important;
  position: absolute !important; right: 0 !important; top: 0 !important;
  text-decoration: none !important; text-align: center !important;
  opacity: 0.65 !important;
  padding: 0 0 18px 10px !important;
  color: #FFF !important; /* Color: #ffffff */
  font-style: normal !important; font-size: 28px !important;
  font-family: Arial, Baskerville, monospace !important;
}
.mfp-close:hover, .mfp-close:focus { opacity: 1 !important; }
.mfp-close-btn-in .mfp-close { color: #333 !important; } /* Color: #333333 */
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close { color: #FFF !important; } /* Color: #ffffff */
.mfp-counter { color: #CCC !important; } /* Color: #cccccc */
.mfp-arrow:before { border-right: 27px solid #3F3F3F !important; border-left: 27px solid #3F3F3F !important; } /* Color: #3f3f3f */
.mfp-arrow:after { border-right: 17px solid #FFF !important; border-left: 17px solid #FFF !important; } /* Color: #ffffff */
.mfp-iframe-scaler iframe { background: #000 !important; } /* Color: #000000 */
.mfp-figure:after { background: #444 !important; } /* Color: #444444 */
.mfp-figure small { color: #BDBDBD !important; } /* Color: #bdbdbd */
.mfp-title { color: #F3F3F3 !important; } /* Color: #f3f3f3 */
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-bottom-bar { background: rgba(0, 0, 0, 0.6) !important; }
  .mfp-img-mobile .mfp-close { background: rgba(0, 0, 0, 0.6) !important; }
}
:root {
  --swiper-theme-color: #2e0c5e !important; /* Swiper Theme Color (Primary Purple): #2e0c5e */
}
.swiper-button-next,
.swiper-button-prev {
  color: #2e0c5e !important; /* Swiper Arrow Color (Primary Purple): #2e0c5e */
}
.swiper-pagination-bullet {
  background: #000000 !important; /* Inactive Pagination Dot Color: #000000 */
}
.swiper-pagination-bullet-active {
  background: #2e0c5e !important; /* Active Pagination Dot Color (Primary Purple): #2e0c5e */
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25) !important; /* Progress Bar Track Color: rgba(0, 0, 0, 0.25) */
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #2e0c5e !important; /* Progress Bar Fill Color (Primary Purple): #2e0c5e */
}
.swiper-scrollbar {
  background: rgba(0, 0, 0, 0.1) !important; /* Scrollbar Track Color: rgba(0, 0, 0, 0.1) */
}
.swiper-scrollbar-drag {
  background: #2e0c5e !important; /* Scrollbar Handle Color (Primary Purple): #2e0c5e */
}
.swiper-lazy-preloader {
  border: 4px solid #2e0c5e !important; /* Spinner Color (Primary Purple): #2e0c5e */
  border-top-color: transparent !important;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #ffffff !important; /* Color: #ffffff */
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000000 !important; /* Color: #000000 */
}
.swiper-cube .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15) !important; /* Shadow for Cube Effect: rgba(0, 0, 0, 0.15) */
}
.swiper-cube .swiper-cube-shadow:before {
  background: #000 !important; /* Underlying Shadow Color: #000000 */
}

/* ============================================================ */
/* Purpose: Styling for Custom Scrollbar and Global Scroll Behavior */
/* Block Separator: Custom Scrollbar & Global Scroll Behavior */
/* ============================================================ */
html {
  scroll-behavior: smooth;
  scrollbar-color: #facc15 #111111; /* Thumb Color (Grenier's Yellow): #facc15, Track Color: #111111 */
  scrollbar-width: auto;
}
::-webkit-scrollbar {
  width: 16px;
}
::-webkit-scrollbar-track {
  background: #111111; /* Track Color: #111111 */
}
::-webkit-scrollbar-thumb {
  background-color: #facc15; /* Thumb Color (Grenier's Yellow): #facc15 */
  border-radius: 10px;
  border: 3px solid #111111; /* Border Color: #111111 */
}
::-webkit-scrollbar-thumb:hover {
  background-color: #eab308; /* Hover Color (Darker Yellow): #eab308 */
}