@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/**
* Font: Open Sans
* Google Fonts: https://fonts.google.com/specimen/Open+Sans?query=open+sans
* Webfont Helper: https://gwfh.mranftl.com/fonts/open-sans?subsets=latin
*/
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/open-sans/open-sans-v40-latin-300.woff2") format("woff2"), url("../fonts/open-sans/open-sans-v40-latin-300.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/open-sans/open-sans-v40-latin-300italic.woff2") format("woff2"), url("../fonts/open-sans/open-sans-v40-latin-300italic.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans/open-sans-v40-latin-regular.woff2") format("woff2"), url("../fonts/open-sans/open-sans-v40-latin-regular.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/open-sans/open-sans-v40-latin-italic.woff2") format("woff2"), url("../fonts/open-sans/open-sans-v40-latin-italic.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/open-sans/open-sans-v40-latin-500.woff2") format("woff2"), url("../fonts/open-sans/open-sans-v40-latin-500.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/open-sans/open-sans-v40-latin-500italic.woff2") format("woff2"), url("../fonts/open-sans/open-sans-v40-latin-500italic.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans/open-sans-v40-latin-600.woff2") format("woff2"), url("../fonts/open-sans/open-sans-v40-latin-600.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/open-sans/open-sans-v40-latin-600italic.woff2") format("woff2"), url("../fonts/open-sans/open-sans-v40-latin-600italic.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
}
/* start - bootstrap chrome scroll fix */
html {
  scroll-behavior: auto !important;
  margin-top: 0 !important;
}

/* end - bootstrap chrome scroll fix */
/* start - hide google recaptcha badge */
.grecaptcha-badge {
  visibility: hidden;
  z-index: -1;
}

/* end - hide google recaptcha badge */
.modal .btn-close {
  opacity: 1;
  background-image: none;
  font-size: 2rem;
  color: #ff5000;
  transition: all 0.3s ease-in-out;
  transition-property: color;
  outline: none;
  box-shadow: none;
}
.modal .btn-close:hover {
  opacity: 1;
  color: #000;
}
.modal .btn-close::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-regular);
  content: "\e59b";
}

.modal-content {
  border-radius: 0;
  border: none;
  background-color: transparent;
}

.modal-header {
  padding: 0 0 1.5rem;
  border: none;
}

.modal-body {
  padding: 0 0 1.5rem;
}

.modal-backdrop {
  --bs-backdrop-bg: white;
  --bs-backdrop-opacity: 1;
}

body {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #000;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* Für WebKit-basierte Browser (Chrome, Safari) */
  -moz-osx-font-smoothing: grayscale; /* Für Firefox unter macOS */
  font-smooth: always; /* Standard-Eigenschaft (wird von manchen Browsern unterstützt) */
}
body.mobile-menu-active {
  overflow: hidden !important;
}
body.header-pinned .mobile-menu {
  top: 103px;
}
body.header-pinned .mobile-menu .mobile-menu-inner {
  max-height: calc(100vh - 103px);
}
body.header-pinned main {
  padding-top: 103px;
}
body main {
  padding-top: 97px;
  transition: padding-top 0.25s ease;
}
body main > *:last-child {
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}

.container-fluid.custom-container-fluid {
  padding-left: 0;
  padding-right: 0;
}

#wpadminbar {
  bottom: 0;
  top: auto;
}

.lg-container .lg-backdrop,
.lg-container .lg-outer {
  z-index: 100060;
}
.lg-container .lg-backdrop {
  background-color: #fff;
}
.lg-container .lg-counter {
  color: #000;
}
.lg-container .lg-next,
.lg-container .lg-prev {
  background-color: #ff5000;
  border-radius: 0;
  color: #fff;
}
.lg-container .lg-sub-html {
  text-align: center;
  font-weight: bold;
  padding: 1rem;
  color: #ff5000;
  background-color: rgba(255, 255, 255, 0.65);
}
.lg-container .lg-toolbar .lg-icon {
  color: #ff5000;
  background: transparent;
  border: none;
}
.lg-container .lg-toolbar .lg-icon.lg-close {
  color: #ff5000;
  font-size: 50px;
  height: auto;
  width: auto;
  padding: 13px 7px 0 0;
  transition: all 0.3s ease-in-out;
  transition-property: color, opacity;
}
.lg-container .lg-toolbar .lg-icon.lg-close:hover {
  color: #000;
  opacity: 1;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  transition-property: color, border-color, background-color, opacity;
}
a:hover {
  color: #ff5000;
}
a.link-primary {
  color: #ff5000 !important;
}
a.link-primary:focus, a.link-primary:hover {
  color: #ff5000 !important;
  opacity: 0.65;
}

.fs-lead,
h1,
.h1,
h2,
.h2 {
  font-size: 3rem;
  line-height: 120%;
}

