@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700);
body {
  background: #e5e5e5;
  color: #666;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #777;
  font-weight: 300;
}
a {
  color: #52b6ec;
/* 
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
*/
}

.btn {
  font-weight: 300;
  border: 0;
}
.btn.btn-primary {
  background-color: #52b6ec;
}
.btn.btn-primary:hover,
.btn.btn-primary.active {
  background-color: #1586c3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
a:hover,
a:focus {
  color: #80c9f1;
  text-decoration: none;
  outline: none;
}

/*
 * Navigation 
 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 500;
}
.nav > li > a {
  padding: 2px;
}
.nav > li > a:hover {
  background:none;
  color:#000;
}
.navbar-toggle {
	top:10px;
}
.navbar-default {
  background:#52b6ec;
  border-radius: 0 0 5px 5px;
  border: 0;
  padding: 0;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  /* overflow: hidden; */
}
.navbar-default .first a {
  border-radius: 0 0 0 5px;
}

.navbar > .container .navbar-brand {
  margin-right: 20px;
  margin-left: 20px;
    width: 200px;
  height: 60px;
  background: url(../images/logo.png) no-repeat 0 50%;
}

.navbar-default .navbar-nav > li {
  margin-left: 1px;
}
.navbar-default .navbar-nav > li > a {
  padding: 21px 15px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
.navbar-default .navbar-nav > li > a > i {
  display: inline-block;
}

.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active:focus > a,
.navbar-default .navbar-nav > li.active:hover > a,
.navbar-default .navbar-nav > li:hover > a,
.navbar-default .navbar-nav > li:focus > a,
.navbar-default .navbar-nav > li.active > a:focus,
.navbar-default .navbar-nav > li.active:focus > a:focus,
.navbar-default .navbar-nav > li.active:hover > a:focus,
.navbar-default .navbar-nav > li:hover > a:focus,
.navbar-default .navbar-nav > li:focus > a:focus {
  background:none;
  border-bottom: 5px #FFF solid;
  color: #fff;
}
/*
// Dropdown Hover with CSS
li.dropdown:hover > .dropdown-menu {
    display: block;
}
*/
.navbar-default .navbar-nav-impressum > a {
  padding: 21px 15px;
  font-size: 16px;
  line-height: 18px;
  color: #999;
}
.navbar-default .fa-users{
  color:#090;
}

/*
 * Navbar Lead Function Landing Page
 */
.ms-lead-navbar.navbar-scroll {
    background-color: rgba(82,182,236,1) !important;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
}
.ms-lead-navbar{
 background-color: rgba(82,182,236,0.4) !important;
}

.ms-lead-navbar.navbar-scroll .navbar-nav > li.active > a,
.ms-lead-navbar.navbar-scroll .navbar-nav > li.active:focus > a,
.ms-lead-navbar.navbar-scroll .navbar-nav > li.active:hover > a,
.ms-lead-navbar.navbar-scroll .navbar-nav > li:hover > a,
.ms-lead-navbar.navbar-scroll .navbar-nav > li:focus > a,
.ms-lead-navbar.navbar-scroll .navbar-nav > li.active > a:focus,
.ms-lead-navbar.navbar-scroll .navbar-nav > li.active:focus > a:focus,
.ms-lead-navbar.navbar-scroll .navbar-nav > li.active:hover > a:focus,
.ms-lead-navbar.navbar-scroll .navbar-nav > li:hover > a:focus,
.ms-lead-navbar.navbar-scroll .navbar-nav > li:focus > a:focus {
  background:none;
  border-bottom: 5px #FFF solid;
  color: #fff;
}


/*
 * Slider
 */
#main-slider {
  background-image: url(../images/slider-bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 200px 0;
  color: #fff;
}
#main-slider .item {
  -moz-transition: opacity ease-in-out 500ms;
  -o-transition: opacity ease-in-out 500ms;
  -webkit-transition: opacity ease-in-out 500ms;
  transition: opacity ease-in-out 500ms;
  left: 0 !important;
  opacity: 0;
  top: 0;
  position: absolute;
  width: 100%;
  display: block !important;
  z-index: 1;
  text-align: center;
}
#main-slider .item:first-child {
  top: auto;
  position: relative;
}
#main-slider .item.active {
  opacity: 1;
  -moz-transition: opacity ease-in-out 500ms;
  -o-transition: opacity ease-in-out 500ms;
  -webkit-transition: opacity ease-in-out 500ms;
  transition: opacity ease-in-out 500ms;
  z-index: 2;
}
#main-slider .item.active h1 {
  -webkit-animation: scaleUp 400ms;
  -moz-animation: scaleUp 400ms;
  -o-animation: scaleUp 400ms;
  -ms-animation: scaleUp 400ms;
  animation: scaleUp 400ms;
}
#main-slider .prev,
#main-slider .next {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: inline-block;
  margin-top: -50px;
  font-size: 24px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 4px;
  z-index: 5;
}
#main-slider .prev:hover,
#main-slider .next:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#main-slider .prev {
  left: 10px;
}
#main-slider .next {
  right: 10px;
}
#main-slider h1 {
  font-size: 50px;
  text-shadow: 0 3px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.carousel-inner {
overflow:visible;
}

