/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
a {
	color: #f91303;
}

a:hover {
	color: #f91303;
	text-decoration: none;
}

.bg-dlh {
	background: #f91303;
}

.img-hover img {
	transition: all 0.2s linear;
}

.img-hover:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#text-black {
	color: #000 !important;
	font-weight: bold;
}

.bg-footer {
	background: rgba(254, 238, 3, 0.75);
}

.text-blue {
	color: #0296f0 !important;
}

.text-red {
	color: #f91303 !important;
}

.btn-read-more {
	-moz-text-align-last: right;
	text-align-last: right;
}

.btn-read-more a {
	display: inline-block;
	background: #f91303;
	color: #fff;
	padding: 6px 20px 8px 20px;
	transition: 0.3s;
	font-size: 14px;
	border-radius: 50px;
	border-color: #f91303;
}

.btn-read-more a:hover {
	background: #0296f0;
	border-color: #0296f0;
}

.btn-detail {
	display: inline-block;
	background: #f91303;
	color: #fff;
	padding: 6px 20px 8px 20px;
	transition: 0.3s;
	font-size: 14px;
	border-radius: 50px;
	border-color: #f91303;
}

.btn-detail:hover {
	background: #0296f0;
	border-color: #0296f0;
}

/* .text-banner {
	color: white;
	font-size: 40px;
	padding: 150px 30px 0px 30px;
	text-align: center;
	text-transform: uppercase;
} */

.text-banner h1 {
	font-size: 40px;
	color: white;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	position: relative;
	/* padding-bottom: 15px; */
	/* margin-bottom: 50px; */
	padding: 150px 30px 15px 30px;
}

.text-banner h1::before {
	content: '';
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.text-banner h1::after {
	content: '';
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #f91303;
	bottom: 0;
	left: calc(50% - 20px);
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #5c9f24;
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #6fc02c;
	color: #fff;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
	/* background: rgba(0, 0, 0, 0.75); */
	background: rgba(254, 238, 3, 0.75);
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu>ul {
	display: flex;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	padding: 10px 0 10px 22px;
}

.nav-menu a {
	display: block;
	position: relative;
	color: rgba(255, 255, 255, 0.7);
	transition: 0.3s;
	font-size: 14px;
	/* font-family: "Roboto", sans-serif; */
	font-weight: 500;
	padding: 0 4px;
	text-transform: uppercase;
}

.nav-menu>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -6px;
	left: 0;
	background-color: #f91303;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
	visibility: visible;
	width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: #fff;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 22px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #2a2a2a;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #f91303;
}

/* .nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
} */

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

/* .nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
} */

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}

	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}

	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}

/* Get Startet Button */
.get-started-btn {
	margin-left: 25px;
	color: #fff;
	border-radius: 4px;
	padding: 6px 25px 8px 25px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 13px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
	border: 2px solid #f91303;
}

.get-started-btn:hover {
	background: #5c9f24;
	color: #fff;
}

@media (max-width: 768px) {
	.get-started-btn {
		margin: 0 48px 0 0;
		padding: 6px 18px;
	}
}

/* Mobile Navigation */
.mobile-nav-toggle {
	position: fixed;
	top: 18px;
	right: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: #fff;
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #2a2a2a;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: #f91303;
	text-decoration: none;
}

/* .mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
} */

/* .mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
} */

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(17, 17, 17, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}

.bg-trans-black {
	background: rgb(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	/* background-color: rgba(194, 9, 9, 0.8); */
	overflow: hidden;
	padding: 0;
}

#hero .carousel-item {
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

#hero .carousel-item::before {
	content: '';
	/* background-color: rgba(6, 6, 110, 0.5); */
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

#hero .carousel-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero .carousel-content {
	text-align: center;
}

#hero h2 {
	color: #fff;
	margin-bottom: 30px;
	font-size: 48px;
	font-weight: 700;
}

#hero h2 span {
	color: #5c9f24;
}

#hero p {
	width: 80%;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	margin: 0 auto 30px auto;
	color: #fff;
}

#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
	opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
	opacity: 1;
	transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
	left: 0;
	transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
	width: 10%;
	opacity: 1;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background: none;
	font-size: 36px;
	line-height: 1;
	width: auto;
	height: auto;
	/* background: rgba(255, 255, 255, 0.1);
	border-radius: 50px; */
	padding: 10px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
	cursor: pointer;
	background: #fff;
	overflow: hidden;
	border: 0;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: .6;
	transition: 0.3s;
}