h1,
.h1,
h2,
.h2 {
  color: #000;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

h3,
.h3 {
  color: #000;
  font-size: 2.625rem;
  font-weight: 400;
  margin-bottom: 1.125rem;
  line-height: 130%;
}

h4,
.h4 {
  color: #000;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

h5,
.h5 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

h6,
.h6 {
  color: #000;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

small,
.fs-small {
  font-size: 0.875rem;
}

.fs-body-text {
  font-size: 1.125rem;
}

.fs-body-text-big {
  font-size: 1.375rem;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold,
strong,
.strong {
  font-weight: 700 !important;
}

.text-primary,
.text-red {
  color: #ff5000 !important;
}

.btn-wrapper {
  padding-top: 2rem;
  margin-top: -0.75rem;
  margin-right: -0.375rem;
  margin-left: -0.375rem;
}
.btn-wrapper.btn-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.btn-wrapper .btn {
  margin: 0.75rem 0.375rem 0;
}

.btn {
  font-size: 1.125rem;
  min-width: 206px;
  max-width: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  font-weight: 400;
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  transition-property: opacity, background-color, color, border-color, transform, background-position;
  transition-duration: 0.25s;
}
.btn.btn-primary, .btn.btn-secondary {
  overflow: hidden;
}
.btn.btn-primary:hover, .btn.btn-secondary:hover {
  opacity: 1;
}
.btn.btn-primary, .btn.btn-primary:hover {
  color: #fff;
  background-color: #ff5000;
  border-color: #ff5000;
}
.btn.btn-primary.negative, .btn.btn-primary.negative:hover {
  color: #ff5000;
  background-color: #fff;
  border-color: #fff;
}
.btn.btn-secondary, .btn.btn-secondary:hover {
  background-color: transparent;
  color: #ff5000;
  border-color: #ff5000;
}
.btn.btn-secondary.negative, .btn.btn-secondary.negative:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn .btn-text {
  position: relative;
}
.btn:hover .before {
  transform: translateY(-125%);
  opacity: 0;
}
.btn:hover .after {
  transform: translateY(0);
  opacity: 1;
}
.btn .before,
.btn .after {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  display: inline-block;
}
.btn .before {
  opacity: 1;
  transform-origin: top left;
}
.btn .after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(125%);
  opacity: 0;
  transform-origin: bottom right;
}

.wysiwyg {
  color: #000;
  /*
  hyphens: auto;
  word-break: break-word;
  */
}
.wysiwyg.fs-body-text-big > *:not(:last-child) {
  margin-bottom: 1.25rem;
}
.wysiwyg.text-white a {
  color: #fff;
}
.wysiwyg.text-white a:hover {
  color: #fff;
}
.wysiwyg.text-white ul li::before {
  background-color: #fff;
}
.wysiwyg > *:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  color: #000;
}
.wysiwyg a:hover {
  color: #ff5000;
}
.wysiwyg ol li:not(:first-of-type),
.wysiwyg ul li:not(:first-of-type) {
  margin-top: 0.625rem;
}
.wysiwyg ol {
  padding-left: 1.25rem;
}
.wysiwyg ul {
  padding-left: 0;
  list-style-type: none;
}
.wysiwyg ul li {
  position: relative;
  padding-left: 1.125rem;
}
.wysiwyg ul li::before {
  content: "–";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5000;
}
.wysiwyg img {
  max-width: 100%;
  height: auto;
}
.wysiwyg .fw-bold,
.wysiwyg strong,
.wysiwyg .strong {
  font-weight: 600 !important;
}
.wysiwyg small,
.wysiwyg .fs-small {
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.swiper-pagination.swiper-pagination-big .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border-width: 1px;
  margin: 0;
}
.swiper-pagination.swiper-pagination-big .swiper-pagination-bullet:not(:last-of-type) {
  margin-right: 0.75rem;
}
.swiper-pagination.swiper-pagination-white .swiper-pagination-bullet {
  border-color: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}
.swiper-pagination.swiper-pagination-white .swiper-pagination-bullet::before {
  background-color: #fff;
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #000;
  transition: all 0.3s ease-in-out;
  transition-property: background-color;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0;
}
.swiper-pagination .swiper-pagination-bullet:hover, .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: transparent;
}
.swiper-pagination .swiper-pagination-bullet:hover::before, .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transition-property: opacity;
  border-radius: 0;
}

/* Header Styles */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.site-header.glass-effect {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.site-header.pinned {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.site-header.pinned .navbar-nav .nav-item .nav-link {
  color: #333333;
}
.site-header.pinned .hamburger-inner,
.site-header.pinned .hamburger-inner::before,
.site-header.pinned .hamburger-inner::after {
  background-color: #ff5000;
}
.site-header.light-menu {
  background-color: #fff;
}
.site-header.light-menu .navbar-nav .nav-item .nav-link {
  color: #333333;
}
.site-header.light-menu .hamburger-inner,
.site-header.light-menu .hamburger-inner::before,
.site-header.light-menu .hamburger-inner::after {
  background-color: #ff5000;
}
.site-header.sticky .navbar {
  padding: 0.6rem 0;
}
.site-header.sticky .navbar-brand img {
  max-height: 50px;
}
.site-header.compact .navbar {
  padding: 0.6rem 0;
}
.site-header.compact .navbar-brand img {
  max-height: 50px;
}
.site-header .navbar {
  padding: 0.85rem 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 5;
}
.site-header .navbar-brand img {
  max-height: 60px;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .main-navigation {
  display: flex;
  align-items: center;
}
.site-header .main-navigation .main-menu-wrapper {
  margin-right: 1rem;
}
.site-header .main-navigation .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
}
.site-header .main-navigation .navbar-nav .nav-item {
  margin-left: 0;
  margin-right: 2.5rem;
  position: relative;
}
.site-header .main-navigation .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.site-header .main-navigation .navbar-nav .nav-item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(71, 194, 255, 0.15), rgba(255, 80, 0, 0.08));
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .main-navigation .navbar-nav .nav-item:hover::before {
  width: 120%;
  height: 160%;
  opacity: 1;
}
.site-header .main-navigation .navbar-nav .nav-item .nav-link {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: #333333;
  font-weight: 600;
  position: relative;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.site-header .main-navigation .navbar-nav .nav-item .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff5000, rgba(0, 166, 255, 0.7));
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 2px;
}
.site-header .main-navigation .navbar-nav .nav-item .nav-link:hover, .site-header .main-navigation .navbar-nav .nav-item .nav-link.active {
  color: #ff5000;
  transform: translateY(-2px);
}
.site-header .main-navigation .navbar-nav .nav-item .nav-link:hover:after, .site-header .main-navigation .navbar-nav .nav-item .nav-link.active:after {
  width: 100%;
}
.site-header .main-navigation .navbar-nav .nav-item.current-menu-item .nav-link {
  color: #ff5000;
}
.site-header .main-navigation .navbar-nav .nav-item.current-menu-item .nav-link:after {
  width: 100%;
}
.site-header .hamburger-inner,
.site-header .hamburger-inner::before,
.site-header .hamburger-inner::after {
  background-color: #ff5000;
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .btn-primary.animated-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #ff5000;
  border-color: #ff5000;
}
.site-header .btn-primary.animated-btn:hover {
  background-color: #e64800;
  border-color: #e64800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 80, 0, 0.3);
}
.site-header .btn-primary.animated-btn.pulse-animation {
  animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1);
}
.site-header .glass-btn {
  padding: 0.6rem 1.5rem;
  min-width: auto;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 1rem;
  background: rgba(255, 80, 0, 0.85);
  border: 1px solid rgba(255, 80, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(255, 80, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .glass-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-100%);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.site-header .glass-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 80, 0, 0.95);
  box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
  border-color: rgba(255, 80, 0, 0.5);
}
.site-header .glass-btn:hover:before {
  transform: translateX(100%);
}
.site-header .glass-btn.pulse-animation {
  animation: glass-btn-pulse 1s cubic-bezier(0.4, 0, 0.6, 1);
}
.site-header .glass-btn .btn-text {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.site-header .glass-btn .btn-text .before,
.site-header .glass-btn .btn-text .after {
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.site-header .glass-btn .btn-text .before {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.site-header .glass-btn .btn-text .after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
}
.site-header .glass-btn:hover .btn-text .before {
  opacity: 0;
  transform: translateY(-100%);
}
.site-header .glass-btn:hover .btn-text .after {
  opacity: 1;
  transform: translateY(0);
}

/* Bubble Animations */
.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 80, 0, 0.2), rgba(0, 166, 255, 0.3));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float-bubble 15s ease-in-out infinite alternate;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  opacity: 0.7;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
}

