.menu-icon{
	font-size: 25px;
	margin-top: 10px;
}

.body-text{
	color: #71818f;
}

.body-text a{
  color: #71818f;
  text-decoration: none;
}

.row{
  margin-left: 0px;
  margin-right: 0px;
}

.home-header{
	font-style: italic;
	text-align: center;
}

#table-header{
	background: #A9A9A9;
	text-align: center;
	color: #fff;
	font-weight: bold;
}

.image-center{
	display: block;
	margin-left: auto;
	margin-right: auto;;
}

.text-vertical-center{
	margin-top: auto;
	margin-bottom: auto;
}

.about-table-cell{
	border-color: #fff;
}

.list-group-item.active{
  background-color: rgb(191,191,191);
  border-color: rgb(191,191,191);
  box-shadow: -5px -5px 1px 5px rgba(0,0,0,0.1);
  font-weight: bold;
}

.heading-underline{
	border-bottom: 2px solid #71818f;
}

#underline{
	width: 90px;
	border-bottom: 2px solid #71818f;
}

.list-style ul{
	list-style-type: "-";
	padding-left: 5px;
}

.list-distance li{
	padding-left: 1rem
}

#list-header h6{
	background: #A9A9A9;
	text-align: center;
	color: #fff;
	font-weight: bold;
	padding-top: 7px;
	padding-bottom: 7px;
}

.list-style-nested ul{
	list-style-type: "*";
	padding-left: 3rem;
}

.list-distance-nested{
	padding-left: 3rem
	transform: rotate(45deg);
}

.credentials h6{
	text-align: center;
	color: #006699;
	font-weight: bold;
  font-size: 14px;
}

.bottom{
	width: 370px;
	border-bottom: 2px solid;
	border-color: #71818f;
	padding-bottom: 5px;
}


.footer {
  text-decoration: none;
  background-color: #d9d9d9;
  color: #292b2c;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}




/*Side Bar Nav*/


.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
    padding-left: 15px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 220px;
}

#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#page-content-wrapper {
    width: 100%;
    padding-top: 70px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 205px;
    margin: 0;
    padding: 0;
    list-style: none;
        z-index: 999;
    background: #fff;

}

.sidebar-nav li {
    position: relative; 
    line-height: 20px;
    display: inline-block;
    width: 100%;
}


.banner-image{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 1;
    transition: opacity 500ms ease 0s;
}
.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #7;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}
/*.sidebar-nav li:first-child a {
    color: #71818f;
    background-color: #71818f;
}*/
/*.sidebar-nav li:nth-child(2):before {
    background-color: #71818f;   
}
.sidebar-nav li:nth-child(3):before {
    background-color: #71818f;   
}
.sidebar-nav li:nth-child(4):before {
    background-color: #71818f;   
}
.sidebar-nav li:nth-child(5):before {
    background-color: #71818f;   
}
.sidebar-nav li:nth-child(6):before {
    background-color: #71818f;   
}
.sidebar-nav li:nth-child(7):before {
    background-color: #71818f;   
}
.sidebar-nav li:nth-child(8):before {
    background-color: #71818f;   
}
.sidebar-nav li:nth-child(9):before {
    background-color: #71818f;   
}*/
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}

.sidebar-nav li a {
    display: block;
    color: #71818f;
    text-decoration: none;
    padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: #71818f;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 20px;
    line-height: 44px;
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #222;
    box-shadow: none;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
  position: fixed;
  top: 10px;  
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #1a1a1a;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: #1a1a1a;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#sidebar-wrapper.toggled{
  margin-left: 0px;
}

.hamburger.is-open{
  margin-left: 220px;

}

.menu a {
  padding-left: 10px !important;
}

.center-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}