/*!
 * 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);
}

.color-default {
  color: #e0e0e0 !important;
}
.color-default:hover {
  color: #e0e0e0;
  text-decoration: none;
}

.color-gold {
  color: #d6b884 !important;
}
.color-gold:hover {
  color: #d6b884;
  text-decoration: none;
}

.color-lighter-grey {
  color: #f8f8f8 !important;
}
.color-lighter-grey:hover {
  color: #f8f8f8;
  text-decoration: none;
}

.color-light-grey {
  color: #e6e6e6 !important;
}
.color-light-grey:hover {
  color: #e6e6e6;
  text-decoration: none;
}

.color-grey {
  color: #7e7e7e !important;
}
.color-grey:hover {
  color: #7e7e7e;
  text-decoration: none;
}

.color-white {
  color: #FFF !important;
}
.color-white:hover {
  color: #FFF;
  text-decoration: none;
}

.color-black {
  color: #000 !important;
}
.color-black:hover {
  color: #000;
  text-decoration: none;
}

.bg-default {
  background-color: #e0e0e0 !important;
}

.bg-gold {
  background-color: #d6b884 !important;
}

.bg-lighter-grey {
  background-color: #f8f8f8 !important;
}

.bg-light-grey {
  background-color: #e6e6e6 !important;
}

.bg-grey {
  background-color: #7e7e7e !important;
}

.bg-white {
  background-color: #FFF !important;
}

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

html {
  font-family: "Inter", sans-serif;
  font-size: 0.5208333333vw;
  scroll-behavior: smooth;
}
@media (max-width: 991px) {
  html {
    font-size: 1.0090817356vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 1.7361111111vw;
  }
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background-color: #0e0e0e;
  color: #e0e0e0;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 67.5rem;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 86rem;
  }
}
@media (min-width: 992px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 163.7rem;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 163.7rem;
  }
}
.break-out-right {
  padding-right: calc((100vw - 164.7rem + 60px) / 2) !important;
  margin-right: calc((100vw - 164.7rem + 30px) / 2 * -1) !important;
}
@media screen and (max-width: 991px) {
  .break-out-right {
    margin-right: 0 !important;
    width: inherit !important;
    padding-right: inherit !important;
  }
}

.break-out-right-no-p {
  padding-right: 0 !important;
  margin-right: calc((100vw - 164.7rem + 30px) / 2 * -1) !important;
}
@media screen and (max-width: 991px) {
  .break-out-right-no-p {
    margin-right: 0 !important;
    width: inherit !important;
    padding-right: inherit !important;
  }
}

.break-out-left {
  padding-left: calc((100vw - 164.7rem + 60px) / 2) !important;
  margin-left: calc((100vw - 164.7rem + 30px) / 2 * -1) !important;
  width: calc(100% + (100vw - 164.7rem + 30px) / 2) !important;
}
@media screen and (max-width: 991px) {
  .break-out-left {
    margin-left: 0 !important;
    width: inherit !important;
    padding-left: inherit !important;
  }
}

.break-out-left-no-p {
  padding-left: 0 !important;
  margin-left: calc((100vw - 164.7rem + 30px) / 2 * -1) !important;
  width: calc(100% + (100vw - 164.7rem + 30px) / 2) !important;
}
@media screen and (max-width: 991px) {
  .break-out-left-no-p {
    margin-left: 0 !important;
    width: inherit !important;
    padding-left: inherit !important;
  }
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.flex-grow {
  flex-grow: 1;
}

.mt-minus-3rem {
  margin-top: -12rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.mt-minus-3rem svg {
  transition: all 0.4s ease;
}
.mt-minus-3rem:hover {
  transition: all 0.4s ease;
}
.mt-minus-3rem:hover svg {
  margin-top: 2rem;
  transition: all 0.4s ease;
}

.size-9 {
  font-size: 0.9rem;
}

.size-12 {
  font-size: 1.2rem;
}

.size-14 {
  font-size: 1.4rem;
}

.size-16 {
  font-size: 1.6rem;
}

.size-17 {
  font-size: 1.7rem;
}

.size-18 {
  font-size: 1.8rem;
}

.size-19 {
  font-size: 1.9rem;
}

.size-20 {
  font-size: 2rem;
}

.size-21 {
  font-size: 2.1rem;
}

.size-24 {
  font-size: 2.4rem;
}

.size-25 {
  font-size: 2.5rem;
}

.size-26 {
  font-size: 2.6rem;
}

.size-27 {
  font-size: 2.7rem;
}

.size-30 {
  font-size: 3rem;
}

.size-32 {
  font-size: 3.2rem;
}

.size-34 {
  font-size: 3.4rem;
}

.size-38 {
  font-size: 3.8rem;
}

.size-39 {
  font-size: 3.9rem;
}

.size-40 {
  font-size: 4rem;
}

.size-42 {
  font-size: 4.2rem;
}

.size-45 {
  font-size: 4.5rem;
}

.size-50 {
  font-size: 5rem;
}

.size-55 {
  font-size: 5.5rem;
}

.size-60 {
  font-size: 6rem;
}

.size-67 {
  font-size: 6.7rem;
}

.size-70 {
  font-size: 7rem;
}

.size-80 {
  font-size: 8rem;
}

.size-86 {
  font-size: 8.6rem;
}

@media (min-width: 576px) {
  .size-sm-9 {
    font-size: 0.9rem;
  }
  .size-sm-12 {
    font-size: 1.2rem;
  }
  .size-sm-14 {
    font-size: 1.4rem;
  }
  .size-sm-16 {
    font-size: 1.6rem;
  }
  .size-sm-17 {
    font-size: 1.7rem;
  }
  .size-sm-18 {
    font-size: 1.8rem;
  }
  .size-sm-19 {
    font-size: 1.9rem;
  }
  .size-sm-20 {
    font-size: 2rem;
  }
  .size-sm-21 {
    font-size: 2.1rem;
  }
  .size-sm-24 {
    font-size: 2.4rem;
  }
  .size-sm-25 {
    font-size: 2.5rem;
  }
  .size-sm-26 {
    font-size: 2.6rem;
  }
  .size-sm-27 {
    font-size: 2.7rem;
  }
  .size-sm-30 {
    font-size: 3rem;
  }
  .size-sm-32 {
    font-size: 3.2rem;
  }
  .size-sm-34 {
    font-size: 3.4rem;
  }
  .size-sm-38 {
    font-size: 3.8rem;
  }
  .size-sm-39 {
    font-size: 3.9rem;
  }
  .size-sm-40 {
    font-size: 4rem;
  }
  .size-sm-42 {
    font-size: 4.2rem;
  }
  .size-sm-45 {
    font-size: 4.5rem;
  }
  .size-sm-50 {
    font-size: 5rem;
  }
  .size-sm-55 {
    font-size: 5.5rem;
  }
  .size-sm-60 {
    font-size: 6rem;
  }
  .size-sm-67 {
    font-size: 6.7rem;
  }
  .size-sm-70 {
    font-size: 7rem;
  }
  .size-sm-80 {
    font-size: 8rem;
  }
  .size-sm-86 {
    font-size: 8.6rem;
  }
}
@media (min-width: 768px) {
  .size-md-9 {
    font-size: 0.9rem;
  }
  .size-md-12 {
    font-size: 1.2rem;
  }
  .size-md-14 {
    font-size: 1.4rem;
  }
  .size-md-16 {
    font-size: 1.6rem;
  }
  .size-md-17 {
    font-size: 1.7rem;
  }
  .size-md-18 {
    font-size: 1.8rem;
  }
  .size-md-19 {
    font-size: 1.9rem;
  }
  .size-md-20 {
    font-size: 2rem;
  }
  .size-md-21 {
    font-size: 2.1rem;
  }
  .size-md-24 {
    font-size: 2.4rem;
  }
  .size-md-25 {
    font-size: 2.5rem;
  }
  .size-md-26 {
    font-size: 2.6rem;
  }
  .size-md-27 {
    font-size: 2.7rem;
  }
  .size-md-30 {
    font-size: 3rem;
  }
  .size-md-32 {
    font-size: 3.2rem;
  }
  .size-md-34 {
    font-size: 3.4rem;
  }
  .size-md-38 {
    font-size: 3.8rem;
  }
  .size-md-39 {
    font-size: 3.9rem;
  }
  .size-md-40 {
    font-size: 4rem;
  }
  .size-md-42 {
    font-size: 4.2rem;
  }
  .size-md-45 {
    font-size: 4.5rem;
  }
  .size-md-50 {
    font-size: 5rem;
  }
  .size-md-55 {
    font-size: 5.5rem;
  }
  .size-md-60 {
    font-size: 6rem;
  }
  .size-md-67 {
    font-size: 6.7rem;
  }
  .size-md-70 {
    font-size: 7rem;
  }
  .size-md-80 {
    font-size: 8rem;
  }
  .size-md-86 {
    font-size: 8.6rem;
  }
}
@media (min-width: 992px) {
  .size-lg-9 {
    font-size: 0.9rem;
  }
  .size-lg-12 {
    font-size: 1.2rem;
  }
  .size-lg-14 {
    font-size: 1.4rem;
  }
  .size-lg-16 {
    font-size: 1.6rem;
  }
  .size-lg-17 {
    font-size: 1.7rem;
  }
  .size-lg-18 {
    font-size: 1.8rem;
  }
  .size-lg-19 {
    font-size: 1.9rem;
  }
  .size-lg-20 {
    font-size: 2rem;
  }
  .size-lg-21 {
    font-size: 2.1rem;
  }
  .size-lg-24 {
    font-size: 2.4rem;
  }
  .size-lg-25 {
    font-size: 2.5rem;
  }
  .size-lg-26 {
    font-size: 2.6rem;
  }
  .size-lg-27 {
    font-size: 2.7rem;
  }
  .size-lg-30 {
    font-size: 3rem;
  }
  .size-lg-32 {
    font-size: 3.2rem;
  }
  .size-lg-34 {
    font-size: 3.4rem;
  }
  .size-lg-38 {
    font-size: 3.8rem;
  }
  .size-lg-39 {
    font-size: 3.9rem;
  }
  .size-lg-40 {
    font-size: 4rem;
  }
  .size-lg-42 {
    font-size: 4.2rem;
  }
  .size-lg-45 {
    font-size: 4.5rem;
  }
  .size-lg-50 {
    font-size: 5rem;
  }
  .size-lg-55 {
    font-size: 5.5rem;
  }
  .size-lg-60 {
    font-size: 6rem;
  }
  .size-lg-67 {
    font-size: 6.7rem;
  }
  .size-lg-70 {
    font-size: 7rem;
  }
  .size-lg-80 {
    font-size: 8rem;
  }
  .size-lg-86 {
    font-size: 8.6rem;
  }
}
@media (min-width: 1200px) {
  .size-xl-9 {
    font-size: 0.9rem;
  }
  .size-xl-12 {
    font-size: 1.2rem;
  }
  .size-xl-14 {
    font-size: 1.4rem;
  }
  .size-xl-16 {
    font-size: 1.6rem;
  }
  .size-xl-17 {
    font-size: 1.7rem;
  }
  .size-xl-18 {
    font-size: 1.8rem;
  }
  .size-xl-19 {
    font-size: 1.9rem;
  }
  .size-xl-20 {
    font-size: 2rem;
  }
  .size-xl-21 {
    font-size: 2.1rem;
  }
  .size-xl-24 {
    font-size: 2.4rem;
  }
  .size-xl-25 {
    font-size: 2.5rem;
  }
  .size-xl-26 {
    font-size: 2.6rem;
  }
  .size-xl-27 {
    font-size: 2.7rem;
  }
  .size-xl-30 {
    font-size: 3rem;
  }
  .size-xl-32 {
    font-size: 3.2rem;
  }
  .size-xl-34 {
    font-size: 3.4rem;
  }
  .size-xl-38 {
    font-size: 3.8rem;
  }
  .size-xl-39 {
    font-size: 3.9rem;
  }
  .size-xl-40 {
    font-size: 4rem;
  }
  .size-xl-42 {
    font-size: 4.2rem;
  }
  .size-xl-45 {
    font-size: 4.5rem;
  }
  .size-xl-50 {
    font-size: 5rem;
  }
  .size-xl-55 {
    font-size: 5.5rem;
  }
  .size-xl-60 {
    font-size: 6rem;
  }
  .size-xl-67 {
    font-size: 6.7rem;
  }
  .size-xl-70 {
    font-size: 7rem;
  }
  .size-xl-80 {
    font-size: 8rem;
  }
  .size-xl-86 {
    font-size: 8.6rem;
  }
}
.font-light {
  font-weight: 300;
}

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

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

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

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

.font-extra-bold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.font-italic {
  font-style: italic;
}

.mb-1rem {
  margin-bottom: 1rem;
}

.mb-2rem {
  margin-bottom: 2rem;
}

.mb-3rem {
  margin-bottom: 3rem;
}

.mb-4rem {
  margin-bottom: 4rem;
}

.mb-5rem {
  margin-bottom: 5rem;
}

.mb-6rem {
  margin-bottom: 6rem;
}

.mb-7rem {
  margin-bottom: 7rem;
}

.mb-8rem {
  margin-bottom: 8rem;
}

.mb-9rem {
  margin-bottom: 9rem;
}

.mb-10rem {
  margin-bottom: 10rem;
}

.mb-11rem {
  margin-bottom: 11rem;
}

.mb-12rem {
  margin-bottom: 12rem;
}

.mb-13rem {
  margin-bottom: 13rem;
}

.mb-14rem {
  margin-bottom: 14rem;
}

.mb-15rem {
  margin-bottom: 15rem;
}

.mb-16rem {
  margin-bottom: 16rem;
}

.mb-17rem {
  margin-bottom: 17rem;
}

.mb-18rem {
  margin-bottom: 18rem;
}

.mb-19rem {
  margin-bottom: 19rem;
}

.mb-20rem {
  margin-bottom: 20rem;
}

.mt-1rem {
  margin-top: 1rem;
}

.mt-2rem {
  margin-top: 2rem;
}

.mt-3rem {
  margin-top: 3rem;
}

.mt-4rem {
  margin-top: 4rem;
}

.mt-5rem {
  margin-top: 5rem;
}

.mt-6rem {
  margin-top: 6rem;
}

.mt-7rem {
  margin-top: 7rem;
}

.mt-8rem {
  margin-top: 8rem;
}

.mt-9rem {
  margin-top: 9rem;
}

.mt-10rem {
  margin-top: 10rem;
}

.mt-11rem {
  margin-top: 11rem;
}

.mt-12rem {
  margin-top: 12rem;
}

.mt-13rem {
  margin-top: 13rem;
}

.mt-14rem {
  margin-top: 14rem;
}

.mt-15rem {
  margin-top: 15rem;
}

.mt-16rem {
  margin-top: 16rem;
}

.mt-17rem {
  margin-top: 17rem;
}

.mt-18rem {
  margin-top: 18rem;
}

.mt-19rem {
  margin-top: 19rem;
}

.mt-20rem {
  margin-top: 20rem;
}

.ml-1rem {
  margin-left: 1rem;
}

.ml-2rem {
  margin-left: 2rem;
}

.ml-3rem {
  margin-left: 3rem;
}

.ml-4rem {
  margin-left: 4rem;
}

.ml-5rem {
  margin-left: 5rem;
}

.ml-6rem {
  margin-left: 6rem;
}

.ml-7rem {
  margin-left: 7rem;
}

.ml-8rem {
  margin-left: 8rem;
}

.ml-9rem {
  margin-left: 9rem;
}

.ml-10rem {
  margin-left: 10rem;
}

.ml-11rem {
  margin-left: 11rem;
}

.ml-12rem {
  margin-left: 12rem;
}

.ml-13rem {
  margin-left: 13rem;
}

.ml-14rem {
  margin-left: 14rem;
}

.ml-15rem {
  margin-left: 15rem;
}

.ml-16rem {
  margin-left: 16rem;
}

.ml-17rem {
  margin-left: 17rem;
}

.ml-18rem {
  margin-left: 18rem;
}

.ml-19rem {
  margin-left: 19rem;
}

.ml-20rem {
  margin-left: 20rem;
}

.mr-1rem {
  margin-right: 1rem;
}

.mr-2rem {
  margin-right: 2rem;
}

.mr-3rem {
  margin-right: 3rem;
}

.mr-4rem {
  margin-right: 4rem;
}

.mr-5rem {
  margin-right: 5rem;
}

.mr-6rem {
  margin-right: 6rem;
}

.mr-7rem {
  margin-right: 7rem;
}

.mr-8rem {
  margin-right: 8rem;
}

.mr-9rem {
  margin-right: 9rem;
}

.mr-10rem {
  margin-right: 10rem;
}

.mr-11rem {
  margin-right: 11rem;
}

.mr-12rem {
  margin-right: 12rem;
}

.mr-13rem {
  margin-right: 13rem;
}

.mr-14rem {
  margin-right: 14rem;
}

.mr-15rem {
  margin-right: 15rem;
}

.mr-16rem {
  margin-right: 16rem;
}

.mr-17rem {
  margin-right: 17rem;
}

.mr-18rem {
  margin-right: 18rem;
}

.mr-19rem {
  margin-right: 19rem;
}

.mr-20rem {
  margin-right: 20rem;
}

@media screen and (max-width: 991px) {
  .mb-mobile-0rem {
    margin-bottom: 0rem;
  }
  .mb-mobile-1rem {
    margin-bottom: 1rem;
  }
  .mb-mobile-2rem {
    margin-bottom: 2rem;
  }
  .mb-mobile-3rem {
    margin-bottom: 3rem;
  }
  .mb-mobile-4rem {
    margin-bottom: 4rem;
  }
  .mb-mobile-5rem {
    margin-bottom: 5rem;
  }
  .mb-mobile-6rem {
    margin-bottom: 6rem;
  }
  .mb-mobile-7rem {
    margin-bottom: 7rem;
  }
  .mb-mobile-8rem {
    margin-bottom: 8rem;
  }
  .mb-mobile-9rem {
    margin-bottom: 9rem;
  }
  .mb-mobile-10rem {
    margin-bottom: 10rem;
  }
  .mb-mobile-11rem {
    margin-bottom: 11rem;
  }
  .mb-mobile-12rem {
    margin-bottom: 12rem;
  }
  .mb-mobile-13rem {
    margin-bottom: 13rem;
  }
  .mb-mobile-14rem {
    margin-bottom: 14rem;
  }
  .mb-mobile-15rem {
    margin-bottom: 15rem;
  }
  .mb-mobile-16rem {
    margin-bottom: 16rem;
  }
  .mb-mobile-17rem {
    margin-bottom: 17rem;
  }
  .mb-mobile-18rem {
    margin-bottom: 18rem;
  }
  .mb-mobile-19rem {
    margin-bottom: 19rem;
  }
  .mb-mobile-20rem {
    margin-bottom: 20rem;
  }
  .mt-mobile-0rem {
    margin-top: 0rem;
  }
  .mt-mobile-1rem {
    margin-top: 1rem;
  }
  .mt-mobile-2rem {
    margin-top: 2rem;
  }
  .mt-mobile-3rem {
    margin-top: 3rem;
  }
  .mt-mobile-4rem {
    margin-top: 4rem;
  }
  .mt-mobile-5rem {
    margin-top: 5rem;
  }
  .mt-mobile-6rem {
    margin-top: 6rem;
  }
  .mt-mobile-7rem {
    margin-top: 7rem;
  }
  .mt-mobile-8rem {
    margin-top: 8rem;
  }
  .mt-mobile-9rem {
    margin-top: 9rem;
  }
  .mt-mobile-10rem {
    margin-top: 10rem;
  }
  .mt-mobile-11rem {
    margin-top: 11rem;
  }
  .mt-mobile-12rem {
    margin-top: 12rem;
  }
  .mt-mobile-13rem {
    margin-top: 13rem;
  }
  .mt-mobile-14rem {
    margin-top: 14rem;
  }
  .mt-mobile-15rem {
    margin-top: 15rem;
  }
  .mt-mobile-16rem {
    margin-top: 16rem;
  }
  .mt-mobile-17rem {
    margin-top: 17rem;
  }
  .mt-mobile-18rem {
    margin-top: 18rem;
  }
  .mt-mobile-19rem {
    margin-top: 19rem;
  }
  .mt-mobile-20rem {
    margin-top: 20rem;
  }
  .ml-mobile-0rem {
    margin-left: 0rem;
  }
  .ml-mobile-1rem {
    margin-left: 1rem;
  }
  .ml-mobile-2rem {
    margin-left: 2rem;
  }
  .ml-mobile-3rem {
    margin-left: 3rem;
  }
  .ml-mobile-4rem {
    margin-left: 4rem;
  }
  .ml-mobile-5rem {
    margin-left: 5rem;
  }
  .ml-mobile-6rem {
    margin-left: 6rem;
  }
  .ml-mobile-7rem {
    margin-left: 7rem;
  }
  .ml-mobile-8rem {
    margin-left: 8rem;
  }
  .ml-mobile-9rem {
    margin-left: 9rem;
  }
  .ml-mobile-10rem {
    margin-left: 10rem;
  }
  .ml-mobile-11rem {
    margin-left: 11rem;
  }
  .ml-mobile-12rem {
    margin-left: 12rem;
  }
  .ml-mobile-13rem {
    margin-left: 13rem;
  }
  .ml-mobile-14rem {
    margin-left: 14rem;
  }
  .ml-mobile-15rem {
    margin-left: 15rem;
  }
  .ml-mobile-16rem {
    margin-left: 16rem;
  }
  .ml-mobile-17rem {
    margin-left: 17rem;
  }
  .ml-mobile-18rem {
    margin-left: 18rem;
  }
  .ml-mobile-19rem {
    margin-left: 19rem;
  }
  .ml-mobile-20rem {
    margin-left: 20rem;
  }
  .mr-mobile-0rem {
    margin-right: 0rem;
  }
  .mr-mobile-1rem {
    margin-right: 1rem;
  }
  .mr-mobile-2rem {
    margin-right: 2rem;
  }
  .mr-mobile-3rem {
    margin-right: 3rem;
  }
  .mr-mobile-4rem {
    margin-right: 4rem;
  }
  .mr-mobile-5rem {
    margin-right: 5rem;
  }
  .mr-mobile-6rem {
    margin-right: 6rem;
  }
  .mr-mobile-7rem {
    margin-right: 7rem;
  }
  .mr-mobile-8rem {
    margin-right: 8rem;
  }
  .mr-mobile-9rem {
    margin-right: 9rem;
  }
  .mr-mobile-10rem {
    margin-right: 10rem;
  }
  .mr-mobile-11rem {
    margin-right: 11rem;
  }
  .mr-mobile-12rem {
    margin-right: 12rem;
  }
  .mr-mobile-13rem {
    margin-right: 13rem;
  }
  .mr-mobile-14rem {
    margin-right: 14rem;
  }
  .mr-mobile-15rem {
    margin-right: 15rem;
  }
  .mr-mobile-16rem {
    margin-right: 16rem;
  }
  .mr-mobile-17rem {
    margin-right: 17rem;
  }
  .mr-mobile-18rem {
    margin-right: 18rem;
  }
  .mr-mobile-19rem {
    margin-right: 19rem;
  }
  .mr-mobile-20rem {
    margin-right: 20rem;
  }
}
.btn {
  padding: 1rem 4rem;
  background-color: #d6b884;
  color: #2b2b2b;
  border: 2px solid #d6b884;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  outline: none;
}
.btn:hover, .btn:focus {
  background-color: #2b2b2b;
  color: #d6b884;
  outline: none;
  box-shadow: none;
}
.btn.active {
  background-color: #FFF;
  color: #d6b884;
}
.btn--border {
  background-color: #FFF;
  color: #2b2b2b;
  border: 2px solid #d6b884;
}
.btn--border:hover, .btn--border:focus {
  background-color: #2b2b2b;
  color: #FFF;
  outline: none;
  box-shadow: none;
}
.btn--border.active {
  background-color: #2b2b2b;
  color: #FFF;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  background-color: #FFF;
}

.nav {
  padding: 2rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999;
  background-color: #0e0e0e;
  transition: all 0.4s ease;
}
.nav--scrolled {
  padding: 1rem 0;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(63, 63, 63, 0.3);
}
.nav--scrolled .nav__logo {
  height: 9rem;
  width: 23rem;
  transition: all 0.4s ease;
  margin: 1rem 0;
}
@media screen and (max-width: 991px) {
  .nav--scrolled {
    padding: 0;
  }
}
.nav__logo {
  width: 30rem;
  height: 10rem;
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
}
.nav__menu .nav__logo {
  width: 20rem;
  height: 15rem;
}
@media screen and (max-width: 991px) {
  .nav__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    padding: 5rem 0;
    text-align: center;
  }
}
.nav__menu__item {
  font-size: 1.7rem;
  font-weight: 500;
  color: #FFF;
  text-decoration: none;
  position: relative;
  margin-right: 8rem;
  padding-bottom: 1rem;
}
.nav__menu__item:last-child {
  margin-right: 0;
}
.nav__menu__item:hover, .nav__menu__item.active {
  text-decoration: none;
  color: #d6b884;
}
.nav__menu__item:hover:after, .nav__menu__item.active:after {
  width: 40%;
  transition: width 0.4s ease;
}
.nav__menu__item:after {
  width: 0%;
  height: 1px;
  background-color: #d6b884;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.4s ease;
}
@media screen and (max-width: 991px) {
  .nav__menu__item {
    display: block;
    margin-bottom: 3rem;
    margin-right: 0;
    font-size: 3.2rem;
  }
}

.header {
  padding-top: 20rem;
  margin-bottom: 7rem;
}
.header .buttons-black a {
  color: black;
}
@media screen and (max-width: 991px) {
  .header {
    padding-top: 15rem;
  }
}
.header__slider {
  z-index: 3;
  position: relative;
}
.header__slider .slick-dots {
  position: absolute;
  left: -24rem;
  bottom: -1rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header__slider .slick-dots {
    right: 3rem;
    left: auto;
    top: auto;
    bottom: -17rem;
  }
}
.header__slider .slick-dots li {
  list-style-type: none;
}
.header__slider .slick-dots li.slick-active button {
  background-color: #2b2b2b;
}
.header__slider .slick-dots li button {
  outline: none;
  border: none;
  background-color: rgba(43, 43, 43, 0.5);
  font-size: 0;
  width: 5rem;
  height: 0.7rem;
  margin-right: 1rem;
}
.header__slider:after {
  content: "";
  display: block;
  position: absolute;
  top: 78%;
  left: 0;
  width: 0;
  height: 0;
  border-top: 4rem solid transparent;
  border-bottom: 4rem solid transparent;
  border-left: 4rem solid #d6b884;
}
@media screen and (max-width: 991px) {
  .header__slider:after {
    left: 5rem;
    top: auto;
    bottom: -2rem;
    transform: rotate(-90deg);
  }
}
.header__slider__item {
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  height: 61rem;
  transition: background-size 0.8s ease;
}
.header__slider__item:hover {
  background-size: 110% auto;
  transition: background-size 0.8s ease;
}
@media screen and (max-width: 991px) {
  .header__slider__item {
    width: 100% !important;
    height: 40rem;
    background-size: 100% auto;
  }
  .header__slider__item:hover {
    background-size: 110% auto;
    transition: background-size 0.8s ease;
  }
}
@media screen and (max-width: 575px) {
  .header__slider__item {
    height: 30rem;
  }
}
.header__slider-box {
  margin-top: -16rem;
  background-color: #d6b884;
  padding: 5.8rem 3rem;
  position: relative;
  text-align: right;
  min-height: 25rem;
  font-size: 2.4rem;
  color: #2b2b2b;
}
@media screen and (max-width: 991px) {
  .header__slider-box {
    margin-top: 0;
  }
}
.header__slider-box .slick-dots {
  position: absolute;
  right: 0rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header__slider-box .slick-dots {
    right: 3rem;
    left: auto;
    top: auto;
  }
}
.header__slider-box .slick-dots li {
  list-style-type: none;
}
.header__slider-box .slick-dots li.slick-active button {
  background-color: #2b2b2b;
}
.header__slider-box .slick-dots li button {
  outline: none;
  border: none;
  background-color: rgba(43, 43, 43, 0.5);
  font-size: 0;
  width: 5rem;
  height: 0.7rem;
  margin-right: 1rem;
}
.header--subpage {
  height: 70rem;
  margin-top: 10rem;
  padding-top: 0;
}
@media screen and (max-width: 991px) {
  .header--subpage {
    height: 40rem;
  }
}
@media screen and (max-width: 575px) {
  .header--subpage {
    height: 35rem;
  }
}
.header--subpage--video {
  height: 69rem;
}
@media screen and (max-width: 991px) {
  .header--subpage--video {
    height: 37.8rem;
  }
}
@media screen and (max-width: 575px) {
  .header--subpage--video {
    height: 21.7rem;
  }
}
.header--subpage__bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.header--subpage__h1 {
  padding: 3rem 8rem 4rem 3rem;
  margin-top: -10rem;
}
@media screen and (max-width: 991px) {
  .header--subpage__h1 {
    margin-top: 0;
    padding: 3rem 2rem;
  }
}

.investitions__block {
  padding: 8rem 0;
}
.investitions__block--left {
  margin-top: -30rem;
}
@media screen and (max-width: 991px) {
  .investitions__block {
    padding: 3rem 2rem !important;
  }
}
.investitions__img {
  width: 100%;
  height: 55rem;
  background-size: 130% auto;
  background-position: center center;
  margin-top: -52rem;
  z-index: 1;
  position: relative;
  transition: background-size 0.8s ease;
}
.investitions__img:hover {
  background-size: 140% auto;
  transition: background-size 0.8s ease;
}
.investitions__img--right {
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .investitions__img {
    margin-top: 0;
    height: 40rem;
  }
}
@media screen and (max-width: 575px) {
  .investitions__img {
    height: 30rem;
  }
}

.mt-minus-52rem {
  margin-top: -52rem;
}
@media screen and (max-width: 991px) {
  .mt-minus-52rem {
    margin-top: 0;
  }
}

.localization {
  margin-bottom: 10rem;
  padding-top: 6rem;
  background-color: #d6b884;
  padding-bottom: 5rem;
  color: #2b2b2b;
}
.localization__map {
  margin-bottom: -10rem;
}
.localization__map iframe {
  height: 50rem !important;
}
@media screen and (max-width: 991px) {
  .localization__map iframe {
    margin-top: 0;
    height: 40rem !important;
  }
}

.footer {
  background-image: url(../img/marina.svg);
  background-size: 53% 87%;
  background-position: 120rem 9rem;
  background-repeat: no-repeat;
  background-blend-mode: darken;
}
@media (max-width: 991px) {
  .footer {
    background-size: 114% 155%;
  }
}

.jg_logo {
  width: 2rem;
  height: 2rem;
  background-image: url(../img/jg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}

.subpage__content {
  margin-top: 3rem;
  text-align: justify;
}
.subpage__content p {
  margin-bottom: 5rem;
}
.subpage__slider .slick-dots {
  position: absolute;
  left: 3rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  padding-left: 0;
}
.subpage__slider .slick-dots li {
  list-style-type: none;
}
.subpage__slider .slick-dots li.slick-active button {
  background-color: #2b2b2b;
  opacity: 1;
}
.subpage__slider .slick-dots li button {
  outline: none;
  border: none;
  background-color: #2b2b2b;
  opacity: 0.4;
  font-size: 0;
  width: 5rem;
  height: 0.7rem;
  margin-right: 1rem;
}
.subpage__slider__item {
  position: relative;
  height: 50rem;
  background-size: 110%;
  background-position: center center;
  transition: background-size 0.8s ease;
}
.subpage__slider__item:hover {
  background-size: 115%;
  transition: background-size 0.8s ease;
}
@media screen and (max-width: 991px) {
  .subpage__slider__item {
    height: 40rem;
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .subpage__slider__item {
    height: 30rem;
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 575px) {
  .subpage__slider__item {
    height: 25rem;
    padding: 3rem 2rem;
  }
}

.cls-1, .cls-1 > * {
  fill: #e2b350;
  /* stroke-width:0.5;
  stroke:rgb(0,0,0); */
}