.site-header.pinned .bubble,
.site-header.light-menu .bubble {
  background-color: rgba(255, 80, 0, 0.1);
}

.bubble-1 {
  width: 100px;
  height: 100px;
  top: -30px;
  left: 10%;
}

.bubble-2 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 25%;
}

.bubble-3 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: 30%;
}

@keyframes float-bubble {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) translateX(10px) rotate(5deg);
  }
  66% {
    transform: translateY(0) translateX(25px) rotate(-5deg);
  }
  100% {
    transform: translateY(10px) translateX(0) rotate(0deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 80, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 80, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 80, 0, 0);
  }
}
/* Button Styles for Header and Mobile Menu */
.animated-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff5000, #ff854d);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 80, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-left: 15px;
}
.animated-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #00a6ff, #4dc1ff);
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 50px;
}
.animated-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 166, 255, 0.4);
  color: #fff;
}
.animated-btn:hover:before {
  width: 100%;
}
.animated-btn .btn-text {
  position: relative;
  display: inline-block;
}
.animated-btn .btn-text .before,
.animated-btn .btn-text .after {
  display: inline-block;
  transition: all 0.3s ease;
}
.animated-btn .btn-text .after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.animated-btn:hover .btn-text .before {
  opacity: 0;
  transform: translateY(-10px);
}
.animated-btn:hover .btn-text .after {
  opacity: 1;
  transform: translateY(0);
}
.animated-btn.pulse-animation {
  animation: button-pulse 1s cubic-bezier(0.66, 0, 0, 1);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  display: block !important;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .bubble-container {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mobile-menu .bubble {
  opacity: 0.5;
  position: absolute;
  border-radius: 50%;
}
.mobile-menu .bubble-4 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  background: linear-gradient(135deg, rgba(0, 166, 255, 0.2), rgba(255, 80, 0, 0.25));
}
.mobile-menu .bubble-5 {
  width: 85px;
  height: 85px;
  bottom: 10%;
  left: 15%;
  background: linear-gradient(135deg, rgba(255, 80, 0, 0.15), rgba(0, 166, 255, 0.2));
}
.mobile-menu .mobile-menu-inner {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu .mobile-menu-inner-top {
  margin-left: auto;
  margin-right: auto;
}
.mobile-menu .navbar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
}
.mobile-menu .navbar-nav .nav-item {
  width: 100%;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.mobile-menu .navbar-nav .nav-item::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(71, 194, 255, 0.15), rgba(255, 80, 0, 0.08));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-menu .navbar-nav .nav-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.mobile-menu .navbar-nav .nav-item .nav-link {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 0;
  display: inline-block;
  color: #333333;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-menu .navbar-nav .nav-item .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff5000, rgba(0, 166, 255, 0.7));
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1), background 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 2px;
}
.mobile-menu .navbar-nav .nav-item .nav-link:hover, .mobile-menu .navbar-nav .nav-item .nav-link.active {
  color: #ff5000;
  transform: translateY(-3px);
}
.mobile-menu .navbar-nav .nav-item .nav-link:hover:after, .mobile-menu .navbar-nav .nav-item .nav-link.active:after {
  width: 60%;
}
.mobile-menu .navbar-nav .nav-item.current-menu-item .nav-link {
  color: #ff5000;
}
.mobile-menu .navbar-nav .nav-item.current-menu-item .nav-link:after {
  width: 60%;
}
.mobile-menu .glass-btn {
  padding: 0.8rem 1.5rem;
  max-width: 250px;
  margin: 1rem auto 0;
}
.mobile-menu .glass-btn:hover {
  transform: translateY(-5px);
}

/* Admin Bar Fix for Sticky Header */
.admin-bar .site-header.sticky {
  top: 32px;
}

/* Body Style for Open Menu */
body.menu-open {
  overflow: hidden;
}

