:root {
    --primary: #0a3881;
    --light: #EFF5FF;
    --dark: #1B2C51;
}
/* Seluruh */
body {
    background-color: #fff;
    color: #444;
    font-family: 'Arial', sans-serif;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}
/* NAVBARRRR */
.navbar {
    background-color: #39a6df;
    position: fixed;
    width: 100%;
    z-index: 999999;
}
.nav-item {
	margin: 12px;
}

.navbar-toggler {
    color: white;
}

.nav-link {
	position: relative;
	padding-bottom: 0%;
	text-align: center;
}
.nav-link::after {
	content: '';
	opacity: 0;
	transition: all 0.2s;
	height: 2px;
	width: 100%;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
.nav-link:hover::after {
	opacity: 1;
}
.button-container-center {
	display: flex; 
	justify-content: center;
	align-items: center;
}



/* section judullll */

.section-tittle {
	margin-bottom: 60px;
	margin-top: 70px;
}

.section-tittle .line {
	width: 60px;
	height: 4px;
	background-color: #444;
	margin: 16px auto 24px auto;
}

.section-tittle p {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;

}

/* iconbox */

.iconbox {
	width: 60px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #3593d0;
	color: white;
	font-size: 35px;
	border-radius: 15px;
	flex: none;
}

/* SERVICES */

#services .box {
	padding: 30px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 10px 40px 10px;
	background: #fff;
	box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
	transition: all 0.3s ease-in-out;
}

#services .icon {
	position: absolute;
	left: -25px;
	top: calc(50% - 32px);
}

#services .icon i {
	font-size: 64px;
	line-height: 1;
	transition: 0.5s;
}

#services .title {
	margin-left: 40px;
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
}

#services .title a {
	color: #111;
}

#services .box:hover .title a {
	color: #007bff;
}

#services .description {
	font-size: 14px;
	margin-left: 40px;
	line-height: 24px;
	margin-bottom: 0;
}
  

/* END SERVICES */


/* WHy Us */
#why-us {
	padding: 60px 0;
	background: rgb(55, 160, 217);
	background: linear-gradient(152deg, rgba(55, 160, 217, 1) 39%, rgba(38, 62, 150, 1) 98%);
	margin-bottom: 50px;
}

#why-us .section-tittle h3,
#why-us .section-tittle p {
	color: #fff;
}

#why-us .card {
	background-color: #00458f;
	border-color: #00458f;
	border-radius: 10px;
	margin: 0 15px;
	padding: 15px 0;
	text-align: center;
	padding: 15px 0;
	text-align: center;
	color: #fff;
	transition: 0.3s ease-in-out;
	height: 100%;
}

#why-us .card:hover {
	background: #003b7a;
	border-color: #003b7a;
}

#why-us .card i {
	font-size: 48px;
	padding-top: 15px;
	color: #f5f6f8;
}

#why-us .card h5 {
	font-size: 22px;
	font-weight: 600;
	color: #f5f6f8;
}

#why-us .card p {
	font-size: 15px;
	color: #f5f5f5;
}

#why-us .card .readmore {
	color: #fff;
	font-weight: 600;
	display: inline-block;
	transition: 0.3s ease-in-out;
	border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
	border-bottom: #fff solid 2px;
}

/* FOOTER */
.footer {
	color: #444;
	background-color: linear-gradient(152deg, rgba(55, 160, 217, 1) 39%, rgba(38, 62, 150, 1) 98%);
	font-size: 14px;
	padding-bottom: 50px;
	position: relative;
}

.footer .footer-top {
	padding-top: 50px;
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #333;
	font-size: 16px;
	color: #333;
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: #18A2F1;
	border-color: #18A2F1;
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
	margin-right: 3px;
	font-size: 12px;
	line-height: 0;
	color: var(--accent-color);
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}


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

.footer .footer-links ul a {
	display: inline-block;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-about a {
	color: var(--heading-color);
	font-size: 28px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: var(--heading-font);
}

.footer .footer-contact p {
	margin-bottom: 5px;
}

.footer .copyright {
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
	margin-bottom: 0;
}

.footer .credits {
	margin-top: 6px;
	font-size: 13px;
}

/* HOMEEE */
.btn-get-starteds {
	color:#39a6df ;
	background: white;
	font-size: 14px;
	padding: 8px 25px;
	border-radius: 50px;
	transition: 0.3s;
	margin-bottom: -10px;
}

.hero-section {
	padding-top: 100px;
	background: linear-gradient(152deg, rgba(55, 160, 217, 1) 39%, rgba(38, 62, 150, 1) 98%);
	padding: 100px 80px 50px 80px;
	margin-bottom: 50px;
	color: white;
}

.hero-section .row {
	align-items: center;
}

.hero-section h1 {
	font-size: 40px;
	font-weight: bold;
	text-align: left;
}

.hero-section p {
	font-size: 16px;
	margin-top: 10px;
	text-align: left;
}

.btn-custom {
	margin: 20px 10px 0 0;
	padding: 12px 30px;
	border-radius: 25px;
}

.btn-get-started {
	background-color: #18A2F1;
	border: none;
	color: white;
}

.btn-watch-video {
	background-color: transparent;
	border: 2px solid white;
	color: white;
}

.hero-image img {
	max-width: 100%;
	height: auto;
}
.floating {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0);
	}
}

