/*----------------
    Fonts
-------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


/*----------------
    Global css
-------------------*/
:root {
	/*--main-color: #a200ff;*/
	--main-color: #8865ff;
	--main-body-background: #fff;
	--body-background: #f7f7f7;
	--white: #fff;
	--grey: #e1e1e1;
	--gray: #c0c0c0;
	--color-1: #ea4235;
	--color-2: #fabd03;
	--color-3: #4285f5;
	--color-4: #8865ff;
	--bg-dark: #2b2c2f;
	--main-to-dark-color: var(--main-color);
	--dark-to-main-color: var(--bg-dark);
	--shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
	--shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
	--black-900: #000;
	--black-400: #555;
	--black-000: #fff;
	--black-alpha-100: rgba(0, 0, 0, 0.05);
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	overflow-x: hidden;
	background-color: var(--main-body-background);
	line-height: 1.5;
	height: 2000px;
}

/*-----------
    Container
-------------*/
.container {
	padding-left: 20px;
	padding-right: 20px;
}

* {
	margin: 0;
	padding: 0;
	outline: none !important;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

ul {
	list-style: none;
}

.btn-1 {
	background-color: var(--white);
	padding: 12px 30px;
	border: none;
	border-radius: 30px;
	color: var(--main-color);
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.5s ease;
	box-shadow: var(--shadow-black-300);
	font-weight: 500;
}

.btn-1:focus {
	box-shadow: var(--shadow-black-300);
}

.btn-1:hover {
	color: var(--white);
	background-color: var(--main-color);
}

.btn-2 {
	background-color: var(--main-color);
	padding: 12px 30px;
	border: none;
	border-radius: 30px;
	color: var(--white);
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.5s ease;
	box-shadow: var(--shadow-black-100);
	font-weight: 500;
}

.btn-2:focus {
	box-shadow: var(--shadow-black-100);
}

.btn-2:hover {
	color: var(--main-color);
	background-color: var(--white);
}


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

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

@keyframes bounceTop_01 {

	0%,
	100% {
		transform: translateY(-30px);
	}

	50% {
		transform: translateY(0px);
	}
}

@keyframes pulse_01 {
	0% {
		transform: scale(0.94);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
	}

	100% {
		transform: scale(0.94);
		box-shadow: 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes zoomInOut_01 {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.effect-wrap .effect {
	position: absolute;
	z-index: -1;
}

.effect-wrap .effect-1 {
	left: 20%;
	top: 20%;
	font-size: 20px;
	color: var(--color-2);
	animation: spin_01 5s linear infinite;
}

.effect-wrap .effect-2 {
	right: 5%;
	top: 10%;
	font-size: 25px;
	color: rgba(255, 255, 255, 0.5);
	animation: spin_01 7s linear infinite;
}

.effect-wrap .effect-3 {
	left: 5%;
	bottom: 30%;
	font-size: 20px;
	color: var(--color-3);
	animation: bounceTop_01 5s linear infinite;
}

.section-padding {
	padding: 80px 0;
}

.section-title {
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 40px;
	color: var(--black-900);
	font-weight: 700;
	text-align: center;
	margin: 0;
}

.section-title h2 span {
	color: var(--main-color);
}

.owl-carousel .owl-dots {
	padding: 0 15px;
	text-align: center;
	margin: 20px;
}

.owl-carousel button.owl-dot {
	height: 6px;
	width: 24px;
	background-color: #ddd;
	display: inline-block;
	margin: 0 4px;
	border-radius: 5px;
}

.owl-carousel button.owl-dot.active {
	background-color: var(--main-color);
}

.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 25px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(221, 221, 221, 0.7);
	visibility: hidden;
	cursor: pointer;
	transition: all .2s ease;
	z-index: 1100;
}

.back-to-top::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: -4px auto;
	width: 12px;
	height: 12px;
	border-top: 2px solid #555;
	border-right: 2px solid #555;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.back-to-top:hover {
	background: var(--main-color);
}

.back-to-top:hover::after {
	border-color: #fff;
}


/**********************
    Preloader
**********************/
/*.preloader {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 2100;
	background-color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.preloader span {
	display: block;
	height: 60px;
	width: 60px;
	background-color: var(--dark-to-main-color);
	border-radius: 50%;
	animation: zoomInOut_01 1s ease infinite;
}*/



/*----------------
    Navbar
-------------------*/
.navbar {
	background-color: var(--dark-to-main-color);
	padding: 20px 0;
	transition: all 0.5s ease;
}

.navbar.sticky {
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	background-color: var(--main-color);
	padding: 15px 0;
}

.navbar>.container {
	padding: 0 17px;
}

.navbar .navbar-brand {
	font-size: 25px;
	color: var(--white);
	font-weight: 500;
	text-transform: capitalize;
}

.navbar .navbar-brand span {
	color: #a4c639;
}

.navbar .nav-item {
	margin-left: 30px;
}

.navbar .nav-item .nav-link {
	color: var(--white);
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 400;
	padding: 5px 0;
	position: relative;
}

.navbar .nav-item .nav-link::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	height: 1px;
	background-color: var(--white);
	transition: all 0.5s ease;
	transform: scale(0);
}

.navbar .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before {
	transform: scale(1);
}


/*----------------
    Home Section
-------------------*/
/*.home {
	min-height: 100vh;
	padding: 150px 0;
	background-color: var(--dark-to-main-color);
	border-radius: 0 0 200px 0;
	position: relative;
	z-index: 1;
	overflow-x: hidden;
}*/
.home {
	min-height: 100vh;
	padding: 150px 0;
	background-color: var(--dark-to-main-color);
	position: relative;
	z-index: 1;
	overflow-x: hidden;
	/*box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5);*/
}

.home .home-text span {
	color: #a4c639;
}

.home .home-btn {
	margin-top: 40px;
}

.home .home-btn .video-play-button {
	margin-left: 30px;
	height: 50px;
	width: 50px;
	padding: 0;
	animation: pulse_01 2s ease infinite;
}

.home .home-btn .video-play-button i {
	line-height: 50px;
}

.home .home-btn .video-play-button:hover {
	animation: none;
	box-shadow: var(--shadow-black-300);
}

.home-img img {
	max-width: 250px;
	width: 100%;
	box-shadow: var(--shadow-black-100);
	border-radius: 32px;
	animation: bounceTop_01 3s ease infinite;
}

.home-img {
	position: relative;
}

.home-img .circle {
	position: absolute;
	z-index: 1;
	height: 400px;
	width: 400px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.home-img .circle::before {
	content: '';
	position: absolute;
	height: 60px;
	width: 60px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	left: 30px;
	top: 30px;
	transform-origin: 170px 170px;
	animation: spin_01 10s linear infinite;
}

.home-text h1 {
	font-size: 45px;
	font-weight: 700px;
	color: var(--white);
	margin: 0 0 20px;
}

.home-text p {
	font-size: 18px;
	line-height: 28px;
	color: var(--white);
	margin: 0;
	font-weight: 300;
}


/*----------------
    About App Section
-------------------*/
.fun-facts {
	background-color: var(--main-body-background);
}

.fun-facts .section-title {
	margin-bottom: 20px;
}

.fun-facts .section-title h2 {
	text-align: left;
}

.fun-facts-img img {
	/*max-width: 250px;*/
	max-width: 300px;
	width: 100%;
	box-shadow: var(--shadow-black-100);
	border-radius: 40px;
	/*animation: bounceTop_01 3s ease infinite;*/
}

.fun-facts-text p {
	font-size: 16px;
	line-height: 26px;
	color: var(--black-400);
	margin: 0 0 15px;
	font-weight: 300;
	text-align: justify;
}

.fun-facts-text strong {
	font-size: 16px;
	line-height: 26px;
	color: var(--black-400);
	margin: 0 0 15px;
	font-weight: 400;
	text-align: justify;
}

.fun-facts-text h4 {
	font-size: 25px;
	font-weight: 600;
	color: var(--black);
	margin: 0 0 5px;
}

.fun-facts-text ul li {
	list-style-type: disc;
	padding: 5px 0 !important;
	list-style-position: inside;
	font-size: 16px;
	color: var(--black-400);
	font-weight: 300;
	text-align: justify;
}

.fun-fact-item {
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
	margin-top: 30px;
}

.fun-fact-item span {
	font-size: 16px;
	text-transform: uppercase;
	color: var(--white);
	font-weight: 300;
	margin: 0;
	line-height: 26px;
	display: block;
}

.accordion-body p span {
	color: var(--main-color);
}

.fun-fact-item.style-1 {
	background-color: var(--color-1);
}

.fun-fact-item.style-2 {
	background-color: var(--color-3);

}

.fun-fact-item.style-3 {
	background-color: var(--color-3);

}

.fun-fact-item.style-4 {
	background-color: var(--color-2);

}

/*----------------
	Admob Ad Section
-------------------*/
.admob-supports {
	background-color: var(--main-body-background);
}

.admob-supports-item {
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
	margin-top: 30px;
}

.admob-supports-item h3 {
	text-align: center;
	color: var(--white);
	font-size: 24px;
	font-weight: 600;
}

.admob-supports-item span {
	text-align: center;
	color: var(--black);
	font-size: 17px;
	font-weight: 500;
}

.admob-supports-item.style-1 {
	background-color: var(--color-1);
}

.admob-supports-item.style-2 {
	background-color: var(--color-3);

}

.admob-supports-item.style-3 {
	background-color: var(--color-3);

}

.admob-supports-item.style-4 {
	background-color: var(--color-2);

}


/*----------------
	App Features section
-------------------*/
.features {
	background-color: var(--body-background);
}

.features .features-item {
	box-shadow: var(--shadow-black-100);
	background-color: var(--white);
	margin: 10px;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.features .features-item::before,
.features .features-item::after {
	content: '';
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	transition: all 0.5s ease;
	opacity: 0;
}


.features .features-item::before {
	height: 20px;
	width: 20px;
	background-color: var(--color-1);
	left: -20px;
	top: 40%;
}

.features .features-item:hover::before {
	left: 10px;
	opacity: 1;
}

.features .features-item::after {
	height: 30px;
	width: 30px;
	background-color: var(--color-2);
	right: -30px;
	top: 80%;
}

.features .features-item:hover::after {
	right: -15px;
	opacity: 1;
}

.features .features-item .icon {
	height: 60px;
	width: 60px;
	margin: 0 auto 30px;
	text-align: center;
	font-size: 30px;
	color: var(--main-color);
	position: relative;
	z-index: 1;
	transition: all 0.5s ease;
}

.features .features-item .icon::before {
	content: '';
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	transition: all 0.5s ease;
	z-index: -1;
	opacity: 0;
}

.features .features-item:hover .icon::before {
	left: 0;
	border-radius: 60px;
	opacity: 1;
}

.features .features-item:hover .icon {
	color: var(--white);
	font-size: 20px;
}

.features .features-item .icon i {
	line-height: 60px;
}

.features .features-item h3 {
	font-size: 22px;
	margin: 0 0 20px;
	color: var(--black-900);
	font-weight: 500;
	text-transform: capitalize;
}

.features .features-item p {
	font-size: 16px;
	line-height: 26px;
	font-weight: 300;
	color: var(--black-400);
	margin: 0 0 15px;
}



/*----------------
	App Screenshots
-------------------*/
.app-screenshots {
	background-image: url(../img/reading.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	z-index: 1;
}

.app-screenshots::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: var(--main-to-dark-color);
	opacity: 0.3;

}

.app-screenshots .section-title h2 {
	color: var(--white);
}

.app-screenshots .section-title span {
	color: var(--main-color);
}

.screenshot-item {
	margin: 15px;
}

.screenshot-item img {
	width: 100%;
	max-width: 250px;
	display: block;
	margin: auto;
}

/*----------------
    How To Order Section
-------------------*/
.order {
	background-color: var(--white);

}

.order .section-title h2 {
	color: var(--black);
}

.order .order-text h3 {
	color: var(--main-color);
}

.order .padding-top {
	padding-top: 15px;
}

.order-card-bottom {
	margin-bottom: 30px;
}

.order .order-text {
	font-size: 16px;
	font-weight: 300;
	color: var(--black-400);
	align-self: flex-center;
	padding-top: 25px;
	padding-bottom: 15px;
	padding-left: 30px;
	padding-right: 30px;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
}

.order .order-text p {
	font-size: 16px;
	font-weight: 300;
	color: var(--black-400);
	text-align: justify;
}

.order .order-text ul li {
	list-style-type: disc;
	padding: 5px 0 !important;
	list-style-position: inside;
	text-align: justify;
}

.order .order-text span {
	color: var(--main-color);
	font-size: 16px;
	font-weight: 500;
}

.order .order-header h3 {
	padding: 30px 0px 0px;
	text-align: center;
	color: var(--main-color);
	font-size: 30px;
	font-weight: 600;
}

.order .image-item {
	align-self: flex-center;
	padding-left: 20px;
	padding-right: 20px;

}

.order-item {
	background-color: var(--white);
	padding: 0px;
	text-align: center;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
}

.order .order-footer h4 {
	padding: 20px 0px 30px;
	text-align: center;
	color: var(--gray);
	font-size: 24px;
	font-weight: 400;
}


/*----------------
	Pricing paket section
-------------------*/
.pricing-paket {
	box-shadow: var(--shadow-black-100);
	background-color: var(--white);
	border-radius: 10px;
}

.pricing-paket .pricing-header {
	padding: 20px 30px;
	border-bottom: 1px solid var(--black-alpha-100);
}

.pricing-paket .pricing-header h3 {
	text-align: center;
	font-size: 30px;
	color: var(--black-900);
	font-weight: 600;
	text-transform: capitalize;
	margin: 0;
}


.pricing-paket .pricing-price {
	padding: 20px 20px;
	display: flex;
	justify-content: center;
}

.pricing-paket .pricing-price .currency {
	font-size: 16px;
	font-weight: 300;
	color: var(--black-400);
	margin-right: 5px;
}

.pricing-paket .pricing-price .start-from {
	font-size: 16px;
	font-weight: 300;
	color: var(--black-400);
	align-self: flex-center;
}

.pricing-paket .pricing-header span {
	color: var(--main-color);
}

.pricing-paket .start-from p {
	padding: 15px 20px 15px;
	font-size: 20px;
	font-weight: 300;
	color: var(--black-400);
	justify-content: center;
	text-align: center;
	border-bottom: 1px solid var(--black-alpha-100);
	line-height: 26px;
}

.detail-paket-top {
	margin-top: 30px;
}

.pricing-paket .detail-paket {
	font-size: 16px;
	font-weight: 300;
	color: var(--black-400);
	align-self: flex-center;
	padding-top: 25px;
	padding-bottom: 15px;
	padding-left: 30px;
	padding-right: 30px;
}

.pricing-paket .detail-paket p {
	font-size: 16px;
	font-weight: 300;
	color: var(--black-400);
	text-align: justify;
}

.pricing-paket .detail-paket ul li {
	list-style-type: disc;
	padding: 5px 0 !important;
	list-style-position: inside;
	text-align: justify;
}

.pricing-paket .detail-paket span {
	color: var(--main-color);
	font-size: 16px;
	font-weight: 500;
}

.pricing-paket .pricing-price .price {
	font-size: 24px;
	font-weight: 600;
	color: var(--main-color);
}

.pricing-paket .pricing-price .period {
	font-size: 14px;
	font-weight: 300;
	color: var(--black-400);
	margin-right: 5px;
	align-self: flex-end;
	text-transform: uppercase;
}


.pricing-paket .pricing-body {
	padding: 0px 30px;
}

.pricing-paket .pricing-body ul li {
	font-size: 16px;
	font-weight: 300;
	color: var(--black-400);
	padding: 10px 0 10px 30px;
	border-bottom: 1px solid var(--black-alpha-100);
	line-height: 26px;
	position: relative;
}

.pricing-paket .pricing-body ul li:last-child {
	border-bottom: none;
}

.pricing-paket .pricing-body ul li i {
	color: var(--main-color);
	position: absolute;
	left: 0;
	top: 12px;
}

.pricing-paket .pricing-footer {
	padding: 20px 30px 30px;
	text-align: center;
}

/*----------------
	Table section
-------------------*/
.paket-more-detail {
	min-height: 100vh;
	background-color: var(--white);
	position: relative;
	z-index: 1;
	overflow-x: hidden;
	padding-top: 150px;
	padding-left: 30px;
	padding-right: 30px;

}


.data-table {
	margin-top: 45px;
	background-color: var(--white);
	padding: 20px;
	text-align: center;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
}

table {
	border-collapse: collapse;
	width: 100%;
}

table,
th,
td {
	border-collapse: collapse;
	border: 1px solid var(--grey);
}

thead {
	background-color: #E5E5E5;
}

th {
	background-color: var(--main-color);
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
}

td {
	font-size: 16px;
	font-weight: 300;
}

th,
td {
	padding: 15px;
	text-align: left;
}


/*----------------
	testimonials
-------------------*/
.testimonials {
	background-color: var(--body-background);
}

.testimonials-item {
	margin: 15px;
	padding: 30px;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
	text-align: center;
	background-color: var(--white);
}

.testimonials-item .img-box {
	height: 100px;
	width: 100px;
	display: inline-block;
	margin-bottom: 30px;
	border: 4px solid var(--main-color);
	border-radius: 50%;
	position: relative;
}

.testimonials-item .img-box img {
	border-radius: 50%;
	width: 100%;
}

.testimonials-item .img-box i {
	position: absolute;
	height: 30px;
	width: 30px;
	background-color: var(--main-color);
	border-radius: 50%;
	color: var(--white);
	font-size: 12px;
	line-height: 30px;
	text-align: center;
	left: 85%;
	top: 32.5%;
}

.testimonials-item p {
	font-size: 16px;
	margin: 0 0 20px;
	color: var(--black-400);
	line-height: 26px;
	font-weight: 300;
}

.testimonials-item h3 {
	font-size: 22px;
	color: var(--black-900);
	font-weight: 500;
	margin: 0 0 5px;
	text-transform: capitalize;
}

.testimonials-item span {
	display: block;
	font-size: 16px;
	color: var(--black-400);
	font-weight: 300;
}

.testimonials-item .rating {
	margin-top: 10px;
}

.testimonials-item .rating i {
	display: inline-block;
	font-size: 16px;
	color: var(--color-2);
}


/*----------------
	Faq section
-------------------*/

.faq {
	background-color: var(--white);
}

.faq .accordion-item:not(:last-child) {
	margin-bottom: 20px;
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: var(--shadow-black-100);
}

.faq .accordion-header {
	border-radius: 10px;
	box-shadow: var(--shadow-black-100);
	padding: 20px 50px 20px 30px;
	transition: all 0.5s ease;
	cursor: pointer;
	position: relative;
}

.faq .accordion-header::before {
	content: '+' !important;
	font-family: 'FontAwesome';
	font-weight: 900;
	position: absolute;
	height: 30px;
	width: 30px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	text-align: center;
	line-height: 30px;
	color: var(--black-400);
	transition: all 0.5s ease;
}

.faq .accordion-header:not(.collapsed) {
	background-color: var(--main-color);
	box-shadow: none;
	border-radius: 10px;
}

.faq .accordion-header:not(.collapsed)::before {
	content: "-" !important;
	font-family: 'FontAwesome';
	color: var(--white);
	font-size: 16px;
}

.faq .accordion-header h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--black-400);
	margin: 0;
	transition: all 0.5s ease;
}

.faq .accordion-header:not(.collapsed) h3 {
	color: var(--white);
}

.faq .accordion-body {
	padding: 20px 30px;
	margin-top: 20px;
	background-color: var(--white);
	border-radius: 10px;
}

.faq .accordion-body p {
	font-weight: 300;
	font-size: 16px;
	color: var(--black-400);
	line-height: 26px;
	margin: 0;
}

.faq .accordion-body ul li {
	list-style-type: disc;
	padding: 5px 0 !important;
	list-style-position: inside;
}

.faq .accordion-body span {
	font-weight: 500;
	color: var(--main-color);
}


/*------------------------
	Footer section
--------------------------*/

.footer {
	background-color: var(--main-color);
	padding: 50px 0 0;
	text-align: left;
}

.footer-info-item {
	position: relative;
	padding-left: 55px;
	margin-bottom: 20px;
}

.footer-col h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--white);
	margin: 0 0 25px;
	text-transform: capitalize;
}

