html,
body {
	height: 100%;
	font-family: "Mulish", sans-serif;
	-webkit-font-smoothing: antialiased;
	background: #fbfbfb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Mulish", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Mulish", sans-serif;
	color: #3d3d3d;
	font-weight: 400;
	line-height: 25px;
	margin: 0 0 15px 0;
}
a,
a:focus,
a:active {
  color: #087a60 !important;
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}
img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

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

.section-title h4,
.section-title h5,
.section-title h1 {
	color: #045542;
	font-weight: 600;
	line-height: 21px;
	text-transform: uppercase;
	padding-left: 20px;
	position: relative;
	font-family: "Oswald", sans-serif;
}


.section-title h4:after,
.section-title h5:after,
.section-title h1:after {
	position: absolute;
	left: 0;
	top: -6px;
	height: 32px;
	width: 4px;
	background: #FF752B;
	content: "";
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
}

.primary-btn span {
	font-size: 18px;
	margin-left: 5px;
	position: relative;
	top: 3px;
}

.site-btn {
	font-size: 13px;
	color: #ffffff;
	background: #FF752B;
	font-weight: 700;
	border: none;
	border-radius: 2px;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}


/*---------------------
  Header
-----------------------*/

.header {
	background: #045542;
}

.header__logo {
	padding: 0;
}

.header__logo a {
	display: inline-block;
}

.header__menu {
	text-align: center;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	position: relative;
	margin-right: 16px;
}

.header__menu ul li.active a {
	background: #FF752B;
	color: #ffffff;
}

.header__menu ul li:hover a {
	color: #ffffff;
}

.header__menu ul li:hover .dropdown {
	top: 62px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:hover .dropdown li a {
	background: transparent;
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 82px;
	width: 200px;
	background: #ffffff;
	text-align: left;
	padding: 5px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
}

.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: #111111;
	font-weight: 500;
	padding: 5px 20px;
}

.header__menu ul li a {
	font-size: 15px;
	color: #b7b7b7;
	display: block;
	font-weight: 700;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	padding: 20px;
}

.header__menu ul li a span {
	position: relative;
	font-size: 17px;
	top: 2px;
}

.header__right {
	text-align: right;
	padding: 20px 0 15px;
}

.header__right a {
	display: inline-block;
	font-size: 18px;
	color: #ffffff;
	margin-right: 30px;
}

.header__right a:last-child {
	margin-right: 0;
}


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

.footer {
	background: #045542;
	padding-top: 60px;
	padding-bottom: 40px;
	position: relative;
}

.page-up {
	position: absolute;
	left: 50%;
	top: -25px;
	margin-left: -25px;
}

.page-up a {
	display: inline-block;
	font-size: 36px;
	color: #ffffff;
	height: 50px;
	width: 50px;
	background: #FF752B;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
}

.page-up a span {
	position: relative;
	top: 2px;
	left: -1px;
}

.footer__nav {
	text-align: center;
}

.footer__nav ul li {
	list-style: none;
	display: inline-block;
	position: relative;
	margin-right: 40px;
}

.footer__nav ul li:last-child {
	margin-right: 0;
}

.footer__nav ul li a {
	font-size: 15px;
	color: #b7b7b7;
	display: block;
	font-weight: 700;
}

.footer__copyright__text {
	color: #b7b7b7;
	margin-bottom: 0;
	text-align: right;
}

.footer__copyright__text a {
	color: #FF752B;
}


@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media only screen and (max-width: 479px) {
	

	.footer__nav ul li {
		margin-right: 10px;
	}

}

.fs-1 {
	font-size: 2.5rem;
	font-weight: 700;
}

.fs-2 {
	font-size: 2rem;
	font-weight: 600;
}

.fs-3 {
	font-size: 1.75rem;
	font-weight: 600;
}

.fs-4 {
	font-size: 1.5rem;
	font-weight: 500;
}

.fs-5 {
	font-size: 1.25rem;
	font-weight: 500;
}

.fs-6 {
	font-size: 1rem;
	font-weight: 500;
}

.fs-7 {
	font-size: 0.75rem;
	font-weight: 500;
}

.fs-8 {
	font-size: 0.5rem;
	font-weight: 500;
}

.soal-card {
	padding: 16px;
	border-bottom: 2px dashed #ccc;
	margin-bottom: 10px;
}

.soal-card:nth-child(even) {
	background-color: #ffffff;
}

.soal-card:nth-child(odd) {
	background-color: #ffffff;
}

.bottom-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	border-top: 1px solid #ddd;
	display: flex;
	justify-content: space-around;
	padding: 8px 0;
	z-index: 1000;
}

.bottom-menu {
	display: none;
}

@media (max-width: 768px) {
	.bottom-menu {
		display: flex;
	}
}