.hero-text {
	text-align: left;
}

.hero-image-side img {
	max-width: 100%;
	height: auto;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-us .banner {
	background-repeat: no-repeat; 
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: auto;
	color:#fff;
	position: relative;
}
.about-us .banner .banner-overlay {
	position: absolute;
	top: 0;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    background-color: rgba(0,0,0,.5);
    z-index: 2;
}
.about-us .banner .top-bar{
	padding:26px 15px; 
}
.about-us .banner .top-bar-left ,
.top-bar-right {
	padding-top: 24px;	
	z-index: 3;
}
.about-us .banner .top-bar-left a {
	color:#fff;
	font-size: 18px;
	letter-spacing: 0.18px;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	vertical-align: middle
}
.about-us .banner .logo {
	text-align: center;
	z-index: 3;
}
.about-us .banner .top-bar-right {
	text-align: right;
}
.about-us .banner .top-bar-right a {
	font-family: 'Open Sans', sans-serif;
	color:#fff;
	font-size: 18px;
	letter-spacing: 0.18px;
	font-weight: 400;
	vertical-align: middle
}
.about-us .banner .top-bar-left i
.top-bar-right i {
	font-size: 16px;
    background-color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    color: #3e2d40;
    vertical-align: middle;
    padding-top: 5px;
}
.about-us .banner .banner-content {
	padding: 126px 15px;
}
.about-us .banner .banner-content .content-col {
	text-align: center;
	z-index: 3;
}
.about-us .banner .banner-content .site-title {
	font-family:sans-serif;
	font-size: 40px;
	line-height: 40px;
	font-weight: 700;
	margin-bottom: 18px;
	padding-right: 15px;
}
.about-us .banner .banner-content .site-title-desc {
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 51px;
}
.about-us .banner .banner-content a.banner-btn:hover {
	text-decoration: none;
	color: #7b6cd5;
}


@media (max-width: 768px) {
		.hero-section {
			text-align: center;
		}

		.hero-section h1,
		.hero-section p {
			text-align: center;
		}

		.btn-wrapper {
			display: flex;
			justify-content: space-between;
			margin-top: 20px;
		}

		.btn-custom {
			margin: 0;
			width: 48%;
		}

		.hero-image-side {
			text-align: center;
			margin-top: 20px;
			margin-bottom: 40px;
		}
		.btn-get-starteds{
			text-align: center;
			margin-bottom: 5px;
		}
	}

/* VISI AND MISION */
.schedule {
	margin: 0;
	padding: 0;
	height: auto;
	margin-top: 90px;
}

.schedule .single-schedule {
	position: relative;
	text-align: left;
	z-index: 3;
	border-radius: 5px;
	background: #3593d0;
	margin-bottom: 20px;
}

.schedule .single-schedule .inner {
	overflow: hidden;
	position: relative;
	padding: 20px;
	z-index: 2;
}

.schedule .single-schedule .icon i {
	position: absolute;
	font-size: 110px;
	color: #fff;
	z-index: -1;
	opacity: 0.2;
	right: -25px;
	bottom: -30px;
}

.schedule .single-schedule h4 {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-top: 13px;
}

.schedule .single-schedule p {
	color: #fff;
	margin-top: 22px;
}

.schedule .single-schedule a {
	color: #fff;
	margin-top: 25px;
	font-weight: 500;
	display: inline-block;
	position: relative;
}

.schedule .single-schedule a:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0%;
	background: #fff;
	transition: all 0.4s ease;
}

.schedule .single-schedule a:hover:before {
	width: 100%;
}

.schedule .single-schedule .time-sidual {
	overflow: hidden;
	margin-top: 17px;
}

.schedule .single-schedule .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 3px;
}

/* HP */
@media (max-width: 767px) {
	.schedule .single-schedule .inner {
		padding: 15px;
	}
	
	.schedule .single-schedule h4 {
		font-size: 18px;
	}
	
	.schedule .single-schedule p {
		font-size: 14px;
		margin-top: 15px;
	}
	
	.schedule .single-schedule a {
		font-size: 14px;
	}
	
	.schedule .single-schedule .icon i {
		font-size: 80px;
		right: -15px;
		bottom: -20px;
	}
}

