/**
* Template Name: ukabima
* Template URL: https://ukabima.id/
* Updated: Nov 15 2024 with Bootstrap v5.3.3
* Author: Jannes Purba
*/

/* Colors */
:root {
	--color-default: #FFFFFF;
	--color-primary: #3DA75C;
	--color-secondary : #2A7C4F;
	--surface-color: #1F1F1F;
	--color-section: #EEEEEE;
	--article-p : #495057;
	--article-top: #6c757d;
}

/* Fonts */
:root {
	--font-primary: "Open Sans", sans-serif;
	--font-secondary: "Lato", sans-serif;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--color-fonf-default);
	background-color: var(--color-default);
	font-family: var(--font-primary);
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: 0.3s;
}

/*a:hover {
	color: color-mix(in srgb, var(--color-secondary), transparent 25%);
	text-decoration: none;
}*/
a:hover {
	color: var(--color-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-secondary);
	font-family: var(--font-primary);
}

p {
	font-size: 13px;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	/*background: #ecf8f0;*/
	background: var(--color-section);
	font-size: 18px;
	height: 40px;
	padding: 0;
}

#topbar .contact-info a {
	line-height: 0;
	color: #444444;
	transition: 0.3s;
}

#topbar .contact-info a:hover {
	color: var(--color-secondary);
}

#topbar .contact-info i {
	color: var(--color-primary);
	line-height: 0;
	margin-right: 5px;
}

#topbar .contact-info .phone-icon {
	margin-left: 15px;
}

#topbar .social-links a {
	color: var(--color-primary);
	padding: 4px 12px;
	display: inline-block;
	line-height: 1px;
	transition: 0.3s;
}

#topbar .social-links a:hover {
	color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: var(--color-default);
	transition: all 0.5s;
	z-index: 997;
	height: 85px;
	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: 70px;
}

.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 20px;
	font-size: 15px;
	font-weight: 700;
	color: var(--surface-color);
	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-secondary);
}

.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;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*#footer {
	margin-top: 20px;
	background: var(--color-default);
	padding: 0 0 20px 0;
	color: #000;
	font-size: 14px;
	box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

#footer .copyright {
	text-align: center;
	padding-top: 20px;
}*/

#footer {
  font-size: 14px;
  background: var(--color-section);
}

#footer .footer-top {
  padding: 30px 0 10px 0;
  background: var(--color-default);
  box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

#footer .footer-top .footer-contact {
  margin-bottom: 10px;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top .footer-links {
  margin-bottom: 10px;
}

#footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-default);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .bank-links img {
	max-width: 90px;
  margin-right: 15px;
  margin-top: 0;
}

#footer .footer-top .social-links a:hover {
  background: var(--color-secondary);
  color: var(--color-default);
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--color-primary);
	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: var(--color-secondary);
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}


.btn-wa {
  position: fixed;
  top: 65%;
  bottom: 35%;
  right: 30px;
  background-color: var(--color-primary);
  color: var(--color-default);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.btn-wa:hover {
  background-color: var(--color-secondary);
  color: var(--color-default);
}

@media (max-width: 768px) {
	.btn-wa {
		width: 60px;
		height: 60px;
		top: 65%;
		bottom: 35%;
		font-size: 30px;
	}
}
/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
#hero {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 0;
}

#hero .hero-waves {
	display: block;
	width: 100%;
	height: 60px;
	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%);
	}
}

.carousel .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;
}

.carousel .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: -15%;
	left: -14%;
	background: rgba(198, 16, 0, 0);
}

.carousel .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);
}

.carousel .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;
}

.carousel .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) {
	.carousel .play-btn {
		width: 64px;
		height: 64px;
		left: calc(50% - 37px);
		top: calc(50% - 37px);
	}

	.carousel .play-btn:before {
		width: 80px;
		height: 80px;
		top: -13%;
		left: -12%;
		border: 4px solid rgb(1, 115, 0);
	}
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,.section {
	color: var(--default-color);
	background-color: var(--background-color);
	overflow: hidden;
	padding: 30px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

.section-bg {
	background-color: var(--color-section);
}

@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-secondary);
}

.section-title h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: var(--color-secondary);
	bottom: 1px;
	left: calc(50% - 60px);
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: var(--color-primary);
	bottom: 0;
	left: calc(50% - 20px);
}

.section-title p {
	padding-bottom: 20px;
	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;
	}
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
padding: 30px 30px;
transition: all ease-in-out 0.4s;
background: #fff;
text-align: center;
}

.services .icon-box .icon {
margin-bottom: 10px;
}

.services .icon-box .icon i {
color: var(--color-primary);
font-size: 36px;
transition: 0.3s;
}

.services .icon-box h4 {
font-weight: 500;
margin-bottom: 15px;
font-size: 18px;
}

.services .icon-box h4 a {
color: #37517e;
transition: ease-in-out 0.3s;
}

.services .icon-box p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
position: relative;
height: 100%;
margin-bottom: 20px;
}

.featured-services .service-item .icon {
margin-right: 20px;
}

.featured-services .service-item .icon i {
color: var(--color-secondary);
font-size: 48px;
transition: 0.3s;
}

.featured-services .service-item .title {
font-weight: 700;
margin-bottom: 10px;
font-size: 20px;
color: var(--color-secondary);
transition: 0.3s;
}

.featured-services .service-item .description {
font-size: 13px;
color: #132848;
margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../../uploads/ebpr-cbs.png") fixed center center;
	background-size: cover;
	padding: 90px 0;
}

.cta h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
}

.cta p {
	font-size: 13px;
	color: var(--color-default);
}

