/*!***********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/photoswipe/dist/photoswipe.css ***!
  \***********************************************************************************************/
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/*!**************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./assets/scss/main.scss ***!
  \**************************************************************************************************************************************************************************************/
@font-face {
  font-family: "Helvetica Neue";
  src: url(HelveticaNeue-Thin.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url(HelveticaNeue-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url(HelveticaNeue-Roman.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url(HelveticaNeue-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url(HelveticaNeue-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  max-width: 100%;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html #wpadminbar {
  position: fixed;
}

body {
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Barlow", san-serif;
}
body.hidden {
  overflow: hidden;
}

.section {
  position: relative;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.container.container-gt > .row > .col-auto > *[class*=wp-block-] {
  margin-bottom: 28px;
}

.overflow-hidden {
  overflow: hidden !important;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
.container {
  width: 100%;
  max-width: 1920px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 1400px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.container--full {
  max-width: 100%;
}
.container--small {
  max-width: 720px;
}
.container--normal {
  max-width: 1420px;
}
.container > div {
  width: 100%;
}
.container .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  margin-left: calc(var(--bs-gutter-x) / -2);
  margin-right: calc(var(--bs-gutter-x) / -2);
  width: calc(100% + var(--bs-gutter-x));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1400px) {
  .container .row {
    --bs-gutter-x: 60px;
  }
}
@media (max-width: 767px) {
  .container .row {
    --bs-gutter-x: 15px;
    margin-left: calc(var(--bs-gutter-x) / -2);
    margin-right: calc(var(--bs-gutter-x) / -2);
    width: calc(100% + var(--bs-gutter-x));
  }
}
.container .col-auto {
  padding-left: calc(var(--bs-gutter-x) / 2);
  padding-right: calc(var(--bs-gutter-x) / 2);
  width: 100%;
}
@media (max-width: 767px) {
  .container .col-auto {
    padding-left: calc(var(--bs-gutter-x) / 2);
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
}
.container--left-offset {
  overflow: hidden;
}
@media (min-width: 1400px) {
  .container--left-offset {
    position: relative;
    width: 100%;
    margin-right: 0;
    padding: 0 0 0 30px;
    max-width: 100%;
    overflow: hidden;
  }
}
@media (min-width: 1400px) and (max-width: 991px) {
  .container--left-offset .row {
    margin-left: calc(var(--bs-gutter-x) / -2);
    margin-right: calc(var(--bs-gutter-x) / -2);
    width: calc(100% + var(--bs-gutter-x));
  }
}
@media (min-width: 1400px) and (max-width: 991px) {
  .container--left-offset .col-auto {
    padding-left: calc(var(--bs-gutter-x) / 2);
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
}
@media (min-width: 1400px) {
  .container--right-offset {
    position: relative;
    width: calc(100% - ((100% - 1920px) / 2 + 30px));
    margin-right: max(30px, (100% - 1920px) / 2 + 30px);
    margin-left: 0;
    max-width: 100%;
    padding: 0;
  }
  .container--right-offset .row {
    margin: 0;
  }
}
@media (min-width: 1400px) and (max-width: 991px) {
  .container--right-offset .row {
    margin-left: calc(var(--bs-gutter-x) / -2);
    margin-right: calc(var(--bs-gutter-x) / -2);
    width: calc(100% + var(--bs-gutter-x));
  }
}
@media (min-width: 1400px) {
  .container--right-offset .col-auto {
    padding: 0;
  }
}
@media (min-width: 1400px) and (max-width: 991px) {
  .container--right-offset .col-auto {
    padding-left: calc(var(--bs-gutter-x) / 2);
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
}
@media (max-width: 991px) {
  .container--left-offset {
    padding-right: 0;
  }
}

.w-100 {
  width: 100%;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

@media (max-width: 991px) {
  .d-mobile-none {
    display: none !important;
  }
  .d-mobile-block {
    display: block !important;
  }
  .d-mobile-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .d-tablet-none {
    display: none !important;
  }
  .d-tablet-block {
    display: block !important;
  }
  .d-tablet-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-desktop-none {
    display: none !important;
  }
  .d-desktop-block {
    display: block !important;
  }
  .d-desktop-flex {
    display: flex !important;
  }
}
.d-none {
  display: none !important;
}

.g-0 {
  --bs-gutter-x: 0;
}

.g-1 {
  --bs-gutter-x: 0.25rem;
}

.g-2 {
  --bs-gutter-x: 0.5rem;
}

.g-3 {
  --bs-gutter-x: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 3rem;
}

@media (min-width: 768px) {
  .only-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .mobile-spacer {
    height: 50px !important;
  }
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal !important;
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  overflow-wrap: normal !important;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.image-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0196078431);
  position: absolute;
  z-index: 1;
  border-radius: 12px;
}

.heading-1 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-1 {
    font-size: 5rem;
    line-height: 88px;
  }
}
@media (max-width: 767px) {
  .heading-1 {
    font-size: 2.5rem;
    line-height: 48px;
  }
}

.heading-2 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-2 {
    font-size: 3rem;
    line-height: 56px;
  }
}
@media (max-width: 767px) {
  .heading-2 {
    font-size: 2.25rem;
    line-height: 44px;
  }
}

.heading-3 {
  font-weight: 500;
}
@media (min-width: 768px) {
  .heading-3 {
    font-size: 2.5rem;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .heading-3 {
    font-size: 2rem;
    line-height: 40px;
  }
}

.heading-4 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-4 {
    font-size: 2rem;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .heading-4 {
    font-size: 1.5rem;
    line-height: 32px;
  }
}

.heading-5 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-5 {
    font-size: 1.25rem;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .heading-5 {
    font-size: 1.125rem;
    line-height: 24px;
  }
}

.heading-6 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
}

.tagline {
  font-weight: 400;
}
@media (min-width: 768px) {
  .tagline {
    font-size: 1.25rem;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .tagline {
    font-size: 1.125rem;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .mobile-heading-1 {
    font-size: 2.5rem;
    line-height: 48px;
    font-weight: 700;
  }
  .mobile-heading-2 {
    font-size: 2.25rem;
    line-height: 44px;
    font-weight: 700;
  }
  .mobile-heading-3 {
    font-size: 2rem;
    line-height: 40px;
    font-weight: 700;
  }
  .mobile-heading-4 {
    font-size: 1.5rem;
    line-height: 32px;
    font-weight: 700;
  }
  .mobile-heading-5 {
    font-size: 1.125rem;
    line-height: 24px;
    font-weight: 700;
  }
}
.text-large {
  font-size: 1.25rem;
  line-height: 28px;
}

.text-medium {
  font-size: 1.125rem;
  line-height: 24px;
}

.text-regular {
  font-size: 1rem;
  line-height: 24px;
}

.text-small {
  font-size: 0.875rem;
  line-height: 20px;
}

.text-tiny {
  font-size: 0.75rem;
  line-height: 16px;
}

@media (max-width: 991px) {
  .mobile-text-large {
    font-size: 1.25rem !important;
    line-height: 28px !important;
  }
  .mobile-text-medium {
    font-size: 1.125rem !important;
    line-height: 24px !important;
  }
  .mobile-text-regular {
    font-size: 1rem !important;
    line-height: 24px !important;
  }
  .mobile-text-small {
    font-size: 0.875rem !important;
    line-height: 20px !important;
  }
  .mobile-text-tiny {
    font-size: 0.75rem !important;
    line-height: 16px !important;
  }
}
@media (min-width: 992px) {
  .desktop-text-large {
    font-size: 1.25rem !important;
    line-height: 28px !important;
  }
  .desktop-text-medium {
    font-size: 1.125rem !important;
    line-height: 24px !important;
  }
  .desktop-text-regular {
    font-size: 1rem !important;
    line-height: 24px !important;
  }
  .desktop-text-small {
    font-size: 0.875rem !important;
    line-height: 20px !important;
  }
  .desktop-text-tiny {
    font-size: 0.75rem !important;
    line-height: 16px !important;
  }
}
.bg-primary {
  background-color: #000000;
}

.bg-secondary {
  background-color: #96710F;
}

.bg-background {
  background-color: #FFFFFF;
}

.bg-footer-background {
  background-color: #0D1A0F;
}

.bg-button-primary {
  background-color: #000000;
}

.bg-button-secondary {
  background-color: #96710F;
}

.bg-text-primary {
  background-color: #000000;
}

.bg-text-secondary {
  background-color: #4A4A4A;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-neutral-lightest-hover {
  background-color: #FAFAFA;
}

.bg-neutral-lightest {
  background-color: #EEEEEE;
}

.bg-neutral-lighter {
  background-color: #CCCCCC;
}

.bg-neutral-light {
  background-color: #AAAAAA;
}

.bg-neutral {
  background-color: #666666;
}

.bg-neutral-dark {
  background-color: #444444;
}

.bg-neutral-darker {
  background-color: #222222;
}

.bg-black {
  background-color: #000000;
}

.primary {
  color: #000000;
}

.hover\:primary:hover {
  color: #000000;
}

.secondary {
  color: #96710F;
}

.hover\:secondary:hover {
  color: #96710F;
}

.background {
  color: #FFFFFF;
}

.hover\:background:hover {
  color: #FFFFFF;
}

.footer-background {
  color: #0D1A0F;
}

.hover\:footer-background:hover {
  color: #0D1A0F;
}

.button-primary {
  color: #000000;
}

.hover\:button-primary:hover {
  color: #000000;
}

.button-secondary {
  color: #96710F;
}

.hover\:button-secondary:hover {
  color: #96710F;
}

.text-primary {
  color: #000000;
}

.hover\:text-primary:hover {
  color: #000000;
}

.text-secondary {
  color: #4A4A4A;
}

.hover\:text-secondary:hover {
  color: #4A4A4A;
}

.white {
  color: #FFFFFF;
}

.hover\:white:hover {
  color: #FFFFFF;
}

.neutral-lightest-hover {
  color: #FAFAFA;
}

.hover\:neutral-lightest-hover:hover {
  color: #FAFAFA;
}

.neutral-lightest {
  color: #EEEEEE;
}

.hover\:neutral-lightest:hover {
  color: #EEEEEE;
}

.neutral-lighter {
  color: #CCCCCC;
}

.hover\:neutral-lighter:hover {
  color: #CCCCCC;
}

.neutral-light {
  color: #AAAAAA;
}

.hover\:neutral-light:hover {
  color: #AAAAAA;
}

.neutral {
  color: #666666;
}

.hover\:neutral:hover {
  color: #666666;
}

.neutral-dark {
  color: #444444;
}

.hover\:neutral-dark:hover {
  color: #444444;
}

.neutral-darker {
  color: #222222;
}

.hover\:neutral-darker:hover {
  color: #222222;
}

.black {
  color: #000000;
}

.hover\:black:hover {
  color: #000000;
}

.border-primary {
  border-color: #000000;
}

.border-secondary {
  border-color: #96710F;
}

.border-background {
  border-color: #FFFFFF;
}

.border-footer-background {
  border-color: #0D1A0F;
}

.border-button-primary {
  border-color: #000000;
}

.border-button-secondary {
  border-color: #96710F;
}

.border-text-primary {
  border-color: #000000;
}

.border-text-secondary {
  border-color: #4A4A4A;
}

.border-white {
  border-color: #FFFFFF;
}

.border-neutral-lightest-hover {
  border-color: #FAFAFA;
}

.border-neutral-lightest {
  border-color: #EEEEEE;
}

.border-neutral-lighter {
  border-color: #CCCCCC;
}

.border-neutral-light {
  border-color: #AAAAAA;
}

.border-neutral {
  border-color: #666666;
}

.border-neutral-dark {
  border-color: #444444;
}

.border-neutral-darker {
  border-color: #222222;
}

.border-black {
  border-color: #000000;
}

.btn-primary {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: black;
}

.btn-secondary {
  background-color: #96710F;
  color: #FFFFFF;
}
.btn-secondary:hover {
  background-color: rgb(103.6363636364, 78.0727272727, 10.3636363636);
}

.bg-primary-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-primary-10 {
  color: rgba(0, 0, 0, 0.1);
}

.border-primary-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.bg-primary-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-primary-20 {
  color: rgba(0, 0, 0, 0.2);
}

.border-primary-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.bg-primary-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.text-primary-30 {
  color: rgba(0, 0, 0, 0.3);
}

.border-primary-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-primary-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-primary-40 {
  color: rgba(0, 0, 0, 0.4);
}

.border-primary-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.bg-primary-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-primary-50 {
  color: rgba(0, 0, 0, 0.5);
}

.border-primary-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.bg-primary-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.text-primary-60 {
  color: rgba(0, 0, 0, 0.6);
}

.border-primary-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.bg-primary-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-primary-70 {
  color: rgba(0, 0, 0, 0.7);
}

.border-primary-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.bg-primary-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-primary-80 {
  color: rgba(0, 0, 0, 0.8);
}

.border-primary-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.bg-primary-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-primary-90 {
  color: rgba(0, 0, 0, 0.9);
}

.border-primary-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.bg-secondary-10 {
  background-color: rgba(150, 113, 15, 0.1);
}

.text-secondary-10 {
  color: rgba(150, 113, 15, 0.1);
}

.border-secondary-10 {
  border-color: rgba(150, 113, 15, 0.1);
}

.bg-secondary-20 {
  background-color: rgba(150, 113, 15, 0.2);
}

.text-secondary-20 {
  color: rgba(150, 113, 15, 0.2);
}

.border-secondary-20 {
  border-color: rgba(150, 113, 15, 0.2);
}

.bg-secondary-30 {
  background-color: rgba(150, 113, 15, 0.3);
}

.text-secondary-30 {
  color: rgba(150, 113, 15, 0.3);
}

.border-secondary-30 {
  border-color: rgba(150, 113, 15, 0.3);
}

.bg-secondary-40 {
  background-color: rgba(150, 113, 15, 0.4);
}

.text-secondary-40 {
  color: rgba(150, 113, 15, 0.4);
}

.border-secondary-40 {
  border-color: rgba(150, 113, 15, 0.4);
}

.bg-secondary-50 {
  background-color: rgba(150, 113, 15, 0.5);
}

.text-secondary-50 {
  color: rgba(150, 113, 15, 0.5);
}

.border-secondary-50 {
  border-color: rgba(150, 113, 15, 0.5);
}

.bg-secondary-60 {
  background-color: rgba(150, 113, 15, 0.6);
}

.text-secondary-60 {
  color: rgba(150, 113, 15, 0.6);
}

.border-secondary-60 {
  border-color: rgba(150, 113, 15, 0.6);
}

.bg-secondary-70 {
  background-color: rgba(150, 113, 15, 0.7);
}

.text-secondary-70 {
  color: rgba(150, 113, 15, 0.7);
}

.border-secondary-70 {
  border-color: rgba(150, 113, 15, 0.7);
}

.bg-secondary-80 {
  background-color: rgba(150, 113, 15, 0.8);
}

.text-secondary-80 {
  color: rgba(150, 113, 15, 0.8);
}

.border-secondary-80 {
  border-color: rgba(150, 113, 15, 0.8);
}

.bg-secondary-90 {
  background-color: rgba(150, 113, 15, 0.9);
}

.text-secondary-90 {
  color: rgba(150, 113, 15, 0.9);
}

.border-secondary-90 {
  border-color: rgba(150, 113, 15, 0.9);
}

.bg-background-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-background-10 {
  color: rgba(255, 255, 255, 0.1);
}

.border-background-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-background-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.text-background-20 {
  color: rgba(255, 255, 255, 0.2);
}

.border-background-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-background-30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.text-background-30 {
  color: rgba(255, 255, 255, 0.3);
}

.border-background-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-background-40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.text-background-40 {
  color: rgba(255, 255, 255, 0.4);
}

.border-background-40 {
  border-color: rgba(255, 255, 255, 0.4);
}

.bg-background-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.text-background-50 {
  color: rgba(255, 255, 255, 0.5);
}

.border-background-50 {
  border-color: rgba(255, 255, 255, 0.5);
}

.bg-background-60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.text-background-60 {
  color: rgba(255, 255, 255, 0.6);
}

.border-background-60 {
  border-color: rgba(255, 255, 255, 0.6);
}

.bg-background-70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.text-background-70 {
  color: rgba(255, 255, 255, 0.7);
}

.border-background-70 {
  border-color: rgba(255, 255, 255, 0.7);
}

.bg-background-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.text-background-80 {
  color: rgba(255, 255, 255, 0.8);
}

.border-background-80 {
  border-color: rgba(255, 255, 255, 0.8);
}

.bg-background-90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.text-background-90 {
  color: rgba(255, 255, 255, 0.9);
}

.border-background-90 {
  border-color: rgba(255, 255, 255, 0.9);
}

.bg-footer-background-10 {
  background-color: rgba(13, 26, 15, 0.1);
}

.text-footer-background-10 {
  color: rgba(13, 26, 15, 0.1);
}

.border-footer-background-10 {
  border-color: rgba(13, 26, 15, 0.1);
}

.bg-footer-background-20 {
  background-color: rgba(13, 26, 15, 0.2);
}

.text-footer-background-20 {
  color: rgba(13, 26, 15, 0.2);
}

.border-footer-background-20 {
  border-color: rgba(13, 26, 15, 0.2);
}

.bg-footer-background-30 {
  background-color: rgba(13, 26, 15, 0.3);
}

.text-footer-background-30 {
  color: rgba(13, 26, 15, 0.3);
}

.border-footer-background-30 {
  border-color: rgba(13, 26, 15, 0.3);
}

.bg-footer-background-40 {
  background-color: rgba(13, 26, 15, 0.4);
}

.text-footer-background-40 {
  color: rgba(13, 26, 15, 0.4);
}

.border-footer-background-40 {
  border-color: rgba(13, 26, 15, 0.4);
}

.bg-footer-background-50 {
  background-color: rgba(13, 26, 15, 0.5);
}

.text-footer-background-50 {
  color: rgba(13, 26, 15, 0.5);
}

.border-footer-background-50 {
  border-color: rgba(13, 26, 15, 0.5);
}

.bg-footer-background-60 {
  background-color: rgba(13, 26, 15, 0.6);
}

.text-footer-background-60 {
  color: rgba(13, 26, 15, 0.6);
}

.border-footer-background-60 {
  border-color: rgba(13, 26, 15, 0.6);
}

.bg-footer-background-70 {
  background-color: rgba(13, 26, 15, 0.7);
}

.text-footer-background-70 {
  color: rgba(13, 26, 15, 0.7);
}

.border-footer-background-70 {
  border-color: rgba(13, 26, 15, 0.7);
}

.bg-footer-background-80 {
  background-color: rgba(13, 26, 15, 0.8);
}

.text-footer-background-80 {
  color: rgba(13, 26, 15, 0.8);
}

.border-footer-background-80 {
  border-color: rgba(13, 26, 15, 0.8);
}

.bg-footer-background-90 {
  background-color: rgba(13, 26, 15, 0.9);
}

.text-footer-background-90 {
  color: rgba(13, 26, 15, 0.9);
}

.border-footer-background-90 {
  border-color: rgba(13, 26, 15, 0.9);
}

.bg-button-primary-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-button-primary-10 {
  color: rgba(0, 0, 0, 0.1);
}

.border-button-primary-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.bg-button-primary-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-button-primary-20 {
  color: rgba(0, 0, 0, 0.2);
}

.border-button-primary-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.bg-button-primary-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.text-button-primary-30 {
  color: rgba(0, 0, 0, 0.3);
}

.border-button-primary-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-button-primary-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-button-primary-40 {
  color: rgba(0, 0, 0, 0.4);
}

.border-button-primary-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.bg-button-primary-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-button-primary-50 {
  color: rgba(0, 0, 0, 0.5);
}

.border-button-primary-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.bg-button-primary-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.text-button-primary-60 {
  color: rgba(0, 0, 0, 0.6);
}

.border-button-primary-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.bg-button-primary-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-button-primary-70 {
  color: rgba(0, 0, 0, 0.7);
}

.border-button-primary-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.bg-button-primary-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-button-primary-80 {
  color: rgba(0, 0, 0, 0.8);
}

.border-button-primary-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.bg-button-primary-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-button-primary-90 {
  color: rgba(0, 0, 0, 0.9);
}

.border-button-primary-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.bg-button-secondary-10 {
  background-color: rgba(150, 113, 15, 0.1);
}

.text-button-secondary-10 {
  color: rgba(150, 113, 15, 0.1);
}

.border-button-secondary-10 {
  border-color: rgba(150, 113, 15, 0.1);
}

.bg-button-secondary-20 {
  background-color: rgba(150, 113, 15, 0.2);
}

.text-button-secondary-20 {
  color: rgba(150, 113, 15, 0.2);
}

.border-button-secondary-20 {
  border-color: rgba(150, 113, 15, 0.2);
}

.bg-button-secondary-30 {
  background-color: rgba(150, 113, 15, 0.3);
}

.text-button-secondary-30 {
  color: rgba(150, 113, 15, 0.3);
}

.border-button-secondary-30 {
  border-color: rgba(150, 113, 15, 0.3);
}

.bg-button-secondary-40 {
  background-color: rgba(150, 113, 15, 0.4);
}

.text-button-secondary-40 {
  color: rgba(150, 113, 15, 0.4);
}

.border-button-secondary-40 {
  border-color: rgba(150, 113, 15, 0.4);
}

.bg-button-secondary-50 {
  background-color: rgba(150, 113, 15, 0.5);
}

.text-button-secondary-50 {
  color: rgba(150, 113, 15, 0.5);
}

.border-button-secondary-50 {
  border-color: rgba(150, 113, 15, 0.5);
}

.bg-button-secondary-60 {
  background-color: rgba(150, 113, 15, 0.6);
}

.text-button-secondary-60 {
  color: rgba(150, 113, 15, 0.6);
}

.border-button-secondary-60 {
  border-color: rgba(150, 113, 15, 0.6);
}

.bg-button-secondary-70 {
  background-color: rgba(150, 113, 15, 0.7);
}

.text-button-secondary-70 {
  color: rgba(150, 113, 15, 0.7);
}

.border-button-secondary-70 {
  border-color: rgba(150, 113, 15, 0.7);
}

.bg-button-secondary-80 {
  background-color: rgba(150, 113, 15, 0.8);
}

.text-button-secondary-80 {
  color: rgba(150, 113, 15, 0.8);
}

.border-button-secondary-80 {
  border-color: rgba(150, 113, 15, 0.8);
}

.bg-button-secondary-90 {
  background-color: rgba(150, 113, 15, 0.9);
}

.text-button-secondary-90 {
  color: rgba(150, 113, 15, 0.9);
}

.border-button-secondary-90 {
  border-color: rgba(150, 113, 15, 0.9);
}

.bg-text-primary-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-text-primary-10 {
  color: rgba(0, 0, 0, 0.1);
}

.border-text-primary-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.bg-text-primary-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-text-primary-20 {
  color: rgba(0, 0, 0, 0.2);
}

.border-text-primary-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.bg-text-primary-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.text-text-primary-30 {
  color: rgba(0, 0, 0, 0.3);
}

.border-text-primary-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-text-primary-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-text-primary-40 {
  color: rgba(0, 0, 0, 0.4);
}

.border-text-primary-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.bg-text-primary-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-text-primary-50 {
  color: rgba(0, 0, 0, 0.5);
}

.border-text-primary-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.bg-text-primary-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.text-text-primary-60 {
  color: rgba(0, 0, 0, 0.6);
}

.border-text-primary-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.bg-text-primary-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-text-primary-70 {
  color: rgba(0, 0, 0, 0.7);
}

.border-text-primary-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.bg-text-primary-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-text-primary-80 {
  color: rgba(0, 0, 0, 0.8);
}

.border-text-primary-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.bg-text-primary-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-text-primary-90 {
  color: rgba(0, 0, 0, 0.9);
}

.border-text-primary-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.bg-text-secondary-10 {
  background-color: rgba(74, 74, 74, 0.1);
}

.text-text-secondary-10 {
  color: rgba(74, 74, 74, 0.1);
}

.border-text-secondary-10 {
  border-color: rgba(74, 74, 74, 0.1);
}

.bg-text-secondary-20 {
  background-color: rgba(74, 74, 74, 0.2);
}

.text-text-secondary-20 {
  color: rgba(74, 74, 74, 0.2);
}

.border-text-secondary-20 {
  border-color: rgba(74, 74, 74, 0.2);
}

.bg-text-secondary-30 {
  background-color: rgba(74, 74, 74, 0.3);
}

.text-text-secondary-30 {
  color: rgba(74, 74, 74, 0.3);
}

.border-text-secondary-30 {
  border-color: rgba(74, 74, 74, 0.3);
}

.bg-text-secondary-40 {
  background-color: rgba(74, 74, 74, 0.4);
}

.text-text-secondary-40 {
  color: rgba(74, 74, 74, 0.4);
}

.border-text-secondary-40 {
  border-color: rgba(74, 74, 74, 0.4);
}

.bg-text-secondary-50 {
  background-color: rgba(74, 74, 74, 0.5);
}

.text-text-secondary-50 {
  color: rgba(74, 74, 74, 0.5);
}

.border-text-secondary-50 {
  border-color: rgba(74, 74, 74, 0.5);
}

.bg-text-secondary-60 {
  background-color: rgba(74, 74, 74, 0.6);
}

.text-text-secondary-60 {
  color: rgba(74, 74, 74, 0.6);
}

.border-text-secondary-60 {
  border-color: rgba(74, 74, 74, 0.6);
}

.bg-text-secondary-70 {
  background-color: rgba(74, 74, 74, 0.7);
}

.text-text-secondary-70 {
  color: rgba(74, 74, 74, 0.7);
}

.border-text-secondary-70 {
  border-color: rgba(74, 74, 74, 0.7);
}

.bg-text-secondary-80 {
  background-color: rgba(74, 74, 74, 0.8);
}

.text-text-secondary-80 {
  color: rgba(74, 74, 74, 0.8);
}

.border-text-secondary-80 {
  border-color: rgba(74, 74, 74, 0.8);
}

.bg-text-secondary-90 {
  background-color: rgba(74, 74, 74, 0.9);
}

.text-text-secondary-90 {
  color: rgba(74, 74, 74, 0.9);
}

.border-text-secondary-90 {
  border-color: rgba(74, 74, 74, 0.9);
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-white-10 {
  color: rgba(255, 255, 255, 0.1);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.text-white-20 {
  color: rgba(255, 255, 255, 0.2);
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-white-30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.text-white-30 {
  color: rgba(255, 255, 255, 0.3);
}

.border-white-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-white-40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.text-white-40 {
  color: rgba(255, 255, 255, 0.4);
}

.border-white-40 {
  border-color: rgba(255, 255, 255, 0.4);
}

.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.border-white-50 {
  border-color: rgba(255, 255, 255, 0.5);
}

.bg-white-60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.border-white-60 {
  border-color: rgba(255, 255, 255, 0.6);
}

.bg-white-70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.border-white-70 {
  border-color: rgba(255, 255, 255, 0.7);
}

.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.border-white-80 {
  border-color: rgba(255, 255, 255, 0.8);
}

.bg-white-90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.border-white-90 {
  border-color: rgba(255, 255, 255, 0.9);
}

.bg-neutral-lightest-hover-10 {
  background-color: rgba(250, 250, 250, 0.1);
}

.text-neutral-lightest-hover-10 {
  color: rgba(250, 250, 250, 0.1);
}

.border-neutral-lightest-hover-10 {
  border-color: rgba(250, 250, 250, 0.1);
}

.bg-neutral-lightest-hover-20 {
  background-color: rgba(250, 250, 250, 0.2);
}

.text-neutral-lightest-hover-20 {
  color: rgba(250, 250, 250, 0.2);
}

.border-neutral-lightest-hover-20 {
  border-color: rgba(250, 250, 250, 0.2);
}

.bg-neutral-lightest-hover-30 {
  background-color: rgba(250, 250, 250, 0.3);
}

.text-neutral-lightest-hover-30 {
  color: rgba(250, 250, 250, 0.3);
}

.border-neutral-lightest-hover-30 {
  border-color: rgba(250, 250, 250, 0.3);
}

.bg-neutral-lightest-hover-40 {
  background-color: rgba(250, 250, 250, 0.4);
}

.text-neutral-lightest-hover-40 {
  color: rgba(250, 250, 250, 0.4);
}

.border-neutral-lightest-hover-40 {
  border-color: rgba(250, 250, 250, 0.4);
}

.bg-neutral-lightest-hover-50 {
  background-color: rgba(250, 250, 250, 0.5);
}

.text-neutral-lightest-hover-50 {
  color: rgba(250, 250, 250, 0.5);
}

.border-neutral-lightest-hover-50 {
  border-color: rgba(250, 250, 250, 0.5);
}

.bg-neutral-lightest-hover-60 {
  background-color: rgba(250, 250, 250, 0.6);
}

.text-neutral-lightest-hover-60 {
  color: rgba(250, 250, 250, 0.6);
}

.border-neutral-lightest-hover-60 {
  border-color: rgba(250, 250, 250, 0.6);
}

.bg-neutral-lightest-hover-70 {
  background-color: rgba(250, 250, 250, 0.7);
}

.text-neutral-lightest-hover-70 {
  color: rgba(250, 250, 250, 0.7);
}

.border-neutral-lightest-hover-70 {
  border-color: rgba(250, 250, 250, 0.7);
}

.bg-neutral-lightest-hover-80 {
  background-color: rgba(250, 250, 250, 0.8);
}

.text-neutral-lightest-hover-80 {
  color: rgba(250, 250, 250, 0.8);
}

.border-neutral-lightest-hover-80 {
  border-color: rgba(250, 250, 250, 0.8);
}

.bg-neutral-lightest-hover-90 {
  background-color: rgba(250, 250, 250, 0.9);
}

.text-neutral-lightest-hover-90 {
  color: rgba(250, 250, 250, 0.9);
}

.border-neutral-lightest-hover-90 {
  border-color: rgba(250, 250, 250, 0.9);
}

.bg-neutral-lightest-10 {
  background-color: rgba(238, 238, 238, 0.1);
}

.text-neutral-lightest-10 {
  color: rgba(238, 238, 238, 0.1);
}

.border-neutral-lightest-10 {
  border-color: rgba(238, 238, 238, 0.1);
}

.bg-neutral-lightest-20 {
  background-color: rgba(238, 238, 238, 0.2);
}

.text-neutral-lightest-20 {
  color: rgba(238, 238, 238, 0.2);
}

.border-neutral-lightest-20 {
  border-color: rgba(238, 238, 238, 0.2);
}

.bg-neutral-lightest-30 {
  background-color: rgba(238, 238, 238, 0.3);
}

.text-neutral-lightest-30 {
  color: rgba(238, 238, 238, 0.3);
}

.border-neutral-lightest-30 {
  border-color: rgba(238, 238, 238, 0.3);
}

.bg-neutral-lightest-40 {
  background-color: rgba(238, 238, 238, 0.4);
}

.text-neutral-lightest-40 {
  color: rgba(238, 238, 238, 0.4);
}

.border-neutral-lightest-40 {
  border-color: rgba(238, 238, 238, 0.4);
}

.bg-neutral-lightest-50 {
  background-color: rgba(238, 238, 238, 0.5);
}

.text-neutral-lightest-50 {
  color: rgba(238, 238, 238, 0.5);
}

.border-neutral-lightest-50 {
  border-color: rgba(238, 238, 238, 0.5);
}

.bg-neutral-lightest-60 {
  background-color: rgba(238, 238, 238, 0.6);
}

.text-neutral-lightest-60 {
  color: rgba(238, 238, 238, 0.6);
}

.border-neutral-lightest-60 {
  border-color: rgba(238, 238, 238, 0.6);
}

.bg-neutral-lightest-70 {
  background-color: rgba(238, 238, 238, 0.7);
}

.text-neutral-lightest-70 {
  color: rgba(238, 238, 238, 0.7);
}

.border-neutral-lightest-70 {
  border-color: rgba(238, 238, 238, 0.7);
}

.bg-neutral-lightest-80 {
  background-color: rgba(238, 238, 238, 0.8);
}

.text-neutral-lightest-80 {
  color: rgba(238, 238, 238, 0.8);
}

.border-neutral-lightest-80 {
  border-color: rgba(238, 238, 238, 0.8);
}

.bg-neutral-lightest-90 {
  background-color: rgba(238, 238, 238, 0.9);
}

.text-neutral-lightest-90 {
  color: rgba(238, 238, 238, 0.9);
}

.border-neutral-lightest-90 {
  border-color: rgba(238, 238, 238, 0.9);
}

.bg-neutral-lighter-10 {
  background-color: rgba(204, 204, 204, 0.1);
}

.text-neutral-lighter-10 {
  color: rgba(204, 204, 204, 0.1);
}

.border-neutral-lighter-10 {
  border-color: rgba(204, 204, 204, 0.1);
}

.bg-neutral-lighter-20 {
  background-color: rgba(204, 204, 204, 0.2);
}

.text-neutral-lighter-20 {
  color: rgba(204, 204, 204, 0.2);
}

.border-neutral-lighter-20 {
  border-color: rgba(204, 204, 204, 0.2);
}

.bg-neutral-lighter-30 {
  background-color: rgba(204, 204, 204, 0.3);
}

.text-neutral-lighter-30 {
  color: rgba(204, 204, 204, 0.3);
}

.border-neutral-lighter-30 {
  border-color: rgba(204, 204, 204, 0.3);
}

.bg-neutral-lighter-40 {
  background-color: rgba(204, 204, 204, 0.4);
}

.text-neutral-lighter-40 {
  color: rgba(204, 204, 204, 0.4);
}

.border-neutral-lighter-40 {
  border-color: rgba(204, 204, 204, 0.4);
}

.bg-neutral-lighter-50 {
  background-color: rgba(204, 204, 204, 0.5);
}

.text-neutral-lighter-50 {
  color: rgba(204, 204, 204, 0.5);
}

.border-neutral-lighter-50 {
  border-color: rgba(204, 204, 204, 0.5);
}

.bg-neutral-lighter-60 {
  background-color: rgba(204, 204, 204, 0.6);
}

.text-neutral-lighter-60 {
  color: rgba(204, 204, 204, 0.6);
}

.border-neutral-lighter-60 {
  border-color: rgba(204, 204, 204, 0.6);
}

.bg-neutral-lighter-70 {
  background-color: rgba(204, 204, 204, 0.7);
}

.text-neutral-lighter-70 {
  color: rgba(204, 204, 204, 0.7);
}

.border-neutral-lighter-70 {
  border-color: rgba(204, 204, 204, 0.7);
}

.bg-neutral-lighter-80 {
  background-color: rgba(204, 204, 204, 0.8);
}

.text-neutral-lighter-80 {
  color: rgba(204, 204, 204, 0.8);
}

.border-neutral-lighter-80 {
  border-color: rgba(204, 204, 204, 0.8);
}

.bg-neutral-lighter-90 {
  background-color: rgba(204, 204, 204, 0.9);
}

.text-neutral-lighter-90 {
  color: rgba(204, 204, 204, 0.9);
}

.border-neutral-lighter-90 {
  border-color: rgba(204, 204, 204, 0.9);
}

.bg-neutral-light-10 {
  background-color: rgba(170, 170, 170, 0.1);
}

.text-neutral-light-10 {
  color: rgba(170, 170, 170, 0.1);
}

.border-neutral-light-10 {
  border-color: rgba(170, 170, 170, 0.1);
}

.bg-neutral-light-20 {
  background-color: rgba(170, 170, 170, 0.2);
}

.text-neutral-light-20 {
  color: rgba(170, 170, 170, 0.2);
}

.border-neutral-light-20 {
  border-color: rgba(170, 170, 170, 0.2);
}

.bg-neutral-light-30 {
  background-color: rgba(170, 170, 170, 0.3);
}

.text-neutral-light-30 {
  color: rgba(170, 170, 170, 0.3);
}

.border-neutral-light-30 {
  border-color: rgba(170, 170, 170, 0.3);
}

.bg-neutral-light-40 {
  background-color: rgba(170, 170, 170, 0.4);
}

.text-neutral-light-40 {
  color: rgba(170, 170, 170, 0.4);
}

.border-neutral-light-40 {
  border-color: rgba(170, 170, 170, 0.4);
}

.bg-neutral-light-50 {
  background-color: rgba(170, 170, 170, 0.5);
}

.text-neutral-light-50 {
  color: rgba(170, 170, 170, 0.5);
}

.border-neutral-light-50 {
  border-color: rgba(170, 170, 170, 0.5);
}

.bg-neutral-light-60 {
  background-color: rgba(170, 170, 170, 0.6);
}

.text-neutral-light-60 {
  color: rgba(170, 170, 170, 0.6);
}

.border-neutral-light-60 {
  border-color: rgba(170, 170, 170, 0.6);
}

.bg-neutral-light-70 {
  background-color: rgba(170, 170, 170, 0.7);
}

.text-neutral-light-70 {
  color: rgba(170, 170, 170, 0.7);
}

.border-neutral-light-70 {
  border-color: rgba(170, 170, 170, 0.7);
}

.bg-neutral-light-80 {
  background-color: rgba(170, 170, 170, 0.8);
}

.text-neutral-light-80 {
  color: rgba(170, 170, 170, 0.8);
}

.border-neutral-light-80 {
  border-color: rgba(170, 170, 170, 0.8);
}

.bg-neutral-light-90 {
  background-color: rgba(170, 170, 170, 0.9);
}

.text-neutral-light-90 {
  color: rgba(170, 170, 170, 0.9);
}

.border-neutral-light-90 {
  border-color: rgba(170, 170, 170, 0.9);
}

.bg-neutral-10 {
  background-color: rgba(102, 102, 102, 0.1);
}

.text-neutral-10 {
  color: rgba(102, 102, 102, 0.1);
}

.border-neutral-10 {
  border-color: rgba(102, 102, 102, 0.1);
}

.bg-neutral-20 {
  background-color: rgba(102, 102, 102, 0.2);
}

.text-neutral-20 {
  color: rgba(102, 102, 102, 0.2);
}

.border-neutral-20 {
  border-color: rgba(102, 102, 102, 0.2);
}

.bg-neutral-30 {
  background-color: rgba(102, 102, 102, 0.3);
}

.text-neutral-30 {
  color: rgba(102, 102, 102, 0.3);
}

.border-neutral-30 {
  border-color: rgba(102, 102, 102, 0.3);
}

.bg-neutral-40 {
  background-color: rgba(102, 102, 102, 0.4);
}

.text-neutral-40 {
  color: rgba(102, 102, 102, 0.4);
}

.border-neutral-40 {
  border-color: rgba(102, 102, 102, 0.4);
}

.bg-neutral-50 {
  background-color: rgba(102, 102, 102, 0.5);
}

.text-neutral-50 {
  color: rgba(102, 102, 102, 0.5);
}

.border-neutral-50 {
  border-color: rgba(102, 102, 102, 0.5);
}

.bg-neutral-60 {
  background-color: rgba(102, 102, 102, 0.6);
}

.text-neutral-60 {
  color: rgba(102, 102, 102, 0.6);
}

.border-neutral-60 {
  border-color: rgba(102, 102, 102, 0.6);
}

.bg-neutral-70 {
  background-color: rgba(102, 102, 102, 0.7);
}

.text-neutral-70 {
  color: rgba(102, 102, 102, 0.7);
}

.border-neutral-70 {
  border-color: rgba(102, 102, 102, 0.7);
}

.bg-neutral-80 {
  background-color: rgba(102, 102, 102, 0.8);
}

.text-neutral-80 {
  color: rgba(102, 102, 102, 0.8);
}

.border-neutral-80 {
  border-color: rgba(102, 102, 102, 0.8);
}

.bg-neutral-90 {
  background-color: rgba(102, 102, 102, 0.9);
}

.text-neutral-90 {
  color: rgba(102, 102, 102, 0.9);
}

.border-neutral-90 {
  border-color: rgba(102, 102, 102, 0.9);
}

.bg-neutral-dark-10 {
  background-color: rgba(68, 68, 68, 0.1);
}

.text-neutral-dark-10 {
  color: rgba(68, 68, 68, 0.1);
}

.border-neutral-dark-10 {
  border-color: rgba(68, 68, 68, 0.1);
}

.bg-neutral-dark-20 {
  background-color: rgba(68, 68, 68, 0.2);
}

.text-neutral-dark-20 {
  color: rgba(68, 68, 68, 0.2);
}

.border-neutral-dark-20 {
  border-color: rgba(68, 68, 68, 0.2);
}

.bg-neutral-dark-30 {
  background-color: rgba(68, 68, 68, 0.3);
}

.text-neutral-dark-30 {
  color: rgba(68, 68, 68, 0.3);
}

.border-neutral-dark-30 {
  border-color: rgba(68, 68, 68, 0.3);
}

.bg-neutral-dark-40 {
  background-color: rgba(68, 68, 68, 0.4);
}

.text-neutral-dark-40 {
  color: rgba(68, 68, 68, 0.4);
}

.border-neutral-dark-40 {
  border-color: rgba(68, 68, 68, 0.4);
}

.bg-neutral-dark-50 {
  background-color: rgba(68, 68, 68, 0.5);
}

.text-neutral-dark-50 {
  color: rgba(68, 68, 68, 0.5);
}

.border-neutral-dark-50 {
  border-color: rgba(68, 68, 68, 0.5);
}

.bg-neutral-dark-60 {
  background-color: rgba(68, 68, 68, 0.6);
}

.text-neutral-dark-60 {
  color: rgba(68, 68, 68, 0.6);
}

.border-neutral-dark-60 {
  border-color: rgba(68, 68, 68, 0.6);
}

.bg-neutral-dark-70 {
  background-color: rgba(68, 68, 68, 0.7);
}

.text-neutral-dark-70 {
  color: rgba(68, 68, 68, 0.7);
}

.border-neutral-dark-70 {
  border-color: rgba(68, 68, 68, 0.7);
}

.bg-neutral-dark-80 {
  background-color: rgba(68, 68, 68, 0.8);
}

.text-neutral-dark-80 {
  color: rgba(68, 68, 68, 0.8);
}

.border-neutral-dark-80 {
  border-color: rgba(68, 68, 68, 0.8);
}

.bg-neutral-dark-90 {
  background-color: rgba(68, 68, 68, 0.9);
}

.text-neutral-dark-90 {
  color: rgba(68, 68, 68, 0.9);
}

.border-neutral-dark-90 {
  border-color: rgba(68, 68, 68, 0.9);
}

.bg-neutral-darker-10 {
  background-color: rgba(34, 34, 34, 0.1);
}

.text-neutral-darker-10 {
  color: rgba(34, 34, 34, 0.1);
}

.border-neutral-darker-10 {
  border-color: rgba(34, 34, 34, 0.1);
}

.bg-neutral-darker-20 {
  background-color: rgba(34, 34, 34, 0.2);
}

.text-neutral-darker-20 {
  color: rgba(34, 34, 34, 0.2);
}

.border-neutral-darker-20 {
  border-color: rgba(34, 34, 34, 0.2);
}

.bg-neutral-darker-30 {
  background-color: rgba(34, 34, 34, 0.3);
}

.text-neutral-darker-30 {
  color: rgba(34, 34, 34, 0.3);
}

.border-neutral-darker-30 {
  border-color: rgba(34, 34, 34, 0.3);
}

.bg-neutral-darker-40 {
  background-color: rgba(34, 34, 34, 0.4);
}

.text-neutral-darker-40 {
  color: rgba(34, 34, 34, 0.4);
}

.border-neutral-darker-40 {
  border-color: rgba(34, 34, 34, 0.4);
}

.bg-neutral-darker-50 {
  background-color: rgba(34, 34, 34, 0.5);
}

.text-neutral-darker-50 {
  color: rgba(34, 34, 34, 0.5);
}

.border-neutral-darker-50 {
  border-color: rgba(34, 34, 34, 0.5);
}

.bg-neutral-darker-60 {
  background-color: rgba(34, 34, 34, 0.6);
}

.text-neutral-darker-60 {
  color: rgba(34, 34, 34, 0.6);
}

.border-neutral-darker-60 {
  border-color: rgba(34, 34, 34, 0.6);
}

.bg-neutral-darker-70 {
  background-color: rgba(34, 34, 34, 0.7);
}

.text-neutral-darker-70 {
  color: rgba(34, 34, 34, 0.7);
}

.border-neutral-darker-70 {
  border-color: rgba(34, 34, 34, 0.7);
}

.bg-neutral-darker-80 {
  background-color: rgba(34, 34, 34, 0.8);
}

.text-neutral-darker-80 {
  color: rgba(34, 34, 34, 0.8);
}

.border-neutral-darker-80 {
  border-color: rgba(34, 34, 34, 0.8);
}

.bg-neutral-darker-90 {
  background-color: rgba(34, 34, 34, 0.9);
}

.text-neutral-darker-90 {
  color: rgba(34, 34, 34, 0.9);
}

.border-neutral-darker-90 {
  border-color: rgba(34, 34, 34, 0.9);
}

.bg-black-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-black-10 {
  color: rgba(0, 0, 0, 0.1);
}

.border-black-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.bg-black-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-black-20 {
  color: rgba(0, 0, 0, 0.2);
}

.border-black-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.bg-black-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.text-black-30 {
  color: rgba(0, 0, 0, 0.3);
}

.border-black-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-black-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-black-40 {
  color: rgba(0, 0, 0, 0.4);
}

.border-black-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.bg-black-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5);
}

.border-black-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.bg-black-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.text-black-60 {
  color: rgba(0, 0, 0, 0.6);
}

.border-black-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.bg-black-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-black-70 {
  color: rgba(0, 0, 0, 0.7);
}

.border-black-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.bg-black-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-black-80 {
  color: rgba(0, 0, 0, 0.8);
}

.border-black-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.bg-black-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-black-90 {
  color: rgba(0, 0, 0, 0.9);
}

.border-black-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.bg-gradient-primary {
  background: linear-gradient(to right, #000000, #333333);
}

.bg-gradient-secondary {
  background: linear-gradient(to right, #96710F, rgb(232.9090909091, 178.4181818182, 34.0909090909));
}

.wp-block-gallery {
  display: flex;
}

.wp-block-cover {
  overflow: hidden;
}

.wp-block-search__button {
  margin: 0;
}

.wp-block-social-links,
.wp-block-social-links.has-normal-icon-size {
  font-size: 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px;
  height: 64px;
}
.header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.header__logo:hover {
  color: #BFA576;
}
.header__nav {
  display: flex;
  align-items: center;
}

.header__nav .menu.depth-0 {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav .menu.depth-0 > li {
  position: relative;
}
.header__nav .menu.depth-0 > li > a {
  display: block;
  padding: 8px 14px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease;
}
.header__nav .menu.depth-0 > li > a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #BFA576;
}
.header__nav .menu.depth-0 > li.current-menu-item > a, .header__nav .menu.depth-0 > li.current-menu-ancestor > a {
  color: #BFA576;
}
.header__nav .submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.header__nav .submenu li a {
  display: block;
  padding: 8px 16px;
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.15s ease;
}
.header__nav .submenu li a:hover {
  background: #EEEEEE;
  color: #96710F;
}
.header__nav .menu.depth-0 > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer {
  background: #0D1A0F;
  color: #FFFFFF;
  margin-top: auto;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 24px 30px;
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu a {
  color: #AAAAAA;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer__menu a:hover {
  color: #BFA576;
}
.footer__copy {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}
.footer__copy a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer__copy a:hover {
  color: #BFA576;
}

.slider {
  position: relative;
}
.slider.is-background {
  padding: 40px 0;
}
.slider.is-background .slider-header__title {
  color: #FFFFFF;
}
.slider-background, .slider-background-image {
  height: 100%;
  width: 100vw;
  max-width: 100vw;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  background-position: center;
  top: 0;
  left: 0;
  margin-left: -15px;
}
@media (min-width: 1400px) {
  .slider-background, .slider-background-image {
    margin-left: calc(-1 * max(30px, (100% - 1920px) / 2 + 15px));
    width: 100vw;
  }
}
@media (min-width: 1920px) {
  .slider-background, .slider-background-image {
    width: 100vw;
    margin-left: -30px;
  }
}
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .slider-header {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .slider-header {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .slider-header__title {
    line-height: 40px;
  }
}
.slider-header__controls {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 50%;
  justify-content: flex-end;
  margin-right: 30px;
}
@media (min-width: 1400px) {
  .slider-header__controls {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .slider-header__controls {
    margin: 0;
    width: auto;
  }
}
.slider-custom-buttons {
  display: flex;
  gap: 5px;
}
.slider-custom-buttons__button {
  width: 48px;
  height: 48px;
  background: #FAFAFA;
  border-radius: 100px;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.slider-custom-buttons__button:after {
  display: flex;
  content: "";
  background: #000000;
  width: 16px;
  height: 16px;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
}
.slider-custom-buttons__button--prev:after {
  transform: rotate(180deg);
}
.slider-custom-buttons__button.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.slider-see-all-button {
  background: #FAFAFA;
  display: flex;
  align-items: center;
  border-radius: 25px;
  color: #000000;
  max-width: 214px;
  height: 48px;
  justify-content: center;
  width: 100%;
  font-weight: 401;
}
.slider-see-all-button--desktop {
  display: none;
}
@media (min-width: 768px) {
  .slider-see-all-button--desktop {
    display: flex;
  }
}
.slider-see-all-button--mobile {
  display: flex;
  margin: 40px auto 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .slider-see-all-button--mobile {
    display: none;
  }
}
.slider.top-grails .products-slider__title {
  color: #96710F;
}
.slider.top-grails .slider-custom-buttons__button,
.slider.top-grails .slider-see-all-button {
  background: #96710F;
}
.slider.top-grails .slider-see-all-button {
  color: #FFFFFF;
}
.slider.top-grails .slider-custom-buttons__button:after {
  background: #FFFFFF;
}

.s-error-404 {
  padding: 100px 0;
  background: #0c0000;
  color: #FFF;
  font-size: 100px;
}

.case-study {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 15px;
}
.case-study__header {
  margin-bottom: 32px;
}
.case-study__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #000000;
}
.case-study__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.case-study__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #EEEEEE;
  border-radius: 8px;
  min-width: 160px;
  flex: 1 1 auto;
}
.case-study__meta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #96710F;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.case-study__meta-icon svg {
  width: 18px;
  height: 18px;
}
.case-study__meta-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.case-study__meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4A4A4A;
  white-space: nowrap;
}
.case-study__meta-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-study__meta-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #96710F;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-study__meta-link:hover {
  text-decoration: underline;
}
.case-study__term {
  color: #96710F;
  text-decoration: none;
  font-weight: 500;
}
.case-study__term:hover {
  text-decoration: underline;
}
.case-study__cover {
  margin: 0 0 32px;
}
.case-study__cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.case-study__description {
  font-size: 1rem;
  line-height: 1.75;
  color: #4A4A4A;
  margin-bottom: 40px;
}
.case-study__description p {
  margin: 0 0 1em;
}
.case-study__gallery {
  margin-bottom: 40px;
}
.case-study__gallery-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #000000;
}
.case-study__gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.case-study__gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}
.case-study__gallery-link {
  display: block;
  width: 100%;
  height: 100%;
}
.case-study__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.case-study__gallery-img:hover {
  transform: scale(1.04);
}

.cs-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px;
}
.cs-archive__header {
  margin-bottom: 32px;
}
.cs-archive__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.cs-archive__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.cs-archive__filter-btn {
  padding: 8px 18px;
  border: 1px solid #CCCCCC;
  background: #FFFFFF;
  color: #4A4A4A;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cs-archive__filter-btn:hover {
  border-color: #96710F;
  color: #96710F;
}
.cs-archive__filter-btn.is-active {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
}
.cs-archive__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  min-height: 200px;
  transition: opacity 0.2s ease;
}
.cs-archive__list.is-loading {
  opacity: 0.4;
  pointer-events: none;
}
.cs-archive__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.cs-archive__page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #CCCCCC;
  background: #FFFFFF;
  color: #4A4A4A;
  font-size: 0.875rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cs-archive__page-btn:hover {
  border-color: #96710F;
  color: #96710F;
}
.cs-archive__page-btn.is-active {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
}
.cs-archive__empty {
  grid-column: 1/-1;
  text-align: center;
  color: #666666;
  padding: 40px 0;
}

.cs-card {
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.cs-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.cs-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.cs-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #EEEEEE;
}
.cs-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cs-card:hover .cs-card__img {
  transform: scale(1.03);
}
.cs-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EEEEEE 0%, #CCCCCC 100%);
}
.cs-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cs-card__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs-card__term {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #96710F;
  background: rgba(150, 113, 15, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
}
.cs-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}
.cs-card__client {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}
.cs-card__excerpt {
  font-size: 0.875rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin: 0;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.instagram-feed {
  margin-bottom: 80px;
}
.instagram-feed .insta-swiper .insta-item a img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .instagram-feed .insta-swiper .insta-item a img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .instagram-feed .insta-swiper .insta-item a img {
    height: 250px;
  }
}

.breadcrumbs {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-top: 25px;
  }
}
.breadcrumbs--inside {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.breadcrumbs--inside span {
  color: #000000;
}
@media (max-width: 767px) {
  .breadcrumbs--inside span {
    font-size: 0.75rem;
  }
}
.breadcrumbs--inside span .current-item {
  font-weight: 501;
}
.breadcrumbs-sep:after {
  display: flex;
  content: "";
  background: #000000;
  width: 16px;
  height: 16px;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
}

.cart--inside {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media (min-width: 992px) {
  .cart--inside {
    min-height: 600px;
  }
}
@media (max-width: 991px) {
  .cart--inside {
    padding: 0;
  }
}
.cart--inside__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cart--inside__top .cart-empty {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .cart--inside__top .cart-empty {
    margin-bottom: 20px;
  }
}
.cart--inside__top .cart-empty .remove-icon {
  width: 48px;
  height: 48px;
  background: #EEEEEE;
  display: flex;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
}
.cart--inside__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
}
.cart--inside__title h3 {
  margin: 0;
}
.cart--inside .woocommerce-cart-form {
  width: calc(70% - 25px);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cart--inside .woocommerce-cart-form {
    width: calc(65% - 25px);
  }
}
@media (max-width: 991px) {
  .cart--inside .woocommerce-cart-form {
    width: 100%;
  }
}
.cart--inside .woocommerce-cart-form .cart {
  padding: 20px;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
}
.cart--inside .woocommerce-cart-form .cart-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cart--inside .woocommerce-cart-form .cart-item {
    margin-bottom: 40px;
  }
}
.cart--inside .woocommerce-cart-form .cart-item--left {
  width: calc(25% - 15px);
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--left {
    width: calc(30% - 10px);
  }
}
.cart--inside .woocommerce-cart-form .cart-item--left .product-thumbnail img {
  height: auto;
}
.cart--inside .woocommerce-cart-form .cart-item--center {
  width: calc(35% - 10px);
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--center {
    width: calc(70% - 10px);
  }
}
.cart--inside .woocommerce-cart-form .cart-item--center .product-name .flash-sale {
  max-width: 150px;
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--center .product-name .flash-sale {
    max-width: 100px;
  }
}
.cart--inside .woocommerce-cart-form .cart-item--center__bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--center__bottom {
    display: none;
  }
}
.cart--inside .woocommerce-cart-form .cart-item .product-meta {
  margin-top: 15px;
}
.cart--inside .woocommerce-cart-form .cart-item .product-remove a {
  width: 48px;
  height: 48px;
  display: flex;
  border-radius: 100px;
  background: #EEEEEE;
  align-items: center;
  justify-content: center;
}
.cart--inside .woocommerce-cart-form .cart-item--right {
  width: calc(40% - 15px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-end;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--right {
    display: none;
  }
}
.cart--inside .woocommerce-cart-form .cart-item .product-price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cart--inside .woocommerce-cart-form .cart-item .product-price {
    flex-direction: column;
    gap: 0;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 10px;
  }
}
.cart--inside .woocommerce-cart-form .cart-item .product-price span {
  font-size: 1.25rem;
}
.cart--inside .woocommerce-cart-form .cart-item .product-price del span {
  font-size: 1rem;
}
.cart--inside .woocommerce-cart-form .cart-item .product-promotion-value {
  display: flex;
  justify-content: flex-end;
}
.cart--inside .woocommerce-cart-form .cart-item .product-promotion-value .promotion-value {
  border: 1px solid #96710F;
  padding: 4px 8px;
  border-radius: 4px;
}
.cart--inside .woocommerce-cart-form .cart-item .product-subtotal {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .cart--inside .woocommerce-cart-form .cart-item--bottom {
    display: none;
  }
}
.cart--inside .woocommerce-cart-form .cart-item--bottom {
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: space-between;
}
.cart--inside .woocommerce-cart-form .cart-item--bottom__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart--inside .woocommerce-cart-form .cart-item--bottom__right {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .cart--inside .woocommerce-cart-form .cart-item--bottom .product-price {
    flex-direction: column;
    gap: 0;
  }
  .cart--inside .woocommerce-cart-form .cart-item--bottom .product-price span {
    font-size: 15px;
  }
  .cart--inside .woocommerce-cart-form .cart-item--bottom .product-price span .amount {
    font-size: 15px;
  }
  .cart--inside .woocommerce-cart-form .cart-item--bottom .product-price del span {
    font-size: 14px;
  }
}
.cart--inside .woocommerce-cart-form .actions button.button {
  margin-left: auto;
  display: flex;
  margin-top: 20px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  padding: 10px;
  border-radius: 25px;
}
.cart--inside .woocommerce-cart-form .actions button.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart--inside .cart-collaterals {
  width: calc(30% - 25px);
  margin-top: 98px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cart--inside .cart-collaterals {
    width: calc(35% - 25px);
  }
}
@media (min-width: 992px) {
  .cart--inside .cart-collaterals {
    height: fit-content;
    max-height: calc(100vh - 118px);
    position: sticky;
    top: 118px;
  }
}
@media (max-width: 991px) {
  .cart--inside .cart-collaterals {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cart--inside .cart-collaterals .cart-totals {
    padding: 20px;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
  }
}
.cart--inside .cart-collaterals .cart-totals .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cart--inside .cart-collaterals .cart-totals--inside {
    padding: 20px;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
  }
}
.cart--inside .cart-collaterals .cart-totals--total {
  border-top: 1px solid #EEEEEE;
  margin-top: 15px;
  padding-top: 15px;
}
.cart--inside .cart-collaterals .cart-totals .checkout-button {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  color: #FFFFFF;
  margin-top: 30px;
  border-radius: 25px;
  font-size: 1rem;
  line-height: 24px;
}
.cart--inside .cart-collaterals .cart-totals--info {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.cart--inside .cart-collaterals .cart-totals--info:before {
  content: "";
  background: #000000;
  mask-image: url(info-icon.svg);
  -webkit-mask-image: url(info-icon.svg);
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: block;
}
.cart--inside .cart-collaterals .cart-totals--info span {
  width: calc(100% - 30px);
}

.cart-empty--inside {
  justify-content: center;
  display: flex;
  margin-top: 80px;
  margin-bottom: 160px;
  flex-wrap: wrap;
}
.cart-empty--heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cart-empty--heading a {
  text-decoration: underline;
}
.cart-empty--buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 20px;
  flex-wrap: wrap;
}
.cart-empty--buttons a {
  border-radius: 25px;
  padding: 16px 18px;
  display: inline-block;
}
@media (max-width: 575px) {
  .cart-empty--buttons a {
    width: 100%;
    text-align: center;
  }
}
.cart-empty--buttons .home-redirect {
  color: #FFFFFF;
  background: #000000;
}
.cart-empty--buttons .news-redirect {
  color: #000000;
  background: #FAFAFA;
}

.sidebar.shop-page-sidebar {
  width: calc(30% - 25px);
}
@media (min-width: 992px) {
  .sidebar.shop-page-sidebar {
    position: sticky;
    top: 118px;
    height: fit-content;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991px) {
  .sidebar.shop-page-sidebar {
    width: 100%;
    transform: translateX(-100vw);
    position: fixed;
    opacity: 0;
    transition: all 0.3s ease;
    left: 0;
    height: 100%;
    height: -webkit-fill-available;
  }
}
.sidebar.shop-page-sidebar.open {
  transform: translateX(0);
  opacity: 1;
  background: #FFFFFF;
  z-index: 999;
  top: 0;
}
@media (max-width: 991px) {
  .sidebar.shop-page-sidebar .sidebar-shop {
    padding: 0 15px;
    height: 100%;
    overflow-y: scroll;
  }
}
.sidebar.shop-page-sidebar .sidebar-shop--content--title {
  margin-top: 0;
}
.sidebar.shop-page-sidebar .sidebar-shop--mobile-header {
  display: none;
}
@media (max-width: 991px) {
  .sidebar.shop-page-sidebar .sidebar-shop--mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.sidebar.shop-page-sidebar .sidebar-shop--mobile-header .close-filters-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  cursor: pointer;
  color: #000000;
}
.sidebar.shop-page-sidebar .sidebar-shop--mobile-footer {
  position: sticky;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #FFFFFF;
  padding: 10px 0;
}
.sidebar.shop-page-sidebar .sidebar-shop--mobile-footer .close-filters-btn {
  display: flex;
  width: 100%;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 25px;
  padding: 18px 24px;
  justify-content: center;
  cursor: pointer;
}

.quantity--inside {
  display: flex;
  background-color: #EEEEEE;
  max-width: 85px;
  width: 100%;
  height: 48px;
  align-items: center;
  border-radius: 8px;
}
.quantity .quantity-button {
  background: none;
  border: none;
  width: 33.3%;
  cursor: pointer;
  height: 100%;
  padding: 0;
}
.quantity .quantity-button:disabled {
  cursor: not-allowed;
}
.quantity .quantity-button svg path {
  fill: #96710F;
}
.quantity .qty {
  background: none;
  border: none;
  width: 33.3%;
  background: #EEEEEE;
  text-align: center;
  height: 100%;
  color: #96710F;
  padding: 0;
}
.quantity .qty:focus {
  outline: none;
}
.quantity .qty::-webkit-input-placeholder {
  color: #96710F;
}
.quantity .qty::-moz-placeholder {
  color: #96710F;
  opacity: 1;
}
.quantity .qty:-ms-input-placeholder {
  color: #96710F;
}
.quantity .qty::-ms-input-placeholder {
  color: #96710F;
}
.quantity .qty::placeholder {
  color: #96710F;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

.single_add_to_cart_button {
  border-radius: 256px;
  border: none;
  padding: 0 40px;
  min-width: 350px;
  color: #FFFFFF;
  background: #000000;
  cursor: pointer;
  width: calc(100% - 153px);
  height: 48px;
}
.cart .quantity:not(:has(.quantity--inside)) ~ .single_add_to_cart_button {
  width: calc(100% - 68px);
}
@media (max-width: 991px) {
  .single_add_to_cart_button {
    width: 100%;
    min-width: unset;
  }
}
.single_add_to_cart_button.disabled {
  background-color: #666666;
  cursor: not-allowed;
  opacity: 0.8;
}
.single_add_to_cart_button.loading {
  position: relative;
  cursor: not-allowed;
  opacity: 0.5;
}
.single_add_to_cart_button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  color: #96710F;
  --d: 8px;
  box-shadow: calc(1 * var(--d)) calc(0 * var(--d)) 0 0, calc(0.707 * var(--d)) calc(0.707 * var(--d)) 0 0.25px, calc(0 * var(--d)) calc(1 * var(--d)) 0 0.5px, calc(-0.707 * var(--d)) calc(0.707 * var(--d)) 0 0.75px, calc(-1 * var(--d)) calc(0 * var(--d)) 0 1px, calc(-0.707 * var(--d)) calc(-0.707 * var(--d)) 0 1.25px, calc(0 * var(--d)) calc(-1 * var(--d)) 0 1.5px;
  animation: loader-spin 1s infinite steps(8);
  pointer-events: none;
}

@keyframes loader-spin {
  100% {
    transform: translateY(-50%) rotate(1turn);
  }
}
.custom-product-label .product-label {
  color: #96710F;
  border-radius: 4px;
  border: 1px solid #96710F;
  padding: 5px 8px;
  display: inline-flex;
}
.custom-product-label .product-label.last-pieces-label {
  color: #D63230;
  border-color: #D63230;
}
.custom-product-label .product-label.bestseller-label {
  color: #1C77C3;
  border-color: #1C77C3;
}
.custom-product-label .product-label.sale-label {
  color: #337357;
  border-color: #337357;
}
@media (max-width: 767px) {
  .custom-product-label .product-label {
    font-size: 10px;
    padding: 4px;
  }
}
.custom-product-label img.product-label-image {
  position: absolute;
  width: 60px;
  height: auto;
  top: 5px;
  left: 5px;
  border-radius: 0;
  z-index: 99;
}
@media (max-width: 991px) {
  .custom-product-label img.product-label-image {
    width: 25px;
    height: 25px;
  }
}
.custom-product-label img.product-label-image.img-daily-deal {
  width: 60px;
  height: 30px;
}
.custom-product-label.single-product-label {
  margin: 10px 0 20px 0;
}
.custom-product-label.single-product-label:has(.img-daily-deal) {
  margin: 0;
  display: none;
}
.custom-product-label.single-product-label img.product-label-image:not(.img-daily-deal) {
  height: 25px;
  left: 5px;
  top: 25px;
  width: 25px;
}
.custom-product-label.single-product-label img.img-daily-deal {
  position: relative;
  display: flex;
  width: 80px;
  height: auto;
  top: unset;
  left: 0;
  margin-left: auto;
}
@media (max-width: 991px) {
  .custom-product-label.single-product-label img.img-daily-deal {
    margin-left: 0;
  }
}
.custom-product-label.loop-product-label .product-label {
  position: absolute;
  top: 5px;
  left: 5px;
}

.single-products-slider .custom-product-label {
  margin: 0;
}
.single-products-slider .product-label {
  position: absolute;
  top: 5px;
  left: 5px;
}
.single-products-slider img.product-label-image {
  display: none;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}

.woocommerce-notices-wrapper {
  padding: 0 30px;
  margin-top: 20px;
  width: 100%;
}

ul.woocommerce-error {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.woocommerce-error li {
  background: #fff6f8;
  border: 1px solid #D63230;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.woocommerce-message {
  background: #eefff3;
  border: 1px solid #337357;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.woocommerce-error {
  width: 100%;
  display: block;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #000000;
  border-radius: 4px;
  background: #FFFFFF;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input[type=checkbox]:checked {
  background: #FFFFFF;
}
input[type=checkbox]::after {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 24px;
  transform: translate(-50%, -50%);
  background: #000000;
  mask-image: url(check.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(check.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
input[type=checkbox]:checked::after {
  display: block;
}

.nip-error {
  display: block;
  margin-top: 4px;
  font-size: 0.85em;
  color: var(--wc-red, #cc1818);
}

.woocommerce-invalid #billing_nip {
  border-color: var(--wc-red, #cc1818);
}