/* Animations */
@keyframes float-header {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(-1deg);
  }
}
@keyframes button-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 80, 0, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 80, 0, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 80, 0, 0);
    transform: scale(1);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 1199.98px) {
  .site-header .bubble-1 {
    width: 60px;
    height: 60px;
  }
  .site-header .bubble-3 {
    width: 40px;
    height: 40px;
  }
}
footer .main-footer {
  border-top: 1px solid #e5e5e7;
  padding: 6.5rem 0;
  color: #707070;
}
footer .main-footer .row {
  row-gap: 3rem;
}
footer .main-footer .h5 {
  margin-bottom: 2rem;
}
footer .main-footer .wysiwyg,
footer .main-footer .contact-wrapper,
footer .main-footer .social-items {
  color: #707070;
}
footer .main-footer .wysiwyg a,
footer .main-footer .contact-wrapper a,
footer .main-footer .social-items a {
  color: #707070;
}
footer .main-footer .wysiwyg a:hover,
footer .main-footer .contact-wrapper a:hover,
footer .main-footer .social-items a:hover {
  color: #ff5000;
}
footer .main-footer .wysiwyg > *:not(:last-child) {
  margin-bottom: 1.625rem;
}
footer .main-footer .address,
footer .main-footer address {
  margin-bottom: 0;
}
footer .main-footer .menu .menu-item:not(:first-of-type) {
  margin-top: 1.25rem;
}
footer .main-footer .menu .menu-item .nav-link {
  color: #707070;
}
footer .main-footer .menu .menu-item .nav-link:hover {
  color: #ff5000;
}
footer .sub-footer {
  border-top: 1px solid #e5e5e7;
}
footer .sub-footer .menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
footer .sub-footer .menu .menu-item {
  padding: 0.5rem 0.75rem;
}
footer .sub-footer .menu .menu-item .nav-link {
  font-size: 0.875rem;
  color: #707070;
}
footer .sub-footer .menu .menu-item .nav-link:hover {
  color: #000;
}
footer .social-items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin: -0.5rem -0.625rem;
}
footer .social-items .social-item {
  padding: 0.5rem 0.625rem 0.45rem;
  font-size: 1.5rem;
  line-height: normal;
  line-height: 100%;
  color: #707070;
}
footer .social-items .social-item:hover {
  color: #000;
}
footer .social-items .social-item > i {
  display: flex;
}
footer .menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer .menu .menu-item .nav-link {
  color: #707070;
}
footer .menu .menu-item .nav-link:hover {
  color: #ff5000;
}

.bg-image {
  background-size: cover;
  background-position: center;
}

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

.bg-primary {
  background-color: #ff5000 !important;
}

.bg-red-light {
  background-color: #f7e2e2;
}

.bg-grey-light {
  background-color: #f5f5f5;
}

.mt-large,
.my-large {
  margin-top: 10rem;
}

.mb-large,
.my-large {
  margin-bottom: 10rem;
}

.mt-big,
.my-big {
  margin-top: 8rem;
}

.mb-big,
.my-big {
  margin-bottom: 8rem;
}

.mt-medium,
.my-medium {
  margin-top: 5rem;
}

.mb-medium,
.my-medium {
  margin-bottom: 5rem;
}

.mt-small,
.my-small {
  margin-top: 2rem;
}

.mb-small,
.my-small {
  margin-bottom: 2rem;
}

.pt-large,
.py-large {
  padding-top: 10rem;
}

.pb-large,
.py-large {
  padding-bottom: 10rem;
}

.pt-big,
.py-big {
  padding-top: 8rem;
}

.pb-big,
.py-big {
  padding-bottom: 8rem;
}

.pt-medium,
.py-medium {
  padding-top: 5rem;
}

.pb-medium,
.py-medium {
  padding-bottom: 5rem;
}

.pt-small,
.py-small {
  padding-top: 2rem;
}

.pb-small,
.py-small {
  padding-bottom: 2rem;
}

.wpcf7 {
  /* start - custom checkbox styling for contact form 7 checkbox */
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  color: #ff5000;
}
.wpcf7 .wpcf7-form.failed .wpcf7-response-output, .wpcf7 .wpcf7-form.invalid .wpcf7-response-output, .wpcf7 .wpcf7-form.unaccepted .wpcf7-response-output, .wpcf7 .wpcf7-form.aborted .wpcf7-response-output {
  color: #ff5000;
}
.wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  color: #ff5000;
  font-size: 0.875rem;
  padding-top: 10px;
  font-weight: 400;
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  border: none;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 0.7rem;
  margin-left: 0;
}
.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0 0 0.5rem 0;
}
.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio] {
  border-radius: 50%;
}
.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");
}
.wpcf7 .wpcf7-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 600;
  font-size: 1.125rem;
}
.wpcf7 .wpcf7-form .wpcf7-form-control:not(.wpcf7-radio) .wpcf7-list-item input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item > label {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type=checkbox],
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type=radio] {
  float: left;
  margin-left: -1.5rem;
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  vertical-align: top;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #ff5000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
}
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type=checkbox]:focus,
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type=radio]:focus {
  border-color: rgba(0, 0, 0, 0.25);
}
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type=checkbox]:checked,
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type=radio]:checked {
  background-color: #ff5000;
  border-color: #ff5000;
}
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type=checkbox]:hover,
.wpcf7 .wpcf7-form .wpcf7-form-control .wpcf7-list-item input[type=radio]:hover {
  cursor: pointer;
}
.wpcf7 .wpcf7-form .ajax-loader,
.wpcf7 .wpcf7-form .wpcf7-spinner {
  display: none;
}
.wpcf7 .wpcf7-form .wpcf7-submit.btn-primary-wpcf7 {
  background-color: transparent;
  border: none;
}
.wpcf7 .form-row {
  margin-bottom: 1rem;
}
.wpcf7 span.wpcf7-list-item {
  display: block;
  margin: 0;
}
.wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}
.wpcf7 .wpcf7-list-item > label {
  font-weight: 400;
}
.wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
  margin-left: 1rem;
  display: inline-block;
}
.wpcf7 label {
  font-weight: 400;
}
.wpcf7 .wpcf7-field-group:not(:first-of-type) {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ced4da;
}
.wpcf7 button.wpcf7-field-group-add, .wpcf7 button.wpcf7-field-group-remove {
  width: 45px;
  height: 45px;
  border: 1px solid #ff5000;
  border-radius: 0;
  margin-top: 0.5rem;
}
.wpcf7 button.wpcf7-field-group-add {
  background-color: #ff5000;
  color: #fff;
}
.wpcf7 button.wpcf7-field-group-remove {
  background-color: transparent;
  color: #ff5000;
  margin-right: 0.75rem;
}
.wpcf7 .codedropz-upload-handler {
  border-radius: 0;
  border: 1px solid #ced4da;
  background-color: #f8f8f8;
  color: #000;
  font-size: 1.125rem;
  padding: 2rem 1rem;
}
.wpcf7 .codedropz-upload-inner h3 {
  font-size: 1.375rem;
}
.wpcf7 .codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
  font-size: 1.125rem;
  color: #ff5000;
  transition: all 0.3s ease-in-out;
  transition-property: opacity;
}
.wpcf7 .codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn:hover {
  opacity: 0.65;
}
.wpcf7 .dnd-upload-status .dnd-upload-details .dnd-progress-bar,
.wpcf7 .dnd-upload-status .dnd-upload-details .dnd-upload-image {
  display: none;
}
.wpcf7 .dnd-upload-status .dnd-upload-details .name {
  color: #ff5000;
}
.wpcf7 .dnd-upload-status .dnd-upload-details .name em {
  font-style: normal;
  font-weight: 400;
}
.wpcf7 .dnd-icon-remove::before {
  font-size: 20px;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=tel],
