/*-----------------------------------------------------------------------------
                  CUSTOM.CSS Copyright 2019 By: TDC INDONESIA
-----------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
                              MASTER CUSTOM FONT
-----------------------------------------------------------------------------*/

/* FONT AWESOME */

@font-face {
  font-family: "FontAwesome";
  src: url("../webfonts/fa-brands-400.ttf");
  src: url("../webfonts/fa-brands-400.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../webfonts/fa-regular-400.ttf");
  src: url("../webfonts/fa-regular-400.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../webfonts/fa-solid-900.ttf");
  src: url("../webfonts/fa-solid-900.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* CUSTOM FONT */

@font-face {
  font-family: "calibri";
  src: url("../fonts/calibri.woff") format("woff");
}

@font-face {
  font-family: "sourcesanspro";
  src: url("../fonts/sourcesanspro.woff") format("woff");
}

@font-face {
  font-family: "ffdin";
  src: url("../fonts/ffdinprobolditalic.woff") format("woff");
  font-weight: 800;
}

@font-face {
  font-family: "ffdin";
  src: url("../fonts/ffdinpromediumitalic.woff") format("woff");
  font-weight: 600;
}

@font-face {
  font-family: "ffdin";
  src: url("../fonts/ffdinproregularitalic.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "ffdin";
  src: url("../fonts/ffdinprolightitalic.woff") format("woff");
  font-weight: 200;
}

/*-----------------------------------------------------------------------------
                              MASTER COLOR CODE
-----------------------------------------------------------------------------*/
:root{
  /* SOLID COLOR THEME */
  --primary-color: #109f3c;
  --secondary-color: #dcc600;
  --gray-color: #ededed;
  --gray2-color: #e3e5e3;
  --gray3-color: #444444;
  --gray4-color: #a5a5a2;
  --dark-color: #333434;
  --dark2-color: #1d1d1b;
  --light-color: #f8f7f6;

  /* TRANSPARENT COLOR THEME */
  --transparent-primary1: rgba(16,159,60,0.1);
  --transparent-primary3: rgba(16,159,60,0.3);
  --transparent-primary5: rgba(16,159,60,0.5);
  --transparent-primary7: rgba(16,159,60,0.7);
  --transparent-primary9: rgba(16,159,60,0.9);

  /* DEFAULT COLOR THEME */
  --white-color: #ffffff;
  --black-color: #000000;
  --transparent-none: rgba(0, 0, 0, 0);
  --transparent-black1: rgba(0, 0, 0, 0.1);
  --transparent-black3: rgba(0, 0, 0, 0.3);
  --transparent-black5: rgba(0, 0, 0, 0.5);
  --transparent-black7: rgba(0, 0, 0, 0.7);
  --transparent-black9: rgba(0, 0, 0, 0.9);
  --transparent-white1: rgba(255, 255, 255, 0.1);
  --transparent-white3: rgba(255, 255, 255, 0.3);
  --transparent-white5: rgba(255, 255, 255, 0.5);
  --transparent-white7: rgba(255, 255, 255, 0.7);
  --transparent-white9: rgba(255, 255, 255, 0.9);
}
/*-----------------------------------------------------------------------------
                              GENERAL STYLES
-----------------------------------------------------------------------------*/

html {
  font-size: 16pt;
}

body{
	background-color: var(--white-color);
	background-position:center center;
	background-repeat:no-repeat;
	font-family: 'ffdin', sans-serif;
	font-size: 12pt;
	overflow-x: hidden;
	letter-spacing: 0.5px;
	scroll-behavior: smooth;
}

form, p{
 font-family: 'ffdin', sans-serif;
}

.btn-unique{
  color: var(--white-color);
  height: 40px;
  background: var(--primary-color);
  line-height: 40px !important;
  padding: 0 20px !important;
  text-transform: uppercase;
  position: relative;
  z-index: 999;
  border: none;
  text-decoration: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: 0.5s;
}

.btn-unique::before{
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid var(--white-color);
  position: absolute;
  display: block;
  left: 1px;
  top: 1px;
  text-decoration: none !important;
}

.btn-unique:hover, .btn-unique:focus{
  background: var(--dark-color);
  color: var(--white-color);
}

#scrollTop {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--white-color);
  position: fixed;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 25px;
  padding: 0 !important;
  opacity: 0.8;
  display: none;
}

#scrollTop:hover {
  opacity: 1;
}

/*-----------------------------------------------------------------------------
                              DEFAULT FORM STYLES
-----------------------------------------------------------------------------*/

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: var(--transparent-primary7);
  box-shadow: 0 0 15px var(--transparent-primary7);
  outline: 0 none;
}