/* laptp */
@media (min-width: 768px) and (max-width: 991px) {
	.schedule .single-schedule {
		padding: 10px;
	}
	
	.schedule .single-schedule h4 {
		font-size: 19px;
	}
	
	.schedule .single-schedule p {
		font-size: 15px;
	}
}

@media (min-width: 992px) {
	.schedule .single-schedule {
		padding: 30px;
	}
	
	.schedule .single-schedule h4 {
		font-size: 20px;
	}
	
	.schedule .single-schedule p {
		font-size: 16px;
	}
}




/* OUR TEAAAAMMMMMMMMMMMMMM */

.btn-primary:hover,
.btn-primary:focus {
    background-color: #00458f;
    border-color: #00458f;
    box-shadow: none;
    outline: none;
}
.btn-primary {
  color:#00458f;
  background-color:#fff;
  border-color:#fff;
}
section {
  padding:60px 0;
}
section .section-title {
  text-align:center;
  color:#00458f;
  margin-bottom:50px;
}
#team .card {
  border:none;
  background: #39a6df;
}

.frontside .p{
	margin-top: 0;
	margin-bottom: 80px;
}

.frontside .card {
    min-height: 312px;
}

.frontside .card a {
    font-size: 18px;
    color: #fff;
}

.frontside .card .card-title {
    color: #fff;
}

.frontside .card .card-text{
	color: #EFF5FF;
}


.frontside .card .card-body img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

/* BLOGGGGGGGGGGGGGG */
.blog{
	background:#fff;
		padding: 60px 0 40px 0;
		box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
	
	  
}
.blog .blog-title{
	text-align:center;
}
.blog .single-news {
	background: #fff;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	box-shadow: 0px 0px 10px #00000014;
}
.blog .single-news img{
	width:100%;
	margin:0;
	padding:0;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.blog .single-news .news-head{
	position:relative;
	overflow:hidden;
}
.blog .single-news .news-content {
	text-align: left;
	background: #fff;
	z-index: 99;
	position: relative;
	padding: 30px;
	left: 0;
	z-index: 0;
}

.blog .single-news:hover .news-content:before{
	opacity:1;
	visibility:visible;
	width:100%;
}
.blog .single-news .news-body h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 24px;
}
.blog .single-news .news-body h2 a{
	color:#2C2D3F;
	font-weight: 500;
}
.blog .single-news .news-body h2 a:hover{
	color:#1A76D1;
}
.blog .single-news .news-content p {
	font-weight: 400;
	text-transform: capitalize;
	font-size: 13px;
	letter-spacing: 0px;
	line-height: 23px;
}
.blog .single-news .news-body .date {
	display: inline-block;
	font-size: 14px;
	margin-bottom: 5px;
	background: #1A76D1;
	color: #fff;
	padding: 4px 15px;
	border-radius: 3px;
	font-size: 14px;
	margin-bottom: 10px;
}
.blog.grid .single-news{
	margin-top:30px;
}

body{
	background:#F0F8FF;
	}
	.text-custom{
	color: #0062ff;
	}

/* TESTIIIIIIIII */

#testimonial_area {
	padding: 10% 0;
	background-color:#f4f4f8;
}
.testimonial_area .text-area{
	margin-bottom: 15px;
}

p {
	margin-top: 16px;
	margin-bottom: 1px;
  }

.box-area {
	padding: 30px;
	position: relative;
	display: block;
	background: #fff;
	color: #000;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	margin: 40px 0;
}
.box-area h5 {
	font-size: 16px;
	font-weight: 700;
	color: #18A2F1;
	margin-top: 30px;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.box-area span {
	color: #262626;
	display: block;
	font-size: 13px;
	margin: 0 0 10px;
	font-weight: 400;
}

.box-area .img-area {
	width: 90px;
	height: 90px;
	position: absolute;
	top: -40px;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	right: 0;
	z-index: 1;
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
}
.box-area .img-area img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.socials {
	margin-top: 30px;
}
.socials i {
	margin: 0 10px;
	color: #18A2F1;
	font-size: 18px;
}
#testimonial_area .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
}
#testimonial_area .owl-prev, #testimonial_area .owl-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #18A2F1;
	border-radius: 50%;
	text-align: center;
	background: #fff;
	position: absolute;
}
#testimonial_area .owl-prev {
	left: -60px;
	top: -30px;
}
#testimonial_area .owl-next {
	right: -60px;
	top: -30px;
}
@media only screen and (max-width: 991px) {
	.owl-nav {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.box-area {
		text-align: center;
	}
	.owl-nav {
		display: none;
	}
}



/* PRODUKKKK */
.title {
    padding: 10px 20px;
    text-align: center;
    font-size: 2.5em;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-card {
    background-color: #18A2F1;
    color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.product-card img {
    width: 100%;
	height: 100%;
    max-width: 200px;
    margin-bottom: 15px;
}

.product-title {
    font-weight: bold;
    font-size: 1.2em;
}
