@charset "utf-8";
/* CSS Document */


.Header {
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #000000;
  height: 20%;
  text-align: center;
  color: #ffffff;
    font-size: 24px;
  font-weight: 100;
}

.article {
	color: #808080;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size: 12pt;
}

.main {
    margin: 0;
    width: 100%;
    
}

.about {
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  /*background-color: #e9e8f1;*/
  height: 20%;
  min-width: 40%;
  text-align: center;
  color: #000000;
  font-weight: 300;
font-size: 14px;
}


.menu {
  background-color: #90989f;  
  margin: 0;
  max-width: 100%;
  text-align: center;
  color: #000000;
}

.content {
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  margin: 0 auto;
  max-width: 100%;
  padding-top: 20px;
  background-color: #ffffff;
  text-align: center;
  color: #000000;
  font-weight: 300;
  font-size: 18px;
}

.about-text {
	margin: 0 auto;
	max-width: 45%;
	text-align: Left;
}

.text-block {
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: left;
  color: #000000;
  font-size: 16px;
  line-height: 1.25em;
}

a:link {
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
text-decoration: none;
font-size: 20px;
    color: #808080;
}

a:visited {
text-decoration: none;
}

a:hover { 
text-decoration: none;
color: #b90064;
}

a:active {
text-decoration: none;
}

/* Home Button */
.homebtn {
 display: inline-block;
  background-color: #768189;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  color: white;
  font-size: 16px;
  border: none;
  min-width: 180px;
}

.homebtn a {
  color: #ffffff;
  font-size: 16px;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.homebtn a:hover {
  color: #ffffff;
  font-size: 16px;
  padding: 10px;
  text-decoration: none;
  display: block;
  background-color: #d2599a;
}


/* Previous video container */
.video-content {
  margin: 0;
  width: 100%;
  min-height: 20%;
}

.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* Sizes video on smaller screens before being resized for lafrger screens*/
.video-container {
	max-width: 100%;
}

video {
  max-width: 100%;
  height: auto;
}


/* Dropdown Button */
.dropbtn {
  background-color: #768189;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
    min-width: 260px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  margin: 0;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 260px;
    text-align: left;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  font-size: 16px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #c7cbcf;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #d2599a;}

/** FOR SMALL SCREENS <1024px **/
@media (max-width: 1024px) {

/** FOR IMAGES IN INTERACTIVE LEARNING - !important used to override the image widths **/	
.content a img {
	width: 100% !important;
	height: 100% !important;
}
.about-text {
	max-width: 100%;
}
}

/** FOR BIGGER SCREENS >1024px **/
@media (min-width: 1024px) {

/** FOR IMAGES IN INTERACTIVE LEARNING - !important used to override the image widths **/	
.content a img {
	width: 35% !important;
	height: 35% !important;
}

/** For videos in Learning videos **/
video {
	max-width: 45% !important;
}

.container {
  max-width: 45%;
}
}