.booked {
  fill: #FFF !important;
}

.booked:hover {
  fill: #FFF !important;
}

.sold {
  fill: #525252 !important;
}

.off {
  fill: #e9eae1 !important;
  stroke: #e9eae1 !important;
  pointer-events: none;
}

path {
  z-index: 99999;
}

svg .cls-1:hover {
  cursor: pointer;
}

svg .cls-1.active {
  stroke: #646464;
  stroke-width: 2px;
  fill: transparent;
}

svg .cls-1:hover > * {
  cursor: pointer;
}

svg .cls-1.active > * {
  stroke: #646464;
  stroke-width: 2px;
  fill: transparent;
}

.flat_dim_1 {
  fill: #e2b350;
  background-color: #e2b350;
}

.flat_dim_2 {
  fill: #e2b350;
  background-color: #e2b350;
}

.flat_dim_3 {
  fill: #e2b350;
  background-color: #e2b350;
}

.flat_dim_4 {
  fill: #e2b350;
  background-color: #e2b350;
}

.flat_not_active {
  fill: #e2b350;
  background-color: #e2b350;
}

.flat_not_active:hover,
.flat_not_active:focus {
  fill: #3f3f3f !important;
  background-color: #3f3f3f !important;
  cursor: default !important;
}

.cls-2,
.cls-3,
.cls-4 {
  stroke: #acacac;
  fill: #3f3f3f;
  stroke-miterlimit: 10;
}

