/**
* Template Name: ukabima
* Template URL: https://ukabima.id/
* Updated: Nov 15 2024 with Bootstrap v5.3.3
* Author: Jannes Purba
*/

/* Colors */
:root {
	--background-color: #ffffff;
	--color-default: #ffffff;
	--default-color: #1a1f24;
	--color-primary: #4eb569;
	--surface-color: #ffffff;
	--color-fonf-default : #0b0d0f;
}

/* Fonts */
:root {
	--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "Amatic SC", sans-serif;
	--font-secondary: "Inter", sans-serif;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--color-fonf-default);
	background-color: var(--color-default);
	font-family: var(--font-default);
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--color-primary), transparent 25%);
	text-decoration: none;
}

.color-primary {
	color: #4eb569;
	font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-primary);
	font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	background: #f2f2f2;
	font-size: 15px;
	height: 40px;
	padding: 0;
}

#topbar .contact-info a {
	line-height: 0;
	color: #444444;
	transition: 0.3s;
}

#topbar .contact-info a:hover {
	color: #5cb874;
}

#topbar .contact-info i {
	color: #5cb874;
	line-height: 0;
	margin-right: 5px;
}

#topbar .contact-info .phone-icon {
	margin-left: 15px;
}

#topbar .social-links a {
	color: #5cb874;
	padding: 4px 12px;
	display: inline-block;
	line-height: 1px;
	transition: 0.3s;
}

#topbar .social-links a:hover {
	color: #5cb874;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	height: 80px;
	box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

#header.header-scrolled {
	box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#header .logo a {
	color: var(--accent-color);
}

#header .logo img {
	max-height: 60px;
}

.scrolled-offset {
	margin-top: 70px;
}

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 15px;
	font-weight: 500;
	color: #000000;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: var(--color-primary);
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	text-transform: none;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #5cb874;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #222222;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
.mobile-nav-toggle {
	display: block;
}

.navbar ul {
	display: none;
}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(9, 9, 9, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #5cb874;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #5cb874;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,.section {
	color: var(--default-color);
	background-color: var(--background-color);
	overflow: hidden;
	padding: 50px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

.section-bg {
	background-color: #eee;
}

@media (max-width: 1199px) {
	section,.section {
		scroll-margin-top: 66px;
	}
}

.section-title {
	text-align: center;
	padding-bottom: 10px;
}

.section-title h2 {
	font-size: 28px;
	font-weight: bold;
	/*  text-transform: uppercase;*/
	margin-bottom: 20px;
	padding-bottom: 12px;
	position: relative;
	color: var(--color-primary);
}

.section-title h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #5cb874;
	bottom: 0;
	left: calc(50% - 20px);
}

.section-title p {
	margin-bottom: 0;
	font-size: 13px;
	font-family: var(--font-default);
}

@media (max-width: 640px) and (max-width: 768px) {
	.section-title h2 {
		font-size: 22px;
	}
}

@media (max-width: 575px) {
	.section-title h2 {
		font-size: 20px;
	}
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero .hero-waves {
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 640px), screen and (max-width: 575px), screen and (max-width: 768px) {
	#hero .hero-waves {
	  height: 25px;
	}
}

#hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

#hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

#hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

#hero .myCarousel .myCarousel-box .play-btn {
	width: 114px;
	height: 114px;
	background: radial-gradient(rgb(0, 77, 0) 50%, rgba(0, 128, 0, 0.4) 52%);
	border-radius: 50%;
	display: block;
	position: absolute;
	left: calc(50% - 57px);
	top: calc(50% - 57px);
	overflow: hidden;
}

#hero .myCarousel .myCarousel-box .play-btn:before {
	content: "";
	position: absolute;
	width: 146px;
	height: 146px;
	animation-delay: 0s;
	animation: pulsate-btn 2s;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgb(0, 77, 0, 0.8);
	top: -14%;
	left: -14%;
	background: rgba(198, 16, 0, 0);
}

#hero .myCarousel .myCarousel-box .play-btn:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .myCarousel .myCarousel-box .play-btn:hover:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	animation: none;
	border-radius: 0;
}

#hero .myCarousel .myCarousel-box .play-btn:hover:after {
	border-left: 15px solid rgb(0, 77, 0);
	transform: scale(20);
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@media screen and (max-width: 640px), screen and (max-width: 575px), screen and (max-width: 768px) {
	#hero .myCarousel .myCarousel-box .play-btn {
		width: 64px;
		height: 64px;
		left: calc(50% - 37px);
		top: calc(50% - 37px);
	}

	#hero .myCarousel .myCarousel-box .play-btn:before {
		width: 80px;
		height: 80px;
		top: -13%;
		left: -13%;
		border: 4px solid rgb(1, 115, 0);
	}
}


/*--------------------------------------------------------------
# Categories
--------------------------------------------------------------*/
.pelatihan .pelatihan-box {
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 15px;
	border-radius: 5px;
	background: #fff;
	transition: 0.5s;
	height: 100%;
}