input[type=search],
select {
  max-height: 54px;
  line-height: 1 !important;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=tel],
input[type=search],
select,
.form-select,
textarea,
.form-control {
  font-size: 1.125rem;
  border: 1px solid #ced4da;
  border-radius: 0;
  padding: 1rem;
  min-height: 54px;
  background-color: #f8f8f8;
  color: #000;
  -webkit-appearance: none;
}
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=search]::-moz-placeholder,
select::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
select:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}
input[type=text]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=search]:-moz-placeholder,
select:-moz-placeholder,
.form-select:-moz-placeholder,
textarea:-moz-placeholder,
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=search]:focus,
select:focus,
.form-select:focus,
textarea:focus,
.form-control:focus {
  color: #000;
  outline: 0;
  box-shadow: none;
  border-color: #707070;
  background-color: #f8f8f8;
}

.form-select,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M4.251 181.1C7.392 177.7 11.69 175.1 16 175.1c3.891 0 7.781 1.406 10.86 4.25l197.1 181.1l197.1-181.1c6.5-6 16.64-5.625 22.61 .9062c6 6.5 5.594 16.59-.8906 22.59l-208 192c-6.156 5.688-15.56 5.688-21.72 0l-208-192C-1.343 197.7-1.749 187.6 4.251 181.1z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  border-radius: 0;
  padding-right: 2.75rem !important;
}
.form-select:hover,
select:hover {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  body.admin-bar {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .container-fluid.custom-container-fluid {
    max-width: 1600px;
  }
  .layout-large .container-fluid.custom-container-fluid {
    max-width: 1800px;
  }
}
@media screen and (min-width: 1400px) {
  .layout-large .container,
  .layout-large .container-md,
  .layout-large .container-sm,
  .layout-large .container-xl,
  .layout-large .container-xxl {
    max-width: 1600px;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 1399px) {
  header .navbar .navbar-nav + .btn {
    margin-left: 1.125rem;
  }
  footer .main-footer > div:not(:first-child):not(:last-child) {
    display: block;
  }
  .site-header .main-navigation .navbar-nav .nav-item {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  body.header-pinned .mobile-menu {
    top: 91px;
  }
  body.header-pinned .mobile-menu .mobile-menu-inner {
    max-height: calc(100vh - 91px);
  }
  body.header-pinned main {
    padding-top: 91px;
  }
  body main {
    padding-top: 103px;
  }
  header.pinned .navbar .navbar-brand img {
    width: 160px;
  }
  .mobile-menu-backdrop {
    display: none !important;
  }
  .mobile-menu {
    top: 103px;
    height: calc(100% - 103px);
    background-color: #fff;
  }
  .mobile-menu .mobile-menu-inner {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    transform: none !important;
  }
  .mobile-menu-inner-content {
    min-height: 0;
    padding: 0 0.75rem;
    max-width: 960px;
    margin: 0 auto;
    align-items: center;
    justify-content: flex-start;
  }
  .mobile-menu-inner-content .mobile-menu-inner-bottom .navbar-nav .nav-item .nav-link {
    justify-content: center;
    padding: 0.25rem 0;
    text-align: center;
    font-size: 1.5rem;
    line-height: 100%;
    transform: none !important;
  }
  .mobile-menu-inner-content .mobile-menu-inner-bottom #main-menu .nav-item:not(:first-child) {
    margin-top: 0;
  }
  .mobile-menu-inner-content .mobile-menu-inner-bottom #main-menu .nav-item .nav-link {
    font-size: 1.5rem;
  }
  .fs-lead.h1-tablet-responsive, .fs-lead.h2-tablet-responsive,
  h1.h1-tablet-responsive,
  h1.h2-tablet-responsive,
  .h1.h1-tablet-responsive,
  .h1.h2-tablet-responsive,
  h2.h1-tablet-responsive,
  h2.h2-tablet-responsive,
  .h2.h1-tablet-responsive,
  .h2.h2-tablet-responsive {
    font-size: calc(2.25rem + 20 * (100vw - 992px) / 609);
  }
  h3.h3-tablet-responsive,
  .h3.h3-tablet-responsive {
    font-size: calc(1.875rem + 20 * (100vw - 992px) / 609);
  }
  .site-header .main-navigation .navbar-nav .nav-item {
    margin-right: 1.5rem;
  }
  .site-header .main-navigation .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }
}
@media screen and (max-width: 991px) {
  body {
    font-size: 1rem;
  }
  /*
  form > .row > *,
  .container > .row > *,
  header .navbar .navbar-inner {
    padding-right: $col-mobile-padding;  
    padding-left: $col-mobile-padding;  
  }   
  */
  footer .main-footer {
    padding: 4rem 0;
  }
  footer .main-footer .h5 {
    margin-bottom: 1rem;
  }
  footer .main-footer .menu .menu-item:not(:first-of-type) {
    margin-top: 0.625rem;
  }
  footer .main-footer .social-items {
    justify-content: flex-start;
  }
  footer .main-footer .social-items .social-item {
    padding: 0.5rem 0.625rem;
    font-size: 2.25rem;
  }
  footer .main-footer .social-items .social-item:hover {
    color: #000;
  }
  .fs-lead.h1-tablet-responsive, .fs-lead.h2-tablet-responsive,
  h1.h1-tablet-responsive,
  h1.h2-tablet-responsive,
  .h1.h1-tablet-responsive,
  .h1.h2-tablet-responsive,
  h2.h1-tablet-responsive,
  h2.h2-tablet-responsive,
  .h2.h1-tablet-responsive,
  .h2.h2-tablet-responsive {
    font-size: 2.25rem;
  }
  h3.h3-tablet-responsive,
  .h3.h3-tablet-responsive {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .fs-lead,
  h1,
  .h1,
  h2,
  .h2 {
    font-size: 2.25rem;
  }
  h1,
  .h1,
  h2,
  .h2 {
    margin-bottom: 1rem;
  }
  h3,
  .h3 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }
  h4,
  .h4 {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
  }
  h5,
  .h5 {
    font-size: 1.375rem;
  }
  h5.ff-primary,
  .h5.ff-primary {
    font-size: calc(1.375rem - 0.125rem);
  }
  h6,
  .h6 {
    font-size: 1rem;
  }
  small,
  .fs-small {
    font-size: 0.875rem;
  }
  .fs-body-text {
    font-size: 1rem;
  }
  .fs-body-text-big {
    font-size: 1.125rem;
  }
  .wysiwyg.fs-body-text-big > *:not(:last-child) {
    margin-bottom: 1rem;
  }
  .wysiwyg ul li::before {
    top: 11px;
  }
  .wysiwyg ol li:not(:first-of-type),
  .wysiwyg ul li:not(:first-of-type) {
    margin-top: 0.625rem;
  }
  .wysiwyg small,
  .wysiwyg .fs-small {
    font-size: 0.875rem;
  }
  .btn-wrapper {
    padding-top: 1.5rem;
  }
  .btn {
    font-size: 1rem;
  }
  .swiper-pagination.swiper-pagination-big .swiper-pagination-bullet,
  .swiper-pagination .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    border-width: 1px;
  }
  .swiper-pagination.swiper-pagination-big .swiper-pagination-bullet:not(:last-of-type) {
    margin-right: 0.5rem;
  }
  #wpadminbar {
    display: none;
  }
  .mt-large,
  .my-large {
    margin-top: 7rem;
  }
  .mb-large,
  .my-large {
    margin-bottom: 7rem;
  }
  .mt-big,
  .my-big {
    margin-top: 5rem;
  }
  .mb-big,
  .my-big {
    margin-bottom: 5rem;
  }
  .mt-medium,
  .my-medium {
    margin-top: 3.5rem;
  }
  .mb-medium,
  .my-medium {
    margin-bottom: 3.5rem;
  }
  .mt-small,
  .my-small {
    margin-top: 1.25rem;
  }
  .mb-small,
  .my-small {
    margin-bottom: 1.25rem;
  }
  .pt-large,
  .py-large {
    padding-top: 7rem;
  }
  .pb-large,
  .py-large {
    padding-bottom: 7rem;
  }
  .pt-big,
  .py-big {
    padding-top: 5rem;
  }
  .pb-big,
  .py-big {
    padding-bottom: 5rem;
  }
  .pt-medium,
  .py-medium {
    padding-top: 3.5rem;
  }
  .pb-medium,
  .py-medium {
    padding-bottom: 3.5rem;
  }
  .pt-small,
  .py-small {
    padding-top: 1.25rem;
  }
  .pb-small,
  .py-small {
    padding-bottom: 1.25rem;
  }
  .custom-form-wrapper .wpcf7-form .wpcf7-response-output,
  .wpcf7 .wpcf7-form .wpcf7-response-output {
    margin-left: 0;
  }
  .custom-form-wrapper input[type=text]::-webkit-input-placeholder,
  .custom-form-wrapper input[type=email]::-webkit-input-placeholder,
  .custom-form-wrapper input[type=password]::-webkit-input-placeholder,
  .custom-form-wrapper input[type=tel]::-webkit-input-placeholder,
  .custom-form-wrapper input[type=search]::-webkit-input-placeholder,
  .custom-form-wrapper select::-webkit-input-placeholder,
  .custom-form-wrapper .form-select::-webkit-input-placeholder,
  .custom-form-wrapper textarea::-webkit-input-placeholder,
  .custom-form-wrapper .form-control::-webkit-input-placeholder,
  .wpcf7 input[type=text]::-webkit-input-placeholder,
  .wpcf7 input[type=email]::-webkit-input-placeholder,
  .wpcf7 input[type=password]::-webkit-input-placeholder,
  .wpcf7 input[type=tel]::-webkit-input-placeholder,
  .wpcf7 input[type=search]::-webkit-input-placeholder,
  .wpcf7 select::-webkit-input-placeholder,
  .wpcf7 .form-select::-webkit-input-placeholder,
  .wpcf7 textarea::-webkit-input-placeholder,
  .wpcf7 .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000 !important;
  }
  .custom-form-wrapper input[type=text]::-moz-placeholder,
  .custom-form-wrapper input[type=email]::-moz-placeholder,
  .custom-form-wrapper input[type=password]::-moz-placeholder,
  .custom-form-wrapper input[type=tel]::-moz-placeholder,
  .custom-form-wrapper input[type=search]::-moz-placeholder,
  .custom-form-wrapper select::-moz-placeholder,
  .custom-form-wrapper .form-select::-moz-placeholder,
  .custom-form-wrapper textarea::-moz-placeholder,
  .custom-form-wrapper .form-control::-moz-placeholder,
  .wpcf7 input[type=text]::-moz-placeholder,
  .wpcf7 input[type=email]::-moz-placeholder,
  .wpcf7 input[type=password]::-moz-placeholder,
  .wpcf7 input[type=tel]::-moz-placeholder,
  .wpcf7 input[type=search]::-moz-placeholder,
  .wpcf7 select::-moz-placeholder,
  .wpcf7 .form-select::-moz-placeholder,
  .wpcf7 textarea::-moz-placeholder,
  .wpcf7 .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #000 !important;
  }
  .custom-form-wrapper input[type=text]:-ms-input-placeholder,
  .custom-form-wrapper input[type=email]:-ms-input-placeholder,
  .custom-form-wrapper input[type=password]:-ms-input-placeholder,
  .custom-form-wrapper input[type=tel]:-ms-input-placeholder,
  .custom-form-wrapper input[type=search]:-ms-input-placeholder,
  .custom-form-wrapper select:-ms-input-placeholder,
  .custom-form-wrapper .form-select:-ms-input-placeholder,
  .custom-form-wrapper textarea:-ms-input-placeholder,
  .custom-form-wrapper .form-control:-ms-input-placeholder,
  .wpcf7 input[type=text]:-ms-input-placeholder,
  .wpcf7 input[type=email]:-ms-input-placeholder,
  .wpcf7 input[type=password]:-ms-input-placeholder,
  .wpcf7 input[type=tel]:-ms-input-placeholder,
  .wpcf7 input[type=search]:-ms-input-placeholder,
  .wpcf7 select:-ms-input-placeholder,
  .wpcf7 .form-select:-ms-input-placeholder,
  .wpcf7 textarea:-ms-input-placeholder,
  .wpcf7 .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #000 !important;
  }
  .custom-form-wrapper input[type=text]:-moz-placeholder,
  .custom-form-wrapper input[type=email]:-moz-placeholder,
  .custom-form-wrapper input[type=password]:-moz-placeholder,
  .custom-form-wrapper input[type=tel]:-moz-placeholder,
  .custom-form-wrapper input[type=search]:-moz-placeholder,
  .custom-form-wrapper select:-moz-placeholder,
  .custom-form-wrapper .form-select:-moz-placeholder,
  .custom-form-wrapper textarea:-moz-placeholder,
  .custom-form-wrapper .form-control:-moz-placeholder,
  .wpcf7 input[type=text]:-moz-placeholder,
  .wpcf7 input[type=email]:-moz-placeholder,
  .wpcf7 input[type=password]:-moz-placeholder,
  .wpcf7 input[type=tel]:-moz-placeholder,
  .wpcf7 input[type=search]:-moz-placeholder,
  .wpcf7 select:-moz-placeholder,
  .wpcf7 .form-select:-moz-placeholder,
  .wpcf7 textarea:-moz-placeholder,
  .wpcf7 .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #000 !important;
  }
}
@media screen and (max-width: 575px) {
  .btn {
    max-width: 100%;
  }
  .wysiwyg a {
    -webkit-hyphens: auto;
            hyphens: auto;
    word-break: break-word;
  }
}
.home-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 100px 0;
}
.home-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.home-hero .container {
  position: relative;
  z-index: 2;
}
.home-hero .hero-content {
  padding: 2rem;
  border-left: 4px solid #ff5000;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 0.25rem;
}
.home-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .home-hero .hero-title {
    font-size: 3.5rem;
  }
}
.home-hero .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home-hero .hero-subtitle {
    font-size: 1.5rem;
  }
}
.home-hero .hero-button .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

