*{
	box-sizing: border-box;
}

html{ scroll-behavior: smooth; }

body{
	margin: 0px;
	font-family: 'Raleway', sans-serif;
	color: #000;
}

.container{
	width: 80%;
	display: block;
	margin: 0 auto;
	padding: 0 16px;
}

.dark{ color: #fff !important; }
.light{ color: #000 !important; }

/*background color*/
.orange{ background-color: orange !important; }
.lightblue{ background-color: #00BFD8 !important; }
.lightblue.lighten{ background-color: #F7FCFD !important; }

/*text color*/
.text-lightblue{ color: #00BFD8 !important; }
.text-darkblue{ color: blue !important; }
.text-orange{ color: orange !important; }
.text-darkorange{ color: #CB5200 !important; }
.text-grey{ color: grey !important; }

/*typografi*/
.display-1{
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing:
}
.title{
	font-size: 24px;
	letter-spacing: 0.4px;
	font-weight: bold;
}
.title-2{
	font-size: 20px;
	font-weight: bold;
}
.headline{
	font-size: 32px;
	font-weight: bold;
}
.subtitle{ font-size: 14px; }
.font-weight-normal{ font-weight: normal; }
.font-weight-light{ font-weight: 300; }
.font-weight-bold{ font-weight: bold; }
.text-center{ text-align: center; }

/* alert */

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

/*spacing*/
.mb-2{
	margin-bottom: 0.5rem;
}
.mb-4{ margin-bottom: 2rem; }
.mr-1{ margin-right: .25rem; }
.mr-2{ margin-right: .5rem; }
.mr-3{ margin-right: .75rem; }
.mt-3{ margin-top: .75rem; }

.pb-0{ padding-bottom: 0px !important; }

/*button*/
.btn{
	outline: none;
	border-radius: 5px;
	border: none;
	background-color: silver;
	padding: 8px 16px;
	cursor: pointer;
	font-weight: bold;
	letter-spacing: 1px;
	text-decoration: none;
}
.btn-icon{
	border-radius: 100%;
	height: 32px;
	width: 32px;
	padding: 0;
}
.btn-large{
	padding: 12px 20px;
	font-size: 16px;
}
.btn-block{ width: 100%; }
.rounded{ border-radius: 50px; }
.btn-primary{ background-color: #0da2ff; }
.btn-secondary{ background-color: #b1b1b1; }

/*grid system*/
.row{
	display: flex;
	margin-right: -16px;
	margin-left: -16px;
}
.col{ padding: 0 16px; }
.md-6{ width: 50%; }
.md-4{ width: 33.333%; }
.md-2{ width: 12.5%; }

/*card*/
.card{
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0px 0px 10px silver;
	background-color: #fff;
}
.card-header {
	padding: 16px;
	font-weight: bold;
	text-align: center;
	font-size: 1.5rem;
}
.card-body{ padding: 16px; }
.card-footer{ padding: 8px 16px; }

/*flex*/
.d-flex{ display: flex; }
.justify-end{ justify-content: flex-end; }
.justify-between{ justify-content: space-between; }

/*list*/
.list{
	padding: 0px;
	list-style: none;
}
.divider{
	width: 100%;
	height: 0;
	border: .5px solid silver;
	margin: 4px 0;
}

.form-control {
	position: relative;
}

.form-control input{
	border-radius: .4rem;
	padding: .75rem 1.5rem;
	border: 1px solid lightblue;
	display: flex;
	margin-bottom: 1.25rem;
	/*font-size: 20px;*/
	width: 100%;
	outline: none;
	font-size: inherit;
}

.form-control.with-icon input {
	padding: .75rem 1.75rem;
}

.form-control .ri:first-child {
	position: absolute;
	left: .5rem;
	top: 50%;
	transform: translateY(-50%);
	color: #b1b1b1;
}

.form-control.with-btn button {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 3rem;
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #38b2ac;
	color: white;
	border-color: #38b2ac;
	border-radius: 0rem .5rem .5rem 0;
}

/*avatar*/
.avatar{
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}
.avatar-image{
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

/*display*/
.d-sm-none{ display: block; }

/*modal*/
.modal{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 101;
	background-color: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}
.modal .card{
	box-shadow: 0 0 10px #000;
	width: 500px;
}

/*-----------------*/
header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	transition: all 0.3s ease;
	color: #fff;
	padding: 32px 0;
	z-index: 99;
}

header .container {
	width: 90%;
}

.navbar{
	display: flex;
	min-height: 60px;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand{
	margin-top: 10px;
}

.navbar-nav{
	display: flex;
	align-items: center;
	height: 100%;
}
.nav-link{
	margin: 0 8px;
	text-decoration: none;
	color: inherit;
}
.navbar-burger-menu{
	display: none;
	margin-top: 10px;
}

.banner{
	background-image: url('/images/BG.svg');
	background-size: 57%;
	background-position-x: right;
	background-position-y: top;
	background-repeat: no-repeat;
	height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 64px;
}
.ilustrasi{ width: 400px; }

.ptn{
	margin: 64px 0;
	display: flex;
	justify-content: center;
}

.fitur{ margin-top: 0px; }

.fitur .detil-fitur {
	margin-top: 1.25rem;
}

.fitur .detil-fitur .judul-fitur {
	font-weight: bold;
	border: 1px solid rgb(199, 199, 199);
	padding: .3rem;
	width: fit-content;
	font-size: 1.2rem;
}

.jadwal{
	background-color: #f8f8f8;
	height: 300px;
	display: flex;
	align-items: center;
}

.formulir{ margin: 64px 0; }

.testimoni{
	background-image: url('/images/bg_testimoni.svg');
	background-size: 50%;
	background-repeat: no-repeat;
	/*transform: scaleX(-1);*/
	padding: 64px 0;
}
.testimoni-body{
	display: flex;
	height: 300px;
	align-items: center;
	justify-content: space-between;
}
.mySlides {
  display: none;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

footer{ padding-top: 32px; }
footer a{ text-decoration: none; }
footer li a{ color: #0da2ff;text-decoration: underline; }
footer li::before{
	content: "\25AA";
	color: #0da2ff;
  display: inline-block;
  width: 1rem;
  margin-left: -1em
}
footer .btn-icon{
	width: 48px;
	height: 48px;
}
footer .btn-icon img{
	width: 24px;
}

.back-to-top{
	box-shadow: 0px 0px 5px silver;
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 99;
	display: none;
	/*transition: all 0.5s ease;*/
}
.back-to-top.btn-icon{
	width: 48px;
	height: 48px;
}

.hidden-menu{
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	background-color: #fff;
	z-index: 100;
	display: none;
}

.form-login {
	width: 100%;
}

/* Laptop */
@media screen and (min-width: 770px) {
	.form-login-container {
		justify-content: flex-end; align-items: center;
	}

	.form-login {
		min-width: 26rem;
	}

	.link-partner {
		text-align: left;
	}
}

/*tablet*/
@media screen and (max-width: 770px){
	.container{ width: 90%; }

	.banner{
		background-color: #fff;background-image: none;
		padding-top: 37rem;
		height: fit-content;
	}
	.testimoni{ background-color: #fff;background-image: none; }
	.navbar-nav{ display: none; }
	.navbar-burger-menu{ display: inline-block; }

	/*.fitur{ margin-top: 82px; }*/
	.fitur .row{ flex-direction: column; }
	.fitur .md-6{ width: 100%; }
	.hidden-xs-down {
		display: none;
	}
}

/*responsive*/
@media screen and (min-height: 650px){
	.banner{
		height: fit-content;
		padding-top: 7rem;
	}

	.form-login {
		padding: 1rem;
	}

	.ilustrasi{
		width: 60%
	}

	footer {
		text-align: center;
	}
}

.show-on-mobile {
	display: none;
}

/*mobile*/
@media screen and (max-width: 500px){
	.container{ width: 100%; }
	header .container{ width: 100% }
	
	.banner{
		height: fit-content;
		padding-top: 7rem;
	}

	.show-on-mobile {
		display: block;
	}

	.d-sm-none{ display: none; }
	.row{ flex-direction: column; }
	.col{ padding: 16px; }
	.md-6, .md-4{ width: 100%; }
	.ptn .row{
		display: block;
		clear: left;
	}
	.ptn .row .col{ float: left; }
	.md-2{ width: 50%; }
	.jadwal{ height: auto;padding: 32px 0; }
	.testimoni{ padding: 32px 0; }
	.testimoni-body{ height: auto;justify-content: center; }
	.avatar{ justify-content: center; }
	.formulir{ margin: 32px 0; }
	footer li{ margin-left: 16px; }
	.modal .card{ width: 100%; }
}
