/*----------------
    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: #8865ff;
	--main-body-background: #ffffff;
	--body-background: #f7f7f7;
	--white: #ffffff;
	--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);
	--shadow-black-400: rgba(0, 0, 0, 0.6);
	--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: 100vh;*/
	height: auto;
	min-height: 100%;
}

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

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

ul {
	list-style: none;
}

.btn-style-3 {
	padding-top: 10px;
	padding-bottom: 13px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.btn-3 {
	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-3:focus {
	box-shadow: var(--shadow-black-100);
}

.btn-3: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: 35px;
	color: var(--black-900);
	font-weight: 700;
	text-align: center;
	margin: 0;
}

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

.section-title h3 {
	font-size: 30px;
	color: var(--black-900);
	font-weight: 600;
	text-align: center;
	margin: 0;
	margin-top: 30px;
	margin-bottom: 30px;
}

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

.section-title h4 {
	font-size: 20px;
	color: var(--black-900);
	font-weight: 600;
	text-align: center;
	margin: 0;
}

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

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

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

.section-page-title h3 {
	font-size: 30px;
	color: var(--black-900);
	font-weight: 600;
	text-align: center;
	margin: 0;
}

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

.section-page-title h4 {
	font-size: 24px;
	color: var(--black-400);
	font-weight: 600;
	text-align: center;
	margin: 0;
}

.section-page-subtitle h5 {
	font-size: 24px;
	color: var(--black-400);
	font-weight: 500;
	text-align: center;
	margin: 0;
}

.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: transparent;*/
	background-color: var(--dark-to-main-color);
	transition: all 0.5s ease;
	padding: 20px 0;
	/*padding: 20px 0;*/
}

.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 15px;*/
	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);
}

/*----------------
    Form tutor Section
-------------------*/
/*.form-tutor {
	min-height: 100vh;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
	padding-top: 150px;
	padding-left: 40px;
	padding-right: 40px;
	
}*/
.form-tutor {
	background-color: var(--white);
}

.form-tutor .tutor-item {
	margin-top: 55px;
	padding-left: 20px;
	padding-right: 20px;
}

.form-tutor .tutor-text {
	font-size: 16px;
	font-weight: 400;
	color: var(--black-400);
	text-align: justify;
	margin-top: 20px;
	margin-bottom: 10px;
}

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

.form-tutor .tutor-text h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--black);
	text-align: center;
}

.form-tutor .tutor-text h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--black);
	text-align: justify;
}

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

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

/*--------------
	SECTION DIVIDER CENTER TEXT
--------------*/
.title-divider h2 {
	display: flex;
	align-items: center;
	font-size: 30px;
	font-weight: 600;
	color: var(--main-color);
	--title-divider-gap: 1rem;
	/*set a customizable gap between label and lines*/
	padding-top: 40px;
	padding-bottom: 10px;
}

.title-divider h2::before,
.title-divider h2::after {
	content: '';
	height: 1px;
	border-top: 1px solid var(--grey);
	flex-grow: 1;
}

.title-divider h2::before {
	margin-right: 10px;
}

.title-divider h2::after {
	margin-left: 10px;
}

.title-divider-last h2 {
	display: flex;
	align-items: center;
	font-size: 30px;
	font-weight: 600;
	color: var(--black-900);
	--title-divider-gap: 1rem;
	/*set a customizable gap between label and lines*/
	padding-top: 40px;
	padding-bottom: 10px;
}

.title-divider-last h2::before,
.title-divider-last h2::after {
	content: '';
	height: 1px;
	border-top: 1px solid var(--grey);
	flex-grow: 1;
	/*background-color: var(--grey);*/
}

.title-divider-last h2::before {
	margin-right: 10px;
}

.title-divider-last h2::after {
	margin-left: 10px;
}

/*----------------
	Bullet tutor list section
-------------------*/
.bullet-tutor-list {
	font-size: 16px;
	font-weight: 400;
	color: var(--black-400);
	text-align: left;
	align-self: flex-center;
}

.bullet-tutor-list-folder {
	color: #ffd700;
	padding-left: 0px;
	padding-top: 0px;
}

.bullet-tutor-list ul li {
	list-style-type: none;
	padding: 5px 0 !important;
	font-size: 16px;
	font-weight: 400;
	color: var(--black-400);
	text-align: left;
}

.bullet-tutor-list span {
	font-size: 16px;
	font-weight: 500;
	color: var(--black-400);
}

.bullet-tutor-list strong {
	font-size: 16px;
	font-weight: 600;
	color: var(--black-400);
}

.bullet-tutor-list p {
	font-size: 16px;
	font-weight: 400;
	color: var(--black-400);
	text-align: left;
	line-height: 1.8;
}

.bullet-tutor-list i {
	color: #ffd700;
	padding-bottom: 10px;
}

.bullet-tutor-list a {
	font-size: 16px;
	font-weight: 500;
	color: var(--main-color);
}

/*----------------
	Folder structure section
-------------------*/
.foldercontainer {
	width: 100%;
	background-color: #fff;
	border: 1px solid var(--grey);
	border-radius: 7px;
	border-collapse: collapse;
	align-self: flex-center;
	margin-bottom: 20px;
}

