/*
Import Font
*/
@font-face {
	font-family: "Century Gothic";
	src: url("../fonts/GOTHIC.TTF");
}
@font-face {
	font-family: "Century Gothic";
	src: url("../fonts/GOTHICB.TTF");
	font-weight: bold;
}
@font-face {
	font-family: "Century Gothic";
	src: url("../fonts/GOTHICI.TTF");
	font-style: italic;
}
@font-face {
	font-family: "Century Gothic";
	src: url("../fonts/GOTHICBI.TTF");
	font-weight: bold;
	font-style: italic;
}
@font-face {
	font-family: "Century Gothic";
	src: url("../fonts/GOTHIC.TTF");
	font-style: oblique;
}
@font-face {
	font-family: "Century Gothic";
	src: url("../fonts/GOTHICBO.TTF");
	font-weight: bold;
	font-style: oblique;
}
/*
 * General CSS
 */
 * {
 	-webkit-box-sizing: border-box;
 	-moz-box-sizing: border-box;
 	box-sizing: border-box;
 }
 html {
 	direction: ltr;
 	overflow-x: hidden;
 	-webkit-box-shadow: none !important;
 	box-shadow: none !important;
 	-webkit-font-smoothing: antialiased;
 }
 html,body{
 	background-color: #e6e6e6;
 	color: #777;
 }
 body {
 	/*font-family: 'Open Sans', sans-serif;*/
 	font-family: "Century Gothic";
 	font-size: 14px;
 	line-height: 26px;
 	margin: 0;
 }

 li {
 	line-height: 24px;
 }

 hr {
 	background: rgba(0, 0, 0, 0.06);
 	border: 0;
 	height: 1px;
 	margin: 22px 0;
 }

 hr.solid {
 	background: rgba(0, 0, 0, 0.06);
 }

 hr.solid.shadow {
 	margin: 0;
 	-webkit-box-shadow: 0 0 5px 3px rgba(210, 210, 210, 0.8);
 	-moz-box-shadow: 0 0 5px 3px rgba(210, 210, 210, 0.8);
 	box-shadow: 0 0 5px 3px rgba(210, 210, 210, 0.8);
 }

 body a {
 	outline: none !important;
 }

 /* Headings */
 h1, h2, h3, h4, h5, h6 {
 	color: #212529;
 	font-weight: 200;
 	letter-spacing: -.05em;
 	margin: 0;
 	-webkit-font-smoothing: antialiased;
 }

 h1 {
 	font-size: 2em;
 	line-height: 40px;
 	margin: 0 0 24px 0;
 }

 h2 {
 	font-size: 1.8em;
 	font-weight: 300;
 	line-height: 38px;
 	margin: 0 0 20px 0;
 }

 h3 {
 	font-size: 1.6em;
 	font-weight: 400;
 	line-height: 20px;
 	margin-bottom: 18px;
 	text-transform: uppercase;
 }

 h4 {
 	font-size: 1.4em;
 	font-weight: 600;
 	line-height: 27px;
 	margin: 0 0 14px 0;
 }

 h5 {
 	font-size: 1em;
 	font-weight: 600;
 	line-height: 18px;
 	margin: 0 0 14px 0;
 	text-transform: uppercase;
 }

 h6 {
 	color: #333;
 	font-size: 1em;
 	font-weight: 400;
 	line-height: 18px;
 	margin: 0 0 14px 0;
 }

 section{
 	padding: 30px 0;
 	/*border-bottom: 5px solid #f1f1f1;*/
 }
 .text-decoration-none{
 	text-decoration: none;
 }
 p {
 	color: #777;
 	line-height: 24px;
 	margin: 0 0 20px;
 }

 img.border-radius{
 	border-radius: 5px;
 }

 .center-cropped {
 	border-radius: 10px;
 	width: 100%;
 	height: 391px;
 	background-position: center center;
 	background-repeat: no-repeat;
 }
 @media (max-width: 575px) {
 	.center-cropped{
 		height: 285px;
 	}
 }

 /* Responsive */
 @media (max-width: 575px) {
 	body {
 		font-size: 13px;
 	}
 }

 #header,#content,#footer{
 	display: block;
 }
 .inner-padding{
 	padding: .5rem 1rem;
 }
 .boxed-shadow{
 	background-color: #fff;
 	margin: 20px;
 	padding: 8px;
 	border-radius: 15px;
 	border-bottom-color: rgba(89,89,89,0.5);
 	-webkit-box-shadow: 10px 10px 30px 3px rgba(89,89,89,0.5);
 	-moz-box-shadow: 10px 10px 30px 3px rgba(89,89,89,0.5);
 	box-shadow: 10px 10px 30px 3px rgba(89,89,89,0.5);
 	overflow: hidden;

 }
 .with-same-height{
 	height: calc(100% - 20px);
 }
 .boxed-shadow.first{
 	margin-top: 40px;
 }

 .boxed-with-border{
 	margin: 30px;
 	border: 2px solid #E81717;
 	border-radius: 20px;
 }

 .leftColfixed{
 	position: fixed;
 	overflow-y: scroll;
 	top: 0;
 	bottom: 0;
 }

 /*btn*/
 .btn-primary{
 	background-color: #0088CC;
 	border-color: #0088CC #0088CC #006699;
 	color: #FFF;
 }

 .btn-primary:hover,
 .btn-primary.hover {
 	background-color: #00a1f2;
 	border-color: #00aaff #00aaff #0088CC;
 	color: #FFF;
 }

 .btn-primary:focus,
 .btn-primary.focus {
 	-webkit-box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.5);
 	box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.5);
 }

 .btn-primary.disabled,
 .btn-primary:disabled {
 	background-color: #0088CC;
 	border-color: #0088CC #0088CC #006699;
 }

 .btn-primary:active,
 .btn-primary.active {
 	background-color: #006ea6 !important;
 	background-image: none !important;
 	border-color: #006699 #006699 #004466 !important;
 }
 .btn-outline.btn-primary {
 	color: #0088CC;
 	background-color: transparent;
 	background-image: none;
 	border-color: #0088CC;
 }

 .btn-outline.btn-primary:hover,
 .btn-outline.btn-primary.hover {
 	color: #FFF;
 	background-color: #0088CC;
 	border-color: #0088CC;
 }

 .btn-outline.btn-primary:focus,
 .btn-outline.btn-primary.focus {
 	-webkit-box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.5);
 	box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.5);
 }

 .btn-outline.btn-primary.disabled,
 .btn-outline.btn-primary:disabled {
 	color: #0088CC;
 	background-color: transparent;
 }

 .btn-outline.btn-primary:active,
 .btn-outline.btn-primary.active {
 	color: #FFF !important;
 	background-color: #0088CC !important;
 	border-color: #0088CC !important;
 }

 .btn-with-icon.btn-primary span {
 	background-color: #0088CC;
 }
 .btn-with-icon span {
 	margin-right: 10px;
 	float: right;
 	background-color: #ccc;
 	display: inline-block;
 	height: 25px;
 	line-height: 24px;
 	width: 24px;
 	border-radius: 50%;
 	margin-left: 10px;
 	-webkit-transition: all 0.1s linear;
 	transition: all 0.1s linear;
 }
 .btn-with-icon span i {
 	color: #FFF;
 	font-size: 12px;
 	top: -1px;
 	position: relative;
 }

 .btn-with-icon.btn-primary.btn-outline:hover span {
 	background-color: #0099e6 !important;
 }

 .btn-with-icon:hover span {
 	-webkit-transform: translateX(5px);
 	transform: translateX(5px);
 }
 .btn-style-2{
 	border-radius: 35px;
 	padding: 20px 10px;
 	margin: 15px 0
 }
 .btn-style-2 i.big-icon{
 	font-size: 1.4em;
 	position: absolute;
 	left: 40px;
 }
 .btn-custom-shadow2{
 	box-shadow: 0px 3px 1px rgba(0,0,0,0.3);
    font-weight: 600;
    color: #005427;
 }