.cls-3 {
  fill: none;
}

.cls-4 {
  fill: #c3c3c3;
}

.cls-5 {
  fill: #fff;
}

.js-garage, .js-outdoor-garage {
  cursor: pointer;
}

.legenda {
  margin: 6rem 0 0 0;
}

.legenda .legenda-cont {
  display: inline-block;
  text-align: left;
}

.legenda .legenda-cont .wolne .flat_dim_1,
.legenda .legenda-cont .wolne .flat_dim_2,
.legenda .legenda-cont .wolne .flat_dim_3,
.legenda .legenda-cont .wolne .flat_dim_4 {
  font-size: 2.4rem;
  text-align: left;
  display: inline-block;
  width: 5rem;
  height: 3rem;
  margin: 1rem 1rem;
  vertical-align: middle;
}

.legenda div span {
  font-size: 2.4rem;
  display: inline-block;
  vertical-align: middle;
}

.zajete,
.sprzedane,
.wybrane {
  display: inline-block;
  width: 5rem;
  height: 3rem;
  margin: 1rem;
  vertical-align: middle;
}

.wolne {
  display: block;
}

.zajete {
  background-color: #FFF;
}

.sprzedane {
  background-color: #525252;
}

.wybrane {
  background-color: #ffad00;
  border: 2px solid #646464;
}