.footer-col2 h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--white);
	margin: 0 0 25px;
	text-transform: capitalize;
}

.footer-info-item h4 {
	font-size: 17px;
	font-weight: 400;
	margin: 0 0 10px;
	color: var(--white);
}

.footer-col p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	line-height: 26px;
	margin: 0;
}

.footer-col2 p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	line-height: 26px;
	margin: 0;
}

.footer-col2 .horizontal-link ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.footer-col2 .horizontal-link li a {
	text-align: center;
	padding-top: 16px;
	padding-right: 17px;
	float: left;
	font: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	display: block;
	transition: all 0.5s ease;
	text-decoration: none;
}

.footer-col2 .horizontal-link ul li a:hover {
	/*font-weight: 500;*/
	padding-left: 5px;
}

.footer-col span {
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
}

.footer-info-item i {
	position: absolute;
	height: 40px;
	width: 40px;
	left: 0;
	top: 0;
	border-radius: 50%;
	font-size: 16px;
	color: var(--white);
	border: 1px solid var(--white);
	text-align: center;
	line-height: 38px;
}

.footer-col ul {
	margin: 0;
}

.footer-col ul li:not(:last-child) {
	margin-bottom: 10px;
}

.footer-col ul li a {
	font: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	display: block;
	transition: all 0.5s ease;
	text-decoration: none;
}

