/* OVERALL STYLING */

body {
    font: 400 15px Lato, sans-serif;
    line-height: 1.8;
    color: #818181;
    background: 
}

h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #303030;
    font-weight: 600;
    margin-bottom: 30px;
}

h4 {
    font-size: 19px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 30px;
}  

a {
    text-decoration: none;
}

/* TRAINMODE HEADER */

.jumbotron {
    background-color: #f8f8ff;
    color: #303030;
    padding: 100px 25px;
    /*font-family: Montserrat, sans-serif;*/
}

.header-logo {
    width: 60%;
    height: auto;
}

/*SECTIONS*/

.container-fluid {
    padding: 60px 50px;
  }

.bg-grey {
    background-color: #f6f6f6;
  }

.bg-white {
    background-color: #f8f8ff;
}

/* ABOUT US */

#about img {
    max-width: 150px;
    margin-bottom: 20px;
}

.btn-light:hover {
    color: #fff;
    background: #25D366;
}

.btn-light {
    color: #fff;
    background-color: #00A1B9;
    border-radius: 17px;
}

/* GLYPHS */

.logo-small {
    color: #f4511e;
    font-size: 50px;
}

.logo {
    color: #f4511e;
    font-size: 200px;
}

/* NAVIGATION BAR */

.navbar {
    margin-bottom: 0;
    background-color: #f8f8ff;
    z-index: 9999;
    border: 0;
    font-size: 12px !important;
    line-height: 1.42857143 !important;
    letter-spacing: 4px;
    border-radius: 0;
    font-family: Montserrat, sans-serif;
}

.navbar li a, .navbar .navbar-brand {
    color: #303030 !important;
    font-weight: 600;
}
  
.navbar-nav li a:hover, .navbar-nav li.active a {
    color: #f4511e !important;
    
}
  
.navbar-default .navbar-toggle {
    border-color: transparent;
    color: #fff !important;
  }


/* PORTFOLIO */

.carousel-inner {
    max-height: 350px;
}

/* COURSES */

#courses .well-link {
    text-decoration: none;
    color: #00A1B9;
}

#courses a:hover {
    color: #F4511E;
}


.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.collapsible:hover {
  background-color: #555;
}

.content {
  padding: 0 18px;
  width: 100%;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
  text-align: left;
}

.collapse-btn {
    background-color: #00A1B9;
}

.list-group a {
    color: #f4511e;
    text-decoration: none;
}

.list-group a:hover {
    color: #25D366;
}

.btn-primary {
    background-color: #00A1B9;
    color: #303030;
    border-radius: 5px;
    border: none;
    color: #fff;
}

.btn-primary:focus {
    background-color: lightsteelblue;
    border: none;
}

/* JUMBOTRON - VID */

.jumbotron-vid {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* LOCATION */

#location h2 {
    text-align: left;
}

@media only screen and (max-width: 600px) {
   #location .penang-loc {
    margin-top: 30px;
    }
    
    #location h2 {
        text-align: center;
    }
}



/*CONTACT*/

#contact {
    font-size: 13px;
}

.company-col {
    text-align: left;
    color: #555;
}

.contact-col {
    color: #555;
}

.company-blurb {
    margin-top: 10px;
}

.linkout {
    color: #555;
}

.linkout:hover {
    color: #f4511e;
    text-decoration: none;
}

/* FOOTER */

footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #f4511e;
}

footer .glyphicon:hover {
    color: #FFA500;
}

/* ANIMATION */
  
.slideanim {visibility:hidden;}
  .slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
}
  
@-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
}
  
@media screen and (max-width: 768px) {
    .col-sm-4 {
      text-align: center;
      margin: 25px 0;
    }
}
  
@media screen and (max-width: 480px) {
    .logo {
      font-size: 150px;
    }
    
  }
  
  
  