.banner-simple {
   margin: 40px; 
   padding: 0 15px;
   text-align: center;
}

.banner-simple h2 {
   color: #46DEFF;
   font-size: 34px;
   margin: 0;
   line-height: 1.2;
}

.banner-simple p {
   font-size: 20px;
   margin: 10px auto 0 auto;
   max-width: 700px;
}

@media only screen and (max-width: 768px) {
   .banner-simple h2 {
      font-size: 30px;
   }
}

@media only screen and (min-width: 992px) {
   .cta-navigation+.banner-simple {
      margin-top: 90px;
   }
}
.content-sidebar {
    background: #131313;
    margin-top: 40px;
    padding: 40px 0 60px 0;
}

.content-sidebar .sidebar {
    font-size: 14px;
    margin-top: 10px;
}

.content-sidebar h4 {
    color: #2B9BE0;
}

.content-sidebar .sidebar li {
    list-style-type: none;
    margin-top: 10px;
}

.content-sidebar .content div {
    margin-top: 20px;
}

.content-sidebar h4 {
    margin-bottom: 20px;
}

.content-sidebar-bullets {
    margin-top: 20px;
}

.content-sidebar-bullets li {
    list-style-type: none;
    margin-top: 10px;
}

.content-sidebar .indent {
    margin-left: 15px;
}

/* Make sidebar position sticky if the viewport is wide and long enough */ 
@media (min-height: 500px) and (min-width: 768px) {
    .content-sidebar .sidebar {
        position: -webkit-sticky;
        position: sticky;
        overflow: auto;
        top: 50px;
    }
}