.footer-col ul li a:hover {
	padding-left: 5px;
}

.footer .copyright-text {
	padding: 20px 0;
	text-align: center;
	font: 16px;
	color: var(--white);
	font-weight: 500;
	margin: 50px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .copyright-slogan {
	padding: 0px 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	line-height: 26px;
}

.footer .copyright-text span {
	color: #a4c639;
}


/* ********************
	Responsive
***********************/
@media(max-width:991px) {
	.navbar .navbar-brand {
		font-size: 25px;
	}

	.navbar-nav {
		background-color: var(--dark-to-main-color);
		box-shadow: var(--shadow-black-300);
		border-radius: 10px;
	}

	.navbar .nav-item {
		margin: 0;
		padding: 5px 15px;
	}

	.navbar.navbar.sticky .navbar-nav {
		background-color: var(--main-color);
	}

	/*ICON MENU Start.*/
	.hamburger {
		background-color: transparent;
		border: none;
		height: 27px;
		width: 26px;
		cursor: pointer;
		padding: 0px;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
	}

	.line {
		width: 100%;
		height: 0.2rem;
		background-color: var(--white);
		border-radius: 0.2rem;
		transition: all 0.5s ease-in-out;
	}

	.clicked .line-1 {
		transform: rotateZ(-405deg) translate(-0.5rem, 0.3rem);
		background-color: #fdd835;
	}

	.clicked .line-2 {
		opacity: 0;
	}

	.clicked .line-3 {
		transform: rotateZ(405deg) translate(-0.5rem, -0.3rem);
		background-color: #fdd835;
	}

	/*ICON MENU End.*/

	.home-img .circle {
		height: 320px;
		width: 320px;
	}

	.home-img .circle::before {
		left: 18px;
		top: 18px;
		transform-origin: 142px 142px;
	}

	.home-text h1 {
		font-size: 40px;
	}

	.how-it-works-item,
	.order-item,
	.pricing-paket {
		margin-bottom: 30px;
	}

	.how-it-works-item.line-right::before {
		content: none;
	}

	.how-it-works-item {
		box-shadow: var(--shadow-black-100);
		border-radius: 10px;
	}

	.footer-col {
		margin-top: 30px;
	}
}

@media(max-width:767px) {
	.navbar .navbar-brand {
		font-size: 25px;
	}

	.home-text {
		margin-bottom: 80px;
	}

	.fun-facts-img {
		margin-bottom: 30px;
	}

	.contact-form {
		margin-top: 20px;
	}

	.footer-col {
		margin-top: 30px;
	}

	.section-title h2 {
		font-size: 35px;
	}

	.fun-facts .section-title h2 {
		text-align: center;
	}
}

@media(max-width:575px) {
	.navbar .navbar-brand {
		font-size: 19px;
	}

	.home-text h1 {
		font-size: 30px;
	}

	.home-text p {
		font-size: 16px;
	}

	.section-title h2 {
		font-size: 30px;
	}
}