.tcl-sticky-menu {
  position: fixed;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  z-index: 5;
  mix-blend-mode: difference;
  margin-bottom: 50px;
}
.tcl-sticky-menu.stopped {
  position: absolute;
  top: auto;
  bottom: 0;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.tcl-sticky-menu--left {
  left: 90px;
}
.tcl-sticky-menu--right {
  right: 90px;
}
.tcl-sticky-menu__menu-item {
  margin-bottom: 25px;
}
.tcl-sticky-menu__menu-item:last-child {
  margin-bottom: 0;
}
.tcl-sticky-menu__menu a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
  display: block;
  color: #ffffff;
  position: relative;
}
.tcl-sticky-menu__menu a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  opacity: 0;
}
.tcl-sticky-menu__menu a.active:after {
  opacity: 1;
}
.tcl-sticky-menu__submenu {
  padding-left: 30px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .tcl-sticky-menu {
    top: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    bottom: 0;
    margin-bottom: 0;
    padding: 30px;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(8.46%, #111111), color-stop(59.3%, rgba(17, 17, 17, 0.65)), color-stop(76.58%, rgba(17, 17, 17, 0.4)), to(rgba(17, 17, 17, 0)));
    background: -o-linear-gradient(bottom, #111111 8.46%, rgba(17, 17, 17, 0.65) 59.3%, rgba(17, 17, 17, 0.4) 76.58%, rgba(17, 17, 17, 0) 100%);
    background: linear-gradient(0deg, #111111 8.46%, rgba(17, 17, 17, 0.65) 59.3%, rgba(17, 17, 17, 0.4) 76.58%, rgba(17, 17, 17, 0) 100%);
    mix-blend-mode: normal;
    position: fixed !important;
  }
  .tcl-sticky-menu--left, .tcl-sticky-menu--right {
    right: auto;
    left: 0;
  }
  .tcl-sticky-menu__menu-item {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 30px;
  }
  .tcl-sticky-menu__menu a:after {
    display: none;
  }
  .tcl-sticky-menu__menu .slick-active a:after,
  .tcl-sticky-menu__menu .slick-center a:after {
    position: relative;
    display: block;
    content: "";
    top: 100%;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    opacity: 1;
  }
  .tcl-sticky-menu__submenu {
    display: inline-block;
    padding: 0;
    margin: 0;
  }
  .tcl-sticky-menu__submenu .tcl-sticky-menu__menu-item.active a:after {
    opacity: 1;
  }
  .tcl-sticky-menu__submenu a:after, .slick-active .tcl-sticky-menu__submenu a:after, .slick-center .tcl-sticky-menu__submenu a:after {
    display: block;
    opacity: 0;
  }
  .tcl-sticky-menu .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .tcl-section--light.tcl-sticky-menu {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(8.46%, #ffffff), color-stop(59.3%, rgba(255, 255, 255, 0.65)), color-stop(76.58%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(bottom, #ffffff 8.46%, rgba(255, 255, 255, 0.65) 59.3%, rgba(255, 255, 255, 0.4) 76.58%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, #ffffff 8.46%, rgba(255, 255, 255, 0.65) 59.3%, rgba(255, 255, 255, 0.4) 76.58%, rgba(255, 255, 255, 0) 100%);
  }
  .tcl-section--light.tcl-sticky-menu__menu a {
    color: #111111;
  }
}