@charset "UTF-8";
/*-----------------------------------------------------------------------------
    TIME 2021
-----------------------------------------------------------------------------*/
/*---- Imports ----*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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);
  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);
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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);
  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);
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

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

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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);
  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);
  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),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
} */

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

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

.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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);
  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);
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
  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;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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);
  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);
  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),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
} */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
  -ms-transform: rotate(765deg);
  transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  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 {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

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

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

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

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

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

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

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
  -ms-transform: rotate(-765deg);
  transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  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 {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  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;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
} */

/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 
html {
  line-height: 1.15;
  /* 1 
  -ms-text-size-adjust: 100%;
  /* 2
  -webkit-text-size-adjust: 100%;
  /* 2 
}*/

/* Sections
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* article,
aside,
footer,
header,
nav,
section {
  display: block;
} */

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

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 
figcaption,
figure,
main {
  /* 1 
  display: block;
}*/

/**
 * Add the correct margin in IE 8.
 
figure {
  margin: 1em 40px;
}*/

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 
a {
  background-color: transparent;
  /* 1 
  -webkit-text-decoration-skip: objects;
  /* 2 
}*/

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
/* b,
strong {
  font-weight: inherit;
} */

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

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

/**
 * Add the correct font style in Android 4.3-.
 */
/* dfn {
  font-style: italic;
} */

/**
 * Add the correct background and color in IE 9-.
 */
/* mark {
  background-color: #ff0;
  color: #000;
} */

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
} */

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* audio,
video {
  display: inline-block;
} */

/**
 * Add the correct display in iOS 4-7.
 */
/* audio:not([controls]) {
  height: 0;
  display: none;
} */

/**
 * Remove the border on images inside links in IE 10-.
 */
/* img {
  border-style: none;
} */

/**
 * Hide the overflow in IE.
 */
/* svg:not(:root) {
  overflow: hidden;
} */

/* Forms
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
/* button,
input,
optgroup,
select,
textarea {
  margin: 0;
} */

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

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

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
/* button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 
} */

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

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

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

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 
progress {
  display: inline-block;
   1 
  vertical-align: baseline;
   2 
}*/

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

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
   1 
  padding: 0;
   2 
}
*/
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
/* [type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
} */

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
/* details,
menu {
  display: block;
} */

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* canvas {
  display: inline-block;
} */

/**
 * Add the correct display in IE.
 */
/* template {
  display: none;
}

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

/*---- Globals ----*/
/*---- Low Priority Components ----*/
/*-----------------------------------------------------------------------------
  $ Fonts
-----------------------------------------------------------------------------*/
@font-face {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/icons/font/icons.eot?60109189");
  src: url("../fonts/icons/font/icons.eot?60109189#iefix")
      format("embedded-opentype"),
    url("../fonts/icons/font/icons.woff2?60109189") format("woff2"),
    url("../fonts/icons/font/icons.woff?60109189") format("woff"),
    url("../fonts/icons/font/icons.ttf?60109189") format("truetype"),
    url("../fonts/icons/font/icons.svg?60109189#icons") format("svg");
}
 
@font-face {
  font-family: "DIN";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/din-black/DIN-Black.eot");
  src: url("../fonts/din-black/DIN-Black.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/din-black/DIN-Black.woff2") format("woff2"),
    url("../fonts/din-black/DIN-Black.woff") format("woff"),
    url("../fonts/din-black/DIN-Black.ttf") format("truetype"),
    url("../fonts/din-black/DIN-Black.svg#DIN-Black") format("svg");
}

@font-face {
  font-family: "DIN";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/din-bold/DIN-Bold.eot");
  src: url("../fonts/din-bold/DIN-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/din-bold/DIN-Bold.woff2") format("woff2"),
    url("../fonts/din-bold/DIN-Bold.woff") format("woff"),
    url("../fonts/din-bold/DIN-Bold.ttf") format("truetype"),
    url("../fonts/din-bold/DIN-Bold.svg#DIN-Bold") format("svg");
}

@font-face {
  font-family: "DIN";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/din-medium/DIN-Medium.eot");
  src: url("../fonts/din-medium/DIN-Medium.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/din-medium/DIN-Medium.woff2") format("woff2"),
    url("../fonts/din-medium/DIN-Medium.woff") format("woff"),
    url("../fonts/din-medium/DIN-Medium.ttf") format("truetype"),
    url("../fonts/din-medium/DIN-Medium.svg#DIN-Medium") format("svg");
}

@font-face {
  font-family: "DIN";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/din-regular/DIN.eot");
  src: url("../fonts/din-regular/DIN.eot?#iefix") format("embedded-opentype"),
    url("../fonts/din-regular/DIN.woff2") format("woff2"),
    url("../fonts/din-regular/DIN.woff") format("woff"),
    url("../fonts/din-regular/DIN.ttf") format("truetype"),
    url("../fonts/din-regular/DIN.svg#DIN") format("svg");
}

@font-face {
  font-family: "DIN";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/din-light/DIN-Light.eot");
  src: url("../fonts/din-light/DIN-Light.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/din-light/DIN-Light.woff2") format("woff2"),
    url("../fonts/din-light/DIN-Light.woff") format("woff"),
    url("../fonts/din-light/DIN-Light.ttf") format("truetype"),
    url("../fonts/din-light/DIN-Light.svg#DIN-Light") format("svg");
}

@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/helvetica-bold/Helvetica-Bold.eot");
  src: url("../fonts/helvetica-bold/Helvetica-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/helvetica-bold/Helvetica-Bold.woff2") format("woff2"),
    url("../fonts/helvetica-bold/Helvetica-Bold.woff") format("woff"),
    url("../fonts/helvetica-bold/Helvetica-Bold.ttf") format("truetype"),
    url("../fonts/helvetica-bold/Helvetica-Bold.svg#Helvetica-Bold")
      format("svg");
}

@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/helvetica-regular/Helvetica.eot");
  src: url("../fonts/helvetica-regular/Helvetica.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/helvetica-regular/Helvetica.woff2") format("woff2"),
    url("../fonts/helvetica-regular/Helvetica.woff") format("woff"),
    url("../fonts/helvetica-regular/Helvetica.ttf") format("truetype"),
    url("../fonts/helvetica-regular/Helvetica.svg#Helvetica") format("svg");
}

@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/helvetica-light/Helvetica-Light.eot");
  src: url("../fonts/helvetica-light/Helvetica-Light.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/helvetica-light/Helvetica-Light.woff2") format("woff2"),
    url("../fonts/helvetica-light/Helvetica-Light.woff") format("woff"),
    url("../fonts/helvetica-light/Helvetica-Light.ttf") format("truetype"),
    url("../fonts/helvetica-light/Helvetica-Light.svg#Helvetica-Light")
      format("svg");
} 

/*-----------------------------------------------------------------------------
  $ Starters
/*-----------------------------------------------------------------------------
  Just some simple standardisation.
-----------------------------------------------------------------------------*/
/* *,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: none 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: none 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: none 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* html,
button,
input,
select,
textarea {
  font: 100%/1.2 "Helvetica", "Helvetica Neue", "Arial", sans-serif;
} */