.pelatihan .pelatihan-box .pelatihan-info h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 18px;
	color: var(--color-primary);
	text-align: center;
}

.pelatihan .pelatihan-box .pelatihan-info p {
	font-size: 13px;
	text-align: justify;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #f2f2f2;
	padding: 0 0 10px 0;
	color: #000;
	font-size: 14px;
	box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

#footer .footer-top {
	background: var(--color-default);
	padding: 20px 0 0 0;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 5px;
	color: #000;
}

#footer .footer-top {
	margin-bottom: 10px;
}

#footer .footer-top .footer-links h4{
	color: #000;
	font-size: 16px;
	font-weight: 700;
}

#footer .footer-top .footer-name ul {
	list-style: none;
	padding: 0;
}

#footer .footer-top .footer-name ul li{
	padding: 0 0 5px 26px;
	position: relative;
}

#footer .footer-top .footer-name ul li a{
	color: #000;
}

#footer .footer-top .footer-name ul i {
	position: absolute;
	font-size: 16px;
	left: 0;
	top: 0;
	color: var(--color-primary);
}

#footer .footer-top .footer-cert img {
	width: 140px;
}

#footer .footer-top .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--color-primary);
	font-size: 16px;
	color: var(--color-primary);
	margin-right: 10px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	color: #fff;
	background: var(--color-primary);
}

#footer .footer-top .footer-name, #footer .footer-top .footer-cert, #footer .footer-top .social-links {
	margin-bottom: 10px;
}

#footer .copyright {
	text-align: center;
	padding-top: 1px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #5cb874;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: all 0.4s;
	}

.back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #78c48c;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
ul.breadcrumb {
	margin-top: 13px;
	padding: 10px 16px;
	list-style: none;
	background-color: #eee;
}

ul.breadcrumb li {
	display: inline;
	font-size: 14px;
}

ul.breadcrumb li+li:before {
	padding: 8px;
	color: black;
	content: "/\00a0";
}

ul.breadcrumb li a {
	color: var(--color-primary);
	font-weight: bold;
	text-decoration: none;
}

ul.breadcrumb li a:hover {
	color: var(--color-primary);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .about-img img {
	border-radius: 16px;
	overflow: hidden;
}

.about .about-info h4 {
	font-weight: 300;
	font-size: 20px;
	font-family: var(--font-secondary);
	text-align: center;
}

@media (max-width: 575px) {
	.about .about-info h4 {
		font-size: 22px;
	}
}

@media (max-width: 640px) {
	.about .about-info h4 {
		font-size: 22px;
	}
}

.about .about-info p {
	font-size: 12px;
	text-align: justify;
}

/*--------------------------------------------------------------
# About List
--------------------------------------------------------------*/
.why-us .why-box {
padding: 30px;
background: var(--color-primary);
color: #fff;
}

.why-us .why-box h3 {
	color: #fff;
font-weight: 700;
font-size: 18px;
margin-bottom: 10px;
text-align: center;
}

.why-us .why-box p {
	font-size: 13px;
}

.why-us .why-box ul {
list-style: none;
padding: 0;
margin: 0;
}

.why-us .why-box ul li{
padding: 3px 0;
display: flex;
font-size: 13px;
}

.why-us .icon-box {
text-align: center;
background: #fff;
padding: 40px 30px;
width: 100%;
height: 100%;
border: 1px solid rgba(55, 55, 63, 0.1);
transition: 0.3s;
}

.why-us .icon-box i {
color: var(--color-default);
margin-bottom: 15px;
font-size: 32px;
background: var(--color-primary);
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
width: 64px;
height: 64px;
}

.why-us .icon-box h3, .why-us .produk-box h3 {
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 18px;
	color: #000;
	cursor: pointer;
}

.why-us .icon-box p, .why-us .produk-box p {
	line-height: 24px;
	font-size: 13px;
	margin-bottom: 0;
}

.why-us .icon-box:hover i {
	background: var(--color-default);
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
}

.why-us .icon-box:hover h3 {
	color: var(--color-primary);
}

@media (max-width: 575px) and (max-width: 640px) {
	.bidang .bidang-box h3 {
		font-size: 14px;
	}
	
	.bidang .bidang-box p {
		font-size: 13px;
	}
}

.why-us .produk-box {
text-align: center;
	background: #fff;
	padding: 20px 20px;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.5);
	transition: 0.3s;
}

@media (min-width: 1200px) {
	.why-us .produk-box:hover {
		transform: scale(1.1);
	}
}

/*--------------------------------------------------------------
# Groups
--------------------------------------------------------------*/
/*.groups .group-item {
	background: #fff;
	box-sizing: content-box;
	padding: 15px 15px 0 15px;
	margin: 8px 8px;
	text-align: center;
	min-height: 75px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
}

.groups .group-item .group-img {
	width: 310px;
	margin: 0 auto;
}*/

.groups {
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/20250202_031714.png") fixed center center;
	background-size: cover;
	padding: 55px 0;
}

.groups .groups-carousel,
.groups .groups-slider {
	overflow: hidden;
}