#hero .carousel-indicators li.active {
	opacity: 1;
	background: #f91303;
}

#hero .btn-get-started {
	/* font-family: "Roboto", sans-serif; */
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 32px 12px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	margin: 10px;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	text-transform: uppercase;
	border: 2px solid #f91303;
	background: #f91303;
}

#hero .btn-get-started:hover {
	background: #f91303;
	border-color: #f91303;
	color: #fff;
}

@media (max-width: 768px) {
	#hero h2 {
		font-size: 28px;
	}
}

@media (min-width: 1024px) {
	#hero p {
		width: 60%;
	}

	#hero .carousel-control-prev,
	#hero .carousel-control-next {
		width: 5%;
	}
}

/* Sections Header
--------------------------------*/
.section-header h3 {
	font-size: 32px;
	color: #111;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 50px;
}

.section-header h3::before {
	content: '';
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.section-header h3::after {
	content: '';
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #f91303;
	bottom: 0;
	left: calc(50% - 20px);
}

.section-header p {
	text-align: center;
	padding-bottom: 30px;
	color: #333;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
	padding: 30px 0;
}

.about .content h3 {
	font-weight: 700;
	font-size: 34px;
}

.about .content p {
	margin-bottom: 0;
}

.about .content .icon-box {
	margin-top: 25px;
}

.about .content .icon-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 5px 0 10px 60px;
}

.about .content .icon-box i {
	font-size: 30px;
	float: left;
	color: #f91303;
}

.about .content .icon-box h5 {
	font-size: 20px;
	color: #848484;
	margin-left: 60px;
}

.about .image {
	background-size: cover;
	min-height: 400px;
}

@media (max-width: 991px) {
	.about .image {
		text-align: center;
	}

	.about .image img {
		max-width: 80%;
	}
}

@media (max-width: 667px) {
	.about .image img {
		max-width: 100%;
	}
}

/* ========= agenda ========= */
time.icon {
	font-size: 1em;
	/* change icon size */
	display: block;
	position: relative;
	min-width: 7em;
	min-height: 7em;
	background-color: #fff;
	/* margin: 2em auto; */
	border-radius: 0.6em;
	box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff, 0 3px 0 #bdbdbd, 0 4px 0 #fff, 0 5px 0 #bdbdbd, 0 0 0 1px #bdbdbd;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-transform: rotate(0deg) skewY(0deg);
	-webkit-transform-origin: 50% 10%;
	transform-origin: 50% 10%;
}

time.icon * {
	display: block;
	width: 100%;
	font-size: 1em;
	font-weight: bold;
	font-style: normal;
	text-align: center;
}

time.icon strong {
	position: absolute;
	top: 0;
	padding: 0.4em 0;
	color: #fff;
	background-color: #0296f0;
	border-bottom: 1px dashed #0296f0;
	box-shadow: 0 2px 0 #0296f0;
}

time.icon em {
	position: absolute;
	bottom: 0.3em;
	color: #0296f0;
}

time.icon span {
	width: 100%;
	font-size: 2.8em;
	letter-spacing: -0.05em;
	padding-top: 0.8em;
	color: #2f2f2f;
}

time.icon:hover,
time.icon:focus {
	-webkit-animation: swing 0.6s ease-out;
	animation: swing 0.6s ease-out;
}

@-webkit-keyframes swing {
	0% {
		-webkit-transform: rotate(0deg) skewY(0deg);
	}

	20% {
		-webkit-transform: rotate(12deg) skewY(4deg);
	}

	60% {
		-webkit-transform: rotate(-9deg) skewY(-3deg);
	}

	80% {
		-webkit-transform: rotate(6deg) skewY(-2deg);
	}

	100% {
		-webkit-transform: rotate(0deg) skewY(0deg);
	}
}

@keyframes swing {
	0% {
		transform: rotate(0deg) skewY(0deg);
	}

	20% {
		transform: rotate(12deg) skewY(4deg);
	}

	60% {
		transform: rotate(-9deg) skewY(-3deg);
	}

	80% {
		transform: rotate(6deg) skewY(-2deg);
	}

	100% {
		transform: rotate(0deg) skewY(0deg);
	}
}