/*
Header
*/
#header{
	/*background-color: #FFF;*/
	padding: 0;
	margin: 0;
	/*height: 85px;*/
	position: relative;
	z-index: 100;
}
#header .header-body{
	/*position: fixed;*/
	height: auto;
	width: 100%;
	border-top: 0;
/*	border-bottom-color: rgba(234, 234, 234, 0.6);
	-webkit-box-shadow: 0 0 5px rgba(210, 210, 210, 0.8);
	box-shadow: 0 0 5px rgba(210, 210, 210, 0.8);*/
}
#header .logo img{
	width: 150px;
	height: auto;
	position: relative;
	bottom: 6px;
}
#header .navbar-nav li {
	height: 100%;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	margin-left: 2px;
}
#header .navbar-nav li a{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: normal;
	border-radius: 4px;
	color: #444;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	padding: 0.5rem 1rem;
	letter-spacing: -0.2px;
	text-transform: uppercase;
	position: relative;
	margin: 1px 0 0;
	min-height: 45px;
	height: 100%;
}
#header .navbar-nav li a:hover,
#header .navbar-nav li a.active{
	color: #0088CC;
}
.btn-menu-mobile {
	color: #0088CC;
}
#header .btn-login-pmb{
	display: block;
	font-size: 12.8px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.3px;
	padding: 8.528px 14.928px;
	cursor: pointer;
	border-bottom-width: 3px;
	position: absolute;
	right: 15px;
	background-color: #0088CC;
	border-color: #0088CC #0088CC #006699;
	color: #FFF;
	text-transform: uppercase;
}
@media (max-width: 991px){
	#header .btn-login-pmb span {
		display: none;
	}
	#header .btn-login-pmb::before{
		font-family: 'Font Awesome 5 Free';
		content: "\f2f6";
	}
	#header .btn-login-pmb{
		top: 10px;
		right: 45px;
	}
}
#header .btn-login-pmb:hover{
	background-color: #00a1f2;
	border-color: #00aaff #00aaff #0088CC;
	color: #FFF;
}
.heading-title{
	font-size: 1.5em;
	text-transform: uppercase;
	margin-bottom: 0;
	margin-top: 3px;
	text-align: center;
}
.btn-icon-home{
	margin-top: 5px;
}
.marquee-text{
	font-size: 1.4em;
	font-weight: normal;
	color: #0088CC;
}