.services-section {
  padding: 5rem 0;
  background-color: #f5f5f5;
}
.services-section .section-title {
  color: #333333;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.services-section .section-subtitle {
  color: #707070;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
.services-section .services-row {
  margin-top: 3rem;
}
.services-section .service-item-wrap {
  margin-bottom: 2rem;
}
.services-section .service-item {
  height: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-section .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.services-section .service-image {
  height: 200px;
  overflow: hidden;
}
.services-section .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-section .service-content {
  padding: 1.5rem;
}
.services-section .service-icon {
  font-size: 2.5rem;
  color: #ff5000;
  margin-bottom: 1rem;
}
.services-section .service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333333;
}
.services-section .service-description {
  color: #707070;
  font-size: 0.95rem;
}
.services-section .opening-hours-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
  border-left: 4px solid #00a6ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.services-section .opening-hours-note p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.about-section {
  padding: 5rem 0;
}
.about-section .about-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.about-section .about-image img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .about-section .about-content {
    padding-right: 2rem;
  }
}
.about-section .about-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333333;
  position: relative;
  padding-bottom: 1rem;
}
.about-section .about-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #ff5000;
}
.about-section .about-text {
  color: #707070;
  font-size: 1rem;
  line-height: 1.6;
}
.about-section .about-text p {
  margin-bottom: 1.5rem;
}
.about-section .about-text ul {
  margin-bottom: 1.5rem;
}
.about-section .about-text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.about-section .about-text ul li:before {
  content: "\f111";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 0.6rem;
  color: #ff5000;
}