.grid {
	display: grid;
	grid-template-columns: 1fr 14fr;
	margin: 3%;
	box-sizing: border-box;
}

/* ========= end agenda ========= */

/* ========= mitra =========*/
.slick-slide {
	margin: 0px 20px;
}

.slick-slide img {
	width: 100%;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* ========= End mitra =========*/

/* ========= galeri-foto =========*/
.post-slide11 {
	background: #fff;
	margin: 0 15px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.457);
	margin-bottom: 2em
}

.post-slide11 .post-img {
	position: relative
}

.post-slide11 .over-layer {
	background: #0295f09b;
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	cursor: pointer;
	transition: all .3s ease 0s
}

.post-slide11:hover .over-layer {
	opacity: 1
}

.post-slide11 .over-layer:after {
	content: "+";
	font-size: 72px;
	color: #fff;
	position: absolute;
	top: 31%;
	left: 42%
}

.post-slide11 .post-img img {
	width: 100%;
	height: 250px;
}

.post-slide11 .post-title a {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	display: inline-block;
	text-transform: capitalize;
	transition: all .3s ease 0s
}

.post-slide11 .post-date {
	text-transform: capitalize;
	padding: 0 15px;
	color: #f91303;
	font-size: 13px
}

/* ========= End galeri-foto =========*/

/* ========= Pimpinan =========*/
.post-slide9 {
	margin: 0 10px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(26, 28, 34, 0.3);
	margin-bottom: 2em
}

.post-slide9 .post-img {
	overflow: hidden;
	position: relative
}

.post-slide9 .post-img img {
	width: 100%;
	height: 400px;
	transform: scale(1, 1);
	transition: all .3s ease 0s
}

.post-slide9:hover .post-img img {
	transform: scale(1.2, 1.2)
}

.post-slide9 .over-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	text-align: center;
	background: #0295f0a9;
	transition: all .5s linear
}

.post-slide9:hover .over-layer {
	opacity: 1
}

.post-slide9 .post-link {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	top: 45%
}

.post-slide9 .post-link li {
	display: inline-block;
	margin-right: 10px
}

.post-slide9 .post-link li a {
	width: 60px;
	height: 60px;
	line-height: 59px;
	border-radius: 50%;
	color: #fff;
	background: #333;
	font-size: 20px;
	transform: scale(1, 1);
	transition: all .2s linear
}

.post-slide9 .post-link li a:hover {
	text-decoration: none;
	transform: scale(1.1, 1.1)
}

.post-slide9 .post-review {
	padding: 15px 0;
	overflow: hidden
}

.post-slide9 .post-title {
	margin-top: 0
}

.post-slide9 .post-title a {
	display: block;
	color: #333;
	font-size: 18px;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	transition: all .5s ease 0s
}

.post-slide9 .post-title a:hover {
	text-decoration: none;
	color: #1f80bb
}

.post-slide9 .post-info {
	list-style: none;
	padding: 10px 0 0 0;
	margin: 0 0 7px 0;
	text-align: center;
	border-top: 1px solid #d3d3d3
}

.post-slide9 .post-info li {
	display: inline-block;
	margin-right: 13px
}

.post-slide9 .tag-info {
	margin: 0;
	padding: 0 0 10px 0;
	text-align: center;
	border-bottom: 1px solid #d3d3d3
}

