@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'futura';
    src: url(../fonts/futura/futura-md-bt_481.ttf);
	font-style: normal;
	font-weight: normal;
}
@font-face {
    font-family: 'futura';
    src: url(../fonts/futura/futura-md-bt_251.ttf);
	font-style: normal;
	font-weight: bold;
}
@font-face {
    font-family: 'myriadPro';
    src: url(../fonts/myriadPro/MyriadPro-Regular.otf);
	font-style: normal;
	font-weight: normal;
}
@font-face {
    font-family: 'myriadPro';
    src: url(../fonts/myriadPro/MyriadPro-It.otf);
	font-style: italic;
	font-weight: bold;
}
@font-face {
    font-family: 'myriadPro';
    src: url(../fonts/myriadPro/MyriadPro-Bold.otf);
	font-style: normal;
	font-weight: bold;
}
@font-face {
    font-family: 'myriadPro';
    src: url(../fonts/myriadPro/MyriadPro-BoldIt.otf);
	font-style: italic;
	font-weight: bold;
}
@font-face {
    font-family: 'bebas';
    src: url('../fonts/bebas/bebas.ttf') format('truetype'),
	url('../fonts/bebas/bebas.otf') format('embedded-opentype');
	font-style: normal;
	font-weight: normal;
}

body{
	overflow-x: hidden;
	background: #fff !important;
}

p{
	font-family: 'Roboto', sans-serif;
	margin: 10px 0;
}

h1,h2,h3,h4,h5,h6{
	font-family: 'bebas';
}
h2{ font-size : 40px;
}
h3{
	line-height: 30px;
	font-size: 28px;
	letter-spacing: 0.4px;
}

ul{
	list-style: none;
	padding: 0;
}

a{
	color: #020202;
}

a:hover{
	text-decoration: none;
	color: #020202;
}

.mAuto{
	margin: auto;
}
.mt20{
	margin-top: 20px !important;
}
.mb20{
	margin-bottom: 20px !important;
}
.p00{
	padding: 0 !important;
}
.pb00{
	padding-bottom: 0 !important;
}

.img-full{
	width: 100%;
}

.navbar{
	border: none;
	-webkit-box-shadow: 0px 2px 30px 7px rgba(0,0,0,0.32);
	-moz-box-shadow: 0px 2px 30px 7px rgba(0,0,0,0.32);
	box-shadow: 0px 2px 30px 7px rgba(0,0,0,0.32);
	margin-bottom: 0 !important;
}
.navbar .container{
	position: relative;
}
.navbar-brand {
    position: absolute;
    top: 0;
    left: 0;
}
.navbar-default{
	background: #d60404;
}
.navbar-brand{
	height: auto;
	padding: 0;
	transition: ease-in-out 0.5s;
	z-index: 9999;
}
.navbar-nav>li>a {
    line-height: 55px;
    color: #fdf642 !important;
    font-size: 17px !important;
    padding: 10px 13px !important;
    font-family: 'bebas';
    letter-spacing: 0.6px;
}
.img-block-tab{
	width: 65px;
    height: 100px;
    overflow: hidden;
	position: relative;
}
.img-block-tab img{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
.navbar-nav>li:hover{
	background: #202a44;
}
.navbar-nav>li>.dropdown-menu {
    background: #202a44;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    color: #fdf642;
    background-color: #202a44;
}
.dropdown-menu>li>a {
    color: #fdf642 !important;
	font-family: 'bebas';
	padding: 10px 20px;
	font-size: 16px;
	letter-spacing: 0.6px;
}
.dropdown-menu>li>a:hover {
    background: none;
}
.navbar-right .dropdown-menu {
    left: 0;
}
.dropdown-menu {
    min-width: 320px;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
.dropdown-submenu .dropdown-menu {
    top: -5px;
    left: 100%;
    margin-top: -1px;
    background: #202a44;
    border-radius: 0;
}

/* Search bar */
#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;

    -webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
    
    opacity: 0;
	z-index: 9999;
}


#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}
#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
}
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
	opacity: 1;
	padding: 10px 17px;
	font-size: 27px;
}
.navbar-default .navbar-nav>.searchbox.active>a, .navbar-default .navbar-nav>.searchbox.active>a:focus, .navbar-default .navbar-nav>.searchbox.active>a:hover{
	background: none;
}
#search .btn {
    background-color: #d60404;
}
.searchbox.sm{
	background: #545252;
}
.searchbox.sm a{
	color: #fff !important;
}
/* end-search bar */

/* language */
.lang{
	position: fixed;
	top: 100px;
	right: -93px;
	background: #545252;
	padding: 10px 10px 10px 50px;
	border-radius: 5px;
	z-index: 999;
	cursor: pointer;
}
.lang.active{
	right: -2px;
	transition: ease-in-out all 0.5s;
}
.lang ul{
	margin: 0;
	position: relative;
}
.lang ul:before{
	position: absolute;
	top: 50%;
	left: -33px;
	transform: translate(0,-50%);
	width: 25px;
	height: 25px;
	background: url(../images/lang.png) center no-repeat;
	background-size: 25px;
}
.lang ul li{
	float: left;
	padding: 5px 15px;
	border-right: 1px solid #fff;
}
.lang ul li:last-child{
	border: none;
}
.lang ul li.active a{
	font-weight: bold;
}
.lang a{
	color: #fff;
}

/* video */
video#bgvid { 
    position: fixed;
    top: 70px;
    left: 0;
    min-width: 100%;
    width: 100%;
    height: auto;
    z-index: -100;
    background: url(../images/bg-poster.jpg) no-repeat;
    background-size: cover;
	background-size: cover;
    background-position: bottom center;
}

/*.banner{
	width: 100%;
    background: url(../images/GRIDNET.jpg) no-repeat 0 90px;
    background-attachment: fixed;
    margin-top: 90px;
    background-size: 100%;
}
.banner img{
	width: 100%;
	opacity: 0;
	vertical-align: top;
}

.section-pad{
	padding: 90px 0;
}
.title-h2 h2{
	padding: 0 10px 8px;
    border-bottom: 5px solid #f7941e;
    font-size: 36px;
    display: inline-block;
    font-family: 'futura';
    margin-bottom: 30px;
    margin-top: 0;
}
.text-h2{
	font-size: 18px;
	max-width: 550px;
    margin: auto;
}
#video{
	width: 100%;
    background: url(../images/bg-video.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
	border-bottom: 8px solid #f97c02;
}
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}*/

/* universal */
.section-pad{
	padding: 60px 0;
}
.section-pad-bottom{
	padding: 0 0 60px 0;
}
.left-red-border {
    border-left: 10px solid #da0404;
    padding: 0 0 0 20px !important;
    line-height: 25px;
}
.title-section h2{
	padding: 10px 30px 10px 10px;
	border: 3px solid #000;
	display: inline-block;
	font-family: 'bebas';
	position: relative;
}
.title-section h2:after{
	position: absolute;
	top: 0;
	right: 5px;
	content:"+";
}
.title-section.white-ver h2{
	padding: 10px 30px 10px 10px;
	border: 3px solid #fff;
	display: inline-block;
	font-family: 'bebas';
	position: relative;
	color: #fff;
}
.link-more a{
	padding: 10px 30px 10px 10px;
	border: 3px solid #000;
	display: inline-block;
	font-family: 'myriadPro';
	position: relative;
	font-size: 17px;
	font-weight: bold;
	color: #000;
}
.link-more a:after{
	position: absolute;
	top: 0;
	right: 10px;
	content:"+";
}
.link-more.white-ver a{
	border: 3px solid #fff;
    color: #fff;
}
.link-download a{
	padding: 10px 25px;
	background: #cd0000;
	display: inline-block;
	font-family: 'roboto';
	position: relative;
	font-size: 16px;
	color: #fff;
	margin: 10px 0;
}
.link-download.whistle a{
	font-size: 14px;
}
.bread-crumb ul{
	padding: 20px 0;
}
.bread-crumb ul li{
	float: left;
	list-style: none;
	padding: 2px 0;
	margin-right: 20px;
	position: relative;
}
.bread-crumb ul li:after{
	content: "";
	width: 2px;
	height: 30px;
	background: #333;
	position: absolute;
	top: 0;
	right: -10px;
}
.bread-crumb ul li:last-child:after{
	content: "";
	width: 0;
	height: 0;
}
.bread-crumb ul li a{
	color: #333;
}
.bread-crumb ul li{
	color: #0390fd;
	font-family: 'bebas';
	font-size: 22px;
	font-weight: bold;
}
.caption h5{
	line-height: 20px;
}
.blue-border{
	border-left: 15px solid #00bff3;
	padding-left: 15px;
	font-family: 'bebas';
	font-size: 18px;
}
.green-border{
	border-left: 15px solid #69b01c;
	padding-left: 15px;
	font-family: 'bebas';
	font-size: 18px;
}

