@import url(https://fonts.googleapis.com/css?family=Nunito:300,400,600,700&display=swap&subset=latin-ext);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,400&display=swap&subset=latin-ext);
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
 .hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible; }
    .hamburger:hover {
      opacity: 0.7; }
    .hamburger.is-active:hover {
      opacity: 0.7; }
    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
      background-color: #000; }
  
  .hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative; }
  
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; }
    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
      width: 40px;
      height: 4px;
      background-color: #000;
      border-radius: 4px;
      position: absolute;
      transition-property: transform;
      transition-duration: 0.15s;
      transition-timing-function: ease; }
    .hamburger-inner::before, .hamburger-inner::after {
      content: "";
      display: block; }
    .hamburger-inner::before {
      top: -10px; }
    .hamburger-inner::after {
      bottom: -10px; }
  
  /*
     * 3DX
     */
  .hamburger--3dx .hamburger-box {
    perspective: 80px; }
  
  .hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
      transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  
  .hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg); }
    .hamburger--3dx.is-active .hamburger-inner::before {
      transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--3dx.is-active .hamburger-inner::after {
      transform: translate3d(0, -10px, 0) rotate(-45deg); }
  
  /*
     * 3DX Reverse
     */
  .hamburger--3dx-r .hamburger-box {
    perspective: 80px; }
  
  .hamburger--3dx-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
      transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  
  .hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(-180deg); }
    .hamburger--3dx-r.is-active .hamburger-inner::before {
      transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--3dx-r.is-active .hamburger-inner::after {
      transform: translate3d(0, -10px, 0) rotate(-45deg); }
  
  /*
     * 3DY
     */
  .hamburger--3dy .hamburger-box {
    perspective: 80px; }
  
  .hamburger--3dy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
      transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  
  .hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(-180deg); }
    .hamburger--3dy.is-active .hamburger-inner::before {
      transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--3dy.is-active .hamburger-inner::after {
      transform: translate3d(0, -10px, 0) rotate(-45deg); }
  
  /*
     * 3DY Reverse
     */
  .hamburger--3dy-r .hamburger-box {
    perspective: 80px; }
  
  .hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
      transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  
  .hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg); }
    .hamburger--3dy-r.is-active .hamburger-inner::before {
      transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--3dy-r.is-active .hamburger-inner::after {
      transform: translate3d(0, -10px, 0) rotate(-45deg); }
  
  /*
     * 3DXY
     */
  .hamburger--3dxy .hamburger-box {
    perspective: 80px; }
  
  .hamburger--3dxy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
      transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  
  .hamburger--3dxy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg); }
    .hamburger--3dxy.is-active .hamburger-inner::before {
      transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--3dxy.is-active .hamburger-inner::after {
      transform: translate3d(0, -10px, 0) rotate(-45deg); }
  
  /*
     * 3DXY Reverse
     */
  .hamburger--3dxy-r .hamburger-box {
    perspective: 80px; }
  
  .hamburger--3dxy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
      transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  
  .hamburger--3dxy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
    .hamburger--3dxy-r.is-active .hamburger-inner::before {
      transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--3dxy-r.is-active .hamburger-inner::after {
      transform: translate3d(0, -10px, 0) rotate(-45deg); }
  
  /*
     * Arrow
     */
  .hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  
  .hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  
  /*
     * Arrow Right
     */
  .hamburger--arrow-r.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  
  .hamburger--arrow-r.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  
  /*
     * Arrow Alt
     */
  .hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
  
  .hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
  
  .hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
  
  .hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
  
  /*
     * Arrow Alt Right
     */
  .hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
  
  .hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
  
  .hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
  
  .hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
  
  /*
     * Arrow Turn
     */
  .hamburger--arrowturn.is-active .hamburger-inner {
    transform: rotate(-180deg); }
    .hamburger--arrowturn.is-active .hamburger-inner::before {
      transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
    .hamburger--arrowturn.is-active .hamburger-inner::after {
      transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  
  /*
     * Arrow Turn Right
     */
  .hamburger--arrowturn-r.is-active .hamburger-inner {
    transform: rotate(-180deg); }
    .hamburger--arrowturn-r.is-active .hamburger-inner::before {
      transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
    .hamburger--arrowturn-r.is-active .hamburger-inner::after {
      transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  
  /*
     * Boring
     */
  .hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
    transition-property: none; }
  
  .hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg); }
    .hamburger--boring.is-active .hamburger-inner::before {
      top: 0;
      opacity: 0; }
    .hamburger--boring.is-active .hamburger-inner::after {
      bottom: 0;
      transform: rotate(-90deg); }
  
  /*
     * Collapse
     */
  .hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--collapse .hamburger-inner::after {
      top: -20px;
      transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
    .hamburger--collapse .hamburger-inner::before {
      transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--collapse.is-active .hamburger-inner::after {
      top: 0;
      opacity: 0;
      transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
    .hamburger--collapse.is-active .hamburger-inner::before {
      top: 0;
      transform: rotate(-90deg);
      transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }
  
  /*
     * Collapse Reverse
     */
  .hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--collapse-r .hamburger-inner::after {
      top: -20px;
      transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
    .hamburger--collapse-r .hamburger-inner::before {
      transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--collapse-r.is-active .hamburger-inner::after {
      top: 0;
      opacity: 0;
      transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
    .hamburger--collapse-r.is-active .hamburger-inner::before {
      top: 0;
      transform: rotate(90deg);
      transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }
  
  /*
     * Elastic
     */
  .hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
    .hamburger--elastic .hamburger-inner::before {
      top: 10px;
      transition: opacity 0.125s 0.275s ease; }
    .hamburger--elastic .hamburger-inner::after {
      top: 20px;
      transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  
  .hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s; }
    .hamburger--elastic.is-active .hamburger-inner::before {
      transition-delay: 0s;
      opacity: 0; }
    .hamburger--elastic.is-active .hamburger-inner::after {
      transform: translate3d(0, -20px, 0) rotate(-270deg);
      transition-delay: 0.075s; }
  
  /*
     * Elastic Reverse
     */
  .hamburger--elastic-r .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
    .hamburger--elastic-r .hamburger-inner::before {
      top: 10px;
      transition: opacity 0.125s 0.275s ease; }
    .hamburger--elastic-r .hamburger-inner::after {
      top: 20px;
      transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  
  .hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(-135deg);
    transition-delay: 0.075s; }
    .hamburger--elastic-r.is-active .hamburger-inner::before {
      transition-delay: 0s;
      opacity: 0; }
    .hamburger--elastic-r.is-active .hamburger-inner::after {
      transform: translate3d(0, -20px, 0) rotate(270deg);
      transition-delay: 0.075s; }
  
  /*
     * Emphatic
     */
  .hamburger--emphatic {
    overflow: hidden; }
    .hamburger--emphatic .hamburger-inner {
      transition: background-color 0.125s 0.175s ease-in; }
      .hamburger--emphatic .hamburger-inner::before {
        left: 0;
        transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
      .hamburger--emphatic .hamburger-inner::after {
        top: 10px;
        right: 0;
        transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
    .hamburger--emphatic.is-active .hamburger-inner {
      transition-delay: 0s;
      transition-timing-function: ease-out;
      background-color: transparent !important; }
      .hamburger--emphatic.is-active .hamburger-inner::before {
        left: -80px;
        top: -80px;
        transform: translate3d(80px, 80px, 0) rotate(45deg);
        transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .hamburger--emphatic.is-active .hamburger-inner::after {
        right: -80px;
        top: -80px;
        transform: translate3d(-80px, 80px, 0) rotate(-45deg);
        transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
  
  /*
     * Emphatic Reverse
     */
  .hamburger--emphatic-r {
    overflow: hidden; }
    .hamburger--emphatic-r .hamburger-inner {
      transition: background-color 0.125s 0.175s ease-in; }
      .hamburger--emphatic-r .hamburger-inner::before {
        left: 0;
        transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
      .hamburger--emphatic-r .hamburger-inner::after {
        top: 10px;
        right: 0;
        transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r.is-active .hamburger-inner {
      transition-delay: 0s;
      transition-timing-function: ease-out;
      background-color: transparent !important; }
      .hamburger--emphatic-r.is-active .hamburger-inner::before {
        left: -80px;
        top: 80px;
        transform: translate3d(80px, -80px, 0) rotate(-45deg);
        transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .hamburger--emphatic-r.is-active .hamburger-inner::after {
        right: -80px;
        top: 80px;
        transform: translate3d(-80px, -80px, 0) rotate(45deg);
        transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
  
  /*
     * Minus
     */
  .hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
    transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }
  
  .hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
    opacity: 0;
    transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }
  
  .hamburger--minus.is-active .hamburger-inner::before {
    top: 0; }
  
  .hamburger--minus.is-active .hamburger-inner::after {
    bottom: 0; }
  
  /*
     * Slider
     */
  .hamburger--slider .hamburger-inner {
    top: 2px; }
    .hamburger--slider .hamburger-inner::before {
      top: 10px;
      transition-property: transform, opacity;
      transition-timing-function: ease;
      transition-duration: 0.15s; }
    .hamburger--slider .hamburger-inner::after {
      top: 20px; }
  
  .hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--slider.is-active .hamburger-inner::before {
      transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
      opacity: 0; }
    .hamburger--slider.is-active .hamburger-inner::after {
      transform: translate3d(0, -20px, 0) rotate(-90deg); }
  
  /*
     * Slider Reverse
     */
  .hamburger--slider-r .hamburger-inner {
    top: 2px; }
    .hamburger--slider-r .hamburger-inner::before {
      top: 10px;
      transition-property: transform, opacity;
      transition-timing-function: ease;
      transition-duration: 0.15s; }
    .hamburger--slider-r .hamburger-inner::after {
      top: 20px; }
  
  .hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(-45deg); }
    .hamburger--slider-r.is-active .hamburger-inner::before {
      transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
      opacity: 0; }
    .hamburger--slider-r.is-active .hamburger-inner::after {
      transform: translate3d(0, -20px, 0) rotate(90deg); }
  
  /*
     * Spin
     */
  .hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--spin .hamburger-inner::before {
      transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
    .hamburger--spin .hamburger-inner::after {
      transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--spin.is-active .hamburger-inner::before {
      top: 0;
      opacity: 0;
      transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
    .hamburger--spin.is-active .hamburger-inner::after {
      bottom: 0;
      transform: rotate(-90deg);
      transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
  
  /*
     * Spin Reverse
     */
  .hamburger--spin-r .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--spin-r .hamburger-inner::before {
      transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
    .hamburger--spin-r .hamburger-inner::after {
      transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--spin-r.is-active .hamburger-inner::before {
      top: 0;
      opacity: 0;
      transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
    .hamburger--spin-r.is-active .hamburger-inner::after {
      bottom: 0;
      transform: rotate(90deg);
      transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
  
  /*
     * Spring
     */
  .hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear; }
    .hamburger--spring .hamburger-inner::before {
      top: 10px;
      transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--spring .hamburger-inner::after {
      top: 20px;
      transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important; }
    .hamburger--spring.is-active .hamburger-inner::before {
      top: 0;
      transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
      transform: translate3d(0, 10px, 0) rotate(45deg); }
    .hamburger--spring.is-active .hamburger-inner::after {
      top: 0;
      transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
      transform: translate3d(0, 10px, 0) rotate(-45deg); }
  
  /*
     * Spring Reverse
     */
  .hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--spring-r .hamburger-inner::after {
      top: -20px;
      transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
    .hamburger--spring-r .hamburger-inner::before {
      transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--spring-r.is-active .hamburger-inner::after {
      top: 0;
      opacity: 0;
      transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
    .hamburger--spring-r.is-active .hamburger-inner::before {
      top: 0;
      transform: rotate(90deg);
      transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  
  /*
     * Stand
     */
  .hamburger--stand .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
    .hamburger--stand .hamburger-inner::before {
      transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--stand .hamburger-inner::after {
      transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--stand.is-active .hamburger-inner {
    transform: rotate(90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
    .hamburger--stand.is-active .hamburger-inner::before {
      top: 0;
      transform: rotate(-45deg);
      transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--stand.is-active .hamburger-inner::after {
      bottom: 0;
      transform: rotate(45deg);
      transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  
  /*
     * Stand Reverse
     */
  .hamburger--stand-r .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
    .hamburger--stand-r .hamburger-inner::before {
      transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--stand-r .hamburger-inner::after {
      transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
    .hamburger--stand-r.is-active .hamburger-inner::before {
      top: 0;
      transform: rotate(-45deg);
      transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--stand-r.is-active .hamburger-inner::after {
      bottom: 0;
      transform: rotate(45deg);
      transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  
  /*
     * Squeeze
     */
  .hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
    .hamburger--squeeze .hamburger-inner::before {
      transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
    .hamburger--squeeze .hamburger-inner::after {
      transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  
  .hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger--squeeze.is-active .hamburger-inner::before {
      top: 0;
      opacity: 0;
      transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
    .hamburger--squeeze.is-active .hamburger-inner::after {
      bottom: 0;
      transform: rotate(-90deg);
      transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
  
  /*
     * Vortex
     */
  .hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
    .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
      transition-duration: 0s;
      transition-delay: 0.1s;
      transition-timing-function: linear; }
    .hamburger--vortex .hamburger-inner::before {
      transition-property: top, opacity; }
    .hamburger--vortex .hamburger-inner::after {
      transition-property: bottom, transform; }
  
  .hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
    .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
      transition-delay: 0s; }
    .hamburger--vortex.is-active .hamburger-inner::before {
      top: 0;
      opacity: 0; }
    .hamburger--vortex.is-active .hamburger-inner::after {
      bottom: 0;
      transform: rotate(90deg); }
  
  /*
     * Vortex Reverse
     */
  .hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
    .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
      transition-duration: 0s;
      transition-delay: 0.1s;
      transition-timing-function: linear; }
    .hamburger--vortex-r .hamburger-inner::before {
      transition-property: top, opacity; }
    .hamburger--vortex-r .hamburger-inner::after {
      transition-property: bottom, transform; }
  
  .hamburger--vortex-r.is-active .hamburger-inner {
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
    .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
      transition-delay: 0s; }
    .hamburger--vortex-r.is-active .hamburger-inner::before {
      top: 0;
      opacity: 0; }
    .hamburger--vortex-r.is-active .hamburger-inner::after {
      bottom: 0;
      transform: rotate(-90deg); }
body,
html {
  width: 100%;
  height: 100%;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
div {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #D6026D;
}
a:hover {
  text-decoration: underline;
}
button {
  cursor: pointer;
}
button:focus {
  outline: none;
}
input,
textarea {
  font-size: 16px;
}
input:focus,
textarea:focus {
  outline: none;
}
input,
textarea,
button {
  -webkit-appearance: none;
}
/* Track */
*::-webkit-scrollbar {
  width: 4px;
}
*:-webkit-scrollbar-track {
  width: 4px;
  border-radius: 2px;
  background-color: #e8e4e8;
}
/* Handle */
*::-webkit-scrollbar-thumb {
  width: 6px;
  height: 70px;
  border-radius: 3px;
  background-color: #d6026d;
}
.icon-svg {
  display: inline-block;
}
.hidden {
  display: none !important;
}
.overlay--dark {
  min-height: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.spacer {
  width: 100%;
  height: 30px;
}
.section-heading {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 1250px) {
  .section-heading {
    font-size: 28px;
    line-height: 45px;
  }
}
@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
    line-height: 35px;
  }
}
.section-subheading {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 1250px) {
  .section-subheading {
    font-size: 19px;
  }
}
.section-intro {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 1250px) {
  .section-intro {
    font-size: 15px;
    line-height: 22px;
  }
}
.section-intro p {
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid #D6026D;
  padding: 0 20px;
  transition: all 0.3s ease-in-out;
  color: #D6026D;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  cursor: pointer;
}
.btn:hover {
  background: #D6026D;
  color: #ffffff;
}
a.btn:hover {
  text-decoration: none;
}
.icon-svg-ext {
  width: 11px;
  height: 11px;
  background: url(images/ext_link_brown.svg) no-repeat center;
}
.inner-wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1250px) {
  .inner-wrapper {
    width: 708px;
  }
}
.sellers-widget {
  padding-top: 30px;
  display: flex;
  height: 530px;
}
.sellers-widget .gps-coordinates {
  display: none;
  z-index: 5;
  width: 225px;
  position: absolute;
  height: 26px;
  background: #ffffff;
  border-radius: 13px;
  right: 15px;
  bottom: 15px;
  padding-left: 30px;
  background-image: url(images/gps_coordinates.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 10px center;
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .sellers-widget .gps-coordinates {
    display: none !important;
  }
}
@media screen and (max-width: 769px) {
  .sellers-widget {
    display: block;
  }
}
.sellers-widget .controls {
  width: 365px;
  min-width: 365px;
  height: 100%;
  margin-right: 20px;
}
@media screen and (max-width: 769px) {
  .sellers-widget .controls {
    margin: 0 auto;
    width: 315px;
    min-width: 315px;
  }
}
@media screen and (max-width: 375px) {
  .sellers-widget .controls {
    width: 100%;
    min-width: 0;
  }
}
.sellers-widget .controls .search {
  padding-right: 25px;
}
@media screen and (max-width: 769px) {
  .sellers-widget .controls .search {
    padding-right: 0;
  }
}
.sellers-widget .controls .search .inputs {
  display: flex;
  justify-content: space-between;
}
.sellers-widget .controls .search .inputs .localize {
  width: 40px;
}
.sellers-widget .controls .search .inputs .localize .localization-btn {
  position: relative;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  background-image: url(images/gps.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 100%;
  opacity: 0.5;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease-in-out;
}
.sellers-widget .controls .search .inputs .localize .localization-btn:hover {
  opacity: 1;
}
.sellers-widget .controls .search .inputs .localize .localization-btn:focus {
  outline: none;
}
.sellers-widget .controls .search .inputs .localize .localization-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  background: #D6026D;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  margin: -4px 0 0 -4px;
}
.sellers-widget .controls .search .inputs .search-field {
  position: relative;
}
.sellers-widget .controls .search .inputs .search-field input {
  width: 290px;
  height: 42px;
  padding: 0 50px 0 15px;
  box-sizing: border-box;
  border-radius: 21px;
  border: 1px solid #e8e4e8;
  background-color: #ffffff;
}
@media screen and (max-width: 769px) {
  .sellers-widget .controls .search .inputs .search-field input {
    width: 265px;
  }
}
@media screen and (max-width: 375px) {
  .sellers-widget .controls .search .inputs .search-field input {
    width: 200px;
    margin-left: 10px;
  }
}
.sellers-widget .controls .search .inputs .search-field button {
  width: 42px;
  height: 42px;
  border: 1px solid #d6026d;
  background: #ffffff;
  border-radius: 100%;
  background-image: url(images/zoom.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s ease-in-out;
}
.sellers-widget .controls .search .inputs .search-field button:hover {
  background-color: #d6026d;
  background-image: url(images/zoom-white.svg);
}
.sellers-widget .controls .search .options {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #e8e4e8;
  padding: 15px 0;
}
.sellers-widget .controls .search .options .option {
  margin: 0 7px;
}
@media screen and (max-width: 375px) {
  .sellers-widget .controls .search .options .option {
    margin: 0 5px 0 0;
  }
  .sellers-widget .controls .search .options .option:last-child {
    margin-right: 0;
  }
}
.sellers-widget .controls .search .options .option input {
  visibility: hidden;
  width: 0;
  margin: 0;
}
.sellers-widget .controls .search .options .option label {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  padding-left: 25px;
}
.sellers-widget .controls .search .options .option label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #e8e4e8;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sellers-widget .controls .search .options .option input[type='checkbox']:checked ~ label::before {
  background-image: url(images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
}
.sellers-widget .controls .list {
  padding: 10px 20px 10px 0;
  height: 395px;
  overflow-y: scroll;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sellers-widget .controls .list {
    padding: 10px 0;
  }
}
.sellers-widget .controls .list__item--active .list__item__header {
  background: #ffffff;
  border-radius: 3px 3px 0 0;
}
.sellers-widget .controls .list__item--active .list__item__content {
  display: block;
}
.sellers-widget .controls .list__item__header {
  padding: 10px 15px 5px 15px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 375px) {
  .sellers-widget .controls .list__item__header {
    display: block;
    height: auto;
    padding: 6px 15px;
  }
}
.sellers-widget .controls .list__item__header .name {
  color: #D6026D;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}
@media screen and (max-width: 768px) {
  .sellers-widget .controls .list__item__header .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .sellers-widget .controls .list__item__header .name {
    line-height: 20px;
    font-size: 16px;
  }
}
.sellers-widget .controls .list__item__header .city {
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-align: right;
}
@media screen and (max-width: 375px) {
  .sellers-widget .controls .list__item__header .city {
    line-height: 20px;
  }
}
.sellers-widget .controls .list__item__header:hover {
  background: #ffffff;
  cursor: pointer;
  border-radius: 3px;
}
.sellers-widget .controls .list__item__content {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  padding: 15px 15px 0;
  display: none;
}
.sellers-widget .controls .list__item__content .address {
  font-family: Nunito;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
}
.sellers-widget .controls .list__item__content .link {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 15px;
}
.sellers-widget .controls .list__item__content .link .icon-svg-ext {
  margin-left: 5px;
  background: url(images/ext_link_purple.svg);
}
.sellers-widget .map {
  width: 100%;
  border-radius: 21px;
  z-index: 2;
  border: 4px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .sellers-widget .map {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sellers-widget--active {
    opacity: 1;
  }
}
/* for animation of scrolling onto section */
.backtohome {
  width: 170px;
  height: 60px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 0 30px 30px 0;
  background-color: #ffffff;
  position: fixed;
  bottom: 160px;
  left: 0;
  background-image: url(images/cap.svg);
  background-repeat: no-repeat;
  background-position: 15px 10px;
  padding-left: 10px;
}
@media screen and (max-width: 1250px) {
  .backtohome {
    display: none;
  }
}
.backtohome p {
  padding-left: 15px;
  padding-top: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 17px;
  text-transform: uppercase;
  color: #401f1f;
}
.backtohome p a {
  color: #D6026D !important;
}
.modal-active {
  display: flex !important;
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  flex-direction: column;
  justify-content: center;
  display: none;
}
.modal .modal-inner {
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
  height: 80%;
  background: #ffffff;
  border-radius: 5px;
  padding: 40px 20px 40px 40px;
}
@media screen and (max-width: 768px) {
  .modal .modal-inner {
    width: 100%;
    height: 100%;
  }
}
.modal .modal-inner .modal-header .close {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #c6005b;
  border-radius: 100%;
  background-color: white;
  background-image: url(images/close_purple.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10.1px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: -20px;
  right: -20px;
}
@media screen and (max-width: 768px) {
  .modal .modal-inner .modal-header .close {
    top: 20px;
    right: 20px;
  }
}
.modal .modal-inner .modal-header .close:hover {
  background-color: #c6005b;
  background-image: url(images/close_white.svg);
}
.modal .modal-inner .modal-content {
  max-height: 100%;
  padding: 0 0 20px 0;
  position: relative;
  overflow-y: scroll;
}
.modal .modal-inner .modal-content h2 {
  text-align: center;
  color: #401f1f;
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .modal .modal-inner .modal-content h2 {
    padding: 0 70px;
  }
}
@media screen and (max-width: 500px) {
  .modal .modal-inner .modal-content h2 {
    padding: 0;
  }
}
.modal .modal-inner .modal-content h2 .icon-svg-shield {
  width: 27px;
  height: 31px;
  margin-right: 20px;
  background: url(images/protection_brown.svg) no-repeat center;
  position: relative;
  top: 2px;
}
.modal .modal-inner .modal-content .notice {
  text-align: center;
  color: #838383;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 40px;
}
.modal .modal-inner .modal-content h3 {
  color: #401f1f;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 20px;
  padding-top: 10px;
}
.modal .modal-inner .modal-content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
}
@media screen and (min-width: 1250px) {
  .header--scrolled .header__wrapper {
    height: 80px;
    padding: 10px 20px;
  }
  .header--scrolled .header__wrapper .logo {
    height: 100%;
  }
  .header--scrolled .header__wrapper .logo-wrapper span {
    font-size: 18px;
  }
  .header--scrolled .header__wrapper .logo-wrapper span::before {
    height: 20px;
    margin: 0 20px 0 0;
  }
  .header--scrolled .header__wrapper .main-menu {
    padding-top: 35px;
    height: 35px;
  }
  .header--scrolled .header__wrapper .main-menu .dropdown::after {
    bottom: 10px;
  }
  .header--scrolled .header__wrapper .main-menu ul .client-login::after {
    bottom: 10px;
  }
  .header--scrolled .header__wrapper .main-menu ul .client-login:hover::after {
    bottom: 5px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
}
.header__wrapper {
  width: 100%;
  height: 130px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 25px 50px 0 50px;
  box-sizing: border-box;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .header__wrapper {
    height: 80px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__wrapper {
    height: 60px;
  }
}
.header__wrapper .logo {
  width: 140px;
  height: 80px;
  background: url(images/logo_babydirekt.svg) no-repeat center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .logo {
    width: 105px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .header__wrapper .logo {
    height: 40px;
    width: 70px;
  }
}
.header__wrapper .hamburger {
  display: none;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .hamburger {
    display: block;
    padding: 22px 0;
  }
  .header__wrapper .hamburger .hamburger-box {
    width: 25px;
    height: 20px;
  }
  .header__wrapper .hamburger .hamburger-box .hamburger-inner,
  .header__wrapper .hamburger .hamburger-box .hamburger-inner::before,
  .header__wrapper .hamburger .hamburger-box .hamburger-inner::after {
    width: 25px;
    height: 2px;
    background-color: #D6026D;
  }
  .header__wrapper .hamburger .hamburger-box .hamburger-inner {
    top: 2px;
  }
  .header__wrapper .hamburger .hamburger-box .hamburger-inner::before {
    top: 7px;
  }
  .header__wrapper .hamburger .hamburger-box .hamburger-inner::after {
    top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .header__wrapper .hamburger {
    padding: 12px 0;
  }
}
.header__wrapper .hamburger.is-active .hamburger-inner {
  top: 8px;
}
.header__wrapper .hamburger.is-active .hamburger-inner::after {
  top: 0;
}
.header__wrapper .main-menu {
  height: 45px;
  padding-top: 60px;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    padding-top: 0;
    background-color: rgba(21, 13, 13, 0.95);
  }
}
@media screen and (max-width: 768px) {
  .header__wrapper .main-menu {
    top: 60px;
  }
}
.header__wrapper .main-menu .gdpr {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 15px;
  text-transform: uppercase;
  margin-top: 10px;
}
@media screen and (min-width: 1250px) {
  .header__wrapper .main-menu .gdpr {
    display: none;
  }
}
.header__wrapper .main-menu .gdpr .icon-svg-shield {
  background: url(images/protection_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 18px;
  margin-right: 10px;
  vertical-align: bottom;
}
.header__wrapper .main-menu ul {
  display: flex;
  list-style-type: none;
  height: 100%;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul {
    display: block;
    height: auto;
    text-align: center;
  }
}
.header__wrapper .main-menu ul li {
  position: relative;
  margin-left: 35px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: bold;
  color: #401f1f;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul li {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.4px;
    line-height: 36px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
  }
}
.header__wrapper .main-menu ul li .active {
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: #D6026D;
  transition: width 0.3s ease-in-out;
}
@media screen and (min-width: 1250px) {
  .header__wrapper .main-menu ul li .active--toggled {
    width: 100%;
  }
}
.header__wrapper .main-menu ul li .active--toggled--mobile {
  position: relative;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul li .active--toggled--mobile::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #D6026D;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.header__wrapper .main-menu ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease-in-out;
}
.header__wrapper .main-menu ul li a:hover {
  color: #D6026D;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul li a {
    display: inline-block;
  }
}
.header__wrapper .main-menu ul li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul ._active a {
    border-bottom: 1px solid #D6026D;
  }
}
.header__wrapper .main-menu ul .career-link .icon-svg-ext {
  margin-left: 5px;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul .career-link .icon-svg-ext {
    background: url(images/ext_link_white.svg);
    vertical-align: super;
  }
}
.header__wrapper .main-menu ul .client-login {
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.header__wrapper .main-menu ul .client-login::after {
  content: "";
  bottom: 15px;
  width: 10px;
  height: 7px;
  background: url(images/arrow_up_grey.svg) no-repeat center;
  transform: rotate(180deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul .client-login::after {
    bottom: auto;
    top: 43px;
  }
}
@media screen and (max-width: 361px) {
  .header__wrapper .main-menu ul .client-login::after {
    top: 80px;
  }
}
.header__wrapper .main-menu ul .client-login:hover {
  color: #d6026d;
}
.header__wrapper .main-menu ul .client-login:hover::after {
  bottom: 10px;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul .client-login:hover::after {
    bottom: auto;
  }
}
.header__wrapper .main-menu ul .client-login:hover .dropdown {
  display: block;
}
.header__wrapper .main-menu ul .client-login .dropdown {
  display: none;
  position: absolute;
  height: 120px;
  padding-top: 10px;
  width: 190px;
  bottom: -125px;
  left: -20px;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul .client-login .dropdown {
    display: block;
    position: relative;
    height: auto;
    padding: 0;
    bottom: auto;
    left: auto;
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
}
.header__wrapper .main-menu ul .client-login .dropdown li {
  line-height: 55px;
  padding-left: 50px;
  background: #ffffff;
  margin: 0;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul .client-login .dropdown li {
    background: transparent;
    line-height: 22px;
    padding: 0;
    font-size: 13px;
    margin: 10px 0;
  }
}
.header__wrapper .main-menu ul .client-login .dropdown li:first-child {
  border-radius: 10px 10px 0 0;
}
.header__wrapper .main-menu ul .client-login .dropdown li:last-child {
  border-radius: 0 0 10px 10px;
}
.header__wrapper .main-menu ul .client-login .dropdown li .flag-cz,
.header__wrapper .main-menu ul .client-login .dropdown li .flag-sk {
  background: url(images/cz_flag.svg) center no-repeat;
  width: 25px;
  height: 10px;
  position: absolute;
  display: inline-block;
  left: 14px;
  top: 22px;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu ul .client-login .dropdown li .flag-cz,
  .header__wrapper .main-menu ul .client-login .dropdown li .flag-sk {
    position: relative;
    margin-right: 10px;
    top: auto;
    left: auto;
  }
}
.header__wrapper .main-menu ul .client-login .dropdown li .flag-sk {
  background: url(images/sk_flag.svg) center no-repeat;
}
.header__wrapper .main-menu ul .client-login .dropdown::after {
  content: none;
}
@media screen and (max-width: 1250px) {
  .header__wrapper .main-menu--active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.footer {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 90px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  padding: 0 40px 0 50px;
}
@media screen and (max-width: 678px) {
  .footer {
    flex-direction: column;
    justify-content: initial;
    height: auto;
    padding: 100px 0 0;
    text-align: center;
  }
}
.footer .experiences {
  color: #401f1f;
  font-size: 1.389rem;
  font-weight: 700;
  line-height: 90px;
}
.footer .experiences span {
  color: #D6026D;
}
@media screen and (max-width: 678px) {
  .footer .experiences {
    order: 2;
    z-index: 2;
    margin-top: 80px;
    line-height: 25px;
  }
}
.footer .copyright {
  color: #848484;
  font-size: 0.7778rem;
  line-height: 90px;
}
@media screen and (max-width: 678px) {
  .footer .copyright {
    order: 3;
    line-height: 20px;
    padding: 20px 0;
  }
}
.footer .scroll-up {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 0;
}
@media screen and (max-width: 678px) {
  .footer .scroll-up {
    order: 1;
    margin-left: calc(-80px/2);
  }
}
.footer .scroll-up:hover .icon-svg--scroll-up {
  top: 0px;
}
.footer .scroll-up::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff;
  transform: rotate(45deg);
  border-radius: 20px;
  top: -10px;
  position: absolute;
  z-index: 1;
}
.footer .scroll-up__text {
  color: #D6026D;
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  line-height: 90px;
  top: 0;
  z-index: 2;
  transition: all 0.1s ease-in-out;
}
.footer .scroll-up .icon-svg--scroll-up {
  display: block;
  width: 14px;
  height: 10px;
  background: url(images/arrow_up.svg) no-repeat center;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -7px;
  z-index: 2;
  transition: all 0.1s ease-in-out;
}
.footer .learning {
  text-align: right;
  float: right;
  line-height: 90px;
  font-size: 0.8rem;
}
@media screen and (max-width: 678px) {
  .footer .learning {
    line-height: initial;
    float: none;
    text-align: center;
  }
}
.contacts {
  padding: 35px 0 80px 0;
}
@media screen and (max-width: 768px) {
  .contacts {
    padding: 35px 0 0 0;
  }
}
.contacts .section-intro {
  color: #323232;
}
.contacts .section-heading,
.contacts .section-subheading {
  color: #401f1f;
}
@media screen and (max-width: 1250px) {
  .contacts .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.contacts__info {
  margin-bottom: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1250px) {
  .contacts__info {
    display: block;
  }
}
.contacts__info__persons {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
@media screen and (max-width: 1250px) {
  .contacts__info__persons {
    width: 708px;
    margin: 35px auto 0 auto;
    display: flex;
    justify-content: space-evenly;
  }
}
.contacts__info__persons .btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .contacts__info__persons {
    width: 315px;
    margin: 35px auto 0;
    display: block;
    text-align: center;
  }
  .contacts__info__persons .btn {
    display: inline-block;
  }
}
@media screen and (max-width: 375px) {
  .contacts__info__persons {
    width: 100%;
  }
}
.contacts__info__persons .section-subheading {
  text-align: left;
}
@media screen and (max-width: 1250px) {
  .contacts__info__persons .section-subheading {
    text-align: center;
  }
}
.contacts__info__persons .person {
  margin-bottom: 40px;
}
@media screen and (max-width: 1250px) {
  .contacts__info__persons .person {
    text-align: center;
  }
}
.contacts__info__persons .person .hours {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #848484;
  margin-top: 10px;
}
.contacts__info__persons .person__content {
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 1250px) {
  .contacts__info__persons .person__content {
    display: block;
  }
}
.contacts__info__persons .person__content .image {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 100%;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  margin-right: 20px;
  border: 4px solid #ffffff;
}
@media screen and (max-width: 1250px) {
  .contacts__info__persons .person__content .image {
    margin: 0 auto 15px auto;
  }
}
.contacts__info__persons .person__content .image img {
  max-height: 100%;
}
.contacts__info__persons .person__content .name {
  color: #401f1f;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1250px) {
  .contacts__info__maps {
    width: 708px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .contacts__info__maps {
    width: 315px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .contacts__info__maps {
    width: 100%;
  }
}
.contacts__info__maps .tabs {
  display: flex;
}
@media screen and (max-width: 1250px) {
  .contacts__info__maps .tabs {
    justify-content: center;
  }
}
.contacts__info__maps .tabs .tab {
  position: relative;
  margin: 0 0 0 40px;
  vertical-align: top;
  color: #401f1f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 15px;
  text-transform: uppercase;
  padding-bottom: 25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contacts__info__maps .tabs .tab:first-child {
    margin: 0;
  }
}
.contacts__info__maps .tabs .tab .slider-active {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  height: 2px;
  background-color: #D6026D;
  transition: all 0.3s ease-in-out;
}
.contacts__info__maps .tabs .tab .icon-svg {
  width: 24px;
  height: 14px;
  margin-right: 15px;
  vertical-align: text-top;
}
.contacts__info__maps .tabs .tab .icon-svg-cz {
  background: url(images/cz_flag.svg) center no-repeat;
}
.contacts__info__maps .tabs .tab .icon-svg-sk {
  background: url(images/sk_flag.svg) center no-repeat;
}
.contacts__info__maps .tabs .tab .mobile--label {
  display: none;
}
@media screen and (max-width: 678px) {
  .contacts__info__maps .tabs .tab span {
    display: none;
  }
  .contacts__info__maps .tabs .tab .mobile--label {
    display: inline;
  }
}
.contacts__info__maps .tabs .inactive {
  opacity: 0.4;
}
.contacts__info__maps .tabs .inactive .slider-active {
  width: 0;
  opacity: 0;
}
.contacts__info__maps .maps .map__wrapper {
  display: flex;
  justify-content: space-between;
  width: 760px;
  height: 355px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  border: 4px solid #ffffff;
  background-color: #ffffff;
}
@media screen and (max-width: 1250px) {
  .contacts__info__maps .maps .map__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contacts__info__maps .maps .map__wrapper {
    display: block;
    height: auto;
  }
}
.contacts__info__maps .maps .map__wrapper .info {
  padding: 35px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .contacts__info__maps .maps .map__wrapper .info {
    padding: 20px;
    font-size: 15px;
    text-align: center;
  }
}
.contacts__info__maps .maps .map__wrapper .info .section-subheading {
  margin-bottom: 10px;
}
.contacts__info__maps .maps .map__wrapper .info .note {
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .contacts__info__maps .maps .map__wrapper .info .note {
    font-size: 13px;
  }
}
.contacts__info__maps .maps .map__wrapper .info address {
  margin: 20px 0;
  font-style: normal;
}
.contacts__info__maps .maps .map__wrapper .info .contacts {
  padding: 0;
  margin-top: 20px;
}
.contacts__info__maps .maps .map__wrapper .map {
  height: 100%;
  width: 372px;
  z-index: 2;
  border-radius: 0 20px 20px 0;
  background: #faf8fa;
}
@media screen and (max-width: 768px) {
  .contacts__info__maps .maps .map__wrapper .map {
    height: 300px;
    width: 100%;
    border-radius: 0 0 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .contacts__form {
    display: none;
  }
}
.contacts__form .section-subheading {
  margin-bottom: 35px;
}
@media screen and (max-width: 1250px) {
  .contacts__form {
    width: 708px;
    margin: 0 auto;
  }
}
.contacts__form form label {
  display: block;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin-left: 15px;
  margin-bottom: 10px;
  text-align: left;
}
.contacts__form form label .required {
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.contacts__form form input[type="text"],
.contacts__form form input[type="email"],
.contacts__form form textarea {
  font-family: Nunito;
  height: 40px;
  border-radius: 21px;
  border: 1px solid #e8e4e8;
  background-color: #ffffff;
  padding: 0 15px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}
.contacts__form form input[type="text"]:focus,
.contacts__form form input[type="email"]:focus,
.contacts__form form textarea:focus {
  outline: none;
  border: 1px solid #D6026D;
}
.contacts__form form textarea {
  height: 140px;
  resize: vertical;
  padding: 15px;
  box-sizing: border-box;
}
.contacts__form form .gdpr-note {
  font-family: Nunito;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-top: 20px;
}
.contacts__form form .gdpr-note a {
  color: #D6026D;
}
.contacts__form form .btn {
  margin-top: 20px;
  background-color: transparent;
}
.contacts__form form .btn:hover {
  background: #D6026D;
}
.contacts__form form .form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 1250px) {
  .contacts__form form .form-row {
    flex-wrap: wrap;
  }
}
.contacts__form form .form-row .form-input {
  min-width: 380px;
}
@media screen and (max-width: 1250px) {
  .contacts__form form .form-row .form-input {
    min-width: 48%;
  }
}
@media screen and (max-width: 1250px) {
  .contacts__form form .form-row .full-width {
    width: 100%;
    margin-top: 20px;
  }
}
.contacts__form form .single-input {
  text-align: center;
}
.contacts__form form .single-input .form-input {
  width: 100%;
}
.zopa {
  position: relative;
  min-height: 595px;
  margin-bottom: 30px;
  background-color: #faf8fa;
  background-image: url(images/onepage_photo_zopa.jpg);
  background-repeat: no-repeat;
  background-position: left -50px;
}
@media screen and (max-width: 1090px) {
  .zopa {
    padding-top: 430px;
    background-position: top center;
    background-size: contain;
  }
}
@media screen and (max-width: 818px) {
  .zopa {
    padding-top: 330px;
  }
}
@media screen and (max-width: 768px) {
  .zopa {
    padding-top: 220px;
  }
}
@media screen and (max-width: 445px) {
  .zopa {
    padding-top: 185px;
  }
}
@media screen and (max-width: 375px) {
  .zopa {
    padding-top: 150px;
  }
}
.zopa__slidein-wrapper {
  position: absolute;
  right: -100%;
  opacity: 0;
  top: 0;
  height: 595px;
  width: 1060px;
  background-color: rgba(2, 164, 167, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 40px 0 0 40px;
  padding: 50px 230px 55px 220px;
  transition: all 0.7s ease-in-out;
  text-align: center;
}
@media screen and (max-width: 1090px) {
  .zopa__slidein-wrapper {
    position: relative;
    background-color: #02a4b0;
    border-radius: 0;
    height: auto;
    padding: 40px 30px;
    width: 100%;
  }
}
.zopa__slidein-wrapper .zopa--logo {
  width: 115px;
  height: 50px;
  margin: 0 auto 35px auto;
  background: url(images/logo_zopa_white.svg) no-repeat center;
	/*background: url(http://babydirekt.eu/wp-content/uploads/2019/10/zopa_logo_190x130px.jpeg) no-repeat center;*/
	
}
.zopa__slidein-wrapper p {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .zopa__slidein-wrapper p {
    font-size: 15px;
    line-height: 22px;
  }
}
.zopa__slidein-wrapper .zopa__illustrations {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1090px) {
  .zopa__slidein-wrapper .zopa__illustrations {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.zopa__slidein-wrapper .zopa__illustrations .item {
  text-align: center;
}
@media screen and (max-width: 1090px) {
  .zopa__slidein-wrapper .zopa__illustrations .item {
    margin: 0 10px 20px 10px;
  }
}
.zopa__slidein-wrapper .zopa__illustrations .item__image {
  height: 33px;
  width: 32px;
  background-image: url(images/icon_carriage.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 10px auto;
}
.zopa__slidein-wrapper .zopa__illustrations .item p {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
@media screen and (max-width: 1090px) {
  .zopa__slidein-wrapper .zopa__illustrations .item p {
    margin-bottom: 0;
  }
}
.zopa__slidein-wrapper .zopa__illustrations .item__image--stroller {
  background-image: url(images/icon_carriage.svg);
}
.zopa__slidein-wrapper .zopa__illustrations .item__image--carseat {
  background-image: url(images/icon_carseat.svg);
}
.zopa__slidein-wrapper .zopa__illustrations .item__image--bed {
  background-image: url(images/icon_bed.svg);
}
.zopa__slidein-wrapper .zopa__illustrations .item__image--chair {
  background-image: url(images/icon_chair.svg);
}
.zopa__slidein-wrapper .zopa__illustrations .item__image--threewheel {
  background-image: url(images/icon_bike.svg);
}
.zopa__slidein-wrapper .zopa__illustrations .item__image--toy {
  background-image: url(images/icon_toy.svg);
}
.zopa__slidein-wrapper .zopa__illustrations .item__image--more {
  background-image: url(images/icon_more.svg);
}
.zopa__slidein-wrapper .btn {
  border-color: #ffffff;
  color: #ffffff;
}
.zopa__slidein-wrapper .btn:hover {
  background: #ffffff;
  color: #02a4a7;
}
.zopa__slidein-wrapper .btn:hover .icon-svg-ext {
  background: url(images/ext_link_green.svg) no-repeat center;
}
.zopa__slidein-wrapper .btn .icon-svg-ext {
  background: url(images/ext_link_white.svg) no-repeat center;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.zopa__slidein-wrapper--active {
  right: 0;
  opacity: 1;
}
.references .section-heading {
  color: #401f1f;
  padding-top: 30px;
}
.references .section-intro {
  color: #323232;
}
.references .inner-wrapper {
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .references .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.references .background-wrapper {
  background-color: #faf8fa;
  background-image: url(images/bg_icons.png);
}
.references .carousel-wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .references .carousel-wrapper {
    width: 280px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 370px) {
  .references .carousel-wrapper {
    width: 240px;
  }
}
.references .carousel-wrapper .quote_top,
.references .carousel-wrapper .quote_bottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .references .carousel-wrapper .quote_top,
  .references .carousel-wrapper .quote_bottom {
    display: block;
    width: 70px;
    height: 60px;
    position: absolute;
    z-index: 3;
  }
}
.references .carousel-wrapper .quote_top {
  background: url(images/quote_mark_2.svg) no-repeat center;
  right: -30px;
  top: 30px;
}
.references .carousel-wrapper .quote_bottom {
  background: url(images/quote_mark_1.svg) no-repeat center;
  bottom: 50px;
  left: -30px;
}
.references .carousel-wrapper .prevArrow,
.references .carousel-wrapper .nextArrow {
  width: 40px;
  height: 40px;
  border: 1px solid #c6005b;
  border-radius: 100%;
  position: absolute;
  top: calc(510px/2);
  z-index: 2;
  background-image: url(images/arrow_up.svg);
  background-position: center 13px;
  background-repeat: no-repeat;
  background-size: 13px 9px;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .references .carousel-wrapper .prevArrow,
  .references .carousel-wrapper .nextArrow {
    top: calc(480px/2);
  }
}
@media screen and (max-width: 768px) {
  .references .carousel-wrapper .prevArrow,
  .references .carousel-wrapper .nextArrow {
    top: calc(420px/2);
  }
}
.references .carousel-wrapper .prevArrow:hover,
.references .carousel-wrapper .nextArrow:hover {
  background-color: #c6005b;
  background-image: url(images/arrow_up_white.svg);
}
.references .carousel-wrapper .nextArrow {
  transform: rotate(90deg);
  right: 0;
}
@media screen and (max-width: 1250px) {
  .references .carousel-wrapper .nextArrow {
    right: -22px;
  }
}
@media screen and (max-width: 1250px) {
  .references .carousel-wrapper .prevArrow {
    left: -22px;
  }
}
.references .carousel-wrapper .slick-dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media screen and (min-width: 1250px) {
  .references .carousel-wrapper .slick-dots {
    margin-left: -35px;
  }
}
.references .carousel-wrapper .slick-dots button {
  width: 30px;
  height: 6px;
  border-radius: 3px;
  background-color: #e8e4e8;
  border: none;
  font-size: 0;
  margin: 0 5px;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 678px) {
  .references .carousel-wrapper .slick-dots button {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #c6005b;
    opacity: 0.5;
    padding: 0;
  }
}
.references .carousel-wrapper .slick-dots .slick-active button {
  background-color: #c6005b;
  opacity: 1;
}
.references .boxes {
  height: 565px;
  padding: 42.5px 35px 70px 35px;
  box-sizing: border-box;
  margin-top: -25px;
}
@media screen and (max-width: 1250px) {
  .references .boxes {
    padding: 42.5px 0 70px 0;
    height: 528px;
  }
}
@media screen and (max-width: 768px) {
  .references .boxes {
    margin-top: 0;
    padding: 0;
    height: 495px;
  }
}
.references .boxes .slick-list {
  padding-top: 58px !important;
  padding-bottom: 10px !important;
}
@media screen and (max-width: 1250px) {
  .references .boxes .slick-list {
    padding-bottom: 12px !important;
  }
}
.references .boxes .box {
  width: 345px;
  height: 350px;
  padding: 30px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  text-align: center;
  margin: 0 15px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .references .boxes .box {
    width: 281px;
    height: 318px;
    opacity: 0.5;
    margin: 0;
  }
}
.references .boxes .box__logo {
  height: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}
.references .boxes .box__logo img {
  align-self: center;
  max-height: 40px;
}
.references .boxes .box__content {
  font-size: 16px;
  font-weight: 300;
  line-height: 23.6px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1250px) {
  .references .boxes .box__content {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
  }
}
.references .boxes .box__footer .name {
  font-size: 16px;
  font-weight: 300;
  line-height: 23.6px;
}
@media screen and (max-width: 1250px) {
  .references .boxes .box__footer .name {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
  }
}
.references .boxes .box__footer .position {
  color: #848484;
  font-size: 13px;
  font-weight: 400;
  line-height: 18.15px;
}
@media screen and (max-width: 1250px) {
  .references .boxes .box__footer .position {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }
}
.references .boxes .box.slick-center {
  width: 380px;
  height: 400px;
  padding: 40px;
  position: relative;
  top: -25px;
}
@media screen and (max-width: 1250px) {
  .references .boxes .box.slick-center {
    width: 315px;
    height: 357px;
    margin: 0 -80px;
    top: -18px;
    opacity: 1;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .references .boxes .box.slick-center {
    margin: 0;
    top: auto;
    width: 280px;
    height: 357px;
    padding: 30px;
  }
}
@media screen and (max-width: 370px) {
  .references .boxes .box.slick-center {
    width: 240px;
    height: auto;
  }
}
.references .boxes .box.slick-center::before,
.references .boxes .box.slick-center::after {
  content: "";
  width: 70px;
  height: 60px;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .references .boxes .box.slick-center::before,
  .references .boxes .box.slick-center::after {
    display: none;
  }
}
.references .boxes .box.slick-center::before {
  top: -30px;
  right: -35px;
  background: url(images/quote_mark_2.svg) no-repeat center;
}
.references .boxes .box.slick-center::after {
  bottom: -30px;
  left: -35px;
  background: url(images/quote_mark_1.svg) no-repeat center;
}
.references .boxes .box.slick-center .box__content {
  font-size: 18px;
  line-height: 26px;
}
@media screen and (max-width: 1250px) {
  .references .boxes .box.slick-center .box__content {
    font-size: 15px;
    line-height: 22px;
  }
}
.references .boxes .box.slick-center .box__footer .name {
  font-size: 18px;
  line-height: 26px;
}
@media screen and (max-width: 1250px) {
  .references .boxes .box.slick-center .box__footer .name {
    font-size: 15px;
    line-height: 22px;
  }
}
.references .boxes .box.slick-center .box__footer .position {
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 1250px) {
  .references .boxes .box.slick-center .box__footer .position {
    font-size: 13px;
    line-height: 20px;
  }
}
.post-type-archive-jobs .logo-wrapper,
.single-jobs .logo-wrapper {
  text-decoration: none;
}
.post-type-archive-jobs .logo-wrapper .logo,
.single-jobs .logo-wrapper .logo {
  display: inline-block;
}
.post-type-archive-jobs .logo-wrapper span,
.single-jobs .logo-wrapper span {
  color: #301718;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2.4px;
  line-height: 15px;
  text-transform: uppercase;
  position: relative;
  top: -5px;
}
@media (max-width: 1250px) {
  .post-type-archive-jobs .logo-wrapper span,
  .single-jobs .logo-wrapper span {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.8px;
    top: -2px;
  }
}
@media (max-width: 768px) {
  .post-type-archive-jobs .logo-wrapper span,
  .single-jobs .logo-wrapper span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.3px;
    line-height: 15px;
  }
}
.post-type-archive-jobs .logo-wrapper span::before,
.single-jobs .logo-wrapper span::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 25px;
  border-radius: 2px;
  background-color: #e8e4e8;
  margin: 0 20px 0 15px;
  position: relative;
  top: 4px;
}
@media (max-width: 1250px) {
  .post-type-archive-jobs .logo-wrapper span::before,
  .single-jobs .logo-wrapper span::before {
    height: 20px;
  }
}
@media (max-width: 768px) {
  .post-type-archive-jobs .logo-wrapper span::before,
  .single-jobs .logo-wrapper span::before {
    height: 13px;
    margin: 0 10px 0 5px;
    top: 2px;
  }
}
.post-type-archive-jobs .intro,
.single-jobs .intro {
  background: url(images/kariera_photo.jpg);
  background-attachment: fixed;
}
.post-type-archive-jobs .intro .overlay--dark,
.single-jobs .intro .overlay--dark {
  background: transparent;
}
.post-type-archive-jobs .intro .start,
.single-jobs .intro .start {
  position: relative;
}
.post-type-archive-jobs .intro .start .count,
.single-jobs .intro .start .count {
  position: absolute;
  top: -10px;
  right: 15px;
  width: 20px;
  height: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #D6026D;
  background-color: #ffffff;
  color: #D6026D;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 100%;
}
.post-type-archive-jobs .intro__main__content,
.single-jobs .intro__main__content {
  width: 650px;
  position: absolute;
  right: 200px;
  top: 50%;
  margin-top: -100px;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .intro__main__content,
  .single-jobs .intro__main__content {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .post-type-archive-jobs .intro__main__content,
  .single-jobs .intro__main__content {
    width: 100%;
    padding: 0 30px;
  }
  .post-type-archive-jobs .intro__main__content .intro__heading,
  .single-jobs .intro__main__content .intro__heading {
    padding: 0;
  }
  .post-type-archive-jobs .intro__main__content .intro__heading span,
  .single-jobs .intro__main__content .intro__heading span {
    text-align: center;
  }
}
.post-type-archive-jobs .whyus .spacer,
.single-jobs .whyus .spacer {
  background: #faf8fa;
}
.post-type-archive-jobs .whyus .background-wrapper,
.single-jobs .whyus .background-wrapper {
  background-color: #faf8fa;
  background-image: url(images/bg_icons.png);
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .whyus .inner-wrapper,
  .single-jobs .whyus .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.post-type-archive-jobs .whyus .whyus__wrapper,
.single-jobs .whyus .whyus__wrapper {
  padding: 40px 0 45px;
}
.post-type-archive-jobs .whyus .whyus__wrapper .section-heading,
.single-jobs .whyus .whyus__wrapper .section-heading {
  color: #401f1f;
}
.post-type-archive-jobs .whyus .whyus__wrapper .section-intro,
.single-jobs .whyus .whyus__wrapper .section-intro {
  color: #323232;
}
.post-type-archive-jobs .whyus .whyus__wrapper .section-intro p,
.single-jobs .whyus .whyus__wrapper .section-intro p {
  font-weight: 300;
  line-height: 26px;
}
.post-type-archive-jobs .whyus .whyus__wrapper .boxes,
.single-jobs .whyus .whyus__wrapper .boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .whyus .whyus__wrapper .boxes,
  .single-jobs .whyus .whyus__wrapper .boxes {
    justify-content: center;
  }
}
.post-type-archive-jobs .whyus .whyus__wrapper .boxes .box,
.single-jobs .whyus .whyus__wrapper .boxes .box {
  width: 380px;
  height: 330px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background-color: #ffffff;
  margin: 30px 15px 0 15px;
  padding: 10px 20px;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .whyus .whyus__wrapper .boxes .box,
  .single-jobs .whyus .whyus__wrapper .boxes .box {
    margin: 30px 15px 0 15px;
    height: 298px;
  }
}
@media screen and (max-width: 500px) {
  .post-type-archive-jobs .whyus .whyus__wrapper .boxes .box,
  .single-jobs .whyus .whyus__wrapper .boxes .box {
    height: auto;
    padding: 10px 20px 30px 20px;
  }
}
.post-type-archive-jobs .whyus .whyus__wrapper .boxes .box__illustration,
.single-jobs .whyus .whyus__wrapper .boxes .box__illustration {
  height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.post-type-archive-jobs .whyus .whyus__wrapper .boxes .box__illustration img,
.single-jobs .whyus .whyus__wrapper .boxes .box__illustration img {
  align-self: baseline;
  margin: 0 auto;
}
.post-type-archive-jobs .whyus .whyus__wrapper .boxes .box__content,
.single-jobs .whyus .whyus__wrapper .boxes .box__content {
  text-align: center;
}
.post-type-archive-jobs .whyus .whyus__wrapper .boxes .box__content h3,
.single-jobs .whyus .whyus__wrapper .boxes .box__content h3 {
  color: #401f1f;
  font-family: Nunito;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 20px;
}
@media (max-width: 1250px) {
  .post-type-archive-jobs .whyus .whyus__wrapper .boxes .box__content h3,
  .single-jobs .whyus .whyus__wrapper .boxes .box__content h3 {
    font-size: 19px;
    line-height: 26px;
  }
}
.post-type-archive-jobs .whyus .whyus__wrapper .boxes .box__content p,
.single-jobs .whyus .whyus__wrapper .boxes .box__content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
@media (max-width: 1250px) {
  .post-type-archive-jobs .whyus .whyus__wrapper .boxes .box__content p,
  .single-jobs .whyus .whyus__wrapper .boxes .box__content p {
    font-size: 15px;
    line-height: 22px;
  }
}
.post-type-archive-jobs .positions,
.single-jobs .positions {
  padding: 40px 0 0;
}
.post-type-archive-jobs .positions .section-heading,
.single-jobs .positions .section-heading {
  color: #401f1f;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .positions .inner-wrapper,
  .single-jobs .positions .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.post-type-archive-jobs .positions .positions-list,
.single-jobs .positions .positions-list {
  margin-top: 40px;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .positions .positions-list,
  .single-jobs .positions .positions-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .post-type-archive-jobs .positions .positions-list,
  .single-jobs .positions .positions-list {
    margin-top: 20px;
  }
}
.post-type-archive-jobs .positions .positions-list__item,
.single-jobs .positions .positions-list__item {
  position: relative;
  width: 1200px;
  height: 80px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background-color: #ffffff;
  margin-bottom: 30px;
  padding: 20px 30px;
  display: flex;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .positions .positions-list__item,
  .single-jobs .positions .positions-list__item {
    width: 470px;
    height: 175px;
    padding: 20px;
    display: block;
    margin: 30px 15px 0 15px;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .post-type-archive-jobs .positions .positions-list__item,
  .single-jobs .positions .positions-list__item {
    width: 100%;
    height: auto;
    margin: 30px 0 0 0;
  }
}
.post-type-archive-jobs .positions .positions-list__item .heading,
.single-jobs .positions .positions-list__item .heading {
  color: #401f1f;
  font-size: 22px;
  font-weight: 600;
  line-height: 40px;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .positions .positions-list__item .heading,
  .single-jobs .positions .positions-list__item .heading {
    font-size: 19px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
.post-type-archive-jobs .positions .positions-list__item .perex,
.single-jobs .positions .positions-list__item .perex {
  color: #838383;
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  margin-left: 20px;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .positions .positions-list__item .perex,
  .single-jobs .positions .positions-list__item .perex {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .post-type-archive-jobs .positions .positions-list__item .perex,
  .single-jobs .positions .positions-list__item .perex {
    margin-bottom: 20px;
  }
}
.post-type-archive-jobs .positions .positions-list__item .btn,
.single-jobs .positions .positions-list__item .btn {
  position: absolute;
  right: 30px;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .positions .positions-list__item .btn,
  .single-jobs .positions .positions-list__item .btn {
    position: relative;
    right: auto;
  }
}
.post-type-archive-jobs .contacts,
.single-jobs .contacts {
  padding: 0;
}
.post-type-archive-jobs .contacts .spacer,
.single-jobs .contacts .spacer {
  background: #faf8fa;
}
.post-type-archive-jobs .contacts .background-wrapper,
.single-jobs .contacts .background-wrapper {
  background-color: #faf8fa;
  background-image: url(images/bg_icons.png);
}
.post-type-archive-jobs .contacts__wrapper,
.single-jobs .contacts__wrapper {
  padding: 40px 0 70px 0;
}
.post-type-archive-jobs .contacts__wrapper .contacts__form,
.single-jobs .contacts__wrapper .contacts__form {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .post-type-archive-jobs .contacts__wrapper .contacts__form,
  .single-jobs .contacts__wrapper .contacts__form {
    display: block;
    width: 100%;
  }
  .post-type-archive-jobs .contacts__wrapper .contacts__form .form-row,
  .single-jobs .contacts__wrapper .contacts__form .form-row {
    display: block;
  }
  .post-type-archive-jobs .contacts__wrapper .contacts__form .form-row .form-input,
  .single-jobs .contacts__wrapper .contacts__form .form-row .form-input {
    margin-top: 20px;
  }
  .post-type-archive-jobs .contacts__wrapper .contacts__form .form-row .form-input label,
  .single-jobs .contacts__wrapper .contacts__form .form-row .form-input label {
    text-align: center;
    margin-left: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
  }
}
.post-type-archive-jobs .contacts__wrapper .contacts__form .two-thirds,
.single-jobs .contacts__wrapper .contacts__form .two-thirds {
  width: 790px;
}
@media screen and (max-width: 1250px) {
  .post-type-archive-jobs .contacts__wrapper .contacts__form .two-thirds,
  .single-jobs .contacts__wrapper .contacts__form .two-thirds {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .post-type-archive-jobs .contacts__wrapper .contacts__form .two-thirds,
  .single-jobs .contacts__wrapper .contacts__form .two-thirds {
    width: 100%;
  }
}
.post-type-archive-jobs .contacts__wrapper .contacts__form .career-input input[type="file"],
.single-jobs .contacts__wrapper .contacts__form .career-input input[type="file"] {
  width: 380px;
  height: 140px;
  box-sizing: border-box;
  padding: 30px 30px 30px 80px;
  border-radius: 21px;
  border: 1px dashed #D6026D;
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url(images/upload.svg);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 30px 30px;
  font-family: Nunito;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #323232;
}
@media (max-width: 768px) {
  .post-type-archive-jobs .contacts__wrapper .contacts__form .career-input input[type="file"],
  .single-jobs .contacts__wrapper .contacts__form .career-input input[type="file"] {
    width: 100%;
  }
}
.main-menu .backhome {
  display: inline-block;
  background: #D6026D;
  color: #ffffff;
  align-self: center;
  margin: 20px 0;
}
@media screen and (min-width: 1250px) {
  .main-menu .backhome {
    display: none;
  }
}
.main-menu .dropdown a {
  height: 100%;
  padding-right: 20px;
}
@media screen and (max-width: 1250px) {
  .main-menu .dropdown a {
    padding: 0;
  }
}
.main-menu .dropdown .count {
  text-align: center;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #D6026D;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  color: #D6026D;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  position: absolute;
  top: -2px;
}
@media screen and (max-width: 1250px) {
  .main-menu .dropdown .count {
    display: none;
  }
}
.main-menu .dropdown .count span {
  margin-left: 2px;
}
.main-menu .dropdown::after {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  background: url(images/arrow_up_grey.svg) no-repeat center;
  transform: rotate(180deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 15px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .main-menu .dropdown::after {
    display: none;
  }
}
.main-menu .dropdown:hover::after {
  bottom: 10px;
}
.main-menu .dropdown:hover .dropdown-wrapper {
  right: -50%;
}
.main-menu .dropdown .dropdown-wrapper {
  position: absolute;
  top: 45px;
  right: -600px;
  width: 300px;
  background: transparent;
  padding-top: 10px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .main-menu .dropdown .dropdown-wrapper {
    display: none;
  }
}
.main-menu .dropdown .dropdown-wrapper ul {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 20px 0;
}
.main-menu .dropdown .dropdown-wrapper ul li {
  margin: 0;
  height: 50px;
  display: table;
}
.main-menu .dropdown .dropdown-wrapper ul li a {
  padding: 0 40px 0 20px;
  transition: background 0.3s ease-in-out;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  text-align: left;
}
.main-menu .dropdown .dropdown-wrapper ul li a:hover {
  background: #faf8fa;
}
.jobs-intro {
  height: 280px;
  padding-top: 130px;
  box-sizing: content-box;
  background: url(images/kariera_photo.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 1250px) {
  .jobs-intro {
    height: 220px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .jobs-intro {
    height: 200px;
    padding-top: 60px;
  }
}
.jobs-intro .content {
  text-align: right;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 90px;
}
@media screen and (max-width: 1250px) {
  .jobs-intro .content {
    text-align: center;
    padding: 0;
    width: 470px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .jobs-intro .content {
    width: 100%;
  }
}
.jobs-intro .content .large {
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
}
@media screen and (max-width: 1250px) {
  .jobs-intro .content .large {
    font-size: 35px;
    line-height: 40px;
  }
}
.jobs-intro .content .small {
  font-size: 25px;
  font-weight: 700;
  line-height: 36px;
}
@media screen and (max-width: 1250px) {
  .jobs-intro .content .small {
    text-align: right;
    font-size: 19px;
    line-height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .jobs-intro .content .small {
    text-align: center;
  }
}
.job-listing {
  width: 1200px;
  margin: 0 auto;
  padding: 70px 0 0 0;
}
@media screen and (max-width: 1250px) {
  .job-listing {
    width: 100%;
  }
}
@media screen and (max-width: 835px) {
  .job-listing .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.job-listing h1,
.job-listing h2 {
  color: #401f1f;
}
.job-listing h1 {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1250px) {
  .job-listing h1 {
    font-size: 28px;
    line-height: 35px;
  }
}
.job-listing h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  margin: 20px 0;
  padding-top: 20px;
}
@media screen and (max-width: 1250px) {
  .job-listing h2 {
    font-size: 19px;
    line-height: 26px;
    margin: 10px 0;
    padding-top: 10px;
  }
}
.job-listing .subheading {
  color: #838383;
  font-size: 25px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1250px) {
  .job-listing .subheading {
    font-size: 19px;
    line-height: 36px;
    margin-bottom: 35px;
  }
}
.job-listing p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1250px) {
  .job-listing p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.job-listing ul {
  margin-bottom: 20px;
  list-style-type: none;
}
.job-listing ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
@media screen and (max-width: 1250px) {
  .job-listing ul li {
    font-size: 15px;
    line-height: 22px;
  }
}
.job-listing ul li:last-child {
  margin-bottom: 0;
}
.job-listing ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #c8005b;
  border-radius: 100%;
  margin-right: 15px;
  display: block;
  left: 0;
  top: 11px;
  position: absolute;
}
.babyfehn.microsite {
  font-family: 'Rubik', sans-serif;
  font-size: 17px;
  line-height: 30px;
  font-weight: 300;
  color: #323232;
}
.babyfehn.microsite .hamburger .hamburger-box .hamburger-inner,
.babyfehn.microsite .hamburger .hamburger-box .hamburger-inner::before,
.babyfehn.microsite .hamburger .hamburger-box .hamburger-inner::after {
  background-color: #e40613;
}
.babyfehn.microsite em,
.babyfehn.microsite strong {
  font-weight: 400;
  font-style: normal;
}
.babyfehn.microsite .section-intro {
  color: #323232;
}
.babyfehn.microsite .section-heading {
  color: #323232;
}
.babyfehn.microsite .overlay--dark {
  background-image: linear-gradient(transparent 80%, rgba(255, 255, 255, 0.7)) !important;
}
.babyfehn.microsite a {
  color: #e40613;
}
.babyfehn.microsite .logo {
  width: 230px;
  height: 100%;
  padding-bottom: 25px;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .logo {
    padding: 5px 0;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .logo {
    padding: 0;
  }
}
.babyfehn.microsite .logo img {
  margin: 0 auto;
  align-self: center;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .logo img {
    max-height: 100%;
  }
}
.babyfehn.microsite .header--scrolled .logo {
  padding: 0;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .main-menu {
    background-color: rgba(0, 170, 203, 0.95);
  }
  .babyfehn.microsite .main-menu ul li a:hover {
    color: #ffffff !important;
  }
}
.babyfehn.microsite .main-menu .backhome {
  color: #ffffff;
}
.babyfehn.microsite .main-menu ul li .active.active--toggled {
  background: #e40613;
}
.babyfehn.microsite .main-menu ul li a:hover {
  color: #e40613;
}
.babyfehn.microsite .intro {
  background: url(images/babyfehn_photo.jpg) no-repeat;
  background-attachment: fixed;
}
.babyfehn.microsite .intro .overlay--dark {
  background: none;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .intro .overlay--dark {
    background: rgba(255, 255, 255, 0.65);
  }
}
.babyfehn.microsite .intro .start {
  border: 1px solid #e40613;
  background-color: #e40613;
  color: #ffffff;
}
.babyfehn.microsite .intro__main__content {
  position: absolute;
  top: auto;
  width: 570px;
  right: 200px;
  color: #323232;
  text-align: center;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .intro__main__content {
    left: 50%;
    margin-left: -285px;
    right: auto;
  }
}
@media screen and (max-width: 595px) {
  .babyfehn.microsite .intro__main__content {
    width: 100%;
    padding: 0 30px;
    right: auto;
    margin: 0;
    left: auto;
  }
  .babyfehn.microsite .intro__main__content .intro__logo img {
    max-width: 100%;
  }
}
.babyfehn.microsite .intro__main__content .intro__heading {
  padding: 30px 0;
  font-size: 45px;
  font-weight: 400;
  line-height: 56px;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .intro__main__content .intro__heading {
    font-size: 35px;
    line-height: 40px;
  }
}
.babyfehn.microsite .intro__main__content .text {
  margin-top: 0;
  line-height: 30px;
  font-size: 17px;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .intro__main__content .text {
    font-size: 15px;
    line-height: 25px;
  }
}
.babyfehn.microsite .aboutbrand {
  padding: 70px 0 80px;
}
.babyfehn.microsite .aboutbrand .section-intro {
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .aboutbrand .section-intro {
    padding-bottom: 20px;
  }
}
.babyfehn.microsite .aboutbrand .section-intro p {
  line-height: 30px;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .aboutbrand .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.babyfehn.microsite .aboutbrand .with-image {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.babyfehn.microsite .aboutbrand .with-image:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .aboutbrand .with-image {
    display: block;
  }
}
.babyfehn.microsite .aboutbrand .with-image h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .aboutbrand .with-image h3 {
    font-size: 19px;
    line-height: 26px;
  }
}
.babyfehn.microsite .aboutbrand .with-image h3::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 16px;
  margin-right: 20px;
  background: url(images/recolor_check.svg) no-repeat center;
}
.babyfehn.microsite .aboutbrand .with-image p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 30px;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .aboutbrand .with-image p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .aboutbrand .with-image .image {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.babyfehn.microsite .aboutbrand .with-image .image img {
  border-radius: 100%;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .aboutbrand .with-image .image img {
    max-width: 335px;
  }
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .aboutbrand .with-image .image img {
    align-self: center;
    max-width: 100%;
  }
}
.babyfehn.microsite .aboutbrand .with-image .text {
  width: 600px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .aboutbrand .with-image .text {
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .aboutbrand .with-image .text {
    text-align: center;
    margin: 0;
  }
}
.babyfehn.microsite .aboutbrand .with-image--left .image {
  order: 1;
}
.babyfehn.microsite .aboutbrand .with-image--left .text {
  order: 2;
}
.babyfehn.microsite .aboutbrand .with-image--right .image {
  order: 2;
}
.babyfehn.microsite .aboutbrand .with-image--right .text {
  order: 1;
}
.babyfehn.microsite .catalog {
  padding: 70px 0 80px 0;
  background-color: #00aacb;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .catalog .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.babyfehn.microsite .catalog p,
.babyfehn.microsite .catalog .section-heading,
.babyfehn.microsite .catalog .section-intro {
  color: #ffffff;
}
.babyfehn.microsite .catalog .illustration-image {
  padding: 40px 0 20px;
}
.babyfehn.microsite .catalog .illustration-image img {
  margin: 0 auto;
  max-width: 100%;
}
.babyfehn.microsite .catalog__content {
  text-align: center;
}
.babyfehn.microsite .catalog .btn {
  background: #e40613;
  color: #ffffff;
  border: none;
  margin-top: 20px;
}
.babyfehn.microsite .catalog .icon-svg--pdf {
  background: url(images/icon_pdf.svg) no-repeat center;
  width: 21px;
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
}
.babyfehn.microsite .sellers {
  padding: 50px 0 80px;
}
.babyfehn.microsite .contact {
  padding: 80px 0;
  background: url(images/babyfehn_photo2.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .contact {
    padding: 0;
  }
}
.babyfehn.microsite .contact .inner-wrapper::after {
  content: "";
  clear: both;
  display: table;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .contact .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .contact .inner-wrapper {
    background: rgba(255, 255, 255, 0.75);
  }
}
.babyfehn.microsite .contact .content {
  padding: 40px 80px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  display: inline-block;
  float: right;
  text-align: center;
  margin-right: 110px;
}
@media (max-width: 1250px) {
  .babyfehn.microsite .contact .content {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .contact .content {
    background: transparent;
    float: none;
    box-shadow: none;
    padding: 40px 0 20px;
    display: block;
  }
}
.babyfehn.microsite .contact .content h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1250px) {
  .babyfehn.microsite .contact .content h2 {
    font-size: 19px;
    line-height: 26px;
  }
}
.babyfehn.microsite .contact .content address {
  font-style: normal;
}
.babyfehn.microsite .contact .content .contacts {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .babyfehn.microsite .footer {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .babyfehn.microsite .footer .copyright {
    float: right;
  }
}
@media screen and (max-width: 768px) {
  .babyfehn.microsite .footer .copyright {
    padding-top: 90px;
  }
}
.babyfehn.microsite .footer .scroll-up__text {
  color: #e40613;
}
.babyfehn.microsite .footer .scroll-up .icon-svg--scroll-up {
  background: url(images/recolor_up_arrow.svg) center no-repeat;
}
@media screen and (min-width: 768px) {
  .section .inner-wrapper .fade-in {
    opacity: 0;
    position: relative;
    bottom: -30px;
    transition: all 0.7s ease-in-out;
  }
}
.section.references .boxes .box.slick-center::before {
  top: -100px;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
.section.references .boxes .box.slick-center::after {
  bottom: -100px;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
@media screen and (min-width: 768px) {
  .scrolled-in .inner-wrapper .fade-in {
    opacity: 1;
    bottom: 0;
  }
}
.scrolled-in .inner-wrapper .boxes .box.slick-center::before {
  top: -30px;
  opacity: 1;
}
.scrolled-in .inner-wrapper .boxes .box.slick-center::after {
  bottom: -30px;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .intro__main__content .intro__heading {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
  }
}
@media screen and (min-width: 768px) {
  .intro__main__content .text {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
  }
}
@media screen and (min-width: 768px) {
  .intro__main__content .start {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
  }
}
@media screen and (min-width: 768px) {
  .intro__main__content .intro__heading--visible {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .intro__main__content .text--visible {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .intro__main__content .start--visible {
    opacity: 1;
    transition: opacity 0.7s ease-in-out;
    box-shadow: 0 0 0 0 rgba(214, 2, 109, 0.5);
    animation: pulse 1.5s infinite;
  }
}
@media screen and (min-width: 768px) {
  .babyfehn .intro__main__content .start--visible {
    box-shadow: 0 0 0 0 rgba(228, 6, 19, 0.5);
    animation: pulseRed 1.5s infinite;
  }
}
@-webkit-keyframes pulse {
  0% {
    @include transform(scale(0.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 15px rgba(214, 2, 109, 0);
  }
  100% {
    @include transform(scale(0.9));
    box-shadow: 0 0 0 0 rgba(214, 2, 109, 0);
  }
}
@-webkit-keyframes pulseRed {
  0% {
    @include transform(scale(0.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 15px rgba(228, 6, 19, 0);
  }
  100% {
    @include transform(scale(0.9));
    box-shadow: 0 0 0 0 rgba(228, 6, 19, 0);
  }
}
html {
  font-size: 18px;
}
@media screen and (max-width: 1250px) {
  html {
    font-size: 15px;
  }
}
body {
  font-family: 'Nunito', sans-serif;
  background: #faf8fa;
  overflow-x: hidden;
}
strong,
em {
  font-weight: 600;
}
.intro {
  min-height: 100%;
  height: 100%;
  padding-top: 130px;
  box-sizing: border-box;
  background: url(images/onepage_photo1.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 1250px) {
  .intro {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .intro {
    background-position: -520px;
    background-size: cover;
    background-attachment: fixed;
  }
}
.intro__main {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro__main__content {
  position: relative;
  top: -50px;
  width: 470px;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .intro__main__content {
    width: 100%;
    padding: 0 30px;
    top: auto;
  }
}
.intro__main__content .intro__heading {
  padding-right: 40px;
  font-size: 25px;
  font-weight: 700;
  line-height: 36px;
}
.intro__main__content .intro__heading .large {
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .intro__main__content .intro__heading .large {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
  }
}
.intro__main__content .intro__heading span {
  display: block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .intro__main__content .intro__heading {
    font-size: 19px;
    font-weight: 700;
    line-height: 36px;
  }
}
.intro__main__content .text {
  margin-top: 45px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .intro__main__content .text {
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
  }
}
.intro__main__content .start {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  border: 1px solid #D6026D;
  background-color: #D6026D;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 15px;
  margin-top: 50px;
}
.intro__main__content .start::after {
  content: "";
  display: inline-block;
  position: relative;
  top: -2px;
  width: 7px;
  height: 5px;
  margin-left: 10px;
  background: url(images/arrow_down_white.svg) no-repeat center;
}
.intro__main .intro__privacy {
  position: absolute;
  right: 50px;
  bottom: 40px;
}
@media (max-width: 768px) {
  .intro__main .intro__privacy {
    display: none;
  }
}
.intro__main .intro__privacy a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 15px;
  text-transform: uppercase;
}
.intro__main .intro__privacy .icon-svg-shield {
  background: url(images/protection_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 18px;
  margin-right: 10px;
  vertical-align: sub;
}
.about .spacer {
  background: #faf8fa;
}
.about .background-wrapper {
  background-color: #faf8fa;
  background-image: url(images/bg_icons.png);
}
@media screen and (max-width: 1250px) {
  .about .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.about .about__wrapper {
  padding: 40px 0 45px;
}
.about .about__wrapper .section-heading {
  color: #401f1f;
}
.about .about__wrapper .section-intro {
  color: #323232;
}
.about .about__wrapper .section-intro p {
  font-weight: 300;
  line-height: 26px;
}
.about .about__wrapper .boxes {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1250px) {
  .about .about__wrapper .boxes {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 764px) {
  .about .about__wrapper .boxes {
    display: block;
  }
}
.about .about__wrapper .boxes .box {
  height: 400px;
  width: 380px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .about .about__wrapper .boxes .box {
    width: 315px;
    height: 385px;
    padding: 30px 20px;
    margin: 0 15px 30px 15px;
  }
}
@media screen and (max-width: 764px) {
  .about .about__wrapper .boxes .box {
    margin: 0 auto 30px auto;
  }
  .about .about__wrapper .boxes .box:last-child {
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .about .about__wrapper .boxes .box {
    width: 100%;
    height: auto;
  }
}
.about .about__wrapper .boxes .box:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.09);
}
@media screen and (max-width: 1250px) {
  .about .about__wrapper .boxes .box:hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
}
.about .about__wrapper .boxes .box__illustration {
  height: 92px;
  margin-bottom: 30px;
}
.about .about__wrapper .boxes .box .box--znacky {
  background: url(images/illustration1.svg) no-repeat center;
  background-size: 180px 92px;
}
.about .about__wrapper .boxes .box .box--zopa {
  /*background: url(images/logo_zopa.svg) no-repeat center;*/
  background: url(http://babydirekt.eu/wp-content/uploads/2019/10/zopa_logo_190x130px.jpeg) no-repeat center;
	
  background-size: 115px 80px;
}
.about .about__wrapper .boxes .box .box--prodejci {
  background: url(images/illustration2.svg) no-repeat center;
  background-size: 201px 90px;
}
.about .about__wrapper .boxes .box h3 {
  color: #401f1f;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .about .about__wrapper .boxes .box h3 {
    font-size: 19px;
  }
}
.about .about__wrapper .boxes .box p {
  font-weight: 300;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .about .about__wrapper .boxes .box p {
    line-height: 22px;
  }
}
.about .about__wrapper .boxes .box .btn {
  margin-top: 20px;
}
.brands {
  text-align: center;
  padding: 40px 0 80px 0;
  background: #faf8fa;
}
@media screen and (max-width: 768px) {
  .brands {
    padding: 40px 0 40px 0;
  }
}
.brands .section-heading {
  color: #401f1f;
  margin-bottom: 15px;
}
.brands .section-intro {
  color: #323232;
}
@media screen and (max-width: 1250px) {
  .brands .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.brands .brand-items {
  width: 1200px;
  margin: 35px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
@media screen and (max-width: 1250px) {
  .brands .brand-items {
    width: 100%;
  }
}
.brands .brand-items .brand {
  width: 190px;
  height: 130px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  background-color: #ffffff;
  margin: 0 5px 10px 5px;
  transition: all 0.3s ease-in-out;
}
.brands .brand-items .brand:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 490px) {
  .brands .brand-items .brand {
    width: 150px;
    height: 105px;
  }
}
.brands .brand-items .brand a {
  display: block;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 490px) {
  .brands .brand-items .brand a {
    height: 105px;
  }
}
.brands .brand-items .brand a img {
  max-width: 100%;
  align-self: flex-start;
  margin: 0 auto;
}
@media screen and (max-width: 490px) {
  .brands .brand-items .brand a img {
    max-width: 80%;
  }
}
.sellers {
  padding-bottom: 20px;
}
.sellers .section-heading {
  color: #401f1f;
  padding-top: 30px;
}
.sellers .section-intro {
  color: #323232;
}
@media screen and (max-width: 1250px) {
  .sellers .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.become-partner {
  /*min-height: 500px;*/
  box-sizing: border-box;
  background: url(images/onepage_photo_cta.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.become-partner .overlay--dark {
  padding: 120px 0 120px;
  min-height: inherit;
  box-sizing: border-box;
}
@media screen and (max-width: 1250px) {
  .become-partner .overlay--dark {
    padding: 40px 0 80px 0;
  }
}
@media screen and (max-width: 1250px) {
  .become-partner .inner-wrapper {
    width: 100%;
    padding: 0 30px;
  }
}
.become-partner__sales {
  padding-top: 35px;
}
.become-partner__sales .note {
  color: #848484;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  margin-top: 10px;
  margin: 0 20px 20px 20px;
}
@media screen and (max-width: 768px) {
  .become-partner__sales .note {
    font-size: 13px;
  }
}
.become-partner__sales .boxes {
  display: flex;
  margin-top: 35px;
  justify-content: space-evenly;
}
@media screen and (max-width: 1250px) {
  .become-partner__sales .boxes {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.become-partner__sales .boxes .box {
  display: flex;
}
@media screen and (max-width: 1250px) {
  .become-partner__sales .boxes .box {
    display: block;
    text-align: center;
    margin: 0 20px 20px 20px;
  }
}
@media screen and (max-width: 505px) {
  .become-partner__sales .boxes .box:last-child {
    margin: 0 20px 0 20px;
  }
}
.become-partner__sales .boxes .box__avatar {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 100%;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  margin-right: 20px;
}
@media screen and (max-width: 1250px) {
  .become-partner__sales .boxes .box__avatar {
    margin: 0 auto;
  }
}
.become-partner__sales .boxes .box__avatar img {
  max-height: 80%;
}
.become-partner__sales .boxes .box__content {
  color: #ffffff;
  font-weight: 300;
}
.become-partner__sales .boxes .box__content .name {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}
@media (max-width: 768px) {
  .become-partner__sales .boxes .box__content .name {
    font-size: 15px;
    line-height: 22px;
  }
}
.become-partner__sales .boxes .box__content p {
  margin-bottom: 5px;
}
.become-partner__sales .boxes .box__content p:first-child {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .become-partner__sales .boxes .box__content p:first-child {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
.become-partner__sales .boxes .box__content .phone a,
.become-partner__sales .boxes .box__content .email a {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: #ff40a0;
}
@media (max-width: 768px) {
  .become-partner__sales .boxes .box__content .phone a,
  .become-partner__sales .boxes .box__content .email a {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .become-partner__sales .boxes .box__content .phone {
    margin: 0;
  }
}
.become-partner__sales .boxes .box__content .email a {
  color: #ff40a0;
}
.grecaptcha-badge {
  left: -99999px;
}
.recaptcha-notice {
  display: block;
  font-size: 14px;
  text-align: center;
}

.brand {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand a {
  height: auto !important
}

.brand img {
  display: block;
  position: relative;
  z-index: 10;
}

.brand:hover img {
  position: relative;
  left: -99999px
}

.brand__list {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
}

.brand__list li {
  display: block
}

.brand__list li:nth-child(2) {
  margin-top: 5px;
}

.brands .brand-items .brand a.btn {
  display: none;
}


@media screen and (max-width: 1250px) {
  .brands .brand-items .brand {
    position: relative;
    overflow: auto;
    display: block;
    height: auto;
  }

  .brands .brand-items .brand img {
     width: 100%;
  }

  .brand:hover img {
    left: auto;
  }

  .brand__list {
    position: static;
    transform: translate(0, 0);
  }

  .brand__list li:nth-child(2) {
    margin-top: 0;
  }

  .brand__list li {
    margin-bottom: 5px;
  }

  .brand__list li.brand__list__url, .brand__list li.brand__list__url-catalog {
    display: none;
  }

  .brands .brand-items .brand a.btn {
    display: inline-block;
    margin: 0 20px 20px;
  }

}


