.tcl-header {
  max-width: 100%;
  width: 70px;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  background: #111111;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 1199px) {
  .tcl-header {
    height: 60px;
    width: 100%;
  }
}
.tcl-header--white {
  background: white;
}
.tcl-header ::-webkit-scrollbar {
  display: none;
}
.tcl-header.hidden {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.tcl-header.open {
  width: 420px;
}
@media (max-width: 1199px) {
  .tcl-header.open {
    width: 100%;
    height: 100%;
  }
}
.tcl-header ul {
  list-style: none;
}
.tcl-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1199px) {
  .tcl-header__wrapper {
    width: 100%;
  }
}
.tcl-header__icon {
  height: 45px;
  width: 45px;
  position: absolute;
  top: 50%;
  margin-left: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../../../images/Logo.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 1199px) {
  .tcl-header__icon {
    top: 50%;
    left: 50%;
    margin: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 33px;
    height: 33px;
  }
}
.open .tcl-header__icon {
  opacity: 0;
}
.tcl-header--white .tcl-header__icon {
  background: url("../../../images/Logo-dark.svg") no-repeat center;
}
.tcl-header__menu-button {
  cursor: pointer;
  height: 45px;
  width: 35px;
  margin-top: 20px;
  margin-left: 18px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .tcl-header__menu-button {
    margin-top: 9px;
  }
}
.tcl-header__menu-button span {
  display: block;
  background-color: white;
  height: 1px;
  width: 35px;
  margin: 10px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
.tcl-header--white .tcl-header__menu-button span {
  background-color: #111111;
}
.open .tcl-header__menu-button {
  margin-left: 30px;
}
.open .tcl-header__menu-button span:first-of-type {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  margin: 10px 0 23px;
}
.open .tcl-header__menu-button span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  margin: 0 0 0;
}
.open .tcl-header__menu-button span:last-child {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
}
.tcl-header__language {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  margin: 0 20px 15px 0;
  display: inline-block;
  text-align: center;
  color: #ffffff;
}
.tcl-header--white .tcl-header__language {
  color: #111111;
}
.tcl-header__language.active span {
  position: relative;
  display: inline-block;
}
.tcl-header__language.active span:after {
  content: "";
  height: 2px;
  width: 13px;
  background: #ffffff;
  display: block;
}
.tcl-header--white .tcl-header__language.active span:after {
  background: #111111;
}
.tcl-header__language a {
  text-decoration: none;
  position: relative;
}
.open .tcl-header__language + .tcl-header__language > *:before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: calc(100% + 9px);
}
.tcl-header--white.open .tcl-header__language + .tcl-header__language > *:before {
  background-color: #111111;
}
.open .tcl-header__language-container {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199px) {
  .open .tcl-header__language-container--mobile {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
.tcl-header__language-container {
  margin-bottom: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 22px);
  margin-left: 22px;
}
@media (max-width: 1199px) {
  .tcl-header__language-container--mobile {
    display: block !important;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0px;
    left: inherit;
    margin: 0 0;
    opacity: 1 !important;
    visibility: visible !important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .tcl-header__language-container--mobile > :nth-child(2) > *:before {
    content: "";
    height: 100%;
    width: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: calc(100% + 9px);
  }
}
@media (max-width: 1199px) {
  .tcl-header__language-container {
    opacity: 0;
    visibility: hidden;
  }
}
.tcl-header__navigation {
  display: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 50px 50px 30px 50px;
  max-height: calc(100vh - 45px);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.open .tcl-header__navigation {
  display: block;
}
.tcl-header__navigation-link {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #d9d9d9;
  margin: 0;
  text-transform: none;
}
.tcl-header--white .tcl-header__navigation-link {
  color: #111111;
}
.tcl-header__navigation-link a,
.tcl-header__navigation-link > div {
  padding: 15px 30px 15px 0;
  display: block;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.tcl-header__navigation-link a:after,
.tcl-header__navigation-link > div:after {
  content: "";
  width: 100%;
  height: 1.1px;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.05)), color-stop(56.25%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8)));
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 56.25%, rgba(255, 255, 255, 0.8) 100%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 56.25%, rgba(255, 255, 255, 0.8) 100%);
  opacity: 0.5;
  position: absolute;
}
.tcl-header--white .tcl-header__navigation-link a:after,
.tcl-header--white .tcl-header__navigation-link > div:after {
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.05)), color-stop(56.25%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
  background: -o-linear-gradient(right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 56.25%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 56.25%, rgba(0, 0, 0, 0.8) 100%);
}
.tcl-header__navigation-link:first-of-type > a:before, .tcl-header__navigation-link:first-of-type > div:before {
  content: "";
  width: 100%;
  height: 1.1px;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.05)), color-stop(56.25%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8)));
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 56.25%, rgba(255, 255, 255, 0.8) 100%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 56.25%, rgba(255, 255, 255, 0.8) 100%);
  opacity: 0.5;
  position: absolute;
}
.tcl-header--white .tcl-header__navigation-link:first-of-type > a:before, .tcl-header--white .tcl-header__navigation-link:first-of-type > div:before {
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.05)), color-stop(56.25%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
  background: -o-linear-gradient(right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 56.25%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 56.25%, rgba(0, 0, 0, 0.8) 100%);
}
.tcl-header__navigation-link--lvl-1 {
  text-transform: uppercase;
  color: #fefefe;
}
.tcl-header__navigation-link--lvl-1 > a:after, .tcl-header__navigation-link--lvl-1 > div:after {
  bottom: 10px;
  background: #d9d9d9;
  width: 30px;
  height: 2px;
}
.tcl-header__navigation-link--lvl-1 > a:first-of-type:before, .tcl-header__navigation-link--lvl-1 > div:first-of-type:before {
  display: none;
}
.tcl-header--white .tcl-header__navigation-link--lvl-1 {
  color: #111111;
}
.tcl-header--white .tcl-header__navigation-link--lvl-1 > a:after, .tcl-header--white .tcl-header__navigation-link--lvl-1 > div:after {
  background: #111111;
}
.tcl-header__navigation-dropdown {
  display: none;
  position: relative;
  overflow-y: hidden;
  padding-top: 30px;
  padding-bottom: 25px;
}
.tcl-header__navigation-dropdown .tcl-header__navigation-dropdown {
  padding-top: 0;
  padding-bottom: 0;
}
.tcl-header__navigation-dropdown .tcl-header__navigation-dropdown li:first-of-type a:before {
  display: none;
}
.tcl-header__navigation-dropdown-toggle {
  position: absolute;
  height: 100%;
  width: 30px;
  background: url(../../../images/small-arrow-down.svg) no-repeat center;
  background-size: 12px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.tcl-header__navigation-dropdown-toggle--no-dropdown {
  background: url(../../../images/small-arrow-left.svg) no-repeat center;
  background-size: 7px;
}
.tcl-header--white .tcl-header__navigation-dropdown-toggle {
  background: url(../../../images/small-arrow-down-dark.svg) no-repeat center;
  background-size: 12px;
}
.tcl-header--white .tcl-header__navigation-dropdown-toggle--no-dropdown {
  background: url(../../../images/small-arrow-left-dark.svg) no-repeat center;
  background-size: 7px;
}