.flat_data, .garage_data, .outdoor_garage_data {
  width: 32rem;
  border: 1px solid #c3c3c3;
  padding: 2rem 2rem;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 991px) {
  .flat_data, .garage_data, .outdoor_garage_data {
    bottom: auto;
    left: auto;
    transform: none;
    position: relative;
    margin: 0 auto;
    margin-top: 5rem;
    background-color: #0e0e0e;
  }
}
@media screen and (max-width: 991px) {
  .flat_data--serock-b, .garage_data--serock-b, .outdoor_garage_data--serock-b {
    top: 44%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }
}

.garage_data, .outdoor_garage_data {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  bottom: auto;
  margin: 0 auto;
}

.flat_card {
  padding: 2rem 0;
}

.js-floor {
  width: 80%;
}
@media screen and (max-width: 991px) {
  .js-floor {
    width: 22rem;
    margin-right: 2rem;
  }
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-box {
  border: 2px solid #d6b884;
  padding: 1rem;
  border-radius: 3rem;
  display: none;
  position: absolute;
  background-color: #FFF;
  font-size: 1.6rem;
  color: #000;
}

@media (max-width: 991px) {
  .side_scroller {
    overflow-x: scroll;
    width: 100%;
    height: 100%;
  }
  .side_scroller svg {
    width: 300%;
  }
}

.transform-right-100 {
  transform: translate(200%);
  transition: transform 0.8s ease;
  z-index: 2;
  position: relative;
}

.transform-left-100 {
  transform: translate(-200%);
  transition: transform 0.8s ease;
}

.transform-right-0 {
  transform: translate(0);
  transition: transform 0.8s ease;
  z-index: 2;
  position: relative;
}

.transform-left-0 {
  transform: translate(0);
  transition: transform 0.8s ease;
}

.opacity-0 {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.opacity-1 {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.investition__section {
  padding: 3rem 3rem 10rem 3rem;
  background-color: #d6b884;
  color: #2b2b2b;
  text-align: justify;
}
.investition__building {
  padding: 2rem 2rem 2rem 2rem;
  margin-left: 5rem;
  margin-right: -5rem;
  margin-top: -10rem;
  z-index: 3;
  position: relative;
}
@media (max-width: 991px) {
  .investition__building {
    margin-left: 0;
    margin-right: 0;
  }
}
.investition__page {
  margin-bottom: 10rem;
  margin-top: 20rem;
}
.investition__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
  background-color: #FFF;
  color: #2b2b2b;
}
@media (max-width: 991px) {
  .investition__card {
    margin-bottom: 3rem;
    display: block;
    height: auto;
  }
}
.investition__card__title {
  font-size: 3.8rem;
  color: #d6b884;
  margin-bottom: 1rem;
  font-weight: 900;
}
.investition__card__img {
  width: 100%;
  height: 40rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .investition__card__img {
    height: 30rem;
  }
}
.investition__card__content {
  padding: 2rem 3rem 0rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #2b2b2b;
}
.investition__card__badge {
  position: absolute;
  top: -7.5rem;
  font-size: 1.6rem;
  line-height: 4rem;
  left: -7.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background-color: #000;
  border-radius: 100%;
  width: 15rem;
  height: 15rem;
}
.investition__card__badge span {
  width: 100%;
  display: block;
  font-size: 7rem;
}

svg .cls-1.active {
  fill: #ffad00;
}

.floors_container {
  padding: 5rem;
  background-color: #d6b884;
  min-height: 30rem;
}
.floors_container__flex {
  display: flex;
  align-items: center;
}
.floors_container__flex .svg_map, .floors_container__flex .investition_floors_b {
  width: 100%;
  flex-shrink: 1;
}
.floors_container__road {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.floors_container__road__text {
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  font-size: 2.4rem;
  color: #000;
  height: 35rem;
}
@media (max-width: 991.98px) {
  .floors_container__road__text {
    font-size: 1rem;
    height: 20rem;
  }
}
.floors_container__road--right .floors_container__road__text {
  writing-mode: vertical-lr;
  text-orientation: mixed;
}
.floors_container__road--bottom {
  flex-direction: column;
  margin-top: -3rem;
}
@media (max-width: 991.98px) {
  .floors_container__road--bottom {
    margin-top: -3rem;
  }
}
.floors_container__road--bottom .floors_container__road__text {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  border: none;
  height: auto;
  width: 90%;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.floors_container__road__svg {
  width: 5rem;
  height: auto;
}
@media (max-width: 991.98px) {
  .floors_container__road__svg {
    width: 2rem;
  }
}
@media (max-width: 991px) {
  .floors_container {
    padding: 2rem;
    margin-bottom: 40rem;
  }
}
.floors_container .p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2b2b2b;
}

.icons {
  margin-bottom: 15rem;
}
.icons__h2 {
  font-size: 5rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 3rem;
}
.icons__h2.left {
  text-align: left;
}
@media (max-width: 991px) {
  .icons__h2 {
    font-size: 7rem;
  }
}
.icons__slider {
  margin-left: 5rem;
}
@media (max-width: 991px) {
  .icons__slider {
    margin-top: 8rem;
    margin-left: 0;
  }
}
.icons__slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  list-style-type: none;
  padding: 0;
  gap: 2rem;
  margin-top: 5rem;
}
.icons__slider .slick-dots li {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: #d6b884;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .icons__slider .slick-dots li {
    width: 5rem;
    height: 5rem;
    font-size: 2.4rem;
  }
}
.icons__slider .slick-dots li.slick-active {
  background-color: white;
}
.icons__slider .slick-dots li button {
  border: none;
  background: none;
  outline: none;
}
.icons__element {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}
.icons__element__icon {
  width: 5rem;
  height: auto;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .icons__element__icon {
    width: 8rem;
  }
}
.icons__element__text {
  font-size: 1.8rem;
  color: #e0e0e0;
}
@media (max-width: 991px) {
  .icons__element__text {
    font-size: 2.6rem;
  }
}

video {
  width: 90%;
  aspect-ratio: 16/9;
  position: relative;
}
@media (max-width: 991.98px) {
  video {
    width: 100%;
  }
}

.video__container {
  position: relative;
}
.video__container:before {
  content: "";
  width: 80%;
  height: 80%;
  background-color: #d6b884;
  position: absolute;
  bottom: -4rem;
  left: -4rem;
}

.visu__image {
  width: 100%;
  height: 60rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .visu__image {
    height: 40rem;
  }
}
.visu__container {
  position: relative;
}
.visu__container:before {
  content: "";
  width: 80%;
  height: 60%;
  background-color: #d6b884;
  position: absolute;
  bottom: -6rem;
  left: -4rem;
}
@media (max-width: 991.98px) {
  .visu__container:before {
    width: 120%;
  }
}
.visu__container .slick-dots {
  position: absolute;
  left: 0rem;
  bottom: -4rem;
  display: flex;
  align-items: center;
  padding: 0;
}
.visu__container .slick-dots li {
  list-style-type: none;
}
.visu__container .slick-dots li.slick-active button {
  background-color: #2b2b2b;
}
.visu__container .slick-dots li button {
  outline: none;
  border: none;
  background-color: rgba(43, 43, 43, 0.5);
  font-size: 0;
  width: 5rem;
  height: 0.7rem;
  margin-right: 1rem;
}

.footer__address {
  display: flex;
  gap: 2rem;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.footer__address:before {
  content: "";
  display: block;
  background-image: url(../img/marker.svg);
  width: 3rem;
  height: 3rem;
  background-size: contain;
  margin-top: -0.5rem;
  background-repeat: no-repeat;
}
.footer__phone {
  display: flex;
  gap: 2rem;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.footer__phone:before {
  content: "";
  display: block;
  background-image: url(../img/phone.svg);
  width: 2.8rem;
  height: 3rem;
  background-size: contain;
  margin-top: -0.5rem;
  background-repeat: no-repeat;
}
.footer img {
  width: 20rem;
  height: auto;
  margin-bottom: 1rem;
}
.footer__mail {
  display: flex;
  gap: 2rem;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.footer__mail:before {
  content: "";
  display: block;
  background-image: url(../img/mail.svg);
  width: 3rem;
  height: 3rem;
  background-size: contain;
  margin-top: -0.5rem;
  background-repeat: no-repeat;
}
.footer__wyswig p {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: #e0e0e0 !important;
}
.footer__wyswig a {
  color: #e0e0e0 !important;
}
.footer__wyswig h3 {
  font-size: 2.6rem;
  margin-bottom: 3rem;
  font-weight: 600;
  color: #e0e0e0 !important;
}
.footer__wyswig h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #e0e0e0 !important;
}

.garages__container {
  margin-top: 15rem;
}