.groups h2,.groups p {
color: #fff;
}

.groups .group-item {
	background: #fff;
	box-sizing: content-box;
	padding: 15px 15px 0 15px;
	margin: 8px 8px;
	text-align: center;
	min-height: 75px;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
}

.groups .group-item .group-img {
	width: 310px;
	margin: 0 auto;
}

.groups .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.groups .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid var(--color-primary);
}

.groups .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
	border: 1px solid var(--color-default);
}

/*--------------------------------------------------------------
# BPR Group
--------------------------------------------------------------*/
.group-list .group-box+.group-box {
	margin-top: 30px;
}

@media (max-width: 640px) {
	.group-list .group-box+.group-box {
		margin-top: 30px;
	}
}

.group-list .group-box, .merger .merger-box {
	padding: 30px 30px;
	box-shadow: 0 3px 10px -2px rgb(38, 64, 38);
	background: #fff;
	height: 100%;
	border-top: 4px solid #fff;
	border-radius: 5px;
}

.group-list .group-box h3 {
	font-weight: 600;
	font-size: 22px;
	color: var(--color-primary);
	text-align: center;
}

@media (max-width: 640px) and (max-width: 768px) {
	.group-list .group-box h3 {
		font-size: 20px;
	}
}

@media (max-width: 575px) {
	.group-list .group-box h3 {
		font-size: 20px;
	}
}

.group-list .group-box p {
	text-align: justify;
	font-family: var(--font-page);
	font-size: 12px;
}

.group-list .group-box p:last-child {
	margin-bottom: 0;
}

.group-list .group-box .readmore {
	display: flex;
	align-items: center;
	transition: 0.3s;
	font-weight: 700;
	font-size: 12px;
}

.group-list .group-name .readmore i {
	margin-left: 8px;
}

.group-name .readmore:hover {
	color: #00802b;
}


@media (min-width: 1280px) and (max-width: 1366px) {
	.merger .merger-box p span em {
		font-style: normal;
		position: relative;
		z-index: 1;
	}

	.merger .merger-box p span em:after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 2px;
		height: 13px;
		background: color-mix(in srgb, var(--color-primary), transparent 30%);
		z-index: -1;
	}
}

.merger .merger-box p span em {
	font-style: normal;
	position: relative;
	z-index: 1;
}

@media (min-width: 992px) and (max-width: 1279px) {
	.merger .merger-box p span em:after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 2px;
		height: 13px;
		background: color-mix(in srgb, var(--color-primary), transparent 30%);
		z-index: -1;
	}
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	border-top: 3px solid var(--color-primary);
	border-bottom: 3px solid var(--color-primary);
	padding: 30px;
	background: #fff;
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
	font-size: 20px;
	color: #eee;
	float: left;
	width: 44px;
	height: 44px;
	background: var(--color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--accent-color);
}

.contact .info p {
	padding: 0 0 10px 60px;
	margin-bottom: 20px;
	font-size: 14px;
	color: var(--accent-color);
}

.contact .php-email-form {
	width: 100%;
	border-top: 3px solid var(--color-primary);
	border-bottom: 3px solid var(--color-primary);
	padding: 30px;
	background: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form label {
	padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--color-primary);
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
	background: var(--color-primary);
	border: 0;
	padding: 12px 34px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

@media (max-width: 640px) and (max-width: 768px) {
	.contact .php-email-form label {
		font-size: 14px;
	}
	.contact .php-email-form input,
	.contact .php-email-form textarea {
		font-size: 12px;
	}

	.contact .php-email-form input {
		height: 34px;
	}

	.contact .php-email-form button[type=submit] {
		padding: 10px 24px;
		font-size: 13px;
	}
}

@media (max-width: 575px) {
	.contact .php-email-form label {
		font-size: 14px;
	}
	.contact .php-email-form input,
	.contact .php-email-form textarea {
		font-size: 12px;
	}

	.contact .php-email-form input {
		height: 34px;
	}

	.contact .php-email-form button[type=submit] {
		padding: 10px 24px;
		font-size: 13px;
	}
}

.informasi div.informasi-item {
	overflow: auto;
	white-space: nowrap;
	padding: 10px;
}

.informasi div.informasi-item img {
	padding: -1px;
}

.contoh {
position: relative;
max-width: 600px; /* Maximum width */
margin: 0 auto; /* Center it */
}

.contoh .content {
position: absolute; /* Position the background text */
width: 600px; /* Maximum width */
height: 577px;
bottom: 50px; /* At the bottom. Use top:0 to append it to the top */
background: rgb(0, 0, 0); /* Fallback color */
background: rgba(0, 0, 0, 0.6); /* Black background with 0.5 opacity */
color: #f1f1f1; /* Grey text */
width: 96%; /* Full width */
padding: 20px; /* Some padding */
}

.contoh .content .content-text {
	padding-top: 70px;
}

.contoh .content h4, .contoh .content .misi h4 {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.contoh .content p, .contoh .content .misi p {
	font-size: 12px;
	text-align: justify;
	font-family: var(--font-default);
}