/*
 * home-brand
 */ 
.home-brand {
    display: block;
    margin: 0 auto;
	font-size:60px; 
}
@media(max-width:767px){
	.home-brand{font-size:40px;margin-top:20px;}
	.home-title{font-size:20px;margin-bottom:20px;}
}
.home-title {
	display: block;
    margin: 0 auto;
	color: #fff;
	margin-bottom:40px;
}
.btn-more {
	padding:10px;
	color:#000;
	background-color:#FFF;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
	margin-bottom:30px;
}


/*
 * Card
 */
.card {
    box-shadow: none;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
    border-radius: 2px;
    background-color: #fff;
    margin-bottom: 20px;
    margin-bottom: 2rem;
}
.card .card-block, .card.card-block {
    padding: 20px;
    padding: 2rem;
}
.card.card-info {
    border-bottom: solid 3px #00bcd4;
    border-radius: 3px;
}
.card.card-info2 {
    border-bottom: solid 3px #999;
    border-radius: 3px;
}
.bg-info {
    background-color: #52b6ec !important;
    color: #fff;
}
.bg-info2 {
    background-color: #999 !important;
    color: #fff;
}
.color-info {
    color: #00bcd4 !important;
}

.pt-4 {
    padding-top: 40px !important;
    padding-top: 4rem !important;
}

.img-avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: solid 5px #fff;
    box-shadow: 0 3px 4px 0 rgba(0,0,0,.14),0 3px 3px -2px rgba(0,0,0,.2),0 1px 8px 0 rgba(0,0,0,.12);
    margin: 0 auto;
    display: block;
    -webkit-transform: translateY(40px) rotate(0deg);
    transform: translateY(40px) rotate(0deg);
    transition: all ease .5s;
    position: relative;
    z-index: 1;
}


/*
 * Intro Onepage Fixed
 */
.intro-fixed{position:fixed;height:100%;width:100%;top:0;left:0;right:0;bottom:0;z-index:0}
.intro-fixed .intro-fixed-content{position:absolute;width:100%;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}
.intro-fixed.intro-fixed-static{position:static;}
.intro-fixed.intro-fixed-static .intro-fixed-content{position:static;-webkit-transform:none;transform:none}
.intro-fixed.intro-fixed-static .intro-fixed-content h1{margin-top:0}
@media(max-width:767px){.intro-fixed .intro-fixed-content{padding-top:60px}}

.ms-hero-img-start {
    background-image: url(../images/start.jpg);
    background-size: cover;
    background-position: center center;
}

.ms-hero-bg-primary:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,153,255,.5);
    z-index: 0;
}
.ms-hero-bg-primary .container{position:relative;z-index:1}

.index-1 {
    position: relative;
    z-index: 1 !important;
}

/*
 * Intro Next
 */