.foldercontainer ul li {
	list-style-type: none;
	padding: 5px 0 !important;
	font-size: 16px;
	font-weight: 400;
	color: var(--black-400);
	text-align: left;
}

.main-folder {
	color: #ffd700;
	padding-left: 22px;
	padding-top: 15px;
}

.main-folder span {
	color: #000;
}

.sub-folder {
	color: #ffd700;
	/*padding-left: 44px;*/
	padding-left: 44px;
}

.sub-folder span {
	color: #000;
}

.sub-folder2 {
	color: #ffd700;
	padding-left: 66px;
}

.sub-folder2 span {
	color: #000;
}

.sub-folder3 {
	color: #ffd700;
	padding-left: 88px;
}

.sub-folder3 span {
	color: #000;
}

.sub-folder4 {
	color: #ffd700;
	padding-left: 110px;
}

.sub-folder4 span {
	color: #000;
}

.file-docx {
	color: #3F51B5;
	padding-left: 44px;
}

.file-docx span {
	color: #393939;
}

.file-xml {
	color: #7DB838;
	padding-left: 88px;
}

.file-xml span {
	color: #393939;
}

.file-chap {
	color: #8865FF;
	padding-left: 88px;
}

.file-chap span {
	color: #393939;
}

.file-css {
	color: #FF4484;
	padding-left: 88px;
}

.file-css span {
	color: #393939;
}

/*----------------
	FINAL STEPS
-------------------*/
/*.final-step {
	background-color: var(--white);
}
.final-step .final-item {
	margin-top: 60px;
	padding-left: 20px;
	padding-right: 20px;
}
.final-step .final-step-text {
	font-size: 16px;
	font-weight: 400;
	color: var(--black-400);
	text-align: justify;
	padding-top: 20px;
}

.final-step-text span {
	font-weight: 500;
	color: var(--main-color);
}*/

/*----------------
	IMAGE ICON BOOK COVER SAMPLE
-------------------*/
.exam-icon-cover {
	background-color: var(--body-background);
}

.exam-icon-cover .padding-top {
	padding-top: 50px;
}

.exam-icon-cover .exam-icon-cover-header h3 {
	padding: 25px 0px 0px;
	text-align: center;
	color: var(--main-color);
	font-size: 24px;
	font-weight: 600;
}

.exam-icon-cover .image-item {
	align-self: flex-center;
	padding-left: 10px;
	padding-right: 10px;

}

.exam-icon-cover-item {
	background-color: var(--white);
	padding: 0px;
	text-align: center;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
	margin-left: 8px;
	margin-right: 8px;
	margin-bottom: 30px;
}

.exam-icon-cover .exam-icon-cover-footer h4 {
	padding: 20px 0px 25px;
	text-align: center;
	color: var(--black-400);
	font-size: 24px;
	font-weight: 400;
}

/*----------------
	Table section
-------------------*/
.paket-more-detail {
	background-color: var(--white);
}

.paket-more-detail .paket-detail-item {
	margin-top: 55px;
	padding-left: 10px;
	padding-right: 10px;
	/*padding-left: 20px;
	padding-right: 20px;*/
}

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

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

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

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;
}

/*td.workbooks, td.salesforce {
    border-left: none;
    border-right: none;
}*/

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

.data-table .listed ul li {
	list-style-type: disc;
	padding: 5px 0 !important;
	list-style-position: inside;
	font-size: 16px;
	font-weight: 300;
	text-align: justify;
}


/*----------------
	Policy Section
-------------------*/
/*.privacy-policy {
	min-height: 100vh;
	background-color: var(--white);
	position: relative;
	z-index: 1;
	overflow-x: hidden;
	padding-top: 150px;
	padding-left: 40px;
	padding-right: 40px;
	
}*/
.privacy-policy {
	background-color: var(--white);
}

.privacy-policy .policy-item {
	margin-top: 55px;
	padding-left: 20px;
	padding-right: 20px;
}

.privacy-policy .policy-text {
	font-size: 16px;
	font-weight: 400;
	color: var(--black-400);
	text-align: justify;
	padding-top: 20px;
}

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

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

.privacy-policy .policy-text h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--black);
	text-align: justify;
}

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

/*------------------------
	Footer page section
--------------------------*/
.footerpage {
	background-color: var(--main-color);
	margin-top: auto;
}

.footerpage-col p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	line-height: 26px;
	position: absolute;

}


.footerpage .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);
}

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

/* ********************
	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.*/


	.exam-icon-cover-paket {
		margin-bottom: 30px;
	}

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

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

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

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

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

	.section-title h3 {
		font-size: 25px;
	}

	.section-title h4 {
		font-size: 20px;
	}

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

	.section-page-title h3 {
		font-size: 25px;
	}

	.section-page-title h4 {
		font-size: 20px;
	}

	.section-page-subtitle h5 {
		font-size: 20px;
	}
}

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

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

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

	.section-title h3 {
		font-size: 20px;
	}

	.section-title h4 {
		font-size: 20px;
	}

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

	.section-page-title h3 {
		font-size: 20px;
	}

	.section-page-title h4 {
		font-size: 20px;
	}

	.section-page-subtitle h5 {
		font-size: 20px;
	}

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