.h1 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #414042;
}

h2 {
    font-weight: 400;
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 16px;
    color: #414042;
}

p, li, a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  color: #414042;
}

p strong {
    color: #414042;
}

a {
    color: #0098E9;
}

a:hover {
    color: #0098E9;
    text-decoration: underline;
}

ul li::marker {
    width:4px;
    height: 4px;
    color: #6D6E71;
}

p.lead {
    margin-bottom: 48px;
}

h2:not(:first-of-type) {
    border-top: 1px dashed #414042;
    padding-top: 16px;
    margin-top: 24px;
}

h2[id] {
    scroll-margin-top: 143px;
}
.sticky-top-hero {
    top: 143px;
}

.bs-docs-sidenav > li {
    width:100%;
}

.bs-docs-sidenav > li > a {
    display: block;
    color: #000000;
    font-size: 20px;
    line-height: 30px;
    padding: 17px 18px;
    margin-bottom: 8px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transition: all ease-in-out .2s;
}

.bs-docs-sidenav > li > a:hover {
    color: #fff;
    text-decoration: none;
}

.bs-docs-sidenav > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: #83D2F5;
    display: block;
    z-index:-2;
    transition: all ease-in-out .3s;
}

.bs-docs-sidenav > li > a:hover::before {
    width: 100%;
    background: #0098E9;
}

.bs-docs-sidenav > li > a::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #83D2F5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
    border-radius: 50%;
    transition: all ease-in-out .3s;
}

.bs-docs-sidenav > li > a:hover::after {
    left: calc(100% - 12px);
}

@media only screen and (min-width: 992px) {
    .h1 {
        font-weight: 200;
        font-size: 60px;
        line-height: 73px;
    }
}