html{
	position: relative;
}

body {
    font-family: 'Ubuntu', 'Raleway-Regular', 'Raleway', 'Verdana', 'Tahoma';
    margin-bottom: 100px;
    margin-top: 30px;
    font-size: 15px;
}

hr {
  width: 200px;
  border-top: 1px solid #f90;
}


section {
  min-height: 500px;
}

/*NAVBAR*/
nav {
  background-color: tomato ;
  font-family: 'Raleway','Ubuntu';
  
}

.navbar-default{
    background-color: tomato;
    border-color: blue;
    color: none;
}

.navbar-default .navbar-brand {
    background: transparent;
    color: white;
    letter-spacing: 1px;
    word-spacing: 3px;
}

.navbar-default .navbar-brand:hover {
    background-color: transparent;
    color: blue;
}

.navbar-default .navbar-nav > li > a{
     color: white;
}

.navbar-default .navbar-nav li a {
  border-top: 2px solid none;
  border-bottom: 2px solid none;
  background-color: none;
  color: white ;
  font-size: 1em;
  font-weight: ;
  padding: ;
  text-transform: ;
  transition: all 0.20s linear 0s;
  -o-transition: all 0.20s linear 0s;
  -ms-transition: all 0.20s linear 0s;
  -moz-transition: all 0.20s linear 0s;
  -webkit-transition: all 0.20s linear 0s;
}
.navbar-default .navbar-nav li a:hover {
  background: none repeat scroll 0 0 ;
  border-top: 2px solid blue;
  border-bottom: 2px solid blue;
  color: blue;
  position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: tomato;
    color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-menu a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: white;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/*JUMBOTRON*/
.jumbotron{
    height: 380px;
    background: url("../img/bg.png"), #ff7043;
    background: url("../img/bg.png"), -webkit-linear-gradient(to left, #ff7043, #01579b);
    background: url("../img/bg.png"), linear-gradient(to left, #ff7043, #01579b);
    background-attachment: ;
    background-size: ;
    background-position: 0px 0px;
    color: white;
    font-family: 'Raleway-Light', 'Raleway-Regular', 'Raleway', 'Ubuntu';
    overflow: hidden;
   
}

.jumbotron img  {
    width: 300px;   
}

.jumbotron p {  
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

/*GARIS WARNA*/
.colored { width: 100%; height:4px; overflow:hidden; position:relative; top:0px; left:0px ;}
.colored div{ height:4px; width:20%; float:left;}
.blue{background-color: #327EA3;}
.aqua {background-color: #4CA5D0;}
.green{ background-color: #6CA338;}
.yellow {background-color: #FFBC38;}
.red {background-color: #E82C0C;}

/*ABOUT US*/
.pCenter {
    opacity: 0;
    transform: translateY(-50px);
    transition: 2s;
}

.pLeft, .pRight {
    opacity: 0; 
    transform: translate(-50px, 0);   
    transition: 5s;
}

.pRight {
    transform: translate(50px, 0);
}

.pCenter.pIn, .pLeft.pIn, .pRight.pIn {
    opacity: 1;
    transform: translate(0,0);
}

/*WARNA PER SECTION*/
.service {
	background-color: #eee;
}	

.experiences{
	background-color: #eee;
}

.client {
	background-color: #eee;
	min-height: 500px
}

/*FOOTER*/
.social {
    margin: 0;
    padding: 0;
}

.social ul {
    margin: 0;
    padding: 5px;
}

.social ul li {
    margin: 10px;
    list-style: none outside none;
    display: inline-block;
}

.social i {
    width: 60px;
    height: 60px;
    color: #FFF;
    background-color: #81BEF7;
    font-size: 30px;
    text-align:center;
    padding-top: 18px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.social i:hover {
    color: #FFF;
    text-decoration: none;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.social .fa-facebook-f:hover { /* round facebook icon*/
    background: blue;
}

.social .fa-twitter:hover { /* round twitter icon*/
    background: #00ABE3;
}

.social .fa-google-plus-g:hover { /* round google plus icon*/
    background: #e64522;
}

.social .fa-instagram:hover { /* round instagram icon*/
    background: #bc2a8d;
}

.social .fa-google-drive:hover { /* round instagram icon*/
    background: red;
}

.social .fa-blogger-b:hover { /* round instagram icon*/
    background: orange;
}

footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 80px;
	background-color: #01579b;
	padding-top: 20px;
	}

footer p {
	color: #FFF;
	font-size: .9em;
}