.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  color: #fff;
}
.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #ff5000 0%, rgba(0, 166, 255, 0.8) 100%);
  opacity: 0.9;
  z-index: 1;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section .cta-content {
  text-align: center;
}
.cta-section .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-section .cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-button .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: #fff;
  color: #ff5000;
  border-color: #fff;
}
.cta-section .cta-button .btn:hover {
  background-color: transparent;
  color: #fff;
}
.cta-section .cta-button .btn .after {
  color: #fff;
}

.contact-section {
  padding: 5rem 0;
  background-color: #f5f5f5;
}
.contact-section .section-title {
  color: #333333;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-section .section-subtitle {
  color: #707070;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.contact-section .contact-info {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.contact-section .contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333333;
  position: relative;
  padding-bottom: 1rem;
}
.contact-section .contact-info-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ff5000;
}
.contact-section .contact-address p {
  margin-bottom: 1.5rem;
}
.contact-section .contact-address p:last-child {
  margin-bottom: 0;
}
.contact-section .contact-address a {
  color: #ff5000;
  text-decoration: none;
}
.contact-section .contact-address a:hover {
  text-decoration: underline;
}
.contact-section .contact-form-wrapper {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.contact-section .map-wrapper {
  margin-top: 2rem;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact-section .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn .btn-text {
  position: relative;
  display: inline-block;
}
.btn .btn-text .before,
.btn .btn-text .after {
  transition: all 0.3s ease;
}
.btn .btn-text .before {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.btn .btn-text .after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
}
.btn:hover .btn-text .before {
  opacity: 0;
  transform: translateY(-100%);
}
.btn:hover .btn-text .after {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background-color: #ff5000;
  border-color: #ff5000;
}
.btn-primary:hover {
  background-color: #cc4000;
  border-color: #cc4000;
}

header {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
header .navbar {
  padding: 1rem 0;
}
header .logo {
  max-height: 60px;
}
header .navbar-nav .nav-item {
  margin-left: 1.5rem;
}
header .navbar-nav .nav-item .nav-link {
  color: #333333;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}
header .navbar-nav .nav-item .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff5000;
  transition: width 0.3s ease;
}
header .navbar-nav .nav-item .nav-link:hover, header .navbar-nav .nav-item .nav-link.active {
  color: #ff5000;
}
header .navbar-nav .nav-item .nav-link:hover:after, header .navbar-nav .nav-item .nav-link.active:after {
  width: 100%;
}

footer {
  background-color: #333333;
  color: #fff;
}
footer .main-footer {
  padding: 4rem 0;
}
footer .h5 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
footer a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
footer a:hover {
  opacity: 1;
  color: #ff5000;
}
footer .address {
  font-style: normal;
}
footer .sub-footer {
  background-color: #1a1a1a;
  padding: 1rem 0;
}
footer .sub-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
footer .sub-footer ul li {
  margin-right: 1.5rem;
}
footer .sub-footer ul li:last-child {
  margin-right: 0;
}
footer .social-items {
  display: flex;
  justify-content: flex-end;
}
footer .social-items .social-item {
  margin-left: 1rem;
  font-size: 1.2rem;
}
footer .social-items .social-item:first-child {
  margin-left: 0;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  display: block !important;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .bubble-container {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mobile-menu .bubble {
  opacity: 0.5;
  position: absolute;
  border-radius: 50%;
}
.mobile-menu .bubble-4 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  background: linear-gradient(135deg, rgba(0, 166, 255, 0.2), rgba(255, 80, 0, 0.25));
}
.mobile-menu .bubble-5 {
  width: 85px;
  height: 85px;
  bottom: 10%;
  left: 15%;
  background: linear-gradient(135deg, rgba(255, 80, 0, 0.15), rgba(0, 166, 255, 0.2));
}
.mobile-menu .mobile-menu-inner {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu .navbar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
}
.mobile-menu .navbar-nav .nav-item {
  width: 100%;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.mobile-menu .navbar-nav .nav-item::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(71, 194, 255, 0.15), rgba(255, 80, 0, 0.08));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-menu .navbar-nav .nav-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.mobile-menu .navbar-nav .nav-item .nav-link {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 0;
  display: inline-block;
  color: #333333;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-menu .navbar-nav .nav-item .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff5000, rgba(0, 166, 255, 0.7));
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1), background 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 2px;
}
.mobile-menu .navbar-nav .nav-item .nav-link:hover, .mobile-menu .navbar-nav .nav-item .nav-link.active {
  color: #ff5000;
  transform: translateY(-3px);
}
.mobile-menu .navbar-nav .nav-item .nav-link:hover:after, .mobile-menu .navbar-nav .nav-item .nav-link.active:after {
  width: 60%;
}
.mobile-menu .navbar-nav .nav-item.current-menu-item .nav-link {
  color: #ff5000;
}
.mobile-menu .navbar-nav .nav-item.current-menu-item .nav-link:after {
  width: 60%;
}
.mobile-menu .glass-btn {
  padding: 0.8rem 1.5rem;
  max-width: 250px;
  margin: 1rem auto 0;
}
.mobile-menu .glass-btn:hover {
  transform: translateY(-5px);
}

@keyframes glass-btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 80, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 80, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 80, 0, 0);
  }
}
/* Footer Styles */
.site-footer {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  z-index: 10;
}
.site-footer .bubble-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.site-footer .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(71, 194, 255, 0.25), rgba(255, 80, 0, 0.12));
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
  animation: bubble-float 15s infinite ease-in-out;
}
.site-footer .footer-bubble-1 {
  width: 180px;
  height: 180px;
  top: -80px;
  right: 10%;
  opacity: 0.7;
  animation-delay: 0s;
  animation-duration: 18s;
}
.site-footer .footer-bubble-2 {
  width: 120px;
  height: 120px;
  bottom: 30px;
  left: 5%;
  opacity: 0.5;
  animation-delay: 3s;
  animation-duration: 15s;
}
.site-footer .footer-bubble-3 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: 25%;
  opacity: 0.4;
  animation-delay: 5s;
  animation-duration: 20s;
}
.site-footer .main-footer {
  position: relative;
  padding: 3.5rem 0 3.5rem;
  z-index: 2;
}
@media (min-width: 992px) {
  .site-footer .main-footer {
    padding: 5rem 0 5rem;
  }
}
.site-footer .footer-col-inner {
  height: 100%;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-footer .footer-col-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.site-footer .footer-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.site-footer .footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff5000, rgba(255, 80, 0, 0.5));
  border-radius: 3px;
}
@media (min-width: 992px) {
  .site-footer .footer-title {
    font-size: 1.5rem;
  }
}
.site-footer .footer-address {
  margin-bottom: 0;
  font-style: normal;
  color: #707070;
  line-height: 1.6;
}
.site-footer .footer-contact-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.site-footer .footer-contact-link:hover {
  color: #ff5000;
}
.site-footer .footer-contact-link i {
  color: #ff5000;
}
.site-footer .footer-text {
  color: #707070;
  line-height: 1.6;
}
.site-footer .footer-nav .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-nav .footer-menu li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-nav .footer-menu li a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 1rem;
}
.site-footer .footer-nav .footer-menu li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #ff5000;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.site-footer .footer-nav .footer-menu li a:hover {
  color: #ff5000;
  transform: translateX(5px);
}
.site-footer .footer-nav .footer-menu li a:hover:before {
  transform: translateY(-50%) scale(1.2);
}
.site-footer .social-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .site-footer .social-items {
    justify-content: flex-end;
    margin-top: 0;
  }
}
.site-footer .social-items .social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #ff5000;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.site-footer .social-items .social-item.glass-effect {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.site-footer .social-items .social-item:hover {
  transform: translateY(-3px);
  color: #fff;
  background-color: #ff5000;
  box-shadow: 0 6px 15px rgba(255, 80, 0, 0.2);
}
.site-footer .sub-footer {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}
.site-footer .sub-footer .meta-nav .meta-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer .sub-footer .meta-nav .meta-menu li {
  margin-bottom: 0.5rem;
}
.site-footer .sub-footer .meta-nav .meta-menu li a {
  color: #707070;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .sub-footer .meta-nav .meta-menu li a:hover {
  color: #ff5000;
}

@keyframes bubble-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}