/* Assets
   ========================================================================== */
/* Fonts
   ========================================================================== */
/* @import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');
/* Functions
   ========================================================================== */
/*@function rem($pxval) {
    @if not unitless($pxval) {
        $pxval: strip-units($pxval);
    }

    @return math.div($pxval, $base-font-size) * 1rem;
}*/
/* Mixins
   ========================================================================== */
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, html {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  color: #1A1919;
}

a {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition-timing-function: cubic-bezier(0.48, 0.07, 0.37, 0.99);
  text-decoration: none;
}

/* Helpers
   ========================================================================== */
.grid {
  display: grid;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-flow-col-dense {
  grid-auto-flow: column dense;
}

.default-shadow {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4) !important;
}

@media (min-width: 992px) {
  .column-1 {
    column-count: 1;
  }
}

@media (min-width: 992px) {
  .column-2 {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .column-3 {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .column-4 {
    column-count: 4;
  }
}

@media (min-width: 992px) {
  .column-5 {
    column-count: 5;
  }
}

@media (min-width: 992px) {
  .column-6 {
    column-count: 6;
  }
}

@media (min-width: 992px) {
  .column-7 {
    column-count: 7;
  }
}

@media (min-width: 992px) {
  .column-8 {
    column-count: 8;
  }
}

@media (min-width: 992px) {
  .column-9 {
    column-count: 9;
  }
}

@media (min-width: 992px) {
  .column-10 {
    column-count: 10;
  }
}

@media (min-width: 992px) {
  .column-11 {
    column-count: 11;
  }
}

@media (min-width: 992px) {
  .column-12 {
    column-count: 12;
  }
}

.cl-gray-50 {
  color: #F8F8F8;
}

.cl-gray-100 {
  color: #EEEEEE;
}

.cl-gray-200 {
  color: #D8D8D8;
}

.cl-gray-300 {
  color: #B5B5B5;
}

.cl-gray-400 {
  color: #8F8F8F;
}

.cl-gray-500 {
  color: #6B6B6B;
}

.cl-gray-600 {
  color: #474747;
}

.cl-gray-700 {
  color: #333333;
}

.cl-gray-800 {
  color: #1E1E1E;
}

.cl-gray-900 {
  color: #0D0D0D;
}

.cl-dark {
  color: #000000 !important;
}

.cl-bright {
  color: #ffffff !important;
}

.cl-primary {
  color: #1A1919 !important;
}

.cl-secondary {
  color: #777777 !important;
}

.cl-third {
  color: #0413F5 !important;
}

.cl-danger {
  color: #F8466F !important;
}

.cl-success {
  color: #00D66B !important;
}

.cl-warning {
  color: #ffa500 !important;
}

.cl-info {
  color: #FFCE00 !important;
}

.cl-link {
  color: #A7A7A7 !important;
}

.cl-invalid {
  color: #dc3545 !important;
}

.bg-gray-50 {
  background-color: #F8F8F8;
}

.bg-gray-100 {
  background-color: #EEEEEE;
}

.bg-gray-200 {
  background-color: #D8D8D8;
}

.bg-gray-300 {
  background-color: #B5B5B5;
}

.bg-gray-400 {
  background-color: #8F8F8F;
}

.bg-gray-500 {
  background-color: #6B6B6B;
}

.bg-gray-600 {
  background-color: #474747;
}

.bg-gray-700 {
  background-color: #333333;
}

.bg-gray-800 {
  background-color: #1E1E1E;
}

.bg-gray-900 {
  background-color: #0D0D0D;
}

.bg-dark {
  background: #000000 !important;
}

.bg-bright {
  background: #ffffff !important;
}

.bg-primary {
  background: #1A1919 !important;
}

.bg-secondary {
  background: #777777 !important;
}

.bg-third {
  background: #0413F5 !important;
}

.bg-danger {
  background: #F8466F !important;
}

.bg-success {
  background: #00D66B !important;
}

.bg-warning {
  background: #ffa500 !important;
}

.bg-info {
  background: #FFCE00 !important;
}

.bg-link {
  background: #A7A7A7 !important;
}

.bg-invalid {
  background: #dc3545 !important;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.h-90 {
  height: 90% !important;
}

.w-90 {
  width: 90% !important;
}

.h-80 {
  height: 80% !important;
}

.w-80 {
  width: 80% !important;
}

.h-70 {
  height: 70% !important;
}

.w-70 {
  width: 70% !important;
}

.h-60 {
  height: 60% !important;
}

.w-60 {
  width: 60% !important;
}

.h-50 {
  height: 50% !important;
}

.w-50 {
  width: 50% !important;
}

.h-40 {
  height: 40% !important;
}

.w-40 {
  width: 40% !important;
}

.h-30 {
  height: 30% !important;
}

.w-30 {
  width: 30% !important;
}

.h-20 {
  height: 20% !important;
}

.w-20 {
  width: 20% !important;
}

.h-10 {
  height: 10% !important;
}

.w-10 {
  width: 10% !important;
}

.w--100 {
  width: 100px !important;
}

.w--90 {
  width: 90px !important;
}

.w--80 {
  width: 80px !important;
}

.w--70 {
  width: 70px !important;
}

.w--60 {
  width: 60px !important;
}

.w--50 {
  width: 50px !important;
}

.w--40 {
  width: 40px !important;
}

.w--30 {
  width: 30px !important;
}

.w--20 {
  width: 20px !important;
}

.w--10 {
  width: 10px !important;
}

.zindex-1000 {
  z-index: 1000 !important;
}

.zindex-900 {
  z-index: 900 !important;
}

.zindex-800 {
  z-index: 800 !important;
}

.zindex-700 {
  z-index: 700 !important;
}

.zindex-600 {
  z-index: 600 !important;
}

.zindex-500 {
  z-index: 500 !important;
}

.zindex-400 {
  z-index: 400 !important;
}

.zindex-300 {
  z-index: 300 !important;
}

.zindex-200 {
  z-index: 200 !important;
}

.zindex-100 {
  z-index: 100 !important;
}

.link-underline {
  text-decoration: underline !important;
}

.list-none {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

.h-min-auto {
  min-height: auto !important;
}

.h-max-auto {
  max-height: auto !important;
}

.w-md-auto {
  width: 100%;
}
@media (min-width: 992px) {
  .w-md-auto {
    width: auto;
  }
}

/* Typography
   ========================================================================== */
*[class*=display-] {
  font-family: "Poppins", sans-serif;
}

*[class*=headline-] {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #1A1919;
}

.headline-header {
  width: 100%;
}

.overline {
  font-size: 0.875rem;
  font-weight: 800;
}
@media (min-width: 576px) {
  .overline {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .overline {
    font-size: 1.4375rem;
  }
}

.headline-1 {
  font-size: 2rem;
}
@media (min-width: 576px) {
  .headline-1 {
    font-size: 9vw;
  }
}
@media (min-width: 768px) {
  .headline-1 {
    font-size: 4rem;
  }
}

.headline-2 {
  font-size: 1.5625rem;
}
@media (min-width: 576px) {
  .headline-2 {
    font-size: 7.5vw;
  }
}
@media (min-width: 768px) {
  .headline-2 {
    font-size: 3.125rem;
  }
}

.headline-3 {
  font-size: 1.25rem;
}
@media (min-width: 576px) {
  .headline-3 {
    font-size: 6vw;
  }
}
@media (min-width: 768px) {
  .headline-3 {
    font-size: 2.5rem;
  }
}

.headline-4 {
  font-size: 0.9375rem;
}
@media (min-width: 576px) {
  .headline-4 {
    font-size: 4.5vw;
  }
}
@media (min-width: 768px) {
  .headline-4 {
    font-size: 1.875rem;
  }
}

.headline-5 {
  font-size: 0.625rem;
}
@media (min-width: 576px) {
  .headline-5 {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .headline-5 {
    font-size: 1.25rem;
  }
}

.subtitle-1 {
  font-size: 0.875rem;
  font-weight: 400;
}
@media (min-width: 576px) {
  .subtitle-1 {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .subtitle-1 {
    font-size: 1.4375rem;
  }
}

.subtitle-2 {
  font-size: 0.875rem;
  font-weight: 400;
}
@media (min-width: 576px) {
  .subtitle-2 {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .subtitle-2 {
    font-size: 1.1875rem;
  }
}

p,
.p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (min-width: 576px) {
  p,
.p {
    font-size: 1.1875rem;
  }
}

.fs-10 {
  font-size: 0.625rem !important;
}

.fs-11 {
  font-size: 0.6875rem !important;
}

.fs-12 {
  font-size: 0.75rem !important;
}

.fs-13 {
  font-size: 0.8125rem !important;
}

.fs-14 {
  font-size: 0.875rem !important;
}

.fs-15 {
  font-size: 0.9375rem !important;
}

.fs-16 {
  font-size: 1rem !important;
}

.fs-17 {
  font-size: 1.0625rem !important;
}

.fs-18 {
  font-size: 1.125rem !important;
}

.fs-19 {
  font-size: 1.1875rem !important;
}

.fs-20 {
  font-size: 1.25rem !important;
}

.fs-21 {
  font-size: 1.3125rem !important;
}

.fs-22 {
  font-size: 1.375rem !important;
}

.fs-23 {
  font-size: 1.4375rem !important;
}

.fs-24 {
  font-size: 1.5rem !important;
}

.fs-25 {
  font-size: 1.5625rem !important;
}

.fs-26 {
  font-size: 1.625rem !important;
}

.fs-27 {
  font-size: 1.6875rem !important;
}

.fs-28 {
  font-size: 1.75rem !important;
}

.fs-29 {
  font-size: 1.8125rem !important;
}

.fs-30 {
  font-size: 1.875rem !important;
}

.fs-31 {
  font-size: 1.9375rem !important;
}

.fs-32 {
  font-size: 2rem !important;
}

.fs-33 {
  font-size: 2.0625rem !important;
}

.fs-34 {
  font-size: 2.125rem !important;
}

.fs-35 {
  font-size: 2.1875rem !important;
}

.fs-36 {
  font-size: 2.25rem !important;
}

.fs-37 {
  font-size: 2.3125rem !important;
}

.fs-38 {
  font-size: 2.375rem !important;
}

.fs-39 {
  font-size: 2.4375rem !important;
}

.fs-40 {
  font-size: 2.5rem !important;
}

.fs-41 {
  font-size: 2.5625rem !important;
}

.fs-42 {
  font-size: 2.625rem !important;
}

.fs-43 {
  font-size: 2.6875rem !important;
}

.fs-44 {
  font-size: 2.75rem !important;
}

.fs-45 {
  font-size: 2.8125rem !important;
}

.fs-46 {
  font-size: 2.875rem !important;
}

.fs-47 {
  font-size: 2.9375rem !important;
}

.fs-48 {
  font-size: 3rem !important;
}

.fs-49 {
  font-size: 3.0625rem !important;
}

.fs-50 {
  font-size: 3.125rem !important;
}

.fs-51 {
  font-size: 3.1875rem !important;
}

.fs-52 {
  font-size: 3.25rem !important;
}

.fs-53 {
  font-size: 3.3125rem !important;
}

.fs-54 {
  font-size: 3.375rem !important;
}

.fs-55 {
  font-size: 3.4375rem !important;
}

.fs-56 {
  font-size: 3.5rem !important;
}

.fs-57 {
  font-size: 3.5625rem !important;
}

.fs-58 {
  font-size: 3.625rem !important;
}

.fs-59 {
  font-size: 3.6875rem !important;
}

.fs-60 {
  font-size: 3.75rem !important;
}

.fs-61 {
  font-size: 3.8125rem !important;
}

.fs-62 {
  font-size: 3.875rem !important;
}

.fs-63 {
  font-size: 3.9375rem !important;
}

.fs-64 {
  font-size: 4rem !important;
}

.fs-65 {
  font-size: 4.0625rem !important;
}

.fs-66 {
  font-size: 4.125rem !important;
}

.fs-67 {
  font-size: 4.1875rem !important;
}

.fs-68 {
  font-size: 4.25rem !important;
}

.fs-69 {
  font-size: 4.3125rem !important;
}

.fs-70 {
  font-size: 4.375rem !important;
}

.fs-71 {
  font-size: 4.4375rem !important;
}

.fs-72 {
  font-size: 4.5rem !important;
}

.fs-73 {
  font-size: 4.5625rem !important;
}

.fs-74 {
  font-size: 4.625rem !important;
}

.fs-75 {
  font-size: 4.6875rem !important;
}

.fs-76 {
  font-size: 4.75rem !important;
}

.fs-77 {
  font-size: 4.8125rem !important;
}

.fs-78 {
  font-size: 4.875rem !important;
}

.fs-79 {
  font-size: 4.9375rem !important;
}

.fs-80 {
  font-size: 5rem !important;
}

.fs-81 {
  font-size: 5.0625rem !important;
}

.fs-82 {
  font-size: 5.125rem !important;
}

.fs-83 {
  font-size: 5.1875rem !important;
}

.fs-84 {
  font-size: 5.25rem !important;
}

.fs-85 {
  font-size: 5.3125rem !important;
}

.fs-86 {
  font-size: 5.375rem !important;
}

.fs-87 {
  font-size: 5.4375rem !important;
}

.fs-88 {
  font-size: 5.5rem !important;
}

.fs-89 {
  font-size: 5.5625rem !important;
}

.fs-90 {
  font-size: 5.625rem !important;
}

.fs-91 {
  font-size: 5.6875rem !important;
}

.fs-92 {
  font-size: 5.75rem !important;
}

.fs-93 {
  font-size: 5.8125rem !important;
}

.fs-94 {
  font-size: 5.875rem !important;
}

.fs-95 {
  font-size: 5.9375rem !important;
}

.fs-96 {
  font-size: 6rem !important;
}

.fs-97 {
  font-size: 6.0625rem !important;
}

.fs-98 {
  font-size: 6.125rem !important;
}

.fs-99 {
  font-size: 6.1875rem !important;
}

.fs-100 {
  font-size: 6.25rem !important;
}

.p-font {
  font-family: "Poppins", sans-serif;
}

.fw-thin {
  font-weight: 100;
}

.fw-x-light {
  font-weight: 200;
}

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

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

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

.fw-s-bold {
  font-weight: 600;
}

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

.fw-x-bold {
  font-weight: 800;
}

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

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 10px;
  height: 70px;
  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;
  display: flex;
  align-items: center;
}

.hamburger:hover {
  opacity: 1;
}

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

.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);
}

/* Layout
   ========================================================================== */
/* Header
   ========================================================================== */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navbar {
  padding-top: 0.3125rem;
  padding-bottom: 0.25rem;
}
.navbar .navbar-brand {
  flex-direction: row;
}
.navbar .nav-link {
  text-transform: uppercase;
  color: #777777;
}
.navbar .nav-search {
  width: 2.625rem;
  height: 2.625rem;
  border: 1px solid #777777;
}
.navbar .nav-search i {
  color: #777777;
}
.navbar .nav-search .nav-link {
  display: flex;
  place-content: center;
}

.navbar-toggler {
  z-index: 9999;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}

/* Footer
   ========================================================================== */
.footer {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  border-top: 1px solid #D9D9D9;
}
.footer__link {
  color: #111;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Containers
   ========================================================================== */
/* Sections
   ========================================================================== */
.section, .message, .example, .flow, .affiliation, .referral, .faq, .upload, .welcome {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media (min-width: 768px) {
  .section, .message, .example, .flow, .affiliation, .referral, .faq, .upload, .welcome {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.welcome {
  padding-top: 12.9375rem;
}

.sell {
  padding-top: 6.25rem;
  background: url("../img/bg-sell.png") no-repeat center bottom;
  background-size: cover;
}

.instruments {
  padding-top: 6.25rem;
  background: url("../img/bg-instruments.png") no-repeat center top;
  background-size: cover;
}

.digital {
  padding-top: 6.25rem;
  background: url("../img/bg-digital.png") no-repeat center top;
  background-size: cover;
}

.referral {
  padding-top: 12.9375rem;
  background: url("../img/bg-referral.jpg") no-repeat center top;
  background-size: cover;
}
.referral__container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.affiliation {
  background: url("../img/bg-affiliation.jpg") no-repeat center top;
  background-size: cover;
}
@media (min-width: 992px) {
  .affiliation__container {
    min-height: 150vh;
  }
}

.flow {
  background: #FCFCFC url("../img/bg-welcome.png") no-repeat center top;
  background-size: cover;
}

.example {
  background: #FCFCFC;
}

.message {
  background: url("../img/bg-message.jpg") no-repeat center top;
  background-size: cover;
}
@media (min-width: 992px) {
  .message__container {
    min-height: 150vh;
  }
}

.block {
  width: 100%;
  height: 15.625rem;
  position: relative;
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .block {
    height: 21.875rem;
    padding: 2.5rem;
  }
}
.block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.block__header {
  position: absolute;
  bottom: 2.5rem;
  z-index: 1;
}
.block__headline {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.375rem;
  padding-bottom: 0.625rem;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .block__headline {
    font-size: 4.5vw;
  }
}
@media (min-width: 768px) {
  .block__headline {
    font-size: 1.75rem;
    padding-bottom: 0.9375rem;
  }
}
.block__subtitle {
  color: #F5F5F5;
  font-size: 1.0625rem;
  font-weight: 500;
}
.block:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  border: 1px solid #F5F5F5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #777 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.card--item {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: row;
}

.pt-100 {
  padding-top: 3.125rem;
}
@media (min-width: 768px) {
  .pt-100 {
    padding-top: 6.25rem;
  }
}

.pb-100 {
  padding-bottom: 3.125rem;
}
@media (min-width: 768px) {
  .pb-100 {
    padding-bottom: 6.25rem;
  }
}

.py-100 {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media (min-width: 768px) {
  .py-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

/* Carousels
   ========================================================================== */
/* Components
   ========================================================================== */
/* Logo
   ========================================================================== */
.logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .logo {
    flex-direction: row;
  }
}
.logo__img {
  width: 4.8125rem;
  height: 4.8125rem;
}
.logo__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #222222;
}

/* Loader
   ========================================================================== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 3px solid transparent;
  border-top-color: #730d32;
  z-index: 1001;
  -moz-animation: spin 2s linear infinite;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px solid transparent;
  border-top-color: #a42150;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-animation: spin 3s linear infinite;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid transparent;
  border-top-color: #730d32;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-animation: spin 1.5s linear infinite;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: all 0.3s ease-out 1s;
  -o-transition: all 0.3s ease-out 1s;
  -webkit-transition: all 0.3s ease-out;
  -webkit-transition-delay: 1s;
  transition: all 0.3s ease-out 1s;
}

.loaded #loader-wrapper .loader-section.section-left {
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.loaded #loader-wrapper .loader-section.section-right {
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.loaded #loader-wrapper .loader-section.section-left,
.loaded #loader-wrapper .loader-section.section-right {
  -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.3s;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
}

.loaded #loader {
  opacity: 0;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loading #loader-wrapper {
  visibility: visible;
  top: 0;
}

.loading #loader-wrapper .loader-section.section-left {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.loading #loader-wrapper .loader-section.section-right {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.loading #loader-wrapper .loader-section.section-left,
.loading #loader-wrapper .loader-section.section-right {
  -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.3s;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
}

.loading #loader {
  opacity: 1;
  -moz-transition: all 0.3s ease-out 0.8s;
  -o-transition: all 0.3s ease-out 0.8s;
  -webkit-transition: all 0.3s ease-out;
  -webkit-transition-delay: 0.8s;
  transition: all 0.3s ease-out 0.8s;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  min-height: 3.125rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition-timing-function: cubic-bezier(0.48, 0.07, 0.37, 0.99);
}

.btn-default {
  background: #0413F5;
  color: #ffffff;
}
.btn-default:hover {
  background: #020b91;
  color: #ffffff;
}

.btn-dark {
  background: #000000;
  color: #ffffff;
}
.btn-dark:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* Accordion
   ========================================================================== */
.accordion-item {
  border: none;
  margin-bottom: 0.625rem;
}

.accordion-button {
  border-radius: 0.9375rem !important;
  background: #F5F5F5;
  color: #111;
  font-style: normal;
  font-weight: 800;
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .accordion-button {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .accordion-button {
    font-size: 1.4375rem;
  }
}

/* Forms
   ========================================================================== */
.form-control,
.form-select {
  border-radius: 0.625rem;
  background: #ffffff !important;
  border-color: #CBCBCB;
  font-size: 0.875rem;
  color: #1A1919 !important;
  position: relative;
  min-height: 3.125rem;
  padding-left: 1.0625rem;
  padding-right: 1.0625rem;
  flex-shrink: 0;
}
.form-control.placeholder,
.form-select.placeholder {
  font-size: 0.875rem;
  color: #CBCBCB;
}
.form-control:-moz-placeholder,
.form-select:-moz-placeholder {
  font-size: 0.875rem;
  color: #CBCBCB;
}
.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
  font-size: 0.875rem;
  color: #CBCBCB;
}
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #CBCBCB;
}
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
  font-size: 0.875rem;
  color: #CBCBCB;
}
.form-control:focus,
.form-select:focus {
  background-color: transparent;
  border-color: #EEEEEE;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.045);
}

.form-select {
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

label {
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
}

.form-check {
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-check .form-check-input {
  margin-left: 0;
}

.form-check-label {
  font-size: 0.9375rem;
  color: #1A1919;
  font-weight: 500;
  padding-left: 0.625rem;
}

.form-radio-input {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: #F4F4F4;
  border: 1px solid #C7C7C7;
  width: 1.4375rem;
  height: 1.4375rem;
  border-radius: 6.25rem;
  cursor: pointer;
  flex-shrink: 0;
}
.form-radio-input:checked {
  background: #FF9900 url("../img/icn-checked.svg") no-repeat center center;
  background-size: 1.4375rem;
  border: 1px solid #C7C7C7;
}
.form-radio-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(173, 214, 213, 0.25);
}

.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: #F4F4F4;
  border: 1px solid #C7C7C7;
  width: 1.4375rem;
  height: 1.4375rem;
  cursor: pointer;
  flex-shrink: 0;
}
.form-check-input:checked {
  background: #969C39 url("../img/icn-checked.svg") no-repeat center center;
  background-size: 1.4375rem;
  border: 1px solid #C7C7C7;
}
.form-check-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(173, 214, 213, 0.25);
}

/* Figure
   ========================================================================== */
.figure {
  width: 100%;
  position: relative;
}
.figure__img {
  width: 100%;
}

/* Social
   ========================================================================== */
/* Styles
   ========================================================================== */

/*# sourceMappingURL=style.css.map */
