/* RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="password"] {
  -webkit-appearance: none;
  border-radius: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* >> The Magnificent CLEARFIX << */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
* html .clearfix {
  height: 1%;
}

/* Hides from IE-mac \*/
.clearfix {
  display: block;
}


/* HAMBURGER BUTTON */
.cd-nav-trigger {
  height: 30px;
  width: 30px;
  z-index: 107;
  /* image replacement */
  overflow: hidden;
  white-space: nowrap;
  display: block;
  position: absolute;
  right: 5%;
  top: 10px;
}
.cd-nav-trigger.close-nav {
  position: fixed;
}

/* Icon Created Function in CSS */
.cd-nav-trigger .cd-icon {                      /* for setting menu icon line, untuk setting garis tengah menu list */
  /* icon created in CSS */
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  right: auto;
  display: inline-block;
  width: 30px;
  height: 3px;                                  /* For setting line size on menu list, untuk setting ketebalan garis menu list */
  background-color: #0163B7;                    /* def : #d71920 */
  z-index: 108;
  margin-top: -2px;
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
}
.cd-nav-trigger .cd-icon::before,               /* For setting 2 line bottom and up line menu list, untuk setting garis menu atas dan bawah menu list */
.cd-nav-trigger .cd-icon:after {
  content: "";
  /* upper and lower lines of the menu icon */
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #0163B7;                    /* #d71920 */
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* apply transition to transform property */
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.cd-nav-trigger .cd-icon::before {                 /* transtition garis menu list nya */
  -webkit-transform: translateY(-9px) rotate(0deg);
  -moz-transform: translateY(-9px) rotate(0deg);
  -ms-transform: translateY(-9px) rotate(0deg);
  -o-transform: translateY(-9px) rotate(0deg);
  transform: translateY(-9px) rotate(0deg);
}
.cd-nav-trigger .cd-icon::after {
  -webkit-transform: translateY(9px) rotate(0deg);
  -moz-transform: translateY(9px) rotate(0deg);
  -ms-transform: translateY(9px) rotate(0deg);
  -o-transform: translateY(9px) rotate(0deg);
  transform: translateY(9px) rotate(0deg);
}
.cd-nav-trigger::before,
.cd-nav-trigger::after {
  content: "";
  /* 2 rounded colored backgrounds for the menu icon */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
}
.cd-nav-trigger::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cd-nav-trigger::after {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.cd-nav-trigger.close-nav::before {
  /* user clicks on the .cd-nav-trigger element - 1st rounded background disappears */
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.cd-nav-trigger.close-nav::after {
  /* user clicks on the .cd-nav-trigger element - 2nd rounded background appears */
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cd-nav-trigger.close-nav .cd-icon {                            /* function transtition menu icon */
  /* user clicks on the .cd-nav-trigger element - transform the icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-nav-trigger.close-nav .cd-icon::before,
.cd-nav-trigger.close-nav .cd-icon::after {
  background-color: white;
}
.cd-nav-trigger.close-nav .cd-icon::before {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.cd-nav-trigger.close-nav .cd-icon::after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}


/* NUKE WYSIWYG */
.nuke-wysiwyg {
  line-height: 1.75em;
  margin: 0 auto;
  margin-bottom: 15px;
}
.nuke-wysiwyg p,
.nuke-wysiwyg ol,
.nuke-wysiwyg ul {
  margin-bottom: 15px!important;
}
.nuke-wysiwyg ul {
  list-style: disc;
  padding-left: 15px;
}
.nuke-wysiwyg ol {
  list-style: decimal;
  padding-left: 22px;
}
.nuke-wysiwyg img {
  max-width: 100%;
  margin-bottom: 15px;
}
.nuke-wysiwyg a:hover {
  text-decoration: underline;
}
.nuke-wysiwyg h3 {
  font-weight: bold;
  color: #001538;
  margin-bottom: 10px;
  font-size: 1.14em;
}
p {
  line-height: 1.75em;
  margin-bottom: 15px;
}
img[align="left"],
img[style*="float: left"],
img[style*="float:left"] {
  margin: 0px 15px 10px 0px;
}
img[align="right"],
img[style*="float: right"],
img[style*="float:right"] {
  margin: 0px 0px 10px 15px;
}


/* LAZYSIZE */
.lazyload {
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
}
.lazyloaded {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  transition: all 700ms;
  -webkit-transition: all 700ms;
  -moz-transition: all 700ms;
  -o-transition: all 700ms;
}


/* */
.transition-all {
  transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
}
.transition-all350 {
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
}
.radius3px {
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
}
.radius5px {
  -webkit-border-radius: 5px!important;
  -moz-border-radius: 5px!important;
  border-radius: 5px!important;
}
.standardEffect {
  opacity: 0;
  visibility: hidden;
}
.standardEffect_active {
  opacity: 1;
  visibility: visible;
}
::-moz-selection {
  background: #efff00;                      /* def : #d71920, tapi buat apa?*/
  color: #fff;
  text-shadow: none;
}
::selection {
  background: rgba(190, 190, 190, 0.69);                      /* #d71920, untuk selection text nye, udh di test di form search */
  color: rgba(15, 57, 219, 0.84);                           /* untuk warna text nya kalo di select */
  text-shadow: none;
}


/* FONTS */                                             /* untuk mengubah jenis font standardnya */
.f-g3 {
  font-family: 'Gentleman300', sans-serif;
}
.f-g4 {
  font-family: 'Gentleman400', sans-serif;
}
.f-g6 {
  font-family: 'Gentleman600', sans-serif;
}
.f-g8 {
  font-family: 'Gentleman800', sans-serif;
}
body,
label,
input,
textarea,
select {
  font-family: 'Noto Sans', sans-serif;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.3em;
}
.f-red {
  color: #d71920;
}
.f-green {
  color: #387f0c;
}


/* GENERAL */
body,
input,
textarea,
select {
  color: #3d3d3d;
}
body,
label,
input,
textarea,
select {
  font-size: 12px;
  line-height: 1.5em;
}
a {
  color: #d71920;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}
.container950 {
  max-width: 950px;
}
.w945 {
  width: 100%;
  max-width: 945px;
  margin: 0 auto;
  display: block;
}
.w860 {
  max-width: 860px;
  margin: 0 auto;
}
.w750 {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  display: block;
}
.wcenter {
  text-align: center;
}
.resetlist {
  list-style: none;
}
.submit-btn,
.clear-btn {
  cursor: pointer;
}
.btn-round {
  display: inline-block;
  border: 1px solid #d71920;
  color: #001538;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.125em;
  padding: 10px 20px;
  -webkit-border-radius: 5px!important;
  -moz-border-radius: 5px!important;
  border-radius: 5px!important;
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  background-color: transparent;
}
.btn-round:hover {
  background: #d71920;
  color: #fff;
  text-decoration: none;
}


/* HEADER */
header {
  background: #FFF;
  color: #fff;
  position: relative;
  z-index: 10;
}
.header-top {                                   /* Setting Header Top Style */
  background: rgba(0, 68, 238, 0.77);                          /* #d71920 */
  height: 30px;
  display: none;
}
.header-bottom {
  height: 50px;
  background: #fff;
}
.header-top .container,
.header-bottom .container {
  position: relative;
}
.lang-sel {
  display: block;
  padding: 0 5px 0 22px;
  line-height: 30px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  float: left;
  background-image: url(../img/icon-globe.png);
  background-size: 12px auto;
  background-position: 5px center;
  background-repeat: no-repeat;
}
.lang-sel span {
  display: block;
  padding-right: 14px;
  background-image: url(../img/icon-arrow-down.png);
  background-size: auto 5px;
  background-position: right center;
  background-repeat: no-repeat;
}
.desktop-lang {
  position: absolute;
  left: 0;
  top: 20px;
  background: #d71920;                      /* def : #d71920,, for setting color background di form search */
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
}
.desktop-lang.opened {
  opacity: 1;
  visibility: visible;
  top: 30px;
}
.desktop-lang a {
  color: #fff;
}
.desktop-lang a,
.desktop-lang span {
  display: block;
  padding: 5px 10px;
  border-top: 1px solid #fff;
}
.desktop-lang span {
  padding-left: 22px;
  background-image: url(../img/lang-tip.png);
  background-position: 10px center;
  background-size: 5px auto;
  background-repeat: no-repeat;
}
.desktop-lang a:hover {
  background: #001538;
  text-decoration: none;
}
.cust-login {
  float: right;
  display: block;
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.1em;
  padding-left: 25px;
  font-size: 10px;
  background-image: url(../img/icon-login.png);
  background-size: auto 14px;
  background-position: left center;
  background-repeat: no-repeat;
}
.cust-career {
  margin-right: 30px;
  background-image: url(../img/icon-bag.png);
  background-size: auto 14px;
  background-position: left center;
  background-repeat: no-repeat;
}
#logo {
  margin-top: 5px;
  display: inline-block;
}
#logo img {
  display: block;
  height: 40px;
}
#main-nav {
  display: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  position: absolute;
  right: 0;
  bottom: 0;
}
#main-nav a {
  color: #3d3d3d;
  display: block;
  float: left;
  padding: 0 5px;
}
#main-nav a:hover,
#main-nav a.active {
  color: rgba(15, 57, 219, 0.39);                   /* def #d71920 */
  text-decoration: none;
}
#main-nav a.active {
  background-image: url(../img/red-dot.gif);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: left bottom;
}
#main-nav a.nav-home {
  text-indent: -9999px;
  width: 24px;
  padding: 0;
  margin-right: 10px;
}
#main-nav a.nav-home span {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../img/factory7_1.png);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
#main-nav a.nav-search {
  text-indent: -9999px;
  width: 20px;
  padding: 0;
}
#main-nav a.nav-search span {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../img/icon-search1.png);
  background-size: 12px auto;
  background-position: center center;
  background-repeat: no-repeat;
}
#main-nav a.nav-search:hover span {
  background-image: url(../img/icon-search2.png);
}
#main-nav a.nav-search.opened span {
  background-image: url(../img/close-x.png);
}
.search-form {                              /* For setting Search Form nya */
  position: absolute;
  right: -10px;
  top: 70%;
  background: #0163B7;                      /* def : #d71920, */
  height: 40px;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  z-index: 100;
}
.search-form.opened {
  opacity: 1;
  visibility: visible;
  top: 80%;
}
.search-form:after {
  content: "";
  display: block;
  width: 15px;
  height: 8px;
  background: url(../img/search-top.png) no-repeat center center;
  background-size: 15px 100%;
  position: absolute;
  right: 13px;
  top: -8px;
}
.search-form input.clearme {
  width: 250px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0 40px 0 15px;
  font-size: 14px;
  color: #fff;
  background: none;
  border: none;
}
.search-form .submit-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  border: none;
  background: none;
  color: #fff;
  font-size: 16px;
}
.mega-dropdown {
  background: #ececec;
  color: #001538;
  position: absolute;
  left: 0;
  top: 80%;
  width: 100%;
  height: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.mega-dropdown.opened {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
#drop-news.mega-dropdown {
  height: auto;
}
.nav-product-list {
  padding: 0 15px 15px;
  overflow: hidden;
  width: 100%;
  list-style: none;
}
.nav-product-list a {
  color: #3d3d3d;
}
.nav-product-list a:hover {                     /*  */
  color: #0163B7;
  text-decoration: none;
}
.nav-product-list li {
  width: 33.33%;
  padding: 0 15px;
  float: left;
  padding-top: 15px;
}
.nav-product-list h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.nav-product-list li img {
  display: block;
  width: 100%;
}
.nav-product-list li:hover img {
  opacity: .7;
}
.nav-product-list li:hover h3 a {                       /* for mobile nav, setting warna di mobile nav nya, tapi untuk font h3 nya */
  color: #0163B7;
}
#mobile-nav-wrap {                                      /* For setting Menu list */
  width: 100%;
  position: fixed;
  left: 0;
  top: -100px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: rgba(1, 99, 183, 0.52);                            /* #d71920, warna background menu list nya */
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
}
#mobile-nav-wrap.opened {
  opacity: 1;
  visibility: visible;
  top: 0;
}
#mobile-nav {
  width: 90%;
  max-width: 320px;
  margin: 0 auto;
  padding-top: 50px;
  color: #fff;
}
#mobile-nav a {
  color: #fff;
}
.mobile-search {
  position: relative;
}
.mobile-search .clearme {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 40px;
  border: none;
  padding: 0 40px 0 10px;
}
.mobile-search .submit-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-size: 14px;
}
.mobile-search .submit-btn:hover {
  color: #00ff00;                               /* Def #d71920, untuk warna apa? */
}
.mobile-lang {
  padding: 15px 0;
  line-height: 18px;
}
.mobile-lang i {
  font-size: 18px;
}
.mobile-lang i,
.mobile-lang a,
.mobile-lang span {
  display: inline-block;
  vertical-align: middle;
  line-height: 18px;
}
.mobile-lang a,
.mobile-lang span {
  padding: 0 5px;
  line-height: 20px;
}
.mobile-lang span {                             /* untuk setting pada bahasa list di menu list mobile */
  background: #fff;
  color: rgb(0, 123, 103);
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
}
#mnav {
  border-bottom: 1px solid #fff;
}
#mnav a {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid #fff;
  padding: 10px;
}
#mnav a:hover {                                 /* untuk setting color di menu nav for mobile purpose */
  background: #fff;
  color: #0163b7;                               /* #d71920 */
  text-decoration: none;
}


