/* 
    MAIN LESS STYLE SHEET 
*/
/* MEDIA QUERY SCHEME 

    // Large Devices, Wide Screens 
    @media screen and (max-width: @xl-breakpoint) {
        .outline-white();
    } 
    
    // Medium Devices, Desktops 
    @media screen and (max-width: 992px) {
        .outline-blue();
    }    
    
    // Small Devices, Tablets 
    @media screen and (max-width: 768px) {
        .outline-green();
    }
    
    // Extra Small Devices, Phones 
    @media screen and (max-width: 480px) {
        .outline-red();
    }
    

*/
/*---------------------------------
    General Styles 
---------------------------------*/
/* header bar height */
/* main navigation height */
/* factor increase in heights for larger screens */
html,
body {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
}
body {
  padding-top: 52.8px;
}
@media screen and (max-width: 1440px) {
  body {
    padding-top: 44px;
  }
}
/* Testers */
.test-overlay-red::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  opacity: 0.2;
  z-index: 100;
}
.test-outline-red {
  outline: 1px solid red;
}
.test-outline-green {
  outline: 1px solid green;
}
.test-outline-blue {
  outline: 1px solid blue;
}
.test-outline-white {
  outline: 1px solid #fff;
}
.test-bg-red {
  background-color: rgba(255, 0, 0, 0.5);
}
.test-bg-green {
  background-color: rgba(0, 255, 0, 0.5);
}
.test-bg-blue {
  background-color: rgba(0, 0, 255, 0.5);
}
.test-bg-yellow {
  background-color: rgba(255, 238, 170, 0.5);
}
.test-mark-red:after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 20px;
  height: 30px;
  background-color: red;
}
.test-mark-green:after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 20px;
  height: 30px;
  background-color: green;
}
.test-mark-blue:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 20px;
  height: 30px;
  background-color: blue;
}
.test-mark-white:after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 20px;
  height: 30px;
  background-color: white;
}
/* Center absolute positioned elements */
.abs-center-x {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.abs-center-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.abs-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
/* Sections */
.section {
  position: relative;
  width: auto;
}
.section-padding-y {
  padding-top: 80px;
  padding-bottom: 80px;
}
.content-wrapper {
  position: relative;
  width: 80%;
  max-width: 1440px;
  margin: 0 auto;
  /* Large Devices, Wide Screens */
  /* Medium Devices, Desktops */
  /* Small Devices, Tablets */
  /* Extra Small Devices, Phones */
}
@media screen and (max-width: 1440px) {
  .content-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 992px) {
  .content-wrapper {
    width: 96%;
  }
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    width: 94%;
  }
}
/* Flatten list to use as navigation */
.nav-list {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.nav-list li {
  display: inline-block;
  position: relative;
  height: auto;
  width: auto;
}
/* Prevent float collapse */
br.float-break {
  clear: both;
}
.center-block {
  position: relative;
  width: 100%;
  text-align: center;
}
.anchor:target {
  display: block;
  position: absolute;
  height: 144px;
  left: 0;
  top: -144px;
  visibility: hidden;
  pointer-events: none;
  /* Small Devices, Tablets */
}
@media screen and (max-width: 768px) {
  .anchor:target {
    height: 54px;
    top: -54px;
  }
}
/* imports */
/* Fonts */
.font-graduate {
  font-family: 'Graduate', cursive;
}
.font-habibi {
  font-family: 'Habibi', serif;
}
.font-open-sans {
  font-family: 'Open Sans', sans-serif;
}
/* Colors */
/* General white (may need tweaking for contrast) */
/* Green */
/* Orange */
/* Dark green background color */
/* Dark orange background color */
/* Very light desaturated green */
/* Darkened desaturated green */
/* Links on light background in drop down navigation */
/* Seperator on light background */
/* Seperator on dark background */
/* drop shadow and dark border */
/* Gradient overlay */
.gradient-overlay-primary-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: -webkit-gradient(linear, left top, right top, from(#3cb64b), to(#e96524));
  background: linear-gradient(to right, #3cb64b, #e96524);
  opacity: 0.5;
}
/* Main Less File - Content */
/* Logo */
/* Text */
p,
li,
td,
div {
  /* 
    General settings of text in entire document until otherwise
    specified 
*/
  font-family: 'Open Sans', sans-serif;
  color: #232;
  font-size: 1em;
  line-height: 1.5em;
}
.center-text {
  text-align: center;
}
.bold-text {
  font-weight: bold;
}
.no-wrap-text {
  white-space: nowrap;
}
/* General settings for superscript */
/* general input styles */
input[type=text] {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 4px 5px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  margin: 0;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 0.8em;
  font-weight: 400;
  color: #296630;
}
/* imports */
/* Links */
a:link {
  color: #e96524;
  text-decoration: none;
}
a:visited {
  color: #c64f14;
}
a:hover,
a:active {
  color: #f0966a;
  text-decoration: underline;
}
/* Light green link in collapsable navigation */
.primary-link:link,
.primary-link:visited {
  color: #029663;
  text-decoration: none;
}
.primary-link:hover,
.primary-link:active {
  color: #e96524;
  text-decoration: underline;
}
/* White link on dark backgrounds */
.white-link:link,
.white-link:visited {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.white-link:hover,
.white-link:active {
  color: #fce7dd;
  text-decoration: underline;
}
/* Light orange colored link */
.light-link:link,
.light-link:visited {
  color: #f2a681;
  text-decoration: none;
}
.light-link:hover,
.light-link:active {
  color: #f7c7af;
  text-decoration: underline;
}
/* .btn-social */
/* Social media icons/buttons */
.btn-social {
  display: inline-block;
  width: 40px;
  height: 40px;
  /* Specific icon */
  /* Simple pop (scale) effect */
  /* Different styles of social icons */
  /* Switch colors to social network specific color for 
       hover effect */
}
.btn-social.icon-lg {
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
}
.btn-social.btn-google-plus {
  background-position: 0 0;
}
.btn-social.btn-facebook {
  background-position: -40px 0;
}
.btn-social.btn-youtube {
  background-position: -80px 0;
}
.btn-social.social-pop:hover,
.btn-social.social-pop:active {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.btn-social.social-pop.icon-lg:hover,
.btn-social.social-pop.icon-lg:active {
  -webkit-transform: scale(1.6);
      -ms-transform: scale(1.6);
          transform: scale(1.6);
}
.btn-social.social-light {
  background-image: url('../img/layout/social-icons-light.png');
  background-size: 120px 40px;
}
.btn-social.social-dark {
  background-image: url('../img/layout/social-icons-dark.png');
  background-size: 120px 40px;
}
.btn-social.social-light.social-colored {
  background-image: url('../img/layout/social-icons-light-colored.png');
  background-size: 120px 80px;
}
.btn-social.social-dark.social-colored {
  background-image: url('../img/layout/social-icons-dark-colored.png');
  background-size: 120px 80px;
}
.btn-social.social-colored.btn-google-plus:hover,
.btn-social.social-colored.btn-google-plus:active {
  background-position: 0 -40px;
}
.btn-social.social-colored.btn-facebook:hover,
.btn-social.social-colored.btn-facebook:active {
  background-position: -40px -40px;
}
.btn-social.social-colored.btn-youtube:hover,
.btn-social.social-colored.btn-youtube:active {
  background-position: -80px -40px;
}
/* .icon */
.icon {
  /* Change if icon png changes */
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  background-image: url('../img/layout/icons.png');
  background-size: 90px 60px;
  background-repeat: no-repeat;
  /* light icons */
  /* dark icons */
}
.icon.icon-light.icon-phone {
  background-position: 0 0;
}
.icon.icon-light.icon-mail {
  background-position: -30px 0;
}
.icon.icon-light.icon-location {
  background-position: -60px 0;
}
.icon.icon-dark.icon-phone {
  background-position: 0 -30px;
}
.icon.icon-dark.icon-mail {
  background-position: -30px -30px;
}
.icon.icon-dark.icon-location {
  background-position: -60px -30px;
}
.icon.icon-sm {
  /* Change if icon png changes */
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url('../img/layout/icons.png');
  background-size: 60px 40px;
  background-repeat: no-repeat;
  /* light icons */
  /* dark icons */
}
.icon.icon-sm.icon-light.icon-phone {
  background-position: 0 0;
}
.icon.icon-sm.icon-light.icon-mail {
  background-position: -20px 0;
}
.icon.icon-sm.icon-light.icon-location {
  background-position: -40px 0;
}
.icon.icon-sm.icon-dark.icon-phone {
  background-position: 0 -20px;
}
.icon.icon-sm.icon-dark.icon-mail {
  background-position: -20px -20px;
}
.icon.icon-sm.icon-dark.icon-location {
  background-position: -40px -20px;
}
.icon.icon-lg {
  /* Change if icon png changes */
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  background-image: url('../img/layout/icons.png');
  background-size: 150px 100px;
  background-repeat: no-repeat;
  /* light icons */
  /* dark icons */
}
.icon.icon-lg.icon-light.icon-phone {
  background-position: 0 0;
}
.icon.icon-lg.icon-light.icon-mail {
  background-position: -50px 0;
}
.icon.icon-lg.icon-light.icon-location {
  background-position: -100px 0;
}
.icon.icon-lg.icon-dark.icon-phone {
  background-position: 0 -50px;
}
.icon.icon-lg.icon-dark.icon-mail {
  background-position: -50px -50px;
}
.icon.icon-lg.icon-dark.icon-location {
  background-position: -100px -50px;
}
/* basic search bar */
/* Buttons */
/* Reset button styles */
.button-clear {
  display: inline-block;
  border: 0;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
}
@-webkit-keyframes button-hover {
  from {
    background-color: #3cb64b;
  }
  to {
    background-color: #e96524;
  }
}
@keyframes button-hover {
  from {
    background-color: #3cb64b;
  }
  to {
    background-color: #e96524;
  }
}
/* Basic button */
.basic-button {
  display: inline-block;
  border: 0;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
  padding: 8px 16px;
  border-radius: 2px;
  background-color: #3cb64b;
}
.basic-button:hover,
.basic-button:active {
  background-color: #e96524;
  -webkit-animation: button-hover 0.3s ease-in-out;
          animation: button-hover 0.3s ease-in-out;
}
/* Call-to-action buttons */
.call-to-action:link,
.call-to-action:visited {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 2px;
  background-color: #3cb64b;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.call-to-action:hover,
.call-to-action:active {
  background-color: #e96524;
  -webkit-animation: button-hover 0.3s ease-in-out;
          animation: button-hover 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .call-to-action:link,
  .call-to-action:visited,
  .call-to-action:hover,
  .call-to-action:active {
    padding: 10px 30px;
  }
}
@media screen and (max-width: 992px) {
  .call-to-action:link,
  .call-to-action:visited,
  .call-to-action:hover,
  .call-to-action:active {
    padding: 10px 60px;
  }
}
@media screen and (max-width: 768px) {
  .call-to-action:link,
  .call-to-action:visited,
  .call-to-action:hover,
  .call-to-action:active {
    display: block;
    width: 80%;
    max-width: 360px;
    padding: 15px 0;
    margin: 20px auto;
    font-weight: 600;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .call-to-action:link,
  .call-to-action:visited,
  .call-to-action:hover,
  .call-to-action:active {
    width: 100%;
    max-width: 500px;
    padding: 15px 0;
    margin: 30px auto 20px;
    background-color: #3cb64b;
    font-weight: 500;
    font-size: 1.2em;
  }
}
.btn-android-download:link,
.btn-android-download:visited {
  display: inline-block;
  width: 210px;
  height: 68px;
  margin: 50px auto 0;
  background-image: url('../img/layout/android-download-image.jpg');
  background-size: 200px 58px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  border-radius: 10px;
}
.btn-android-download:hover,
.btn-android-download:active {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
/* Main Less File - Header Section */
.header {
  position: relative;
  width: auto;
  width: 100%;
  height: auto;
  background-color: #1e5b25;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  /* Heading */
  /* Sub-text */
}
.header h1,
.header h2,
.header .hero-title {
  font-family: 'Graduate', cursive;
  padding: 200px 0 0;
  margin: 0;
  font-size: 3em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4em;
}
.header h1 {
  padding-top: 200px;
}
.header p,
.header .hero-message {
  font-family: 'Habibi', serif;
  padding: 20px 0;
  margin: 0 auto;
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1440px) {
  .header h1,
  .header h2,
  .header .hero-title {
    padding: 180px 0 0;
    font-size: 2em;
  }
  .header h1 {
    padding-top: 240px;
  }
  .header p,
  .header .hero-message {
    padding: 10px 0;
    font-size: 1.1em;
  }
}
@media screen and (max-width: 992px) {
  .header h1,
  .header h2,
  .header .hero-title {
    padding: 120px 0 0;
  }
  .header h1 {
    padding-top: 180px;
  }
}
@media screen and (max-width: 768px) {
  .header h1,
  .header h2,
  .header .hero-title,
  .header p {
    width: 80%;
    margin: 0 auto;
  }
  .header h1,
  .header h2,
  .header .hero-title {
    padding: 80px 0 0;
    font-size: 1.4em;
  }
  .header h1 {
    padding-top: 140px;
  }
  .header p,
  .header .hero-message {
    padding: 10px 0;
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .header h1,
  .header h2,
  .header .hero-title,
  .header p {
    width: 90%;
  }
  .header h1,
  .header h2,
  .header .hero-title {
    padding: 80px 0 0;
    font-size: 1.1em;
  }
  .header h1 {
    padding-top: 130px;
  }
  .header p,
  .header .hero-message {
    padding: 10px 0;
    font-size: 0.9em;
  }
}
/* imports */
/* header-bar */
/* Dimensions */
.header-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 52.8px;
  background-color: #fff;
  z-index: 20;
  /* Home button (logo) */
  /* Navigation */
  /* Search bar */
}
.header-bar.sticky-bar {
  position: fixed;
}
.header-bar .content-wrapper {
  height: 52.8px;
  background-color: #fff;
}
.header-bar .logo-header {
  background-position: 0 0;
  position: relative;
  width: 96px;
  height: 43.2px;
  background-image: url('../img/layout/logo.png');
  background-size: 96px 43.2px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  left: 10px;
}
@-webkit-keyframes nav-top-hover {
  from {
    background-color: transparent;
  }
  to {
    background-color: #e96524;
  }
}
@keyframes nav-top-hover {
  from {
    background-color: transparent;
  }
  to {
    background-color: #e96524;
  }
}
.header-bar .nav-top {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 250px;
}
.header-bar .nav-top li {
  display: inline-block;
  position: relative;
  height: auto;
  width: auto;
}
.header-bar .nav-top a:link,
.header-bar .nav-top a:visited {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 10px 16px;
  color: #029663;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
}
.header-bar .nav-top a:hover,
.header-bar .nav-top a:active {
  color: rgba(255, 255, 255, 0.9);
  background-color: #e96524;
  -webkit-animation: nav-top-hover 0.3s ease-in-out;
          animation: nav-top-hover 0.3s ease-in-out;
}
.header-bar .search-bar-header {
  /* Change if more icons added to png */
  width: 240px;
  height: 33.6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.header-bar .search-bar-header input[type=text] {
  width: 192.4px;
  height: 29.6px;
  padding: 0 33.6px 0 10px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  color: #296630;
  line-height: 29.6px;
  background-color: rgba(255, 255, 255, 0.9);
}
.header-bar .search-bar-header button {
  border: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
  padding: 8px 16px;
  border-radius: 2px;
  background-color: #3cb64b;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 33.6px;
  height: 33.6px;
  padding: 0;
  background-image: url('../img/layout/control-icons.png');
  background-position: 0 0;
  background-size: 134.4px 33.6px;
}
.header-bar .search-bar-header button:hover,
.header-bar .search-bar-header button:active {
  background-color: #e96524;
  -webkit-animation: button-hover 0.3s ease-in-out;
          animation: button-hover 0.3s ease-in-out;
}
.header-bar .btn-collapse-menu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
  right: 10px;
  width: auto;
  height: auto;
}
.header-bar .btn-collapse-menu .label,
.header-bar .btn-collapse-menu button {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.header-bar .btn-collapse-menu .label {
  font-family: 'Open Sans', sans-serif;
  margin-right: 10px;
  font-size: 1em;
  font-weight: 600;
  color: #296630;
}
.header-bar .btn-collapse-menu button {
  display: inline-block;
  border: 0;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
  width: 30px;
  height: 30px;
}
.header-bar .btn-collapse-menu .bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #296630;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-bar .btn-collapse-menu .bar:nth-child(1) {
  top: 3px;
}
.header-bar .btn-collapse-menu .bar:nth-child(2) {
  top: 13px;
}
.header-bar .btn-collapse-menu .bar:nth-child(3) {
  bottom: 3px;
}
.header-bar .collapse-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
.header-bar .collapse-menu .collapse-menu-content {
  display: none;
  position: relative;
  overflow: auto;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .header-bar {
    height: 44px;
    /* Navigation */
    /* Search bar */
  }
  .header-bar .content-wrapper {
    height: 44px;
  }
  .header-bar .logo-header {
    background-position: 0 0;
    position: relative;
    width: 80px;
    height: 36px;
    background-image: url('../img/layout/logo.png');
    background-size: 80px 36px;
    background-repeat: no-repeat;
  }
  .header-bar .nav-top {
    right: 210px;
  }
  .header-bar .nav-top a:link,
  .header-bar .nav-top a:visited {
    padding: 6px 12px;
    font-size: 0.8em;
    font-weight: 600;
  }
  .header-bar .search-bar-header {
    /* Change if more icons added to png */
    width: 200px;
    height: 28px;
  }
  .header-bar .search-bar-header input[type=text] {
    width: 158px;
    height: 24px;
    padding: 0 28px 0 10px;
    border: 2px solid rgba(0, 0, 0, 0.14);
    color: #296630;
    line-height: 24px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header-bar .search-bar-header button {
    border: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    background-image: url('../img/layout/control-icons.png');
    background-position: 0 0;
    background-size: 112px 28px;
  }
  .header-bar .search-bar-header button:hover,
  .header-bar .search-bar-header button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  .header-bar.sticky-bar {
    box-shadow: 0 1px 2px rgba(102, 102, 102, 0.6);
  }
  .header-bar.collapse-open {
    background-color: transparent;
  }
  .header-bar .nav-top {
    display: none;
  }
  .header-bar .search-bar-header {
    /* Change if more icons added to png */
    width: 280px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    left: 54%;
  }
  .header-bar .search-bar-header input[type=text] {
    width: 238px;
    height: 24px;
    padding: 0 28px 0 10px;
    border: 2px solid rgba(0, 0, 0, 0.14);
    color: #296630;
    line-height: 24px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header-bar .search-bar-header button {
    border: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    background-image: url('../img/layout/control-icons.png');
    background-position: 0 0;
    background-size: 112px 28px;
  }
  .header-bar .search-bar-header button:hover,
  .header-bar .search-bar-header button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
  .header-bar .btn-collapse-menu {
    display: block;
  }
  .header-bar .btn-collapse-menu.open .bar {
    background-color: #e96524;
  }
  .header-bar .btn-collapse-menu.open .bar:nth-child(1) {
    top: 43%;
    -webkit-transform: rotateZ(45deg);
        -ms-transform: rotate(45deg);
            transform: rotateZ(45deg);
  }
  .header-bar .btn-collapse-menu.open .bar:nth-child(2) {
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header-bar .btn-collapse-menu.open .bar:nth-child(3) {
    bottom: 43%;
    -webkit-transform: rotateZ(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotateZ(-45deg);
  }
  .header-bar .collapse-menu .collapse-menu-content {
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header-bar .collapse-menu .collapse-menu-content.open {
    display: block;
  }
  .header-bar .collapse-menu .site-nav {
    list-style-type: none;
    padding: 0;
    margin: 10px auto 0;
    text-align: center;
  }
  .header-bar .collapse-menu .site-nav li a:link,
  .header-bar .collapse-menu .site-nav li a:visited {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(41, 102, 48, 0.2);
    color: #029663;
    background-color: #eff5f0;
  }
  .header-bar .collapse-menu .site-nav li a:hover,
  .header-bar .collapse-menu .site-nav li a:active {
    text-decoration: none;
    background-color: #f8fbf9;
    color: #e96524;
  }
}
@media screen and (max-width: 480px) {
  .header-bar .logo-header {
    width: 40px;
    height: 40px;
    margin: 0;
    background-image: url('../img/layout/logo-icon.png');
    background-position: top left;
    background-size: 100% 100%;
    background-repeat: none;
  }
  .header-bar .search-bar-header {
    /* Change if more icons added to png */
    width: 240px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .header-bar .search-bar-header input[type=text] {
    width: 198px;
    height: 24px;
    padding: 0 28px 0 10px;
    border: 2px solid rgba(0, 0, 0, 0.14);
    color: #296630;
    line-height: 24px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header-bar .search-bar-header button {
    border: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    background-image: url('../img/layout/control-icons.png');
    background-position: 0 0;
    background-size: 112px 28px;
  }
  .header-bar .search-bar-header button:hover,
  .header-bar .search-bar-header button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
  .header-bar .btn-collapse-menu .label {
    display: none;
  }
}
/* hero-slider */
.hero-slider {
  position: relative;
  width: auto;
  width: 100%;
  height: 600px;
  /* Slide in slider */
  /*mixin for individual slides*/
  /* Slider images 
       Consider setting these with javascript to improve perf 
    */
  /* Active slide indicators */
}
.hero-slider .slide-container {
  position: relative;
  width: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slider .slide {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.hero-slider .slide.active {
  left: 0;
}
.hero-slider .slide.animated {
  z-index: 1;
}
.hero-slider .slide h2,
.hero-slider .slide p,
.hero-slider .slide a {
  z-index: 15;
}
@-webkit-keyframes cta-hover-off {
  from {
    background-color: #e96524;
    border-color: #e96524;
  }
  to {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.9);
  }
}
@keyframes cta-hover-off {
  from {
    background-color: #e96524;
    border-color: #e96524;
  }
  to {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.9);
  }
}
@-webkit-keyframes cta-hover-on {
  from {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.9);
  }
  to {
    background-color: #e96524;
    border-color: #e96524;
  }
}
@keyframes cta-hover-on {
  from {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.9);
  }
  to {
    background-color: #e96524;
    border-color: #e96524;
  }
}
.hero-slider .slide a:link,
.hero-slider .slide a:visited {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  margin: 30px 0 0;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  -webkit-animation: cta-hover-off 0.3s ease-in-out;
          animation: cta-hover-off 0.3s ease-in-out;
}
.hero-slider .slide a:hover,
.hero-slider .slide a:active {
  border-color: #e96524;
  background-color: #e96524;
  text-decoration: none;
  -webkit-animation: cta-hover-on 0.3s ease-in-out;
          animation: cta-hover-on 0.3s ease-in-out;
}
.hero-slider .slide h1.hidden,
.hero-slider .slide h2.hidden,
.hero-slider .slide a.hidden,
.hero-slider .slide p.hidden {
  visibility: hidden;
}
.hero-slider .slide .delay {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.hero-slider .slide .fast {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
.hero-slider .slide-1 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(60, 182, 75, 0.5)), to(rgba(233, 101, 36, 0.5))), url('../img/content/slides/slide-1.jpg?ver=1.1');
  background-image: linear-gradient(to right, rgba(60, 182, 75, 0.5), rgba(233, 101, 36, 0.5)), url('../img/content/slides/slide-1.jpg?ver=1.1');
}
.hero-slider .slide-2 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(60, 182, 75, 0.5)), to(rgba(233, 101, 36, 0.5))), url('../img/content/slides/slide-2.jpg?ver=1.1');
  background-image: linear-gradient(to right, rgba(60, 182, 75, 0.5), rgba(233, 101, 36, 0.5)), url('../img/content/slides/slide-2.jpg?ver=1.1');
}
.hero-slider .slide-3 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(60, 182, 75, 0.5)), to(rgba(233, 101, 36, 0.5))), url('../img/content/slides/slide-3.jpg?ver=1.1');
  background-image: linear-gradient(to right, rgba(60, 182, 75, 0.5), rgba(233, 101, 36, 0.5)), url('../img/content/slides/slide-3.jpg?ver=1.1');
}
.hero-slider .slide-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(60, 182, 75, 0.5)), to(rgba(233, 101, 36, 0.5))), url('../img/content/slides/slide-4.jpg?ver=1.1');
  background-image: linear-gradient(to right, rgba(60, 182, 75, 0.5), rgba(233, 101, 36, 0.5)), url('../img/content/slides/slide-4.jpg?ver=1.1');
}
.hero-slider .slide-5 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(60, 182, 75, 0.5)), to(rgba(233, 101, 36, 0.5))), url('../img/content/slides/slide-5.jpg?ver=1.1');
  background-image: linear-gradient(to right, rgba(60, 182, 75, 0.5), rgba(233, 101, 36, 0.5)), url('../img/content/slides/slide-5.jpg?ver=1.1');
}
.hero-slider .btn-prev,
.hero-slider .btn-next {
  display: inline-block;
  border: 0;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 48px;
  background-image: url('../img/layout/control-icons.png');
  background-size: 192px 48px;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 20;
}
.hero-slider .btn-prev:hover,
.hero-slider .btn-next:hover,
.hero-slider .btn-prev:active,
.hero-slider .btn-next:active {
  opacity: 1;
}
.hero-slider .btn-prev {
  left: 2%;
  background-position: -48px 0;
}
.hero-slider .btn-next {
  right: 2%;
  background-position: -72px 0;
}
.hero-slider .indicators {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 40px;
  width: auto;
  height: auto;
  z-index: 20;
}
.hero-slider .indicators button {
  display: inline-block;
  border: 0;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
  width: 14.4px;
  height: 14.4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  margin: 0 6px;
  opacity: 0.8;
}
.hero-slider .indicators button:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.9);
}
@-webkit-keyframes indicator-fill {
  0% {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    background-color: #ffffff;
  }
}
@keyframes indicator-fill {
  0% {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    background-color: #ffffff;
  }
}
.hero-slider .indicators button.active {
  -webkit-animation: indicator-fill 1.5s;
          animation: indicator-fill 1.5s;
}
.hero-slider .indicators button.active,
.hero-slider .indicators button.active:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1440px) {
  .hero-slider {
    height: 500px;
  }
  .hero-slider .indicators button {
    width: 12px;
    height: 12px;
  }
  .hero-slider .btn-prev,
  .hero-slider .btn-next {
    width: 20px;
    height: 40px;
    background-size: 160px 40px;
  }
  .hero-slider .btn-prev {
    background-position: -40px 0;
  }
  .hero-slider .btn-next {
    background-position: -60px 0;
  }
}
@media screen and (max-width: 992px) {
  .hero-slider {
    height: 400px;
  }
  .hero-slider .slide a:link,
  .hero-slider .slide a:visited,
  .hero-slider .slide a:hover,
  .hero-slider .slide a:active {
    margin: 10px 0 0;
    border-color: #e96524;
    background-color: #e96524;
    text-decoration: none;
  }
  .hero-slider .indicators {
    bottom: 20px;
  }
  .hero-slider .indicators button {
    width: 14.4px;
    height: 14.4px;
    border-width: 2px;
  }
}
@media screen and (max-width: 768px) {
  .hero-slider {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .hero-slider .slide a:link,
  .hero-slider .slide a:visited,
  .hero-slider .slide a:hover,
  .hero-slider .slide a:active {
    margin: 5px 0 0;
    padding: 5px 10px;
    font-size: 0.9em;
    -webkit-animation: none;
            animation: none;
  }
}
/* hero-static */
.hero-static {
  position: relative;
  width: auto;
  height: 400px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(60, 182, 75, 0.5)), to(rgba(233, 101, 36, 0.5))), url('../img/content/slides/slide-1.jpg?ver=1.1');
  background-image: linear-gradient(to right, rgba(60, 182, 75, 0.5), rgba(233, 101, 36, 0.5)), url('../img/content/slides/slide-1.jpg?ver=1.1');
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-static .hero-title {
  padding: 100px 0 0;
}
@media screen and (max-width: 1440px) {
  .hero-static {
    height: 300px;
  }
  .hero-static .hero-title {
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 992px) {
  .hero-static {
    height: 200px;
  }
  .hero-static .hero-title {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .hero-static {
    height: 150px;
  }
  .hero-static .hero-title {
    padding: 30px 0 0;
  }
}
/* Main Less File - Main Navigation Section */
.nav-main {
  position: relative;
  width: auto;
  width: 100%;
  height: 50px;
  background-color: #3cb64b;
  z-index: 2;
}
.nav-main.sticky-bar {
  position: fixed;
  top: 52.8px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1440px) {
  .nav-main.sticky-bar {
    top: 44px;
  }
}
@media screen and (max-width: 768px) {
  .nav-main {
    display: none;
    height: auto;
    box-shadow: none;
  }
  .nav-main.nav-home {
    display: block;
  }
  .nav-main.sticky-bar {
    position: relative;
    top: 0;
    box-shadow: none;
  }
}
/* main navigation items  */
.nav {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  text-align: center;
  /* Main navigation items */
  /* sub menu items and content shown on hover or click */
  /*  Offset positions of descendant li items so they are 
        all centered */
  /* Short summary shown at bottom of menu item links
       changes to match menu hovered */
}
.nav li {
  display: inline-block;
  position: relative;
  height: auto;
  width: auto;
}
.nav .nav-item {
  width: 180px;
  height: 50px;
  color: rgba(255, 255, 255, 0.9);
  background-color: #3cb64b;
}
@-webkit-keyframes nav-header-hover {
  from {
    background-color: #3cb64b;
  }
  to {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@keyframes nav-header-hover {
  from {
    background-color: #3cb64b;
  }
  to {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.nav .nav-item:hover,
.nav .nav-item.active {
  background-color: #fff;
  color: #296630;
  -webkit-animation: nav-header-hover 0.3s;
          animation: nav-header-hover 0.3s;
}
.nav .nav-header {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 50px;
}
.nav .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateX(-20%);
      -ms-transform: translateX(-20%);
          transform: translateX(-20%);
  width: 900px;
  height: auto;
  padding: 40px 0 20px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
}
@-webkit-keyframes nav-dropdown-enter {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nav-dropdown-enter {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav .nav-dropdown.active {
  display: block;
  -webkit-animation: nav-dropdown-enter 0.5s;
          animation: nav-dropdown-enter 0.5s;
}
.nav .nav-dropdown img {
  display: none;
  width: 100%;
  height: auto;
}
.nav .nav-dropdown img.active {
  display: block;
}
.nav li:nth-child(2) > .nav-dropdown {
  left: -180px;
}
.nav li:nth-child(3) > .nav-dropdown {
  left: -360px;
}
.nav li:nth-child(4) > .nav-dropdown {
  left: -540px;
}
.nav li:nth-child(5) > .nav-dropdown {
  left: -720px;
}
.nav .nav-image,
.nav .nav-details {
  position: relative;
  height: auto;
}
.nav .nav-image {
  float: left;
  width: 33%;
  margin-left: 2%;
  margin-right: 0;
}
.nav .nav-image.img-right {
  float: right;
  margin-right: 2%;
  margin-left: 0;
}
.nav .nav-image.img-right + .nav-details {
  float: left;
}
.nav .nav-details {
  float: right;
  width: 61%;
  margin: 0 2%;
}
.nav .nav-menu {
  list-style-type: none;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 0 10px;
}
.nav .nav-menu .nav-menu-item {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
.nav .nav-menu .nav-menu-item a {
  font-family: 'Habibi', serif;
  display: inline-block;
  width: 96%;
  padding: 8px 2%;
  font-size: 1.1em;
}
.nav .nav-menu .nav-menu-item a:link,
.nav .nav-menu .nav-menu-item a:visited {
  color: #029663;
  text-decoration: none;
}
.nav .nav-menu .nav-menu-item a:hover,
.nav .nav-menu .nav-menu-item a:active {
  color: #e96524;
  text-decoration: underline;
}
.nav .nav-menu .nav-menu-item a:hover,
.nav .nav-menu .nav-menu-item a:active {
  background-color: #e96524;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.nav .nav-summary {
  position: relative;
}
.nav .nav-summary p {
  display: none;
  margin: 0;
  padding: 0;
  font-size: 0.8em;
}
.nav .nav-summary p.active {
  display: block;
}
@media screen and (max-width: 1440px) {
  .nav .nav-item {
    width: 150px;
  }
  .nav .nav-dropdown {
    width: 750px;
  }
  .nav li:nth-child(2) > .nav-dropdown {
    left: -150px;
  }
  .nav li:nth-child(3) > .nav-dropdown {
    left: -300px;
  }
  .nav li:nth-child(4) > .nav-dropdown {
    left: -450px;
  }
  .nav li:nth-child(5) > .nav-dropdown {
    left: -600px;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    /* Main navigation items */
    /* sub menu items and content shown on hover or click */
    /*  Offset positions of descendant li items so they are 
            all centered */
    /* Short summary shown at bottom of menu item links
           changes to match menu hovered */
  }
  .nav .nav-item {
    display: block;
    width: 100%;
    height: auto;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(41, 102, 48, 0.2);
    border-bottom: 1px solid rgba(41, 102, 48, 0.2);
  }
  .nav .nav-item:hover,
  .nav .nav-item.active,
  .nav .nav-item.open {
    background-color: #5cc969;
    color: rgba(255, 255, 255, 0.9);
    -webkit-animation: none;
            animation: none;
  }
  .nav .nav-header {
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
  }
  .nav .nav-dropdown {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    height: auto;
    padding: 0;
    border-bottom: 1px solid rgba(41, 102, 48, 0.2);
    background-color: #eff5f0;
    box-shadow: none;
    text-align: center;
  }
  .nav .nav-dropdown.active {
    display: none;
    -webkit-animation: none;
            animation: none;
  }
  .nav .nav-dropdown.open {
    display: block;
    -webkit-animation: none;
            animation: none;
  }
  .nav li:nth-child(2) > .nav-dropdown {
    left: 0;
  }
  .nav li:nth-child(3) > .nav-dropdown {
    left: 0;
  }
  .nav li:nth-child(4) > .nav-dropdown {
    left: 0;
  }
  .nav li:nth-child(5) > .nav-dropdown {
    left: 0;
  }
  .nav .nav-image {
    display: none;
  }
  .nav .nav-image.img-right + .nav-details {
    float: none;
  }
  .nav .nav-details {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .nav .nav-summary {
    display: none;
  }
  .nav .nav-menu {
    margin: 0;
  }
  .nav .nav-menu .nav-menu-item {
    margin: 0;
    padding: 0;
    border: 1px solid rgba(41, 102, 48, 0.2);
  }
  .nav .nav-menu .nav-menu-item a {
    width: 100%;
    padding: 10px 0;
    font-size: 1em;
  }
  .nav .nav-summary {
    display: none;
  }
  .nav .float-break {
    display: none;
  }
}
/* imports */
/* Main Less File - View Section */
.view-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .view-overlay.active {
    display: block;
  }
}
.view {
  position: relative;
  width: auto;
  background-color: #eff5f0;
}
.parallax {
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}
.page-section {
  position: relative;
  width: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.page-title {
  font-family: 'Graduate', cursive;
  padding: 60px 0 20px;
  margin: 0;
  text-align: center;
  font-size: 1.8em;
  font-weight: 600;
  color: #296630;
}
.section-title {
  font-family: 'Graduate', cursive;
  padding: 10px 0 5px;
  margin: 0;
  font-size: 1.6em;
  font-weight: 400;
  letter-spacing: 2px;
}
.section-title.title-light {
  color: rgba(255, 255, 255, 0.9);
}
.section-title.title-dark {
  color: #296630;
}
.sub-section-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4em;
}
.sub-section-title.title-light {
  color: rgba(255, 255, 255, 0.9);
}
.sub-section-title.title-dark {
  color: #296630;
}
.content-title {
  font-family: 'Habibi', serif;
  font-size: 1.2em;
}
.content-title.title-light {
  color: rgba(255, 255, 255, 0.9);
}
.content-title.title-dark {
  color: #296630;
}
.blur-separator {
  display: none;
  position: relative;
  top: -50px;
  width: 100%;
  height: 50px;
  padding: 0;
  border: 0;
  margin: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#eff5f0));
  background: linear-gradient(transparent, #eff5f0);
}
/* Video */
.classrooms-video {
  position: relative;
  width: 100%;
  height: auto;
  margin: 10px auto;
  text-align: center;
  background-color: #000;
}
.classrooms-video iframe {
  width: 90%;
  height: 600px;
}
/* bordered box */
.box-frame {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  border: 2px solid rgba(102, 102, 102, 0.2);
  box-shadow: 0 2px 2px rgba(102, 102, 102, 0.1);
}
@media screen and (max-width: 1440px) {
  .page-title {
    font-size: 1.6em;
  }
  .section-title {
    font-size: 1.5em;
    font-weight: 400;
    letter-spacing: 2px;
  }
  .sub-section-title {
    font-size: 1.2em;
  }
  .content-title {
    font-size: 1.1em;
  }
  /* Video */
  .classrooms-video iframe {
    width: 85%;
    height: 500px;
  }
}
@media screen and (max-width: 992px) {
  .page-title {
    font-size: 1.4em;
  }
  .section-title {
    font-size: 1.4em;
  }
  /* Video */
  .classrooms-video iframe {
    width: 80%;
    height: 400;
  }
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 1.2em;
  }
  .section-title {
    width: 90%;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.8em;
  }
  .blur-separator {
    display: block;
  }
  /* Video */
  .classrooms-video iframe {
    width: 100%;
    height: 360px;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    width: 100%;
    font-size: 1.1em;
  }
  /* Video */
  .classrooms-video iframe {
    height: 300px;
  }
}
/* import  */
/* home content */
/* imports */
.about-us-home .col-a,
.about-us-home .col-b {
  top: 0;
}
.about-us-home .col-a {
  float: right;
  width: 40%;
}
.about-us-home .col-b {
  float: left;
  width: 60%;
}
.about-us-home .img-about {
  display: block;
  width: 80%;
  height: auto;
  border-radius: 50%;
  margin: 0 auto;
}
.about-us-home .who-we-are {
  padding: 0;
  margin: 0 0 20px;
}
.about-us-home p {
  margin: 5px 0;
  padding: 0;
  font-size: 1.2em;
}
.about-us-home .logo-content {
  display: inline-block;
  width: auto;
  height: 100px;
  margin: 5px 0;
}
@media screen and (max-width: 1440px) {
  .about-us-home .img-about {
    width: 80%;
    max-width: 640px;
  }
  .about-us-home p {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 992px) {
  .about-us-home .img-about {
    width: 100%;
  }
  .about-us-home p {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .about-us-home {
    text-align: center;
  }
  .about-us-home .col-a,
  .about-us-home .col-b {
    float: none;
    width: 100%;
  }
  .about-us-home .img-about {
    display: block;
    position: relative;
    width: 80%;
    margin: 0 auto;
  }
  .about-us-home p {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  .about-us-home .img-about {
    width: 90%;
  }
}
.courses-home {
  background-image: url("../img/layout/bg-parallax.jpg");
  background-color: #3b2812;
}
.courses-home .courses-row {
  position: relative;
  5width: 100%;
  height: auto;
  margin: 100px 0;
}
.courses-home .courses-image,
.courses-home .courses-details {
  position: relative;
  height: auto;
}
.courses-home .courses-image {
  width: 40%;
}
.courses-home .courses-image.img-left {
  float: left;
  margin-right: 2%;
}
.courses-home .courses-image.img-left + .courses-details {
  float: right;
}
.courses-home .courses-image.img-right {
  float: right;
  margin-left: 2%;
}
.courses-home .courses-image.img-right + .courses-details {
  float: left;
}
.courses-home .courses-image img {
  display: inline-block;
  width: 100%;
  height: auto;
}
.courses-home .courses-details {
  width: 58%;
}
.courses-home .courses-details .courses-title {
  font-family: 'Habibi', serif;
  margin: 0;
  padding: 0;
  font-size: 1.4em;
  font-weight: 400;
}
.courses-home .courses-details .courses-title.title-light {
  color: rgba(255, 255, 255, 0.9);
}
.courses-home .courses-details .courses-title.title-dark {
  color: #296630;
}
.courses-home .courses-details p {
  padding: 0;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
  line-height: 1.8em;
  letter-spacing: 1px;
}
.courses-home .courses-details .courses-link:link,
.courses-home .courses-details .courses-link:visited {
  color: #f2a681;
  text-decoration: none;
}
.courses-home .courses-details .courses-link:hover,
.courses-home .courses-details .courses-link:active {
  color: #f7c7af;
  text-decoration: underline;
}
@media screen and (max-width: 1440px) {
  .courses-home .courses-row {
    margin: 80px 0;
  }
  .courses-home .courses-image {
    width: 40%;
  }
  .courses-home .courses-details {
    width: 58%;
  }
  .courses-home .courses-details .courses-title {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 992px) {
  .courses-home .courses-details p {
    padding: 0 0 10px;
    margin: 0;
    line-height: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .courses-home .courses-row {
    width: 94%;
    max-width: 500px;
    margin: 60px auto;
  }
  .courses-home .courses-image {
    width: 100%;
  }
  .courses-home .courses-image.img-left,
  .courses-home .courses-image.img-right {
    float: none;
    margin: 0 auto 20px;
  }
  .courses-home .courses-image.img-left + .courses-details,
  .courses-home .courses-image.img-right + .courses-details {
    float: none;
  }
  .courses-home .courses-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .courses-home .courses-details {
    width: 100%;
  }
  .courses-home .courses-details .courses-title {
    font-size: 1.1em;
  }
  .courses-home .courses-details p {
    margin-bottom: 20px;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 480px) {
  .courses-home .courses-image {
    width: 100%;
  }
  .courses-home .courses-details {
    width: 100%;
    margin: 0 auto;
  }
  .courses-home .courses-details .courses-title {
    font-size: 1em;
  }
}
/* about-details and faq on home page */
.about-details {
  background-color: #eff5f0;
  /* Illustrations */
}
.about-details .sub-section-title {
  margin-top: 50px;
}
.about-details .e-learning-illustrations {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.about-details .e-learning-illustrations .illustration {
  display: inline-block;
  vertical-align: text-top;
  width: 18%;
  height: auto;
  margin: 0 3.5%;
}
.about-details .e-learning-illustrations .illustration-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.about-details .e-learning-illustrations .illustration-details {
  font-family: 'Open Sans', sans-serif;
  width: 90%;
  height: 60px;
  margin: 0 auto;
  padding: 0;
  color: #296630;
  font-size: 1.2em;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  .about-details {
    /* Illustrations */
  }
  .about-details .e-learning-illustrations .illustration {
    width: 20%;
    margin: 0 2.5%;
  }
  .about-details .e-learning-illustrations .illustration-details {
    width: 100%;
    font-size: 1em;
  }
}
@media screen and (max-width: 992px) {
  .about-details {
    /* Illustrations */
  }
  .about-details .e-learning-illustrations .illustration {
    width: 40%;
    margin: 0 5%;
  }
  .about-details .e-learning-illustrations .illustration-details {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .about-details {
    /* Illustrations */
  }
  .about-details .e-learning-illustrations .illustration {
    width: 44%;
    margin: 0 3%;
  }
}
@media screen and (max-width: 480px) {
  .about-details {
    /* Illustrations */
  }
  .about-details .e-learning-illustrations .illustration {
    width: 70%;
    margin: 20px 15% 0;
  }
  .about-details .e-learning-illustrations .illustration-image {
    margin-bottom: 0;
  }
}
/* FAQ on home page */
.faq-home {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding: 20px 0;
  border: 1px solid rgba(102, 102, 102, 0.3);
  margin: 100px auto 0;
  background-color: #fff;
  box-shadow: 0 0 1px rgba(102, 102, 102, 0.1);
}
.faq-home .section-title {
  padding: 0;
  margin: 0 auto 10px;
}
.faq-home .questions {
  position: relative;
  width: 100%;
  height: auto;
  margin: 20px 0;
}
.faq-home .question-box {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  width: 46%;
  padding: 2%;
  margin: 5px 0;
  color: #296630;
  vertical-align: text-top;
}
.faq-home .question-box .question {
  padding: 0;
  margin: 0 0 5px;
  font-size: 1.2em;
}
.faq-home .question-box .answer {
  padding: 0;
  margin: 0;
  font-size: 1em;
}
.faq-home .question-box .read-more {
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .faq-home {
    width: 100%;
  }
  .faq-home .question-box .question {
    font-size: 1em;
  }
  .faq-home .question-box .answer {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 992px) {
  .faq-home {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-home .question-box {
    display: block;
    width: 92%;
    margin: 10px auto;
  }
}
@media screen and (max-width: 768px) {
  .faq-home .question-box {
    margin: 10px auto;
  }
  .faq-home .question-box .read-more {
    font-size: 1.2em;
  }
  .faq-home .call-to-action {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .faq-home .question-box:last-child {
    display: none;
  }
}
/* 404 and under construction */
.error-page {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 0;
  background-image: url('../img/layout/bg-404.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #296630;
}
.error-page h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4em;
  font-weight: 500;
  margin: 50px 0 20px;
  color: #296630;
}
.error-page .img-under-construction {
  display: block;
  width: 300px;
  height: auto;
  margin: 50px auto 20px;
}
.error-page .error-message {
  font-family: 'Habibi', serif;
  margin: 20px 0 50px;
  color: #296630;
  font-size: 2em;
  font-weight: 400;
}
.error-page .error-link-home {
  font-family: 'Open Sans', sans-serif;
}
.error-page .error-link-home a:link,
.error-page .error-link-home a:visited {
  color: #029663;
  text-decoration: none;
}
.error-page .error-link-home a:hover,
.error-page .error-link-home a:active {
  color: #e96524;
  text-decoration: underline;
}
.error-page .error-or {
  font-size: 1.2em;
  font-weight: 400;
  margin: 20px 0 0;
}
.error-page .search-bar-error {
  /* Change if more icons added to png */
  width: 400px;
  height: 30px;
  position: relative;
  margin: 30px auto 50px;
}
.error-page .search-bar-error input[type=text] {
  width: 356px;
  height: 26px;
  padding: 0 30px 0 10px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  color: #296630;
  line-height: 26px;
  background-color: rgba(255, 255, 255, 0.9);
}
.error-page .search-bar-error button {
  border: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
  padding: 8px 16px;
  border-radius: 2px;
  background-color: #3cb64b;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  background-image: url('../img/layout/control-icons.png');
  background-position: 0 0;
  background-size: 120px 30px;
}
.error-page .search-bar-error button:hover,
.error-page .search-bar-error button:active {
  background-color: #e96524;
  -webkit-animation: button-hover 0.3s ease-in-out;
          animation: button-hover 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .error-page .img-under-construction {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .error-page h1 {
    font-size: 3em;
    margin: 20px auto;
  }
  .error-page .img-under-construction {
    width: 150px;
    margin: 10px auto 20px;
  }
  .error-page .error-message {
    font-size: 1.5em;
  }
  .error-page .search-bar-error {
    /* Change if more icons added to png */
    width: 360px;
    height: 30px;
  }
  .error-page .search-bar-error input[type=text] {
    width: 316px;
    height: 26px;
    padding: 0 30px 0 10px;
    border: 2px solid rgba(0, 0, 0, 0.14);
    color: #296630;
    line-height: 26px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .error-page .search-bar-error button {
    border: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    background-image: url('../img/layout/control-icons.png');
    background-position: 0 0;
    background-size: 120px 30px;
  }
  .error-page .search-bar-error button:hover,
  .error-page .search-bar-error button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
}
@media screen and (max-width: 480px) {
  .error-page h1 {
    font-size: 2.4em;
    margin: 0 auto 20px;
  }
  .error-page .img-under-construction {
    width: 100px;
    margin: 10px auto;
  }
  .error-page .error-message {
    font-size: 1.2em;
  }
  .error-page .search-bar-error {
    /* Change if more icons added to png */
    width: 300px;
    height: 30px;
  }
  .error-page .search-bar-error input[type=text] {
    width: 256px;
    height: 26px;
    padding: 0 30px 0 10px;
    border: 2px solid rgba(0, 0, 0, 0.14);
    color: #296630;
    line-height: 26px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .error-page .search-bar-error button {
    border: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    background-image: url('../img/layout/control-icons.png');
    background-position: 0 0;
    background-size: 120px 30px;
  }
  .error-page .search-bar-error button:hover,
  .error-page .search-bar-error button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
}
/* pages Main less file */
.page {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
}
/* first text on page */
.page-intro {
  font-family: 'Open Sans', sans-serif;
  padding: 0;
  margin: 10px 0 30px;
  font-size: 1.2em;
  font-weight: 400;
  color: #296630;
}
/* Short message at bottom of page */
.page-message {
  font-family: 'Open Sans', sans-serif;
  width: 90%;
  height: auto;
  padding: 30px 0 0;
  margin: 0 auto;
}
.page-message p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 1.2em;
  color: #296630;
}
@media screen and (max-width: 992px) {
  .page-intro {
    font-size: 1em;
  }
  .page-message p {
    font-size: 1.1em;
  }
}
/* imports */
/* about us page */
.about-us-page {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  /* page section with white background */
  /* Content row containing image and text for each page section */
}
.about-us-page .page-section.bg-white {
  background-color: #fff;
}
.about-us-page .who-we-are .col-a,
.about-us-page .who-we-are .col-b {
  top: 0;
}
.about-us-page .who-we-are .col-a {
  float: right;
  width: 40%;
}
.about-us-page .who-we-are .col-b {
  float: left;
  width: 60%;
}
.about-us-page .who-we-are .img-about-us {
  display: block;
  width: 80%;
  height: auto;
  border-radius: 50%;
  margin: 0 auto;
}
.about-us-page .who-we-are .who-details {
  padding: 0;
  margin: 0 0 20px;
}
.about-us-page .who-we-are p {
  margin: 5px 0;
  padding: 0;
  font-size: 1.2em;
  font-weight: 300;
}
.about-us-page .who-we-are p:last-child {
  margin-bottom: 0;
}
.about-us-page .who-we-are .logo-content {
  display: inline-block;
  width: auto;
  height: 150px;
  margin: 15px 0;
}
.about-us-page .about-row {
  position: relative;
  width: 100%;
  height: auto;
}
.about-us-page .about-row .about-page-img,
.about-us-page .about-row .about-page-details {
  display: inline-block;
  position: relative;
  height: auto;
  vertical-align: text-top;
}
.about-us-page .about-row .about-page-img {
  width: 40%;
}
.about-us-page .about-row .about-page-img.img-right {
  float: right;
  margin-left: 2%;
}
.about-us-page .about-row .about-page-img.img-left {
  float: left;
  margin-right: 2%;
}
.about-us-page .about-row .about-page-img img {
  display: block;
  width: 100%;
  height: auto;
}
.about-us-page .about-row .about-page-details {
  width: 58%;
}
.about-us-page .about-row .about-page-details .section-title {
  margin: 0 0 10px;
  padding: 0;
}
.about-us-page .about-row .about-page-details p {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5em;
  font-size: 1.2em;
  font-weight: 300;
}
@media screen and (max-width: 1440px) {
  .about-us-page .who-we-are .logo-content {
    height: 100px;
    margin: 10px 0;
  }
  .about-us-page .who-we-are .img-about-us {
    width: 80%;
  }
}
@media screen and (max-width: 992px) {
  .about-us-page .who-we-are p {
    font-size: 1em;
  }
  .about-us-page .who-we-are .img-about-us {
    width: 60%;
    min-width: 300px;
  }
  .about-us-page .about-row .about-page-details p {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .about-us-page .who-we-are {
    width: 90%;
    margin: 0 auto 20px;
    text-align: center;
  }
  .about-us-page .who-we-are .col-a,
  .about-us-page .who-we-are .col-b {
    width: 100%;
    float: none;
  }
  .about-us-page .who-we-are .img-about-us {
    display: block;
    position: relative;
    bottom: 0;
    width: 80%;
    margin: 0 auto;
  }
  .about-us-page .about-row {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-us-page .about-row .about-page-img,
  .about-us-page .about-row .about-page-details {
    display: block;
  }
  .about-us-page .about-row .about-page-img {
    width: 100%;
    max-width: 500px;
  }
  .about-us-page .about-row .about-page-img.img-right,
  .about-us-page .about-row .about-page-img.img-left {
    float: none;
    margin: 20px auto;
  }
  .about-us-page .about-row .about-page-details {
    width: 100%;
    font-size: 1em;
  }
  .about-us-page .about-row .about-page-details h2,
  .about-us-page .about-row .about-page-details p {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .about-us-page .who-we-are .img-about {
    width: 90%;
  }
  .about-us-page .about-row {
    width: 100%;
  }
}
/* contact us page */
.contact-us-page {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  /* Contact Information  */
  /* Location map */
  /* Social media buttons */
}
.contact-us-page .contact-us-row {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 0 20px;
  margin: 50px auto 0;
}
.contact-us-page .contact-info,
.contact-us-page .location-map {
  display: inline-block;
  position: relative;
  height: auto;
  width: 50%;
  vertical-align: text-top;
}
.contact-us-page .contact-info ul {
  list-style-type: none;
  padding: 0;
}
.contact-us-page .contact-info p {
  font-family: 'Open Sans', sans-serif;
  color: #296630;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.contact-us-page .contact-info span {
  display: inline-block;
  vertical-align: middle;
}
.contact-us-page .contact-info .icon {
  margin: 0 10px;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.contact-us-page .location-map .map {
  width: 100%;
  height: 500px;
  background-image: url('../img/content/map-placeholder.jpg');
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.contact-us-page .social-media {
  position: relative;
  padding: 20px 0 0;
  text-align: center;
}
.contact-us-page .social-media h2 {
  font-family: 'Open Sans', sans-serif;
  margin: 20px 0;
  padding: 0;
  font-size: 1.2em;
  font-weight: 400;
  color: #296630;
}
.contact-us-page .social-media .btn-social {
  margin: 0 10px;
}
@media screen and (max-width: 1440px) {
  .contact-us-page .contact-info p {
    font-size: 1em;
  }
  .contact-us-page .contact-info .icon {
    tranform: scale(1);
  }
  .contact-us-page .location-map .map {
    height: 400px;
  }
}
@media screen and (max-width: 992px) {
  .contact-us-page .location-map .map {
    height: 360px;
  }
}
@media screen and (max-width: 768px) {
  .contact-us-page .contact-us-row {
    width: 100%;
    max-width: 540px;
  }
  .contact-us-page .contact-info,
  .contact-us-page .location-map {
    display: block;
    width: 100%;
    text-align: center;
  }
  .contact-us-page .contact-info {
    margin-bottom: 50px;
  }
  .contact-us-page .contact-info .icon {
    display: block;
    margin: 0 auto;
  }
  .contact-us-page .location-map .map {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .contact-us-page .location-map .map {
    height: 360px;
  }
}
/* faq page */
.faq-page {
  /* values necessary for correct display of icon 
    using image sprite */
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  /* Search bar on faq page */
  /* ask a question form  */
}
.faq-page .search-bar-faq {
  /* Change if more icons added to png */
  width: 500px;
  height: 40px;
  display: block;
  position: relative;
  margin: 40px auto;
}
.faq-page .search-bar-faq input[type=text] {
  width: 446px;
  height: 36px;
  padding: 0 40px 0 10px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  color: #296630;
  line-height: 36px;
  background-color: rgba(255, 255, 255, 0.9);
}
.faq-page .search-bar-faq button {
  border: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
  padding: 8px 16px;
  border-radius: 2px;
  background-color: #3cb64b;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  background-image: url('../img/layout/control-icons.png');
  background-position: 0 0;
  background-size: 160px 40px;
}
.faq-page .search-bar-faq button:hover,
.faq-page .search-bar-faq button:active {
  background-color: #e96524;
  -webkit-animation: button-hover 0.3s ease-in-out;
          animation: button-hover 0.3s ease-in-out;
}
.faq-page .search-results-header {
  font-family: 'Open Sans', sans-serif;
  margin: 0 0 40px;
  text-align: center;
  font-weight: 500;
  font-size: 1.2em;
}
.faq-page .search-results-header .search-term {
  color: #296630;
  font-style: italic;
}
.faq-page .search-results-header.hidden {
  display: none;
}
.faq-page .questions {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}
.faq-page .questions .question-box {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  padding-bottom: 20px;
  padding: 10px 10px;
  border: 1px solid rgba(102, 102, 102, 0.3);
  margin: 8px auto 0;
  background-color: #fff;
  font-size: 1em;
  /* up/down caret icon to show open/close state of dropdown */
  /* dropdown content */
}
.faq-page .questions .question-box .question-header {
  position: relative;
  height: auto;
  padding: 5px 20px 5px 0;
  cursor: pointer;
}
.faq-page .questions .question-box h3,
.faq-page .questions .question-box .icon {
  vertical-align: middle;
}
.faq-page .questions .question-box h3 {
  display: inline-block;
  position: relative;
  width: auto;
  margin: 0 0 0 20px;
  padding: 0;
  font-size: 1.2em;
  font-weight: 500;
  color: #296630;
}
.faq-page .questions .question-box h3:before {
  content: 'Q.';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
}
.faq-page .questions .question-box .drop-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url('../img/layout/control-icons.png');
  background-size: 80px 20px;
  background-repeat: no-repeat;
  background-position: -40px 0;
}
.faq-page .questions .question-box p {
  display: none;
  margin: 0;
  padding: 5px 0;
}
.faq-page .questions .question-box.open .drop-icon {
  background-position: -60px 0;
}
.faq-page .questions .question-box.open p {
  display: block;
}
.faq-page .questions .question-box.hidden {
  display: none;
}
.faq-page .user-question {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
}
.faq-page .user-question h2 {
  font-family: 'Open Sans', sans-serif;
  margin: 20px 0;
  padding: 0;
  font-size: 1.2em;
  font-weight: 500;
  color: #296630;
}
.faq-page .user-question form,
.faq-page .user-question .question-input,
.faq-page .user-question .email-send {
  position: relative;
  width: 100%;
  height: auto;
  margin: 10px auto;
}
.faq-page .user-question input {
  font-size: 1.1em;
  padding: 5px 10px;
  width: 100%;
}
.faq-page .user-question .email-send label,
.faq-page .user-question .email-send .input-cont,
.faq-page .user-question .email-send button {
  display: inline-block;
  vertical-align: middle;
  margin: 5px 10px;
}
.faq-page .user-question .email-send label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1em;
}
.faq-page .user-question .email-send .input-cont {
  width: 300px;
}
.faq-page .user-question .email-send .input-cont input {
  width: 100%;
}
.faq-page .user-question .email-send button {
  display: inline-block;
  border: 0;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  background: none;
  padding: 8px 16px;
  border-radius: 2px;
  background-color: #3cb64b;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1em;
  margin: 0 30px;
}
.faq-page .user-question .email-send button:hover,
.faq-page .user-question .email-send button:active {
  background-color: #e96524;
  -webkit-animation: button-hover 0.3s ease-in-out;
          animation: button-hover 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .faq-page {
    /* Search bar on faq page */
    /* ask a question form  */
  }
  .faq-page .search-bar-faq {
    /* Change if more icons added to png */
    width: 420px;
    height: 32px;
  }
  .faq-page .search-bar-faq input[type=text] {
    width: 374px;
    height: 28px;
    padding: 0 32px 0 10px;
    border: 2px solid rgba(0, 0, 0, 0.14);
    color: #296630;
    line-height: 28px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .faq-page .search-bar-faq button {
    border: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    background-image: url('../img/layout/control-icons.png');
    background-position: 0 0;
    background-size: 128px 32px;
  }
  .faq-page .search-bar-faq button:hover,
  .faq-page .search-bar-faq button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
  .faq-page .search-results-header {
    font-size: 1.1em;
  }
  .faq-page .questions .question-box {
    font-size: 0.9em;
  }
  .faq-page .questions .question-box h3 {
    font-size: 1.1em;
    font-weight: 600;
  }
  .faq-page .user-question h2 {
    font-size: 1.2em;
  }
  .faq-page .user-question .question-input input {
    padding: 5px 2%;
    width: 94%;
  }
  .faq-page .user-question .email-send button {
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .faq-page {
    /* ask a question form  */
  }
  .faq-page .search-bar-faq {
    /* Change if more icons added to png */
    width: 360px;
    height: 32px;
  }
  .faq-page .search-bar-faq input[type=text] {
    width: 314px;
    height: 28px;
    padding: 0 32px 0 10px;
    border: 2px solid rgba(0, 0, 0, 0.14);
    color: #296630;
    line-height: 28px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .faq-page .search-bar-faq button {
    border: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    background-image: url('../img/layout/control-icons.png');
    background-position: 0 0;
    background-size: 128px 32px;
  }
  .faq-page .search-bar-faq button:hover,
  .faq-page .search-bar-faq button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
  .faq-page .questions .question-box {
    font-size: 0.9em;
  }
  .faq-page .questions .question-box h3 {
    font-size: 1em;
    font-weight: 600;
  }
  .faq-page .user-question {
    text-align: center;
  }
  .faq-page .user-question h2 {
    font-size: 1.1em;
  }
  .faq-page .user-question .email-send label,
  .faq-page .user-question .email-send .input-cont,
  .faq-page .user-question .email-send button {
    display: block;
    margin: 5px 0;
    font-size: 0.9em;
  }
  .faq-page .user-question .email-send label {
    padding: 0 10px;
    float: left;
  }
  .faq-page .user-question .email-send .input-cont {
    width: auto;
    overflow: hidden;
  }
  .faq-page .user-question .email-send .input-cont input {
    width: 94%;
    padding: 4px 2%;
    margin: 0;
  }
  .faq-page .user-question .email-send button {
    display: inline-block;
    border: 0;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    padding: 12px 60px;
    margin: 10px 0;
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: 0.1em;
  }
  .faq-page .user-question .email-send button:hover,
  .faq-page .user-question .email-send button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
}
@media screen and (max-width: 480px) {
  .faq-page .search-bar-faq {
    /* Change if more icons added to png */
    width: 320px;
    height: 32px;
  }
  .faq-page .search-bar-faq input[type=text] {
    width: 274px;
    height: 28px;
    padding: 0 32px 0 10px;
    border: 2px solid rgba(0, 0, 0, 0.14);
    color: #296630;
    line-height: 28px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .faq-page .search-bar-faq button {
    border: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    background: none;
    padding: 8px 16px;
    border-radius: 2px;
    background-color: #3cb64b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    background-image: url('../img/layout/control-icons.png');
    background-position: 0 0;
    background-size: 128px 32px;
  }
  .faq-page .search-bar-faq button:hover,
  .faq-page .search-bar-faq button:active {
    background-color: #e96524;
    -webkit-animation: button-hover 0.3s ease-in-out;
            animation: button-hover 0.3s ease-in-out;
  }
  .faq-page .user-question .email-send button {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1em;
    font-weight: 500;
  }
}
/* courses pages (secondary level education, tertiary level education, other programs) */
.courses-page {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  font-family: 'Open Sans', sans-serif;
  /* header image on page */
  /* Section detailing course options */
  /* Lists of different courses */
}
.courses-page .content-wrapper {
  width: 60%;
}
.courses-page ul li {
  margin: 5px 0;
}
.courses-page .page-image {
  position: relative;
  width: 100%;
  height: auto;
  margin: 50px 0 20px;
}
.courses-page .page-image img {
  display: block;
  width: 100%;
  height: auto;
}
.courses-page .course-option {
  position: relative;
  width: 100%;
  height: auto;
  margin: 60px 0;
}
.courses-page .course-option h2,
.courses-page .course-option p {
  padding: 0;
  margin: 0 0  10px;
}
.courses-page .course-option h2 {
  font-family: 'Habibi', serif;
  font-size: 1.4em;
  font-weight: 600;
  color: #296630;
}
.courses-page .course-option h3 {
  font-size: 1.1em;
  font-weight: 600;
}
.courses-page .course-option h4 {
  padding: 0;
  margin: 10px 0 5px;
  font-size: 1.1em;
  font-weight: 500;
}
.courses-page .course-option p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  color: #333;
}
.courses-page .course-option .course-list-link {
  font-family: 'Habibi', serif;
  display: inline-block;
}
.courses-page .course-list {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  width: 100%;
  height: auto;
  margin: 30px 0 0;
}
.courses-page .course-list h2,
.courses-page .course-list h3 {
  padding: 0;
  margin: 0 0 10px;
  color: #296630;
}
.courses-page .course-list h2 {
  position: relative;
  font-size: 1.4em;
  font-weight: 600;
}
.courses-page .course-list h2:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #296630;
}
.courses-page .course-list h3 {
  margin: 20px 0 0;
  font-size: 1.1em;
  font-weight: 500;
  font-style: italic;
}
.courses-page .course-list ul {
  list-style-type: none;
  padding-left: 15px;
  margin: 0;
}
.courses-page .course-list li {
  margin: 5px 0;
  font-size: 1em;
  font-weight: 400;
  color: #333;
}
.courses-page .course-list p {
  padding: 0;
  margin: 0;
  color: #296630;
}
.courses-page .associate-courses-table,
.courses-page .gpa-table {
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.courses-page .associate-courses-table tr,
.courses-page .gpa-table tr {
  width: 100%;
}
.courses-page .associate-courses-table td,
.courses-page .gpa-table td,
.courses-page .associate-courses-table th,
.courses-page .gpa-table th {
  width: 30%;
  padding: 10px;
  border: 2px solid rgba(102, 102, 102, 0.6);
  margin: 0;
  vertical-align: top;
}
.courses-page .associate-courses-table th,
.courses-page .gpa-table th {
  background-color: rgba(60, 182, 75, 0.4);
}
.courses-page .associate-courses-table em,
.courses-page .gpa-table em {
  font-style: normal;
}
.courses-page .gpa-table {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.courses-page .gpa-table th {
  width: 50%;
}
.courses-page .mobile-table {
  display: none;
}
.courses-page .accreditation-section {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  width: 100%;
  margin: 10px 0 30px;
}
.courses-page .accreditation-section h2 {
  padding: 5px 10px;
  background-color: #ddd;
  border-radius: 2px 2px 10px 10px;
  box-shadow: 0 2px 2px rgba(102, 102, 102, 0.1);
  font-size: 0.8em;
  color: #296630;
  font-weight: 600;
}
.courses-page .accreditation-section p {
  font-size: 0.8em;
}
@media screen and (max-width: 1440px) {
  .courses-page .content-wrapper {
    width: 80%;
  }
  .courses-page .course-option h2 {
    font-size: 1.2em;
  }
  .courses-page .course-option p {
    font-size: 1em;
  }
  .courses-page .course-list h2 {
    font-size: 1.2em;
  }
  .courses-page .course-list li {
    font-size: 1em;
  }
}
@media screen and (max-width: 992px) {
  .courses-page .content-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .courses-page .content-wrapper {
    width: 96%;
  }
  .courses-page .desktop-table {
    display: none;
  }
  .courses-page .mobile-table {
    display: block;
  }
  .courses-page .course-list h2 {
    font-size: 1.1em;
  }
  .courses-page .course-list li {
    font-size: 0.9em;
  }
}
/* admissions pages (tuition, classrooms, apply) */
.admissions-page {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  /* Classrooms page */
}
.admissions-page .content-wrapper {
  max-width: 1200px;
}
.admissions-page .classrooms-video {
  margin: 30px 0 40px;
}
.admissions-page .classrooms-detail {
  font-family: 'Open Sans', sans-serif;
  margin: 0 0 30px;
  font-size: 1.1em;
}
.admissions-page .classrooms-images {
  display: none;
  position: relative;
  width: 100%;
  padding: 20px 0;
  margin: 40px 0;
  background-color: #050e06;
}
.admissions-page .classrooms-images img {
  display: inline-block;
  width: 49%;
  height: auto;
  margin: 10px 0;
}
.admissions-page .classrooms-images img:nth-child(1) {
  width: 100%;
}
.admissions-page .classrooms-images img:nth-child(2) {
  margin-right: 2%;
}
.admissions-page .classrooms-e-learning {
  position: relative;
  width: 100%;
  margin: 80px 0;
  font-size: 1.2em;
}
.admissions-page .classrooms-e-learning img {
  display: inline-block;
  width: 40%;
  height: auto;
  float: left;
  margin-right: 20px;
}
@media screen and (max-width: 1440px) {
  .admissions-page .classrooms-detail {
    font-size: 1em;
  }
  .admissions-page .classrooms-e-learning {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .admissions-page .classrooms-e-learning img {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    float: none;
  }
}
/* e-learning pages (about e-learning) */
.e-learning-page {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  /* E-Learning Page */
}
.e-learning-page .content-wrapper {
  max-width: 1200px;
}
.e-learning-page .e-learning-illustrations {
  position: relative;
  width: 100%;
  margin: 50px 0 20px;
}
.e-learning-page .e-learning-illustrations .illustration {
  width: 80%;
  margin: 20px auto;
}
.e-learning-page .e-learning-illustrations img {
  display: inline-block;
  width: 40%;
  height: auto;
}
.e-learning-page .e-learning-illustrations img.img-left {
  float: left;
  margin-right: 2%;
}
.e-learning-page .e-learning-illustrations img.img-right {
  float: right;
  margin-left: 2%;
}
.e-learning-page .e-learning-illustrations .illustration-details h2 {
  font-family: 'Open Sans', sans-serif;
  padding: 40px 0 0;
  margin: 0;
  font-size: 1.4em;
  color: #296630;
}
.e-learning-page .e-learning-illustrations .illustration-details p {
  font-size: 1.2em;
}
.e-learning-page .cta-links {
  position: relative;
  width: 100%;
  margin: 20px 0;
  text-align: center;
}
.e-learning-page .cta-links .box-frame {
  width: 40%;
  margin: 0 1%;
}
@media screen and (max-width: 1440px) {
  .e-learning-page .e-learning-illustrations .illustration {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .e-learning-page .e-learning-illustrations .illustration-details h2 {
    font-size: 1.2em;
  }
  .e-learning-page .e-learning-illustrations .illustration-details p {
    font-size: 1em;
  }
  .e-learning-page .cta-links .box-frame {
    width: 44%;
    margin: 0 2.5%;
  }
}
@media screen and (max-width: 768px) {
  .e-learning-page .e-learning-illustrations img {
    display: block;
    width: 80%;
    max-width: 300px;
  }
  .e-learning-page .e-learning-illustrations img.img-left,
  .e-learning-page .e-learning-illustrations img.img-right {
    margin: 0 auto;
    float: none;
  }
  .e-learning-page .e-learning-illustrations .illustration-details {
    text-align: center;
  }
  .e-learning-page .e-learning-illustrations .illustration-details h2 {
    padding-top: 20px;
  }
  .e-learning-page .cta-links .box-frame {
    width: 80%;
    margin: 10px auto;
  }
}
@media screen and (max-width: 480px) {
  .e-learning-page .cta-links .box-frame {
    width: 100%;
    margin: 10px 0;
    border: 0;
  }
}
/* calendar pages (upcoming events, timeline) */
.calendar-page {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  /* Upcoming Events */
  /* Timeline of Events */
}
.calendar-page .content-wrapper {
  max-width: 1200px;
}
.calendar-page .upcoming-events {
  position: relative;
  width: 90%;
  margin: 50px auto;
}
.calendar-page .no-events {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4em;
}
.calendar-page .no-event-message {
  font-size: 1.1em;
  font-weight: 500;
  color: #296630;
}
.calendar-page .link-timeline {
  margin: 40px 0 30px;
}
.calendar-page .link-timeline a {
  font-size: 1.1em;
}
.calendar-page .link-home {
  margin: 40px 0;
  font-weight: 500;
}
.calendar-page .link-home a:link,
.calendar-page .link-home a:visited {
  color: #029663;
  text-decoration: none;
}
.calendar-page .link-home a:hover,
.calendar-page .link-home a:active {
  color: #e96524;
  text-decoration: underline;
}
.calendar-page .event {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  width: 100%;
  margin: 80px 0;
}
.calendar-page .event .event-image,
.calendar-page .event .event-details {
  display: inline-block;
  height: auto;
  vertical-align: text-top;
}
.calendar-page .event .event-image {
  width: 40%;
  margin-right: 2%;
}
.calendar-page .event .event-details {
  width: 58%;
}
.calendar-page .event .event-details p {
  font-size: 1.2em;
}
.calendar-page .event .event-details h2 {
  font-family: 'Habibi', serif;
  padding: 0;
  margin: 0;
  font-size: 1.4em;
  color: #296630;
}
.calendar-page .event .event-details .event-date {
  font-family: 'Habibi', serif;
  padding: 10px 0 5px;
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
  color: #296630;
  font-style: italic;
}
.calendar-page .timeline {
  position: relative;
  width: 100%;
  height: auto;
  padding: 100px 0;
  margin: 50px auto;
}
.calendar-page .timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #3cb64b;
}
.calendar-page .timeline:after {
  content: '2018';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: auto;
  height: auto;
  padding: 10px 20px 20px;
  background-color: #3cb64b;
  border-radius: 5px 5px 50% 50%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2em;
  font-weight: 500;
}
.calendar-page .timeline .timeline-row {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: auto;
  padding: 0;
  margin: -40px auto;
}
.calendar-page .timeline .timeline-row:nth-child(even) .event-link {
  float: right;
}
.calendar-page .timeline .timeline-row:nth-child(even) .item-bar {
  left: auto;
  right: 0;
}
.calendar-page .timeline .item-bar {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: auto;
  width: 50%;
  height: 6px;
  background-color: #3cb64b;
}
.calendar-page .timeline .event-link {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: #3cb64b;
  box-shadow: 0 2px 4px rgba(102, 102, 102, 0.2);
  text-align: center;
}
.calendar-page .timeline .event-link:hover,
.calendar-page .timeline .event-link:active {
  text-decoration: none;
  background-color: #e96524;
}
.calendar-page .timeline .event-details {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 80%;
  height: auto;
  margin: 0 auto;
}
.calendar-page .timeline .event-title,
.calendar-page .timeline .event-date {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  padding: 10px 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.calendar-page .timeline .event-title {
  font-size: 1.2em;
  font-weight: 500;
}
.calendar-page .timeline .event-title:after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  width: 60%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
}
.calendar-page .timeline .event-date {
  font-family: 'Habibi', serif;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (max-width: 1440px) {
  .calendar-page .timeline .event-link {
    width: 200px;
    height: 200px;
  }
  .calendar-page .timeline .event-details .event-title {
    font-size: 1em;
  }
  .calendar-page .timeline .event-details .event-date {
    font-size: 1.2em;
  }
  .calendar-page .no-events {
    font-size: 1.2em;
  }
  .calendar-page .event .event-details p {
    font-size: 1em;
  }
  .calendar-page .event .event-details h2 {
    font-size: 1.2em;
  }
  .calendar-page .event .event-details .event-date {
    font-size: 1em;
  }
}
@media screen and (max-width: 992px) {
  .calendar-page .event .event-details p {
    font-size: 1em;
  }
  .calendar-page .event .event-details h2 {
    font-size: 1.1em;
  }
  .calendar-page .event .event-details .event-date {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .calendar-page .no-events {
    font-size: 1em;
  }
  .calendar-page .event .event-image,
  .calendar-page .event .event-details {
    display: block;
  }
  .calendar-page .event .event-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .calendar-page .event .event-details {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .calendar-page .timeline {
    padding: 80px 0 20px;
  }
  .calendar-page .timeline .timeline-row {
    margin: 20px auto;
  }
  .calendar-page .timeline .timeline-row:nth-child(even) .event-link {
    float: none;
  }
  .calendar-page .timeline .item-bar {
    display: none;
  }
  .calendar-page .timeline .event-link {
    display: block;
    margin: 0 auto;
  }
}
/* Main Less File - Footer Section */
.footer {
  position: relative;
  width: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-bottom: 20px;
  background-color: #113515;
}
/* imports */
/* contact and social in footer */
.contact-social {
  display: none;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0 50px;
  /* Social media buttons */
  /* Contact Information */
  /* Location map */
}
.contact-social .col-A,
.contact-social .col-B {
  position: relative;
  width: 50%;
}
.contact-social .col-A {
  float: left;
}
.contact-social .col-B {
  float: right;
}
.contact-social .social-media {
  position: relative;
  margin-bottom: 40px;
}
.contact-social .social-media .btn-social {
  margin: 0 10px;
}
.contact-social .contact-info ul {
  list-style-type: none;
  padding: 0;
}
.contact-social .contact-info p {
  font-family: 'Open Sans', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.contact-social .contact-info span {
  display: inline-block;
  vertical-align: middle;
}
.contact-social .contact-info .icon {
  margin: 0 10px;
}
.contact-social .map {
  position: relative;
  width: 100%;
  height: 540px;
  background-image: url('../img/content/map-placeholder.jpg');
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .contact-social .map {
    height: 400px;
  }
}
@media screen and (max-width: 992px) {
  .contact-social .col-A {
    width: 45%;
  }
  .contact-social .col-B {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .contact-social .col-A,
  .contact-social .col-B {
    width: 100%;
    float: none;
    text-align: center;
  }
  .contact-social .social-media {
    margin-bottom: 50px;
  }
  .contact-social .social-media .section-title {
    margin-bottom: 30px;
  }
  .contact-social .social-media .btn-social {
    margin: 0 30px;
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
  }
  .contact-social .contact-info {
    margin-bottom: 50px;
  }
  .contact-social .contact-info .icon {
    display: block;
    margin: 0 auto 10px;
  }
  .contact-social .map {
    height: 420px;
  }
}
@media screen and (max-width: 480px) {
  .contact-social .map {
    height: 360px;
  }
}
.footer.footer-home .contact-social {
  display: block;
}
/* navigation and legal info in footer */
.footer {
  /* Redundant navigation */
  /* Logo (link to home page) */
  /* Legal info */
}
.footer .nav-footer .nav-institution,
.footer .nav-footer .nav-site {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
  margin: 15px 0;
  text-align: center;
}
.footer .nav-footer .nav-institution li,
.footer .nav-footer .nav-site li {
  display: inline-block;
  position: relative;
  height: auto;
  width: auto;
}
.footer .nav-footer .nav-institution li,
.footer .nav-footer .nav-site li {
  margin: 0 10px;
}
.footer .nav-footer .nav-institution a,
.footer .nav-footer .nav-site a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}
.footer .nav-footer .nav-institution a:link,
.footer .nav-footer .nav-site a:link,
.footer .nav-footer .nav-institution a:visited,
.footer .nav-footer .nav-site a:visited {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.footer .nav-footer .nav-institution a:hover,
.footer .nav-footer .nav-site a:hover,
.footer .nav-footer .nav-institution a:active,
.footer .nav-footer .nav-site a:active {
  color: #fce7dd;
  text-decoration: underline;
}
.footer .nav-footer .nav-institution a:hover,
.footer .nav-footer .nav-site a:hover,
.footer .nav-footer .nav-institution a:active,
.footer .nav-footer .nav-site a:active {
  text-decoration: none;
}
.footer .nav-footer .nav-site {
  margin: 50px 0 20px;
}
.footer .nav-footer .quick-links {
  display: block;
  text-align: left;
  padding: 0;
  margin: 0;
  opacity: 0.9;
}
.footer .nav-footer .quick-links li {
  display: block;
}
.footer .logo-footer {
  position: relative;
  padding: 20px 0 10px;
  margin: 30px 0 0;
  text-align: center;
}
.footer .logo-footer a {
  display: inline-block;
  background-position: 0 0;
  position: relative;
  width: 96px;
  height: 43.2px;
  background-image: url('../img/layout/logo.png');
  background-size: 96px 43.2px;
  background-repeat: no-repeat;
}
.footer .legal-info {
  font-family: 'Habibi', serif;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .footer .nav-footer .nav-institution {
    margin: 0 auto;
  }
  .footer .nav-footer .nav-site {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .footer .legal-info {
    font-size: 0.8em;
  }
}
.scroll-reveal {
  visibility: hidden !important;
}
.scroll-reveal.revealed {
  visibility: visible !important;
}