/* qhsse */
.qhsse{
	position: relative;
    margin-top: 60vw;
    background: #fff;
}
.qhsse:before{
	content: "";
    position: absolute;
    width: 100%;
    /* max-height: 140px; */
    max-height: 200px;
    height: 100%;
    background: url(../images/section01-before.png) no-repeat top center;
    background-size: 100%;
    top: -10vw;
    left: 0;
}
.qhsse-img{
	padding: 20px;
}
.qhsse p.text{
	color: #fff;
	padding: 0 30px; 
}
.qhsse-title-box {
    padding: 2px 25px;
    min-width: 257px;
    border: 3px solid #dfdfdf;
    color: #e87f00;
    font-weight: bold;
    display: inline-block;
    margin-top: 50px;
    font-size: 16px;
    text-align: center;
    margin-left: 30px;
}
.qhsse img{
	margin: auto;
}
.salam-5-jari{
	background: url(../images/bg-salam.jpg) no-repeat top center #292929;
	background-size: cover;
}
.survey-budaya{
	background: url(../images/bg-budaya.jpg) no-repeat top center #292929;
	background-size: cover;
}
.kebijakan{
	background: url(../images/bg-kebijakan.jpg) no-repeat top center #292929;
	background-size: cover;
}
.green-block{
	color: #fff;
	background: #32a970;
	padding: 15px;
	min-height: 70px;
}
.blues-block{
	color: #fff;
	background: #2a7ecc;
	padding: 15px;
	min-height: 70px;
}

/* cerita-kami */
.cerita-kami-bg{
	background: url(../images/bg-ceritakami.jpg) no-repeat top center;
	background-size: cover;
}
.cerita-kami .img-box{
	overflow: hidden;
	height: 300px;
	position: relative;
}
.cerita-kami .img-box img{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	height: 100%;
}
.cerita-kami .img-box.middle img{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	height: 100%;
	width: auto;
	max-width: none;
}
.d-table{
	display: table;
	/*height: 112px;
	box-sizing: border-box;*/
}
.d-table.middle{
	position: absolute;
	top: 0;
	left: 0;
}
.date{
	display: table-cell;
	vertical-align: middle;
	width: 20%;
	height: 100%;
	padding: 10px 20px;
	line-height: 20px;
	text-align: center;
}
.date.orange{
	display: table-cell;
    width: 98px;
    height: 112px;
    padding: 10px 20px;
    line-height: 20px;
    text-align: center;
    box-sizing: border-box;
    vertical-align: middle;
}
.caption{
	background: #c4c2be;
	padding: 10px 15px;
	display: table-cell;
	vertical-align: middle;
	width: 80%;
	height: 100%;
}
.caption h5{
	font-size: 20px;
}
.date.green{
	background: #bdd85f;
}
.date.blue{
	background: #46cdff;
}
.date.orange,
.caption.orange{
	background: #ffc246;
}
.bx-wrapper .bx-pager {
    text-align: center;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #df0303;
    border: 2px solid #fff;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    width: 15px;
    height: 15px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.bx-wrapper .bx-controls-direction a {
    width: 53px;
    height: 53px;
}
.bx-wrapper .bx-prev {
    left: -80px;
}
.bx-wrapper .bx-next {
    right: -80px;
}
.cerita-kami a:hover img,
.cerita-kami a:hover .date,
.cerita-kami a:hover .caption{
	opacity: 0.9;
}

/* peta-operasi */
.peta-operasi{
    background: url(../images/section-03.jpg) no-repeat center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    overflow-x: scroll;
}
.peta-operasi p{
    font-family: 'bebas';
}
.peta-title {
    color: #fff;
    font-size: 52px;
    font-weight: bold;
    border-bottom: 8px solid #fbb305;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 0 !important;
}
.map-area{
	position: relative;
	margin-top: 50px;
}
.map-point-01{
	position: absolute;
    top: 37%;
    left: 22%;
    cursor: pointer;
}
.map-point-02{
	position: absolute;
    bottom: 27%;
    left: 24%;
    cursor: pointer;
}
.map-point-03{
	position: absolute;
    bottom: 27%;
    left: 28%;
    cursor: pointer;
}
.map-point-04{
	position: absolute;
    top: 42%;
    left: 22%;
    cursor: pointer;
}
.map-point-05{
	position: absolute;
    top: 24%;
    left: 42%;
    cursor: pointer;
}
.map-point-06{
	position: absolute;
    top: 63%;
    left: 29%;
    cursor: pointer;
}
.map-point-07{
	position: absolute;
    top: 37%;
    right: 8%;
    cursor: pointer;
}
.map-point-08{
	position: absolute;
    top: 0;
    left: 5%;
    cursor: pointer;
}
.map-point-09{
	position: absolute;
    top: 24%;
    left: 16%;
    cursor: pointer;
}
.map-point-10{
	position: absolute;
    top: 46%;
    left: 22%;
    cursor: pointer;
}
.map-point-11{
	position: absolute;
    bottom: 22%;
    left: 28%;
    cursor: pointer;
}
.map-point-12{
	position: absolute;
    bottom: 28%;
    left: 37%;
    cursor: pointer;
}
.map-point-13{
	position: absolute;
    bottom: 48%;
    left: 43%;
    cursor: pointer;
}
.map-point-14{
	position: absolute;
    top: 31%;
    left: 46%;
    cursor: pointer;
}
.map-point-15{
	position: absolute;
    top: 15%;
    left: 46%;
    cursor: pointer;
}
.map-caption{
	display: none;
    padding: 10px;
    color: #333;
    border: 2px solid #de9e2f;
    background: rgba(218, 218, 218, 0.8);
    position: absolute;
    z-index: 999;
    font-size: 12px;
    line-height: 14px;
    width: 310px;
	box-sizing: border-box;
	text-align:left;
}
.map-point-01:hover .map-caption,
.map-point-02:hover .map-caption,
.map-point-03:hover .map-caption,
.map-point-04:hover .map-caption,
.map-point-05:hover .map-caption,
.map-point-06:hover .map-caption,
.map-point-07:hover .map-caption,
.map-point-08:hover .map-caption,
.map-point-09:hover .map-caption,
.map-point-10:hover .map-caption,
.map-point-11:hover .map-caption,
.map-point-12:hover .map-caption,
.map-point-13:hover .map-caption,
.map-point-14:hover .map-caption,
.map-point-15:hover .map-caption{
	display: block;
}
.map-point-01 .map-caption{
    top: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-02 .map-caption{
	bottom: 58px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-03 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-04 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-05 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-06 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-07 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-70%,0);
}
.map-point-08 .map-caption{
	top: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-09 .map-caption{
	top: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-10 .map-caption{
	top: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-11 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-12 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-13 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-14 .map-caption{
	bottom: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point-15 .map-caption{
	top: 60px;
    left: 50%;
    transform: translate(-50%,0);
}
.map-point img.pulse {
    -webkit-animation: pulsate 2.5s ease-in-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.6, 0.6); opacity: 1.0;}
    50% {-webkit-transform: scale(1.0, 1.0); opacity: 1.0;}
    100% {-webkit-transform: scale(0.6, 0.6); opacity: 1.0;}
}
.keterangan-peta{
	background: #d7d6d6;
}
.keterangan-peta h6{
	color: #333;
	font-size: 14px;
}
.list-point{
	float: left;
}
.point{
    padding: 20px 45px 20px 25px;
}
.red-point{
	background: url(../images/red-point.png) center left no-repeat;
    background-size: 20px;
}
.blue-point{
	background: url(../images/blue-point.png) center left no-repeat;
    background-size: 20px;
}
.black-point{
	background: url(../images/black-point.png) center left no-repeat;
    background-size: 20px;
}
.office-point{
	background: url(../images/yellow-office.png) center left no-repeat;
    background-size: 35px;
	padding-left: 38px;
}
.onshore-point{
	background: url(../images/onshore.png) center left no-repeat;
    background-size: 35px;
	padding-left: 38px;
}
.offshore-point{
	background: url(../images/barge.png) center left no-repeat;
    background-size: 35px;
	padding-left: 38px;
}

/* bisnis-kami */
.bisnis-kami{
	background: url(../images/bg-investor.jpg) no-repeat center;
    background-size: cover;
}
.bisnis-title {
    color: #fff;
    font-size: 52px;
    font-weight: bold;
    border-bottom: 8px solid #fbb305;
    padding-bottom: 5px;
    display: inline-block;
	font-family: 'bebas';
	margin-bottom: 20px;
}
.bisnis-kami p{
	color: #fff;
}
#video{
	width: 100%;
    background: url(../images/bg-video.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
	position: relative;
    z-index: 1010;
}
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
	z-index: 10;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.bisnis-kami .bx-wrapper .bx-prev {
    background: url(../images/bisnis-kami-prev.png) no-repeat 0 0;
    left: 10px;
}
.bisnis-kami .bx-wrapper .bx-next {
    background: url(../images/bisnis-kami-next.png) no-repeat 0 0;
    right: 10px;
}
.slider-bisnis-kami li{
	height: 430px;
    overflow: hidden;
	position: relative;
	background: #000;
}
.slider-bisnis-kami li .gradient-black{
	position: absolute;
	top: 20%;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(12,67,116,0);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.27) 18%, rgba(0,0,0,1) 67%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(18%, rgba(0,0,0,0.27)), color-stop(67%, rgba(0,0,0,1)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.27) 18%, rgba(0,0,0,1) 67%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.27) 18%, rgba(0,0,0,1) 67%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.27) 18%, rgba(0,0,0,1) 67%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.27) 18%, rgba(0,0,0,1) 67%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}
