/*========= General ===========*/
@font-face {
    font-family: Roboto-Regular;
  	src: url("../fonts/Roboto-Regular.ttf") format('truetype');
}
@font-face {
    font-family: Roboto-Medium;
  	src: url("../fonts/Roboto-Medium.ttf") format('truetype');
}
@font-face {
    font-family: Roboto-Bold;
  	src: url("../fonts/Roboto-Bold.ttf") format('truetype');
}
@font-face {
    font-family: Roboto-Slab-Regular;
  	src: url("../fonts/RobotoSlab-Regular.ttf") format('truetype');
}
@font-face {
    font-family: Roboto-Slab-Bold;
  	src: url("../fonts/RobotoSlab-Bold.ttf") format('truetype');
}
@font-face {
    font-family: Futura-CondensedMedium;
  	src: url("../fonts/Futura-CondensedMedium.ttf") format('truetype');
}
@font-face {
    font-family: Calibri;
  	src: url("../fonts/Calibri.ttf") format('truetype');
}



body{
	font-family: Calibri;
	color: #333;
}
section{
	padding: 30px 0px;
}
a{
	color: #333;
}
.text-yellow{color: #fbb900; }
.text-blue{color: #144297;}
.text-darkblue{color: #294375;}
.text-dark{color: #333;}
.text-white{color: white;}
.bg-blue{background-color: #144297;}
.bg-yellow{background-color: #f4d500;}

/*General Content*/
.title {
    text-transform: uppercase;
    line-height: 40px;
    font-size: 30px;
    font-family: Futura-CondensedMedium;
    margin: 0 0 2px;
}
.title-smaller{
	font-size: 26px;
}
.title-bigger{
	font-size: 40px;
	line-height: unset;
}
.title-bigger-2{
	font-size: 50px;
	line-height: 55px;
}

.title.normal-style {
    text-transform: capitalize;
}
.is-divider{
	height: 1px;
    display: block;
    background-color: #333;
    margin: 1em 0 1em;
    width: 30px;
}
.title-bigger-2 + .is-divider{
	height: 3px;
	width: 78%;
}
.is-divider.text-center{
	margin: 1em auto;
}
.after-title{
	margin-top: 1em;
}
.sub-heading {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    line-height: 30px;
    color: #999;
}
.no-radius{
	border-radius: 0px;
}
.help-block{
	color: red;
    font-size: 0.8em;
    font-style: italic;
}
@media (min-width: 768px) {
	section{
		padding: 60px 0px;
	}
}
.vertical-text{
	transform: rotate(270deg);
    /*transform-origin: left bottom 0;*/
    float: left;
    font-size: 50px;
    line-height: unset;
}

/*========= Navbar ===========*/
/*Top Bar*/
.top-bar{
	position: absolute;
	z-index: 200;
	width: 100%;
	background: transparent;
	font-size: 12px;
	padding-top: 30px;
}
.top-bar a{
	color: white;
}
.top-bar a.dropdown-item {
  color:black;
  font-size: 12px;
}
.top-bar .fa{
	margin-right: 7px;
}
.top-bar.navbar-dark .navbar-nav .nav-link{
	color: #144297;
	text-transform: capitalize;
	    padding-left: 1.5em;
    padding-right: 1.5em;
    font-size: 15px;
    font-weight: bold;
}
.top-bar.navbar-dark .navbar-nav .nav-link.btn-blue{
	color: white;
	font-size: 12px;
	font-weight: normal;
}
.top-bar.navbar-dark .navbar-nav .nav-item{
	margin-left: 15px;
}
.main-content.not-index section:first-of-type{
	padding-top: 25px;
}
.main-content{
	min-height: calc(100vh - 108px);
}

/*Main Navbar*/

.main-navbar{
	position: relative;
    width: 100%;
    /*background: #eaeaea;*/
    top:0px;
    color: rgba(16,23,64,0.7);
}
.main-navbar .container{
	border-bottom: 3px solid #144297;
}
.main-navbar.navbar-light.scrolled-nav .container{
	border-bottom: none;
}

.main-navbar.navbar-light .navbar-nav .nav-link{
	color: rgba(16,23,64,0.7);
	text-transform: uppercase;
	font-family: Roboto-Bold;
	font-size: 14px;    
	margin: 6px 10px;
    padding: 0.3rem 0px;
}

.main-navbar.scrolled-nav{
	background-color: #f0f0f0;
	border-bottom: solid 1px rgba(0,64,133,0.2);
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
}
.main-navbar.navbar-light .navbar-nav .nav-link:focus, 
.main-navbar.navbar-light .navbar-nav .nav-link:hover,
.main-navbar.scrolled-nav.navbar-light .navbar-nav .nav-link:focus, 
.main-navbar.scrolled-nav.navbar-light .navbar-nav .nav-link:hover
{
	color: rgba(16,23,64,1);
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
}
.main-navbar.scrolled-nav.navbar-light .navbar-nav .active>.nav-link,
{
	color: rgba(16,23,64,1);
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
	border-bottom: solid 2px #fbb900;
}
.main-navbar.scrolled-nav.navbar-light .navbar-nav .nav-link,
{
	color: rgba(16,23,64,0.7);
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
}
.scrolled-nav .img-fluid{
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
}

.main-navbar.navbar-light .navbar-brand .img-fluid{
	width: 35px;
}
.navbar-light .navbar-toggler {
	border: none;
}

.navbar-nav .dropdown-menu {
  right: 0px;
  left: auto;
  border-radius: 4px;
}

@media (min-width: 768px) {
	.main-navbar{
		position: fixed;
	    z-index: 20;
	    width: 100%;
	    background: transparent;
	    color: white;
	    top:0px;
	}
	.main-navbar.navbar-light .navbar-nav .nav-link{
		color: #144297;
		padding: 14px 20px;
		margin: 0px;
	}

	.main-navbar.navbar-light .navbar-nav .nav-link:focus, 
	.main-navbar.navbar-light .navbar-nav .nav-link:hover{
		color: rgb(30, 93, 212);
	}
	.main-navbar.navbar-light .navbar-nav .active>.nav-link{
		background-color: rgba(20,66,151,0.5);
		color: white;
	}
	.main-navbar.scrolled-nav.navbar-light .navbar-nav .active>.nav-link{
		background-color: unset;
		color: #E39609;
	}
	.main-navbar {
	    top: 0px;
	}
	.main-navbar .right-navbar-content{
		margin-top: auto;
	}
	
	.main-navbar.navbar-light .navbar-brand .img-fluid{
		width: 120px;
	}
	.main-navbar.navbar-light.scrolled-nav .navbar-brand .img-fluid{
		width: 55px
	}

	.main-content.not-index section:first-of-type{
		padding-top: 165px;
	}
}

/*========= Home Page ===========*/
/*carousel*/
.carousel-control-next, .carousel-control-prev {
  width: 10%;
}
.overlay-parent{
	position: relative;
}
.overlay{
	position: absolute;
	width:100%;height: 100%;
	top:0;
}
.overlay.dark-overlay{
	background: rgba(0,0,0,0.18);
}
.overlay.darker-overlay{
	background: rgba(0,0,0,0.38);
}
.overlay.yellow-overlay{
	/*background: rgba(43, 38, 28, 0.46);*/
	background: rgba(31, 29, 17, 0.4);
}
.overlay.light-overlay{
	background: rgba(255,255,255,0.92);
}
.overlay.light2-overlay{
	background: rgba(255,255,255,0.55);
}
.overlay.light1-overlay{
	background: rgba(255,255,255,0.75);
}
.overlay.light3-overlay {
    /*background: linear-gradient(rgba(201,207,227,1),rgba(201,207,227,0),rgba(201,207,227,0));*/
	background: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,0.1),rgba(201,207,227,0))
}
.overlay.light-blue-overlay{
	background:rgba(212, 247, 253, 0.92)
}
.carousel .title{
	color: #144297;
}
.main-carousel .carousel-caption{
	top:30%;
	left: 13%;
	text-align: left;
}
.main-carousel .carousel-caption .title{
	line-height: 45px;
	font-size: 38px;
}
.main-carousel .carousel-caption .title.carousel-big-title{
	font-size: 98px;
}
.main-carousel .carousel-caption .carousel-big-title .small-title{
	font-size: 38px;
}
.main-carousel .carousel-caption .btn{
	padding: 10px 20px;
}
.carousel-caption a:hover{
	color: #ececec;
    border-color: #ececec;    
    font-weight: 700;
}

/*Panduan Pendaftaran*/

.panduan-content{
	background: white;
}
.panduan-content img{
	padding: 15px 60px; 
}
.panduan-title{
	font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    margin-top: 11px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.left-card{
	box-shadow: -5px 4px 8px 2px rgba(0,0,0,0.2);
}
.middle-card{
	box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.2);
}
.right-card{
	box-shadow: 5px 4px 8px 2px rgba(0,0,0,0.2);
}


/*Ayo Daftar*/
.ayo_daftar{
    background-image: url("../images/smak-stag-slide3-small.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*min-height: 615px;*/
}

.bergabung{
	padding: 0px 0px 15px;
	font-family: Futura-CondensedMedium;
}

.bergabung .title {
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    margin: 2px 0 10px;
}
.top-title{
	color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  	.bergabung{
		padding: 121px 0px;
	}
	.bergabung .title {
		font-size: 82px;
    	line-height: 82px;
	}
	.top-title{
    	font-size: 28px;
    	line-height: 30px;
	}
}


/*Timer*/
#timer {
  position: relative;
}
#timer > div.timer-item {
  display: inline-block;
  position: relative;
  margin: 0 7px;
}
@media screen and (max-width: 640px) {
  #timer > div.timer-item {
    display: block;
    margin-bottom: 20px;
  }
}
#timer .smalltext {
  color: white;
  font-size: 1em;
  line-height: 1.25em;
  padding-top: 10px;
}
.digit span {
  border-width: 1.49px;
  border-style: solid;
  border-color: white;
  color: white;
  width: 52px;
  height: 52px;
  display: inline-block;
  border-radius: 52px;
  margin: 0 3px;
  font-size: 2.125em;
  line-height: 1.5em;
}

/*Form Bergabung*/
.form-bergabung{
	margin: 20px 0;
    background: #fff;
    position: relative;
    max-width: 400px;
    float: right;
    min-height: 453px;
}
.form-bergabung .title{
	padding: 28px 28px 20px;
    overflow: hidden;
    color: #144297;
}
.form-bergabung .title h3{

    font-size: 42px;
    line-height: 45px;
    text-transform: uppercase;
}
.form-bergabung .title p{
	font-size: 18px;
	line-height: 20px;
	font-family: Calibri;
	text-transform: none;
	font-weight: bold;
	margin-bottom: 0px;
}
.form-bergabung form{
	padding: 0px 28px 28px; 
}
.form-bergabung form input{
	border: none;
    border-bottom: 1px solid #144197;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-left: 0px;
}
.btn-blue{
	border-radius: 0px;
	color: white;
	background: #144197;
	border-color: #144197;
	text-transform: uppercase;
    font-weight: normal;
    padding: 10px 24px;
    font-size: 0.85em;
}
.btn-darkblue{
	background-color: #0e2d69;
	border-color: #0e2d69;

}
.btn-secondary{
	border-radius: 0px;
	background-color: transparent;
	border-color: #151e54;
	color: #151e54;
}
.btn-white{
	border-radius: 0px;
	background: transparent;
	border: 2px solid white;
	color: white;
}



/*Testimonial*/
.testimonial .grand-title{
	/*text-orientation: upright;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    text-orientation: upright;
    -webkit-font-feature-settings: "vkrn", "vpal";
    font-feature-settings: "vkrn", "vpal";
    font-size: 26px;
    font-weight: bold;*/
}
.testimonial .carousel-control-next, .testimonial .carousel-control-prev{
	color: #333;
}
.carouselTestimonialClass{
	margin: 30px 0px;
	color: #144297;
}
.carouselTestimonialClass .img-circle{
	margin: 0px auto;
	border-radius: 50%;
}
.carouselTestimonialClass .title{
	font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    margin: 0px;
    text-transform: none;
}
.carouselTestimonialClass .regency{
	line-height: 25px;
    text-transform: uppercase;
    font-size: 18px;
    color: #999;
}
.carouselTestimonialClass .description{
	margin-top: 15px;
	display: block;
    text-overflow: ellipsis;
    /* word-wrap: break-word; */
    overflow: hidden;
     font-size: 15px; 
    height: 16.5em;
    line-height: 1.5em;
    text-align: justify;
}


/*=========== Footer ==========*/
footer{
	background-color: #144297;
	padding: 30px 0px;
	color: #ddd;
}
.footer-content p{
	font-size: 0.85em;
	margin: 0px;
}


/*========= Proses Pendaftaran ==========*/

/*Langkah Pendaftaran*/

.bs-wizard {margin-top: 40px;}
/*Form Wizard*/
.bs-wizard {border-bottom: solid 1px #e0e0e0; padding: 0 0 10px 0;}
.bs-wizard > .bs-wizard-step {padding: 0; position: relative;}
.bs-wizard > .bs-wizard-step + .bs-wizard-step {}
.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {color: #595959; font-size: 16px; margin-bottom: 5px;}
.bs-wizard > .bs-wizard-step .bs-wizard-info {color: #999; font-size: 14px;}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot {position: absolute; width: 30px; height: 30px; display: block; background: #fbe8aa; top: 45px; left: 50%; margin-top: -15px; margin-left: -15px; border-radius: 50%;} 
.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {content: ' '; width: 14px; height: 14px; background: #fbbd19; border-radius: 50px; position: absolute; top: 8px; left: 8px; } 
.bs-wizard > .bs-wizard-step > .progress {position: relative; border-radius: 0px; height: 8px; box-shadow: none; margin: 20px 0;}
.bs-wizard > .bs-wizard-step > .progress > .progress-bar {width:0px; box-shadow: none; background: #fbe8aa;}
.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {width:100%;}
.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {width:50%;}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {width:0%;}
.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {width: 100%;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {background-color: #f5f5f5;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {opacity: 0;}
.bs-wizard > .bs-wizard-step:first-child  > .progress {left: 50%; width: 50%;}
.bs-wizard > .bs-wizard-step:last-child  > .progress {width: 50%;}
.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot{ pointer-events: none; }
/*END Form Wizard*/

/*Lain-lain*/

.keterangan-kecil{
	font-size: 0.85em;
	color: grey;
	font-style: italic;
	margin-top: 1em;
}

span.required {
  color: #d50000;
}
.img-document {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/*Select2 Customization */
.select2-container .select2-selection.select2-selection--single {
  height: calc(2.25rem + 2px);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: calc(2.25rem + 2px) !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid rgba(0,0,0,.15) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: calc(2.25rem + 2px) !important;
  line-height: 1.25 !important;
  padding: .5rem .75rem
}
.is-invalid .select2-container--default .select2-selection--single {
  border-color: #dc3545 !important;
}