.cta .cta-btn {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 28px;
	border-radius: 4px;
	transition: 0.5s;
	margin-top: 10px;
	border: 2px solid var(--color-default);
	color: var(--color-default);
}

.cta .cta-btn:hover {
	background: var(--color-secondary);
	border-color: var(--color-default);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
	background: var(--color-default);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	padding: 30px;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.recent-posts .post-img {
	max-height: 240px;
	margin: -30px -30px 15px -30px;
	overflow: hidden;
}

.recent-posts .post-category {
	font-size: 13px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin-bottom: 5px;
}

.recent-posts .title {
	font-size: 16px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 10px 0;
}

.recent-posts .title a {
	color: var(--color-secondary);
	transition: 0.3s;
}

.recent-posts .title a:hover {
	color: var(--color-primary);
}

.recent-posts .post-date {
	font-weight: 600;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin-bottom: 0;
}

.cbs-kami .cbs-item i {
	color: var(--color-primary);
}

/*--------------------------------------------------------------
# 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 .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 .call-head {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 5px;
margin-bottom: 10px;
}

.contact .php-email-form .call-head i{
font-size: 32px;
color: var(--color-primary);
/*  background-color: #0d6efd;*/
border: 3px solid var(--color-primary);
border-radius: 50%;
padding: 15px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.contact .php-email-form .call-head h4{
margin: 0;
font-weight: 600;
}

.contact .php-email-form .call-head span{
display: block;
font-size: 13px;
color: #6c757d;
}

.contact .php-email-form .call-item {
	text-align: center;
}

.contact .php-email-form .call-item i {
	color: var(--color-primary);
}

.contact .php-email-form .call-item p,
.contact .php-email-form .call-item p a{
	font-size: 14px;
}

.contact .php-email-form .call-item p a,
.contact .php-email-form .call-item p a:hover {
	color: var(--surface-color);
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
ul.breadcrumb {
	margin-top: 13px;
	padding: 10px 16px;
	list-style: none;
	background-color: var(--color-section);
}

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);
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.sejarah .timeline {
	position: relative;
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
	align-items: center;
}

.sejarah .timeline-item {
	position: relative;
	flex: 0 0 auto;
	width: 277px;
	text-align: center;
	padding: 1rem;
}

.sejarah .timeline-item::before {
	content: '';
	position: absolute;
	top: 40%;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--color-primary);
	z-index: -1;
}

.sejarah .timeline-point {
	width: 20px;
	height: 20px;
	background: var(--color-primary);
	border-radius: 50%;
	margin: 0 auto 0.5rem auto;
	border: 3px solid #fff;
	box-shadow: 0 0 0 4px #0d6efd33;
}

.sejarah .timeline-year {
	font-weight: bold;
	font-size: 1.25rem;
}

.sejarah .timeline-desc {
	font-size: 0.95rem;
	color: #6c757d;
}

@media (max-width: 576px) {
	.sejarah .timeline-item {
		width: 160px;
	}
	.sejarah .timeline-year {
		font-size: 1rem;
	}

	.sejarah .timeline-item::before {
		top: 40%;
	}
}

/*--------------------------------------------------------------
# Our Project
--------------------------------------------------------------*/
.our-project .project-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;
}

.our-project .project-box h4 {
	font-weight: 700;
	font-size: 20px;
}

@media (min-width: 1200px) {
	.our-project .project-box:hover {
		transform: scale(1.1);
	}
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
padding-bottom: 30px;
}

.blog-details .article {
background-color: var(--color-default);
padding: 30px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
margin: -30px -30px 20px -30px;
overflow: hidden;
}

.blog-details .title {
font-size: 2rem;
font-weight: 700;
color: var(--surface-color);
margin-top: 1rem;
margin-bottom: 0.75rem;
line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .blog-details .title {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 576px) {
  .blog-details .title {
    font-size: 1.5rem;
  }
}

.blog-details .meta-top {
display: flex;
align-items: center;
font-size: 0.875rem;
color: var(--article-top);
margin-bottom: 1rem;
}

.blog-details .meta-top ul {
display: flex;
flex-wrap: wrap;
list-style: none;
align-items: center;
padding: 0;
margin: 0;
}

.blog-details .meta-top i {
margin-right: 0.5rem;
color: var(--article-top);
}

.blog-details .content {
margin-top: 20px;
margin-bottom: 15px;
}

.blog-details .content p {
font-size: 1.05rem;
line-height: 1.75;
color: var(--article-p);
margin-bottom: 2px;
text-align: justify;
}

.blog-details .content h4 {
font-size: 1.4rem;
font-weight: 600;
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--color-secondary);
}
.blog-details .content h5 {
font-size: 1.2rem;
font-weight: 600;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
color: var(--surface-color);
}

.blog-details .content ul {
list-style: none;
padding-left: 0;
}

.blog-details .content ul li {
padding: 0 0 2px 26px;
position: relative;
color: var(--article-p);
}

.blog-details .content ul i {
position: absolute;
font-size: 20px;
left: 0;
top: -5px;
color: var(--article-p);
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--surface-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--surface-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom .cats {
	color: color-mix(in srgb, var(--surface-color), transparent 40%);
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 12px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 12px;
  color: color-mix(in srgb, var(--surface-color), transparent 40%);
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.visi-misi .visi {
      border-left: 5px solid var(--color-primary);
      padding-left: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    .visi-misi .misi {
    	border-left: 5px solid var(--color-primary);
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    .visi-misi .misi ul {
      padding-left: 0;
      list-style: none;
    }

    .visi-misi .misi ul li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px;
      transition: 0.3s;
      font-size: 13px;
    }

    .visi-misi .misi ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: bold;
    }