.bottom-menu a {
	text-decoration: none;
	color: #555;
	font-size: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bottom-menu a.active {
	color: #007bff;
}

.bottom-menu i {
	font-size: 20px;
	margin-bottom: 4px;
}

.d-md-none {
	display: block;
}

.d-sm-none {
	display: block;
}

.social-share a {
	display: inline-block;
	margin-right: 8px;
	padding: 8px 12px;
	border-radius: 4px;
	color: white;
	text-decoration: none;
}


.card-body {
	font-size: 1rem;
}

.card .badge {
	font-size: 0.55rem;
	letter-spacing: 0.5px;
}

.badge.custom-badge {
	background-color: #087a60;
	color: #fff;
	border: 1px solid #ddd;
	border-radius: 999px;
	padding: 0.35em 0.75em;
	font-size: 0.55rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.badge.custom-badge.bg-tag {
	background-color: #087a60;
	color: #fff !important;
	border: none !important;
}

.badge.custom-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breadcrumb.bg-tag {
	background-color: #087a60 !important;
	color: #fff !important;
}


.breadcrumb-item {
	color: #fff !important;
}

.breadcrumb-item.a {
	color: #fff !important;
}

.btn-facebook {
	background: #3b5998 !important;
}

/* Facebook */
.btn-twitter {
	background: #1da1f2 !important;
}

/* Twitter */
.btn-linkedin {
	background: #0077b5 !important;
}

/* LinkedIn */
.btn-whatsapp {
	background: #25d366 !important;
}

/* WhatsApp */

.custom-card {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.custom-card:hover {
	box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.badge.custom-badge.font-filter {
	font-size: 0.75rem !important;
}

/* Title link hover */
.custom-card-header h5 a {
	transition: color 0.2s ease;
}

.text-soaldanjawaban {
	color: #087a60 !important;
}

.bg-soaldanjawaban {
	background-color: #087a60 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
	display: inline-block;
	padding-right: .5rem;
	color: #087a60 !important;
	content: "\276F" !important;
}


.card .badge {
	font-size: 0.55rem;
	letter-spacing: 0.5px;
}

.badge.active {
	background-color: #FF752B !important;
	color: #fff !important;
}

.badge.custom-badge {
	background-color: #eef2ff;
	color: #003377;
	border: none !important;
	border-radius: 999px;
	padding: 0.35em 0.75em;
	font-size: 0.55rem;
	font-weight: 500;
	transition: all 0.3s ease;
}


.badge.custom-badge.font-filter {
	font-size: 0.75rem !important;
}


.badge.custom-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-share a {
	display: inline-block;
	margin-right: 8px;
	padding: 8px 12px;
	border-radius: 4px;
	color: white;
	text-decoration: none;
}


.card-body {
	font-size: 1rem;
}

.card .badge {
	font-size: 0.55rem;
	letter-spacing: 0.5px;
}

.badge.custom-badge {
	background-color: #087a60;
	color: #fff;
	border: 1px solid #ddd;
	border-radius: 999px;
	padding: 0.35em 0.75em;
	font-size: 0.55rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.badge.custom-badge.bg-tag {
	background-color: #087a60 !important;
	color: #fff !important;
	border: none !important;
}

.badge.custom-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breadcrumb.bg-tag {
	background-color: #087a60 !important;
	color: #fff !important;
}


.breadcrumb-item {
	color: #fff !important;
}

.breadcrumb-item.a {
	color: #fff !important;
}

.btn-facebook {
	background: #3b5998 !important;
}

/* Facebook */
.btn-twitter {
	background: #1da1f2 !important;
}

/* Twitter */
.btn-linkedin {
	background: #0077b5 !important;
}

/* LinkedIn */
.btn-whatsapp {
	background: #25d366 !important;
}

/* WhatsApp */

.custom-card {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.custom-card:hover {
	box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.badge.custom-badge.font-filter {
	font-size: 0.75rem !important;
}

/* Title link hover */
.custom-card-header h5 a {
	transition: color 0.2s ease;
}

.text-soaldanjawaban {
	color: #087a60 !important;
}

.bg-soaldanjawaban {
	background-color: #087a60 !important;
}

.d-md-none {
	display: block;
}

.d-sm-none {
	display: block;
}

#countdownContainer {
	position: fixed;
	top: 0px;
	/* sesuaikan agar di atas menu footer */
	left: 80%;
	width: 20%;
	background: #343a40;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	font-size: 15px;
	z-index: 9999;
}

.social-share a {
	display: inline-block;
	margin-right: 8px;
	padding: 8px 12px;
	border-radius: 4px;
	color: white;
	text-decoration: none;
}


.card-body {
	font-size: 1rem;
}

.card .badge {
	font-size: 0.55rem;
	letter-spacing: 0.5px;
}

.badge.custom-badge {
	background-color: #087a60;
	color: #fff;
	border: 1px solid #ddd;
	border-radius: 999px;
	padding: 0.35em 0.75em;
	font-size: 0.55rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.badge.custom-badge.bg-tag {
	background-color: #087a60 !important;
	color: #fff !important;
	border: none !important;
}

.badge.custom-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breadcrumb.bg-tag {
	background-color: #087a60 !important;
	color: #fff !important;
}


.breadcrumb-item {
	color: #fff !important;
}

.breadcrumb-item.a {
	color: #fff !important;
}

.btn-facebook {
	background: #3b5998 !important;
}

/* Facebook */
.btn-twitter {
	background: #1da1f2 !important;
}

/* Twitter */
.btn-linkedin {
	background: #0077b5 !important;
}

/* LinkedIn */
.btn-whatsapp {
	background: #25d366 !important;
}

/* WhatsApp */

.custom-card {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.custom-card:hover {
	box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.badge.custom-badge.font-filter {
	font-size: 0.75rem !important;
}

/* Title link hover */
.custom-card-header h5 a {
	transition: color 0.2s ease;
}

.text-soaldanjawaban {
	color: #087a60 !important;
}

.bg-soaldanjawaban {
	background-color: #087a60 !important;
}

.d-md-none {
	display: block;
}

.d-sm-none {
	display: block;
}

.card .ads-wrapper {
  padding: 10px 0;
  text-align: center;
}