.caption-slider{
	position: absolute;
    color: #fff;
    bottom: 28%;
    left: 12%;
    transform: translate(-12%,-28%);
    font-family: 'bebas';
}
.slider-bisnis-kami li img{
	width: 100%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	position: relative;
}
.bisnis-kami .bx-wrapper .bx-pager {
     text-align: left;
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    padding-top: 20px;
    padding-right: 15px;
    font-family: 'bebas';
    margin: 0;
    padding: 0;
    line-height: 50px;
}
.bisnis-kami .bx-wrapper .bx-pager:first-letter{
	font-size: 70px;
	font-weight: bold;
}
.bisnis-kami .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: 65%;
    width: auto;
    left: 5%;
    transform: translate(0,-50%);
}
.bisnis-kami .bx-wrapper .bx-controls-direction a {
    width: 20px;
    height: 30px;
}
.bisnis-kami h4{
	color: #ff9600;
	background: #000000;
	margin: 0;
	padding: 15px;
}
.bisnis-kami .link-more {
    text-align: center;
}
.bisnis-kami .link-more a {
    border: 5px solid #fff;
    color: #fff;
}
.keterangan-bisnis-kami{
	background: #ffffff;
	padding: 20px;
}
.keterangan-bisnis-kami p{
	color: #333;
	font-size: 18px;
}
.investor .link-more {
    text-align: right;
	position: relative;
	z-index: 999;
}
.investor .link-more a {
    border: 3px solid #fff;
    color: #fff;
}

/* investor */
.investor{
	background: url(../images/bg-investor.jpg) no-repeat center;
    background-size: cover;
	position: relative;
	padding-bottom: 155px;
}
.investor:after{
	background: url(../images/investor-after.png) no-repeat center bottom;
    background-size: 100%;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.investor img{
	position: relative;
    z-index: 1;
}

/* kontak */
.kontak{
	background: #fff;
}
.kontak-title{
	font-family: 'bebas';
	font-size: 22px;
	font-weight: bold;
	border: 3px solid #000000;
	padding: 5px 30px;
	display: inline-block;
	margin-bottom: 20px;
}
.kontak input,
.kontak textarea{
	width: 100%;
	margin-bottom: 10px;
	background: #f0f0f0;
	border: none;
	padding: 15px;
}

.kontak textarea{
	min-height: 150px;
}
.whistleblowing{
	position: relative;
}
.whistleblowing:before{
	position: absolute;
	width: 1px;
	height: 325px;
	background: #dfdfdf;
	top: 0;
	left: -20px;
	content: "";
}
.whistleblowing:after{
	position: absolute;
    width: 1px;
    height: 325px;
    background: #dfdfdf;
    top: 0;
    right: 20px;
    content: "";
}

/* --- Cerita-Kami ---- */
section.module.parallax {
  height: 600px;
  background-position: 0 0;
  position: relative;
}
section.module.parallax h1 {
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
section.module.parallax-1 {
  background: url("../images/bg-home-cerita-kami.jpg") top center;
  background-size: cover;
}

.dari-lapangan{
	position: relative;
    background: #fff;
}
.dari-lapangan:before{
	content: "";
    position: absolute;
    width: 100%;
    /* max-height: 140px; */
    max-height: 200px;
    height: 100%;
    background: url(../images/section01-before.png) no-repeat top center;
    background-size: 100%;
    top: -10vw;
    left: 0;
}
.banner-title {
    font-family: 'bebas';
    font-size: 85px;
    color: #e97e00;
    position: absolute;
    top: 50%;
    left: 50vw;
    transform: translate(0,-50%);
    display: inline-block;
}
.banner-title:before {
    content: "";
    width: 13px;
    height: 86px;
    position: absolute;
    left: -25px;
    top: -6px;
    background: url(../images/title-before.png) no-repeat left center;
    background-size: 100%;
}
.banner-title:after {
    content: "";
    width: 13px;
    height: 86px;
    position: absolute;
    right: -25px;
    top: -6px;
    background: url(../images/title-after.png) no-repeat right center;
    background-size: 100%;
}
.title-lapangan h2{
	padding: 10px;
    border: 5px solid #dfdfdf;
    display: inline-block;
    font-family: 'bebas';
	margin: 20px 0;
}
.galeri-foto{
	background: url(../images/bg-galeri-foto.jpg) no-repeat center;
    background-size: cover;
	position: relative;
	padding-bottom: 200px;
}
.title-galeri h2{
	padding: 10px;
    border: 5px solid #ffffff;
    display: inline-block;
    font-family: 'bebas';
	margin: 20px 0;
	color: #ffffff;
}
.galeri-fluid{
	margin-bottom: 50px;
}
.galeri-fluid ul{
	padding: 0;
	margin-top: 30px;
	z-index: 10;
	position: relative;
}
.galeri-fluid ul li{
	float: left;
	width: 25%;
	height: 15vw;
    overflow: hidden;
	position: relative;
}
#video-small.galeri-fluid ul li{
	float: left;
    width: 20%;
    height: 75px;
    overflow: hidden;
    position: relative;
}
#video-small.galeri-fluid ul{
	margin-top: 10px;
}
.galeri-fluid ul li img{
	width: 105%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.modal-content{
	border-radius: 4px;
}
.modal-footer{
	border: none;
}
.galeri-foto:after {
    background: url(../images/galeri-after.png) no-repeat center bottom;
    background-size: 100%;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 15%;
    z-index: 0;
}
.galeri-foto .link-more a {
    border: 5px solid #fff;
    color: #fff;
}
.galeri-caption{
	position: absolute;
	bottom: 0;
	right: 0;
	background: rgba(255,255,255,0.75);
	padding: 5px 15px 5px 45px;
	text-align: right;
}
.galeri-caption h5{
	display: inline-block;
	position: relative;
}
.galeri-caption h5:before{
	position: absolute;
    top: -3px;
    left: -30px;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/album-ico.png) no-repeat center;
    background-size: 100%;
}