.social {
	box-sizing: border-box;
	width: 42px;
	height: 42px;
	padding: 10px;

	background-color: #fff;
	border-radius: 100%;

	margin: 5px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

@media only screen and (max-width:990px) {
	.post-slide9 .post-info li {
		margin-right: 5px
	}
}

@media only screen and (max-width:767px) {
	.post-slide9 .post-link li a {
		width: 40px;
		height: 40px;
		line-height: 39px;
		font-size: 13px
	}

	.post-slide9 .post-title a {
		font-size: 14px
	}
}

/* ========= end Pimpinan =========*/

/* ========= aplikasi =========*/
.serv-section-2 {
	position: relative;
	border: 1px solid #eee;
	background: #fff;
	/* box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16); */
	border-radius: 5px;
	overflow: hidden;
	padding: 30px;
}

.serv-section-2:before {
	position: absolute;
	top: 0;
	right: 0px;
	z-index: 0;
	content: " ";
	width: 120px;
	height: 120px;
	background: #0295f031;
	border-bottom-left-radius: 136px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.serv-section-2-icon {
	position: absolute;
	top: 18px;
	right: 22px;
	max-width: 100px;
	z-index: 1;
	text-align: center;
}

.serv-section-2-icon i {
	color: #f91303;
	font-size: 48px;
	line-height: 65px;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.serv-section-desc {
	position: relative;
}

.serv-section-2 h4 {
	color: rgb(0, 0, 0);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}

.section-heading-line-left {
	content: '';
	display: block;
	width: 100px;
	height: 3px;
	background: #f91303;
	border-radius: 25%;
	margin-top: 15px;
	margin-bottom: 5px;
}

.serv-section-2:hover .serv-section-2-icon i {
	color: #fff;
}

.serv-section-2:hover:before {
	background: #0296f0;
}

/* ========= end aplikasi =========*/

/* ========= Footer =========*/
#footer {
	/* background: #000; */
	color: #eee;
	font-size: 14px;
}

#footer .footer-top {
	background: #111;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 34px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 10px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 3px;
	border-left: 4px solid #f91303;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	color: #eee;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #333;
	color: #eee;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #f91303;
	color: #fff;
}

#footer .footer-top h4 {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
}

#footer .footer-top h4::before {
	right: 0;
	background: #555;
}

#footer .footer-top h4::after {
	background: #f91303;
	width: 60px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 8px;
	color: #ddd;
}

#footer .footer-top .footer-links ul li {
	border-bottom: 1px solid #333;
	padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
	color: #f91303;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
	color: #ddd;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
	color: #ddd;
}

#footer .footer-top .footer-newsletter {
	margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
	border: 0;
	padding: 6px 8px;
	width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
	background: #f91303;
	border: 0;
	width: 35%;
	padding: 6px 0;
	text-align: center;
	color: #fff;
	transition: 0.3s;
	cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
	background: #13a456;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	text-align: center;
	font-size: 13px;
	color: #ddd;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info i {
	font-size: 20px;
	color: #f91303;
	float: left;
	width: 44px;
	height: 44px;
	background: #ecf9f0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #657a6d;
}

.contact .info .email,
.contact .info .phone {
	margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: #f91303;
	color: #fff;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* tenaga ahli */
.pic {
	overflow: hidden;
	max-width: 180px !important;
	min-width: 180px !important;
	max-height: 180px !important;
	min-height: 180px !important;
	border-radius: 50%;
}

.pic img {
	transition: ease-in-out 0.3s;
}

.member-info {
	padding-left: 30px;
}

.member h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 20px;
	color: #f91303;
}

.member span {
	display: block;
	font-size: 15px;
	padding-bottom: 10px;
	position: relative;
	font-weight: 500;
}

.member span::after {
	content: '';
	position: absolute;
	display: block;
	width: 100px;
	height: 2px;
	background: #0296f0;
	bottom: 0;
	left: 0;
}

.member p {
	margin: 10px 0 0 0;
	font-size: 14px;
	text-align: justify;
}

/* border-hover */
.border-hover {
	/* border: 1px solid #ddd; */
	padding: 5px 10px;
	margin-bottom: 20px;
	/* box-shadow: 0 5px 30px -5px #ccc; */
	position: relative;
	-webkit-transition: .3s;
	transition: .3s;
	text-align: center
}

.border-hover:after {
	position: absolute;
	content: "";
	width: 0%;
	border-top: 3px solid #0296f0;
	left: 0;
	top: 0;
	border-left: 3px solid #0296f0;
	height: 0%;
	z-index: 2;
	opacity: 0;
	/* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; */
	visibility: hidden;
	-webkit-transition: .5s;
	transition: .5s
}

.border-hover:before {
	position: absolute;
	content: "";
	width: 0%;
	border-bottom: 3px solid #0296f0;
	right: 0;
	bottom: 0;
	border-right: 3px solid #0296f0;
	height: 0%;
	z-index: 2;
	opacity: 0;
	/* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; */
	visibility: hidden;
	-webkit-transition: .5s;
	transition: .5s
}

.border-hover:hover:before,
.border-hover:hover:after {
	opacity: 1;
	/* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; */
	visibility: visible;
	height: 50%;
	width: 50%;
}
