:root {
  --space: 1rem;
  --border: 4px;
  --page-width: 120ch;
  --color-link: #595959;
  --color-active: #00a19b;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --duration: 350ms;
  --section-offset: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  --scroll-behavior: smooth;
  scroll-behavior: var(--scroll-behavior);
}
@media (prefers-reduced-motion: reduce) {
  html {
    --scroll-behavior: auto;
  }
}

body {
  line-height: 1.5;
}

.subnav-sections {
  position: sticky;
  top: 0px;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: inset lightgrey 0 0px 0, rgba(0, 0, 0, 0.1) 0 1px 1px 0;
          box-shadow: inset lightgrey 0 0px 0, rgba(0, 0, 0, 0.1) 0 1px 1px 0;
  z-index: 100;
}
@media (min-width: 1200px) {
  .subnav-sections {
    top: 0;
  }
}
.subnav-sections .subnav-menu {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.subnav-sections .subnav-menu::before {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, white), to(white));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 80%, white 100%);
  background-size: 100% auto;
}
.subnav-sections .subnav-menu::after {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 100;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(80%, white), to(white));
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 80%, white 100%);
  background-size: 100% auto;
}
.subnav-sections .subnav-menu--contentLeft {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: -webkit-transform var(--ease) var(--duration);
  transition: -webkit-transform var(--ease) var(--duration);
  transition: transform var(--ease) var(--duration);
  transition: transform var(--ease) var(--duration), -webkit-transform var(--ease) var(--duration);
}
@media (min-width: 576px) {
  .subnav-sections .subnav-menu--contentLeft {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .subnav-sections .subnav-menu--contentLeft {
    margin: initial;
  }
}
.subnav-sections .subnav-menu--contentLeft::-webkit-scrollbar {
  display: none;
}
.subnav-sections .subnav-menu--contentLeft a {
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
.subnav-sections .subnav-menu--contentLeft .subnav-menu-item-link {
  display: block;
  padding: 16px;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-link);
  -webkit-transition: color var(--ease) var(--duration);
  transition: color var(--ease) var(--duration);
}
.subnav-sections .subnav-menu--contentLeft .subnav-menu-item-link.active {
  color: var(--color-active);
  border-bottom: 4px solid #00a19b;
}
.subnav-sections .subnav-menu--contentRight {
  width: 100%;
}
.subnav-sections .subnav-menu--contentRight .btnWrapper {
  position: relative;
  z-index: 101;
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.subnav-sections .subnav-menu--contentRight .btnWrapper::before {
  content: "";
  position: absolute;
  width: 20px;
  left: -15px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 100;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, white), to(white));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 80%, white 100%);
  background-size: 100% auto;
}
.subnav-sections .subnav-menu--contentRight .btn {
  outline: none;
  width: 150px;
  height: auto;
  padding: 4px 0;
  position: relative;
  z-index: 101;
}
@media (min-width: 992px) {
  .subnav-sections .subnav-menu--contentRight .btn {
    height: auto;
  }
}
@media (min-width: 576px) {
  .subnav-sections .subnav-menu--contentRight .btn {
    padding: 10px 0;
  }
}
.subnav-sections .subnav-menu--contentRight .btnLine {
  width: 150px;
  height: auto;
  position: relative;
  display: none;
  z-index: 101;
}
@media (min-width: 1200px) {
  .subnav-sections .subnav-menu--contentRight .btnLine {
    padding: 12px 0;
    display: block;
  }
}
.subnav-sections::before {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(52%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 52%, rgb(255, 255, 255) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=1);
  /* IE6-9 */
  background-size: 100% auto;
}

.active-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--color-active);
  -webkit-transition: width var(--ease) var(--duration), -webkit-transform var(--ease) var(--duration);
  transition: width var(--ease) var(--duration), -webkit-transform var(--ease) var(--duration);
  transition: width var(--ease) var(--duration), transform var(--ease) var(--duration);
  transition: width var(--ease) var(--duration), transform var(--ease) var(--duration), -webkit-transform var(--ease) var(--duration);
}

.placeholder-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 50vh;
  background-color: lightgray;
}

.page-sections {
  margin: 0 auto;
}

.secOffset:target::before {
  content: "";
  display: block;
  visibility: hidden;
  pointer-events: none;
  margin-top: calc(var(--section-offset) * -1px);
  height: calc(var(--section-offset) * 1px);
}
@media (min-width: 1200px) {
  .secOffset:target::before {
    content: "";
    display: block;
    visibility: hidden;
    pointer-events: none;
    margin-top: calc(var(--section-offset) * -0.5px);
    height: calc(var(--section-offset) * 0.5px);
  }
}

.page-section {
  padding: 0 calc(var(--space) * 1) var(--space);
}
@media (min-width: 1200px) {
  .page-section {
    padding: calc(var(--space) * 2) var(--space);
  }
}
.page-section > * + * {
  margin-top: calc(var(--space) * 1.5);
}

.section-title {
  outline: none;
}

.section-title-left {
  outline: none;
  text-align: left !important;
}