.energia{
	background-color: #e0e1e1;
}
.energia-title {
    color: #333;
    font-size: 52px;
    font-weight: bold;
    border-bottom: 8px solid #fbb305;
    padding-bottom: 5px;
    display: inline-block;
    font-family: 'bebas';
    margin-bottom: 30px;
	margin-right: 10%;
}
#energia-gallery .modal-content {
    border-radius: 4px;
    max-width: 500px;
    width: 100%;
}
.modal-body {
    position: relative;
    padding: 0 15px;
}
.modal-header {
    border: none;
}
.modal-title {
    margin-top: 10px;
}
.energia li{
	float: left;
	margin-bottom: 45px;
}
.energia li .img-box{
	overflow: hidden;
    position: relative;
    height: 360px;
    width: 255px;
	margin: auto;
}
.energia li img{
	width: 101%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.energia li h4{
	text-align: center;
}
.dictionary h4{
	font-family: 'bebas';
	margin-bottom: 20px;
}
.dictionary p.text{
	padding-left: 20px;
	border-left: 8px solid #dfdfdf;
	margin-left: 10px;
}
.dictionary .text-box{
	margin-bottom: 30px;
}

/* --- Bisnis-Kami ---*/
section.module.parallax-1.bg-bisnis-kami {
  background: url("../images/bg-home-bisnis-kami.jpg") top center;
  background-size: cover;
}
.title-bisnis h2 {
    padding: 10px 30px 10px 10px;
    border: 3px solid #dfdfdf;
    display: inline-block;
    font-family: 'bebas';
    position: relative;
}
.title-bisnis h2:after {
    position: absolute;
    top: 0;
    right: 5px;
    content: "+";
}
.our-experiences{
	background: url("../images/bg-our-experiences.jpg") center center;
  	background-size: cover;
}
.our-experiences p{
	color: #fff;
}

/* --- Our-Signature ---*/
section.module.parallax-1.home-our-signature {
  background: url("../images/bg-home-signature.jpg") bottom center;
  background-size: cover;
}

/* Our-Experiences */
.grey-box03{
	padding: 15px;
	background: #e3dddd;
	margin-bottom: 30px;
}
.grey-box03 h5{
	border-bottom: 3px solid #f45858;
	padding-bottom: 10px;
}
.grey-box03 ul{
	margin-left: 20px;
}
.grey-box03 ul li{
	font-family: 'Roboto', sans-serif;
	list-style: disc;
}

/* --- Corporate-Governance ---*/
section.module.parallax-1.bg-corporate {
  	background: url("../images/bg-home-corporate.jpg") top center;
  	background-size: cover;
}
.code-cgc{
	background: url("../images/bg-code-cgc.jpg") center center;
  	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
.code-cgc2{
	background: url("../images/bg-bisnis.jpg") center center;
  	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
.organ-pendukung .d-table p,
.organ-pendukung .d-table div{
	display: table-cell;
	vertical-align: middle;
	padding-left: 15px;
	margin: 0;
	width: 80%;
}
.organ-pendukung .d-table{
	float: right;
	height: 30px;
	margin: 0 0 10px;
	width: 100%;
}
.organ-pendukung .d-table a{
	Margin: 0;
}
.organ-pendukung-dl{
	margin-top: 100px;
}
.download-list h3{
	margin: 50px 0;
}
.pedoman{
	background: url("../images/bg-pedoman.jpg") center center;
  	background-size: cover;
	background-attachment: fixed;
	color: #333;
}
.dl-block{
	margin-top: 100px;
}

/* home-qhsse */
section.module.parallax-1.bg-qhsse-home{
	background: url(../images/bg-home-tentang-kami.jpg) top center;
    background-size: cover;
    height: 600px;
}

/* --- Investor --- */
section.module.parallax-1.bg-investor {
  	background: url("../images/bg-home-investor.jpg") top center;
  	background-size: cover;
}
.statistik-map{
	background: url("../images/map-statistik.png") center bottom #e7e7e7;
	background-size: cover;
}
.kepemilikan-saham{
	background: url("../images/bg-kepemilikan-saham.jpg") center center;
  	background-size: cover;
	background-attachment: fixed;
}
.saham-img{
	-webkit-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
    box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
}
.ikhtisar-keuangan{
	background: #fff;
  	background-size: cover;
}
.ikhtisar-keuangan .d-table{
	height: auto;
	margin: 20px auto;
}
.polygon{
	padding: 15px;
	background: #fff;
	border-top: 1px solid #9b9da1;
	border-bottom: 1px solid #9b9da1;
	position: relative;
	max-width: 700px;
	margin: auto;
	-webkit-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
    box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	transition: all .2s ease-in-out; 
}
.polygon:before{
	content: "";
    position: absolute;
    top: 0;
    left: -27px;
    width: 30px;
    height: 100%;
    background: url(../images/ikhtisar-before.png) center left no-repeat;
    background-size: 100%;
}
.polygon:after{
	content: "";
    position: absolute;
    top: 0;
    right: -27px;
    width: 30px;
    height: 100%;
    background: url(../images/ikhtisar-after.png) center left no-repeat;
    background-size: 100%;
}
.polygon:hover{
	 transform: scale(1.1); 
}
.ikhtisar-keuangan .d-table img,
.ikhtisar-keuangan .d-table div {
	display: table-cell;
	vertical-align: middle;
	padding: 5px;
}
.ikhtisar-keuangan .d-table img{
    padding-right: 30px;
}
.laporan-tahunan{
	background: url("../images/bg-laporan-tahunan-2.png") center top, url("../images/bg-laporan-tahunan.jpg") center top;
  	background-size: cover;
	padding: 15px 15px 35px;
}
.laporan-block{
	max-width: 800px;
	margin: 30px auto 0;
	color: #fff;
	-webkit-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
    box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
}
.laporan-block h3{
	font-family: 'roboto';
	color: #fff;
}
.tabel-laporan thead{
	color: #fff;
	background: #3b31be;
}
.tabel-laporan tbody{
	color: #fff;
}
.tabel-laporan td{
	padding: 10px 0;
	border-bottom: 1px solid #8e8588;
}.tabel-laporan td a{
	color: #fff;
}
.tabel-download{
	background: url("../images/tabel-download.png") center left no-repeat;
	background-position: 25% center;
}
.piagam{
	padding:0px 0px 50px 0px;
	border-bottom: 1px solid #333;
}
.piagam .row{
	margin-top: 50px;
}
.piagam img{
	margin: auto;
}
.piagam.pencapaian{
	border: none;
}

/* --- Dari-Lapangan --- */
.list-cerita{
	
}
.img-cerita-box{
	overflow: hidden;
	height: 250px;
	position: relative;
}
.img-cerita-box img{
	height: auto;
    width: 110%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.caption-list-cerita{
	position: relative;
    top: -45px;
    left: 0;
}
.caption-list-cerita .d-table {
    height: 100px;
	width: 90%;
}
.caption-list-cerita .caption {
    padding: 10px;
	background: #f1f1f1;
}

/* --- Detail-Lapangan --- */
.main-detail,
.sidebar-detail{
	float: left;
}
.main-detail{
	width: 68%;
    margin-right: 6%;
}
.sidebar-detail{
	width: 26%;
}
.main-detail .detail-date{
	margin: 0;
	color: #d60405;
}
.main-detail h1{
	font-family: 'roboto';
    margin: 0 0 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #333;
}
.share-btn li{
	float: right;
	margin-left: 5px;
}
.share-btn img{
	width: 40px;
}
.img-main{
	position: relative;
	margin-bottom: 30px;
}
.caption-main{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px;
	color: #333;
	background: #ebebeb;
	width: 100%;
}
.caption-main p{
	margin: 0;
}
.komentar{
	margin-top: 50px;
}
.title-komentar{
	border-bottom: 1px solid #333;
}
.title-komentar h4{
	border-bottom: 5px solid #fe0002;
	display: inline-block;
	padding-bottom: 10px;
	margin: 0;
}
.komentar textarea{
	margin-bottom: 20px;
	resize: none;
}
.komentar .btn{
	background: #fe0002;
	color: #fff;
	font-family: 'bebas';
}
.detail-komentar{
	border-bottom: 1px solid #c2c2c2;
	margin-bottom: 20px;
}
.artikel-lainnya{
	margin-top: 30px;
}
.artikel-lainnya h4{
	margin: 0;
	padding-bottom: 10px;
	border-bottom: 5px solid #f9b305;
}
.artikel-date{
	margin: 0;
	font-size: 12px;
	opacity: 0.8;
}
.artikel-list{
	margin-top: 20px;
	border-bottom: 1px solid #c2c2c2;
	padding-bottom: 10px;
}
.artikel-list p{
	margin: 0;
}

/* --- Karir --- */
section.module.parallax-1.bg-karir {
  	background: url("../images/bg-home-karir.jpg") top center;
  	background-size: cover;
}
.head-karir{
	padding: 10px;
    color: #333;
	display:  block;
    min-width: 200px;
	border-bottom: 1px solid #333;
}
.head-karir p{
	margin: 0;
    display: inline-block;
    font-family: 'bebas';
    font-size: 25px;
}
.chief-mechanic{
	background: #fff;
  	background-size: cover;
}
.chief-mechanic img{
	margin: auto;
}
.chief-box{
	padding: 30px;
	background: rgba(255,255,255,0.9);
}
.chief-box p{
	text-align: center;
}
.tabel-driller{
	max-width: 900px;
	width: 100%;
	margin: 30px auto 0;
}
.tabel-driller table{
	border: 1px solid #dddddd;
}
.tabel-driller td{
	width: 33.33%;
	text-align: left;
	padding: 10px;
}
.tabel-driller thead{
	background: #ff4000;
	color: #fff;
}
.tabel-driller thead td{
	background: #ff4000;
	color: #fff;
	padding: 10px;
}
.tabel-driller tr:nth-child(even) {
	background: #dddddd;
}
.tabel-driller tr:nth-child(odd) {
	background: #FFF;
}

/* --- Peluang-Karir --- */
.grey-box{
	padding: 20px;
	background: #ececec;
	margin-bottom: 20px;
}
.grey-box ul{
	padding-left: 30px;
}
.grey-box ul.number{
	list-style: decimal;
}
.grey-box ul.strip{
	list-style: disc;
}
.grey-box ul li{
	margin: 5px 0;
}
.blue-box{
	padding: 20px;
	background: #3e5686;
	color: #fff;
}
.blue-box a{
	color: #fff;
}

/* --- Testimonial --- */
.main-testi{
	background: #ececec;
	display: table;
	max-width: 1000px;
	margin: auto auto 50px;;
}
.main-testi .img-testi,
.main-testi .caption-testi{
	display: table-cell;
	vertical-align: middle;
}
.main-testi .img-testi{
	width: 40%;
	vertical-align: top;
}
.main-testi .caption-testi{
	width: 60%;
	padding: 30px 30px 30px 10px;
	box-sizing: border-box;
}
.list-testi{
	max-width: 1000px;
	margin: auto auto 30px;
	display: table;
}
.list-testi .tb-img{
	display: table-cell;
    vertical-align: middle;
    padding-right: 97px;
}
.list-testi .img-testi{
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    height: 200px;
    width: 200px;
}
.list-testi .img-testi img{
	width: auto;
    height: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.list-testi .caption-testi{
	display: table-cell;
	vertical-align: middle;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    background: #ececec;
    margin-left: 100px;
	position: relative;
}
.list-testi .caption-testi:before{
	position: absolute;
	width: 50px;
	height: 100%;
	background: url("../images/rect-testi.png") center right no-repeat;
	background-size: 100%;
	content: "";
	top: 50%;
	left: -50px;
	transform: translate(0,-50%);
}
.pagination>li>a, .pagination>li>span {
    border: none;
	border-radius: 50%;
	color: #333;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
	background: #ececec;
	color: #333;
}
.pagination>li:first-child>a, .pagination>li:first-child>span,
.pagination>li:last-child>a, .pagination>li:last-child>span  {
    border-radius: 50%;
}

/* PDSI-Understand  */
.understand-img{
	background: #e5e5e5;
    padding: 15px;
    min-height: 315px;
}
.understand-img img{
	margin: auto;
}

/* --- Product-Services --- */
.product-services .resp-vtabs ul.resp-tabs-list {
    width: 20%;
    margin-right: 80px;
}
.product-services .resp-vtabs .resp-tabs-container {
    width: 70%;
}
.product-services .resp-tabs-list.hor_1 li{
	font-family: 'bebas';
	color: #ff0303;
	background: transparent !important;
	position: relative;
	font-size: 15px;
}
.product-services .resp-tabs-list.hor_1 li:before {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff0303;
    bottom: 50%;
    left: 0;
	transform: translate(-50%,0);
    content: "";
}
.product-services .resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 10px 15px 10px 15px !important;
    margin-bottom: 4px !important;
    border: none !important;
	color: #0368ff;
}
.product-services .resp-vtabs li.resp-tab-active:after {
    position: absolute;
    width: 100%;
    max-width: 96%;
    height: 2px;
    background: #0368ff;
    bottom: 0;
    left: 14px;
    content: "";
}
.product-services .resp-vtabs li.resp-tab-active:before {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #0368ff;
    bottom: 50%;
    left: 0;
	transform: translate(-50%,0);
    content: "";
}
.product-services .resp-tab-active {
    margin-bottom: -1px !important;
    padding: 10px 14px 10px 14px !important;
	border: none !important;
}
.product-services .resp-vtabs .resp-tabs-container{
	border: none !important;
}
.top-drive-table{
	-webkit-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
}
.top-drive-table tr th,
.top-drive-table tr td
{
	padding: 8px 20px;
	background: #ececec;
	border-bottom: 1px solid #fff;
}
.top-drive-table tr th{
	background: #189595;
	color: #fff;
	padding: 20px;
}
.top-drive-table tr th:first-child,
.top-drive-table tr td:first-child{
	border-right: 1px solid #fff;
}
.top-drive-table tr:nth-child(odd) td{
	background: #e3dddd;
}
.top-drive-table tr td:first-child{
	font-weight: bold;
}
.resp-tabs-list.hor_1 a{
	color: #333;
	display: block;
}
.section-category{
	margin: 0;
    font-family: 'bebas';
    color: #fff;
    border: 1px solid #333;
    color: #333;
    padding: 10px;
    display: inline-block;
}
.section-category.blue{
    background: #0368ff;
}
.section-category.green{
    background: #487c0a;
}
.section-category-box{
	background: #e9e9e9;
	padding: 20px 20px 0;
	margin-bottom: 30px;
}
.section-category-box-detail{
	overflow: hidden;
	position: relative;
	height: 125px;
}
.section-category-box-detail img{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
.section-category-box h4{
	font-size: 12px;
	text-align: center;
	margin-bottom: 20px;
}
.modal-box-img{
	overflow: hidden;
	position: relative;
	height: 400px;
}
.modal-box-img img{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.red-block{
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	height: 100%;
	background: #ff0303;
	border-right: 2px solid #fff;
}
.blue-block{
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	height: 100%;
	background: #00aeef;
	border-right: 2px solid #fff;
}
.product-gallery-title{
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
}
.product-gallery-title h4{
	margin: 0;
	font-size: 16px;
	font-weight: bold;
	font-family: 'Roboto', sans-serif;
	position: relative;
	padding: 10px 10px 10px 20px;
}
.product-gallery-title h4:after{
	position: absolute;
    content: "";
    height: 42px;
    width: 40px;
    background: url(../images/h4-after.png) top left no-repeat;
    top: 0;
    right: -30px;
}
.product-gallery-title h4:before{
	position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #00aeef;
    top: 50%;
    left: 3px;
    transform: translate(0,-50%);
}
#product-gallery .modal-footer{
	text-align: left;
	max-height: 300px;
    overflow-y: scroll;
}
#product-gallery .title-modal{
	border-bottom: 1px solid #333;
	margin-top: 20px;
}
.head-tab{
	position: relative;
}
.detail-tab{
	position: relative;
}
.detail-tab:after{
	position: absolute;
	content: ":";
	top: 0;
	left: -14px;
}
.modal-footer p{
	margin: 2px 0;
}
.hr-tab{
	padding: 0;
	margin: 5px 0;
	border-top: 1px solid #333;
}
.head-table td{
	padding: 2px 0 !important;
}
.modal-table{
	width: 100%;
	margin-top: 15px;
}
.modal-table tr{
	width: 100%;
	border-bottom: 1px solid #ececec;
}
.modal-table tr:first-child{
	border-bottom: 1px solid #333;
}
.modal-table td{
	padding: 2px 10px;
}
.modal-table tr td:first-child{
	font-weight: bold;
}
.modal-table.tab2 tr td:first-child{
	font-weight: normal;
}
.row-bottom-border{
	border-bottom: 1px solid #dfdfdf;
}
/* Water Pump */

.water-wrap {
  margin: 0 auto;
  text-align: left;
  color: #5e5e5e;
}

.table-pump {
	background-color: #ffffff;
	max-width: 600px;
	width: 100%;
	/*margin: 50px auto; */
	margin:28px auto;
}

.table-pump ul li {
  float: left;
  width: 300px;
  text-align: center;
}
.table-pump ul li .bottom-pump {
  border-left: 1px solid #DDDCD8;
  border-bottom: 1px solid #DDDCD8;
}
.table-pump ul li:last-child .bottom-pump{
  border-right: 1px solid #DDDCD8;
}

.top-pump {
  background-color: #EAE9E4;
  height: 95px;
}
.top-pump h1 {
  padding-top: 20px;
  font-size: 18px;
  margin-top: 0;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 60px;
    font-size: 14px;
    color: #fff;
    line-height: 80px;
    text-align: center;
    background: #989A8F;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-weight: bold;
	-webkit-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
}

.bottom-pump {
    padding-top: 50px;
}
.bottom-pump p {
  font-size: 13px;
  padding: 5px;
  /*min-height: 65px; */
  min-height:34px;
  
}
.bottom-pump p span {
  font-weight: bold;
}

.purple {
  background-color: #189595;
}

.white {
  color: #FFFFFF;
}

.centri-pump{
	margin-bottom: 30px;
	margin-top: 30px;
	display: inline-block;
	background: #189595;
	-webkit-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
}
.centri-head{
	padding: 20px;
	background: #189595;
	float: left;
}

.centri-head h3{
	color: #fff;
	font-size:20px;

}
.engine-pump{
	float: left;
	padding: 20px;
	background: #fff;
	color: #5e5e5e;
}
.centri-pump li span{
	min-width: 120px;
    display: inline-block;
}

.table-aerated{
	display: table;
	margin-bottom: 3px;
}
.head-aerated{
	display: table-cell;
	vertical-align: middle;
	padding: 5px 20px;
	background-color: #189595;
	/*background-color: #FF5656; */
	color: #fff;
}
.head-aerated h5{
	/*font-size: 20px; */
	font-size: 16px;
    margin: 0;
}
.mid-aerated{
	display: table-cell;
	vertical-align: middle;
	padding: 5px 20px;
	max-width: 500px;
}
.unit-aerated h5{
	display: table-cell;
    vertical-align: middle;
}
.unit-aerated h5{
	width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    /* line-height: 60px; */
    text-align: center;
    background: #989A8F;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-weight: bold;
   /* width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    background: #989A8F;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-weight: bold; */
   /* -webkit-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75); */
}
.head-aerated{
	-webkit-box-shadow: -7px 6px 11px -5px rgba(174,0,0,0.75);
    -moz-box-shadow: -7px 6px 11px -5px rgba(174,0,0,0.75);
    box-shadow: -7px 6px 11px -5px rgba(174,0,0,0.75);
}
.centri-pump .coring li span {
    min-width: 165px;
    display: inline-block;
}
.table-h2s{
	display: table;
	width: 100%;
}
.table-h2s .column1,
.table-h2s .column2,
.table-h2s .column3,
.table-h2s .column4,
.table-h2s .column5{
	display: table-cell;
	vertical-align:middle;
	padding: 5px 20px;
}
.table-h2s .column1{
	width: 10%;
	text-align: center;
	background: #006969;
	color: #fff;
	font-weight: bold;
	font-family: 'bebas';
}
.table-h2s .column2{
	width: 30%;
	background: #fff;
	color: #333;
}
.table-h2s .column3{
	width: 15%;
	text-align: center;
	background: #fff;
	color: #333;
}
.table-h2s .column4{
	width: 15%;
	text-align: center;
	background: #fff;
	color: #333;
}
.table-h2s .column5{
	width: 30%;
	background: #fff;
	color: #333;
}
.table-h2s .head.column1{
	background: #005050;
	color: #fff;
	text-align: center;
}
.table-h2s .head.column2{
	background: #FF5656;
	color: #fff;
	text-align: center;
}
.table-h2s .head.column3{
	background: #F82727;
	color: #fff;
	text-align: center;
}
.table-h2s .head.column4{
	background: #AE0000;
	color: #fff;
	text-align: center;
}
.table-h2s .head.column5{
	background: #850000;
	color: #fff;
	text-align: center;
}
.h2s-wrap .engine-pump {
    width: 100%;
    min-height: 320px;
	background: rgba(248,80,50,0);
background: -moz-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(234,233,238,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248,80,50,0)), color-stop(0%, rgba(241,111,92,0)), color-stop(0%, rgba(246,41,12,0)), color-stop(0%, rgba(240,47,23,0)), color-stop(100%, rgba(234,233,238,1)));
background: -webkit-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(234,233,238,1) 100%);
background: -o-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(234,233,238,1) 100%);
background: -ms-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(234,233,238,1) 100%);
background: linear-gradient(to bottom, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(234,233,238,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#eae9ee', GradientType=0 );
}
.h2s-wrap .engine-pump p{
    font-size: 12px;
}
.h2s-wrap .bx-wrapper .bx-viewport {
    padding: 0 10px;
}
.h2s-wrap .centri-pump{
	margin-bottom: 0;
	background: none;
	box-shadow: none;
	width: 250px;
}
.h2s-wrap .centri-head {
    padding: 0;
    float: none;
	background: #fff;
	position: relative;
}
.h2s-wrap .centri-head h3{
    color: #333;
    margin: 0;
    padding: 18px;
    background: #dfdfdf;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    top: -25px;
    left: 50%;
    transform: translate(-50%,0);
    font-size: 22px;
    line-height: 24px;
}
.h2s-wrap .bx-wrapper{
	max-width: 750px !important;
    margin: auto;
    margin-top: 50px;
}
.h2s-wrap li{
	margin-right: 20px;
}
.h2s-wrap .bx-wrapper .bx-prev {
    left: -30px;
    opacity: 0.8;
}
.h2s-wrap .bx-wrapper .bx-next {
    right: -32px;
    opacity: 0.8;
}
.h2s-wrap .slide{
	padding-bottom: 20px;

}
.active-slide{
	z-index: 10;
}
.active-slide .centri-pump {
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
}
.h2s-wrap .active-slide .engine-pump {
    max-width: 300px;
    min-height: 320px;
	background: rgba(248,80,50,0);
background: -moz-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248,80,50,0)), color-stop(0%, rgba(241,111,92,0)), color-stop(0%, rgba(246,41,12,0)), color-stop(0%, rgba(240,47,23,0)), color-stop(100%, rgba(54,159,159,1)));
background: -webkit-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
background: -o-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
background: -ms-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
background: linear-gradient(to bottom, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#369f9f', GradientType=0 );
}
.h2s-wrap .active-slide .centri-head h3{
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
}