/* INDEX */
.fp-section {
  background: #fff;
  height: auto!important;
}
#section2 {                                 /* untuk home di web ori nya */
  text-align: center;
  padding: 40px 20px;
  background-image: url(../img/bg-tipis.jpg);                /* background tipis */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#section2 h1 {
  font-size: 18px;
  color: #00ff00;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
#section2 h2 {
  margin-bottom: 15px;
  font-size: 14px;
  color: #3d3d3d;
}
#section2 p {
  font-size: 1.125em;
}
.section2-content {
  max-width: 500px;
  margin: 0 auto;
}
#section3 {                                     /* untuk about us di web ori nye */
  text-align: center;
  padding: 40px 20px;
  background-image: url(../img/bg-tipis.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#section3 h1 {
  font-size: 18px;
  color: #001538;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.ifeat {
  margin-bottom: 30px;
}
.ifeat .img-wrap {
  position: relative;
  overflow: hidden;
}
.ifeat .img-wrap:before {
  content: "";
  display: block;
  padding-top: 47%;
}
.ifeat .img-wrap img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.ifeat .txt-wrap {                  /* text for edit,, untuk ukuran animation,, ukuran text boxnya*/
  background: #fff;
  padding: 10px;
  text-align: left;
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
}
.tw-top {                           /* untuk tw atas nya */
  margin-bottom: 10px;
}
.twt-left {
  float: left;
  width: 50%;
}
.twt-left h2 {
  text-transform: uppercase;
  color: #001538;
}
.twt-left span {
  font-size: 1.5em;
}
.twt-right {
  float: right;
}
.twt-right .btn-round {
  font-size: 1em;
  padding: 5px 12px;
}
.twb-child {
  padding-left: 30px;
  background-size: 20px auto;
  background-position: left top;
  background-repeat: no-repeat;
}
.twb-child h3 {
  margin-bottom: 5px;
  font-size: 1.125em;
}
.n-factory {
  background-image: url(../img/icon-factory1.png);                   /* untuk di learn more nya */
}
.n-landplot {
  background-image: url(../img/icon-landplot1.png);                  /* untuk di learn more nya */
}
.n-building {
  background-image: url(../img/icon-mailbuilding1.png);              /* untuk di learn more nya */
}
.scroll-to-discover { 
  display: none;
  position: absolute;
  left: 50%;
  bottom: 20px;
  color: #fff;
  height: 19px;
  margin-left: -15px;
  text-align: center;
  width: 30px;
  will-change: animation;
  z-index: 30;
}
.scroll-to-discover.animate {
  animation: 1.6s ease-in-out 0s normal both infinite running blink;
}
.scroll-to-discover .frecce {
  background-image: url(../img/arrow-down.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 30px auto;
  height: 19px;
  margin: 0 auto;
  width: 30px;
}
@keyframes blink {
  0% {
    opacity: 1;
    transform: translateY(-10px);
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
  }
}


/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
#desktop-flex,
#desktop-flex .flex-viewport,
#desktop-flex .slides {
  width: 100%;
}
#desktop-flex .slides {
  overflow: hidden;
}
#desktop-flex .slides li {
  background: #001538;
}
#desktop-flex .slides li .img-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  background-size: cover;
}
#desktop-flex .slides li .img-wrap:before {
  content: "";
  display: block;
  padding-top: 50%;
}
#desktop-flex .flex-direction-nav {
  display: none;
}
#desktop-flex .flex-direction-nav a {
  display: none;
}
.slide-txt {
  background: #001538;
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 540px;
  margin: 0 auto;
}
.slide-txt h2 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 5px;
}
.slide-txt p {
  font-size: 1.125em;
}
.slide-txt .btn-round {
  color: #fff;
}


