:root{
	--wl-blue: #007bff;
	--wl-light-blue: #4eacdd;
	--wl-yellow: #fed000;
	--wl-yellow-transparent: #fed000cc;
	--wl-dark-blue: #3d60bb;
	--wl-white: rgb(247, 247, 247);
	--wl-light-gray: #777;
	--wl-black-transparent: #000000d5;
}

.brand-logo img {
	width: 212px;
}
.whatsapp {
	position: fixed;
	right: 1%;
	bottom: 11%;
	z-index: 1000;
}
.buble-ask {
	position: absolute;
	width: 232px;
	right: 61px;
	background-color: var(--wl-white);
	padding: 8px 20px;
	color: var(--wl-light-gray);
	border-radius: 25px;
	text-transform: capitalize;
	text-align: center;
}
.whatsapp,.buble-ask{
  filter: drop-shadow(-3px 2px 3px #0000002b);
}

.shake {
  animation: shake 2s ease infinite;
}
@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}
.bounce {
  animation: bounce 3s ease infinite;
}
@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}
.bounce-out-down {
  animation: bounce-out-down 2s ease infinite;
}
@keyframes bounce-out-down {
  0% { transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.swing {
	transform-origin: top center;
	animation: swing 1s ease;
}
@keyframes swing {
	20% { transform: rotate(15deg); }	
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }	
	80% { transform: rotate(-5deg); }	
	100% { transform: rotate(0deg); }
}

a{
	text-decoration: none !important;
}
.header.container-header {
	background: none;
	box-shadow: none;
	display: flex;
	position: absolute;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.wl-highlight {
	background-color: var(--wl-yellow-transparent);
	padding: 3px 9px;
	border-radius: 5px;
	color: var(--wl-dark-blue);
}
.container-header .mod-menu > li.active::after, .container-header .mod-menu > li:hover::after {
	background: var(--wl-blue);
	opacity: 1;
}
.main-image {
	height: 100vh;
	display: flex;
	align-items: flex-end;
    -webkit-align-items: flex-end;
	background-attachment: fixed;
	background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}
.banner-caption {
	color: #fff;
	margin: 10px;
	padding: 10px;
    position: relative;
    z-index: 2;
}
.banner-caption h1 {
	color: var(--wl-yellow);
}
.btn-cta {
	display: inline-block;
	background: linear-gradient(25deg,var(--wl-blue),var(--wl-light-blue));
	padding: 8px 15px;
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
	color: #fff;
	border: 2px solid var(--wl-blue);
}
.dark-transparent {
	height: 100vh;
	background: linear-gradient(to top,rgba(5, 5, 5, 0.7) 10%,rgba(255, 255, 255, 0) 50%);
	width: 100%;
	position: absolute;
}
/***Kontak Styling***/
.contact-container {
	display: flex;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	border-radius: 20px;
	box-shadow: -3px 3px 11px -5px #00000061;
	margin-top: -118px;
	position: relative;
	background-color: #fff;
}
.contact-col{
	flex: 1;
	padding: 20px;
}
.contact-col h3 {
	color: var(--wl-dark-blue);
}
.contact-col:last-child {
	background: var(--wl-blue);
	border-radius: 20px;
}
.contact-col .convertforms {
	background: none;
}
.contact-col .convertforms .cf-label {
	color: #fff;
}
/***End Kontak Styling***/

/***Header Section Styling***/
.header-section,.section-bg{
	width: 100%;
	height: 350px;
}
.header-section {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
}
.section-bg {
	background-color: #000000c4;
	position: absolute;
}
.section-desc{
	position: relative;
	text-align: center;
	color: #fff;
	z-index: 2;
}
.section-desc h1 {
	color: var(--wl-yellow);
	text-transform: uppercase;
}
.section-desc h3 {
	font-size: 1.2em;
	color: var(--wl-light-gray);
}
/***End Header Section Styling***/

/***Weblee Two Col Styling***/
.two-col-weblee {
	display: flex;
}
.two-col-inner{
	flex: 1;
}
.two-col-inner:first-child h3 {
	color: var(--wl-dark-blue);
}
.two-col-inner img {
	border-bottom: 7px solid #fed000;
}
/***End Weblee Two Col Styling***/

li.nav-item.current.active:last-child::after,.mod-menu > li.nav-item:last-child:hover::after {
	background: none !important;
}
li.nav-item:last-child {
	background: var(--blue);
	padding: 8px 16px;
	border-radius: 25px;
	color: #fff;
}
/***Intro Styling***/
.intro-container {
	text-align: center;
	background: linear-gradient(90deg,var(--wl-blue),var(--wl-light-blue));
}
.bg-intro {
	background-size: 25%;
	background-position: 0% 34%,97% 72%;
	background-repeat: no-repeat;
	opacity: 0.3;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.intro-text {
	z-index: 2;
	position: relative;
	color: #fff;
	padding: 3% 18%;
}
/***End Intro Styling***/
/***Sparator Styling***/
.sparator {
	display: flex;
}
.sparator-icon svg {
	width: 34px;
	fill: #fff;
}
.sparator-line {
	width: 150px;
	height: 8px;
	transform: skew(-41deg);
	background-color: #fff;
	margin: 21px 11px;
}
.sparator {
	display: flex;
	align-items: center;
	justify-content: center;
}
/***End Sparator Styling***/

/***Info Tab Styling***/
.service-container {
	padding: 20px;
}
.service-navigator {
	display: flex;
	justify-content: center;
}
.nav-tab {
	display: inline-flex;
	flex-direction: column-reverse;
	text-align: center;
	padding: 10px;
	justify-content: center;
	height: 150px;
	width: 150px;
	margin: 0 10px;
	border-radius: 10px;
	box-shadow: 0px 0px 9px -5px black;
	text-decoration: none;
	font-weight: bold;
	color: var(--wl-blue);
	transform: scale(1);
}
.nav-tab.active, .nav-tab:hover {
	box-shadow: -2px 2px 9px -3px black;
	background: linear-gradient(to top,var(--wl-blue),var(--wl-light-blue));
	color: #fff;
	transition: all .4s cubic-bezier(.86,0,.07,1);
	transform: scale(1.03);
}
.service-tab-inner{
	display: none;
}
.service-tab-inner.active {
	display: flex;
	width: 90%;
	margin: 10px auto;
}
.service-inner-content {
	width: 46%;
	padding: 25px;
	margin: 0 auto;
}
/***End Info Tab Styling***/

/***Why Us Styling***/
.why-us-container {
	background-size: cover;
}
.why-us-container h3:first-child, .why-us-container h2 {
	text-align: center;
}
.why-us-row,.why-us-row-first {
	display: flex;
	width: 80%;
	margin: 0 auto;
	justify-content: center;
}
.why-us-row-first .why-us-col{
	background: linear-gradient(113deg,var(--wl-blue),var(--wl-light-blue));
	color: #fff;
}
.why-us-row .why-us-col {
	background-color: #ffffffb8;
}
.why-us-row .why-us-desc h3, .why-us-row-first h3 {
	text-align: left !important;
}
.why-us-row .why-us-desc h3{
	color: var(--wl-blue);
}
.why-us-col img {
	filter: hue-rotate(200deg);
}
.why-us-row .why-us-col, .why-us-row-first .why-us-col {
	width: 40%;
	margin: 10px;
	display: flex;
	align-items: center;
	padding: 8px 25px;
	border-radius: 11px;
	box-shadow: 0 0 18px -11px black;
}
.why-us-col img {
	margin-right: 10px;
}
/***End Why Us Styling***/

/***Price List Styling***/
.price-list-cont,.price-list-bg,.price-list-inner{
	height: 250px;
	width: 100%;
}
.price-list-cont {
	position: relative;
}
.price-list-bg {
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: absolute;
	z-index: 1;
}
.price-list-inner {
	position: relative;
	z-index: 2;
	background-color: #000000c7;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
/***End Price List Styling***/

/***Weblee Button Styling***/
.weblee-btn {
	padding: 8px 16px;
	background: linear-gradient(90deg,var(--wl-dark-blue),var(--wl-blue));
	text-decoration: none;
	color: #fff;
	border-radius: 25px;
	box-shadow: inset 3px -1px 11px -1px var(--wl-light-blue);
	transition: all .85s ease-out;
}

.weblee-btn:hover{
	background: linear-gradient(34deg,var(--wl-blue) 34%,var(--wl-light-blue));
	box-shadow: -12px 9px 11px 0px #171717;
	color: #fff;
}
/***End Weblee Button Styling***/
.main-bottom.card {
	border: none;
}

/***Testimonial Styling***/
.testimonial-client {
	padding: 1% 11%;
}
.testimonial-heading {
	text-align: center;
	border-bottom: 4px dotted var(--wl-dark-blue);
	padding-bottom: 12px;
}
.testimonial-heading h2{
	color: var(--wl-dark-blue);
}
.owl-item{
	width: 263px;
}
.owl-carousel .owl-item {
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item .card {
    padding: 30px;
    position: relative;
}

.owl-carousel .owl-stage-outer {
    overflow-y: auto !important;
    padding-bottom: 40px;
}

.owl-carousel .owl-item img {
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.owl-carousel .owl-item .card .name {
    position: absolute;
    bottom: -20px;
    left: 33%;
    color: var(--wl-white);
    font-size: 1.1rem;
    font-weight: 600;
    background-color: var(--wl-blue);
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    box-shadow: 2px 3px 15px -7px #3c405a;
}
.owl-carousel .owl-item .card {
	border: none;
}
.owl-carousel .owl-item .card {
    opacity: 0.2;
    transform: scale3d(0.8, 0.8, 0.8);
    transition: all 0.3s ease-in-out;
	box-shadow: 0 0 11px -8px;
}

.owl-carousel .owl-item.active.center .card {
    opacity: 1;
    transform: scale3d(1, 1, 1);
	box-shadow: 0 0 11px -5px;
	color: var(--wl-light-gray);
}

.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    height: 20px;
    background: var(--wl-light-blue) !important;
    border-radius: 2px !important;
    opacity: 0.8;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    height: 13px;
    width: 13px;
    opacity: 1;
    transform: translateY(2px);
    background: var(--wl-blue) !important;
}

@media(min-width: 480.6px) and (max-width: 575.5px) {
    .owl-carousel .owl-item .card .name {
        left: 24%;
    }
}

@media(max-width: 360px) {
    .owl-carousel .owl-item .card .name {
        left: 30%;
    }
}
/***End Testimonial Styling***/

/***Weblee Footer Styling***/
.weblee-footer {
	display: flex;
	align-items: center;
}
.weblee-foot-col{
	flex: 1;
	padding: 0 20px;
}
.weblee-foot-row {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 5px;
}
.icon-desc {
	font-weight: normal;
	font-family: var(--font-sans-serif);
	line-height: 1.5;
}
.weblee-foot-row a {
	text-decoration: none;
}
.weblee-foot-col img {
	width: 201px;
}
.svg-icon svg path:last-child {
	fill: var(--wl-light-blue);
}
.weblee-copyright {
	margin: 0;
	padding: 20px;
}
.weblee-copyright a {
	text-decoration: none !important;
	color: #3d60bb !important;
}
/***End Weblee Footer Styling***/

/***Item Padding***/
.tentang-kami .item-page,.faq .item-page, .blog .item-page, .cek-biaya .item-page {
	padding: 2% 20%;
}
.faq .item-page h3 {
	color: var(--wl-dark-blue);
	margin-top: 48px;
}
.faq .item-page h3:first-child {
	margin-top: 0;
}
.blog .item-page{
	padding-top: 10%;
}
.blog .item-page a {
	font-weight: bold;
	color: var(--wl-dark-blue);
}
.blog .item-page a:hover {
	color: var(--wl-light-blue);
}
/***End Item Padding***/

/***Blog Styling***/
.blog .com-content-category-blog {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10%;
}
.blog .mod-menu {
	color: #2a6ba3;
}
.blog .item-page .page-header h1 {
	color: #fff;
	padding: 8px 20px;
	text-align: center;
	background-color: #3e7dcd;
	margin: 0;
}
.blog .com-content-category-blog img {
	height: 250px;
	width: 100%;
	object-fit: cover;
}
/***End Blog Styling***/

@media screen and (max-width:667px){
	/***Mobile Menu Styling***/
	[data-id="mobilemenuck-1"] .mobilemenuck-bar-title {
		background: transparent !important;
	}
	.mobilemenuck-bar-button {
		top: 10px !important;
		right: 10px !important;
	}
	[data-id="mobilemenuck-1"] .mobilemenuck-bar-button {
		background-color: var(--wl-dark-blue) !important;
	}
	[data-id="mobilemenuck-1"].mobilemenuck {
		background: var(--wl-black-transparent) !important;
	}
	[data-id="mobilemenuck-1"] .mobilemenuck-title {
		background: var(--wl-dark-blue) !important;
	}
	[data-id="mobilemenuck-1"] .mobilemenuck-item > .level1 {
		background: none !important;
		text-align: center;
	}
	[data-id="mobilemenuck-1"] .mobilemenuck-item > .level1 a {
		font-family: var(--font-sans-serif);
		font-weight: normal;
	}
	.mobilemenuck-itemwrap {
		margin-top: 20px;
	}
	/***End Mobile Menu Styling***/

	.header.container-header {
		top: 0;
		left: 0;
	}
	.container-banner {
		margin-top: -43px;
	}
	.intro-text {
		padding: 3% 3%;
	}
	.banner-caption h1 {
		font-size: 2.5em;
	}
	.banner-caption h3 {
		font-size: 1.5em;
	}
	.service-tab-inner, .service-tab-inner.active {
		flex-direction: column;
		margin: 0;
		width: 100%;
	}
	.service-inner-content {
		width: 100%;
	}
	.why-us-row, .why-us-row-first {
		width: 90%;
		flex-direction: column;
	}
	.why-us-row .why-us-col, .why-us-row-first .why-us-col {
		width: 100%;
		margin: 10px 0;
	}
	.weblee-footer {
		flex-direction: column;
	}
	.why-us-container h3:first-child, .why-us-container h2 {
		text-align: center;
		line-height: 1.5;
		font-size: 1.6em;
	}
	.price-list-inner {
		padding: 10px;
	}
	.weblee-foot-col {
		border-bottom: 1px solid;
		padding: 25px 0;
		width: 100%;
	}
	.weblee-foot-col:last-child {
		border-bottom: none;
	}
	.tentang-kami .item-page, .faq .item-page, .blog .item-page, .cek-biaya .item-page {
		padding: 2%;
	}
	.blog .item-page {
		padding-top: 15%;
	}
	.blog .com-content-category-blog {
		width: 100%;
	}
	.blog .item-page .page-header h1 {
		font-size: 1.6em;
	}
	.blog .item-page h2 {
		font-size: 1.3em;
	}
	.contact-container {
		flex-direction: column;
		width: 100%;
		padding: 5px;
	}
	.kontak.wrapper-fluid .site-grid {
		grid-gap: 0 .8em;
	}
	.convertforms .cf-content-wrap, .convertforms .cf-form-wrap {
		padding: 0 !important;
	}
	.two-col-weblee {
		flex-direction: column;
	}

}