/* Water Pump */

/* Info-lelang */
.head-lelang{
	padding: 10px 20px;
	background: #d60404;
	color: #fff;
	-webkit-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
	margin-top: 20px;
}
.list-lelang{
	padding: 10px 20px 20px 20px;
	background: #dfdfdf;
	color: #5f5f5f;
	font-style: italic;
	font-weight: bold;
	margin-top: 8px;
	font-size: 16px;
}
.list-lelang:hover{
	-webkit-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
    box-shadow: -7px 6px 11px -5px rgba(0,0,0,0.75);
	margin-left: -5px;
}
.btn-lelang {
	margin-top: 20px;
}
.btn-lelang a{
	padding: 10px 20px;
	font-weight: bold;
	font-size: 14px;
	background: #534c4c;
	color: #fff;
	display: inline-block;
}

/* PDSI-care */
section.module.parallax-1.bg-pdsi-care {
  	background: url("../images/bg-home-pdsi-care.jpg") top center;
  	background-size: cover;
}

.care-img{
	background: #e5e5e5;
	padding: 15px;
	min-height: 460px;
}
.care-img img{
	margin: auto;
}
.care-title{
	font-size: 18px;
	font-weight: bold;
	color: #ff0a0d;
}
.form-survey{
	padding: 15px 0;
	background: #b6b5b5;
}
.form-survey h3{
	padding: 0;
	margin: 10px 0;
}
.kode-pelanggan{
	background: url("../images/bg-kode-pelanggan.jpg") center center;
  	background-size: cover;
	background-attachment: fixed;
}
.grey-box02 {
    padding: 20px 0 20px 20px;
    background: #ececec;
	opacity: 0.8;
}
.kode-pelanggan table{
	font-family: 'bebas';
}
.kode-pelanggan thead tr td{
	font-size: 30px;
	color: #ff5a00;
	width: 50%;
	padding: 10px;
}
.kode-pelanggan tbody tr td.number{
	font-size: 36px;
	color: #333;
	text-align: left;
}
.kode-pelanggan tbody tr td{
	font-size: 18px;
	color: #333;
	text-align: left;
	padding-left: 10px;
}
.kode-pelanggan tbody tr{
	border-bottom: 1px solid #333;
}

