/* ============== Typography Setup =============== */  

html,body{
	padding: 0;
	margin: 0;  
} 
body{   
	font-family: 'Montserrat', sans-serif;
	color: #808080;
	font-size: 14px; 
	font-weight: 400;  
	margin: 0px;
	padding:0;
	line-height: 1.42857;
	background:#ffffff;
	 -moz-osx-font-smoothing: grayscale;
  	-webkit-font-smoothing: antialiased;
  	font-smoothing: antialiased;

	position: relative;
}

/*hack only firefox*/
/*@-moz-document url-prefix() { 
  body {
    font-weight: 300 !important;
  }
} */


@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    img, .photo, .graphic-map{image-rendering: -webkit-optimize-contrast;}
}

b, strong{
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
}
h1,h2,h3,h4,h5,h6{   
	margin:0;  
	color: #b29363;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
} 

.white{ color: #ffffff !important } 


 
/* ============== Input =============== */ 


.title-lg{
	font-size: 60px; 
	color: #fff; 
	position: relative;
	font-weight: 500
}
.title-xl{
	font-size: 42px;
	color: #000000;
	font-weight: 600
}
.title-md{
	font-size: 32px;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	font-weight: 600
}
.title-sm{
	font-size: 26px;
	color: #e4007f; 
	position: relative;
	margin-bottom: 15px;
	font-weight: 600
}
.title-xs{
	font-size: 21px;
	color: #fff; 
	position: relative; 
	font-weight: 600
}

.radio-group, 
.checkbox-group{ 
	padding-left:0; 
	position:relative;
	list-style-type:none;
	margin:0px;
	padding:0px;
	text-align:center;
	display:inline-block;
	vertical-align:top
}
.radio-group{ display:inline-block; position:relative}


.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
	/*display: none;*/
	visibility: hidden;
	opacity: 0;
	height: 0;
	position: absolute;
	width: 0
}
.checkbox-group label:before,
.radio-group label:before {
	content: "";
	display: inline-block;

	margin-right: 5px;
	position: absolute;
	left:0;
	top:8px;
	background-color: transparent;
	border: 1px solid #cab97b; 
	width:16px;
	height:16px; 

  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

.radio-group label:before { 
	
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
	
}
.radio-group label,
.checkbox-group label {
	position:relative;
	padding-left:30px;
	padding-right:15px;
	text-align:left;
	margin:1px 0;
	display:block; 
	font-family:inherit;
	font-size:16px;
	font-weight: 400;
	line-height:30px;
	cursor:pointer;

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

.checkbox-group label{color: inherit;} 
.radio-group label{color: inherit; padding-left: 28px} 
 
.radio-group input[type="radio"]:checked + label:after {
    content: "";
    color: #ea6f21;
	background-color:#cab97b;
	-webkit-border-radius:50%;
     -moz-border-radius:50%;
          border-radius:50%;
	position:absolute;
	left:3px;
	top:11px;
	width:10px;
	height:10px;
}
 

.checkbox-group input[type="checkbox"]:checked + label:after,
.checkbox-group input[type="checkbox"]:checked + .error + label:after {
	content: "";
	width:15px;
	height:15px;
	position:absolute;
	top:3px;
	left:3px;
	display:block; 
	background-image: url(../img/icons/icon-checked.svg);
	background-position:0 0;
	background-size: 13px;
	background-repeat: no-repeat;
	
}
  
.checkbox-disable.checkbox-group label:before{
	background-color:#c0c0c0;
	border:2px solid #b1b1b1;
	cursor:default !important
}
.checkbox-disable.checkbox-group input[type="checkbox"]:checked + label:after {
	content:'';
}

.input-block{
	display: block;
	margin-bottom: 20px;
	 -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.input-block .form-control{ margin: 0 }
.input-block.inline{
	display: inline-block;
	vertical-align: top;
}
.input-block.inline + .input-block{ margin-left:-5px  }

.input-block .radio-group{
	display: inline-block;
	vertical-align: top;
}
.input-text{
	font-family:inherit;
	font-weight: 400;
	display: block;
	margin-bottom: 5px;
	font-size:16px; 
}


.select-wrap{
	position:relative;
	padding-left:0 !important;
	cursor:pointer;
	display:block;
	margin-bottom:0;  
	
}

.select-wrap.inline-block{display: inline-block;}
.select-group { display: inline-block; vertical-align: top; margin-left: 10px; cursor: text;  }
.select-group .input-text,
.select-group .select-wrap,
.layout-switcher{ display: inline-block; }

.select-wrap:before{
	content:'';
	width: 0; 
  	height: 0;  

  	position: absolute;
	right:15px;
	top: 12px;
	width:10px;
	height:10px;
	vertical-align:top;
	margin-left:1px;
	border-top: 1px solid #bea063;
	border-left: 1px solid #bea063;
	-webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  
}
 

.select-wrap .customSelect{   
	width:100%;
	color:inherit;
	padding:0 25px 0 15px;   
	cursor:pointer;  
	display:block;
	font-size:14px;
	border:0px; 
	background-color: #fff;
	border: 1px solid #bea063; 
	height: 40px;
	line-height: 40px;
	font-family:inherit;  

   border-radius: 5px;
	
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
} 

.select-wrap select{
	width:100%;	
	height: 100% !important;
	opacity: 0 !important;
	z-index: 9;
	position: relative;
}
.select-wrap select option{ 
	font-size:12px;
	padding:2px;
	color:#8a8c8f; 
	font-family:inherit;
}
 
span.error{
	font-family: tahoma,arial;
	font-size: 11px;
	color: red;
	display: block;
	margin-bottom:5px;
	margin-top:3px; 
}
.form-control.error{ border-color: #ffaaaa }
  
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100%;
  height: 100%;
  background-color: #000000;
  overflow: hidden;
}
.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.preloader-icon {
  width: 72px;
  height: 72px;
  display: inline-block;
  padding: 0px;
}
.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background-color: #e4007f; /*01aa7a*/
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}
.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}
@keyframes preloader-fx {
  0% {transform: scale(0, 0); opacity:0.5;}
  100% {transform: scale(1, 1); opacity:0;}
}
@-webkit-keyframes preloader-fx {
  0% {-webkit-transform: scale(0, 0); opacity:0.5;}
  100% {-webkit-transform: scale(1, 1); opacity:0;}
} 

/* ============== Icon Setup   =============== */ 

.icons{
	display:inline-block;
	position:relative;
	vertical-align:top;
	background-image:url(../img/icons.png);
	background-repeat:no-repeat;
}
 
 
.arrow-left,
.arrow-right,
.arrow-up,
.arrow-down{
  position: absolute;
  left: 0;
  top: 0;
  width:5px;
   height:5px;
   vertical-align:top;

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

.arrow-left{
   border-top: 1px solid #676767;
   border-left: 1px solid #676767;
   -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);  
}

.arrow-right{
  border-top: 1px solid #676767;
  border-left: 1px solid #676767;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);  
}

.arrow-up{
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}
.arrow-down{
   margin-left:1px;
   border-top: 1px solid #000000;
   border-left: 1px solid #000000;
   -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  
}

.page{
	position: relative;
	overflow: hidden;
	display: block;
	height: 100%;
	width: 100%; 

}
.page-nobanner{ padding-top: 60px }


/* ============== Header Setup   =============== */ 

.header{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0; 
	z-index: 100;
	padding: 20px 0;
 
	background-color: #ffffff;

	box-shadow: 0 0 15px rgba(0,0,0,0.15); 

	-webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
}
.header .container-fluid{
	/*padding-left: 50px;
	padding-right: 50px;*/
}

/*.scrolling .header{ padding: 10px 0 }
.scrolling .navbar-brand img{width: 240px;}*/

.navbar-main{
	float: right;
	margin-right:-20px; 
}
.navbar-main .nav{
	float: right;
}
.navbar-main .nav li{
	float: left;
}
.navbar-main .nav li a{
	display: block;
	font-weight: inherit;
	color: #000000;
	padding: 13px 20px;
	font-weight: 500
}
.navbar-main .nav li:hover a,
.navbar-main .nav li.active a{ color:#e4007f}

/* ============== Template Elements =============== */ 

.section{
	display: block;
	float: left;
	width: 100%;
}

.section.fullscreen{ 
	padding:0;
	display: table;
	
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
} 

.section.fullscreen .section-inner{
	display: table-cell;
	width: 100%;
	height: 100%; 
	vertical-align: top;
}

.section .photo{
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	
} 
.section .photo.bg{
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
     -moz-user-select: none;
}
.section-banner{
	padding-top: 85px;
	position: relative;
} 
.section-banner .photo img{
	display: block;
	width: 100%;
}
 
.banner-caption{
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
	text-align: center;
}
.banner-caption .title-md,
.banner-caption h4{ font-weight: 500 }
 
.banner-caption .line,
.page-name .line{
	position: relative;
	display: block;
	padding-bottom: 35px;
	margin-bottom: 30px;
}
.banner-caption .line:before,
.page-name .line:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 3px;
	width: 55px;
	margin-left:-27.5px; 
	background-color: #e4007f;
}
.banner-caption h4{
	font-size: 18px;
	color: #fff; 
    margin: 0 auto;
    display: block;
	white-space: nowrap;
    overflow: hidden; 
}

.page-name{
	position: absolute;
	top: auto;
	bottom:60px;
	left: 0;
	right: 0;
	z-index: 9;
	display: block; 
}
.page-name .line{ margin-bottom: 35px }
.page-name .line:before{
	left: 0;
	margin-left: 0;
	width: 75px;
}
.page-name .title-lg{ line-height: 1.1 } 

.article{
	font-size: 13px;
	color: #666666;
	/*font-weight: 300;*/
	position: relative;
	z-index: 9;
	line-height: 1.7
}

.article ol,
.article ul{
	padding: 0 0 0 13px;
	margin:0; 
}
.article li{ padding: 2px 0 }

.article .title-sm,
.article p{
	margin-bottom: 25px;
}

.section-vision,
.section-company {
	padding:95px 0;
	position: relative;
}
.section-vision .article p{
	margin-bottom:40px;
}

.business-item{
	display: block;
	padding: 65px 0;
	border-bottom:1px solid #e2e2e2; 
}
.business-item .photo{
	display: block;
	width: 100%;
	max-width: 380px;

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.business-item .photo.line{
	border:1px solid #e2e2e2;
}
.business-item .photo img{
	width: 100%
}

.business-item .pull-right .photo{ float: right; }

.business-item .article{ padding-top: 20px } 
.business-item .article .btn{ margin-top: 15px }

.btn-download{
	background-color: #eeeeee !important;
	height: 235px;
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	font-weight: 500;
	color: #000000;
	padding-left: 25px;
	padding-right: 60px;
	background-image: url(../img/icons/icon-pdf.svg);
	background-position: 100% -17px;
	background-repeat: no-repeat; 
	letter-spacing: 1px;
}
.btn-download:hover{ color: #e4007f }
.btn-download img{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -2px;
	margin-right: 5px
}

.section-company .article{ /*font-weight: 300*/ }
.section-company .article p{ margin-bottom:20px  }
.section-company .article table{
	width: 100%;
	margin-top: 50px;
}

.section-company .article table th,
.section-company .article table td{
	vertical-align: top;
	padding: 10px
}

.section-company .article table th{
	width: 25%;
	font-weight: 400;
	color: #e4007f;
	padding-left: 0
}

.section-company .logo{
	display: block; 
	padding-top: 50px;
	width: 100%;
	max-width: 290px
}
.section-company .logo img{ display: block;max-width: 100% }

/* Animation */
/*
.banner-caption h4{
	font-size: 18px;
	color: #fff;
	width: 262px;
    margin: 0 auto;
    display: block;
	white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid rgba(255,255,255,.75);
}
.anim-typewriter{
  animation: typewriter 4s steps(44) 1s 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 262px;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}
*/


@media (min-width: 993px){
.banner-caption .title-md{ font-size: 42px }
.banner-caption h4{font-size: 28px}
}
@media (min-width: 1600px){
.banner-caption .title-md{ font-size: 52px }
.banner-caption h4{font-size: 38px}
}  
.contact-bar{
	background-color: #30374c;
	padding: 20px 0;
	float: left;
	width: 100%
}
.contact-bar.left{ padding-left: 50px; }
.contact-bar.right{ padding-right: 50px; }

.contact-bar .title-xs{
	line-height: 45px;
	float: left;
}

.contact-content .row{ 
	margin:0; 
}
.contact-content .row > div{ 
	padding: 0; 
	position: relative;
	height:535px;
	text-align: center;
}
.contact-content .article{
	display: inline-block;
	margin: 40px 0 0 0;
	padding: 25px 35px;
	width: 100%;
	max-width: 480px;
	color: #000;
	text-align: left;
	vertical-align: middle;

	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
 
}
.contact-content .article p{ margin-bottom:10px  }
.contact-content .article .phone{
	font-size: 18px;
}
.contact-content .article .phone a{ color: #000 }
.contact-content .article .phone img{
	display: inline-block;
	margin:0 4px 0 0;
}

.contact-content .map{
	display: block;
	width: 100%;
	/*height: 335px;*/

	height: 100%
}

.nav-map{
	float: right;
}
.nav-map.nav-tabs{ margin-right: -10px }
.nav-map.nav-tabs > li{
	padding: 0 10px;
}
.nav-map.nav-tabs > li > a{
	padding: 0 20px;
	height: 45px;
	line-height: 42px;
	text-align: center;
	border: 2px solid #fff;
	background-color: transparent;
	font-size: 13px;
	text-transform: uppercase;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}
.nav-map.nav-tabs > li.active > a,
.nav-map.nav-tabs > li:hover > a{
	background-color: #fff;
	border: 2px solid #fff;
	color: #000;
	opacity: 1
}

.nav-map.nav-tabs > li > a img,
.nav-map.nav-tabs > li > a svg{
	display: inline-block;
	width: 20px;
	height: 22px;
	vertical-align: middle;
	position: relative;
	top: -2px;
	margin-right: 2px;
	-webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}
 

.nav-map.nav-tabs > li:hover > a svg path,
.nav-map.nav-tabs > li.active > a svg path{ fill: #e4007f }


.tab-map{
	float: left;
	width: 100%;
	height: 450px
}
.tab-map .tab-pane{
	position: relative;
	height: 100%;
	background-color: #fff
}

.graphic-map{
	display: block;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/graphicmap.jpg);
}
.graphic-map img{
	width: 100%;
}

.btn-google{
	height: 42px;
	line-height: 42px;
	font-size: 12px;
	text-transform: uppercase;
	position: absolute;
	left: 0;
	bottom: 0;
}

.btn-google img{
	display: inline-block;
	margin-left: 10px;
	max-width: 19px;
}

.section-head-office {
	padding:70px 0;
	position: relative;
}
.section-head-office .title-xl{ margin-bottom:40px  }

.office-wrap{ 
	display: block;
	color: #000;
	/*font-weight: 300*/
}
.office-wrap .phone{ font-size: 18px }
.office-wrap .phone a{ color: #000 }
.office-wrap .phone img{
	width: 22px;
	margin-right: 5px
}

.office-wrap ul{
	margin:0;
	padding: 0;
	list-style-type: none;
	width: 240px;
}
.office-wrap ul li{
	margin:0;
	padding: 3px 0 3px 17px;
	position: relative;
	display: inline-block;
	width: 48%;
	vertical-align: top;
	font-size: 15px
}
.office-wrap ul li:before{
	content: '';
	position: absolute;
	left: 0;
	top: 13px;
	width: 5px;
	height: 5px;
	background-color: #e4007f
}

.office-wrap table{
	width: 100%; 
}
.office-wrap table tr th{
	font-weight: 400;
	color: #e4007f;
	vertical-align: top;
	width: 100px;
	padding: 5px 0

}
.office-wrap table tr td{ 
	color: #666666;
	vertical-align: top;
	padding: 5px 0
}



.section-head-office .btn{
	width: 100%;
	height: 48px;
	line-height: 51px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	margin-top: 70px
}
.section-head-office .btn img{
	display: inline-block;
	width: 24px;
	margin-left: 10px;
	position: relative;
	left: 0;

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

.section-head-office .btn:hover img{
	left: 10px;
}

.section-worldwide{
	background-color: #e6eff5;
	padding: 80px 0 0
}

.map-office{
	display: block;
	position: relative;
	margin-top: 50px;
	overflow: hidden;
}
.map-office img{
	width: 100%;
	display: block;
}
.map-office img.marker{
	position: absolute;
	top: 0;
	left: 0;
}

.section-global{
	border-top:35px solid #000000; 
	background-color: #0d0d0d;
	color: #fff;
	padding-bottom:115px;
	position: relative; 
}

.section-global .photo{
	background-size: contain;
	background-position: top right;
	position: absolute;
	top: 0;
	left: 0;
}

.section-global .title-xl{
	color: #fff; 
	font-weight: 500;
	margin:35px 0 60px;
}

.section-global .container{
	position: relative;
	z-index: 1
}

.global-contact{
	padding-right: 50px;
	padding-bottom: 40px;
	display: block;
}

.global-contact .title-xs{
	color: #e4007f;
	margin-bottom:12px 
}

.global-contact p{
	line-height: 1.6;
	margin-bottom:5px;

}
.global-contact .tel{ margin-top: 10px }
.global-contact .tel span{
	display: inline-block;
	vertical-align: top;
	padding-right: 10px;
	font-size: 15px
}
.global-contact .tel span a{ color: #fff }
.global-contact .flag{ margin-top: 10px }
.global-contact .flag img{ width: 34px }
 


/* ============== Footer Sutup =============== */ 

.section-footer{
	position: relative;
	display: block;
	height:350px;
	background-color: #000; 
}

.footer-caption h3{
	position: absolute;
	top: 50%;
	right:115px; 
	height: 70px;
	line-height: 70px;
	text-transform: uppercase;
	font-size: 18px; 
	font-weight: 500;
	color: #fff;
	margin-top:-35px;
	padding-right: 30px; 
}
.footer-caption h3 span{ display: block; } 
.footer-caption h3 .line{
	width: 2px;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	border-right:1px solid #e4007f 
}
 
.footer{
	background-color:rgba(0,0,0,0.7);
	color: #fff;  
	padding:15px 0;
	float: left;
	width: 100%; 
	position: absolute;
	bottom: 0;
	left: 0;

	font-weight: 300;
	font-size: 11px;
	color: rgba(255,255,255,0.5);   
} 

.footer .container-fluid{
	padding-left: 30px;
	padding-right: 30px;
}

.footer .left{ float: left; }
.footer .right{ float: right; }


/*hack only firefox*/
@-moz-document url-prefix() { 
 
  .article,
  .section-company .article table th,
  .office-wrap ul li,
  .office-wrap .phone,
  .office-wrap table tr th,
  .global-contact p {
    font-weight: 300;
  }

  .title-xl,
  .title-md,
  .title-sm,
  .title-xs{ font-weight: 500 }
} 