/* FULLPAGE OVERRIDE CSS */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  width: 10px!important;
  height: 10px!important;
  border: 1px solid #fff!important;
  -moz-border-radius: 0!important;
  -webkit-border-radius: 0!important;
  border-radius: 0!important;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
  background: #d71920 !important;
  border: 1px solid #d71920 !important;
}


/* FOOTER */                                                /* FOR EDIT FOOTER STYLE & POSITION */
footer {
      background-image: url(../img/ctc2_800.png);
      /* background: #001538; */                      /* Color Background Footer def:#001538 */
      color: #fff;
      width: 100%;
      z-index: 10;
      position: relative;
      padding: 15px 0 8px;
}
footer.not-fixed {
  position: relative;
}
.footer-right {
  position: relative;
}
.footer-right img {
  display: block;
  width: 104px;
}
.ft-popup {
  display: block;
}
.ft-popup h3 {
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.ft-popup p {
  margin-bottom: 5px;
}
.ft-img img {
  display: block;
  margin-bottom: 15px;
}
.ft-img span {
  display: none;
}
.ft-address {
  list-style: none;
}
.ft-address span {
  display: block;
  float: left;
  padding-top: 3px;
  font-size: 14px;
}
.ft-address p {
  margin-left: 20px;
}
.footer-left {
  padding: 10px 0;
}
.footer-left h3 {
  line-height: 20px;
  margin-bottom: 5px;
}
.fl-socmed {
  list-style: none;
}
.fl-socmed li {
  float: left;
  margin-right: 15px;
}
.fl-socmed a {
  color: #001538;
  display: block;
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
  background: #fff;
}
.fl-socmed a:hover {
  background: #d71920;
  color: #fff;
  text-decoration: none;
}
.fl-socmed li span {
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.fl-socmed a:hover span {
  text-decoration: none;
}
.fl-bottom {
  font-size: 10px;
  line-height: 1.4em;
  padding-top: 10px;
}
.fl-top-1 {
  margin-bottom: 10px;
}


/* POPUP */
.fancybox-close {
  background-image: url(../img/fancy-close.png) !important;             /* di pake dimana gw gk tau? */
  background-repeat: no-repeat;
  background-size: 34px auto;
  background-position: center center;
}
.general-popup {
  width: 260px;
}
.general-popup h1 {
  font-size: 1.3em;
  letter-spacing: 0.1em;
  color: #001538;
  margin-bottom: 10px;
}
.general-popup .intro-text {
  font-size: 1.125em;
}
.popup-small {
  background: #fff;
  border-top: 10px solid #d71920;
  padding: 20px;
}


/* GENERAL FORM */
.general-form .form-group small {
  display: block;
  padding-top: 5px;
  font-size: .875em;
  line-height: 1.2em;
}
.general-form .form-group {
  margin-bottom: 15px;
  position: relative;
}
.general-form .form-group label {
  display: block;
  font-size: 1.125em;
  color: #001538;
  font-weight: bold;
  padding-bottom: 5px;
}
.general-form .form-group input,
.general-form .form-group textarea {
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
  border: 1px solid #bebebe;
  padding: 0 15px;
  height: 40px;
  width: 100%;
  opacity: 0.5;
}
.general-form .form-group textarea {
  height: 170px;
  resize: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
.general-form .form-group textarea.textarea-s {
  height: 100px;
}
.general-form .form-group input:focus,
.general-form .form-group textarea:focus {
  border: 1px solid #001538;
  opacity: 1;
}
.general-form .form-group input[type="file"] {
  border: none;
  padding: 0;
  height: auto;
  opacity: 1;
}
.general-form .form-group .with-icon {
  padding-left: 30px;
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: 8px center;
}
.general-form .form-group textarea.with-icon {
  background-position: 8px 11px;
}
.general-form .form-group .icon-mail {
  background-image: url(../img/icon-mail.png);
}
.general-form .form-group .icon-id {
  background-image: url(../img/icon-id.png);
}
.general-form .form-group .icon-password {
  background-image: url(../img/icon-key.png);
}
.general-form .form-group .icon-name {
  background-image: url(../img/icon-name.png);
}
.general-form .form-group .icon-phone {
  background-image: url(../img/icon-phone.png);
}
.general-form .form-group .icon-message {
  background-image: url(../img/icon-message.png);
}
.general-form .form-group .icon-lock {
  background-image: url(../img/icon-lock.png);
}
.general-form .form-group .icon-company {
  background-image: url(../img/icon-company.png);
}
.general-form .form-group .icon-location2 {
  background-image: url(../img/icon-location2.png);
}
.newsletter-form,
.login-form {
  max-width: 390px;
  margin: 0 auto;
}
.login-form .form-button {
  text-align: left;
}
.login-form .form-button a {
  display: block;
  color: #3d3d3d;
  margin-bottom: 10px;
}
.login-form .form-button a:hover {
  color: #d71920;
}
.captcha-wrap {
  padding-top: 10px;
}
.input-s {
  max-width: 225px;
}
.max460 {
  max-width: 460px;
}
.select-style {
  padding-right: 40px;
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
  opacity: .5;
  width: 100%;
  overflow: hidden;
  background: url(../img/cselect.png) no-repeat right center #ffffff;
  background-size: auto 8px;
  border: 1px solid #bebebe;
}
.select-style:hover {
  border: 1px solid #001538;
  opacity: 1;
}
.select-style select {
  height: 38px;
  padding: 0 12px;
  width: 150%;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
}


/* GENERAL PAGE */
.static-banner img {
  display: block;
  width: 100%;
}
#breadcrumb {                                                  /* Warna untuk alamat url,, atau header bawah bottom*/
  background: rgba(0, 68, 238, 0.77);                          /* color for url tree, warna untuk alamat web yang sedang di buka def: #d71920*/
}
.breadcrumb {
  list-style: none;
  color: #fff;
}
.breadcrumb li {
  float: left;
  line-height: 20px;            /* line height */
  margin-right: 20px;
}
.breadcrumb li.last-child {
  margin-right: 0;
}
.breadcrumb a {
  display: block;
  color: #fff;
  padding-right: 30px;
  height: 20px;
  background-image: url(../img/bc-arrow_2.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right center;
}
.breadcrumb a.bc-home span {
  display: block;
  text-indent: -9999px;
  width: 20px;
  height: 30px;
  /* background-image: url(../img/factory7_2.png); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}
.breadcrumb li > span {
  display: block;
  font-weight: bold;
}
.general-content {
  padding: 30px 0;
}
.general-content h1 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #001538;
  font-size: 18px;
  margin-bottom: 20px;
}
.gc-white {
  background: #fff;
}
.gc-creme {
  background: #fafafa;
}
.general-content .intro-text {
  font-size: 14px;
  margin-bottom: 20px;
}


/* COLUMNS */
.cols {
  margin-bottom: 20px;
}
.cols img {
  display: block;
  width: 100%;
}
.col-item {
  margin-bottom: 15px;
}
.general-2-cols {
  font-size: 1.125em;
  line-height: 1.7em;
}
.general-2-cols h3 {
  font-weight: bold;
  color: #001538;
  margin-bottom: 10px;
  font-size: 1.125em;
}
.general-2-cols ul,
.general-2-cols ol {
  padding-left: 20px;
}
.general-2-cols .col-item {
  margin-bottom: 20px;
}


/* ABOUT */
.visi-misi h2 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #001538;
}
.visi-misi p {
  font-size: 14px;
}
.philo-child {
  color: #d71920;
  font-weight: bold;
  font-size: 14px;
  font-style: italic;
  padding-bottom: 20px;
  max-width: 890px;
  margin: 0 auto;
  margin-bottom: 20px;
  line-height: 1.7em;
  background-image: url(../img/hr-diagonal.png);
  background-size: auto 5px;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.philo-last {
  background: none;
  padding-bottom: 0;
}
.customer-list {
  list-style: none;
  margin-top: 40px;
}
.customer-list li {
  border: 1px solid #ededed;
  position: relative;
  float: left;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 10px;
}
.customer-list li:nth-child(2n) {
  margin-right: 0;
}
.customer-list li:before {
  content: "";
  display: block;
  padding-top: 61%;
}
.customer-list li img {
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 85%;
  max-height: 85%;
}
.logged-intro-text {
  text-align: center;
  margin-bottom: 30px!important;
}
.logged-intro-text img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}


/* OVERVIEW */
.why-list {
  list-style: none;
}
.why-list li {
  padding: 0 15px;
}
.why-list h2 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #001538;
  line-height: 1.22em;
  font-size: 1.28em;
  padding-top: 40px;
  margin-bottom: 10px;
  background-size: auto 30px;
  background-repeat: no-repeat;
  background-position: center top;
}
.overview-red {
  background-color: #d71920;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.or1 {
  background-image: url(../img/red1.jpg);
  background-position: right center;
}
.or2 {
  background-image: url(../img/red2.jpg);
  background-position: left center;
}
.overview-red .img-wrap {
  overflow: hidden;
}
.overview-red .img-wrap img {
  display: block;
  width: 100%;
}
.or-content {
  color: #fff;
  padding: 20px;
}
.or-content a {
  font-weight: bold;
  text-decoration: underline;
  color: #fff;
}
.sl-list {
  font-size: 14px;
}
.sl-list .col-item {
  margin-bottom: 20px;
}
.sl-list img {
  display: block;
  height: 30px;
  margin-bottom: 5px;
  width: auto;
}


/* CONTACT */
.side-contact {
  margin-top: 30px;
}
.side-contact h3 {
  font-size: 1.3em;
  color: #001538;
  margin-bottom: 10px;
}
.sc-info {
  list-style: none;
  margin-bottom: 30px;
}
.sc-info li {
  margin-bottom: 5px;
  padding-left: 30px;
  min-height: 20px;
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: left 0;
}
.sc-info li.sc-location {
  background-image: url(../img/con-red-location.png);
}
.sc-info li.sc-phone {
  background-image: url(../img/icon-red-phone.png);
}
.sc-info li.sc-fax {
  background-image: url(../img/icon-red-fax.png);
}
.side-contact .fl-socmed a {
  background-color: #d71920;
  color: #fff;
}
.side-contact .fl-socmed a:hover {
  background-color: #001538;
}
#map_canvas {
  height: 340px;
  margin-top: 30px;
}


/* PRODUCT WRAP */
.product-photo-wrap {
  position: relative;
  margin-bottom: 20px;
}
.product-photo-wrap img {
  display: block;
  width: 100%;
}
.product-share {
  margin-top: 40px;
}
.product-share > span {
  display: block;
  margin-bottom: 15px;
  font-size: 1.14em;
}
.pshare {
  list-style: none;
}
.pshare li {
  display: inline-block;
  margin: 0 15px 10px;
  vertical-align: top;
}
.spec-list .sl-item {
  padding-left: 30px;
  font-size: 1.14em;
  margin-bottom: 15px;
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: left top;
}
.spec-list .sl-item h3 {
  font-size: 1.125em;
  color: #111;
  margin-bottom: 5px;
}
.spec-list .sl-item p {
  line-height: 1.2em;
  margin-bottom: 5px;
}
.spec-list2 {
  margin-bottom: 30px;
}
.text-disclaimer {
  line-height: 1.28em;
  color: #838383;
}


/* NEWS EVENTS CSR */
.latest {
  margin-bottom: 30px;
}
.latest .img-wrap,
.news-list .img-wrap {
  margin-bottom: 15px;
}
.latest .img-wrap img,
.news-list .img-wrap img {
  display: block;
  width: 100%;
}
.latest .img-wrap:hover img,
.news-list .img-wrap:hover img {
  opacity: 0.7;
}
.latest h2,
.news-list h2 {
  font-size: 1.28em;
  margin-bottom: 5px;
}
.ndate {
  display: block;
  margin-bottom: 10px;
  font-size: .9em;
}
.news-item {
  margin-bottom: 30px;
}
.news-detail .img-wrap {
  margin-bottom: 20px;
}
.news-detail .img-wrap img {
  display: block;
  max-width: 100%;
}
.ddate {
  text-align: center;
  margin-top: -10px;
  display: block;
  margin-bottom: 20px;
  color: #888;
}
.news-gallery {
  list-style: none;
  margin-top: 30px;
}
.news-gallery li {
  float: left;
  width: 25%;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.news-gallery li:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.news-gallery li img {
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
}
.news-gallery li:hover img {
  opacity: 0.7;
  height: 110%;
  left: -5%;
  top: -5%;
}


/* CAREER */
.career-content .container {
  border-top: 1px solid #e1e1e1;
}
.general_accor {
  margin-bottom: 10px;
}
.general_accor h3 {
  background-color: #e9e9e9;
  position: relative;
  padding: 0 15px;
  line-height: 40px;
  cursor: pointer;
  font-size: 1.125em;
}
.general_accor h3:hover {
  background-color: #d71920;
  color: #fff;
}
.general_accor h3.opened {
  background-color: #d71920;
  color: #fff;
}
.general_accor h3 .aa_wrap {
  display: block;
  width: 48px;
  height: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.general_accor h3 .animate_arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 3px;
  z-index: 10;
}
.general_accor h3 .animate_arrow::before,
.general_accor h3 .animate_arrow:after {
  content: "";
  /* upper and lower lines of the menu icon */
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* apply transition to transform property */
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform .3s;
}
.general_accor h3 .animate_arrow::before {
  -webkit-transform: translateX(-3px) rotate(45deg);
  -moz-transform: translateX(-3px) rotate(45deg);
  -ms-transform: translateX(-3px) rotate(45deg);
  -o-transform: translateX(-3px) rotate(45deg);
  transform: translateX(-3px) rotate(45deg);
}
.general_accor h3 .animate_arrow::after {
  -webkit-transform: translateX(3px) rotate(-45deg);
  -moz-transform: translateX(3px) rotate(-45deg);
  -ms-transform: translateX(3px) rotate(-45deg);
  -o-transform: translateX(3px) rotate(-45deg);
  transform: translateX(3px) rotate(-45deg);
}
.general_accor h3.opened .animate_arrow::before {
  -webkit-transform: translateX(-3px) rotate(0deg);
  -moz-transform: translateX(-3px) rotate(0deg);
  -ms-transform: translateX(-3px) rotate(0deg);
  -o-transform: translateX(-3px) rotate(0deg);
  transform: translateX(-3px) rotate(0deg);
}
.general_accor h3.opened .animate_arrow::after {
  -webkit-transform: translateX(3px) rotate(0deg);
  -moz-transform: translateX(3px) rotate(0deg);
  -ms-transform: translateX(3px) rotate(0deg);
  -o-transform: translateX(3px) rotate(0deg);
  transform: translateX(3px) rotate(0deg);
}
.ga_content {
  background: #fafafa;
  padding: 10px 15px;
  display: none;
}
.ga_content .nuke-wysiwyg {
  margin-bottom: 15px;
}
.ga_content .btn-yellow {
  margin-bottom: 10px;
}
.cc-right {
  padding-top: 10px;
}
.company-snapshot-wrap h2 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
.cs-child {
  text-align: center;
}
.cs-child h3 {
  font-size: 13px;
  margin-bottom: 5px;
}
.cs-child p {
  line-height: 1.3em;
}


/* FACILITIES */
.fac-item {
  margin-bottom: 20px;
}
.fac-item h2 {
  font-size: 1.3em;
  margin-bottom: 5px;
}
.fac-item h3 {
  font-size: 1.14em;
  margin-bottom: 5px;
}
.fac-item p,
.fac-item ol,
.fac-item ul,
.fac-item table {
  margin-bottom: 5px;
}
.fac-item table td {
  padding-right: 5px;
}
.fac-item ol,
.fac-item ul {
  padding-left: 20px;
}
.sub-fac-item {
  margin-bottom: 10px;
}


/* REGULATION */
.reg-download .reg-child {
  background: #fafafa;
  padding: 12px;
  margin-bottom: 15px;
}
.reg-download .reg-child h2 {
  text-transform: uppercase;
  color: #001538;
  margin-bottom: 5px;
  font-size: 1.28em;
}
.rc-button span {
  display: block;
  font-size: .9em;
  padding-top: 10px;
}


/* TENANTS */
.tenant-info {
  background: #fff;
  border-top: 5px solid #001538;
  padding: 1px 15px;
  color: #001538;
  margin-bottom: 30px;
}
.ti-child {
  padding-left: 30px;
  line-height: 20px;
  margin: 15px 0;
  font-size: 14px;
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: left center;
}
.ti-child.last-child {
  padding-right: 0!important;
}
.tenant-id {
  background-image: url(../img/icon-tenant-id.png);
}
.tenant-name {
  background-image: url(../img/icon-tenant-name.png);
}
.tenant-location {
  background-image: url(../img/icon-tenant-location.png);
}
.tenant-main {
  margin-bottom: 20px;
}
.tenant-main h1 {
  letter-spacing: 0;
  text-align: left;
  color: #d71920;
}
.tenant-main h1.has-icon {
  padding-left: 40px;
  line-height: 30px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 30px;
}
.tenant-main h1.icon-water {
  background-image: url(../img/icon-water.png);
}
.tenant-billing .tenant-child {
  background: #fff;
  border-top: 5px solid #d71920;
  padding: 10px;
  position: relative;
}
.tenant-billing .overdue .tenant-child {
  background: #d71920;
  color: #fff;
  border-top: 5px solid #990b10;
}
.tenant-billing h2 {
  line-height: 20px;
  color: #d71920;
  padding-left: 30px;
  font-size: 14px;
  margin-bottom: 15px;
  background-size: 20px auto;
  background-position: left top;
  background-repeat: no-repeat;
}
.tenant-billing .overdue h2 {
  background-position: left bottom;
}
.tenant-billing h2.tenant-water {
  background-image: url(../img/tenant-info-water.png);
}
.tenant-billing h2.tenant-electricity {
  background-image: url(../img/tenant-info-electricity.png);
}
.tenant-billing h2.tenant-maintenance {
  background-image: url(../img/tenant-info-maintenance.png);
}
.tenant-date {
  display: block;
  color: #525252;
  margin-bottom: 10px;
  font-size: 14px;
}
.tenant-bill {
  display: block;
  font-size: 32px;
  padding-bottom: 40px;
}
.tenant-billing a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #001538;
  font-size: 14px;
}
.tenant-billing a span {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.tenant-billing a span i {
  font-size: 12px;
}
.tenant-billing .tenant-child:hover .tenant-date,
.tenant-billing .tenant-child:hover .tenant-bill,
.tenant-billing .tenant-child:hover a {
  color: #d71920;
}
.tenant-billing .overdue h2,
.tenant-billing .overdue .tenant-child .tenant-date,
.tenant-billing .overdue .tenant-child .tenant-bill,
.tenant-billing .overdue .tenant-child a {
  color: #fff;
}
.tenant-sidebar {
  background: #fff;
  font-size: 14px;
}
.ts-child > a {
  display: block;
  border-top: 1px solid #e0e8f5;
  padding: 0 15px;
  color: #001538;
}
.ts-child > a span {
  display: block;
  line-height: 50px;
  background-image: url(../img/arrow-next-blue.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 14px;
}
.ts-child > a:hover {
  background: #d71920;
  color: #fff;
  text-decoration: none;
}
.ts-child > a:hover > span,
.ts-child > a.active > span {
  background-image: url(../img/arrow-next.png);
}
.ts-child > a.active {
  background: #001538;
  color: #fff;
}
.ts-sub {
  list-style: none;
  width: 100%;
}
.ts-sub li a {
  display: block;
  line-height: 40px;
  color: #001538;
  border-top: 1px solid #e0e8f5;
  padding: 0 20px;
}
.ts-sub li a span {
  display: block;
  padding: 0 20px;
  background-image: url(../img/red-dot.gif);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  background-position: left center;
}
.ts-sub li a.active {
  color: #d71920;
}
.ts-sub li a.active span {
  background-image: url(../img/blue-dot.gif);
}
.ts-sub li a:hover {
  background: #d71920;
  text-decoration: none;
  color: #fff;
}
.ts-sub li a:hover span {
  background-image: url(../img/white-dot.gif);
}
.tt-head,
.tl-head {
  background: #d71920;
  color: #fff;
  line-height: 40px;
  font-size: 14px;
}
.tt-td,
.tl-td {
  padding: 0 15px;
}
.tth2,
.tlh2 {
  display: none;
}
.tt-body {
  background: #fff;
}
.tt-body .ttr {
  border-bottom: 1px solid #e1e1e1;
}
.ttb1 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.ttb2-1-list {
  padding-bottom: 10px;
}
.ttb2-2 {
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 10px;
}
.ttb2.overdue {
  color: #d71920;
}
.tenant-list .tlr {
  padding: 10px 0;
  background: #fff;
}
.tenant-list .tlr:nth-child(even) {
  background: #fff7f7;
}
.sort-form {
  margin-bottom: 30px;
}
.sort-form .btn-submit {
  cursor: pointer;
  padding: 10px 40px;
}
.simulation-form {
  margin-bottom: 30px;
}
.sf-1 {
  margin-bottom: 10px;
}
.sf-1 span {
  font-size: .9em;
  display: block;
}
.sf-1-content {
  border: 1px solid #bebebe;
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
  background: #fff;
  width: 250px;
  margin-bottom: 5px;
}
.sf-1-content input {
  padding: 0 20px;
  width: 190px;
  height: 44px;
  border: none;
  background: none;
}
.simulation-form .btn-round {
  cursor: pointer;
}


/* CAREER FORM */
#application-form-wrap {
  width: 240px;
  background: #fff;
  padding: 15px;
}
#application-form-wrap .career-logo {
  width: 100%;
  max-width: 200px;
}
#application-form-wrap h1 {
  font-size: 1.14em;
  margin: 15px 0;
}
#application-form-wrap h1 span {
  color: #d71920;
}
.applicant-form h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #d71920;
  letter-spacing: 0.1em;
}
.applicant-form h3.sub-heading {
  font-size: 1.125em;
  margin-bottom: 10px;
  color: #001538;
  font-weight: bold;
}
.btn-add {
  display: block;
  margin-bottom: 15px;
}
.btn-remove {
  display: inline-block;
  padding: 10px 15px;
  background: #d71920;
  color: #fff;
  margin-bottom: 10px;
}
.btn-remove:hover {
  background: #001538;
  text-decoration: none;
  color: #fff;
}
.form-job,
.form-lang {
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  overflow: hidden;
}
.form-job:last-child,
.form-lang:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.form-job:first-child .btn-remove,
.form-lang:first-child .btn-remove {
  display: none;
}
input[type=radio].rme-radio,
input[type=checkbox].rme-check {
  display: none;
}
input[type=radio].rme-radio + label.rme-label,
input[type=checkbox].rme-check + label.rme-label {
  padding-left: 25px;
  display: inline-block;
  line-height: 1.5em;
  background-repeat: no-repeat;
  background-position: left center;
  vertical-align: middle;
  cursor: pointer;
}
input[type=radio].rme-radio:checked + label.rme-label,
input[type=checkbox].rme-check:checked + label.rme-label {
  background-image: url(../img/custom-centang2.png);
  background-size: 16px auto;
}
.rme-label {
  background-image: url(../img/custom-centang1.png);
  background-size: 16px auto;
  color: #3d3d3d;
  font-size: 1em;
  font-weight: normal;
}