/* Team-Management */
.boc{
	margin-bottom: 100px;
}
.boc-img-box{
	overflow: hidden;
	position: relative;
	height: 310px;
	padding: 50px;
}

.boc-img-box img{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 125%;
}
#team-gallery .modal-header{
	padding: 0;
}
#team-gallery .modal-header .close{
	position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dfdfdf;
    right: -10px;
    top: -14px;
    opacity: 1;
    line-height: 0;
	z-index: 999;
}
#team-gallery.modal.in .modal-dialog {
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    margin: 0;
	transition: none;
}
#team-gallery.modal.fade .modal-dialog{
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    margin: 0;
	transition: none;
}
#team-gallery-occupation{
	margin: 5px 0 20px;
}
#team-gallery-caption{
	padding-right: 15px;
	padding-bottom: 15px;
	font-size: 12px;
}
#team-gallery-image{
	width: auto;
}
.team-title{
	font-weight: bold;
	margin: 10px 0 0 0;
}
.team-occupation{
	margin: 0;
}
.boc a,
.bod a{
	outline: 0;
}
.modal .row{
	margin: 0;
}
.modal-boc-img-box{
	overflow: hidden;
	position: relative;
	height: 435px;
}
.modal-boc-img-box img{
	position: relative;
    top: 0;
    left: 50%;
    height: 105%;
    transform: translate(-50%,0);
}
.bod-img-box {
    overflow: hidden;
    position: relative;
    height: 310px;
    padding: 15px;
}
.bod-img-box img{
	position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 105%;
}

