.tcl-static-content__navigation {
  padding-top: 10px;
  padding-bottom: 50px;
  position: sticky;
  top: 160px;
  margin-bottom: 50px;
  padding-right: 30px;
  padding-left: 50px;
  max-height: calc(100vh - 90px);
  overflow-y: hidden;
}
@media (max-width: 1199px) {
  .tcl-static-content__navigation {
    display: none;
  }
}
.tcl-static-content__navigation-wrapper {
  position: relative;
}
.tcl-static-content__navigation-item {
  margin-bottom: 20px;
}
.tcl-static-content__navigation-item:last-child {
  margin-bottom: 0;
}
.tcl-static-content__navigation-item a {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #212121;
  color: #191818;
  display: block;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.tcl-static-content__navigation-item a:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  left: -50px;
  top: 0;
  background-color: #023c7a;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tcl-static-content__navigation-item a.active {
  font-weight: 600;
}
.tcl-static-content__navigation-item a.active:after {
  opacity: 1;
}
.tcl-static-content__content {
  color: #191818;
  margin-bottom: 50px;
}
.tcl-static-content__content:last-child {
  margin-bottom: 0;
}
.tcl-static-content__content-heading {
  font-family: "Montserrat";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  color: #023c7a;
  color: #191818;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tcl-static-content__content-heading {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .tcl-static-content__content-heading {
    margin-bottom: 30px;
  }
}
.tcl-static-content__content-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #212121;
  color: #191818;
}
.tcl-static-content__content-text a {
  color: #023c7a;
}
.tcl-static-content__content-text p {
  margin: 26px 0;
}
.tcl-static-content__content-text p:first-child {
  margin-top: 0;
}