.nav.nav-primary a.active{
	background-color:  #E81717;
}

.nav.nav-primary a{
	color: #E81717;
}
/*
owl-carousel
*/
.owl-carousel .owl-stage {
	display: flex;
}

.owl-carousel .owl-item img {
	width: 100%;
	height: auto;
}
.owl-carousel .owl-nav {
	top: 50%;
	position: absolute;
	width: 100%;
	margin-top: 0;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
.owl-carousel .owl-nav button.owl-prev::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 14px;
	content: "\f053";
	position: relative;
	left: -1px;
	top: 0;
}
.owl-carousel .owl-nav button.owl-next::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 14px;
	content: "\f054";
	position: relative;
	left: 1px;
	top: 0;
}
.owl-carousel .owl-nav button.owl-prev {
	left: 15px;
}
.owl-carousel .owl-nav button.owl-next {
	right: 15px;
}
.owl-carousel .owl-nav button[class*="owl-"] {
	background-color: #0088CC;
	border-color: #0088CC #0088CC #006699;
	color: #FFF;
	border-radius: 50%;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
	display: inline-block;
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	outline: 0;
	margin: 0;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
.widget{
	min-height: 300px;
}
.widget h3{
	font-size: 18px;
	font-weight: 600;
	margin: 14px 22px 22px;
}
.widget ul.list-pengumuman {
	margin: 0;
	padding: 15px 20px;
	overflow-x: hidden;
	overflow-y: scroll;
	height: 420px;
	max-height: 100%;
}
.widget ul.list-pengumuman.large {
	padding: 0 20px;
	overflow: hidden;
	max-height: unset;
}
.widget ul.list-pengumuman li {
	overflow-x: hidden;
	font-size: 14px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #ddd;
}
.widget-thumb{
	float: left;
	overflow-x: hidden;
	margin-right: 15px;
}
.widget-thumb img{
	background: #fff;
	border: 1px dashed #e0e0e0;
	padding: 3px;
	height: 75px;
	width: 75px;
}
.widget-content h4{
	font-size: 14px;
	cursor: pointer;
	line-height: 20px;
	margin: 0;
}
.widget-content p{
	font-size: 12px;
}
.widget-content h4 a:hover{
	color: #2996bd;
}

.widget-content h4 a{
	color: #202020;
	outline: 0 none;
	text-decoration: none;
	font-weight: bold
}
.fixed-height{
	max-height: 400px;
	overflow-y: scroll;
}

.callto-action {
	/*background-color: #0088CC;*/
	background-color: #00A34A;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	padding: 22px 22px 12px;
	clear: both;
}
.callto-action p{
	color: #FFF;
}

#footer {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	margin-top: 10px;
	padding-top: 15px;
}

#footer p{
	text-align: center;
	color: #0088CC;

}
/*contact*/
.list-contact-info {
	margin-top: 25px;
	padding-top: 20px;
	display: block;
}

.social-area{
	margin-top: 15px;
	display: block;
}

.social-area ul,
.list-contact-info ul{
	list-style: none;
	margin: 0;
	padding: 0;
	width: auto;
}
.list-contact-info ul li{
	margin-bottom: 10px;
}
.social-area ul li{
	line-height: 24;
	display: inline-block;
	margin: -1px 1px 0 0;
	padding: 0;
	overflow: visible;
	-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.social-area ul li a{
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	display: block;
	height: 28px;
	line-height: 28px;
	width: 28px;
	text-align: center;
	background-color: #0088CC;
	color: #FFF;
	text-decoration: none;
	font-size: 12.8px;
	font-size: 0.8rem;
}

.social-area ul li:hover a {
	background: #FFF;
	color: #0088CC !important;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #6789ab;
}
.help-block {
    margin-top: 5px;
    margin-bottom: 5px;
}
.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .form-control-feedback, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
    color: #e73d4a;
}
.has-error .form-control,
.has-error .thumbnail {
    border-color: #e73d4a;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