html {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  color: #424242;
  scroll-behavior: smooth;
  -webkit-transition: ease-out;
  -o-transition: ease-out;
  transition: ease-out;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 800px) {
  body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
/*   font: 1.25em/1.1 "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
	  font: 1.25em/1.1 "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
}

a,
button,
input,
li {
  -webkit-transition-property: color, border-color, background-color, opacity;
  -o-transition-property: color, border-color, background-color, opacity;
  transition-property: color, border-color, background-color, opacity;
}

a {
  outline: 0;
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  outline: 0;
  margin: 0;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
} */

/*---- Components ----*/
/*-----------------------------------------------------------------------------
  $ AJAX Search Pro overrides
-----------------------------------------------------------------------------*/
/*
#ajaxsearchprores2_1.vertical,
#ajaxsearchprores2_1.vertical .results,
#ajaxsearchprores2_1.vertical .results .item,
#ajaxsearchprores2_1.vertical .results .item .asp_content,
#ajaxsearchprores2_1.vertical .results .item .asp_content h3,
#ajaxsearchprores2_1.vertical .results .item .asp_content h3 a {
  line-height: 1.2;
}

#ajaxsearchprores2_1.vertical,
#ajaxsearchprores2_2.vertical,
div.asp_r.asp_r_2.vertical {
  width: 100%;
  padding: 0;
  margin: 0;
  position: static !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

div.asp_w.asp_r .results .asp_nores {
  text-align: left;
}

div.asp_w.asp_r .results a span.overlap {
  display: none;
}

#ajaxsearchprores2_1.vertical .results .item,
#ajaxsearchprores2_2.vertical .results .item,
div.asp_r.asp_r_2.vertical .results .item {
  padding: 0;
  border: 0;
  background: none;
}
#ajaxsearchprores2_1.vertical .results .item .asp_content,
#ajaxsearchprores2_2.vertical .results .item .asp_content,
div.asp_r.asp_r_2.vertical .results .item .asp_content {
  padding: 0 0 0 30px;
  margin: 0;
  position: relative;
}
#ajaxsearchprores2_1.vertical .results .item .asp_content:before,
#ajaxsearchprores2_2.vertical .results .item .asp_content:before,
div.asp_r.asp_r_2.vertical .results .item .asp_content:before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
  background: url(../../assets/images/shared/icons/icon_search.svg)
    center/contain no-repeat;
}

.item.asp_r_pagepost:first-child:before {
  content: "Suggested Searches";
  display: block;
}

.asp_simplebar-placeholder {
  display: none;
}

#ajaxsearchprores2_1 .results .item div.etc,
#ajaxsearchprores2_2 .results .item div.etc,
div.asp_r.asp_r_2 .results .item div.etc {
  margin: 0;
}

#ajaxsearchprores2_1 .results .item .asp_content h3 a:nth-child(n),
#ajaxsearchprores2_2 .results .item .asp_content h3 a:nth-child(n),
div.asp_r.asp_r_2 .results .item .asp_content h3 a:nth-child(n) {
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  padding: 8px 0;
  display: inline-block;
  width: 100%;
  margin-left: -30px;
  padding-left: 60px;
}
#ajaxsearchprores2_1 .results .item .asp_content h3 a:nth-child(n):hover,
#ajaxsearchprores2_2 .results .item .asp_content h3 a:nth-child(n):hover,
div.asp_r.asp_r_2 .results .item .asp_content h3 a:nth-child(n):hover {
  color: #ed008c;
  background: #f5f5f5;
}
*/
/*---- Mobile ----*/
/* @media (max-width: 799.98px) {
  #ajaxsearchprores2_1.vertical,
  #ajaxsearchprores2_2.vertical,
  div.asp_r.asp_r_2.vertical {
    background: none;
  }
  div.asp_w.asp_r .resdrg {
    margin-top: 30px;
  }
  #ajaxsearchprores2_1.vertical .results .item .asp_content,
  #ajaxsearchprores2_2.vertical .results .item .asp_content,
  div.asp_r.asp_r_2.vertical .results .item .asp_content {
    padding: 0 0 0 30px;
    margin: 15px 0;
    background: none;
  }
  #ajaxsearchprores2_1.vertical .results .item .asp_content:before,
  #ajaxsearchprores2_2.vertical .results .item .asp_content:before,
  div.asp_r.asp_r_2.vertical .results .item .asp_content:before {
    width: 20px;
    height: 20px;
    background-image: url(../../assets/images/shared/icons/search-black.svg);
    left: 0;
  }
  #ajaxsearchprores2_1.vertical .results .item:first-child .asp_content,
  #ajaxsearchprores2_2.vertical .results .item:first-child .asp_content,
  div.asp_r.asp_r_2.vertical .results .item:first-child .asp_content {
    margin-top: 30px;
  }
  .item.asp_r_pagepost:first-child:before {
    color: #868686;
  }
  #ajaxsearchprores2_1 .results .item .asp_content h3 a:nth-child(n),
  #ajaxsearchprores2_2 .results .item .asp_content h3 a:nth-child(n),
  div.asp_r.asp_r_2 .results .item .asp_content h3 a:nth-child(n) {
    color: #868686;
    font-size: 16px;
    margin-left: 0;
    padding: 0;
  }
  #ajaxsearchprores2_1 .results .item .asp_content h3 a:nth-child(n):hover,
  #ajaxsearchprores2_2 .results .item .asp_content h3 a:nth-child(n):hover,
  div.asp_r.asp_r_2 .results .item .asp_content h3 a:nth-child(n):hover {
    color: #ed008c;
    background: transparent;
  }
  #ajaxsearchprores2_1 span.highlighted,
  #ajaxsearchprores2_2 span.highlighted,
  div.asp_r.asp_r_2 span.highlighted {
    color: #424242;
    font-weight: inherit;
  }
} */

/*---- Desktop ----*/
/* @media (min-width: 800px) {
  #ajaxsearchprores2_1.vertical,
  #ajaxsearchprores2_2.vertical,
  div.asp_r.asp_r_2.vertical {
    padding: 30px 10px;
    border-radius: 0 0 12px 12px;
  }
  .item.asp_r_pagepost:first-child:before {
    margin-bottom: 20px;
    color: #868686;
    margin-left: 30px;
  }
  #ajaxsearchprores2_1.vertical .results .item .asp_content:hover:before,
  #ajaxsearchprores2_2.vertical .results .item .asp_content:hover:before,
  div.asp_r.asp_r_2.vertical .results .item .asp_content:hover:before {
    background: url(../../assets/images/shared/icons/icon_search-magenta.svg);
  }
  #ajaxsearchprores2_1.vertical .results .item:first-child .asp_content,
  #ajaxsearchprores2_2.vertical .results .item:first-child .asp_content,
  div.asp_r.asp_r_2.vertical .results .item:first-child .asp_content {
    margin-top: 0;
  }
  #ajaxsearchprores2_1.vertical .results .item:last-child .asp_content,
  #ajaxsearchprores2_2.vertical .results .item:last-child .asp_content,
  div.asp_r.asp_r_2.vertical .results .item:last-child .asp_content {
    margin-bottom: 0;
  }
  #ajaxsearchprores2_1 .results .item .asp_content h3 a:nth-child(n),
  #ajaxsearchprores2_2 .results .item .asp_content h3 a:nth-child(n),
  div.asp_r.asp_r_2 .results .item .asp_content h3 a:nth-child(n) {
    color: #868686;
  }
  #ajaxsearchprores2_1 .results .item .asp_content h3 a:hover,
  #ajaxsearchprores2_2 .results .item .asp_content h3 a:hover,
  div.asp_r.asp_r_2 .results .item .asp_content h3 a:hover {
    color: #ed008c;
  }
  #ajaxsearchprores2_1 .results .item .asp_content h3 a:hover span.highlighted,
  #ajaxsearchprores2_2 .results .item .asp_content h3 a:hover span.highlighted,
  div.asp_r.asp_r_2 .results .item .asp_content h3 a:hover span.highlighted {
    color: #ed008c;
  }
  #ajaxsearchprores2_1 span.highlighted,
  #ajaxsearchprores2_2 span.highlighted,
  div.asp_r.asp_r_2 span.highlighted {
    color: #424242;
    font-weight: inherit;
  }
} */

/*-----------------------------------------------------------------------------
  $ Banners
-----------------------------------------------------------------------------*/
.progress-bar {
  width: 80px;
  height: 8px;
  border-radius: 30px;
  margin-right: 4px;
  margin-left: 4px;
  display: inline-block;
  background-color: #909090;
  cursor: pointer;
  -webkit-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  -o-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  -webkit-transition-property: background-color, width;
  -o-transition-property: background-color, width;
  transition-property: background-color, width;
}
.progress-bar.dot-- {
  width: 8px;
}
.progress-bar.dot-- .progress-bar-fill {
  -webkit-animation: progressFilled 5s linear;
  animation: progressFilled 5s linear;
}

.progress-bar-fill {
  width: 0;
  height: 8px;
  border-radius: 30px;
  display: block;
  background-color: transparent;
  cursor: pointer;
  -webkit-animation: progressFilling 5s linear;
  animation: progressFilling 5s linear;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.progress-bar-fill.none-- {
  -webkit-animation: none;
  animation: none;
}
.progress-bar-fill.selected-- {
  width: 100%;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  background-color: #fff;
}
.progress-bar-fill.selected--.light-- {
  background-color: #ed008c;
}
.progress-bar-fill.pause-- {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes progressFilling {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressFilling {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes progressFilled {
  0% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressFilled {
  0% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

.banners {
  z-index: 12;
}

.banners__container {
  overflow: hidden;
}

.banners__slide-container {
  position: relative;
}

.banner__visual-text-container {
  margin-bottom: 16px;
}

.banners__container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banners__slide {
  height: 711px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  position: relative;
}
.banners__slide.dark-- {
  color: #424242;
}

.banners__visual {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: center / cover no-repeat;
}
.banners__visual.desktop-- {
  display: none;
}

.banners__slide-contents {
  padding-top: 35px;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}
.banners__slide-contents.centred-- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.banners__slide-contents-inner {
  max-width: 320px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.banners__slide-contents-inner.gap-small-- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.banners__slide-contents-inner.light-- {
  color: #424242;
}

.heading.banners__heading {
  margin-bottom: 20px;
  line-height: 1;
}

.heading.banners__subheading {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}
.heading.banners__subheading.title-- {
  font-size: 24px;
  font-weight: 600;
}

.banners__desc {
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
  letter-spacing: -0.16px;
  line-height: 1.35;
  opacity: 0.6;
}

.banners__button {
  min-width: 250px;
}

/* Carousel Arrows */
.banners__slide-arrows-container {
  display: none;
}

/* Carousel Dots */
.banners__slide-dots-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 30px;
}

.banners__slide-dot {
  width: 70px;
  height: 8px;
  border-radius: 30px;
  margin-right: 3px;
  margin-left: 3px;
  display: inline-block;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  -o-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  -webkit-transition-property: background-color, width;
  -o-transition-property: background-color, width;
  transition-property: background-color, width;
}
.banners__slide-dot.selected {
  width: 70px;
  height: 8px;
  border-radius: 30px;
  background-color: #ed008c;
}

@media (min-width: 800px) {
  .banners__slide {
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .banners__visual.mobile-- {
    display: none;
  }
  .banners__visual.desktop-- {
    display: block;
  }
  .banners__slide-contents {
    width: 100%;
    padding-top: 0;
    text-align: left;
  }
  .wrapper.banners__wrapper {
    max-width: 760px;
    padding-left: 40px;
  }
  .banners__slide-contents-inner {
    max-width: 40%;
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .banners__slide-contents-inner.large-- {
    max-width: 60%;
  }
  .banners__slide-contents-inner.full-- {
    max-width: 100%;
  }
  .banners__slide-contents-inner.narrow-- {
    max-width: 1024px;
  }
  .banners__slide-contents-inner.centred-- {
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .banners__slide-contents-inner.pd-top-- {
    padding-top: 250px;
  }
  .banners__slide-contents-inner.gap-small-- {
    gap: 32px;
  }
  .heading.banners__heading {
    font-size: 24px;
  }
  /* Carousel Dots */
  .banners__slide-dot {
    background-color: #909090;
  }
  .banners__slide-dot:hover {
    background-color: #e2e2e2;
  }
  .banners__slide-dot.selected {
    border-radius: 20px;
  }
  .banners__slide-dot.selected:hover {
    background-color: #ed008c;
  }
}

@media (min-width: 1024px) {
  .banner__visual-text-container {
    margin-bottom: 24px;
  }
  .banners__slide {
    height: 520px;
  }
  .wrapper.banners__wrapper {
    max-width: 1240px;
  }
  .heading.banners__heading {
    font-size: 28px;
  }
  .banners__desc {
    font-size: 18px;
    letter-spacing: 0;
  }
  /* Carousel Arrows */
  .banners__slide-arrow {
    width: 60px;
    height: 60px;
    display: none;
    position: absolute;
    top: 50%;
    z-index: 1;
    background-color: #ffffff14;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) background-color;
    -o-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) background-color;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) background-color;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    fill: #ffffff80;
  }
  .banners__slide-arrow.prev-- {
    left: 0;
  }
  .banners__slide-arrow.next-- {
    right: 0;
  }
  .banners__slide-arrow:hover {
    background-color: #ed008c;
    fill: #fff;
  }
  .banners__slide-arrow__svg {
    width: 10px;
    height: 18px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* Carousel Dots */
  .banners__slide-dots-container {
    bottom: 60px;
  }
}

@media (min-width: 1280px) {
  .banners__slide {
    height: 620px;
  }
  .heading.banners__heading {
    font-size: 38px;
  }
}

@media (min-width: 1360px) {
  /* Carousel Arrows */
  .banners__slide-arrows-container {
    display: block;
  }
}

@media (min-width: 1440px) {
  .banners__slide {
    height: 720px;
  }
  .heading.banners__heading {
    font-size: 48px;
  }
}

/*-----------------------------------------------------------------------------
  $ Blurp
-----------------------------------------------------------------------------*/
.blurp {
  position: fixed;
  z-index: 14;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.blurp.hidden-- {
  opacity: 0;
}
.blurp.toggled-- {
  display: none;
}

/* ---- Side blurp ---- */
.side-blurp {
  padding: 10px 15px;
  border-radius: 10px 10px 0 0;
  right: 0;
  bottom: 0;
  background-color: #010001;
  color: #fff;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  -webkit-transform: rotate(-90deg) translate(50%, 101%);
  -ms-transform: rotate(-90deg) translate(50%, 101%);
  transform: rotate(-90deg) translate(50%, 101%);
}
.side-blurp:hover {
  background-color: #424242;
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .side-blurp {
    bottom: 40px;
    font-size: 18px;
  }
}

/* ---- Chatbot blurp ---- */
.chatbot-blurp__wrapper {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  max-width: 1240px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.chatbot-blurp {
  bottom: 50px;
}

.chatbot-blurp-icon {
  width: 115px;
  height: 112px;
  position: absolute;
  top: 0;
  left: -40px;
  background-image: url("../images/shared/blurps/light-bubble.png");
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.chatbot-blurp-icon__image {
  position: absolute;
  top: 25px;
  left: 30px;
}

.chatbot-blurp-message {
  width: 155px;
  height: 129px;
  padding: 30px;
  margin-top: -40px;
  margin-left: -120px;
  position: absolute;
  top: 0;
  background-image: url("../images/shared/blurps/dark-bubble.png");
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.chatbot-blurp-message__heading {
  color: #ed008c;
  font-size: 14px;
  font-weight: 700;
}

.chatbot-blurp-message__closer {
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  -o-transition-property: filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
}
.chatbot-blurp-message__closer:hover {
  -webkit-filter: saturate(2);
  filter: saturate(2);
}

.chatbot-blurp-message__text {
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .chatbot-blurp {
    bottom: 75px;
  }
}

@media (min-width: 1280px) {
  .chatbot-blurp {
    bottom: 100px;
  }
}

/*-----------------------------------------------------------------------------
  $ Buttons
-----------------------------------------------------------------------------*/
/* .button {
  padding: 15px 35px;
  border-radius: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative; */
  /* background: -webkit-gradient(
      linear,
      right top,
      left top,
      color-stop(50%, #ed008c),
      color-stop(50%, #ff21a4)
    )
    right/200%;
  background: -o-linear-gradient(right, #ed008c 50%, #ff21a4 50%) right/200%;
  background: linear-gradient(to left, #ed008c 50%, #ff21a4 50%) right/200%; */
/*   color: #fff;
  font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  -webkit-transition-property: background-position;
  -o-transition-property: background-position;
  transition-property: background-position;
}
.button.less-pd-- {
  padding: 15px 20px;
}
.button.longer-mobile-- {
  min-width: 250px;
}
.button.white--,
.button.dark-- {
  background: -webkit-gradient(
      linear,
      right top,
      left top,
      color-stop(50%, white),
      color-stop(50%, #fddaed),
      to(white)
    )
    right/201%;
  background: -o-linear-gradient(right, white 50%, #fddaed 50%, white 100%)
    right/201%;
  background: linear-gradient(to left, white 50%, #fddaed 50%, white 100%)
    right/201%;
  color: #ed008c;
} */
/* .button.outline-pink-- {
  border: 2px solid #ed008c;
  background: -webkit-gradient(
      linear,
      right top,
      left top,
      color-stop(50%, white),
      color-stop(50%, rgba(237, 0, 140, 0.2)),
      to(white)
    )
    right/201%;
  background: -o-linear-gradient(
      right,
      white 50%,
      rgba(237, 0, 140, 0.2) 50%,
      white 100%
    )
    right/201%;
  background: linear-gradient(
      to left,
      white 50%,
      rgba(237, 0, 140, 0.2) 50%,
      white 100%
    )
    right/201%;
  color: #ed008c;
} */
/* .button.outline-white-- {
  border: 2px solid #fff;
  background: -webkit-gradient(
      linear,
      right top,
      left top,
      color-stop(50%, transparent),
      color-stop(50%, rgba(237, 0, 140, 0.2)),
      to(transparent)
    )
    right/201%;
  background: -o-linear-gradient(
      right,
      transparent 50%,
      rgba(237, 0, 140, 0.2) 50%,
      transparent 100%
    )
    right/201%;
  background: linear-gradient(
      to left,
      transparent 50%,
      rgba(237, 0, 140, 0.2) 50%,
      transparent 100%
    )
    right/201%;
  color: #fff;
}
.button.outline-color-- {
  border: 2px solid currentColor;
  background: -webkit-gradient(
      linear,
      right top,
      left top,
      color-stop(50%, transparent),
      color-stop(50%, currentColor),
      to(transparent)
    )
    right/201%;
  background: -o-linear-gradient(
      right,
      transparent 50%,
      currentColor 50%,
      transparent 100%
    )
    right/201%;
  background: linear-gradient(
      to left,
      transparent 50%,
      currentColor 50%,
      transparent 100%
    )
    right/201%;
  color: #fff;
}
.button:hover {
  background-position: left;
}
.button[disabled],
.button.disabled-- {
  background: #c1c1c1;
  cursor: not-allowed;
}

@media (min-width: 800px) {
  .button.longer-mobile-- {
    min-width: auto;
  }
  .button.long-desktop-- {
    width: 186px;
    min-width: auto;
  }
} */

/*-----------------------------------------------------------------------------
  $ Dropdown
-----------------------------------------------------------------------------*/
[data-dropdown] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-dropdown] [data-dropdown-toggler] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
[data-dropdown] [data-dropdown-toggler-icon] {
  margin-left: 5px;
  color: #ed008c;
  font-size: 16px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
[data-dropdown] [data-dropdown-toggler-icon].toggled-- {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
[data-dropdown] [data-dropdown-item] {
  cursor: pointer;
}
[data-dropdown] [data-dropdown-item] .dropdown-item-selected-icon {
  width: 16px;
  height: 18px;
  display: none;
  position: absolute;
  right: 20px;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}
[data-dropdown] [data-dropdown-item].selected-- .dropdown-item-selected-icon {
  display: block;
}
[data-dropdown].toggled-- [data-dropdown-item-container] {
  display: block;
}
[data-dropdown].visible-- [data-dropdown-item-container] {
  opacity: 1;
}

[data-dropdown-item-container] {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.features-list {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.features-list.small-gap-- {
  gap: 20px;
}

.features-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  color: #424242;
}
.features-list__item.white-- {
  color: #fff;
}
.features-list__item.white-- + .features-list__item-separator {
  border-color: #fff;
}

.features-list__item-heading {
  font-size: 18px;
  font-weight: 700;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.features-list__item-heading.left-- {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.features-list__item-image {
  width: 75px;
  height: 75px;
  margin: auto;
  margin-top: 0;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.features-list__item-image.larger-- {
  max-width: 236px;
  width: 100%;
  height: auto;
}

.features-list__item-paragraph {
  margin: auto;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  width: 90%;
  margin-bottom: 12px;
}
.features-list__item-paragraph:last-child {
  margin-bottom: 0;
}
.features-list__item-paragraph.m-top-- {
  margin-top: 32px;
}

.features-list__item-list {
  margin-top: 20px;
  padding-left: 2px;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.features-list__item-list.dotted-- li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.features-list__item-list.dotted-- li:before {
  content: "•";
  font-size: 10pt;
}

.features-list__item-link {
  font-size: 14px;
  font-weight: 700;
  color: #3bbfbb;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.features-list__item-link.m-top-- {
  margin-top: 16px;
}

.features-list__item.active-- .features-list__item-header-button-icon.up-- {
  display: none;
}

.features-list__item.active-- .features-list__item-header-button-icon.down-- {
  display: block;
}

.features-list__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 12px;
  gap: 12px;
}

.features-list__item-header-title {
  font-size: 24px;
  font-weight: 700;
  color: #424242;
}

.features-list__item-header-button {
  display: block;
}

.features-list__item-header-button-icon {
  width: 10px;
  fill: #ed008c;
}
.features-list__item-header-button-icon.up-- {
  display: block;
}
.features-list__item-header-button-icon.down-- {
  display: none;
}

.features-list__item-separator {
  height: 1px;
  width: 80%;
  margin: auto;
  border-bottom: 1px solid #424242;
  opacity: 0.5 !important;
}
.features-list__item-separator.hide-- {
  border: none;
}
.features-list__item-separator:last-of-type {
  display: none;
}

.features-list__item-list-block {
  padding: 12px 24px;
  background-color: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
  border-radius: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.features-list__item-list-block-image {
  width: 40px;
  height: 40px;
  margin-top: 8px;
}

.features-list__item-list-block-content {
  color: #424242;
}

.features-list__item-list-block-content-header {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}

.features-list__item-list-block-content-paragraph {
  font-size: 12px;
  color: #868686;
}

.features-list__item-list-block-content-footnote {
  margin-top: 12px;
  font-size: 12px;
  color: #868686;
}

@media (min-width: 1024px) {
  .features-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px 80px;
  }
  .features-list.two-col-- {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .features-list.two-col-- .features-list__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 33%;
    flex: 1 0 33%;
    max-width: 280px;
  }
  .features-list.two-col-- .features-list__item.expand-- {
    max-width: 360px;
  }
  .features-list__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 24%;
    flex: 1 0 24%;
    max-width: 326px;
  }
  .features-list__item.expand-- {
    max-width: 480px;
  }
  .features-list__item-heading {
    font-size: 27px;
  }
  .features-list__item-header-title {
    font-size: 24px;
  }
  .features-list__item-header-button {
    display: none;
  }
  .features-list__item-list {
    font-size: 16px;
  }
  .features-list__item-paragraph {
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
    line-height: 1.5;
    display: block !important;
  }
  .features-list__item-image {
    height: 100px;
    width: 100px;
  }
  .features-list__item-image > img {
    max-height: 100%;
    max-width: 100%;
  }
  .features-list__item-image.larger-- {
    height: 156px;
    width: auto;
  }
  .features-list__item-link {
    margin-top: 24px;
  }
  .features-list__item-separator {
    display: none;
  }
  .features-list__item-list-block-content-header {
    font-size: 16px;
  }
  .features-list__item-list-block-content-paragraph {
    font-size: 12px;
  }
  .features-list__item-list-block-content-footnote {
    margin-top: 12px;
    font-size: 12px;
  }
}

/*-----------------------------------------------------------------------------
  $ Footnotes
-----------------------------------------------------------------------------*/
.footnote__title-container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footnote__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.plans__button-container.footnote__button-container {
  width: auto;
  padding: 0;
  position: static;
}

.plans__button.footnote__button {
  position: relative;
}

.footnote__content {
  display: none;
}
.footnote__content.show-- {
  display: block;
}

.typography.footnote__typography {
  color: #868686;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.typography.footnote__typography ol {
  padding-left: 15px;
}

.typography.footnote__typography ol li {
  padding-left: 10px;
}
.typography.footnote__typography ol li:not(:first-child) {
  padding-top: 20px;
}

.typography.footnote__typography p {
  padding-top: 30px;
}

.footnote.active-- .plans__button.up-- {
  display: block;
}

.footnote.active-- .plans__button.down-- {
  display: none;
}

@media (min-width: 800px) {
  .footnote__title-container {
    display: none;
  }
  .footnote__content {
    display: block !important;
    /* stylelint-disable-line declaration-no-important */
  }
  .typography.footnote__typography ol li:not(:first-child) {
    padding-top: 0;
  }
  .typography.footnote__typography p {
    padding-top: 5px;
  }
}

/*-----------------------------------------------------------------------------
  $ Fields
-----------------------------------------------------------------------------*/
.field {
  height: 60px;
  border: 1px solid currentColor;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.field.short-- {
  height: 50px;
}
.field.tall-- {
  height: auto;
}
.field.tall-- .field__label {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  top: 8px;
}

.field__block {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.field__block.main-- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.field__block.icon-- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
}
.field__block.for-error-- {
  display: none;
}
.field__block.small-- .field__label,
.field__block.small-- .field__control {
  font-size: 16px;
}
.field__block.small-- .field__control {
  padding-top: 8px;
}

.field__control-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.field__label {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  pointer-events: none;
}

.field__control {
  position: relative;
  padding: 17px 5px 0;
  border: 0;
  outline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  background: none;
  color: #868686;
  font-size: 18px;
  font-weight: 300;
}
.field__control.white-- {
  color: white;
}
.field__control.dropdown-- {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.field__control.dropdown-- > i {
  height: 100%;
  z-index: -1;
  position: absolute;
  right: 8px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ed008c;
  font-size: 16px;
}
.field__control.textbox-- {
  padding-top: 20px !important;
  height: 100px;
}
.field__control > select {
  position: relative;
  outline: none;
  border: none;
  width: 100%;
  padding-top: 6px;
  padding-left: 16px;
  padding-right: 10px;
  color: #868686;
  background: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.field__block:first-child .field__control {
  padding-left: 15px;
}
.field__block:last-child .field__control {
  padding-right: 15px;
}

.field__icon-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

a.field__icon-holder,
button.field__icon-holder {
  cursor: pointer;
}

.field-message {
  margin-top: 5px;
}

label.field-message {
  display: inline-block;
}

.field.focused-- .field__label,
.field.filled-- .field__label {
  -webkit-transform: scale(0.7778) translateY(-17px);
  -ms-transform: scale(0.7778) translateY(-17px);
  transform: scale(0.7778) translateY(-17px);
}

.field.focused--.short-- .field__label,
.field.filled--.short-- .field__label {
  -webkit-transform: scale(0.7778) translateY(-14px);
  -ms-transform: scale(0.7778) translateY(-14px);
  transform: scale(0.7778) translateY(-14px);
}
//jackson clashing with new styling
/* .field.error-- {
  color: #e00;
}
.field.error-- .field__block.for-error--.icon-- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.field.error-- + .field-message {
  color: #e00;
} */

@media (min-width: 1024px) {
  .field.wide-- {
    grid-column: span 2;
    max-width: 100% !important;
  }
}

/*-----------------------------------------------------------------------------
  $ Form
-----------------------------------------------------------------------------*/
.form {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px 30px;
  justify-items: center;
}
.form .field {
/*   max-width: 320px; */
  width: 100%;
}

.form__button {
  padding: 100px 0 50px;
  text-align: center;
}

@media (min-width: 800px) {
  .form__button {
    padding: 60px 0 0;
  }
}

@media (min-width: 1024px) {
  .form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
  }
}

/*-----------------------------------------------------------------------------
  $ Grid
-----------------------------------------------------------------------------*/
.row {
  width: 100%;
  margin-top: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col {
  padding-top: 40px;
}

.col-12 {
  width: 100%;
}

.col-6 {
  width: 50%;
}

.col-6-md {
  width: 100%;
}

@media (min-width: 800px) {
  .row {
    width: auto;
    margin-top: -30px;
    margin-left: -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .col {
    padding-top: 30px;
    padding-left: 30px;
  }
  .col-6-md {
    width: 50%;
  }
}

/*----------------------------------------------------------------------------
  $ Half Container
-----------------------------------------------------------------------------*/
.half-container__desc {
  margin: auto;
  margin-top: 28px;
}
.half-container__desc.left-- {
  margin-left: 0;
}

@media (min-width: 640px) {
  .half-container {
    max-width: 50%;
    min-height: 390px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .half-container.left-- {
    margin-left: 0;
  }
  .half-container.right-- {
    margin-right: 0;
  }
}

/*-----------------------------------------------------------------------------
  $ Headings
-----------------------------------------------------------------------------*/
.heading {
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.heading.centered-- {
  text-align: center;
}
.heading.small-- {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}
.heading.extra-large-- {
  font-size: 35px;
}
.heading.long-- {
  font-size: 24px;
}
.heading.white-- {
  color: #fff;
}

.heading__highlight {
  color: #ed008c;
}

.subheading {
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .heading {
    font-size: 38px;
  }
  .heading.long-- {
    font-size: 34px;
  }
  .heading.extra-large-- {
    font-size: 56px;
  }
  .subheading {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .heading {
    font-size: 48px;
  }
  .heading.long-- {
    font-size: 48px;
  }
  .heading.extra-large-- {
    font-size: 72px;
  }
  .subheading {
    font-size: 24px;
  }
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'icons';
    src: url('../font/icons.svg?8070748#icons') format('svg');
  }
}
*/
/* stylelint-disable */
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* stylelint-enable */
.icon-account:before {
  content: "\e800";
}

/* '' */
.icon-android:before {
  content: "\e801";
}

/* '' */
.icon-arrow-left:before {
  content: "\e810";
}

/* '' */
.icon-faq:before {
  content: "\e802";
}

/* '' */
.icon-huawei:before {
  content: "\e803";
}

/* '' */
.icon-ios:before {
  content: "\e804";
}

/* '' */
.icon-live-chat:before {
  content: "\e805";
}

/* '' */
.icon-phone:before {
  content: "\e806";
  font-weight: 900;
}

/* '' */
.icon-search:before {
  content: "\e807";
}

/* '' */
.icon-down-open:before {
  content: "\e808";
}

/* '' */
.icon-down-open-big:before {
  content: "\e809";
}

/* '' */
.icon-check:before {
  content: "\e80a";
}

/* '' */
.icon-facebook:before {
  content: "\f09a";
}

/* '' */
.icon-linkedin:before {
  content: "\f0e1";
}

/* '' */
.icon-faq:before {
  content: "\e80b";
  font-size: 30px;
}

/* '' */
.icon-support-msg:before {
  content: "\e80c";
  font-size: 30px;
}

/* '' */
.icon {
  font-size: 20px;
}
.icon.shadowed--:before {
  text-shadow: 0 0 8px rgba(66, 66, 66, 0.4);
}

.icon-text-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
  padding: 0 10px;
}

.icon-text-list__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #424242;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.icon-text-list__item.white-- {
  color: #fff;
}

.icon-text-list__item-image {
  width: 48px;
  height: auto;
}

.icon-text-list__item-text {
  font-size: 16px;
  line-height: 1.33;
}
.icon-text-list__item-text.small-- {
  font-size: 14px;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .icon-text-list {
    margin: auto;
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .icon-text-list {
    width: auto;
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 48px;
  }
  .icon-text-list__item {
    grid-template-columns: 1fr;
    grid-template-rows: 124px 1fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    justify-items: center;
    max-width: 250px;
  }
  .icon-text-list__item.small-- {
    grid-template-rows: 96px 1fr;
  }
  .icon-text-list__item.small-- > .icon-text-list__item-text {
    font-size: 16px;
  }
  .icon-text-list__item.small-- > .icon-text-list__item-image {
    width: 96px;
    max-height: 96px;
    margin: auto;
  }
  .icon-text-list__item-image {
    width: 124px;
    max-height: 124px;
  }
  .icon-text-list__item-text {
    font-size: 18px;
    text-align: center;
  }
}

.media-cards-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 0;
  justify-items: center;
  padding: 0 !important;
}

.media-cards-list__item {
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 10px;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  max-width: 520px;
}

.media-cards-list__item-image {
  border-radius: 10px 10px 0 0;
}

.media-cards-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin: auto;
  padding: 30px 20px;
}

.media-cards-list__item-content-heading {
  font-size: 18px;
  font-weight: 700;
}

.media-cards-list__item-content-paragraph {
  color: #868686;
  font-size: 16px;
  padding-bottom: 14px;
}

.media-cards-list__item-content-button {
  padding: 14px 34px;
  background: transparent;
}

@media (min-width: 640px) {
  .media-cards-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }
}

@media (min-width: 800px) {
  .media-cards-list {
    gap: 40px 64px;
  }
  .media-cards-list__item {
    background-color: transparent;
    gap: 40px 60px;
    max-width: auto;
  }
  .media-cards-list__item-image {
    border-radius: 0;
  }
  .media-cards-list__item-content {
    gap: 20px;
    padding: 44px 0 0 0;
  }
  .media-cards-list__item-content-heading {
    font-size: 32px;
  }
  .media-cards-list__item-content-paragraph {
    padding: 0 36px;
  }
}

.plan-structure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.plan-structure.active-- .plan-structure__header-button.up-- {
  display: block;
}
.plan-structure.active-- .plan-structure__header-button.down-- {
  display: none;
}

.plan-structure__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  cursor: pointer;
}

.plan-structure__header-title {
  font-size: 18px;
  line-height: 1.2;
  color: #424242;
  font-weight: 700;
}
.plan-structure__header-title + button {
  cursor: pointer;
}

.plan-structure__header-button {
  width: 8px;
  height: 8px;
  font-size: 8px;
  fill: #ed008c;
}
.plan-structure__header-button.up-- {
  display: none;
}
.plan-structure__header-button.down-- {
  display: block;
}

.plan-structure__content {
  display: grid;
  grid-template-columns: 40px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 8px;
  gap: 20px 12px;
}

.plan-structure__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.plan-structure__content-item-title {
  font-size: 14px;
  line-height: 1.3;
  color: #424242;
}

.plan-structure__content-item-description {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #424242;
}

.plan-structure__content-item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.plan-structure__content-item-row-col {
  border: 1px solid #d0d0d0;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #303030;
  font-weight: 700;
}
.plan-structure__content-item-row-col:not(.plan-structure__content-item-row-col:first-of-type) {
  border-left: 0;
}

/*-----------------------------------------------------------------------------
  $ Plans Card
-----------------------------------------------------------------------------*/
.plans-card__container {
  margin-bottom: 12px;
}
.plans-card__container:last-child {
  margin-bottom: 0;
}

.plans-card__container-inner {
  padding: 25px 30px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #f6f6f6;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
}

.plans-card__icon {
  width: 50px;
  margin-right: 30px;
}

.plans-card__heading {
  color: #ed008c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.typography.plans-card__typography {
  color: #868686;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  font-size: 12px;
}

.typography.plans-card__typography ul:first-child {
  padding-top: 10px;
}

@media (min-width: 480px) {
  .plans-card__container {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
  .plans-card__icon {
    width: 55px;
  }
}

@media (min-width: 800px) {
  .plans-card {
    margin-left: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .plans-card__container {
    width: 50%;
    max-width: none;
    padding-left: 20px;
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .plans-card {
    margin-left: -60px;
  }
  .plans-card__container {
    padding-left: 60px;
  }
  .plans-card__heading {
    font-size: 26px;
    letter-spacing: -0.52px;
  }
}

/*-----------------------------------------------------------------------------
  $ Plans List
-----------------------------------------------------------------------------*/
.plans-inner {
  overflow: hidden;
}

.plans-list__container {
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
  -webkit-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) opacity;
  -o-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) opacity;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) opacity;
}

.plans-list__card {
  padding: 0;
  margin-top: -20px;
  list-style-type: none;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
}

.plans-list__card-container {
  padding-top: 20px;
}

.plans-list__card-content-header {
  border-radius: 12px 12px 0 0;
  background-color: #ed008c;
  color: #fff;
  text-align: center;
}

.plans-list__card-content-body {
  padding: 16px;
  border-radius: 0 0 12px 12px;
  background-color: #efefef;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.plans-list__card-content-body.active-- .plans__button.up-- {
  display: block;
}

.plans-list__card-content-body.active-- .plans__button.down-- {
  display: none;
}

.plans-list__card-title {
  padding: 10px 20px;
  border-radius: 12px 12px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ed008c),
    to(#c72ab6)
  );
  background: -o-linear-gradient(left, #ed008c, #c72ab6);
  background: linear-gradient(90deg, #ed008c, #c72ab6);
}
.plans-list__card-title.centered-- {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.plans-list__card-title-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
}

.plans-list__card-title-commitment {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.plans-list__card-line {
  height: 1px;
  border: 0;
  border-top: 1px solid #ffffff78;
  margin: 0;
}

.plans-list__card-contracts {
  padding: 15px;
  position: relative;
}

.plans-list__card-contracts-blurp {
  width: 0;
  height: 0;
  border-top: 60px solid #f2ebdd;
  border-left: 60px solid transparent;
  position: absolute;
  top: -1px;
  right: 0;
  color: #ed008c;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.plans-list__card-contracts-blurp-inner {
  width: 60px;
  height: 60px;
  margin-top: -60px;
  margin-left: -60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.plans-list__card-contracts-blurp-inner > span {
  position: absolute;
  top: 5px;
  left: 20px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.plans-list__card-contracts-select {
  padding-right: 1.5rem;
  padding-left: 0.5rem;
  border: none;
  border-radius: 0;
  outline: none;
  margin-bottom: 6px;
  background-color: transparent;
  background-image: url("../images/shared/icons/arrow-down.svg");
  background-position: right -1.2rem center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  color: #fff;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.375;
  cursor: pointer;
  /* Reset Select */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-origin: content-box;
  /* Remove IE arrow */
}
.plans-list__card-contracts-select::-ms-expand {
  display: none;
}

.plans-list__card-contracts-select-option {
  background-color: #fff;
  color: #ed008c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
}

.plans-list__card-contracts-contents {
  min-height: 80px;
}
.plans-list__card-contracts-contents.no-min-h-- {
  min-height: 0;
}

.plans-list__card-contracts-content {
  margin-top: 10px;
  display: none;
}
.plans-list__card-contracts-content.show-- {
  display: block;
}

.plans-list__card-contracts-heading {
  color: #424242;
  font-size: 14px;
  font-weight: 700;
  line-height: 0.8;
}
.plans-list__card-contracts-heading.round-border-- {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 13px;
  border-radius: 20px;
  margin: 0 auto;
  background: #f2b826;
}

.plans-list__card-contracts-descriptions {
  max-width: 60%;
  margin: 24px auto 0;
  display: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.plans-list__card-contracts-additional {
  margin-top: 10px;
  margin-bottom: 10px;
}

.plans-list__card-contracts-additonal-heading {
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 0.7;
}

.plans-list__card-contracts-additonal-desc {
  max-width: 270px;
  margin: auto;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.plans__button-text {
  font-size: 14px;
  text-align: center;
}

.plans__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}

.plans__button {
  width: 16px;
  height: 16px;
  margin: auto;
  display: none;
  fill: #ed008c;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.plans__button.down-- {
  display: block;
}

.plans__button-svg {
  width: 100%;
  height: 100%;
}

.plans-list__card-details {
  margin-top: 16px;
  display: none;
}

.plans-list__card-details-content {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.plans-list__card-details-content.faded-- {
  opacity: 0.4;
}
.plans-list__card-details-content:last-child {
  margin-bottom: 0;
}

.plans-list__card-details-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.plans-list__card-details-desc {
  width: 100%;
}

.plans-list__card-details-desc-heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  word-break: break-word;
}
.plans-list__card-details-desc-heading.bold-- {
  font-weight: 700;
}

.plans-list__card-details-tooltip {
  width: 18px;
  height: 18px;
  margin-top: -3px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

.plans-list__card-details-tooltip-content {
  padding: 15px 20px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  bottom: 155%;
  left: 50%;
  z-index: 1;
  background-color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  -o-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  visibility: hidden;
  -webkit-transition-property: visibility, opacity;
  -o-transition-property: visibility, opacity;
  transition-property: visibility, opacity;
}
.plans-list__card-details-tooltip-content::after {
  content: "";
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: 5px;
  margin-left: -5px;
  position: absolute;
  top: 100%;
  left: 50%;
}

.plans-list__card-details-tooltip-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.plans-list__card-details-tooltip-content-item > img {
  max-width: none;
  margin-bottom: 5px;
}
.plans-list__card-details-tooltip-content-item > span {
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;	
  font-weight: 700;
}
.plans-list__card-details-tooltip-content-item
  + .plans-list__card-details-tooltip-content-item {
  padding-left: 20px;
}

.plans-list__card-details-tooltip:hover
  .plans-list__card-details-tooltip-content {
  visibility: visible;
  opacity: 1;
}

.plans-list__card-details-desc-extra {
  margin-top: 5px;
  color: #868686;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.plans-list__container.carousel-expanded-- .plans-list__card {
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.plans-list__container.carousel-expanded-- .plans-list__card-item {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.plans-list__container.carousel-expanded-- .plans-list__card-item:first-child {
  padding-left: 0;
}

.plans-list__container.carousel-expanded-- .plans-list__card-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.plans-list__container.carousel-expanded-- .plans-list__card-content-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.plans-list__container.carousel-expanded-- .plans-list__card-details {
  display: block;
}

@media (min-width: 800px) {
  .plans-list__container {
    max-width: none;
  }
  .plans-list__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .plans-list__card.centered-- {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
  .plans-list__card li {
    width: 100%;
  }
  .plans-list__card-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .plans-list__card-item:not(:first-child) {
    margin-left: 52px;
  }
  .plans-list__card-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .plans-list__card-container.small-- {
    max-width: 310px;
  }
  .plans-list__card-contracts-select {
    font-size: 16px;
  }
  .plans-list__card-content-body {
    padding: 20px 20px 20px 18px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .plans-list__card-title-name {
    font-size: 17px;
  }
  .plans-list__card-title-commitment {
    font-size: 14px;
  }
  .plans__button-text {
    display: none;
  }
  .plans__button-container {
    display: none;
  }
  .plans-list__card-details {
    margin-top: 0;
    display: block !important;
    /* stylelint-disable-line declaration-no-important */
  }
  .plans-list__container.carousel-expanded-- {
    overflow: unset;
  }
  .plans-list__container.carousel-expanded-- .plans-list__card {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .plans-list__container.carousel-expanded-- .plans-list__card-item {
    width: 33.3333%;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    position: relative;
  }
  .plans-list__container.carousel-expanded-- .plans-list__card-container {
    width: auto;
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  .plans-list__card-title-name {
    font-size: 22px;
  }
  .plans-list__card-title-commitment {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .plans-list__card-title-name {
    font-size: 24px;
  }
  .plans-list__card-title-commitment {
    font-size: 18px;
  }
}

.point-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.point-list__item {
  display: grid;
}

.point-list__item-image {
  width: 75px;
  height: auto;
  margin: auto;
  margin-top: 0;
  margin-bottom: 20px;
}

.point-list__item-content {
  text-align: center;
}

.point-list__item-content-heading {
  font-size: 18px;
  font-weight: 700;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;	
  margin-bottom: 12px;
}

.point-list__item-content-list {
  padding: 0;
  list-style-type: none;
}
.point-list__item-content-list li:before {
  line-height: 22px;
  content: "•";
}

.point-list__item-content-list-item {
  font-size: 14px;
  color: #868686;
}

.point-list__item-content-text {
  width: 100%;
  line-height: 1.5;
}
.point-list__item-content-text + .point-list__item-content-text {
  margin-top: 16px;
}

@media (min-width: 800px) {
  .point-list {
    grid-template-columns: 1fr 1fr;
    gap: 50px 80px;
  }
  .point-list__item {
    grid-template-columns: 100px 1fr;
    gap: 32px;
  }
  .point-list__item-image {
    width: 100px;
    height: auto;
    margin: 0;
  }
  .point-list__item-content {
    text-align: left;
  }
  .point-list__item-content-heading {
    font-size: 27px;
  }
  .point-list__item-content-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
  }
  .point-list__item-content-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 16px;
  }
}

/*---- Transitions ----*/
.transition-in.fade-and-slide-from-below-- .transition-in__elem {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.transition-in.fade-and-slide-from-below--.active-- .transition-in__elem {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) none;
  -o-transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) none;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) none;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.transition-in.active-- .transition-in__elem.stagger-1-- {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.transition-in.active-- .transition-in__elem.stagger-2-- {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.transition-in.active-- .transition-in__elem.stagger-3-- {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.transition-in.active-- .transition-in__elem.stagger-4-- {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.transition-in.active-- .transition-in__elem.stagger-5-- {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.transition-in.active-- .transition-in__elem.stagger-6-- {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.transition-in.active-- .transition-in__elem.stagger-7-- {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.transition-in.active-- .transition-in__elem.stagger-8-- {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.transition-in.active-- .transition-in__elem.stagger-9-- {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.transition-in.active-- .transition-in__elem.stagger-10-- {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

/*-----------------------------------------------------------------------------
  $ Sections
-----------------------------------------------------------------------------*/
.section {
  padding: 60px 0;
  position: relative;
}
.section.no-pd-- {
  padding: 0;
}
.section.compact-- {
  padding: 40px 0;
}
.section.compact-top-- {
  padding-top: 40px;
}
.section.compact-bottom-- {
  padding-bottom: 40px;
}
.section.tiny-- {
  padding: 20px 0;
}
.section.tiny-top-- {
  padding-top: 20px;
}
.section.tiny-bottom-- {
  padding-bottom: 20px;
}
.section.large-- {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section.full-height-- {
  min-height: calc(100vh - 40px);
}
.section.centred-- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section.align-center-- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 799.98px) {
  .section.tiny-md-dn-- {
    padding: 20px 0;
  }
  .section.tiny-top-md-dn-- {
    padding-top: 20px;
  }
  .section.tiny-bottom-md-dn-- {
    padding-bottom: 20px;
  }
}

.section__bg {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.section__bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section__bg-image.wh-full-- {
  width: 100%;
  height: 100%;
}
.section__bg-image.desktop-- {
  display: none;
}
.section__bg-image.mobile-- {
  display: block;
}

.section__content {
  position: relative;
  z-index: 1;
}

.section__block + .section__block {
  margin-top: 40px;
}
.section__block + .section__block.no-mg-- {
  margin-top: 0;
}
.section__block + .section__block.tiny--,
.section__block + .section__block.tiny-md-dn-- {
  margin-top: 15px;
}
.section__block + .section__block.short--,
.section__block + .section__block.short-md-dn-- {
  margin-top: 30px;
}

.section__center {
  text-align: center;
}

.section__text-block {
  text-align: center;
}
.section__text-block.left-- {
  text-align: left;
}

.section__desc {
  margin-top: 16px;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.section__desc.grey-- {
  color: #868686;
}
.section__desc.text-small-- {
  font-size: 14px;
}
.section__desc.line-tall-- {
  line-height: 1.5;
}
.section__desc.small-- {
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
}
.section__desc.medium-- {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.section__desc.bold-- {
  font-weight: 700;
}
.section__desc.white-- {
  color: #fff;
}
.section__desc.center-- {
  text-align: center;
}
.section__desc span.highlight {
  font-weight: 700;
  color: #ed008c;
}

.section__link-text {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  color: #3bbfbb;
}
.section__link-text.m-top-- {
  margin-top: 40px;
}

@media (min-width: 800px) {
  .section.full-height-- {
    padding: 48px 0;
  }
  .section__container {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }
  .section__container.full-width-- {
    max-width: 100%;
  }
  .section__container.wide-- {
    max-width: 824px;
  }
  .section__container.narrow-- {
    max-width: 640px;
  }
  .section__bg-image.desktop-- {
    display: block;
  }
  .section__bg-image.mobile-- {
    display: none;
  }
  .section__desc.narrow-- {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
  .section.medium-desktop-- {
    padding: 100px 0;
  }
  .section.large-desktop-- {
    padding: 120px 0;
  }
  .section__block + .section__block,
  .section__block + .section__block.tiny-md-dn--,
  .section__block + .section__block.short-md-dn-- {
    margin-top: 50px;
  }
  .section__container {
    max-width: 920px;
  }
  .section__container.wide-- {
    max-width: 1024px;
  }
  .section__container.narrow-- {
    max-width: 820px;
  }
  .section__desc {
    font-size: 18px;
  }
  .section__desc.text-small-- {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .section__container {
    max-width: 1024px;
  }
  .section__container.wide-- {
    max-width: 1128px;
  }
}

/*-----------------------------------------------------------------------------
  $ Sidenav
-----------------------------------------------------------------------------*/
.sidenav {
  display: none;
  position: fixed;
  top: 55%;
  left: 20px;
  z-index: 12;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sidenav:hover .sidenav-item__text {
    pointer-events:auto;
	display:block;
}
.sidenav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.sidenav-item + .sidenav-item {
  margin-top: 15px;
}
.sidenav-item:hover .sidenav-item__pillar {
  background-color: #868686;
}
.sidenav-item:hover .sidenav-item__text {
  color: #868686;
  opacity: 1;
  display: block;
  pointer-events:none;
}
.sidenav-item.active-- .sidenav-item__pillar {
  background-color: #ed008c;
}
.sidenav-item.active-- .sidenav-item__text {
  opacity: 1;
}
.sidenav-item.active-- .sidenav-item__text.hide-- {
  opacity: 0;
  display: none;
}
.sidenav-item.active--.white-- .sidenav-item__pillar {
  background-color: #fff;
}
.sidenav-item.active--.white-- .sidenav-item__text {
  background: #fff; 
}
.sidenav-item.active--:hover .sidenav-item__pillar {
  background-color: #ff21a4;
}

.sidenav-item.active-- .sidenav-item__text {
  color: #ff21a4;
  opacity: 1;
  display: block;
  pointer-events:auto;
}

.sidenav-item.active--:hover .sidenav-item__text {
  color: #ff21a4;
  opacity: 1;
  display: block;
  pointer-events:auto;
}

.sidenav-item.hide-- .sidenav-item__text {
  opacity: 0;
  display: none;
}

.sidenav-item__pillar {
  width: 2px;
  height: 35px;
  margin-right: 10px;
  margin-top: 6px;
  margin-bottom: 6px;
  background-color: #c2c2c2;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  outline: none;
}

.sidenav-item__text {
  color: #424242;
  font-size: 15px;
  opacity: 0;
  display: none;
  -webkit-transition-property: color, opacity;
  -o-transition-property: color, opacity;
  transition-property: color, opacity;
}

@media (min-width: 800px) {
  .sidenav {
    display: block;
    -webkit-transition: -webkit-transform 0.6s
      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translateY(-50%) scale(0.75);
    -ms-transform: translateY(-50%) scale(0.75);
    transform: translateY(-50%) scale(0.75);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
  .sidenav:hover {
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
}

/*----------------------------------------------------------------------------
  $ Site Footer
-----------------------------------------------------------------------------*/
/* .site-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 13;
  background-color: #fff;
}

.site-footer__wrapper {
  width: 100%;
  padding: 30px;
  border-top: 1px solid #e2e2e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-footer__logo {
  margin-bottom: 50px;
  display: none;
}

.site-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-footer__container .site-footer__top-section:nth-child(1) {
  color: #ed008c;
}
.site-footer__container
  .site-footer__top-section:nth-child(1)
  .site-footer__top-section-header {
  color: #424242;
}
.site-footer__container.section-- {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.site-footer__icon {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f2f2f2;
}
.site-footer__icon > i {
  margin-top: -2px;
}
.site-footer__icon.black-- {
  color: #424242;
}
.site-footer__icon:hover {
  color: #ff21a4;
}
.site-footer__icon:not(:first-child) {
  margin-left: 10px;
}
.site-footer__icon.hidden-- {
  display: none;
}

.site-footer__nav {
  padding: 0;
  list-style-type: none;
}
.site-footer__nav li {
  display: inline;
}
.site-footer__nav li:hover {
  color: #ff21a4;
}
.site-footer__nav li:not(:first-child):before {
  content: "l";
  margin: 0 10px;
  color: #868686;
}

.footer-icon-img {
  width: 30px;
}

@media (min-width: 800px) {
  .site-footer__wrapper.more-padding-- {
    padding: 60px 30px;
  }
  .site-footer__logo {
    display: block;
  }
  .site-footer__container.section-- {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

/* ---- Top ---- 
.site-footer__top {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-weight: 700;
}

.site-footer__top-section {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-footer__top-section:not(:first-child) {
  margin-top: 40px;
}

.site-footer__top-section-header {
  margin-bottom: 10px;
  font-size: 14px;
}

@media (min-width: 800px) {
  .site-footer__top-section:not(:first-child) {
    margin-top: 0;
    margin-left: 60px;
  }
  .site-footer__top-section.right-- {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

/* ---- Bottom ---- 
.site-footer__bottom {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #868686;
  font-size: 12px;
}

.site-footer__bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer__bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-footer__bottom-right-item {
  margin-top: 15px;
}

@media (min-width: 800px) {
  .site-footer__bottom-right {
    padding-left: 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: right;
  }
  .site-footer__bottom-right-item {
    margin-top: 0;
  }
  .site-footer__bottom-right-item:not(:first-child) {
    margin-top: 5px;
  }
}


.site-footer__certified-logo {
  max-height: 29px;
  mix-blend-mode: luminosity;
}
.site-footer__certified-logo:not(:first-child) {
  margin-left: 5px;
}

.site-footer__link {
  color: #ed008c;
}
.site-footer__link:hover {
  color: #ff21a4;
} */

/*-----------------------------------------------------------------------------
  $ Site Header
-----------------------------------------------------------------------------*/
/* .site-header {
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  background-color: #fff;
  color: #424242;
  font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif;
  -webkit-transition-property: background-color, border-bottom, color;
  -o-transition-property: background-color, border-bottom, color;
  transition-property: background-color, border-bottom, color;
}
.site-header.extra-padding-- ~ .site-spacer {
  padding-top: 90px;
}
.site-header.extra-padding-- ~ .storytelling {
  min-height: calc(100% - 44px - 46px);
}
.site-header.transparent-- ~ .site-spacer {
  padding-top: 0;
}
.site-header.transparent-- ~ .storytelling {
  min-height: 100%;
}

.site-header.transparent-- {
  border-bottom: 1px solid transparent;
  background-color: transparent; }
  .site-header.transparent-- .site-header__mobile-toggle > .hamburger-box > .hamburger-inner, .site-header.transparent-- .site-header__mobile-toggle > .hamburger-box > .hamburger-inner:before, .site-header.transparent-- .site-header__mobile-toggle > .hamburger-box > .hamburger-inner:after {
    background-color: #fff; }
  .site-header.transparent-- .site-header__subnav {
    border-bottom: 1px solid transparent;
    background-color: transparent; }
  .site-header.transparent-- .site-header__logo {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1); }

@media (min-width: 800px) {
  .site-header.transparent-- {
    color: #fff; }
    .site-header.transparent-- .site-header__subnav .site-header__subnav-item:not(.selected--):not(.title--) {
      color: #fff; } }

.site-header__wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
 */
/* --- Scroll state ---- */
/* .site-header.scroll-state-- .site-header__subnav,
.site-header.scroll-state-- .site-header__mobile-subnav {
  top: 0;
}

.site-header.scroll-state-- .site-header__subnav,
.site-header.scroll-state-- .site-header__mobile-subnav {
  height: calc(100% + 1px);
}

.site-header.scroll-state-- .site-header__subnav-item.title-- {
  display: inline;
  text-align: left;
  cursor: pointer;
}
 */
/* ---- Mobile ---- */
/* .site-header__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-header__mobile-toggle {
  position: absolute;
  left: 20px;
}

.site-header__mobile-subnav {
  width: 100%;
  height: 50px;
  padding: 5px 20px;
  border-bottom: 1px solid #e2e2e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background-color: #fff;
  -webkit-transition-property: top;
  -o-transition-property: top;
  transition-property: top;
}
.site-header__mobile-subnav.hidden-- {
  display: none;
}

.site-header__mobile-subnav-dropdown {
  margin-right: 10px;
}

.site-header__mobile-subnav-dropdown-item-container {
  width: 100vw;
  padding: 0 20px 20px;
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  list-style: none;
  background-color: #fff;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  opacity: 0;
}

.site-header__mobile-subnav-dropdown-item {
  padding: 20px 0;
  border-bottom: 1px solid #e2e2e2;
}
.site-header__mobile-subnav-dropdown-item:hover {
  color: #ff21a4;
}
.site-header__mobile-subnav-dropdown-item.selected-- {
  color: #ed008c;
  font-weight: 700;
}
.site-header__mobile-subnav-dropdown-item > a {
  padding: 20px;
}

@media (min-width: 800px) {
  .site-header__mobile {
    display: none;
  }
}
 */
/* ---- Left ---- */
/* .site-header__left {
  display: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-header__logo-holder {
  width: auto;
}

.site-header__logo {
  width: 111px;
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  -o-transition-property: filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
}
.site-header__logo.mobile-- {
  width: 80px;
}

.site-header__nav {
  padding: 0;
  margin-left: 15px;
  float: left;
  overflow: hidden;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.site-header__nav-item {
  margin-left: 30px;
  display: inline;
  font-size: 16px;
  font-weight: 700;
}
.site-header__nav-item.selected-- {
  color: #ed008c;
}
.site-header__nav-item.selected-- > .site-header__subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header__nav-item > a:hover {
  color: #ff21a4;
}
.site-header__nav-item.mg0-- {
  margin: 0;
}

.site-header__subnav {
  width: 100%;
  height: 52px;
  border-bottom: 1px solid #e2e2e2;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background-color: #fff;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
  -webkit-transition-property: top;
  -o-transition-property: top;
  transition-property: top;
}

.site-header__subnav-wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 101;
}

.site-header__subnav-links {
  padding: 0;
}

.site-header__subnav-item {
  display: inline;
  color: #424242;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}
.site-header__subnav-item.title--,
.site-header__subnav-item.selected-- {
  color: #ed008c;
  font-weight: 700;
}
.site-header__subnav-item.title-- {
  width: 155px;
  display: none;
  font-size: 18px;
}
.site-header__subnav-item:not(.title--) {
  margin-right: 30px;
}
.site-header__subnav-item.title--:hover,
.site-header__subnav-item > a:hover {
  color: #ff21a4;
}

.site-header__subnav-buttons {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.site-header__subnav-buttons-right {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.site-header__subnav-button {
  height: 30px;
  padding: 5px 10px;
  font-size: 14px;
  white-space: nowrap;
}
.site-header__subnav-button[hidden-nav-toggler] {
  display: none;
}
.site-header__subnav-button:not(:last-child) {
  margin-right: 10px;
}

@media (min-width: 800px) {
  .site-header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-header__subnav-button {
    padding: 5px 10px;
    font-size: 14px;
  }
  .site-header__subnav-button[hidden-nav-toggler] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-header__logo-holder {
    width: 111px;
  }
}
 */
/* ---- Right ---- */
/* .site-header__right {
  width: 100%;
  display: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  bottom: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.site-header__icons {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.site-header__icons > li {
  display: inline;
}
.site-header__icons > li:hover {
  color: #ff21a4;
}
.site-header__icons > li:not(:first-child) {
  margin-left: 5px;
}

.site-header__icons-text {
  display: none;
  font-size: 16px;
  font-weight: 700;
}

.site-header__icon {
  font-size: 20px;
}

@media (min-width: 800px) {
  .site-header__right {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: initial;
  }
}
 */
/* ---- Mobile overlay ---- */
/* @media (max-width: 799.98px) {
  .site-header.toggled-- {
    height: calc(100% + 1px);
    overflow-y: auto; */
    /* Left (top) */
    /* Right (bottom) */
/*   }
  .site-header.toggled-- .site-header__wrapper {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .site-header.toggled-- .site-header__mobile {
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    background-color: #fff;
  }
  .site-header.toggled--
    .site-header__mobile-toggle
    > .hamburger-box
    > .hamburger-inner,
  .site-header.toggled--
    .site-header__mobile-toggle
    > .hamburger-box
    > .hamburger-inner:before,
  .site-header.toggled--
    .site-header__mobile-toggle
    > .hamburger-box
    > .hamburger-inner:after {
    background-color: #ed008c;
  }
  .site-header.toggled-- .site-header__left {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    background-color: #fff;
  }
  .site-header.toggled-- .site-header__left.hide-- {
    display: none;
  }
  .site-header.toggled-- .site-header__logo {
    -webkit-filter: none;
    filter: none;
  }
  .site-header.toggled-- .site-header__logo:not(.mobile--) {
    display: none;
  }
  .site-header.toggled-- .site-header__nav {
    width: 100%;
    margin: 0;
  }
  .site-header.toggled-- .site-header__nav > li {
    padding: 15px 0;
    margin: 0;
    display: block;
  }
  .site-header.toggled-- .site-header__nav > li > .site-header__subnav {
    display: none;
  }
  .site-header.toggled-- .site-header__nav > li:first-child {
    padding-top: 0;
  }
  .site-header.toggled-- .site-header__nav-item {
    font-size: 18px;
    font-weight: 500;
  }
  .site-header.toggled-- .site-header__right {
    padding: 35px 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    background-color: #fff;
  }
  .site-header.toggled-- .site-header__right:before {
    content: "";
    border-top: 1px solid #e2e2e2;
    position: absolute;
    top: 0;
    right: 20px;
    left: 20px;
  }
  .site-header.toggled-- .site-header__icons > li {
    margin: 0;
    display: block;
  }
  .site-header.toggled-- .site-header__icons > li:not(:first-child) {
    margin-top: 30px;
  }
  .site-header.toggled-- .site-header__icons > li:hover {
    color: #e2e2e2;
  }
  .site-header.toggled-- .site-header__icons-text {
    display: inline;
    font-size: 18px;
    font-weight: 500;
  }
  .site-header.toggled-- .site-header__subnav-button {
    display: none;
  }
}
 */
/* ---- Hamburger button ---- */
/* .hamburger {
  padding: 0;
}

.hamburger-box {
  width: 15px;
  height: 12px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #ed008c;
}

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

.hamburger-inner::after {
  bottom: -5px;
}
 */
/*---- Site header search ----*/
/* .site-header__search {
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 16;
  font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
}

.site-header__search-field {
  position: relative;
}

.site-header__search-field-icon {
  position: absolute;
  pointer-events: none;
}

.site-header__search-field-control {
  width: 100%;
  border: 0;
  outline: 0;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

.site-header__search-field-close {
  width: 24px;
  height: 24px;
  position: absolute;
  background: center no-repeat;
  cursor: pointer;
}

.site-header__search-quick-links-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-header.search-is-shown-- .site-header__search {
  visibility: visible;
  opacity: 1;
}

.site-header.quick-links-is-hidden-- .site-header__search-quick-links {
  display: none;
}

@media (max-width: 799.98px) {
  .site-header__search {
    height: calc(100% - 39px);
    top: 39px;
    background: #fff;
    font-size: 16px;
    opacity: 0;
    -webkit-transform: translateY(280px);
    -ms-transform: translateY(280px);
    transform: translateY(280px);
    visibility: hidden;
    -webkit-transition-property: visibility, opacity, -webkit-transform;
    transition-property: visibility, opacity, -webkit-transform;
    -o-transition-property: visibility, opacity, transform;
    transition-property: visibility, opacity, transform;
    transition-property: visibility, opacity, transform, -webkit-transform;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-header__search-form {
    padding: 20px;
  }
  .site-header__search-mobile-back {
    margin-bottom: 5px;
    color: #ed008c;
    font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif;
    font-size: 12px;
  }
  .site-header__search-mobile-back-icon {
    position: relative;
    top: 1px;
  }
  .site-header__search-mobile-back-icon:before {
    margin-right: 0;
    margin-left: 0;
    vertical-align: middle;
  }
  .site-header__search-field-icon {
    top: 7px;
    left: 0;
  }
  .site-header__search-field-icon:before {
    margin: 0;
  }
  .site-header__search-field-control {
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid currentColor;
  }
  .site-header__search-field-control::-webkit-input-placeholder {
    color: #868686;
  }
  .site-header__search-field-control::-ms-input-placeholder {
    color: #868686;
  }
  .site-header__search-field-control:-ms-input-placeholder {
    color: #868686;
  }
  .site-header__search-field-control::-moz-placeholder {
    color: #868686;
  }
  .site-header__search-field-control:-moz-placeholder {
    color: #868686;
  }
  .site-header__search-field-close {
    display: none;
    top: 7px;
    right: 0;
    background-image: url(../../assets/images/shared/icons/icon_close.svg);
    background-size: contain;
  }
  .site-header__search-field-close.active-- {
    display: block;
  }
  .site-header__search-quick-links {
    margin-top: 30px;
  }
  .site-header__search-quick-links-heading {
    margin-bottom: 30px;
    color: #868686;
  }
  .site-header__search-quick-links-list-item {
    padding: 15px 0;
  }
  .site-header__search-quick-links-list-item:first-child {
    padding-top: 0;
  }
  .site-header.search-is-shown-- .site-header__search {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (min-width: 800px) {
  .site-header__search {
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    opacity: 0;
    -webkit-transition-property: visibility, opacity;
    -o-transition-property: visibility, opacity;
    transition-property: visibility, opacity;
    visibility: hidden;
  }
  .site-header__search-form {
    max-width: 550px;
    margin: 0 auto;
  }
  .site-header__search-mobile-back {
    display: none;
  }
  .site-header__search-field {
    border-bottom: 1px solid #c2c2c2;
    background-color: #fff;
  }
  .site-header__search-field-control {
    padding: 15px 40px;
    color: #424242;
  }
  .site-header__search-field-control::-webkit-input-placeholder {
    color: #909090;
  }
  .site-header__search-field-control::-ms-input-placeholder {
    color: #909090;
  }
  .site-header__search-field-control:-ms-input-placeholder {
    color: #909090;
  }
  .site-header__search-field-control::-moz-placeholder {
    color: #909090;
  }
  .site-header__search-field-control:-moz-placeholder {
    color: #909090;
  }
  .site-header__search-field-icon {
    top: 12px;
    left: 6px;
    color: #909090;
  }
  .site-header__search-field-close {
    top: 10px;
    right: 10px;
    background-image: url(../../assets/images/shared/icons/icon_close_grey.svg);
  }
  .site-header__search-field-close.mobile-only-- {
    display: none;
  }
  .site-header__search-quick-links {
    padding: 30px 40px;
    border-radius: 0 0 12px 12px;
    background-color: #fff;
  }
  .site-header__search-quick-links-heading {
    color: #868686;
  }
  .site-header__search-quick-links-list {
    padding: 0;
    margin: 0;
    list-style: none;
    color: #424242;
  }
  .site-header__search-quick-links-list-item:first-child {
    padding-top: 20px;
  }
  .site-header__search-quick-links-list-item:last-child {
    padding-bottom: 0;
  }
  .site-header__search-quick-links-list-link {
    padding: 8px 0;
    display: inline-block;
    width: 113%;
    margin: 0 -30px;
    padding-left: 30px;
  }
  .site-header__search-quick-links-list-link:hover {
    color: #ed008c;
    background: #f5f5f5;
  }
  .site-header.search-is-shown-- .site-header__nav,
  .site-header.search-is-shown-- .site-header__right {
    opacity: 0;
  }
  .site-header.transparent-- .site-header__search-field {
    border-bottom: 0;
    background-color: transparent;
  }
  .site-header.transparent-- .site-header__search-field-control {
    color: #fff;
  }
}
 */
/*-----------------------------------------------------------------------------
  $ Site Spacer
-----------------------------------------------------------------------------*/
/* .site-spacer {
  padding-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: padding-top 0.1s;
  -o-transition: padding-top 0.1s;
  transition: padding-top 0.1s;
}

.spec-list {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
}
.spec-list.white-- .spec-list__item {
  color: white;
}

.spec-list__item {
  text-align: center;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .spec-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }
  .spec-list__item {
    text-align: left;
  }
}
 */
/*-----------------------------------------------------------------------------
  $ Steps Card
-----------------------------------------------------------------------------*/
.steps-card__button-container {
  color: #c1c1c1;
}

.steps-card__button {
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}
.steps-card__button.active-- {
  color: #ed008c;
}

.steps-card-container {
  max-width: 280px;
  margin-right: auto;
  margin-left: auto;
}

.steps-card-list {
  padding-top: 30px;
  display: block;
}

.steps-card-list__item {
  margin-top: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  text-align: left;
  -webkit-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  -o-transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1) none;
  -webkit-transition-property: z-index, -webkit-filter, -webkit-transform;
  transition-property: z-index, -webkit-filter, -webkit-transform;
  -o-transition-property: z-index, filter, transform;
  transition-property: z-index, filter, transform;
  transition-property: z-index, filter, transform, -webkit-filter, -webkit-transform; }
  .steps-card-list__item.-m-top-mobile-- {
    margin-top: -45px; }
  .steps-card-list__item.medium-- {
    z-index: 2;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-filter: blur(2px);
            filter: blur(2px); }
  .steps-card-list__item.small-- {
    z-index: 1;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-filter: blur(3px);
            filter: blur(3px); }
  .steps-card-list__item.smaller-- {
    z-index: 0;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-filter: blur(3px);
            filter: blur(3px); }
  .steps-card-list__item.active-- {
    z-index: 3;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-filter: none;
            filter: none; }
  .steps-card-list__item:last-of-type .steps-card-list__item-reflection {
    position: relative;
    width: 100%;
    height: 60px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 0 0 10px 10px;
    top: 8px;
    -webkit-transform: rotateZ(180deg);
        -ms-transform: rotate(180deg);
            transform: rotateZ(180deg); }

.steps-card-list__item-content {
  padding: 20px;
  border: 1px solid #efefef;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 10px 3px 80px #42424240;
  box-shadow: 10px 3px 80px #42424240;
  cursor: pointer;
  overflow: hidden; }
  .steps-card-list__item-content.col-- {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center; }
  .steps-card-list__item-content.pd-large-desktop-- {
    padding: 20px; }

.steps-card-list__item-bg-visual-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.steps-card-list__item-bg-visual {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.steps-card-list__item-bg-visual.desktop-- {
  display: none;
}
.steps-card-list__item-bg-visual.mobile-- {
  display: block;
}

.steps-card-list__item-bg-visual-container ~ .steps-card-list__item-container {
  padding-right: 25px;
}

.steps-card-list__item-visual-container {
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1; }
  .steps-card-list__item-visual-container.fixed-- > .steps-card-list__item-visual {
    height: auto;
    width: auto; }

.steps-card-list__item-visual {
  height: 64px;
  margin-right: auto;
  margin-left: auto;
}

.steps-card-list__item-container {
  width: 75%;
  padding-left: 20px;
  margin-top: -10px;
  position: relative;
  z-index: 1;
}
.steps-card-list__item-container.col-- {
  width: auto;
  padding-left: 0;
  margin-top: 0;
}

.steps-card-list__item-heading {
  padding-top: 10px;
  color: #ed008c;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.steps-card-list__item-subheading {
  padding-top: 10px;
  color: #ed008c;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.typography.steps-card-list__item-typography {
  padding-top: 10px;
  color: #868686;
  font-size: 12px;
  line-height: 1.35;
}
.typography.steps-card-list__item-typography.primary-- {
  color: #F454CD;
}
.typography.steps-card-list__item-typography.bold-- {
  font-weight: 700;
}
.typography.steps-card-list__item-typography.pd-top-- {
  padding-top: 16px;
}

.steps-card-list-button {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 400px) {
  .steps-card-container {
    max-width: 342px;
  }
  .steps-card-list__item-bg-visual-container
    ~ .steps-card-list__item-container {
    padding-right: 44px;
  }
  .steps-card-list__item-heading {
    font-size: 18px;
  }
  .steps-card-list__item-subheading {
    font-size: 14px;
  }
  .typography.steps-card-list__item-typography {
    font-size: 14px;
  }
}

@media (min-width: 640px) {
  .steps-card__button {
    font-size: 44px;
  }
}

@media (min-width: 800px) {
  .steps-card-container {
    max-width: 740px;
  }
  .steps-card-list {
    padding-top: 0;
    padding-left: 40px;
    margin-top: -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .steps-card-list.nowrap-- {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .steps-card-list.-m-right-- {
    margin-right: -76px;
  }
  .steps-card-list__item {
    width: calc(33.3333% + 39px);
    padding-top: 30px;
    margin-top: 0;
    margin-left: -60px;
    text-align: center;
  }
  .steps-card-list__item.active-- {
    margin-left: -60px;
  }
  .steps-card-list__item.wide-- {
    min-width: 300px; 
    }
    .steps-card-list__item.-m-top-mobile-- {
      margin-top: 0; 
    }
  .steps-card-list__item-reflection {
    position: relative;
    width: 100%;
    height: 60px;
    background: -webkit-gradient(
      linear, 
      left bottom, 
      left top, 
      from(rgba(255, 255, 255, 0.4)), 
      to(rgba(255, 255, 255, 0))
      );
    background: -o-linear-gradient(
      bottom, 
      rgba(255, 255, 255, 0.4) 0%, 
      rgba(255, 255, 255, 0) 100%
      );
    background: linear-gradient(
      0deg,
       rgba(255, 255, 255, 0.4) 0%, 
       rgba(255, 255, 255, 0) 100%
       );
    border-radius: 0 0 10px 10px;
    top: 8px;
    -webkit-transform: rotateZ(180deg);
        -ms-transform: rotate(180deg);
            transform: rotateZ(180deg); 
  }
  .steps-card-list__item-content {
    padding: 30px;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .steps-card-list__item-content.pd-large-desktop-- {
      padding: 32px 20px; }
  .steps-card-list__item-bg-visual-container
    ~ .steps-card-list__item-container {
    padding-right: 0;
  }
  .steps-card-list__item-bg-visual {
    width: 100%;
    height: 32%;
  }
  .steps-card-list__item-bg-visual.desktop-- {
    display: block;
  }
  .steps-card-list__item-bg-visual.mobile-- {
    display: none;
  }
  .steps-card-list__item-visual {
    height: 90px;
  }
  .steps-card-list__item-visual.small-desktop-- {
    height: 64px;
  }
  .steps-card-list__item-container {
    width: auto;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
  }
  .steps-card-list__item-heading {
    padding-top: 22px;
    font-size: 28px;
  }
  .steps-card-list__item-subheading {
    padding-top: 22px;
    font-size: 16px;
  }
  .steps-card-list__item-subheading ~ .steps-card-list__item-heading {
    padding-top: 10px;
  }
  .typography.steps-card-list__item-typography {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .steps-card__button {
    font-size: 48px;
  }
  .steps-card-container {
    max-width: 760px;
  }
  .steps-card-list {
    margin-top: -50px;
  }
  .steps-card-list__item {
    padding-top: 50px; }
    .steps-card-list__item.wide-- {
      min-width: 360px; }
  .steps-card-list__item-bg-visual {
    height: 40%;
  }
}

/*-----------------------------------------------------------------------------
  $ Storytelling
-----------------------------------------------------------------------------*/
.storytelling {
  width: 100%;
  min-height: calc(100vh - 93px);
  position: relative;
  z-index: 11;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  -webkit-transition-property: min-height;
  -o-transition-property: min-height;
  transition-property: min-height;
  margin-top:93px;
}

@media(max-width:1024px){
	.storytelling {
		min-height: calc(100vh - 90px);
		margin-top:90px;
	}
}

.storytelling__next-button {
  position: absolute;
  bottom: 26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
  font-size: 14px;
}
.storytelling__next-button img {
  height: 20px;
}

.storytelling__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: center / cover no-repeat;
}

.storytelling__section:after {
  content: "";
  width: 120%;
  height: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: -o-radial-gradient(closest-side, black, rgba(0, 0, 0, 0));
  background: radial-gradient(closest-side, black, rgba(0, 0, 0, 0));
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.15;
}

.storytelling__section,
.storytelling__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: center / cover no-repeat;
}

.storytelling__background,
.storytelling__message {
  opacity: 0;
}

.storytelling__background {
  width: 125%;
  height: 125%;
  top: -12.5%;
  left: -12.5%;
}

.storytelling__background-inner {
  width: 100%;
  height: 100%;
  background: center / cover no-repeat; }
  .storytelling__background.enhancement-layer-- .storytelling__background-inner {
    opacity: 0;
    -webkit-transition: 1.5s linear opacity;
    -o-transition: 1.5s linear opacity;
    transition: 1.5s linear opacity; }
  .storytelling__section.animate-enhancement-layer-- .storytelling__background.enhancement-layer-- .storytelling__background-inner {
    opacity: 1; }
  .storytelling__section.animate-enhancement-layer-- .storytelling__background.enhancement-layer-- .storytelling__background-inner.start-loop-- {
    -webkit-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    -webkit-animation: 2.5s linear infinite alternate pulse;
            animation: 2.5s linear infinite alternate pulse; }

.storytelling__background-inner-mobile {
  width: 100%;
  height: 100%;
  background: center / cover no-repeat; }
  .storytelling__background.enhancement-layer-- .storytelling__background-inner-mobile {
    opacity: 0;
    -webkit-transition: 1.5s linear opacity;
    -o-transition: 1.5s linear opacity;
    transition: 1.5s linear opacity; }
  .storytelling__section.animate-enhancement-layer-- .storytelling__background.enhancement-layer-- .storytelling__background-inner-mobile {
    opacity: 1; }
  .storytelling__section.animate-enhancement-layer-- .storytelling__background.enhancement-layer-- .storytelling__background-inner-mobile.start-loop-- {
    -webkit-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    -webkit-animation: 2.5s linear infinite alternate pulse;
            animation: 2.5s linear infinite alternate pulse; }

.storytelling__message {
  max-width: 320px;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.storytelling__message.wide-- {
  max-width: 350px;
}
.storytelling__message.large-- {
  width: 100%;
  max-width: 100%;
}
.storytelling__message.pd-top-mobile-- {
  padding-top: 20px;
}

.storytelling__heading,
.storytelling__subheading {
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
}
.storytelling__heading.small--,
.storytelling__subheading.small-- {
  font-size: 3vw;
}

.storytelling__heading > span,
.storytelling__subheading > span {
  display: inline-block;
}

.storytelling__heading > span > span,
.storytelling__subheading > span > span {
  position: relative;
  z-index: -1; }
  .storytelling__heading > span > span::before,
  .storytelling__subheading > span > span::before {
    content: '';
    width: 400px;
    height: 400px;
    display: inline-block;
    position: absolute;
    top: -270px;
    left: -190px;
    z-index: -1;
    background: url("../../../../uploads/assets/images/pages/for-home/storytelling/lens-flare.png") no-repeat 0 0;
    background-size: 400px 400px;
    opacity: 0;
    -webkit-transition: 1.5s linear opacity;
    -o-transition: 1.5s linear opacity;
    transition: 1.5s linear opacity; }
  .storytelling__section.animate-lens-flare-- .storytelling__heading > span > span::before, .storytelling__section.animate-lens-flare--
  .storytelling__subheading > span > span::before {
    opacity: 1; }
  .storytelling__section.animate-lens-flare-- .storytelling__heading > span > span.start-loop--::before, .storytelling__section.animate-lens-flare--
  .storytelling__subheading > span > span.start-loop--::before {
    -webkit-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    -webkit-animation: 2.5s linear infinite alternate pulse;
            animation: 2.5s linear infinite alternate pulse; }

.storytelling__heading {
  line-height: 1.1;
  word-break: break-word;
}

.storytelling__subheading {
  line-height: 1;
}

.storytelling__paragraph {
  padding-top: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.storytelling__paragraph.tiny-- {
  line-height: 1.2;
}
.storytelling__paragraph:first-child {
  padding-top: 0;
}

.storytelling__usp-container {
  margin-left: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.storytelling__usp-container:first-child {
  padding-top: 0;
}

.storytelling__usp {
  width: 50%;
  padding-top: 30px;
  padding-left: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.storytelling__usp.large-- {
  width: 7em;
  max-width: 440px;
  padding-top: 50px;
  font-size: 6vw;
}

.bounce {
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}

.float {
  -webkit-animation: 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-12px);
    transform: translatey(-12px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-12px);
    transform: translatey(-12px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}

@media (min-width: 320px) {
  .storytelling__background-inner {
    display: none;
  }
  .storytelling__background-inner-mobile {
    display: block;
  }
  .storytelling__next-button {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .storytelling__subheading.small-- {
    font-size: 4vw;
    padding: 0 3em;
  }
  .storytelling__usp.large-- {
    font-size: 7vw;
    padding-top: 7vh;
  }
}

@media (min-width: 480px) {
  .storytelling__background-inner {
    display: block;
  }
  .storytelling__background-inner-mobile {
    display: none;
  }
  .storytelling__next-button img {
    height: auto;
  }
  .storytelling__subheading.small-- {
    font-size: 3vw;
    padding: 0 3em;
  }
  .storytelling__usp.large-- {
    font-size: 5vw;
    padding-top: 6vh;
  }
}

@media (min-width: 640px) {
  .storytelling__background-inner-mobile {
    display: none;
  }
  .storytelling__background-inner {
    display: block;
  }
  .storytelling__usp.large-- {
    font-size: 5vw;
  }
}

@media (min-width: 800px) {
  .storytelling__next-button {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .storytelling__next-button:hover {
    -webkit-transform: translateX(-50%) scale(1.15);
    -ms-transform: translateX(-50%) scale(1.15);
    transform: translateX(-50%) scale(1.15);
  }
  .storytelling__message {
    max-width: 620px;
  }
  .storytelling__message.wide-- {
    max-width: 720px;
  }
  .storytelling__heading.small--,
  .storytelling__subheading.small-- {
    font-size: 2vw;
  }
  .storytelling__heading {
    font-size: 52px;
  }
  .storytelling__subheading {
    font-size: 40px;
  }
  .storytelling__heading > span > span::before {
    top: -265px;
    left: -186px;
  }
  .storytelling__subheading > span > span::before {
    top: -268px;
    left: -188px;
  }
  .storytelling__paragraph {
    font-size: 22px;
  }
  .storytelling__paragraph.tiny-- {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    font-size: 18px;
  }
  .storytelling__usp-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .storytelling__usp {
    width: 33.3333%;
    padding-top: 0;
    font-size: 28px;
  }
  .storytelling__usp.large-- {
    font-size: 3.7vw;
  }
}

@media (min-width: 1280px) {
  .storytelling__message {
    max-width: 850px;
  }
  .storytelling__message.wide-- {
    max-width: 1024px;
  }
  .storytelling__message.pd-top-mobile-- {
    padding-top: 0;
  }
  .storytelling__heading {
    font-size: 72px;
  }
  .storytelling__subheading {
    font-size: 60px;
  }
  .storytelling__heading > span > span::before {
    top: -259px;
    left: -185px;
  }
  .storytelling__subheading > span > span::before {
    top: -263px;
    left: -185px;
  }
  .storytelling__usp {
    font-size: 30px;
  }
  .storytelling__usp.large-- {
    font-size: 3.7vw;
  }
}

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.text-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-padding-start: 30px;
  padding-inline-start: 30px;
  color: #424242;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.text-list.m-top-- {
  margin-top: 40px !important;
}
.text-list.white-- {
  color: #fff;
}

.text-list__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 calc(18% - 15px);
  flex: 1 0 calc(18% - 15px);
  font-size: 14px;
  font-weight: 300;
  width: 100%;
}

@media (min-width: 1024px) {
  .text-list {
    -webkit-column-count: auto;
    -moz-column-count: auto;
    column-count: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px 28px;
    max-width: 100%;
  }
  .text-list__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(18% - 15px);
    flex: 1 0 calc(18% - 15px);
    width: calc(50% - 10px);
  }
}

.timeline-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 56px;
}

.timeline-list__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.timeline-list__item:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ed008c;
  position: absolute;
  left: 0;
  top: 95px;
}
.timeline-list__item:after {
  content: "";
  width: 1px;
  position: absolute;
  top: 95px;
  bottom: -151px;
  left: 2px;
  background-color: #ed008c;
}
.timeline-list__item:last-of-type:after {
  bottom: calc(100% - 95px);
}

.timeline-list__item-content {
  padding-left: 40px;
}

.timeline-list__item-content.active--
  .timeline-list__item-content-header-button-icon.up-- {
  display: block;
}

.timeline-list__item-content.active--
  .timeline-list__item-content-header-button-icon.down-- {
  display: none;
}

.timeline-list__item-content-image {
  margin-bottom: 12px;
  height: 75px;
  width: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.timeline-list__item-content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  gap: 12px;
}

.timeline-list__item-content-header-title {
  font-size: 18px;
  font-weight: 700;
  color: #424242;
}

.timeline-list__item-content-header-button {
  display: block;
}

.timeline-list__item-content-header-button-icon {
  width: 10px;
  fill: #ed008c;
}
.timeline-list__item-content-header-button-icon.up-- {
  display: none;
}
.timeline-list__item-content-header-button-icon.down-- {
  display: block;
}

.timeline-list__item-content-description {
  display: none;
  font-size: 14px;
  color: #868686;
  padding-bottom: 20px;
}

.timeline-list__item-content-link {
  font-size: 14px;
  font-weight: 700;
  color: #F454CD;
}

.timeline-list__item-content-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px 16px;
}

@media (min-width: 1024px) {
  .timeline-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0;
    padding: auto 15px;
  }
  .timeline-list__item:before {
    display: none;
  }
  .timeline-list__item:after {
    display: none;
  }
  .timeline-list__item-content {
    padding: 0px 15px;
    width: 100%;
  }
  .timeline-list__item-content-image {
    margin-bottom: 20px;
    height: 124px;
    width: 124px;
  }
  .timeline-list__item-content-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f454cd;
/*     height: 48px; */
  }
/*   .timeline-list__item-content-header:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ed008c;
    position: absolute;
    left: 0;
    bottom: -3px;
    top: 209px;
  } */
  .timeline-list__item-content-header-title {
    font-size: 24px;
    padding-right: 32px;
  }
  .timeline-list__item-content-header-button {
    display: none;
  }
  .timeline-list__item-content-description {
    font-size: 16px;
    display: block !important;
    padding-right: 32px; }
  .timeline-list__item-content-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; } }

/*-----------------------------------------------------------------------------
  $ Two Container
-----------------------------------------------------------------------------*/
.two-container__inner.image-- {
  margin-right: auto;
  margin-left: auto;
}

.two-container__inner.content-- {
  text-align: center;
}

.two-container__inner-image {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 800px) {
  .two-container {
    margin-top: 0;
    margin-left: -25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .two-container__inner {
    padding-left: 25px;
    margin-top: 0;
  }
  .two-container__inner.content-- {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: left;
  }
}

/*-----------------------------------------------------------------------------
  $ Typography
-----------------------------------------------------------------------------*/
.typography {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.typography a {
  color: #ed008c;
}

.typography p {
  padding-top: 10px;
  padding-left: 0;
}
.typography p:first-child {
  padding-top: 0;
}

.typography ul,
.typography ol {
  padding-top: 10px;
  padding-left: 16px;
}
.typography ul:first-child,
.typography ol:first-child {
  padding-top: 0;
}

.typography ul li,
.typography ol li {
  text-align: left;
}

@media (min-width: 640px) {
  .typography {
    font-size: 16px !important;
  }
  .typography ul,
  .typography ol {
    padding-left: 15px;
  }
}

/*-----------------------------------------------------------------------------
  $ Visibility
-----------------------------------------------------------------------------*/
.show-for-sm-dn {
  display: block;
}

.show-for-md-up {
  display: none;
}

@media (min-width: 800px) {
  .show-for-sm-dn {
    display: none;
  }
  .show-for-md-up {
    display: block;
  }
}

/*-----------------------------------------------------------------------------
  $ Visual Text List
-----------------------------------------------------------------------------*/
.visual-text-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.visual-text-list__item {
  width: calc(33.33% - 10px);
  max-width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.visual-text-list__item.large-- {
  max-width: 300px;
}
.visual-text-list__item.medium-- {
  max-width: 250px;
}
.visual-text-list__item:not(:first-child) {
  margin-left: 10px;
}
.visual-text-list__item.extra-pd-- {
  width: calc(33.33% - 40px);
}
.visual-text-list__item.extra-pd--:not(:first-child) {
  margin-left: 40px;
}
.visual-text-list__item.two-- {
  width: calc(50% - 10px);
}
.visual-text-list__item.two--.extra-pd-- {
  width: calc(50% - 40px);
}

.visual-text-list__item-content {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.visual-text-list__item-visual {
  height: 72px;
  margin-right: auto;
  margin-left: auto;
}
.visual-text-list__item-visual.small-- {
  height: 60px;
}

.visual-text-list__item-container {
  width: auto;
  padding-left: 0;
  margin-top: 0;
}

.visual-text-list__item-heading {
  padding-top: 10px;
  color: #ed008c;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.2;
}
.visual-text-list__item-heading.small-- {
  font-size: 14px;
}
.visual-text-list__item-heading.black-- {
  color: #424242;
}
.visual-text-list__item-heading.white-- {
  color: #fff;
}

.visual-text-list__item-typography {
  color: #868686;
}
.visual-text-list__item-typography.extra-pd-top-- {
  padding-top: 40px;
}

.typography.visual-text-list__item-typography p,
.typography.visual-text-list__item-typography ul,
.typography.visual-text-list__item-typography ol {
  padding-top: 5px;
}

@media (max-width: 639.98px) {
  .visual-text-list.col-dn-- {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .visual-text-list.col-dn-- > .visual-text-list__item {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .visual-text-list.col-dn-- > .visual-text-list__item:not(:first-child) {
    margin-top: 30px;
  }
  .visual-text-list.wrap-sm-- {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .visual-text-list.wrap-sm-- > .visual-text-list__item {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin-left: 0;
  }
  .visual-text-list.wrap-sm--
    > .visual-text-list__item:not(:first-child):not(:nth-child(odd)) {
    margin-left: 10px;
  }
  .visual-text-list.wrap-sm--
    > .visual-text-list__item:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 10px;
  }
  .visual-text-list.wrap-sm-- > .visual-text-list__item.extra-pd-- {
    width: calc(50% - 40px);
  }
  .visual-text-list.wrap-sm--
    > .visual-text-list__item.extra-pd--:not(:first-child):not(:nth-child(odd)) {
    margin-left: 40px;
  }
  .visual-text-list.wrap-sm--
    > .visual-text-list__item.extra-pd--:not(:nth-child(1)):not(:nth-child(2)) {
    margin-top: 40px;
  }
  .visual-text-list.content-two-col-mobile-- {
    margin-left: 0;
    display: block;
  }
  .visual-text-list.content-two-col-mobile-- .visual-text-list__item {
    width: auto;
    padding-left: 0;
    text-align: left;
  }
  .visual-text-list.content-two-col-mobile-- .visual-text-list__item-content {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .visual-text-list.content-two-col-mobile-- .visual-text-list__item-container {
    width: 75%;
    padding-left: 20px;
    margin-top: -10px;
  }
}

@media (min-width: 480px) {
  .visual-text-list__item-visual {
    height: 91px;
  }
  .visual-text-list__item-visual.small-- {
    height: 91px;
  }
}

@media (min-width: 640px) {
  .visual-text-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .visual-text-list__item-content {
    padding: 0;
    display: block;
  }
  .visual-text-list__item-container {
    width: auto;
    padding-left: 0;
    margin-top: 0;
  }
  .visual-text-list__item-heading {
    padding-top: 22px;
    font-size: 22px;
  }
  .visual-text-list__item-heading.small-- {
    font-size: 16px;
  }
  .visual-text-list__item-heading.shorter-- {
    padding-top: 10px;
  }
  .typography.visual-text-list__item-typography p,
  .typography.visual-text-list__item-typography ul,
  .typography.visual-text-list__item-typography ol {
    padding-top: 22px;
  }
  .typography.visual-text-list__item-typography ul,
  .typography.visual-text-list__item-typography ol {
    padding-left: 70px;
  }
}

@media (min-width: 800px) {
  .visual-text-container.small-width-lg-- {
    width: 82%;
    margin-right: auto;
    margin-left: auto;
  }
  .visual-text-list.left-- {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .visual-text-container {
    width: 100%;
  }
  .visual-text-container.small-width-lg-- {
    width: 62%;
  }
  .visual-text-container.left-- {
    margin-left: 0;
  }
}

/*-----------------------------------------------------------------------------
  $ Wrappers
-----------------------------------------------------------------------------*/
.wrapper {
  width: 100%;
  max-width: 1240px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

/*---- Pages ----*/
/*-----------------------------------------------------------------------------
  $ Coverage
-----------------------------------------------------------------------------*/
/* .check-coverage {
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif;
  line-height: 1.5;
}

.check-coverage__main {
  max-height: 194px;
}
.check-coverage.show-geolocation-toggle-- .check-coverage__main {
  max-height: 223px;
}
.check-coverage.location-selected-- .check-coverage__main {
  max-height: 100%;
}
.check-coverage.show-modal-- .check-coverage__main {
  display: none;
}

.check-coverage__main-inner {
  padding: 45px 20px 30px;
  position: relative;
  z-index: 1;
  background: -o-linear-gradient(310deg, #ed008c 0%, #ed008c 35%, #a114ad 100%);
  background: linear-gradient(140deg, #ed008c 0%, #ed008c 35%, #a114ad 100%);
  color: #fff;
  font-size: 14px;
}

.check-coverage__main-closer {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.check-coverage__main-closer:before,
.check-coverage__main-closer:after {
  content: "";
  width: 18px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -9px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check-coverage__main-closer:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

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

.check-coverage__main-field {
  margin-top: 20px;
}
.check-coverage.location-selected-- .check-coverage__main-field {
  display: none;
}

.check-coverage__main-geolocation {
  margin-top: 5px;
}
.check-coverage.location-selected-- .check-coverage__main-geolocation {
  display: none;
}

.check-coverage__main-geolocation-toggle {
  color: #ffd548;
  font-weight: 700;
  cursor: pointer;
  display: none;
}
.check-coverage__main-geolocation-toggle.show-geolocation-toggle-- {
  display: block;
}

.check-coverage__main-geolocation-toggle-icon {
  vertical-align: middle;
}

.check-coverage__main-locations {
  max-height: 300px;
  margin-top: 30px;
  list-style: none;
  padding: 0 15px 0 0;
  overflow: auto;
  display: none;
}
.check-coverage.searching-locations-- .check-coverage__main-locations {
  display: block;
}
.check-coverage__main-locations::-webkit-scrollbar {
  width: 5px;
}
.check-coverage__main-locations::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.check-coverage__main-locations::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 4px;
}

.check-coverage__main-locations-item-inner {
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: inherit;
  font-weight: 700;
  text-align: inherit;
  cursor: pointer;
}
.check-coverage__main-locations-item:first-child
  .check-coverage__main-locations-item-inner {
  padding-top: 0;
  border-top: 0;
}

.check-coverage__main-selected-location {
  display: none;
  margin-top: 15px;
}
.check-coverage.location-selected-- .check-coverage__main-selected-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.check-coverage__main-selected-location-address {
  width: calc(100% - 75px);
  font-weight: 700;
  line-height: 1.333;
}

.check-coverage__main-selected-location-action {
  width: 75px;
  padding-left: 20px;
  text-align: right;
}

.check-coverage__main-selected-location-action-toggle {
  color: #ffd548;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.check-coverage__main-selected-location-available {
  width: calc(100% + 40px);
  padding: 26px 20px;
  margin: 30px -20px -30px;
  background-color: #fff;
  color: #424242;
  font-size: 12px;
  text-align: center;
}

.check-coverage__main-selected-location-available-heading {
  color: #ed008c;
  font-size: 20px;
  font-weight: 700;
}

.check-coverage__main-selected-location-available-paragraph {
  margin-top: 10px;
}

.check-coverage__main-selected-location-available-cta {
  margin-top: 20px;
}

.check-coverage__map {
  position: relative;
  background-color: #424242;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.check-coverage.show-modal-- .check-coverage__map {
  display: none;
}

.check-coverage__map-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.check-coverage__modal-popup {
  padding: 50px 20px 30px;
  position: relative;
  display: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.check-coverage.show-modal-- .check-coverage__modal-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.check-coverage__modal-popup-inner {
  width: 100%;
}

.check-coverage__modal-popup-closer {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.check-coverage__modal-popup-closer:before,
.check-coverage__modal-popup-closer:after {
  content: "";
  width: 18px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -9px;
  background-color: #ed008c;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check-coverage__modal-popup-closer:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.check-coverage__modal-popup.show-thank-you--
  .check-coverage__modal-popup-main {
  display: none;
}

.check-coverage__modal-popup-heading {
  color: #ed008c;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.check-coverage__modal-popup-paragraph {
  margin-top: 15px;
  line-height: 1.25;
}

.check-coverage__modal-popup-address {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.check-coverage__modal-popup-address-icon {
  padding-top: 2px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
}

.check-coverage__modal-popup-address-main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.check-coverage__modal-popup-address-action {
  padding-top: 2px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75px;
  flex: 0 0 75px;
  text-align: right;
}

.check-coverage__modal-popup-address-action-toggle {
  color: #3bbfbb;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.check-coverage__modal-popup-form {
  margin-top: 40px;
}

.check-coverage__modal-popup-form-row {
  margin-top: -20px;
  margin-left: -20px;
}

.check-coverage__modal-popup-form-col {
  padding-top: 20px;
  padding-left: 20px;
}

.check-coverage__modal-popup-cta {
  margin-top: 44px;
  text-align: center;
}
.check-coverage__modal-popup-cta.space-less-- {
  margin-top: 30px;
}

.check-coverage__modal-popup-thank-you {
  display: none;
  text-align: center;
}
.check-coverage__modal-popup.show-thank-you--
  .check-coverage__modal-popup-thank-you {
  display: block;
}

@media (min-width: 640px) {
  .check-coverage__modal-popup-heading {
    font-size: 32px;
  }
  .check-coverage__modal-popup-form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .check-coverage__modal-popup-form-col {
    width: 50%;
  }
  .check-coverage__modal-popup-form-col.full-width-- {
    width: 100%;
  }
  .check-coverage__modal-popup-cta {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .check-coverage {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .check-coverage__main {
    width: calc(50% - 120px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: -o-linear-gradient(
      310deg,
      #ed008c 0%,
      #ed008c 35%,
      #a114ad 100%
    );
    background: linear-gradient(140deg, #ed008c 0%, #ed008c 35%, #a114ad 100%);
  }
  .check-coverage:nth-child(n) .check-coverage__main {
    max-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .check-coverage__main-inner {
    width: 100%;
    max-width: 450px;
    padding-top: 30px;
    background: transparent;
  }
  .check-coverage__main-closer {
    display: none;
  }
  .check-coverage__main-heading {
    font-size: 48px;
    text-align: center;
  }
  .check-coverage.searching-locations-- .check-coverage__main-heading {
    font-size: 28px;
  }
  .check-coverage.location-selected-- .check-coverage__main-heading {
    font-size: 28px;
    text-align: left;
  }
  .check-coverage__main-field,
  .check-coverage__main-geolocation,
  .check-coverage__main-locations {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .check-coverage__main-geolocation {
    margin-top: 20px;
  }
  .check-coverage__main-selected-location {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .check-coverage__main-selected-location-address {
    width: calc(100% - 85px);
    font-size: 18px;
  }
  .check-coverage__main-selected-location-action {
    width: 85px;
    font-size: 16px;
  }
  .check-coverage__main-selected-location-available {
    width: 100%;
    padding: 35px 45px 45px;
    border-radius: 10px;
    margin: 75px 0 0;
    position: relative;
    text-align: left;
  }
  .check-coverage__main-selected-location-available:before {
    content: "";
    border: 0 solid transparent;
    border-width: 0 14px 16px;
    border-bottom-color: #fff;
    position: absolute;
    bottom: 100%;
    left: 30px;
  }
  .check-coverage__main-selected-location-available-heading {
    font-size: 24px;
  }
  .check-coverage__main-selected-location-available-paragraph {
    margin-top: 15px;
  }
  .check-coverage__main-selected-location-available-cta {
    margin-top: 25px;
  }
  .check-coverage__map {
    width: calc(50% + 120px);
  }
  .check-coverage:nth-child(n) .check-coverage__map {
    display: block;
  }
  .check-coverage__modal-popup {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 18; */
/*     background-color: #424242b3; */
/*     text-align: center;
  }
  .check-coverage__modal-popup:before {
    content: "";
    width: 0;
    height: 100%;
    margin-left: -0.4em;
    display: inline-block;
    vertical-align: middle;
  }
  .check-coverage.show-modal-- .check-coverage__modal-popup {
    display: block;
  }
  .check-coverage__modal-popup-inner {
    width: 90%;
    max-width: 750px;
    padding: 45px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background-color: #fff;
    text-align: left;
  }
  .check-coverage__modal-popup.show-thank-you--
    .check-coverage__modal-popup-inner {
    max-width: 520px;
  }
  .check-coverage__modal-popup-heading.large-- {
    font-size: 48px;
  }
  .check-coverage__modal-popup-paragraph {
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  .check-coverage__main {
    width: calc(50% - 170px);
  }
  .check-coverage__main-inner {
    padding-right: 60px;
  }
  .check-coverage__map {
    width: calc(50% + 170px);
  }
} */

 .cen-section {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto; }

.cen.mobile-- {
  display: block;
  width: 316px; }

.cen.desktop-- {
  display: none; }

.cen.legend-- {
  margin-top: 40px; }

.cen-arrow-container {
  position: absolute;
  top: 0;
  left: 0; }

.cen-arrow {
  position: relative;
  color: #ed008c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 12px; }
  .cen-arrow > img {
    -webkit-animation-name: arrow;
            animation-name: arrow;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-duration: 4s;
            animation-duration: 4s;
    width: 8px;
    height: 8px; }
  .cen-arrow img:nth-last-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s; }
  .cen-arrow img:nth-last-child(2) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s; }
  .cen-arrow img:nth-last-child(3) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s; }
  .cen-arrow img:nth-last-child(4) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s; }
  .cen-arrow img:nth-last-child(5) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s; }
  .cen-arrow img:nth-last-child(6) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s; }
  .cen-arrow img:nth-last-child(7) {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s; }
  .cen-arrow img:nth-last-child(8) {
    -webkit-animation-delay: 2.8s;
            animation-delay: 2.8s; }
  .cen-arrow img:nth-last-child(9) {
    -webkit-animation-delay: 3.2s;
            animation-delay: 3.2s; }
  .cen-arrow img:nth-last-child(10) {
    -webkit-animation-delay: 3.6s;
            animation-delay: 3.6s; }
  .cen-arrow img:nth-last-child(11) {
    -webkit-animation-delay: 4s;
            animation-delay: 4s; }
  .cen-arrow img:nth-last-child(12) {
    -webkit-animation-delay: 4.4s;
            animation-delay: 4.4s; }
  .cen-arrow img:nth-last-child(13) {
    -webkit-animation-delay: 4.8s;
            animation-delay: 4.8s; }
  .cen-arrow img:nth-last-child(14) {
    -webkit-animation-delay: 5.2s;
            animation-delay: 5.2s; }
  .cen-arrow img:nth-last-child(15) {
    -webkit-animation-delay: 5.6s;
            animation-delay: 5.6s; }
  .cen-arrow img:nth-last-child(16) {
    -webkit-animation-delay: 6s;
            animation-delay: 6s; }
  .cen-arrow img:nth-last-child(17) {
    -webkit-animation-delay: 6.4s;
            animation-delay: 6.4s; }
  .cen-arrow img:nth-last-child(18) {
    -webkit-animation-delay: 6.8s;
            animation-delay: 6.8s; }
  .cen-arrow img:nth-last-child(19) {
    -webkit-animation-delay: 7.2s;
            animation-delay: 7.2s; }
  .cen-arrow img:nth-last-child(20) {
    -webkit-animation-delay: 7.6s;
            animation-delay: 7.6s; }
  .cen-arrow img:nth-last-child(21) {
    -webkit-animation-delay: 8s;
            animation-delay: 8s; }

.cen-arrow {
  gap: 0; }
  .cen-arrow#gp1 {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    top: 53px;
    left: -43px; }
  .cen-arrow#gp2 {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    top: 81px;
    left: 81px; }
    .cen-arrow#gp2:nth-child(1) {
      display: none; }
  .cen-arrow#gp3 {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    top: 39px;
    left: 81px; }
    .cen-arrow#gp3:nth-child(1) {
      display: none; }
  .cen-arrow#gp4 {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    top: 64px;
    left: 312px; }
    .cen-arrow#gp4:nth-child(1) {
      display: none; }
  .cen-arrow#gp5 {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    top: 25px;
    left: 313px; }
  .cen-arrow#gp6 {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    top: 0px;
    left: 415px; }
  .cen-arrow#gp7 {
    top: 55px;
    left: 28px; }
  .cen-arrow#gp8 {
    top: 48px;
    left: 167px; }
  .cen-arrow#gp9 {
    -webkit-transform: rotateZ(180deg);
        -ms-transform: rotate(180deg);
            transform: rotateZ(180deg);
    top: 40px;
    left: 221px; }
  .cen-arrow#gp10 {
    -webkit-transform: rotateZ(180deg);
        -ms-transform: rotate(180deg);
            transform: rotateZ(180deg);
    top: 29px;
    left: 349px; }
  .cen-arrow#gp11 {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    top: 82px;
    left: 195px; }
    .cen-arrow#gp11:nth-child(1), .cen-arrow#gp11:nth-child(2), .cen-arrow#gp11:nth-child(3) {
      display: none; }
  .cen-arrow#gp12 {
    top: 84px;
    left: 89px; }
  .cen-arrow#gp13 {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    top: 71px;
    left: 302px; }
  .cen-arrow#gp14 {
    top: 158px;
    left: 93px; }
  .cen-arrow#gp15 {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    top: 148px;
    left: 296px; }
  .cen-arrow#gp16 {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    top: 214px;
    left: 90px; }
  .cen-arrow#gp17 {
    -webkit-transform: rotateZ(270deg);
        -ms-transform: rotate(270deg);
            transform: rotateZ(270deg);
    top: 152px;
    left: 193px; }
  .cen-arrow#gp18 {
    -webkit-transform: rotateZ(180deg);
        -ms-transform: rotate(180deg);
            transform: rotateZ(180deg);
    top: 199px;
    left: 299px; }
  .cen-arrow#gp19 {
    -webkit-transform: rotateZ(300deg);
        -ms-transform: rotate(300deg);
            transform: rotateZ(300deg);
    top: 233px;
    left: 179px; }
  .cen-arrow#gp20 {
    -webkit-transform: rotateZ(240deg);
        -ms-transform: rotate(240deg);
            transform: rotateZ(240deg);
    top: 221px;
    left: 208px; }
  .cen-arrow.desktop-- {
    display: none; }
  .cen-arrow.mobile-- {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

@media (min-width: 800px) {
  .cen.mobile-- {
    display: none; }
  .cen.desktop-- {
    display: block; }
  .cen-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px; }
    .cen-arrow.desktop-- {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .cen-arrow.mobile-- {
      display: none; }
    .cen-arrow#gp1 {
      top: 171px;
      left: 38px; }
    .cen-arrow#gp2 {
      top: 163px;
      left: 195px; }
    .cen-arrow#gp3 {
      top: 211px;
      left: 196px; }
    .cen-arrow#gp4 {
      top: 143px;
      left: 514px; }
    .cen-arrow#gp5 {
      top: 190px;
      left: 515px; }
    .cen-arrow#gp6 {
      top: 128px;
      left: 656px; }
    .cen-arrow#gp7 {
      top: 156px;
      left: 155px; }
    .cen-arrow#gp8 {
      top: 149px;
      left: 348px; }
    .cen-arrow#gp9 {
      top: 141px;
      left: 354px; }
    .cen-arrow#gp10 {
      top: 133px;
      left: 533px; }
    .cen-arrow#gp11 {
      top: 233px;
      left: 345px; }
    .cen-arrow#gp12 {
      top: 206px;
      left: 288px; }
    .cen-arrow#gp13 {
      top: 197px;
      left: 405px; }
    .cen-arrow#gp14 {
      top: 260px;
      left: 151px; }
    .cen-arrow#gp15 {
      top: 253px;
      left: 543px; }
    .cen-arrow#gp16 {
      top: 329px;
      left: 289px; }
    .cen-arrow#gp17 {
      top: 222px;
      left: 344px; }
    .cen-arrow#gp18 {
      top: 321px;
      left: 406px; }
    .cen-arrow#gp19 {
      top: 330px;
      left: 344px; }
    .cen-arrow#gp20 {
      top: 312px;
      left: 332px; }
  .cen-arrow > img {
    width: 8px;
    height: 8px; } }

@-webkit-keyframes arrow {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.3; } }

@keyframes arrow {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.3;
  }
}
  
/*-----------------------------------------------------------------------------
  $ For Home
-----------------------------------------------------------------------------*/
/* ---- Plans section ---- */
.plans-dropdown {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.plans-dropdown [data-dropdown-toggler-icon] {
  color: #fff;
  font-size: 12px;
}

.plans-dropdown-item-container {
  min-width: 260px;
  padding: 8px 0;
  border-radius: 6px;
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  list-style: none;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px -2px rgba(66, 66, 66, 0.4);
  box-shadow: 0 0 10px -2px rgba(66, 66, 66, 0.4);
  opacity: 0;
}

.plans-dropdown-item {
  padding: 12px 40px 12px 16px;
  position: relative;
  color: #424242;
  font-weight: 700;
  text-align: left;
  -webkit-transition-property: background-color, color;
  -o-transition-property: background-color, color;
  transition-property: background-color, color;
}
.plans-dropdown-item:hover,
.plans-dropdown-item.selected-- {
  background-color: #ed008c;
  color: #fff;
}

/* ---- Omnimesh section ---- */
@media (min-width: 800px) {
  .omnimesh .two-container__inner.content-- {
    max-width: 490px;
  }
  .omnimesh .visual-text-list {
    margin-left: -25px;
  }
}

@media (min-width: 1280px) {
  .ominmesh-two-container__inner-image > img {
    min-width: 605px;
  }
}

/* ---- Installation section ---- */
.installation-section__desc {
  line-height: 24px;
}

.installation-section__link {
  margin: auto;
  margin-top: 20px;
  display: block;
  width: 148px;
  height: 49px;
  padding: 12px 20px;
}

@media (min-width: 800px) {
  .installation-section__link {
    margin-top: 10px;
  }
}

/* ---- App section ---- */
.app-half-container {
  max-width: 300px;
}

.section__bg-image.wh-full--.app__bg-image {
  background-position: right 1% bottom;
  background-size: 80%;
}

.app__cta-download {
  margin-top: 20px;
}

.app__cta-download-header {
  margin-bottom: 5px;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
}

.app__cta-download-visual-container {
  margin-top: -8px;
  margin-left: -15px;
  display: block;
}

.app__cta-download-visual {
  padding-top: 12px;
  display: block;
}

.app__cta-download-visual-image {
  max-width: 100px;
  padding-left: 15px;
}

@media (min-width: 480px) {
  .app-half-container {
    max-width: 70%;
  }
  .section__bg-image.wh-full--.app__bg-image {
    background-size: 70%;
  }
}

@media (min-width: 640px) {
  .section__bg-image.wh-full--.app__bg-image {
    background-size: 65%;
  }
}

@media (min-width: 800px) {
  .app-half-container {
    max-width: 55%;
  }
}

@media (min-width: 800px) {
  .section__bg-image.wh-full--.app__bg-image {
    background-size: cover;
  }
  .app__cta-download-header {
    font-size: 14px;
  }
  .app__cta-download-visual-container {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .app__cta-download-visual {
    padding-top: 0;
    display: inline-block;
  }
  .app__cta-download-visual-image {
    max-width: none;
    height: 30px;
  }
}

@media (min-width: 1024px) {
  .app__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .app__cta-download {
    padding-left: 40px;
    margin-top: 0;
  }
}

/*-----------------------------------------------------------------------------
  $ Home
-----------------------------------------------------------------------------*/
.home-section {
  padding: 60px 0;
  background-color: #fff;
}

.home-panels {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.home-panel {
  width: 100%;
  max-width: 290px;
  height: 350px;
  padding: 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-color: #f6f6f6;
  text-align: center;
  overflow: hidden;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  -o-transition-property: box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  border-radius: 10px;
}
.home-panel:hover img {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.home-panel img {
  -webkit-animation: move 14s infinite;
  animation: move 14s infinite;
}
.home-panel:hover {
  -webkit-box-shadow: 0 0 6px -2px rgba(66, 66, 66, 0.2);
  box-shadow: 0 0 6px -2px rgba(66, 66, 66, 0.2);
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.home-panel:hover > .home-panel__link {
  font-weight: lighter;
  opacity: 1;
}

.home-panel__animation {
  width: 100%;
  height: auto;
  position: absolute;
  right: -45%;
  bottom: -8%;
  -webkit-animation: spin-scale 120s linear infinite;
  animation: spin-scale 120s linear infinite;
}

.home-panel__image {
  height: 180px;
}

.home-panel__heading {
  font-size: 30px;
}

.home-panel__subheading {
  padding-top: 16px;
  color: #767676;
  font-size: 18px;
  line-height: 1.3;
}

.home-panel__link {
  padding-top: 16px;
  color: #ed008c;
  font-size: 16px;
  opacity: 1;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

@media (min-width: 640px) {
  .home-panel__link {
    opacity: 1;
  }
}

@media (min-width: 800px) {
  .home-section {
    max-width: 100%;
    padding: 80px 0;
  }
}

.home-panel__link {
  font-size: 18px;
  opacity: 0;
}

.home-panel__image {
  height: 180px;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

@-webkit-keyframes spin-scale {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin-scale {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  50% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
  }
}

@keyframes move {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  50% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
  }
}

@media (min-width: 1024px) {
  .home-panel__image {
    height: 300px;
  }
  .home-panel {
    max-width: 380px;
    height: 500px;
  }
  .home-panels {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.talk-to-us.thankyou-- {
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 500px;
  height: calc(100vh - 605px);
}

.talk-to-us__header {
  text-align: center;
  margin-bottom: 24px;
}
.talk-to-us__header.m-bottom-- {
  margin-bottom: 50px;
}

.talk-to-us__header-title {
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 30px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: #424242;
}

.talk-to-us__header-description {
  font-size: 14px;
  color: #424242;
  padding-top: 10px;
  padding-bottom: 0px;
}
.talk-to-us__header-description.small-- {
  font-size: 16px;
}

.talk-to-us__brochures {
  margin-top: 44px;
}

.talk-to-us__brochures-title {
  color: #373737;
  font-size: 32px;
  font-weight: 700;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}

.talk-to-us__brochures-content {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding-top: 24px;
}

.talk-to-us__brochures-content-title {
  color: #424242;
  font-size: 20px;
  font-weight: 700;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  padding-left: 20px;
}

.talk-to-us__brochures-content-category {
  padding: 20px 0;
  padding-left: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.talk-to-us__brochures-content-category.active--
  .talk-to-us__brochures-content-category-header-icon.up-- {
  display: none;
}
.talk-to-us__brochures-content-category.active--
  .talk-to-us__brochures-content-category-header-icon.down-- {
  display: block;
}
.talk-to-us__brochures-content-category:last-of-type {
  border: none;
}

.talk-to-us__brochures-content-category-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.talk-to-us__brochures-content-category-header-icon {
  width: 24px;
  height: 24px;
}
.talk-to-us__brochures-content-category-header-icon.up-- {
  display: block;
}
.talk-to-us__brochures-content-category-header-icon.down-- {
  display: none;
}

.talk-to-us__brochures-content-category-header-title {
  font-size: 18px;
  color: #ed008c;
  font-weight: 700;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", Helvetica, Helvetica Neue, Arial, sans-serif;
}

.talk-to-us__brochures-content-category-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 24px;
  margin-left: 34px;
  margin-right: 48px;
}

.talk-to-us__brochures-content-category-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.talk-to-us__brochures-content-category-list-item-label {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
/*   font-family: "DIN", Helvetica, Helvetica Neue, Arial, sans-serif; */
  font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #424242;
  position: relative;
  cursor: pointer;
}
.talk-to-us__brochures-content-category-list-item-label > input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #c2c2c2;
  border-radius: 4px;
}
.talk-to-us__brochures-content-category-list-item-label > input:checked {
  border-color: #ed008c;
  background-color: #ed008c;
}
.talk-to-us__brochures-content-category-list-item-label
  > input:checked
  + .checkmark {
  display: block;
}
.talk-to-us__brochures-content-category-list-item-label > .checkmark {
  display: none;
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.talk-to-us__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.talk-to-us__submit-button {
  min-width: 120px;
/*   height: 48px; */
}
.talk-to-us__submit-button.long-- {
  min-width: 240px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media (min-width: 1024px) {
  .talk-to-us.thankyou-- {
    height: calc(100vh - 480px);
  }
  .talk-to-us__header-title {
    font-size: 48px;
  }
  .talk-to-us__header-description {
    font-size: 14px;
  }
  .talk-to-us__header-description.small-- {
    font-size: 16px;
  }
  .talk-to-us__brochures-content {
    padding-top: 32px;
  }
  .talk-to-us__brochures-content-title {
    font-size: 28px;
    margin-top: 12px;
    margin-bottom: 16px;
    padding-left: 48px;
  }
  .talk-to-us__brochures-content-category {
    padding: 32px 0;
  }
  .talk-to-us__brochures-content-category-header {
    gap: 28px;
    padding-left: 48px;
  }
  .talk-to-us__brochures-content-category-header-title {
    font-size: 24px;
  }
  .talk-to-us__brochures-content-category-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 32px;
    padding-top: 32px;
    margin-left: 100px;
  }
  .talk-to-us__brochures-content-category-list-item {
    font-size: 18px;
    font-family: "Helvetica", "Helvetica Neue", "Arial", sans-serif;
    margin-bottom: 0;
  }
  .talk-to-us__submit-button {
/*     height: 60px; */
  }
  .talk-to-us__submit-button.long-desktop-- {
    min-width: 220px;
  }
}

.wholesale-globe {
  min-height: 100vh;
  overflow: hidden; }

.wholesale-globe__title {
  background: transparent;
  padding: 0 20px;
  position: relative;
  z-index: 10; }

.wholesale-globe__globe {
  position: absolute;
  z-index: -5;
  height: 120vw;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  -webkit-animation-name: fadeShow;
  animation-name: fadeShow;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  .wholesale-globe__globe > canvas {
    border-radius: 50%;
    top: 20px;
    height: 120vw;
    width: 120%;
    left: -10%;
    position: relative;
    aspect-ratio: 1; }
  .wholesale-globe__globe.hidden-- {
    -webkit-animation-name: fadeHide;
            animation-name: fadeHide;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    pointer-events: none; }
    .wholesale-globe__globe.hidden-- > canvas {
      cursor: auto; }
  .wholesale-globe__globe.preload-- {
    -webkit-animation-duration: 0s;
            animation-duration: 0s; }

.wholesale-globe__map {
  height: 100%;
  width: 100vw;
  position: relative;
  z-index: 0;
  pointer-events: none; }

.wholesale-globe__map-container {
  position: absolute;
  height: 100%;
  z-index: -10;
  opacity: 0;
  -webkit-animation-name: fadeHideSmall;
  animation-name: fadeHideSmall;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .wholesale-globe__map-container.show-- {
    -webkit-animation-name: fadeShowSmall;
            animation-name: fadeShowSmall;
    -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    background: black;
    position: relative; }
  .wholesale-globe__map-container.preload-- {
    -webkit-animation-duration: 0s;
            animation-duration: 0s; }

.wholesale-globe__map-container-image {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100vw;
  width: 100%;
  left: 0;
  margin: 0; }
  .wholesale-globe__map-container-image.desktop-- {
    display: none; }
  .wholesale-globe__map-container-image.mobile-- {
    display: block; }

.wholesale-globe__map-container-description {
  bottom: 0;
  max-width: 440px;
  width: calc(100% - 60px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  margin-bottom: 32px;
  color: white;
  padding: 30px;
  padding-top: 12px;
  border-radius: 16px;
  z-index: 1; }
  .wholesale-globe__map-container-description > h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px; }
  .wholesale-globe__map-container-description > p {
    line-height: 1.5;
    font-size: 12px; }

.wholesale-globe__map-container-description-close {
  text-align: right;
  pointer-events: auto; }
  .wholesale-globe__map-container-description-close button {
    cursor: pointer; }
  .wholesale-globe__map-container-description-close img {
    width: 16px;
    height: 16px;
    pointer-events: none; }

.wholesale-globe__overlay {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100px;
  z-index: 5;
  position: absolute; }
  .wholesale-globe__overlay.top-- {
    top: 0;
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(bottom, transparent 0%, black 100%);
    /* Opera 11.10+ */
    /* IE10+ */
    background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(black));
    background: linear-gradient(to top, transparent 0%, black 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    /* IE6-9 */ }
  .wholesale-globe__overlay.bottom-- {
    bottom: 0;
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, transparent 0%, black 100%);
    /* Opera 11.10+ */
    /* IE10+ */
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
    background: linear-gradient(to bottom, transparent 0%, black 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    /* IE6-9 */ }
  .wholesale-globe__overlay.desktop-- {
    display: none; }

.wholesale-globe__buttons {
  max-width: 100vw;
  margin-bottom: 0;
  padding: 30px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  white-space: nowrap;
  overflow-x: scroll;
  background: transparent;
  z-index: 1;
  cursor: pointer;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .wholesale-globe__buttons > button {
    padding: 8px 16px; }
    .wholesale-globe__buttons > button:before {
      content: ""; }
    .wholesale-globe__buttons > button > span {
      color: white;
      pointer-events: none; }
    .wholesale-globe__buttons > button:hover {
      background-position: left !important; }
  .wholesale-globe__buttons::-webkit-scrollbar {
    -webkit-appearance: none;
            appearance: none; }

.wholesale-globe__buttons-wrapper {
  width: 100vw;
  overflow: hidden;
  position: relative;
  top: 0;
  bottom: auto;
  z-index: 10; }

@media (min-width: 800px) {
  .wholesale-globe {
    height: 100vh;
    min-height: unset;
    overflow: hidden;
    top: 0; }
  .wholesale-globe__globe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1120px;
    height: 100%;
    width: 100%;
    position: relative;
    margin: auto; }
    .wholesale-globe__globe > canvas {
      left: auto;
      width: auto;
      height: auto; }
  .wholesale-globe__map {
    height: 100vh;
    position: absolute;
    top: 0; }
  .wholesale-globe__map-container {
    position: absolute;
    height: 100vh;
    width: 100vw;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .wholesale-globe__map-container-description {
    position: absolute;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    right: 10%;
    width: 25%;
    min-width: 300px;
    max-width: 400px;
    margin: 0; }
    .wholesale-globe__map-container-description > h3 {
      font-size: 27px; }
    .wholesale-globe__map-container-description > p {
      font-size: 16px; }
  .wholesale-globe__overlay {
    height: 200px; }
    .wholesale-globe__overlay.desktop-- {
      display: block; }
  .wholesale-globe__buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 80px; }
    .wholesale-globe__buttons > button {
      padding: 16px 52px; }
  .wholesale-globe__buttons-wrapper {
    position: absolute;
    top: auto;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .wholesale-globe__map-container-description-close img {
    width: 24px;
    height: 24px; } }

@media (min-width: 1024px) {
  .wholesale-globe__globe {
    max-width: 1200px;
    margin: auto;
    position: relative;
    top: 56px; }
    .wholesale-globe__globe > canvas {
      top: 0;
      left: auto;
      width: 100%; }
  .wholesale-globe__map-container-image.desktop-- {
    display: block; }
  .wholesale-globe__map-container-image.mobile-- {
    display: none; } }

@-webkit-keyframes fadeHide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes fadeHide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes fadeShow {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeShow {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeHideSmall {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
}

@keyframes fadeHideSmall {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
}

@-webkit-keyframes fadeShowSmall {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeShowSmall {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
  visibility: hidden !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

/* Additional section: Time looking glass */
#lglass-iframe {
  height: 750px;
}

@media (max-width: 640px) {
  #lglass-iframe {
    height: 1500px;
  }
}

@media (max-width: 800px) {
  #lglass-iframe {
    height: 1350px;
  }
}

#wpadminbar * {
 min-height: 0px !important;
}

/*---- Components ----*/
/*---- New Styling ----*/
/*-----------------------------------------------------------------------------
  $ Resource
-----------------------------------------------------------------------------*/
.uf .article {
  margin-top: 106px;
/*   border-top: 1px solid #e3e3e3;  */
}
  .uf .article__wrapper {
    width: 100%;
    max-width: 1240px;
    padding: 50px 20px 88px;
    margin: 0 auto; }
  .uf .article__header {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #000; }
  .uf .article__date {
    padding-top: 20px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #707070; }
  .uf .article__content {
    padding-top: 30px; }
    .uf .article__content p img[style*="float: left"] {
      margin-right: 10px; }
    .uf .article__content p img[style*="float: right"] {
      margin-left: 10px; }
    .uf .article__content p {
      position: relative;
      width: 100%;
      font-size: 14px;
      font-weight: 400;
      color: #000;
      line-height: 1.3em;
      overflow: hidden; }
      .uf .article__content p b {
        font-weight: 600; }
      .uf .article__content p img {
        width: 50%;
        border-radius: 15px;
        -o-object-fit: cover;
           object-fit: cover; }
      .uf .article__content p iframe {
        display: none; }
    .uf .article__content br + img {
      margin-left: 30px;
      margin-right: 0; }
    .uf .article__content b + img {
      margin-left: 30px;
      margin-right: 0; }
    .uf .article__content p + p {
      padding-top: 15px; }
    .uf .article__content a {
      color: #f454cd; }
      .uf .article__content a:hover {
        opacity: 0.6; }
    .uf .article__content p + .article__content-visual {
      margin-top: 30px; }
    .uf .article__content p span {
      width: 43px;
      height: 50px;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      z-index: 1; }
      .uf .article__content p span::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        background-image: url(../../../../uploads/assets/images/resource/article/play-icon.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        padding-left: 43px;
        height: 50px;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
    .uf .article__content p img[style*="width: 100%"] {
      display: block;
      position: relative;
      padding-top: 0;
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s; }
      .uf .article__content p img[style*="width: 100%"]:hover {
        cursor: pointer;
        -webkit-filter: brightness(50%);
                filter: brightness(50%); }
    .uf .article__content .info {
      padding-top: 15px; }
      .uf .article__content .info p + p {
        padding-top: 0; }
    .uf .article__content-visual + p {
      margin-top: 30px; }
    .uf .article__content-visual + .article__content-visual {
      margin-top: 30px; }
    .uf .article__content-visual {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-column-gap: 15px;
         -moz-column-gap: 15px;
              column-gap: 15px;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .uf .article__content-visual-img {
        width: calc(50% - 15px); }
        .uf .article__content-visual-img img {
          width: 100%;
          height: 320px;
          border-radius: 15px;
          -o-object-fit: cover;
             object-fit: cover; }
      .uf .article__content-visual-desc {
        width: calc(50% - 15px); }
      .uf .article__content-visual.reverse-- .article__content-visual-img {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
    .uf .article__content-video + p {
      margin-top: 20px; }
    .uf .article__content-video {
      margin-top: 30px;
      position: relative; }
      .uf .article__content-video:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        height: 100%;
        width: 100%;
        border-radius: 15px;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
      .uf .article__content-video:hover {
        cursor: pointer; }
        .uf .article__content-video:hover:after {
          background-color: rgba(0, 0, 0, 0.7); }
      .uf .article__content-video img {
        width: 100%;
        height: 500px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 15px;
        display: block;
        position: relative; }
      .uf .article__content-video span {
        width: 43px;
        height: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        z-index: 1; }
        .uf .article__content-video span::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          display: block;
          background-image: url(../../../../uploads/assets/images/resource/article/play-icon.svg);
          background-position: center;
          background-size: contain;
          background-repeat: no-repeat;
          padding-left: 43px;
          height: 50px;
          -webkit-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
  .uf .article__banner {
    margin-bottom: 30px;
    position: relative;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden; }
    .uf .article__banner-img {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      min-width: 1200px;
      min-height: 500px;
      border-radius: 15px;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
      .uf .article__banner-img.desktop-only-- {
        display: block; }
      .uf .article__banner-img.mobile-only-- {
        display: none; }
  .uf .article__popup {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 20;
    overflow: auto;
    text-align: center; }
    .uf .article__popup::before {
      content: "";
      width: 0;
      height: 100%;
      margin-left: -0.4em;
      display: inline-block;
      vertical-align: middle; }
    .uf .article__popup.active-- {
      display: block; }
    .uf .article__popup-container {
      position: relative;
      width: 100%;
      max-width: calc(720px - 0.4em);
      padding: 50px 20px;
      display: inline-block;
      vertical-align: middle; }
    .uf .article__popup-close {
      width: 24px;
      height: 24px;
      position: absolute;
      top: 10px;
      right: 20px; }
      .uf .article__popup-close:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 30px;
        height: 3px;
        background-color: #fff;
        -webkit-transform: translate(-3px, 10px) rotate(45deg);
            -ms-transform: translate(-3px, 10px) rotate(45deg);
                transform: translate(-3px, 10px) rotate(45deg); }
      .uf .article__popup-close:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 30px;
        height: 3px;
        background-color: #fff;
        -webkit-transform: translate(-3px, 10px) rotate(-45deg);
            -ms-transform: translate(-3px, 10px) rotate(-45deg);
                transform: translate(-3px, 10px) rotate(-45deg); }
      .uf .article__popup-close:hover:before, .uf .article__popup-close:hover:after {
        background-color: #f454cd; }
    .uf .article__popup-video {
      position: relative;
      overflow: hidden;
      width: 100%;
      padding-top: 56.25%; }
      .uf .article__popup-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%; }
  .uf .article__link {
    margin-top: 40px; }
    .uf .article__link a {
      display: inline-block;
      padding: 6px 15px;
      font-size: 16px;
      font-weight: 600;
      color: #f454cd;
      border: 2px solid #f454cd;
      border-radius: 16px; }
      .uf .article__link a:hover {
        color: #000;
        border: 2px solid #000; }
  .uf .article__download {
    margin-top: 24px;
    color: #000;
    font-size: 16px;
    font-weight: 600; }
    .uf .article__download a:hover {
      color: #f454cd; }
    .uf .article__download img {
      margin-left: 20px; }

@media (max-width: 800px) {
  .uf .article__content-visual-img {
    width: 100%; }
  .uf .article__content-visual-desc {
    width: 100%; }
  .uf .article__content-visual-img + .article__content-visual-desc {
    margin-top: 20px; }
  .uf .article__content-visual.reverse-- .article__content-visual-img {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial; }
  .uf .article__content-video img {
    height: auto; }
  .uf .article__popup-container {
    padding: 50px 0; } }

@media (max-width: 1024px) {
  .uf .article {
    margin-top: 94px; } }

@media (max-width: 640px) {
  .uf .article__wrapper {
    padding: 30px 36px 36px; }
  .uf .article__header {
    font-size: 30px; }
    .uf .article__header span {
      display: block; }
  .uf .article__date {
    font-size: 14px; }
    .uf .article__date span {
      display: block; }
  .uf .article__content {
    padding-top: 30px; }
    .uf .article__content p img[style*="float: left"] {
      margin-right: 0;
      width: 100%;
      height: 320px;
      margin-bottom: 18px; }
    .uf .article__content p img[style*="float: right"] {
      margin-left: 0;
      width: 100%;
      height: 320px;
      margin-bottom: 18px; }
    .uf .article__content-video span {
      width: 36px; }
      .uf .article__content-video span:before {
        padding-left: 36px; }
  .uf .article__banner {
    margin-bottom: 20px; }
    .uf .article__banner-img {
      width: 100%;
      min-width: 600px;
      min-height: auto;
      max-height: 500px; }
      .uf .article__banner-img.desktop-only-- {
        display: none; }
      .uf .article__banner-img.mobile-only-- {
        display: block; } }

/*-----------------------------------------------------------------------------
  $ Pagination
-----------------------------------------------------------------------------*/
.uf .pagination {
  margin-top: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .uf .pagination__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px; }
  .uf .pagination__button, .uf .pagination__number {
    font-size: 16px;
    font-weight: 600;
    color: #000; }
  .uf .pagination__button {
    color: #f454cd; }
    .uf .pagination__button:disabled {
      color: #e3e3e3;
      cursor: not-allowed; }
  .uf .pagination__number:hover {
    color: #f454cd; }
  .uf .pagination__number.active-- {
    color: #f454cd; }

@media (max-width: 640px) {
  .uf .pagination.wrapper {
    padding-left: 36px;
    padding-right: 36px; } }

/*-----------------------------------------------------------------------------
  $ Resource
-----------------------------------------------------------------------------*/
.uf .resource__top {
  position: relative;
  z-index: 1;
  padding-top: 234px;
  padding-bottom: 120px;
  background-color: #ffa4f6; }
  .uf .resource__top-header {
    font-size: 40px;
    font-weight: 600;
    font-family: "Sans of Time Bold", Work Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
    text-align: center; }
    .uf .resource__top-header span {
      color: #f454cd; }
      .uf .resource__top-header span.break-mo {
        color: #000; }
  .uf .resource__top.no-search-- {
    padding-top: 260px;
    padding-bottom: 160px; }
  .uf .resource__top.magenta-- {
    background-color: #ff82e6; }
  .uf .resource__top.light-purple-- {
    background-color: #ddaeff; }
  .uf .resource__top.light-blue-- {
    background-color: #7dedff; }

.uf .resource__media-tab {
  padding: 25px 36px;
  background-color: #474747;
  overflow: auto; }
  .uf .resource__media-tab-container {
    min-width: 435px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px; }
  .uf .resource__media-tab-item {
    padding: 5px 15px;
    min-width: 116px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600; }
    .uf .resource__media-tab-item.active-- {
      color: #000;
      background-color: #ff71e1;
      border: 1px solid #ff71e1; }

.uf .resource__content {
  padding-top: 34px; }
  .uf .resource__content.resource-home-- {
    padding-bottom: 100px; }
  .uf .resource__content.resource-press-- {
    padding-bottom: 158px; }

.uf .resource__section.home-- {
  padding: 40px 0 18px; }
  .uf .resource__section.home-- .resource__section-button {
    margin-top: 50px; }

.uf .resource__section.business-- {
  padding: 100px 0; }
  .uf .resource__section.business-- .resource__section-button {
    margin-top: 50px; }

.uf .resource__section.newsmedia-- {
  padding-top: 46px;
  padding-bottom: 67px;
  background-color: #e5e5e5; }

.uf .resource__section.subscribe-- {
  padding: 67px 0;
  background-color: #ddaeff; }
  .uf .resource__section.subscribe-- .resource__section-button {
    margin-top: 30px; }

.uf .resource__section.lets-talk-- {
  padding: 87px 0 91px;
  background-color: #6015b7; }
  .uf .resource__section.lets-talk-- .resource__section-button {
    margin-top: 30px; }

.uf .resource__section.media-contact-- {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #5200a0; }

.uf .resource__section.media-- {
  padding-bottom: 120px; }

.uf .resource__section.related-posts-- {
  padding: 46px 0 40px;
  background-color: #ddaeff; }

.uf .resource__section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .uf .resource__section-wrapper.wrapper {
    max-width: 1120px; }

.uf .resource__section-heading {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  text-align: center; }
  .uf .resource__section-heading.white-- {
    color: #fff; }

.uf .resource__section-filter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 10px; }
  .uf .resource__section-filter-result {
    padding: 40px 5px 8px;
    width: 100%;
    max-width: 1105px;
    font-size: 24px;
    font-weight: 600;
    color: #000; }
    .uf .resource__section-filter-result span {
      color: #f454cd; }
  .uf .resource__section-filter-input {
    width: calc(100% - 565px - 40px);
    max-width: 488px;
    position: relative; }
    .uf .resource__section-filter-input input {
      width: 100%;
      padding: 12px 40px 12px 15px;
      border: 2px solid #000;
      border-radius: 15px;
      outline: none; }
      .uf .resource__section-filter-input input:focus {
        border: 2px solid #f454cd; }
        .uf .resource__section-filter-input input:focus::-webkit-input-placeholder {
          color: #e5e5e5; }
        .uf .resource__section-filter-input input:focus::-moz-placeholder {
          color: #e5e5e5; }
        .uf .resource__section-filter-input input:focus:-ms-input-placeholder {
          color: #e5e5e5; }
        .uf .resource__section-filter-input input:focus::-ms-input-placeholder {
          color: #e5e5e5; }
        .uf .resource__section-filter-input input:focus::placeholder {
          color: #e5e5e5; }
      .uf .resource__section-filter-input input::-webkit-input-placeholder {
        font-size: 14px;
        color: #000; }
      .uf .resource__section-filter-input input::-moz-placeholder {
        font-size: 14px;
        color: #000; }
      .uf .resource__section-filter-input input:-ms-input-placeholder {
        font-size: 14px;
        color: #000; }
      .uf .resource__section-filter-input input::-ms-input-placeholder {
        font-size: 14px;
        color: #000; }
      .uf .resource__section-filter-input input::placeholder {
        font-size: 14px;
        color: #000; }
    .uf .resource__section-filter-input-search.hide--, .uf .resource__section-filter-input-close.hide-- {
      display: none; }
    .uf .resource__section-filter-input-search {
      height: 24px;
      width: 24px;
      position: absolute;
      top: 12px;
      right: 13px; }
      .uf .resource__section-filter-input-search:before {
        content: "";
        display: block;
        padding-left: 24px;
        height: 24px;
        background: url("../../../../uploads/assets/images/icons/search-pink.svg"); }
    .uf .resource__section-filter-input-close {
      height: 24px;
      width: 24px;
      position: absolute;
      top: 12px;
      right: 13px;
      cursor: pointer; }
      .uf .resource__section-filter-input-close::before, .uf .resource__section-filter-input-close::after {
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: #ff71e1; }
      .uf .resource__section-filter-input-close::before {
        content: "";
        top: 4px;
        left: 5px;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        -webkit-transform-origin: left;
            -ms-transform-origin: left;
                transform-origin: left; }
      .uf .resource__section-filter-input-close::after {
        content: "";
        top: 4px;
        right: 5px;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
        -webkit-transform-origin: right;
            -ms-transform-origin: right;
                transform-origin: right; }
  .uf .resource__section-filter-year, .uf .resource__section-filter-month, .uf .resource__section-filter-category {
    width: calc(100% - 10px); }
    .uf .resource__section-filter-year .custom-dropdown__item, .uf .resource__section-filter-month .custom-dropdown__item, .uf .resource__section-filter-category .custom-dropdown__item {
      max-width: none; }
  .uf .resource__section-filter-year {
    max-width: 100px; }
  .uf .resource__section-filter-month {
    max-width: 150px; }
  .uf .resource__section-filter-category {
    max-width: 200px; }
  .uf .resource__section-filter-button {
    width: 115px;
    -ms-flex-item-align: center;
        align-self: center; }
    .uf .resource__section-filter-button.button {
      background-color: #ff71e1; }

.uf .resource__section-input {
  margin-top: 20px;
  width: 100%;
  max-width: 568px; }
  .uf .resource__section-input input {
    width: 100%;
    padding: 18px 20px;
    border: 3px solid #000;
    border-radius: 15px; }
    .uf .resource__section-input input:focus {
      outline: none; }
      .uf .resource__section-input input:focus::-webkit-input-placeholder {
        color: #e5e5e5; }
      .uf .resource__section-input input:focus::-moz-placeholder {
        color: #e5e5e5; }
      .uf .resource__section-input input:focus:-ms-input-placeholder {
        color: #e5e5e5; }
      .uf .resource__section-input input:focus::-ms-input-placeholder {
        color: #e5e5e5; }
      .uf .resource__section-input input:focus::placeholder {
        color: #e5e5e5; }
    .uf .resource__section-input input::-webkit-input-placeholder {
      font-size: 20px;
      font-weight: 400;
      color: #000; }
    .uf .resource__section-input input::-moz-placeholder {
      font-size: 20px;
      font-weight: 400;
      color: #000; }
    .uf .resource__section-input input:-ms-input-placeholder {
      font-size: 20px;
      font-weight: 400;
      color: #000; }
    .uf .resource__section-input input::-ms-input-placeholder {
      font-size: 20px;
      font-weight: 400;
      color: #000; }
    .uf .resource__section-input input::placeholder {
      font-size: 20px;
      font-weight: 400;
      color: #000; }
  .uf .resource__section-input-error {
    display: block;
    padding-top: 5px;
    color: red; }

.uf .resource__section-description {
  padding-top: 13px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: center; }
  .uf .resource__section-description.white-- {
    color: #fff; }

.uf .resource__section-button {
  margin-top: 20px; }
  .uf .resource__section-button.button {
    background-color: #ff71de; }

.uf .resource__section-link {
  margin-top: 20px; }
  .uf .resource__section-link.link {
    font-size: 18px;
    font-weight: 600;
    color: #ff71e1; }
    .uf .resource__section-link.link:hover {
      color: #fff; }

.uf .resource__section-cards {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 20px; }
  .uf .resource__section-cards.resource-home-- {
    margin-top: 50px; }
  .uf .resource__section-cards.resource-related-- {
    margin-top: 20px; }
  .uf .resource__section-cards-item {
    width: calc((100% / 3) - 10px);
    max-width: 350px;
    background-color: #e5e5e5;
    border-radius: 15px; }
    .uf .resource__section-cards-item:hover {
      color: #000; }
  .uf .resource__section-cards-image {
    position: relative; }
    .uf .resource__section-cards-image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 10px 10px 0 0; }
  .uf .resource__section-cards-text {
    position: relative;
    padding: 20px;
    width: 100%;
    height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-radius: 15px 15px 0 0; }
    .uf .resource__section-cards-text-title {
      font-size: 40px;
      font-family: "Sans of Time Bold", Work Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
      line-height: 1em;
      color: #000; }
      .uf .resource__section-cards-text-title span {
        display: block;
        text-align: center;
        font-size: 24px;
        line-height: 1em; }
    .uf .resource__section-cards-text-date {
      font-size: 24px;
      font-weight: 600;
      color: #f454cd;
      line-height: 1.5em; }
  .uf .resource__section-cards-info {
    padding: 13px 20px 24px;
    background-color: #e5e5e5;
    border-radius: 0 0 10px 10px; }
  .uf .resource__section-cards-title-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .uf .resource__section-cards-title {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #f454cd;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .uf .resource__section-cards-time {
    padding: 8px 11px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: right;
    background-color: #000;
    border-radius: 15px; }
  .uf .resource__section-cards-desc {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.uf .resource__section-newsmedia {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px; }
  .uf .resource__section-newsmedia-item {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc((100% / 3) - 20px);
    max-width: 335px;
    background-color: #fff;
    border-radius: 15px; }
  .uf .resource__section-newsmedia-image {
    position: relative;
    width: 100%;
    height: 207px; }
    .uf .resource__section-newsmedia-image img {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .uf .resource__section-newsmedia-title {
    font-size: 30px;
    font-weight: 600;
    color: #000; }
  .uf .resource__section-newsmedia-desc {
    padding-top: 15px;
    text-align: center; }
  .uf .resource__section-newsmedia-button {
    margin-top: 45px;
    margin-bottom: 35px; }
    .uf .resource__section-newsmedia-button.button {
      color: #fff;
      background-color: #000; }
      .uf .resource__section-newsmedia-button.button:hover {
        color: #000;
        background: #ff71de; }

@media (max-width: 900px) {
  .uf .resource__section-filter-input {
    width: calc(100% - 200px - 20px);
    max-width: none; }
  .uf .resource__section-filter-year {
    min-width: 200px; }
  .uf .resource__section-filter-month {
    max-width: calc(50% - (115px / 2) - 15px); }
  .uf .resource__section-filter-category {
    max-width: calc(50% - (115px / 2) - 15px); } }

@media (max-width: 800px) {
  .uf .resource__section-cards-item {
    width: calc(50% - 14px); }
  .uf .resource__section-newsmedia-item {
    width: calc(50% - 20px); } }

@media (max-width: 640px) {
  .uf .resource__top {
    z-index: auto;
    padding-top: 200px;
    padding-bottom: 120px; }
    .uf .resource__top-header {
      font-size: 30px; }
      .uf .resource__top-header span.break-mo {
        display: block; }
  .uf .resource__media-tab {
    padding: 15px 36px; }
  .uf .resource__content {
    padding-top: 20px; }
  .uf .resource__section.home-- {
    padding-bottom: 0; }
    .uf .resource__section.home-- .resource__section-button {
      margin-top: 30px; }
  .uf .resource__section.business-- {
    padding: 100px 0 50px; }
    .uf .resource__section.business-- .resource__section-button {
      margin-top: 50px; }
  .uf .resource__section.newsmedia-- {
    padding: 50px 0; }
  .uf .resource__section.related-posts-- {
    padding: 50px 0; }
  .uf .resource__section-wrapper.wrapper {
    padding-left: 36px;
    padding-right: 36px; }
  .uf .resource__section-filter-input {
    width: 100%; }
  .uf .resource__section-filter-year {
    width: calc(35% - 5px);
    max-width: none;
    min-width: auto; }
  .uf .resource__section-filter-month {
    width: calc(65% - 5px);
    max-width: none;
    min-width: auto; }
  .uf .resource__section-filter-category {
    width: 100%;
    max-width: none;
    min-width: auto; }
  .uf .resource__section-cards {
    margin-top: 30px; }
    .uf .resource__section-cards-item {
      width: 100%;
      max-width: none; }
    .uf .resource__section-cards-title {
      display: -webkit-box;
      -webkit-line-clamp: initial;
      -webkit-box-orient: vertical;
      overflow: hidden; }
  .uf .resource__section-heading {
    font-size: 30px; }
  .uf .resource__section-description {
    font-size: 14px; }
  .uf .resource__section-newsmedia {
    padding-top: 50px; }
    .uf .resource__section-newsmedia-item {
      width: 100%;
      max-width: none; } }

/*-----------------------------------------------------------------------------
  $ Search Bar
-----------------------------------------------------------------------------*/
:root {
  --site-header-height: 45px;
  --search-bar-input-height: 52px;
  --ease-out-power4: cubic-bezier(0.16, 1, 0.3, 1); }

/*---- Search bar component ----*/
.search-bar {
  --initial-top: 0px;
  --target-top: calc(var(--site-header-height) + 10px);
  --search-bar-width: 100%;
  --search-bar-height: 53px;
  height: var(--search-bar-height);
  position: relative;
  margin: 20px 0 0; }
  .search-bar.active-- .search-bar__input {
    border: 2px solid #f454cd; }
  .search-bar.active-- .search-bar__results {
    z-index: 13 !important; }
  @media (min-width: 640px) {
    .search-bar {
      --search-bar-width: 100% !important;
      margin: 20px 20px 0; } }
  .search-bar__search {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 12; }
    .search-bar__search::before {
      content: "";
      background: url("../../../../uploads/assets/images/icons/search-pink.svg");
      width: 24px;
      height: 24px;
      position: absolute;
      top: 0;
      left: 0; }
  .search-bar__back {
    position: absolute;
    top: 20px;
    left: 23px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    z-index: 12; }
    .search-bar__back::before {
      content: "";
      background: url("../../../../uploads/assets/images/icons/arrow-down-black.svg") no-repeat;
      width: 13px;
      height: 15px;
      position: absolute;
      top: 0;
      left: 0; }

.search-bar__input-holder {
  width: var(--search-bar-width);
  -webkit-animation: 0.4s var(--ease-out-power4);
          animation: 0.4s var(--ease-out-power4);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 14;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }
  .search-bar__input-holder .search-bar__input {
    width: 100%; }
  .search-bar.active-- .search-bar__input-holder .search-bar__search {
    z-index: 16; }
  .search-bar.active-- .search-bar__input-holder .search-bar__back {
    z-index: 16; }
  @media (max-width: 639.92px) {
    .search-bar.active-- .search-bar__input-holder {
      position: fixed;
      top: var(--target-top);
      left: 50%;
      -webkit-animation-name: animate-input-to-top;
              animation-name: animate-input-to-top;
      width: calc(100% - 20px);
      z-index: 16; }
      .search-bar.active-- .search-bar__input-holder .search-bar__input {
        padding: 15px 40px 15px 30px; }
    .search-bar.reverse-- .search-bar__input-holder {
      -webkit-animation-name: animate-input-to-initial;
              animation-name: animate-input-to-initial;
      width: var(--search-bar-width); }
      .search-bar.reverse-- .search-bar__input-holder .search-bar__input {
        padding: 15px 40px 15px 15px; } }

.search-bar__input {
  margin: 0 auto !important;
  width: var(--search-bar-width);
  padding: 15px 40px 15px 15px;
  border: 2px solid #000;
  border-radius: 15px;
  display: block;
  position: relative;
  z-index: 11;
  -webkit-animation: 0.4s var(--ease-out-power4);
          animation: 0.4s var(--ease-out-power4);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }
  .search-bar__input:focus {
    outline: none; }
    .search-bar__input:focus::-webkit-input-placeholder {
      color: #e5e5e5; }
    .search-bar__input:focus::-moz-placeholder {
      color: #e5e5e5; }
    .search-bar__input:focus:-ms-input-placeholder {
      color: #e5e5e5; }
    .search-bar__input:focus::-ms-input-placeholder {
      color: #e5e5e5; }
    .search-bar__input:focus::placeholder {
      color: #e5e5e5; }
  .search-bar__input::-webkit-input-placeholder {
    color: #000;
    font-size: 14px; }
  .search-bar__input::-moz-placeholder {
    color: #000;
    font-size: 14px; }
  .search-bar__input:-ms-input-placeholder {
    color: #000;
    font-size: 14px; }
  .search-bar__input::-ms-input-placeholder {
    color: #000;
    font-size: 14px; }
  .search-bar__input::placeholder {
    color: #000;
    font-size: 14px; }

@-webkit-keyframes animate-input-to-top {
  from {
    top: var(--initial-top); }
  to {
    top: var(--target-top); } }

@keyframes animate-input-to-top {
  from {
    top: var(--initial-top); }
  to {
    top: var(--target-top); } }

@-webkit-keyframes animate-input-to-initial {
  from {
    top: var(--target-top); }
  to {
    top: var(--initial-top); } }

@keyframes animate-input-to-initial {
  from {
    top: var(--target-top); }
  to {
    top: var(--initial-top); } }

.search-bar__results {
  --results-height: 0;
  --distance-from-top: var(--site-header-height);
  width: 100%;
  height: calc(100% - var(--distance-from-top));
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  position: fixed;
  top: var(--distance-from-top);
  left: 0;
  overflow: hidden;
  text-align: left; }
  @media (max-width: 639.42px) {
    .search-bar__results {
      opacity: 0;
      -webkit-transition-property: opacity;
      -o-transition-property: opacity;
      transition-property: opacity;
	  pointer-events: none; }
      .search-bar.active-- .search-bar__results {
        opacity: 1;
        z-index: 15;
	  	pointer-events: all; }
      .search-bar.active--.reverse-- .search-bar__results {
        opacity: 0; } }
  @media (min-width: 640px) {
    .search-bar__results {
      height: 0;
      position: absolute;
      top: 100%;
      margin-top: -15px;
      opacity: 1;
      -webkit-animation: 0.4s var(--ease-out-power4);
              animation: 0.4s var(--ease-out-power4); }
      .search-bar.active-- .search-bar__results {
        height: auto;
        -webkit-animation-name: animate-to-results-height;
                animation-name: animate-to-results-height; }
      .search-bar.active--.reverse-- .search-bar__results {
        height: 0;
        -webkit-animation-name: animate-to-zero-height;
                animation-name: animate-to-zero-height; } }

@-webkit-keyframes animate-to-results-height {
  from {
    height: 0; }
  to {
    height: var(--results-height); } }

@keyframes animate-to-results-height {
  from {
    height: 0; }
  to {
    height: var(--results-height); } }

@-webkit-keyframes animate-to-zero-height {
  from {
    height: var(--results-height); }
  to {
    height: 0; } }

@keyframes animate-to-zero-height {
  from {
    height: var(--results-height); }
  to {
    height: 0; } }

@-webkit-keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.search-bar__results-inner {
  padding: 15px 15px 10px;
  padding-top: calc(var(--search-bar-input-height) + 30px);
  border-radius: 0 0 15px 15px; }
  @media (min-width: 640px) {
    .search-bar__results-inner {
      padding-top: 30px;
      border: 2px solid #000; } }

.search-bar__links-heading {
  font-size: 12px;
  font-weight: 400;
  color: #474747;
  padding-bottom: 20px; }

.search-bar__links-list {
  list-style: none; }
  .search-bar__links-list li {
    padding-bottom: 20px; }

.search-bar__links.quick-links--, .search-bar__links.suggested-links-- {
  font-size: 14px;
  font-weight: 400;
  color: #000; }

.search-bar__links.suggested-links-- {
  display: none; }

.search-bar.show-suggested-links-- .search-bar__links.quick-links-- {
  display: none; }

.search-bar.show-suggested-links-- .search-bar__links.suggested-links-- {
  display: block; }

.search-bar__links-list {
  margin: 0 0 0 1.25em;
  padding: 0; }

/*---- Sample site header ----*/
.site-header {
/*   width: 100%; */
/*   height: 45px; */
/*   border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 15;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;  */
}

/*---- Wrapper component ----*/
.search-bar__section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto; }

/*-----------------------------------------------------------------------------
  $ Search Result
-----------------------------------------------------------------------------*/
.uf .search__top {
  position: relative;
  z-index: 1;
  padding-top: 188px;
  padding-bottom: 80px;
  background-color: #e5e5e5; }
  .uf .search__top-header {
    font-size: 40px;
    font-weight: 600;
    font-family: "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-align: center; }
    .uf .search__top-header span {
      color: #f454cd; }

.uf .search__content-not-found {
  padding-top: 80px;
  padding-bottom: 180px;
  font-size: 20px;
  font-weight: 600;
  color: #f454cd;
  text-align: center;
  height: calc(100vh - 749px); }
  .uf .search__content-not-found span {
    padding-top: 10px;
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #686868; }

.uf .search__content-zero {
  padding: 80px 0 180px;
  text-align: center; }
  .uf .search__content-zero-main {
    color: #f454cd;
    font-size: 20px;
    font-weight: 600; }
  .uf .search__content-zero-desc {
    padding-top: 10px;
    color: #686868;
    font-size: 18px; }

.uf .search__content-tabs {
  overflow: auto hidden; }
  .uf .search__content-tabs ul {
    margin: 0 auto;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    padding-bottom: 2px;
    list-style: none;
    margin-bottom: -3px; }
    .uf .search__content-tabs ul li {
      position: relative;
      padding: 24px;
      min-width: -webkit-min-content;
      min-width: -moz-min-content;
      min-width: min-content;
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      -webkit-transition: 0.2s all ease-in-out;
      -o-transition: 0.2s all ease-in-out;
      transition: 0.2s all ease-in-out;
      border-bottom: 1px solid #cdcdcd;
      white-space: nowrap; }
      .uf .search__content-tabs ul li span {
        margin-left: 10px;
        padding: 1px 8px;
        font-size: 17px;
        font-weight: 400;
        background-color: #e5e5e5;
        border-radius: 15px; }
      .uf .search__content-tabs ul li:hover {
        color: #f454cd; }
        .uf .search__content-tabs ul li:hover span {
          background-color: #ffd1f5; }
      .uf .search__content-tabs ul li.active-- {
        color: #f454cd; }
        .uf .search__content-tabs ul li.active--:before {
          content: "";
          width: 100%;
          position: absolute;
          left: 0;
          bottom: -2px;
          border-bottom: 3px solid #f454cd; }
        .uf .search__content-tabs ul li.active-- span {
          background-color: #ffd1f5; }

.uf .search__content-separator {
  border-bottom: 1px solid #cdcdcd; }

.uf .search__content-category {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .uf .search__content-category-item + .uf .search__content-category-item {
    margin-left: 15px; }
  .uf .search__content-category-item input {
    display: none; }
    .uf .search__content-category-item input:checked + label {
      color: #000;
      background-color: #f454cd; }
      .uf .search__content-category-item input:checked + label span {
        background-color: #fff; }
  .uf .search__content-category-item label {
    padding: 6px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #f454cd;
    border: 1px solid #f454cd;
    border-radius: 15px;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .uf .search__content-category-item label:hover {
      color: #000;
      background-color: #f454cd;
      opacity: 0.6; }
      .uf .search__content-category-item label:hover span {
        background-color: #fff; }
    .uf .search__content-category-item label span {
      color: #f454cd;
      font-size: 14px;
      font-weight: 400;
      padding: 1px 8px;
      border-radius: 15px;
      background-color: #e5e5e5; }

.uf .search__content-result#no-result {
  padding-top: 80px;
  padding-bottom: 144px; }

.uf .search__content-result {
  padding-top: 25px;
  padding-bottom: 65px; }
  .uf .search__content-result-image {
    max-width: 213px;
    border-radius: 15px;
    border: 1px solid #c9c9c9 !important; }
    .uf .search__content-result-image img {
      width: 100%;
      min-width: 211px;
      min-height: 134px;
      display: block;
      border-radius: 14px;
      -o-object-fit: cover;
         object-fit: cover; }
  .uf .search__content-result-image-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 213px;
    min-height: 134px;
    border-radius: 15px;
    border: 1px solid #c9c9c9 !important;
    font-size: 35px;
    font-weight: 700;
    font-family: "Sans of Time Bold", Work Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #000; }
    .uf .search__content-result-image-text span {
      font-size: 21px;
      display: block; }
  .uf .search__content-result-list {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    padding: 20px 25px;
    border: 1px solid #cdcdcd;
    border-radius: 10px; }
  .uf .search__content-result-directory {
    font-size: 14px;
    font-weight: 600;
    color: #000; }
  .uf .search__content-result-title {
    padding-top: 12px;
    font-size: 20px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .uf .search__content-result-desc {
    padding-top: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #767676;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .uf .search__content-result-link {
    margin-top: 17px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #f454cd; }
    .uf .search__content-result-link:hover {
      color: #f454cd;
      opacity: 0.6; }
  .uf .search__content-result-zero {
    font-size: 20px;
    font-weight: 600;
    color: #f454cd;
    text-align: center; }

@media (max-width: 640px) {
  .uf .search__top {
    z-index: auto;
    padding-top: 200px;
    padding-bottom: 120px; }
    .uf .search__top-header {
      font-size: 32px; }
  .uf .search__content .wrapper {
    padding: 0 36px !important; }
  .uf .search__content-zero {
    padding: 50px 0 67px;
    text-align: center; }
    .uf .search__content-zero-main {
      font-size: 20px; }
    .uf .search__content-zero-desc {
      font-size: 14px; }
  .uf .search__content-tabs::-webkit-scrollbar {
    display: none; }
  .uf .search__content-result-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    padding: 0;
    border-radius: 15px; }
    .uf .search__content-result-list.no-image-- {
      min-height: 320px; }
      .uf .search__content-result-list.no-image-- .search__content-result-container {
        height: 320px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .uf .search__content-result-list.no-image-- .search__content-result-desc {
        -webkit-line-clamp: 4; }
  .uf .search__content-result-image {
    margin: 10px; }
  .uf .search__content-result-image-text {
    margin: 10px;
    min-width: 213px; }
  .uf .search__content-result-container {
    padding: 15px; }
  .uf .search__content-result-directory {
    font-size: 12px; }
  .uf .search__content-result-title {
    font-size: 16px; }
  .uf .search__content-result-desc {
    padding-top: 5px;
    font-size: 14px; }
  .uf .search__content-result-link {
    margin-top: 20px; } }

@media (max-width: 480px) {
  .uf .search__top-header {
    font-size: 24px; }
  .uf .search__content-result-list {
    display: block; }
  .uf .search__content-result-image {
    max-width: none; }
    .uf .search__content-result-image img {
      min-height: 170px; }
  .uf .search__content-result-image-text {
    width: auto;
    min-height: 170px; } }

.uf .photos {
  position: relative;
  margin-top: 106px;
/*   border-top: 1px solid #e3e3e3;  */
}
  .uf .photos__wrapper {
    width: 100%;
    max-width: 1078px;
    padding-top: 50px;
    margin-right: auto;
    margin-left: auto; }
  .uf .photos__header {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #000; }
  .uf .photos__date {
    padding-top: 20px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #474747; }
    .uf .photos__date br {
      display: none; }
  .uf .photos__download-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 77px; }
    .uf .photos__download-all a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .uf .photos__download-all__desc {
      color: #f454cd;
      font-weight: 600;
      font-size: 16px;
      padding-right: 16px; }
    .uf .photos__download-all .icon {
      padding-right: 12px; }
  .uf .photos__cards {
    margin-top: 27px;
    padding-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    row-gap: 20px; }
    .uf .photos__cards-item {
      width: calc((100% / 3) - 10px);
      max-width: 350px;
      background-color: #e5e5e5;
      border-radius: 15px;
      cursor: pointer; }
      .uf .photos__cards-item:hover {
        color: #000; }
      .uf .photos__cards-item-image {
        position: relative; }
        .uf .photos__cards-item-image .photo {
          height: 220px;
          width: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          border-radius: 15px 15px 0 0; }
        .uf .photos__cards-item-image-size {
          position: absolute;
          bottom: 0;
          right: 0;
          font-size: 12px;
          color: #fff;
          padding: 8px 17px;
          margin: 10px;
          border-radius: 15px;
          background-color: #000;
          font-weight: 600; }
      .uf .photos__cards-item-info {
        padding: 20px;
        padding-top: 13px;
        padding-bottom: 21px; }
        .uf .photos__cards-item-info-desc {
          font-size: 18px;
          font-weight: 600;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden; }
        .uf .photos__cards-item-info .icon {
          padding-top: 15px; }
  .uf .photos__related__wrapper {
    background-color: #ddaeff;
    padding: 46px 138px 40px 138px;
    margin-right: auto;
    margin-left: auto; }
  .uf .photos__related-header {
    font-size: 40px;
    font-weight: 600;
    text-align: center; }
  .uf .photos__related-cards {
    max-width: 1078px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
    margin: auto;
    margin-top: 20px; }
    .uf .photos__related-cards-item {
      width: calc((100% / 3) - 14px);
      max-width: 350px;
      background-color: #e5e5e5;
      border-radius: 15px; }
      .uf .photos__related-cards-item-image {
        position: relative; }
        .uf .photos__related-cards-item-image .photo {
          height: 220px;
          width: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          border-radius: 15px 15px 0 0; }
        .uf .photos__related-cards-item-image-desc {
          position: absolute;
          bottom: 0;
          right: 0;
          font-size: 12px;
          font-weight: 400;
          color: #fff;
          padding: 8px 11px;
          margin: 10px;
          border-radius: 15px;
          background-color: #000;
          font-weight: 600; }
      .uf .photos__related-cards-item-info {
        padding: 20px;
        padding-top: 13px;
        padding-bottom: 34px; }
        .uf .photos__related-cards-item-info-desc {
          font-size: 18px;
          font-weight: 600;
          color: #f454cd;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden; }
        .uf .photos__related-cards-item-info-date {
          padding-top: 20px; }
  .uf .photos__back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 30px;
    padding-bottom: 42px;
    margin: auto;
    max-width: 1078px; }
    .uf .photos__back-icon {
      color: #f454cd;
      padding-right: 5px; }
    .uf .photos__back-desc {
      font-size: 16px;
      font-weight: 600;
      color: #f454cd; }
  .uf .photos__popup {
    position: relative;
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 20;
    overflow: auto;
    overflow-x: hidden;
    text-align: center; }
    .uf .photos__popup::before {
      content: "";
      width: 0;
      height: 100%;
      margin-left: -0.4em;
      display: inline-block;
      vertical-align: middle; }
    .uf .photos__popup.active-- {
      display: block; }
    .uf .photos__popup-container {
      position: relative;
      width: 100%;
      max-width: calc(880px - 0.4em);
      display: inline-block;
      vertical-align: middle; }
    .uf .photos__popup-close-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: right;
          -ms-flex-pack: right;
              justify-content: right; }
    .uf .photos__popup-close-container-mobile {
      display: none;
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 30; }
    .uf .photos__popup-close-icon {
      padding-right: 100px;
      padding-bottom: 25px; }
      .uf .photos__popup-close-icon .icon {
        background-color: black;
        height: 32px;
        width: 32px;
        border-radius: 50%;
        padding: 7px;
        cursor: pointer; }
    .uf .photos__popup-desc_container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 8px 100px 0px 100px; }
      .uf .photos__popup-desc_container-desc {
        font-size: 18px;
        font-weight: 600;
        text-align: left;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        width: 70%; }
      .uf .photos__popup-desc_container-download {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .uf .photos__popup-desc_container-download-size {
          padding-right: 13px;
          font-weight: 600; }
    .uf .photos__popup .swiper-container .photo {
      height: 343px;
      width: 680px;
      border-radius: 15px;
      -o-object-fit: cover;
         object-fit: cover; }
    .uf .photos__popup .swiper-container .swiper-button-next {
      background-image: url("../../../../uploads/assets/images/resource/photos/arrow-rounded-right.png");
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center;
      height: 50px;
      width: 50px; }
    .uf .photos__popup .swiper-container .swiper-button-next::after {
      display: none; }
    .uf .photos__popup .swiper-container .swiper-button-prev {
      background-image: url("../../../../uploads/assets/images/resource/photos/arrow-rounded-left.png");
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center;
      height: 50px;
      width: 50px; }
    .uf .photos__popup .swiper-container .swiper-button-prev::after {
      display: none; }
    .uf .photos__popup .swiper-container .swiper-pagination-custom {
      bottom: 100%; }
      .uf .photos__popup .swiper-container .swiper-pagination-custom-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .uf .photos__popup .swiper-container .swiper-pagination-custom-container .page {
          font-size: 16px;
          font-weight: 600;
          color: #f454cd;
          background-color: black;
          border-radius: 16px;
          padding: 6px 12px; }

@media (max-width: 1400px) {
  .uf .photos__related__wrapper {
    padding: 46px 0px 40px 0px; } }

@media (max-width: 1024px) {
  .uf .photos {
    border-top: none; }
    .uf .photos__wrapper {
      padding: 30px 36px; }
    .uf .photos__cards {
      -webkit-box-pack: left;
          -ms-flex-pack: left;
              justify-content: left; }
      .uf .photos__cards-item {
        width: calc(50% - 7px);
        max-width: none; }
        .uf .photos__cards-item-info {
          padding: 13px 10px 21px 10px; }
    .uf .photos__related__wrapper {
      padding: 46px 36px 40px 36px; }
    .uf .photos__related-cards {
      -webkit-box-pack: left;
          -ms-flex-pack: left;
              justify-content: left; }
      .uf .photos__related-cards-item {
        width: calc(50% - 10px);
        max-width: none; }
        .uf .photos__related-cards-item-info {
          padding: 13px 10px 21px 10px; }
    .uf .photos__back {
      padding: 30px; } }

@media (max-width: 800px) {
  .uf .photos {
    margin-top: 95px;
    border-top: none; }
    .uf .photos__header {
      font-size: 30px; }
    .uf .photos__date {
      font-size: 14px; }
    .uf .photos__download-all {
      margin-top: 40px; }
    .uf .photos__popup-container {
      position: unset; }
    .uf .photos__popup-close-container {
      display: none; }
      .uf .photos__popup-close-container-mobile {
        display: block; }
    .uf .photos__popup-close-icon {
      padding: 0; }
    .uf .photos__popup .swiper-container .photo {
      height: calc(100vh - 247px);
      width: 100%;
      border-radius: 0; }
    .uf .photos__popup .swiper-container .swiper-pagination-custom {
      top: 32px; }
    .uf .photos__popup-desc_container {
      position: absolute;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding: 13px 36px 22px 36px;
      width: 100%;
      height: 123px; }
      .uf .photos__popup-desc_container-desc {
        text-align: left;
        width: 100%; }
      .uf .photos__popup-desc_container-download {
        width: 100%;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: end; }
        .uf .photos__popup-desc_container-download-size {
          font-size: 12px; } }

@media (max-width: 640px) {
  .uf .photos__date br {
    display: block; }
  .uf .photos__download-all {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .uf .photos__cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 33px;
    padding-bottom: 70px; }
    .uf .photos__cards-item {
      width: 100%; }
  .uf .photos__related__wrapper {
    padding: 50px 36px; }
  .uf .photos__related-header {
    font-size: 30px; }
  .uf .photos__related-cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px; }
    .uf .photos__related-cards-item {
      width: 100%; }
  .uf .photos__back {
    display: none; }
  .uf .photos__popup .swiper-container .swiper-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .uf .photos__popup .swiper-container .photo {
    -o-object-fit: contain;
       object-fit: contain; }
  .uf .photos__popup-desc_container-desc {
    -webkit-line-clamp: 1; } }

/*-----------------------------------------------------------------------------
  $ Video
-----------------------------------------------------------------------------*/
.uf .video-media {
  margin-top: 106px;
/*   border-top: 1px solid #e3e3e3;  */
}
  .uf .video-media__wrapper {
    width: 100%;
    max-width: 1240px;
    padding: 50px 20px 0;
    margin: 0 auto; }
  .uf .video-media__header {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #000; }
  .uf .video-media__date {
    padding-top: 20px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #707070; }
  .uf .video-media__content {
    padding: 50px 0; }
  .uf .video-media__list-seperator {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #c9c9c9; }
  .uf .video-media__list-item {
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px; }
    .uf .video-media__list-item:first-child {
      padding-top: 0; }
    .uf .video-media__list-item:last-child {
      padding-bottom: 0; }
  .uf .video-media__list-video {
    position: relative;
    width: 100%;
    max-width: 530px; }
    .uf .video-media__list-video:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      display: block;
      background-color: rgba(0, 0, 0, 0.5);
      height: 100%;
      width: 100%;
      border-radius: 15px;
      -webkit-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    .uf .video-media__list-video:hover {
      cursor: pointer; }
      .uf .video-media__list-video:hover:after {
        background-color: rgba(0, 0, 0, 0.7); }
    .uf .video-media__list-video img {
      width: 100%;
      height: 320px;
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 15px;
      display: block;
      position: relative; }
    .uf .video-media__list-video span {
      width: 43px;
      height: 50px;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      z-index: 1; }
      .uf .video-media__list-video span:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        background-image: url(../../../../uploads/assets/images/resource/article/play-icon.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        padding-left: 43px;
        height: 50px;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
  .uf .video-media__list-desc {
    width: calc(100% - 530px);
    padding: 20px 0; }
    .uf .video-media__list-desc-title, .uf .video-media__list-desc-title, .uf .video-media__list-desc-title {
      color: #000;
      line-height: 1.3em; }
    .uf .video-media__list-desc-title {
      font-size: 18px;
      font-weight: 600; }
    .uf .video-media__list-desc-time {
      padding-top: 10px;
      font-size: 14px;
      font-weight: 600;
      color: #000; }
    .uf .video-media__list-desc-detail {
      padding-top: 30px;
      font-size: 14px; }
  .uf .video-media__back-link {
    max-width: 1120px;
    margin: 0 auto; }
    .uf .video-media__back-link-container {
      padding: 30px 20px; }
      .uf .video-media__back-link-container a {
        font-size: 16px;
        font-weight: 600;
        color: #f454cd; }
        .uf .video-media__back-link-container a::before {
          content: "";
          background-image: url(../../../../uploads/assets/images/resource/video/arrow-small.svg);
          background-size: contain;
          background-position: center;
          background-repeat: no-repeat;
          padding-left: 5px;
          margin-right: 5px; }
  .uf .video-media__popup {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 20;
    overflow: auto;
    text-align: center; }
    .uf .video-media__popup::before {
      content: "";
      width: 0;
      height: 100%;
      margin-left: -0.4em;
      display: inline-block;
      vertical-align: middle; }
    .uf .video-media__popup.active-- {
      display: block; }
    .uf .video-media__popup-container {
      position: relative;
      width: 100%;
      max-width: calc(720px - 0.4em);
      padding: 50px 20px;
      display: inline-block;
      vertical-align: middle; }
    .uf .video-media__popup-close {
      width: 24px;
      height: 24px;
      position: absolute;
      top: 10px;
      right: 20px; }
      .uf .video-media__popup-close:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 30px;
        height: 3px;
        background-color: #fff;
        -webkit-transform: translate(-3px, 10px) rotate(45deg);
            -ms-transform: translate(-3px, 10px) rotate(45deg);
                transform: translate(-3px, 10px) rotate(45deg); }
      .uf .video-media__popup-close:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 30px;
        height: 3px;
        background-color: #fff;
        -webkit-transform: translate(-3px, 10px) rotate(-45deg);
            -ms-transform: translate(-3px, 10px) rotate(-45deg);
                transform: translate(-3px, 10px) rotate(-45deg); }
      .uf .video-media__popup-close:hover:before, .uf .video-media__popup-close:hover:after {
        background-color: #f454cd; }
    .uf .video-media__popup-video {
      position: relative;
      overflow: hidden;
      width: 100%;
      padding-top: 56.25%; }
      .uf .video-media__popup-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%; }

@media (max-width: 1024px) {
  .uf .video-media {
    margin-top: 94px; }
    .uf .video-media__list-video {
      width: 50%; }
      .uf .video-media__list-video img {
        height: 250px; }
    .uf .video-media__list-desc {
      width: 50%; } }

@media (max-width: 800px) {
  .uf .video-media__popup-container {
    padding: 50px 0; } }

@media (max-width: 640px) {
  .uf .video-media__wrapper {
    padding: 30px 36px 36px; }
  .uf .video-media__header {
    font-size: 30px; }
  .uf .video-media__date {
    font-size: 14px; }
    .uf .video-media__date span {
      display: block; }
  .uf .video-media__content {
    padding: 50px 0 120px; }
  .uf .video-media__list-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0; }
  .uf .video-media__list-video {
    width: 100%; }
    .uf .video-media__list-video img {
      height: 250px; }
  .uf .video-media__list-desc {
    width: 100%;
    padding: 15px 0 0; }
    .uf .video-media__list-desc-detail {
      padding-top: 15px; } }

@media (max-width: 480px) {
  .uf .video-media__list-video img {
    height: 182px; } }