/* Tentang-Kami */
section.module.parallax-1.bg-tentang-kami {
  	background: url("../images/bg-home-tentang-kami.jpg") top center;
  	background-size: cover;
	/*height: 700px;*/
}
.bg-tentang-kami .banner-title{
	/*top: 30%;*/
}
.title-tentang-kami{
	color: #333;
    font-size: 52px;
    font-weight: bold;
    border-bottom: 8px solid #fbb305;
    padding-bottom: 5px;
	padding-right: 25px;
    display: inline-block;
    margin-bottom: 0 !important;
}
.sejarah img{
	margin-top: 10px;
}
.kontak.grey-version{
	background: #ededed;
}
.kontak.grey-version input, .kontak textarea {
    width: 100%;
    margin-bottom: 10px;
    background: #f0f0f0;
    border: 1px solid #dfdfdf;
    padding: 15px;
	resize: none;
}
.kontak.grey-version .bord{
	position: relative;
}
.kontak.grey-version .bord:after{
	position: absolute;
    width: 1px;
    content: "";
    height: 375px;
    background: #dfdfdf;
    top: 0;
    right: 22%;
    transform: translate(-22%,0);
}
.wrap-sub-menu{
	position: relative;
}
.sub-menu{
	position: absolute;
    top: -20px;
    left: -102px;
    cursor: pointer;
}
.inner-sub-menu{
	position: absolute;
	top: -60px;
	left: 0;
	opacity: 0;
	transition: ease-in-out 0.5s;
}
.inner-sub-menu ul{
	padding: 20px 0 20px 20px;
	border: 1px solid #5e5e5e;
	background: rgba(255,255,255,0.7);
}
.inner-sub-menu li{
	float: left;
	padding: 0px 20px;
	position: relative;
}
.inner-sub-menu li:before{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #da0404;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
.inner-sub-menu li a{
	font-family: "bebas";
	font-size: 18px;
}
.inner-sub-menu.active{
	opacity: 1;
}
.banner-extra{
	position: absolute;
    border-bottom: 0;
    left: 33%;
    bottom: 15%;
    transform: translate(-20%,-20%);
}
.banner-extra p{
	color: #fff;
}
.nilai-title{
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
}
.tata-nilai img{
	margin: auto;
	height: 184px;
	width: auto;
}
.nilai-box{
	margin-bottom: 30px;
}

/* Energia */
.energia.home{
	background: #fff;
}
/*.filter{
	text-align: -webkit-right;
	text-align: -moz-right;
}*/
.filter .tahun{
	display: table;
}
.filter label,
.filter select{
	display: table-cell;
	vertical-align: middle;
	padding-right: 10px;
}

/* Energia-annual */
.energia-annual{
	background: #fff;
}
.energia-annual .bisnis-title{
	color: #333;
	font-size: 24px;
}
.thumb-med li{
	float: left;
	margin-right: 16px;
}
.thumb-box{
	width: 160px;
	height: 220px;
	overflow: hidden;
	position: relative;
}
.thumb-box img{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
.bord{
	border-left: 1px solid #dfdfdf;
	padding-left: 35px;
}

/* Our-Signature */
.takakura img{
	margin-top: 10px;
}
.green-drilling{
	background: #e1e1e1;
  	background-size: cover;
}
.cyber-technology{
	padding-bottom: 0;
}
.takakura{
	background: url(../images/cyber-technology.png) right bottom no-repeat;
	background-size: 24%;
}

/* Form */
.form-pdsi{
	margin-top: 150px;
}
.form-title{
	margin-bottom: 50px;
}
.form-pdsi textarea{
	resize: none;
}
.form-pdsi label {
    margin: 25px 0 10px;
}
.form-pdsi .radio label {
    margin: 0 0 5px;
}

/* SCM */
section.module.parallax-1.bg-scm {
  	background: url("../images/bg-scm.jpg") top center;
  	background-size: cover;
	height: 600px;
}
.scm-wrap{
	padding: 65px;
}
.part-section01{
	background: url(../images/gradient-white.png) repeat-y 250px 0, url(../images/scm01.jpg) no-repeat left center;
	background-size: 100%, cover;
	min-height: 170px;
	width: 800px;
	-webkit-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	-moz-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	margin-bottom: 40px;
}
.part-section01 .number01{
	position: absolute;
    top: -50px;
    left: -50px;
}
.part-section02{
	background: url(../images/gradient-white01.png) repeat-y -360px 0, url(../images/scm02.jpg) no-repeat right center;
	background-size: 100%, cover;
	min-height: 170px;
	width: 800px;
	-webkit-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	-moz-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	margin-bottom: 40px;
	float: right;
}
.part-section03{
	background: url(../images/gradient-white.png) repeat-y 250px 0, url(../images/scm03.jpg) no-repeat left center;
	background-size: 100%, cover;
	min-height: 170px;
	width: 800px;
	-webkit-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	-moz-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	margin-bottom: 40px;
}
.part-section04{
	background: url(../images/gradient-white01.png) repeat-y -360px 0, url(../images/scm04.jpg) no-repeat right center;
	background-size: 100%, cover;
	min-height: 170px;
	width: 800px;
	-webkit-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	-moz-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	margin-bottom: 40px;
	float: right;
}
.part-section01 .number01{
	position: absolute;
    top: -50px;
    left: -50px;
}
.part-section03 .number01{
	position: absolute;
    top: -50px;
    left: -50px;
}
.part-section01 h3{
	font-size: 26px;
}
.part-section03 h3{
	font-size: 26px;
}
.part-section02 h3,
.part-section04 h3{
	font-size: 26px;
	text-align: right;
}
.part-section02 .number01,
.part-section04 .number01{
	position: absolute;
    top: -50px;
    right: -50px;
}
.part-section02:hover,
.part-section04:hover{
	margin-right: 20px;
	transition: all ease 0.5s;
}
.part-section01:hover,
.part-section03:hover{
	margin-left: 20px;
	transition: all ease-in-out 0.5s;
}
.text01{
	font-size: 36px;
}
.btn-wrap{
	position: relative;
    height: 170px;
}
.btn-wrap .link-download{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* Gallery */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/btn-play.png) no-repeat center #333;
    opacity: 0.5;
	z-index: 999;
}
.overlay:hover {
    opacity: 0.2;
}
.img-foto img{
	width: 80%;
}
.thumbnail-img{
	width: 100%;
	height: auto;
}

/* footer */
.footer{
	padding: 30px 0;
}
.submit{
	padding: 5px 30px;
    color: #fff;
    border: none;
	background: #cd0000;
}
.sosmed{
	margin-top: 20px;
}
.copyright p{
	font-size: 12px;
	color: #fff;
}
.teal{
	background: #131313 !important;
}
.portal{
	margin-top: 35px;
	margin-bottom: 35px;
}
.portal a{
	color: #dfdfdf;
    padding: 10px;
    position: relative;
    z-index: 100;
    background: #AE0000;
}
.portal a span{
	position: absolute;
    top: -9px;
    right: -12px;
    color: #dfdfdf;
    border-radius: 50%;
    -webkit-box-shadow: -16px 14px 27px -10px rgba(214,4,4,0.75);
    -moz-box-shadow: -16px 14px 27px -10px (214,4,4,0.75);
    box-shadow: -16px 14px 27px -10px (214,4,4,0.75);
    z-index: 10;
    font-size: 24px;
}

.rups-list li{
	padding: 6px 0 6px 35px;
	margin-left: 30px;
}
.rups-list li:nth-child(1){
	background: url('../images/rups-01.png');
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 25px;
}
.rups-list li:nth-child(2){
	background: url('../images/rups-02.png');
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 25px;
}
.rups-list li:nth-child(3){
	background: url('../images/rups-03.png');
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 25px;
}
.rups-list li:nth-child(4){
	background: url('../images/rups-04.png');
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 25px;
}
.rups-list li:nth-child(5){
	background: url('../images/rups-05.png');
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 25px;
}
.rups-table{
	position: relative;
	background: #F7B233;
	width:100%;
}
/*.rups-table:before{
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	top: -15px;
	left: 0;
	background: url('../images/rups-top-bg.png') top left no-repeat;
	background-size: 100%;
	opacity: 0.4;
}
.rups-table:after{
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	bottom: -15px;
	right: 0;
	background: url('../images/rups-bottom-bg.png') top left no-repeat;
	background-size: 100%;
	opacity: 0.4;
}*/
.rups-table td{
	padding: 10px 25px;
	vertical-align: top;
	position: relative;
}
.rups-table td strong{
	font-size: 18px;
}
.rups-table td:after{
	position: absolute;
	content: "";
	width: 5px;
	height: 29px;
	background: url('../images/rups-dot.png');
	background-repeat: no-repeat;
	background-position: top center;
	right: 0;
	top: 25px;
	opacity: 0.4;
}
.rups-table td:last-child:after{
	opacity: 0;
}
.rups-table-number{
	font-family: 'bebas';
	font-size: 24px;
	line-height: 56px;
	background: #333;
    color: #fff;
}
.rups-table-wrap{
	-webkit-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
    box-shadow: -16px 14px 27px -10px rgba(0,0,0,0.75);
	border-radius: 35px 0;
	overflow: hidden;
	margin: 50px 0;
}
.rups-table li{
	padding-bottom: 10px;
}

@media screen and (max-width: 1400px) {
.bx-wrapper .bx-next {
    right: 0;
}
.bx-wrapper .bx-prev {
    left: 0;
}
.sub-menu{
	position: absolute;
    top: -4px;
    left: -58px;
    cursor: pointer;
}
.sub-menu img{
	width: 70px;
	height: auto;
}
}

@media screen and (max-width: 1200px) {
.navbar-brand {
    width: 190px;
}
.navbar-nav>li>a{
padding: 10px 9px !important;
}
.d-table {
    height: 140px;
}
.cerita-kami .img-box {
    height: 240px;
}
.img-cerita-box {
    overflow: hidden;
    height: 210px;
    position: relative;
}
.caption-list-cerita .d-table {
    height: 100px;
    width: 95%;
}
.boc-img-box {
    overflow: hidden;
    position: relative;
    height: 280px;
    padding: 35px;
}
.bod-img-box {
    overflow: hidden;
    position: relative;
    height: 255px;
    padding: 10px;
}
#video-small.galeri-fluid ul li {
    height: 70px;
}
.slider-bisnis-kami li {
    height: 364px;
}
/*.h2s-wrap .engine-pump {
    max-width: 245px;
    min-height: 365px;
}*/
}
@media screen and (max-width: 992px) {
	
.product-services .resp-vtabs ul.resp-tabs-list {
    width: 20%;
    margin-right: 60px;
}
.navbar-brand {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
	width: 146px;
}
.navbar-nav>li>a {
    line-height: 55px;
    padding: 10px 5px !important;
}
.navbar-right {
    margin-right: 0;
	float: none !important;
	margin-top: 55px;
}
.bx-wrapper .bx-prev {
    left: 0;
}
.bx-wrapper .bx-next {
    right: 0;
}
.peta-operasi .container{
	width: 1170px !important;
}
.galeri-fluid ul li {
    width: 33.33%;
    height: 20vw;
}
.galeri-fluid ul li img{
	transform: translate(-50%,-50%);
}
.d-table {
    display: table;
    height: 180px;
    box-sizing: border-box;
}
.d-table.middle {
    position: absolute;
    top: 0;
    left: 0;
    height: 112px;
}
.caption h5 {
    font-size: 14px;
}
.cerita-kami .img-box {
    height: 195px;
}
.caption-list-cerita .d-table {
    height: 100px;
    width: 100%;
}
.img-cerita-box {
    overflow: hidden;
    height: 180px;
    position: relative;
}
.img-cerita-box img {
    height: auto;
    width: 130%;
}
.list-testi .tb-img {
    padding-right: 55px;
}
.care-img{
	margin-bottom: 20px;
}
.kontak.grey-version .bord:after{
	width: 0;
}
.sub-menu {
    position: absolute;
    top: -60px;
    left: 0;
    cursor: pointer;
}
.inner-sub-menu {
    top: -100px;
    left: 70px;
}
.inner-sub-menu li {
    padding: 0px 10px;
}
.inner-sub-menu li a {
    font-size: 16px;
}
.banner-extra {
    bottom: 4%;
}
.lang {
    top: 145px;
}
.list-point {
    width: 33.33%;
    box-sizing: border-box;
}
.slider-bisnis-kami li {
    height: 290px;
}
.sosmed img{
	height: 25px;
    margin: auto;
}
.copyright{
	text-align: center;
}
.whistleblowing:before,
.whistleblowing:after{
	width: 0;
}
.banner-title {
    font-size: 48px;
}
.banner-title:before,
.banner-title:after {
    height: 72px;
}
.boc-img-box {
    overflow: hidden;
    position: relative;
    height: 260px;
    padding: 0;
}
.bod-img-box {
    overflow: hidden;
    position: relative;
    height: 200px;
    padding: 0;
}
.scm-wrap {
    padding: 50px 0;
}
.part-section01,
.part-section02,
.part-section03,
.part-section04{
	margin-bottom: 70px;
	width: 100%;
}
#video-small.galeri-fluid ul li {
    height: 55px;
}
/*.h2s-wrap .engine-pump {
    max-width: 190px;
    min-height: 440px;
}*/
.h2s-wrap .centri-head {
    padding: 10px 5px;
}
}
@media screen and (max-width: 767px) {
.navbar-brand>img {
    width: 160px;
}
.navbar-nav>li>a {
    line-height: 50px;
    padding: 5px 10px !important;
}
.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 500px;
}
.navbar-toggle {
    border: none;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background: none;
}
.navbar-right {
    margin-top: 0 !important;
}
.navbar-nav>li>.dropdown-menu {
    background: #202a44;
    width: 100%;
    position: relative;
}
.navbar-nav {
    margin: 7.5px 0;
}
.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    padding: 0;
}
.searchbox.xs{
	position: absolute;
    top: 15px;
    left: 20px;
}
.searchbox.xs a{
	color: #fff !important;
}
#search input[type="search"] {
    font-size: 30px;
}
.banner-title {
    font-family: 'bebas';
    font-size: 30px;
    color: #e97e00;
    position: absolute;
    top: 50%;
    left: 50vw;
    transform: translate(-50%,-50%);
    display: inline-block;
	text-align: center;
}
.banner-title:before {
    left: -15px;
    top: -23px;
    background-size: 55%;
	height: 83px;
}
.banner-title:after {
    right: -15px;
    top: -23px;
    background-size: 55%;
	height: 83px;
}
.galeri-fluid ul li {
    width: 50%;
    height: 30vw;
}
.cerita-kami .img-box.middle img {
    height: auto;
    width: 100%;
}
.product-services .resp-vtabs .resp-tabs-container {
    width: 100%;
}
.modal-box-img {
    height: 55vw;
}
h2.resp-accordion {
    border: none;
	font-weight: bold;
	font-family: 'bebas';
}
.qhsse {
    margin-top: -9vw;
}
.ikhtisar-keuangan .d-table img {
    padding: 0;
}
.polygon:before,
.polygon:after{
	width: 0;
}
.tabel-download {
    background: none;
}
.piagam img {
    margin: 15px auto;
}
.main-detail {
    width: 100%;
    margin-right: 0;
}
.sidebar-detail {
    width: 100%;
}
.list-testi .caption-testi:before {
    width: 0;
}
.list-testi .img-testi {

    margin: auto;
}
.list-testi .tb-img {
    padding-right: 0;
    margin-bottom: 20px;
	display: block;
}
.list-testi {
   display: block;
   margin: auto auto 55px;
}
.list-testi .caption-testi {
    display: block;
	margin: 0;
    padding: 15px;
}
.main-testi .caption-testi {
    width: 100%;
    padding: 15px;
}
.main-testi .img-testi {
    width: 100%;
	display: block;
}
.main-testi {
    display: block;
}
.kontak{
	text-align: center;
}
.inner-sub-menu {
    top: -135px;
    left: 70px;
}
.inner-sub-menu li {
    padding: 3px 10px;
}
.banner-extra p {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
}
video#bgvid{
	top: 50px;
}
section.module.parallax-1.bg-tentang-kami {
    height: 700px;
	/* background: url("../images/bg-tentang-kami-mobile.jpg") no-repeat; */
	background-size: cover;
}
.middle02{
	width: 100%;
}
.d-table {
    display: table;
    height: 145px;
    box-sizing: border-box;
}
.link-more a {
    padding: 5px 24px 5px 5px;
    border: 3px solid #000;
    font-size: 14px;
    font-weight: bold;
}
.lang {
    top: 100px;
}
.list-point {
    float: left;
    width: 100%;
    box-sizing: border-box;
}
.slider-bisnis-kami li {
    height: 71vw;
}
.kontak-title {
    margin-top: 35px;
}
.footer img{
	margin: auto;
}
section.module.parallax {
    height: 400px;
}
.bg-tentang-kami .banner-title {
    top: 24%;
}
.form-pdsi {
    margin-top: 90px;
}
.investor .link-more {
    margin-top: 20px;
}
#team-gallery.modal {
	padding: 15px;
}
#team-gallery .modal-title {
    padding: 0 15px;
}
#team-gallery-caption{
	padding: 0 15px 15px;
}
.boc-img-box,
.bod-img-box {
    height: 90vw;
}
.modal-boc-img-box img{
	position: static;
    width: 100%;
    height: auto;
	transform: none;
}
.modal-boc-img-box {
    height: auto;
	overflow: auto;
}
#team-gallery.modal.fade .modal-dialog {
    top: 100px;
    left: 47%;
    transform: translate(-50%,0);
    margin: 0 15px 15px;
}
.team-occupation {
    margin: 0 0 25px;
}
.scm-text{
	color: #fff;
}
.part-section02:hover,
.part-section04:hover{
	margin-right: 0;
	transition: all ease 0.5s;
}
.part-section01:hover,
.part-section03:hover{
	margin-left: 0;
	transition: all ease-in-out 0.5s;
}
.part-section01 .number01,
.part-section02 .number01,
.part-section03 .number01,
.part-section04 .number01  {
    position: absolute;
    top: -50px;
    left: 0;
}
.text01 {
    font-size: 24px;
}
.part-section01 h3,
.part-section02 h3,
.part-section03 h3,
.part-section04 h3 {
    font-size: 18px;
}
.organ-pendukung-dl{
	margin-top: 50px;
}
#video-small.galeri-fluid ul li {
    float: left;
    width: 50%;
    height: 30vw;
    overflow: hidden;
    position: relative;
}
.table-pump ul li {
    float: left;
    width: auto;
    text-align: center;
    border-left: 1px solid #DDDCD8;
    border-right: 1px solid #DDDCD8;
    margin-bottom: 10px;
    border-bottom: 1px solid #DDDCD8;
}
.unit-aerated{
	display: table-cell;
    vertical-align: middle;
}
.unit-aerated h5 {
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 15px;
    color: #333;
    line-height: 20px;
    text-align: center;
    background: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-weight: bold;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.table-h2s {
    display: block;
    width: 100%;
}
.table-h2s .column1,
.table-h2s .column2,
.table-h2s .column3,
.table-h2s .column4,
.table-h2s .column5{
	display: block;
	width: 100%;
}
.bisnis-kami .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    bottom: 54%;
}
.h2s-wrap .engine-pump {
    max-width: 190px;
    min-height: auto;
}
.h2s-wrap .engine-pump {
    max-width: 300px;
    min-height: 320px;
	background: rgba(248,80,50,0);
background: -moz-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248,80,50,0)), color-stop(0%, rgba(241,111,92,0)), color-stop(0%, rgba(246,41,12,0)), color-stop(0%, rgba(240,47,23,0)), color-stop(100%, rgba(54,159,159,1)));
background: -webkit-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
background: -o-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
background: -ms-linear-gradient(top, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
background: linear-gradient(to bottom, rgba(248,80,50,0) 0%, rgba(241,111,92,0) 0%, rgba(246,41,12,0) 0%, rgba(240,47,23,0) 0%, rgba(54,159,159,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#369f9f', GradientType=0 );
}
.h2s-wrap .centri-head h3{
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.5);
}
.h2s-wrap .centri-pump {
        box-shadow: none;
}
#team-gallery-image {
    width: 100%;
}
.full-orange{
	width: 100%;
}
}
/* Iphone-Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
video#bgvid {
    top: -40px;
}
}
/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
video#bgvid {
    top: -40px;
}
}