/* color palette
		dark-orange : #C9650A; 
		purple: #3F0091; 
		cream: #F2BE84;
		cream-more: #EFC9A3
		orange: rgba(201,101,10,0.5)
		blue-calm: #578;
		gold: #F26D00
		body: #E7E7E7
*/

@import url(http://fonts.googleapis.com/css?family=Istok+Web:400,700);
@import url(http://fonts.googleapis.com/css?family=Lobster);
@import url(http://fonts.googleapis.com/css?family=Inder);

* {
  padding: 0;
  margin: 0;
}

body.rumah {
  /* background: #F26D00; */
  /* background: #E8E6F2; */
  /* background: #FFD199; */
  background: #dddddd;
  width: 100%;
  height: 1000px;
  position: absolute;
}

.kolom-minus-color {
  position: absolute;
  width: 100%;
  height: 46px;
  background: #e7e7e7;
  top: 0;
}

.nav-ext {
  position: fixed;
  width: 100%;
  height: 58px;
  background: #c9650a;
  box-shadow: 0px -3px 10px #000;
  top: 0;
}

.kolom-ext {
  position: absolute;
  height: 379px;
  width: 100%;
  top: 621px;
  background: #f2be84;
  z-index: -100;
}

#global-container {
  position: relative;
  width: 1200px;
  height: 1000px;
  margin: 0 auto;
}

.header-wrapper {
  position: fixed;
  top: 0px;
  margin: auto;
  padding: 0;
  width: 100%;
  height: 100px;
  z-index: 12;
}

.dimensia-logo {
  position: relative;
  background: white;
  width: 270px;
  height: 70px;
  top: -13px;
  left: -73px;
  box-shadow: 0px 0px 10px #000;
  z-index: 99999;
  margin: 12px 1000px;
  border: 3px solid #c9650a;
  border-radius: 0px 20px 0px 20px;
}

.dimensia-logo img {
  position: absolute;
  margin: 0;
  width: 250px;
  z-index: 10;
  top: 2px;
  right: 10px;
}

header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 61px;
}

/* NAVIGATION */
nav {
  position: fixed;
  background-color: #c9650a;
  top: 0px;
  width: 1200px;
  height: 62px;
  z-index: 120;
  overflow: hidden;
}

nav ul {
  position: relative;
  bottom: 3px;
  margin-left: 93px;
}

nav ul li {
  float: left;
  list-style: none;
  position: relative;

  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

nav ul li:hover {
  position: relative;
  background: #f26d00;
  padding-top: 50px;
  color: white;
}

nav a {
  display: table-cell;
  float: left;
  list-style: none;
  color: #000;
  font-size: 18px;
  font-family: 'Century Gothic', sans-serif;
  text-decoration: none;
  padding: 17px;
}

.current {
  border-bottom: 4px solid #f2be84;
  color: #fff;
}

nav .fa-chevron-right {
  position: relative;
  color: #f2be84;
  left: 4px;
  font-size: 15px;
  line-height: 20px;
}

.current .fa-chevron-right {
  visibility: hidden;
}

.current .fa {
  color: #fff;
}

/* HOME ICON */
li .fa-home {
  position: absolute;
  color: #000;
  font-size: 43px;
  left: 0px;
  top: -30px;
  opacity: 0;
  padding: 20px 28px 28px 28px;

  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}

ul li:hover .fa-home {
  opacity: 1;
  top: -10px;

  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

/* PORTOFOLIO ICON */
li .fa-cubes {
  position: absolute;
  color: #000;
  font-size: 36px;
  left: 10px;
  top: -40px;
  opacity: 0;
  padding: 20px 28px 28px 28px;

  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}

ul li:hover .fa-cubes {
  opacity: 1;
  top: -6px;

  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

/* ABOUT ICON */
li .fa-cogs {
  position: absolute;
  color: #000;
  font-size: 38px;
  top: -30px;
  left: 0px;
  opacity: 0;
  padding: 20px 28px 28px 28px;

  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}

ul li:hover .fa-cogs {
  opacity: 1;
  top: -7px;

  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

/* ICON CONTACT */
li .fa-phone {
  color: #000;
  font-size: 44px;
  position: absolute;
  left: 15px;
  top: -30px;
  opacity: 0;
  /* border: 1px solid red; */
  padding: 20px 28px 28px 28px;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}

ul li:hover .fa-phone {
  opacity: 1;
  top: -9px;

  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

/* Opening Column */

#button-past {
  font-size: 32px;
  color: #000;
  position: absolute;
  left: 265px;
  top: 6px;
  width: 32px;
  height: 32px;
}

#button-future {
  font-size: 32px;
  color: #000;
  position: absolute;
  left: 302px;
  top: 6px;
  width: 32px;
  height: 32px;
  visibility: hidden;
}

#kolom-home {
  position: absolute;
  width: 1200px;
  height: 400px;
  background: #f2be84;
  top: 575px;
  padding-top: 13px;
}

.kolom-wrapper {
  position: relative;
  width: 1100px;
  height: 350px;
  margin: 0 auto;
  margin: auto;
  left: 5px;
}

.kolom-satu,
.kolom-dua,
.kolom-tiga {
  width: 320px;
  height: 300px;
  padding: 10px 10px 10px 20px;
  background: #efc9a3;
  float: left;
  margin-right: 20px;
  box-shadow: 0px 35px 13px #444;
  border-radius: 10px;
}

.kolom-tiga {
  margin-right: 0px;
}

.kolom-satu .icon .fa-globe {
  position: absolute;
  width: 100px;
  height: 100px;
  color: #c9650a;
  font-size: 250px;
  top: 60px;
  left: 60px;
  z-index: 0;
  opacity: 0.3;
}

.kolom-satu h2 {
  font-family: Inder, sans-serif;
  font-size: 33px;
  border-bottom: 3px solid #c9650a;
  padding-left: 60px;
  padding-bottom: 5px;
  margin-top: -10px;
}

.kolom-satu p,
.kolom-dua p,
.kolom-tiga p {
  padding: 20px;
  font-size: 17px;
  font-family: Inder, sans-serif;
  letter-spacing: 0.5px;
}

.kolom-satu p {
  padding-bottom: 5px;
}

.kolom-dua h2 {
  font-family: Inder, sans-serif;
  font-size: 33px;
  text-align: center;
  border-bottom: 3px solid #c9650a;
  padding-bottom: 5px;
  margin-top: -10px;
}

.kolom-tiga h2 {
  font-family: Inder, sans-serif;
  font-size: 28px;
  text-align: center;
  height: 36px;
  color: #000;
  line-height: 44px;
  width: 300px;
  border-bottom: 3px solid #c9650a;
  padding-bottom: 10px;
  margin-top: -10px;
}

/* FOOTER */
footer {
  position: absolute;
  bottom: -485px;
  width: 1200px;
  height: 115px;
  background: #c9650a;
  z-index: 4000;
  font-size: 13px;
  color: white;
  font-family: sans-serif;
}

#footer-ext {
  position: absolute;
  width: 100%;
  height: 115px;
  background: #c9650a;
  bottom: 0;
}

.footer-wrap {
  position: absolute;
  right: 3px;
  height: 115px;
  width: 400px;
  /* padding-top: 25px; */
}

.footer-wrap ul {
  padding: 30px;
  width: 350px;
  margin-left: 35px;
}
footer ul {
  padding: 30px;
  width: 350px;
  margin-left: 35px;
}

.footer-wrap li {
  list-style-type: none;
  display: block;
  float: left;
  padding: 0px 10px 0px 10px;
  border-right: 2px solid white;
}
footer li {
  list-style-type: none;
  display: block;
  float: left;
  padding: 0px 10px 0px 10px;
  border-right: 2px solid white;
}

.footer-wrap li a {
  text-decoration: none;
  color: white;
  font-size: 13px;
}
footer li a {
  text-decoration: none;
  color: white;
  font-size: 13px;
}

.footer-wrap li a:hover {
  color: #333;
}
footer li a:hover {
  color: #333;
}