.home-intro-title {
	color:#52b6ec;
	font-size:35px;
}
.home-intro-desc {
	color:#000;
	font-size:24px;
	padding-bottom:30px;
}
.bg-light {
    background-color: #f5f5f5;
	padding-top: 60px !important;
}
.list-hero {
	margin-top:20px;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 300;
}
.list-hero li span {
	display:block;
    width: 100%;
    background-color: rgba(255,255,255,.1);
    padding: 10px 20px;
    box-shadow: 0 0 2px 0 rgba(0,0,0,.8),inset 0 0 1px 0 rgba(255,255,255,.3);
    height: 60px;
    line-height: 40px;
    line-height: 4rem;
    transition: all ease .3s;
	margin-top:20px;
}
.center-block {
    display: block;
    margin: 0 auto;
}
.color-white {
    color: #fff !important;
}
.mw-300 {max-width: 300px;}
.c-dl { min-height:1200px; }
.pt-6 {
    padding-top: 60px !important;
    padding-top: 6rem !important;
}


/*
 * Box Main Content
 */
.box {
  padding: 50px 10px 30px 10px;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
}
.box.first {
  margin-top: -40px;
  border-radius: 5px 5px 0 0;
}
.box.last {
  border-radius: 0 0 5px 5px;
  border-bottom:none;
}
.defaultbox {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);	
}
.defaultbox.first {
  margin-top:80px;
  border-radius: 5px 5px 0 0;
}
.defaultbox.last {
  border-radius: 0 0 5px 5px;
  border-bottom:none;
}

.rsb-box, .lsb-box {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.rsb-box.first, .lsb-box.first {
  margin-top:70px;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
}
.rsb-box.last, .lsb-box.last {
  border-radius: 0 0 5px 5px;
  border-bottom:none;
}


.fln-left, .fln-right  {
  padding: 5px;
  background:#FFF;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  border-radius: 0 0 5px 5px;
  text-align:center;
  margin-bottom:15px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
}
.fln-left {
  margin-left: 10px;	
  float:left;
  width:100px;
}
.fln-right {
  margin-right: 10px;	
  float:right;
  width:100px;
}
.box h2 {
  padding: 0 10px 10px 0;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  margin-bottom: 15px;
  font-size: 38px;
  color: #52B6EC;
}

.ccm-captcha-image {
  border-radius: 5px 5px 5px 5px;	
}
.googleMapCanvas {
  border-radius: 10px 10px 10px 10px;
}

.defaultbox h2{
  font-size: 30pt;
  color: #52B6EC;
  font-weight:bold;
  margin-bottom:20px;
}





/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

.center {
  text-align: center;
}
#team-scroller .designation {
  margin-top: 10px;
  display: block;
}
.member {
  margin: 0 50px;
  text-align: center;
}