.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-custom:not([disabled]):not(.disabled).active,
.btn-custom:not([disabled]):not(.disabled):active,
.show>.btn-custom.dropdown-toggle,
.btn-subscribe:not([disabled]):not(.disabled).active,
.btn-subscribe:not([disabled]):not(.disabled):active,
.show>.btn-subscribe.dropdown-toggle {
    border-color: var(--transparent-primary7);
    box-shadow: 0 0 15px var(--transparent-primary7);
    outline: 0 none;
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

a.btn-custom:not([href]):not([tabindex]){
  color: var(--white-color);
}

a.btn-custom:not([href]):not([tabindex]):hover{
  color: var(--primary-color);
}

.btn-custom{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  cursor: pointer;

  padding: 10px 50px;
  font-size: 12pt;
  border-radius: 0;

  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-custom:hover{
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: var(--white-color)
}

/*-----------------------------------------------------------------------------
                              TEXT STYLES
-----------------------------------------------------------------------------*/

.font-style-1{
  font-family: "ffdin", sans-serif;
}

.font-style-2{
  font-family: "calibri", sans-serif;
}

.font-style-3{
  font-family: "sourcesanspro", sans-serif;
}

.font-bold{
  font-weight: 800;
}

.font-medium{
  font-weight: 600;
}

.font-normal{
  font-weight: 400;
}

.font-light{
  font-weight: 200;
}

/*-----------------------------------------------------------------------------
                              COLOR STYLES
-----------------------------------------------------------------------------*/

.c1{
  color: var(--primary-color);
}

.c2{
  color: var(--secondary-color);
}

.c3{
  color: var(--gray-color);
}

.c4{
  color: var(--gray3-color);
}

.c5{
  color: var(--gray4-color);
}

.c6{
  color: var(--dark-color);
}

.c7{
  color: var(--dark2-color);
}

.c8{
  color: var(--light-color);
}

.c9{
  color: var(--black-color);
}

.c0{
  color: var(--white-color);
}

/*-----------------------------------------------------------------------------
                              IMAGE STYLES
-----------------------------------------------------------------------------*/

.picture-box{
  max-height: 300px;
  width: 100%;
  overflow: hidden;
}

.picture-box img{
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.picture-box:hover img{
  -moz-transform: scale(1.25);
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.img-logo{
  height: 150px;
  width: auto;
  padding: 0;
}

.img-icon{
  height: 100px;
  width: auto;
  padding: 0;
}

.img-header{
  height: 2.5rem;
  width: auto;
  padding: 0;
}

/*-----------------------------------------------------------------------------
                              SECTION STYLES
-----------------------------------------------------------------------------*/

/*TOP HEADER*/

.header{
  background-color: none;
  height: auto
}

.top-header{
  min-height: 30px;
  color: var(--white-color);
  background-color: var(--dark-color);
  font-size: 8pt;
}

@media only screen and (max-width: 992px) {
  .marketing{
    display: none;
  }
}

.text-topleft{
  text-align: left;
}
.text-topright{
  float: right;
  text-align: right;
  margin-left: 0px;
  margin-right: 0px;
}

@media only screen and (max-width: 767px) {
  .text-topleft, .text-topright{
    float: none;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

.space{
  display: none;
}

@media only screen and (max-width: 336px) {
  .divider{
    display: none;
  }
  .space{
    display: inline;
  }
}

/*BOTTOM HEADER & NAVIGATION*/

.bottom-header{
  min-height: 120px;
  color: var(--dark2-color);
  background-color: var(--gray-color);
}

.nav-link{
  color: var(--dark2-color);
  font-size: 12pt;
  font-weight: 600;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-link:hover, .nav-link.active{
  color: var(--primary-color);
}

.dropdown-menu.show{
  background-color: var(--gray-color);
  box-shadow: 0px 0px 15px var(--transparent-black3);
}

@media only screen and (max-width: 991px) {
  .dropdown-menu.show{
    background-color: var(--gray-color);
    box-shadow: none;
    border: none;
  }
}

.dropdown-menu.show a{
  color: var(--dark2-color);
  font-size: 12pt;
  font-weight: 600;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.dropdown-menu.show a:hover, .dropdown-menu.show a.active{
  color: var(--primary-color);
  background-color: inherit;
}

.navbar-toggler-icon{
  color: var(--dark2-color);
}

/*BANNER*/

.banner-image{
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height:450px;
  height: 60vh;
}

/*SLIDER*/

.carousel-inner .carousel-item{
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height:450px;
  height: 60vh;
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--transparent-primary1);
    background-clip: padding-box;
    border: 1.5px solid var(--primary-color);
    opacity: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.carousel-indicators li:hover,.carousel-indicators li:active, .carousel-indicators li.active {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--primary-color);
    background-clip: padding-box;
    border: 1.5px solid var(--primary-color);
    opacity: 1;
    transition: opacity .6s ease;
}

.carouselnavigation{
  color: var(--primary-color);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.carousel-control-next, .carousel-control-prev {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
  opacity: 0.5;
  transition: opacity 0.5s ease;
}


/* MAPS */

.gmaps{
  width: 100%;
  height: 300px;
  background-color: grey;
}

/* FAQ */

.flex-even {
  flex: 1;
}

.nav-tabs{
  border-bottom: 1px solid var(--primary-color);
  border-top: 1px solid var(--primary-color);
  border-radius: 0;
}

.nav-tabs .nav-item{
  border-radius: 0;
  border: 1px solid var(--primary-color);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--white-color);
  border: 1px solid var(--white-color);
  border-radius: 0;
  background-color: var(--primary-color);
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--transparent-primary7);
  border-radius: 0;
  color: var(--white-color);
}

.accordion>.card:first-of-type {
  border-bottom: 1px solid rgba(0,0,0,0.125);
}

.card-header {
  padding: 5px;
}

.btn-link{
  color: var(--dark2-color);
  text-decoration: none;
  font-size: 12pt;
  text-align: left;
}

.btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active{
  color: var(--primary-color);
  text-decoration: none;
}

/* CONTACT */
.form-contact{
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 10pt;
  border-radius: 0;
  border: 1px solid var(--primary-color);
}

.form-contact:focus{
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-color);
  outline: 0 none;
  font-size: 10pt;
}

/*-----------------------------------------------------------------------------
FOOTER
*/

.footer{
  background-color: var(--dark-color);
  color: var(--white-color);
  font-size: 9pt;
  font-weight: 200;
  z-index: 1;
  position: relative;
}

.no-links{
  color: inherit;
  transition: 0.5s;
}

.no-links:hover{
  color: var(--primary-color);
  text-decoration: none;
}

.social-links a {
  font-size: 16px;
  display: inline-block;
  background: var(--dark-color);
  color: var(--white-color);
  line-height: 1;
  padding: 7px 0;
  margin-right: 4px;
  border-radius: 50%;
  border: 1px solid var(--transparent-none);
  text-align: center;
  width: 32px;
  height: 32px;
  transition: 0.5s;
}

.social-links a:hover {
  color: var(--primary-color);
}

.form-subscribe{
  font-size: inherit;
  border-radius: 0px;
  color: var(--primary-color);
  border: 1px solid var(--white-color);
}

.btn-subscribe{
  background-color: var(--dark-color);
  border: 1px solid var(--white-color);
  font-family: "myriadpro", sans-serif;
  font-size: 9pt;
  color: var(--white-color);
  border-radius: 0;
  cursor: pointer;
}

.btn-subscribe:hover{
  background-color: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--primary-color);
  transition: all 0.3s;
}

iframe#ifrm{
  display: none;
}
