@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');


.icons i,
.icons svg {
   color: #010066;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
}

body{
  background-color: #fff;
  display: flex;
  position: relative;
  padding-bottom:60px;
	
}





header {
  position: fixed;
  height: 70px;
  top: 0;
  left: 0;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
  background: #010066;
  border-bottom: 20px solid #fe9900;
  z-index: +1;
  
 
}

header .logo {
  color: #fff;
  height: 50px;
  line-height: 50px;
  float: left;
  font-weight: bold;
  margin-top: 2px;
}

header nav {
  float: right;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  list-style: none;
  position: relative;
}

header nav ul li.sub-menu:before {
  content: '\f078';
  font-family: fontAwesome;
  position: absolute;
  line-height: 50px;
  color: #fff;
  right: 1px;
}

header nav ul li.active.sub-menu:before {
  content: '\f077';
}

header nav ul li ul {
  position: absolute;
  left: 0;
  background: #010066;
  display: none
}

header nav ul li.active ul {
  /* use li: hover instead */
  display: block;
}

header nav ul li ul li {
  display: block;
  width: 200px;
}

header nav ul li a {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  display: block;
}

header nav ul li a:hover {
  color: #010066;
  background: #fe9900;
}

header nav ul li a.active {
  background: #2196f3;
}

.menu-toggle {
  color: #fff;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none
}

@media (max-width: 920px) {
  header {
    padding: 0 20px;
  }
  .menu-toggle {
    display: block;
  }
  header nav {
    /* use display none or left:-100% to hide the nav  */
    /* display: none; */
    position: absolute;
    top: 50px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 50px);
    background: #333;
    transition: 0.5s;
  }
  header nav.active {
    left: 0;
  }
  header nav ul {
    display: block;
    text-align: center;
  }
  header nav ul li a {
    border-bottom: 0.9px solid rgba(0, 0, 0, .2);
  }
  header nav ul li.active ul {
    position: relative;
    background: #003e6f;
  }
  header nav ul li ul li {
    width: 100%;
  }
}









.sidebar{
  margin-top: 70px;
  width: 200px;
  height: 100%;
  background: #010066;
  padding-top: 30px;
  padding-bottom:60px;
  position: fixed;
	overflow: scroll;
	border-top: 0px solid #fff;
}

.sidebar h2{
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.sidebar ul li{
  padding: 15px;
  border-bottom: 1px solid #fff;
  border-bottom: 1px solid rgba(192,192,192,0.3);
  border-top: 1px solid rgba(192,192,192,0.3);
}    

.sidebar ul li a{
  color: #fff;
  display: block;
	
}

.sidebar ul li a .fas{
  width: 25px;
}

.sidebar ul li:hover{
  background-color: #fe9900;
}
    
.sidebar ul li:hover a{
  color: #010066;
}

.sidebar .current{
  color: #fe9900;
 
}

 
.sidebar h5{
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
}


.pageheader{
  padding: 0px;
	margin-top: 40px;
font-size:30pt;
color: #010066;
  background: #fff;
	text-align: center;
  border-bottom: 1px solid #e0e4e8;
}

.info{
  margin: 0px;
  color: black;
  font-size: 18px;
  line-height: 25px;
  padding: 10px;

	
}

.info div{
  margin-bottom: 0px;
}

.teaching_content{
  width: 100%;
  margin-left: 200px;
  margin-top: 50px;
}

.mainpage_content{
  width: 100%;
  background-color: none;
  margin-left: 0px;
  margin-top: 70px;

}


.demos_content{
  background-color: none;
  font-size: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 70px;
  line-height: 120%;
	
}


.footer{
  padding: 20px;
  background: #fff;
  color: #010066;
  border-bottom: 1px solid #e0e4e8;
  position: absolute;
  width: 100%;
  height: 60px;
  bottom:0;
  margin-left: 200px;
  text-align: left;
}






* {
  box-sizing: border-box;
}

/* one column with dark blue background that spans the page */
.rowheader {
  float: left;
  width: 100%;
  padding: 5px;

  background-color: #fe9900; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}



/* Create three equal columns that floats next to each other */
.column1 {
  float: left;
  width: 40%;
  padding: 5px;
  height: 50px; 
  background-color: #fff; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}

.column2 {
  float: left;
  width: 15%;
  padding: 5px;
  height: 50px; 
  background-color: #fff; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}

.column3 {
  float: left;
  width: 15%;
  padding: 5px;
  height: 50px; 
  background-color: #fff; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}

.column4 {
  float: left;
  width: 15%;
  padding: 5px;
  height: 50px; 
  background-color: #fff; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}

.column5 {
  float: left;
  width: 15%;
  padding: 5px;
  height: 50px; 
  background-color: #fff; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}


.columnshade1 {
  float: left;
  width: 40%;
  padding: 5px;
  height: 50px; 
  background-color: #dcdce0; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}

.columnshade2 {
  float: left;
  width: 15%;
  padding: 5px;
  height: 50px; 
  background-color: #dcdce0; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}

.columnshade3 {
  float: left;
  width: 15%;
  padding: 5px;
  height: 50px; 
  background-color: #dcdce0; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}

.columnshade4 {
  float: left;
  width: 15%;
  padding: 5px;
  height: 50px; 
  background-color: #dcdce0; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}

.columnshade5 {
  float: left;
  width: 15%;
  padding: 5px;
  height: 50px; 
  background-color: #dcdce0; 
  color: #010066;
  text-align: left;
  border-bottom: 0.5px solid #010066;
}




.columnheader1 {
  float: left;
  width: 40%;
  padding: 0px;
  height: 50px; 
  background-color: #010066; 
  color: #fff;
  text-align: left;
  border-bottom: 0px solid #fe9900;
  
}

.columnheader2 {
  float: left;
  width: 30%;
  padding: 0px;
  height: 50px; 
  background-color: #010066; 
  color: #fff;
  text-align: left;
  border-bottom: 0px solid #fe9900;
	
	
}

.columnheader3 {
  float: left;
  width: 15%;
  padding: 0px;
  height: 50px; 
  background-color: #010066; 
  color: #fff;
  text-align: left;
  border-bottom: 0px solid #fe9900;
	
}

.columnheader4 {
  float: left;
  width: 15%;
  padding: 0px;
  height: 50px; 
  background-color: #010066; 
  color: #fff;
  text-align: left;
  border-bottom: 0px solid #fe9900;
	
}


/* Clear floats after the columns */


.row:after {
  content: "";
  display: table;
  clear: both;


}


.teaching_content .info a:link {
  color: #010067;
  text-decoration: underline;
}


.teaching_content .info a:visited {
  color: forestgreen;
}



.teaching_content .info a:hover {
  color: red;
}



.backgroundimage {
  background: url("../images/insulin.png");
  width: auto;
  height: 1000px;
  background-repeat: no-repeat;
  background-position: cover;
  opacity: 1.0;
  position:relative;
  z-index: -1;
	
}


/* trying to get text on top of background image */

.container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.container img {vertical-align: top;}

.container .content {
  position: absolute;
  top: 0;
  background: #010067; 
	font-size: 24px;
	opacity: 0.5;
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}






/* Add a black background color to the top navigation */
.teaching_content .info .topnav   {
  background-color: #010067;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.teaching_content .info .topnav  a {
  float: left;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.teaching_content .info .topnav  a:hover {
  background-color: #fe9900;
  color: #010067;
}

/* Add a color to the active/current link */
.teaching_content .info .topnav  a.active {
  color: #fe9900;
 
}


/* Add a font awesome icon to an unordered list */
.fa-ul {
	
}