.carousel.scale .left-arrow,
.carousel.scale .right-arrow {
  top: 30%;
  position: absolute;
}
.carousel.scale .left-arrow {
  left: -10px;
}
.carousel.scale .right-arrow {
  right: -10px;
}
.carousel.scale .active .row > div:nth-child(1) {
  -webkit-animation: scaleUp 200ms linear 0 both;
  -moz-animation: scaleUp 200ms linear 0 both;
  -ms-animation: scaleUp 200ms linear 0 both;
  -o-animation: scaleUp 200ms linear 0 both;
  animation: scaleUp 200ms linear 0 both;
}
.carousel.scale .active .row > div:nth-child(2) {
  -webkit-animation: scaleUp 200ms linear 100ms both;
  -moz-animation: scaleUp 200ms linear 100ms both;
  -ms-animation: scaleUp 200ms linear 100ms both;
  -o-animation: scaleUp 200ms linear 100ms both;
  animation: scaleUp 200ms linear 100ms both;
}
.carousel.scale .active .row > div:nth-child(3) {
  -webkit-animation: scaleUp 200ms linear 200ms both;
  -moz-animation: scaleUp 200ms linear 200ms both;
  -ms-animation: scaleUp 200ms linear 200ms both;
  -o-animation: scaleUp 200ms linear 200ms both;
  animation: scaleUp 200ms linear 200ms both;
}
.carousel.scale .active .row > div:nth-child(4) {
  -webkit-animation: scaleUp 200ms linear 400ms both;
  -moz-animation: scaleUp 200ms linear 400ms both;
  -ms-animation: scaleUp 200ms linear 400ms both;
  -o-animation: scaleUp 200ms linear 400ms both;
  animation: scaleUp 200ms linear 400ms both;
}
.icon-social {
  border: 0;
  color: #fff;
  border-radius: 100%;
  display: inline-block !important;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  padding: 0;
}
.icon-social.icon-facebook {
  background: #4f7dd4;
}
.icon-social.icon-facebook:hover {
  background: #789bde;
}
.icon-social.icon-twitter {
  background: #5bceff;
}
.icon-social.icon-twitter:hover {
  background: #8eddff;
}
.icon-social.icon-linkedin {
  background: #21a6d8;
}
.icon-social.icon-linkedin:hover {
  background: #49b9e3;
}
.icon-social.icon-google-plus {
  background: #dc422b;
}
.icon-social.icon-google-plus:hover {
  background: #e36957;
}
.icon-social.icon-pinterest {
  background: #cb2027;
}
.icon-social.icon-pinterest:hover {
  background: #e03e44;
}
.icon-social.icon-youtube {
  background: #ce332d;
}
.icon-social.icon-youtube:hover {
  background: #da5954;
}
.icon-social:hover {
  color: #fff;
}

.icon-lg {
  font-size: 48px;
  height: 108px;
  width: 108px;
  line-height: 108px;
  color: #fff;
  margin: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: inline-block !important;
  border-radius: 100%;
}
.icon-md {
  font-size: 50px;
  height: 100px;
  width: 100px;
  line-height: 100px;
  color: #fff;
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  margin-bottom: 10px;
}
.icon-color1 {
  background-color: #FF4D4D;
}
.icon-color2 {
  background-color: #B20000;
}
.icon-color3 {
  background-color: #FFFF73;
}
.icon-color4 {
  background-color: #FFBF00;
}
.icon-color5 {
  background-color: #B9FF73;
}
.icon-color6 {
  background-color: #008C00;
}
.icon-color7 {
  background-color: #4DA6FF;
}
.icon-color8 {
  background-color: #0059B2;
}
.icon-color9 {
  background-color: #AAAAAA;
}

.gap {
  margin-bottom: 50px;
}
.big-gap {
  margin-bottom: 100px;
}
#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #999;
}
#footer a {
  color: #999;
}
#footer a:hover {
  color: #52b6ec;
}
textarea#message {
  padding: 10px 15px;
  height: 220px;
}


/*
 * Portofolio
 */
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
    float: left;
    width: 33.33333333%;
  }
}
@media (min-width: 768px) {
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
    min-height: 147px;
  }
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item img {
    width: 100%;
    height: 147px;
  }
}
@media (min-width: 992px) {
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
    min-height: 193px;
  }
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item img {
    width: 100%;
    height: 193px;
  }
}
@media (min-width: 1200px) {
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
    min-height: 240px;
  }
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item img {
    width: 100%;
    height: 240px;
  }
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-thumbnail-hover {
  background-color: rgba(32, 189, 232, 0.7);
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper i.ccm-block-page-list-page-entry-grid-thumbnail-icon {
  display: block;
  margin: 0px auto 10px auto;
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper i.ccm-block-page-list-page-entry-grid-thumbnail-icon:before {
  font-family: FontAwesome;
  content: "\f064";
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-title {
  margin-top: 30px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: #4f585c;
  line-height: 1.42857143;
  text-transform: none;
}


@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes scaleUp {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@-webkit-keyframes scaleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-ms-keyframes scaleUp {
  0% {
    opacity: 0;
    -ms-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -ms-transform: scale(1);
  }
}
@-o-keyframes scaleUp {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -o-transform: scale(1);
  }
}
