/* Create three unequal columns that floats next to each other */
* {
  box-sizing: border-box;
}

/* Style the body */
body{
  background-color: #eee;
}

/* Header/logo Title */

/* Style the top navigation bar */
.navbar {
  display: flex;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

.side h1 {
    margin-top: 30px;
    font-size: 15px;
}

.side .subtitle{
  font-weight: bold;
  margin-top: 10px;
  font-size: 16px
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 15%;
  background-color: #eee;
  padding: 20px;
}


/* Main column */
.main {
  flex: 70%;
  background-color: white;
  padding: 20px;
}


/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}



/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row, .navbar {   
    flex-direction: column;
  }
.main {
  padding: 20px 0px !important;
}

}


#coursess .courseimg {
  text-align: center;
  margin: 60px 0px -35px;
}


#threecolum {
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #eee;
}

#threecolum .olucolumn {
  text-align: center;
}






/* Create three equal columns that floats next to each other */
.olucolumn {
float: left;
width: 33.33%;
padding: 10px;
height: 170px; /* Should be removed. Only for demonstration */
}
/* Responsive columns */
@media screen and (max-width: 650px) {
  .olucolumn {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    overflow: visible;
    padding: 5px !important; 
    height: 250px !important;
  }





}

@media screen and (max-width: 750px) {
.mobilecontainer {
    width: 100% !important;
    margin: auto;
    overflow: hidden !important;
}

.olucontainer {
  width: 90%;
  margin: auto;
  overflow: hidden !important;
 }
 
}
.olucolumn h2 {
  padding: 20px 20px 4px !important;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px !important;
 
  
}
.olucolumn p {
  font-size: 10px;
  color: #fff
}

/* Clear floats after the columns */
.olurow:after {
content: "";
display: table;
clear: both;
}

#accreditations{
  
  background: #fff;
  padding-top: 40px;
  text-align: center;
}


/* From acrobat*/


