html{
  overflow-x: hidden;
}
body{
  margin: 0px;
  font-family: 'Open Sans', sans-serif!important;
  background-color: #ededed!important;
}
a{
  color: #2098d1;
}
#header{
  background-image: linear-gradient(to bottom right , #031634, #2098d1)!important;
  padding:0px 10px 60px;
}
.central-header{
  padding: 30px;
}
.central-header > h1{
  font-size: 42px;
  line-height: 59.997px;
  color: white;
  margin: 10px 0px;
}
.container-mw-demo{
  max-width: 1120px;
  margin: auto;
}
footer{
  background-color: #031634;
  padding: 0px 10px;
  color: white;
  font-weight: 200;
  min-height: 100px;
  font-size: 300;
}
footer  p{
  opacity: 0.5;
}
/*Main Structre*/
#main {
  margin: 0px;
  padding: 0px;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
  box-shadow: 0 1px 1px rgba(0,0,0,.1);
  background-color: white;
  min-height: calc(100vh - 289px);
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-flow: row;
          flex-flow: row;
  }

 #main > article {
  -webkit-flex: 3 1 calc(100% - 340px);
          flex: 3 1 calc(100% - 340px);
  -webkit-order: 2;
          order: 2;
  }
 
 #main > nav {
  -webkit-flex: 1 6 340px;
          flex: 1 6 340px;
  -webkit-order: 1;
          order: 1;
  background-color: #f0f0f0
  }
 
 #main > aside {
  -webkit-flex: 1 6 260px;
          flex: 1 6 260px;
  -webkit-order: 3;
          order: 3;
  background-color: #f0f0f0
  }

 /* Too narrow to support three columns */
 @media all and (max-width: 700px) {
 
  #main{
    min-height: unset;
   -webkit-flex-flow: column;
           flex-flow: column;
  }

  #main > article, #main > nav, #main > aside {
   /* Return them to document order */
   -webkit-order: 0;
           order: 0;
  }
 }

/**/
.container-demo{
  padding: 0px 10px 60px;
  margin-top:-60px;
}

.divisor{
  padding: 18px 30px 17px;
  color: #666;
  font-weight: 600;
}
.divisor > h2{
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0px 2px;
}

article > .divisor{
  border-bottom: 1px solid rgb(238,238,238)
}

nav > .divisor{
  background-color: #2098d1;
  border: 0.5px solid #2098d1;
  color: rgba(255,255,255,.8);
  font-weight: 400;
}

aside > .divisor{
  background-color: orange;
  border: 0.5px solid orange;
  color: rgba(255,255,255,.8);
  font-weight: 400;
}
.section-content{
  padding: 30px;
  color: #4c4c4c;
}

.section-content > input{
  width: 100%;
  padding: 7px 8px 7px 26px; 
}
input::placeholder{
  color: rgb(153,153,153);
  font-weight: 300;
}
.menu-header{
  padding: 18px 30px 17px;
  font-weight: 600;
  background-color: #dcdcdc;
}

.menu-header > h2{
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0px 2px;
}

.menu{
  font-weight: 300;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(218,218,218);
  padding-bottom:15px;
  margin-bottom: 15px;
}

.menu a{
  color: #444;
}