
/*
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

tr
{
   style="height:20px;
}
td
{
   width:33%;
   font-size:1.2em;
   text-align:left;
   vertical-align:top;
   padding-right:10px;
   padding-left:10px;
}
*/

/* Responsive navigation menu and screen width https://www.w3schools.com/cssref/tryit.asp?filename=trycss3_media_menu */
*
{
   box-sizing: border-box;
   font-family: 'Open Sans', 'Arial';
}

/* On screens that are 601px wide or more, make the menu links next to each other instead of stacking on top of each other */
@media screen and (min-width: 601px)
{
   /* Style the top navigation bar */
   .topnav
   {
      width: 1440px;
      overflow: hidden;
      background-color: white;
   }

   /* Style the topnav links */
   .topnav a
   {
      float: left;
      display: block;
      color: grey;
      font-weight: 600;
      text-align: center;
      padding: 15px 15px;
      text-decoration: none;
   }

   /* Change color on hover */
   .topnav a:hover
   {
      color: red;
   }

   .column_about_us_mission
   {
      float: left;
      width: 50%;
      padding: 10px;
   }
}

/* On screens that are 600px wide or less, make the menu links stack on top of each other instead of next to each other */
@media screen and (max-width: 600px)
{
   /* Style the top navigation bar */
   .topnav
   {
      width: 100%;
      overflow: hidden;
      background-color: #888888;
      align: center;
   }

   /* Style the topnav links */
   .topnav a
   {
      float: none;
      display: block;
      color: white;
      font-weight: 600;
      text-align: center;
      padding: 15px 15px;
      text-decoration: none;
   }

   /* Change color on hover */
   .topnav a:hover
   {
      background-color: black;
   }

   .column_about_us_mission
   {
      float: left;
      width: 100%;
      padding: 10px;
   }
}

.Link a
{
   color: white;
   font-weight: 600;
   text-decoration: none;
}

.Link a:hover
{
   color: black;
   font-weight: 600;
   text-decoration: none;
}

.image_left
{
   float: left;
   padding: 0 10px 10px 0;
}

/* slideshow https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_slideshow_auto */
/* already defined for topnav
*
{
   box-sizing: border-box;
}
*/
.SlideShow
{
   display: none;
}
img
{
   vertical-align: middle;
}
.slideshow-container
{
   width: 100%;
   position: relative;
   margin: auto;
}
.active
{
   background-color: #717171;
}
.fade
{
   -webkit-animation-name: fade;
   -webkit-animation-duration: 1.5s;
   animation-name: fade;
   animation-duration: 1.5s;
}
@-webkit-keyframes fade
{
   from {opacity: .4}
   to {opacity: 1}
}
@keyframes fade
{
   from {opacity: .4}
   to {opacity: 1}
}

.teacher_pic
{
   width: 290px;
   border-radius: 20px;
   margin: auto;
   position: relative;
}

.mission_points
{
   color:black;
   font-size:22px;
   font-weight:600;
   text-align:left;
}

.mission_points::before
{
   content: "•";            /* Insert content that looks like bullets */
   font-size: 30px;
   padding-right: 2px;
   color: black;
   vertical-align: bottom;
}

/**/
/* Clearfix (clear floats) */
.row::after
{
   content: "";
   clear: both;
   display: table;
   padding-right: 10px;
}

[class*="col_about_us-"]
{
  float: left;
  padding: 0;
  width: 100%;
  text-align: center;
}

[class*="col_curriculum-"] {
  float: left;
  padding: 0;
  width: 50%;
  text-align: center;
}

[class*="col_preparing-"] {
  float: left;
  padding: 0;
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 620px)
{
   .col_about_us-2 {width: 50%;}
   .col_curriculum-4 {width: 50%;}
   .col_preparing-2 {width: 100%;}
}
@media only screen and (min-width: 940px)
{
   .col_about_us-3 {width: 33.33%;}
   .col_curriculum-4 {width: 25%;}
   .col_preparing-2 {width: 50%;}
}
@media only screen and (min-width: 1260px)
{
   .col_about_us-4 {width: 25%;}
   .col_curriculum-4 {width: 25%;}
   .col_preparing-2 {width: 50%;}
}
@media only screen and (min-width: 1580px)
{
   .col_about_us-5 {width: 20%;}
   .col_curriculum-4 {width: 25%;}
   .col_preparing-2 {width: 50%;}
}
@media only screen and (min-width: 1900px)
{
   .col_about_us-5 {width: 16.76%;}
   .col_curriculum-4 {width: 25%;}
   .col_preparing-2 {width: 50%;}
}

.container {
  position: relative;
  text-align: center;
  color: white;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Heading
{
   /*color: #CC0000;*/
   color: red;
   font-size: 32px;
   font-weight: 600;
   line-height: 42px;
   letter-spacing: 2px;
   text-align: center;
}
.Text
{
   color: grey;
   font-size: 22px;
   font-weight: 600;
   line-height: 30px;
   letter-spacing: 2px;
   text-align: center;
}

.curriculum_bullets
{
   margin: auto;
   margin-top: 20px;
   color: white;
   padding: 5px;
   background-color: grey;
   border: 5px;
   border-color: black;
   border-radius: 15px;
   border-style: solid;
}

.videoWrapper
{
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe
{
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	height: 100%;
}