* {
    padding: 0;
    margin: 0px;
}
body {
    color: #666;
    background: #eee;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1,
h1 .small {
    color: #fff;
    margin: 5px;
}
header {
    position: fixed;
    width: 100%;
    z-index: 10;
}

.theme-color-1 {
    background: #16A085;
    color: #fff;
}
.theme-color-white {
    background: #fff;
    color: inherit
}
.theme-color-steel {
    background: #333;
    color: #bbb;
}
.cs-header.theme-color-red {
    margin: 0px;
}
.navbar-default {
    border: none;
}
.navbar {
    margin-bottom: 0px !important;
}
.navbar-container {
    background: #f8f8f8;
    border-bottom: #ddd 1px solid;
}
.navbar-nav > li > a {
    padding-top: 25px;
    padding-bottom: 25px;
    font-stretch: condensed;
}
.navbar-default .navbar-toggle {
    border-color: transparent;
}
.fa.social-media-icon{
    font-size: 1em;
    border: 1px solid #999;
    border-radius: 20px;
    padding: 7px 10px;
    margin-right: 15px;
}
.thumbnail > img,
.thumbnail a > img {
    width: 100%;
}
.thumbnail {
    box-shadow: 0px 2px 3px #ccc;
}
.thumbnail {
      padding: 0 0 15px 0;
      border: none;
      border-radius: 0;
  }
  .thumbnail img {
      width: 100%;
      height: 100%;
      
  }
.media{
    margin-bottom:60px
}
.media-heading{
    margin-bottom:30px;
}
.media-icon-container{
    margin-right: 30px;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden
}
.media-icon{
    font-size: 27px;
    padding: 20px;
}
.banner {
    position: relative;
    margin-top: 111px;
    overflow: hidden;
}
.banner h1 {
    padding-top: 130px;
    color: #fff;
    z-index: 8;
    letter-spacing: 8px;
    font-size: 30px;
}
.banner img {
    width: 100%;
    opacity: 0.8;
    height: 150%;
    
}
.banner-img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    
}
.banner-inner {
    height: 300px;
    overflow: hidden;
}
.overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 7;
    width: 100%;
    height: 100%;
    top: 0px;
}
.overlay-home {
    background: rgba(0, 0, 0, 0.5);
}
.overlay p {
    color: #fff
}
.logo {
    width: 120px;
}
.panel-img{
    width: 60%;
}
.panel-img2{
    width: 30%;
    margin: 10px auto;
}
.panel-img3{
    width: 100px !important;
    margin: 1% auto;
}
.header-top {
    width: 100%;
    border-top: 5px solid #EC0101;
    border-bottom: #e7e7e7 1px solid
}
.header-top a,
.header-top span,
.header-top i {
    color:inherit;
    display: block;
    float: left;
    padding: 5px 10px;
}
footer p {
    padding: 0 15px;
}
.container-custom {
    padding: 40px 0;
}
.our-services .glyphicon {
    font-size: 40px
}
.application-form {
    margin: 0 auto;
    float: none;
}
.thumbnail-icon {
    font-size: 80px;
    padding: 20px 0;
}

.tumbnail-location-wrapper .location-container{
    overflow: hidden;
    margin-bottom: 10px;
}

.tumbnail-location-wrapper .thumbnail img { transition: all .8s ease-in-out; }
.tumbnail-location-wrapper .thumbnail img:hover { transform: scale(1.2); }

.btn-transparent{background: transparent; color: inherit}
/*carousel reset*/

.owl-dots {
    position: absolute;
    z-index: 30;
    bottom: 20%;
    width: 100%;
}

.owl-theme .owl-nav{
    position: absolute;
    top: 35%;
    width: 100%;
     
}
.owl-theme .owl-nav [class*=owl-]{
    padding: 1.5% !important;
    background:transparent !important;
    opacity: 0.7;
    border:#fff 1px solid;
}
.owl-prev {
    float: left;
}
.owl-next {
    float: right;
   
}


.slideanim {visibility:hidden;}
.slide {
    /* The name of the animation */
    animation-name: slide;
    -webkit-animation-name: slide; 
    /* The duration of the animation */
    animation-duration: 1s; 
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible; 
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@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%);
    }
}