/* AWARDS LIST */
.about-awards {
  margin-bottom: 30px;
  padding-bottom: 30px;
  background-image: url(../img/red-dot.gif);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 50px 5px;
}
.awards-list {
  list-style: none;
}
.awards-list li {
  margin: 20px auto;
  text-align: center;
  padding: 0 20px;
}
.awards-list li .award-year {
  font-size: 1.4em;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.awards-list li h2 {
  font-size: 1.5em;
  color: #001538;
}
.awards-list .img-wrap {
  border: 1px solid #ededed;
  position: relative;
  margin-bottom: 10px;
}
.awards-list .img-wrap:before {
  content: "";
  display: block;
  padding-top: 60%;
}
.awards-list .img-wrap img {
  display: block;
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.why-list.owl-theme .owl-controls {
  margin-top: 30px;
}
.why-list.owl-theme .owl-controls .owl-page span {
  background: #001538;
}
.why-list.owl-theme .owl-controls .owl-page.active span,
.why-list.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #d71920;
}

/*  */
@media (min-width: 360px) {
  /* POPUP */
  .general-popup {
    width: 320px;
  }
  /* CAREER FORM */
  #application-form-wrap {
    width: 300px;
    padding: 15px 20px;
  }
}
@media (min-width: 480px) {
  /* CAREER */
  .cs-wrap {
    overflow: hidden;
  }
  .cs-child {
    float: left;
    width: 50%;
    text-align: left;
  }
}
@media (min-width: 540px) {
  .slide-txt h2,
  #section2 h1 {
    font-size: 21px;
  }
  .ifeat .txt-wrap {
    padding: 20px;
  }
  .twt-left h2 {
    font-size: 1.28em;
    margin-bottom: 5px;
  }
  .twt-left span {
    font-size: 2em;
  }
  .twb-bottom {
    overflow: hidden;
  }
  .twb-bottom .twb-child {
    float: left;
    width: 50%;
  }
  .twb-bottom .twb-child-last {
    border-left: #f2f2f2;
  }
  .twt-right .btn-round {
    font-size: 1.125em;
    padding: 10px 20px;
  }
    
    
  /* POPUP */
  .general-popup {
    width: 480px;
  }
  .general-popup h1 {
    font-size: 1.5em;
  }
  .popup-small {
    text-align: center;
    border-top: 15px solid #d71920;
  }
  /* FORM */
  .general-form .form-group label {
    text-align: left;
  }
  .general-form .btn-round {
    padding: 10px 35px;
  }
  .login-form .form-button {
    overflow: hidden;
  }
  .login-form .form-button a {
    display: inline-block;
    line-height: 44px;
  }
  .login-form .form-button input {
    float: right;
  }
  /* NEWS EVENTS CSR */
  .news-list {
    margin: 0 -15px;
    overflow: hidden;
  }
  .news-item {
    width: 50%;
    padding: 0 15px;
    float: left;
  }
  /* TENANT */
  .ttb2-1-list {
    overflow: hidden;
  }
  .tt-left {
    float: left;
  }
  .tt-right {
    float: right;
  }
  .sort-form {
    margin: 0 -15px 30px;
  }
  .sort-form .form-group {
    float: left;
    width: 50%;
    padding: 0 15px;
  }
  .sort-form .btn-submit {
    clear: both;
    margin-left: 15px;
  }
  .tlb2 {
    overflow: hidden;
  }
  .tlb2-1,
  .tlb2-2,
  .tlb2-3 {
    float: left;
    width: 33.33%;
  }
  /* AWARD LIST */
  .awards-list {
    overflow: hidden;
  }
  .awards-list li {
    float: left;
    width: 50%;
  }
}
@media (min-width: 640px) {
  .slide-txt h2,
  #section2 h1,
  #section3 h1 {
    font-size: 24px;
  }
  #section2 h2 {
    font-size: 16px;
  }
  /* POPUP */
  .general-popup {
    width: 550px;
  }
  .popup-small {
    padding: 30px 0 45px;
  }
  /* ABOUT */
  .customer-list li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 20px;
  }
  .customer-list li:nth-child(2n) {
    margin-right: 5%;
  }
  .customer-list li:nth-child(3n) {
    margin-right: 0;
  }
  .logged-intro-text {
    text-align: left;
    overflow: hidden;
    margin-top: 30px;
  }
  .logged-intro-text img {
    float: left;
    margin-right: 20px;
    width: 360px;
  }
  /* OVERVIEW */
  .why-list {
    overflow: hidden;
  }
  .why-list li {
    padding: 0 10px;
  }
  .why-list h2 {
    padding-top: 55px;
    background-size: auto 40px;
  }
  /* PRODUCT */
  .spec-list {
    overflow: hidden;
  }
  .spec-list .sl-item {
    float: left;
    width: 50%;
  }
  /* TENANTS */
  .tenant-billing {
    margin: 0 -15px;
  }
  .tenant-billing .col-item {
    float: left;
    width: 50%;
    padding: 0 15px;
    margin-bottom: 25px;
  }
  .tenant-billing .tenant-child {
    padding: 10px 15px;
  }
  .tenant-bill {
    padding-bottom: 50px;
  }
  .tenant-billing a span {
    right: 15px;
    bottom: 15px;
  }
  .tenant-sidebar {
    width: 260px;
  }
  .ttr {
    overflow: hidden;
  }
  .tth1 {
    float: left;
    width: 30%;
  }
  .tth2 {
    display: block;
    overflow: hidden;
    margin-left: 30%;
  }
  .ttb1 {
    float: left;
    width: 30%;
  }
  .ttb2 {
    margin-left: 30%;
    padding: 0;
    border-left: 1px solid #e1e1e1;
  }
  .ttb2-1 {
    padding: 10px 10px 0 10px;
    border-bottom: 1px solid #e1e1e1;
  }
  .ttb2-2 {
    padding: 10px;
  }
  .simulation-form {
    overflow: hidden;
  }
  .sf-1 {
    float: left;
    margin-right: 30px;
  }
  .simulation-form input.submit-btn {
    float: left;
  }
  .sf-1-content {
    width: 300px;
  }
  .sf-1-content input {
    width: 220px;
  }
  /* CAREER FORM */
  #application-form-wrap {
    width: 540px;
    padding: 30px 40px;
  }
}
@media (min-width: 768px) {
  .btn-round {
    padding: 12px 30px;
    font-size: 16px;
  }
  /* SLIDER */
  #desktop-flex,
  #desktop-flex .flex-viewport,
  #desktop-flex .slides {
    width: 100%;
    height: 100%;
  }
  #desktop-flex .slides li {
    width: 100%;
    height: 100%;
    background-size: cover;
  }
  #desktop-flex .slides li .img-wrap {
    height: 100%;
  }
  #desktop-flex .slides li .img-wrap:before {
    padding-top: 0;
  }
  #desktop-flex .flex-direction-nav {
    display: block;
  }
  #desktop-flex .flex-direction-nav a {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width: 40px;
    height: 60px;
    border: 1px solid #fff;
    z-index: 100;
    text-indent: -9999px;
    transition: all 350ms ease;
    -webkit-transition: all 350ms ease;
    -moz-transition: all 350ms ease;
    -o-transition: all 350ms ease;
    background-size: 14px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
  }
  #desktop-flex .flex-direction-nav .flex-prev {
    left: 20px;
    background-image: url(../img/arrow-prev.png);
  }
  #desktop-flex .flex-direction-nav .flex-next {
    right: 20px;
    background-image: url(../img/arrow-next.png);
  }
  #desktop-flex .flex-direction-nav a:hover {
    border: 1px solid #d71920;
    background-color: #d71920;
  }
  .slide-txt {
    position: absolute;
    bottom: 80px;
    left: 50%;
    margin-left: -270px;
    z-index: 2;
    background: none;
    color: #fff;
  }
  .slide-txt h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15em;
  }
  .slide-txt p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .slide-txt .btn-round {
    border: 2px solid #d71920;
    color: #fff;
  }
  .slide-txt .btn-round:hover {
    background: #d71920;
  }
  #section2 {
    padding: 0;
  }
  #section2 h1 {
    font-size: 32px;
    line-height: 1.2em;
    margin-bottom: 20px;
  }
  #section2 h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  #section2 p {
    margin-bottom: 40px;
    font-size: 18px;
  }
  #section2 .btn-round,
  #section3 .btn-round {
    border: 2px solid #d71920;
  }
  #section3 {
    padding: 0;
  }
  #section3 h1 {
    margin-bottom: 40px;
  }
  .section3-content {
    overflow: hidden;
    margin: 0 auto;
    width: 90%;
    max-width: 950px;
  }
  .ifeat {      /* ukuran float imagenya */
    width: 48%;
    overflow: hidden;
    position: relative;
    background: #fff;
  }
  .ifeat:before {
    content: "";
    padding-top: 71.5%;
    display: block;
  }
  .ifeat1 {
    float: left;
  }
  .ifeat2 {
    float: right;
  }
  .ifeat .img-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .ifeat .txt-wrap {
    position: absolute;
    left: 0;
    top: 65.8%;
    width: 100%;
  }
  .ifeat:hover .txt-wrap {
    top: 0;
  }
  .tw-bottom {
    opacity: 0;
    transition: all 350ms ease;
    -webkit-transition: all 350ms ease;
    -moz-transition: all 350ms ease;
    -o-transition: all 350ms ease;
  }
  .ifeat:hover .tw-bottom {
    opacity: 1;
  }
  .scroll-to-discover {
    display: block;
  }
    
    
  /* FOOTER */
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 75px;
    padding-top: 0px;
  }
  .footer-right {
    float: right;
    padding-top: 10px;
    text-align: center;
  }
  .footer-right img {
    cursor: pointer;
    width: 74px;
    margin-bottom: 2px;
  }
  .ft-img span {
    display: block;
  }
  .footer-left {
    float: left;
    padding-top: 30px;
  }
  .ft-popup {
    position: absolute;
    right: 0;
    bottom: 100%;
    background: #fff;
    width: 330px;
    padding: 15px 15px 10px;
    color: #001538;
    display: none;
    text-align: left;
  }
  .ft-popup:after {
    content: "";
    display: block;
    width: 30px;
    height: 8px;
    position: absolute;
    right: 43px;
    bottom: -8px;
    background-image: url(../img/tooltip-bottom.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .ft-popup h3 {
    font-size: 16px;
    color: #d71920;
  }
  .ft-address {
    font-size: 14px;
  }
  .ft-address span.fa-map-marker {
    font-size: 18px;
  }
  .ft-address span.fa-phone {
    font-size: 16px;
  }
  .fl-top {
    overflow: hidden;
  }
  .fl-top h3 {
    float: left;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .fl-top .fl-socmed {
    float: left;
  }
  .fl-top-1,
  .fl-top-2 {
    display: inline-block;
  }
  .fl-top-1 {
    margin-bottom: 0;
  }
  .fl-top-2 {
    border-left: 1px solid #2f3a4b;
    padding-left: 20px;
  }
  .fl-bottom {
    padding-top: 5px;
  }
    
    
  /* POPUP */
  .general-popup .intro-text {
    font-size: 16px;
  }
  /* FORM */
  input,
  textarea,
  select {
    font-size: 14px;
  }
  .general-form .form-group input {
    height: 44px;
    padding: 0 20px;
  }
  .general-form .form-group .with-icon {
    padding-left: 50px;
    background-position: 20px center;
    background-size: 18px auto;
  }
  .general-form .form-group textarea.with-icon {
    background-position: 20px 11px;
  }
  .general-form .btn-round {
    border: 2px solid #d71920;
  }
  .captcha-wrap {
    position: absolute;
    top: 30px;
    left: 240px;
    padding-top: 0;
  }
    
    
  /* GENERAL PAGE */
  .breadcrumb li {
    line-height: 35px;
  }
  .breadcrumb a {
    height: 35px;
  }
  .breadcrumb a.bc-home span {
    width: 24px;
    height: 35px;
    background-size: 24px auto;
  }
  .general-content {
    padding: 45px 0;
  }
  .general-content h1 {
    font-size: 24px;
  }
  .general-content .intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
    
    
  /* NUKE WYSIWYG */
  .nuke-wysiwyg {
    font-size: 14px;
  }
    
    
  /* COLUMNS */
  .cols {
    margin-bottom: 30px;
  }
  .col-multi .col-item {
    margin-bottom: 0;
    padding-right: 15px;
    float: left;
  }
  .col-multi .col-item.col-last {
    padding-left: 15px;
    padding-right: 0;
  }
  .col-2 .col-item,
  .col-4 .col-item {
    width: 50%;
  }
  .col-3,
  .col-4 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .col-3 .col-item {
    width: 33.33%;
    padding: 0 15px;
  }
  .col-4 .col-item {
    padding: 0 15px;
  }
  .general-2-cols .col-item {
    margin-bottom: 30px;
  }
    
    
  /* ABOUT */
  .visi-misi h2 {
    font-size: 18px;
  }
  .visi-misi p {
    font-size: 16px;
  }
  .philo-child {
    font-size: 16px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .philo-last {
    padding-bottom: 0;
  }
    
    
  /* OVERVIEW */
  .why-list {
    margin-top: 30px;
  }
  .why-list li {
    padding: 0 30px;
  }
  .why-list .btn-round {
    font-size: 14px;
    border: 2px solid #d71920;
    padding: 10px 20px;
  }
  .overview-red {
    overflow: hidden;
  }
  .or1 .img-wrap {
    float: left;
    width: 41%;
    margin-left: -15px;
    transform: skewX(5deg);
    -ms-transform: skewX(5deg);
    /* IE 9 */
    -webkit-transform: skewX(5deg);
  }
  .or1 .img-wrap img {
    margin-left: 15px;
    transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    /* IE 9 */
    -webkit-transform: skewX(-5deg);
  }
  .or1 .or-content {
    margin-left: 41%;
  }
  .or2 .img-wrap {
    float: right;
    width: 41%;
    margin-right: -15px;
    transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    /* IE 9 */
    -webkit-transform: skewX(-5deg);
  }
  .or2 .img-wrap img {
    margin-left: -15px;
    transform: skewX(5deg);
    -ms-transform: skewX(5deg);
    /* IE 9 */
    -webkit-transform: skewX(5deg);
  }
  .or2 .or-content {
    margin-right: 41%;
    text-align: right;
  }
  .or-content {
    padding: 40px 30px;
    font-size: 14px;
  }
  .bonded-privileges {
    -webkit-column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-count: 2;
    -moz-column-gap: 40px;
    column-count: 2;
    column-gap: 40px;
  }
    
    
  /* CONTACT */
  .side-contact {
    float: left;
    width: 30%;
    margin-top: 0;
  }
  .contact-form {
    float: right;
    width: 65%;
  }
    
    
  /* NEWS EVENTS CSR */
  .latest {
    overflow: hidden;
  }
  .latest .img-wrap {
    float: left;
    width: 50%;
  }
  .latest-content {
    margin-left: 50%;
    padding-left: 20px;
  }
  .latest-content .btn-round {
    font-size: 14px;
    padding: 10px 20px;
  }
  .news-item {
    width: 33.33%;
  }
  .news-detail .img-wrap {
    float: left;
    margin-right: 20px;
  }
  .news-gallery li {
    width: 20%;
  }
    
    
  /* CAREER */
  .career-content .container {
    overflow: hidden;
    padding: 50px 0;
  }
  .cc-left {
    float: left;
    width: 58%;
  }
  .cc-right {
    float: right;
    width: 38%;
    padding-top: 0;
  }
  .company-snapshot-wrap h2 {
    font-size: 18px;
  }
  .cs-child {
    width: 33.33%;
  }
  .cs-child h3 {
    font-size: 14px;
  }
    
    
  /* REGULATION */
  .reg-download {
    margin: 0 -15px;
  }
  .reg-download .col-item {
    float: left;
    width: 50%;
    padding: 0 15px;
  }
  .reg-download .reg-child {
    padding: 15px 20px;
  }
  .reg-download .reg-child h2 {
    font-size: 16px;
  }
  .reg-download .reg-child .btn-round {
    border: 2px solid #d71920;
  }
    
    
  /* TENANT */
  .ti-child {
    display: inline-block;
    padding-right: 50px;
    margin: 25px 0;
  }
  .tenant-info {
    padding: 0 30px;
  }
  .sort-form {
    margin: 0 0 20px;
    overflow: hidden;
  }
  .sort-form .form-group {
    width: 230px;
    padding: 0;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .sort-form .btn-submit {
    clear: none;
    float: left;
    margin: 0;
    padding: 8px 35px;
  }
  .sort-form .select-style select {
    height: 44px;
  }
  .tenant-list .tlr {
    overflow: hidden;
  }
  .tl-head {
    overflow: hidden;
  }
  .tlh1 {
    float: left;
    width: 25%;
  }
  .tlh2 {
    display: block;
    margin-left: 25%;
  }
  .tlh1-1,
  .tlh1-2,
  .tlh1-3 {
    float: left;
    width: 33.33%;
  }
  .tlh1-3 {
    text-align: right;
  }
  .tlb1 {
    float: left;
    width: 25%;
  }
  .tlb2 {
    margin-left: 25%;
  }
  .tlb2-3 {
    text-align: right;
  }
  .simulation-form .btn-round {
    padding: 11px 25px;
    font-size: 14px;
  }
    
    
  /* CAREER FORM */
  .btn-remove {
    float: right;
  }
    
    
  /* CAREER FORM */
  .fg-2col {
    overflow: hidden;
  }
  .fg-2col > .input-wrap,
  .fg-2col .form-group {
    float: left;
    width: 48%;
  }
  .fg-2col > .input-wrap:nth-child(2),
  .fg-2col .form-group:nth-child(2) {
    float: right;
  }
  #application-form-wrap {
    width: 640px;
    padding: 30px 60px;
  }
    
    
  /* CAREER */
  .career-content .container {
    padding: 25px 0 20px;
  }
  .general_accor h3 {
    font-size: 1.28em;
  }
  .select-style select {
    height: 42px;
  }
    
    
  /* AWARD LIST */
  .awards-list li {
    width: 33.33%;
    padding: 0 15px;
  }
  .awards-list li .award-year {
    font-size: 1.2em;
  }
  .awards-list li h2 {
    font-size: 1.3em;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 14px;
  }
  .cd-nav-trigger {
    display: none;
  }
  #mobile-nav-wrap {
    display: none;
  }
  .section2-content {
    max-width: 750px;
  }
  .ifeat:before {
    padding-top: 66%;
  }
  .ifeat .txt-wrap {
    padding: 25px;
    top: 70%;
  }
  .ifeat:hover .txt-wrap {
    top: 30px;
  }
  .twt-left h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .twt-left span {
    font-size: 28px;
  }
  .twt-right .btn-round {
    font-size: 16px;
  }
  .twb-child h3 {
    font-size: 14px;
  }
  .twb-child p {
    font-size: 12px;
  }
    
    
  /* HEADER */
  .header-top {
    display: block;
  }
  #logo {
    margin-top: 13px;
  }
  #logo img {
    height: 54px;
  }
  .header-bottom,
  .header-bottom .container {
    height: 90px;
  }
  #main-nav {
    display: block;
    line-height: 90px;
  }
  #main-nav a {
    margin-left: 5px;
  }
    
    
  /* FOOTER */
  .ft-popup {
    padding: 20px 20px 15px;
  }
    
    
  /* FORM */
  .login-form .form-button a {
    line-height: 50px;
  }
    
    
  /* GENERAL PAGE */
  .general-content {
    padding: 45px 0;
  }
  .general-content h1 {
    font-size: 28px;
  }
  .general-content .intro-text {
    margin-bottom: 30px;
  }
    
    
  /* ABOUT */
  .customer-list li {
    width: 15%;
    margin-right: 2%;
    margin-bottom: 20px;
  }
  .customer-list li:nth-child(2n),
  .customer-list li:nth-child(3n) {
    margin-right: 2%;
  }
  .customer-list li:nth-child(6n) {
    margin-right: 0;
  }
  .logged-intro-text img {
    margin-right: 30px;
  }
    
    
  /* OVERVIEW */
  .why-list {
    margin-top: 40px;
  }
  .why-list li {
    padding: 0 20px;
  }
  .why-list.wl-3col li {
    width: 33.33%;
    padding: 0 50px;
  }
  .why-list h2 {
    margin-bottom: 20px;
  }
  .why-list p {
    margin-bottom: 20px;
  }
    
    
  /* COLUMNS */
  .col-4 .col-item {
    width: 25%;
  }
  .sl-list {
    margin-top: 50px;
    margin-bottom: 0;
  }
  .sl-list .col-item {
    text-align: center;
    margin-bottom: 10px;
  }
  .sl-list img {
    margin: 0 auto;
    margin-bottom: 10px;
    height: 40px;
  }
    
    
  /* CONTACT */
  .side-contact {
    width: 37%;
    margin-top: 0;
  }
  .contact-form {
    width: 58%;
  }
    
    
  /* PRODUCT */
  .product-photo-wrap {
    position: relative;
  }
  .owl-product-photo.owl-theme .owl-controls .owl-buttons div {
    opacity: 1;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    text-indent: -9999em;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-size: auto 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
  }
  .owl-product-photo.owl-theme .owl-controls .owl-buttons div.owl-next {
    right: -65px;
    background-image: url(../img/arrow-next-red.png);
  }
  .owl-product-photo.owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: -65px;
    background-image: url(../img/arrow-prev-red.png);
  }
  .owl-product-photo.owl-theme .owl-controls .owl-buttons div:hover {
    background-color: #d71920;
  }
  .owl-product-photo.owl-theme .owl-controls .owl-buttons div:hover.owl-next {
    background-image: url(../img/arrow-next.png);
  }
  .owl-product-photo.owl-theme .owl-controls .owl-buttons div:hover.owl-prev {
    background-image: url(../img/arrow-prev.png);
  }
  .spec-list {
    margin-top: 40px;
  }
  .spec-list .sl-item {
    width: 33.33%;
    padding-left: 40px;
  }
    
    
  /* REGULATION */
  .reg-download .reg-child h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
    
    
  /* TENANTS */
  .tenant-main h1 {
    font-size: 26px!important;
  }
  .tenant-billing .col-item {
    width: 33.33%;
  }
  .ti-child {
    font-size: 16px;
    padding-right: 70px;
  }
  .tenant-billing h2 {
    font-size: 16px;
  }
  .tenant-billing .tenant-child {
    padding: 15px;
  }
  .tt-head,
  .tl-head {
    line-height: 60px;
    font-size: 18px;
  }
  .tt-td,
  .tl-td {
    padding-left: 30px;
    padding-right: 30px;
  }
  .ttr .ttb2 {
    padding: 0;
  }
  .tth1,
  .ttb1 {
    width: 190px;
  }
  .tth2,
  .ttb2 {
    margin-left: 190px;
  }
  .ttb2-1 {
    padding: 10px 30px 0 30px;
  }
  .ttb2-2 {
    padding: 10px 30px;
  }
  .tenant-list .tlr {
    padding: 15px 0;
  }
  .sort-form .form-group {
    width: 260px;
  }
    
    
  /* CAREER */
  .cs-child {
    width: 25%;
    padding-right: 20px;
  }
    
    
  /* CAREER FORM */
  #application-form-wrap {
    width: 760px;
    padding: 40px 100px;
  }
  #application-form-wrap h1 {
    margin: 25px 0;
  }
    
    
  /* CAREER */
  .career-content .container {
    padding-top: 30px;
  }
  .general_accor h3 {
    font-size: 1.125em;
  }
  .ga_content {
    font-size: 14px;
  }
    
    
  /* AWARD LIST */
  .about-awards {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .awards-list li {
    width: 25%;
  }
}
@media (min-width: 1200px) {
    
  /* HEADER */
  #main-nav {
    font-size: 12px;
  }
  #main-nav a {
    margin-left: 18px;
  }
  #main-nav a.nav-home {
    width: 30px;
  }
  #main-nav a.nav-search span {
    background-size: 14px auto;
  }
  .nav-product-list li {
    width: 25%;
  }
  #drop-news .nav-product-list li {
    width: 33.33%;
  }
    
    
  /* GENERAL PAGE */
  .breadcrumb li {
    margin-right: 40px;
  }
  .breadcrumb a {
    padding-right: 45px;
  }
  .general-content {
    padding: 60px 0;
  }
  .general-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .general-content .intro-text {
    font-size: 18px;
    margin-bottom: 50px;
  }
    
    
  /* NUKE WYSIWYG */
  .nuke-wysiwyg {
    font-size: 16px;
  }
    
    
  /* COLUMNS */
  .cols {
    margin-bottom: 40px;
  }
    
    
  /* ABOUT */
  .visi-misi h2 {
    font-size: 21px;
  }
  .visi-misi p {
    font-size: 18px;
  }
  .philo-child {
    font-size: 18px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .philo-last {
    padding-bottom: 0;
  }
    
    
  /* OVERVIEW */
  .or-content {
    font-size: 16px;
    line-height: 1.7em;
    max-width: 700px;
    padding-top: 80px;
  }
  .or2 .or-content {
    float: right;
    margin-right: 0;
  }
  .sl-list {
    font-size: 16px;
    margin-bottom: 0;
  }
    
    
  /* CONTACT */
  .side-contact h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .sc-info {
    font-size: 16px;
    line-height: 1.7em;
  }
  .sc-info li {
    background-position: left 4px;
  }
  .side-contact .fl-socmed li span {
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 24px;
  }
    
    
  /* PRODUCT */
  .spec-list .sl-item {
    padding-left: 50px;
    background-size: 24px auto;
  }
  .tw-top {
    margin-bottom: 30px;
  }
    
    
  /* FACILITIES */
  .fac-item {
    margin-bottom: 40px;
  }
  .fac-item h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .fac-item h3 {
    font-size: 1.28em;
  }
  .fac-item p,
  .fac-item ol,
  .fac-item ul,
  .fac-item table {
    font-size: 16px;
  }
  .fac-item table td {
    padding-right: 8px;
  }
  .fac-item ol li,
  .fac-item ul li {
    margin-bottom: 5px;
  }
  .sub-fac-item {
    margin-bottom: 20px;
  }
    
    
  /* REGULATION */
  .reg-download .reg-child {
    padding: 20px 30px;
  }
  .reg-download .reg-child h2 {
    font-size: 21px;
    margin-bottom: 15px;
  }
  .rc-button {
    overflow: hidden;
  }
  .rc-button .btn-round {
    float: right;
  }
    
    
  /* TENANT */
  .tenant-content .container {
    position: relative;
  }
  .tenant-main {
    margin-left: 290px;
  }
  .tenant-sidebar {
    float: left;
    width: 260px;
    font-size: 18px;
  }
  .tenant-info {
    border-top: 7px solid #001538;
  }
  .ti-child {
    font-size: 18px;
  }
  .tenant-billing .tenant-child {
    padding: 15px 20px;
    border-top: 7px solid #d71920;
  }
  .tenant-billing .overdue .tenant-child {
    border-top: 7px solid #990b10;
  }
  .tenant-sidebar {
    position: absolute;
    left: 0;
    top: 0;
  }
  .ts-child > a {
    padding: 0 30px;
  }
  .ts-child > a span {
    line-height: 70px;
  }
  .ts-sub li a {
    padding-left: 50px;
    line-height: 54px;
  }
    
    
  /* CAREER */
  .company-snapshot-wrap h2 {
    font-size: 24px;
  }
  .cs-child h3 {
    font-size: 16px;
  }
    
    
  /* CAREER FORM */
  #application-form-wrap {
    width: 900px;
  }
}
