/**
* Template Name: Green - v4.6.0
* Template URL: https://bootstrapmade.com/green-free-one-page-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}

a {
	text-decoration: none;
	color: #9C3D8F;
}

a:hover {
	color: #80c792;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #9C3D8F;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	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;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 105px;
	z-index: 997;
	transition: all 0.5s ease-in-out;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}
#header .logo h1 {
	font-size: 28px;
	margin: 0;
	line-height: 0;
	font-weight: 600;
	letter-spacing: 1px;
}
#header .logo h1 a,
#header .logo h1 a:hover {
	color: #3c4133;
	text-decoration: none;
}
#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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-family: "Raleway", sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #565e49;
	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: #9C3D8F;
}
.navbar .getstarted,
.navbar .getstarted:focus {
	background: #9C3D8F;
	padding: 8px 25px;
	margin-left: 30px;
	border-radius: 50px;
	color: #fff;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #9fc658;
}
.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 28px;
	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;
	font-size: 15px;
	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: #9C3D8F;
}
.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: #3c4133;
	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(34, 36, 29, 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: #3c4133;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
	color: #9C3D8F;
}
.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: #9C3D8F;
}
.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 92%;
	height: 80vh;

	overflow: hidden;
	position: relative;
	border-radius: 25px;
	top: 150px;

	margin-bottom: 100px;
}
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;

	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
#hero .carousel-item::before {
	content: "";
}
#hero .carousel-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 50px;
	right: 50px;
}
#hero .container {
	text-align: center;
}
#hero h2 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 48px;
	font-weight: 700;
}
#hero p {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	margin: 0 auto 30px auto;
	color: #fff;
}
#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
	opacity: 1;
	transition: 0.5s;
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background: none;
	font-size: 30px;
	line-height: 0;
	width: auto;
	height: auto;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.5);
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
	cursor: pointer;
	background: #fff;
	overflow: hidden;
	border: 0;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: 0.6;
	transition: 0.3s;
}
#hero .carousel-indicators li.active {
	opacity: 1;
	background: #9C3D8F;
}
#hero .btn-get-started {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 14px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background: #9C3D8F;
}
#hero .btn-get-started:hover {
	background: #6ec083;
}

@media (max-width: 992px) {
	#hero {
		width: 100%;
		height: 20vh;
	}
	#hero .carousel-container {
		top: 50px;
		width: 100%;
		height: 30vh;
	}
}

@media (max-width: 640px) {
	#hero {
		width: 100%;
		height: 30vh;
	}
	#hero .carousel-container {
		top: 50px;
		width: 100%;
		height: 30vh;
	}
}

@media (max-width: 768px) {
	#hero h2 {
		font-size: 28px;
	}
}
@media (min-width: 1024px) {
	#hero .carousel-control-prev,
	#hero .carousel-control-next {
		width: 5%;
	}
}
@media (max-height: 500px) {
	#hero {
		width: 100%;
		height: 30vh;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
}

.section-bg {
	background-color: #f8fcf9;
}

.section-title {
	text-align: left;
	padding-bottom: 0px;
}
.section-title h2 {
	color: #9C3D8F;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 10px;
	padding-bottom: 10px;
	position: relative;
}

.section-title p {
	margin-bottom: 0;
	font-size: 14px;
	color: #919191;
}

/*--------------------------------------------------------------
# Programs
--------------------------------------------------------------*/

.Programs .Program-item {
	border-radius: 25px;
	border: 1px solid #eef0ef;
	margin-bottom: 15px;
}
.Programs .Program-content {
	padding: 15px;
	border-radius: 25px;
}

.gambarbulat {
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	max-width: 100%;
	height: 280px;
}

.Programs .Program-content h3 {
	font-weight: 700;
	font-size: 20px;
}
.Programs .Program-content h3 a {
	color: #37423b;
	transition: 0.3s;
}
.Programs .Program-content h3 a:hover {
	color: #5fcf80;
}
.Programs .Program-content p {
	font-size: 14px;
	color: #777777;
}
.Programs .Program-content h4 {
	font-size: 14px;

	padding: 7px 14px;
	color: rgb(39, 38, 38);
	margin: 0;
}
.Programs .Program-content .price {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
	color: #37423b;
}
.Programs .trainer {
	padding-top: 15px;
	border-top: 1px solid #eef0ef;
}
.Programs .trainer .trainer-profile img {
	max-width: 50px;
	border-radius: 50px;
}
.Programs .trainer .trainer-profile span {
	padding-left: 10px;
	font-weight: 600;
	font-size: 16px;
	color: #5a6c60;
}
.Programs .trainer .trainer-rank {
	font-size: 18px;
	color: #657a6d;
}

.btn-get-started {
	width: 250px;

	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	letter-spacing: 1px;
	display: inline-block;
	padding: 14px 32px;
	border-radius: 7px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background: #9C3D8F;
}
.btn-get-started:hover {
	background: #6ec083;
}

/*--------------------------------------------------------------
# Artikel
--------------------------------------------------------------*/
.artikel .artikel-carousel,
.artikel .artikel-slider {
	overflow: hidden;
}
.artikel .testimonial-item {
	border-radius: 25px;
	box-sizing: content-box;
	padding: 30px 30px 0 30px;
	margin: 30px 15px;
	text-align: left;
	min-height: 350px;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
	background: #fff;
}
.artikel .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 25px;
	border: 4px solid #fff;
	margin: 0 auto;
}
.artikel .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #111;
}
.artikel .testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0;
}
.artikel .testimonial-item .quote-icon-left,
.artikel .testimonial-item .quote-icon-right {
	color: white;
	font-size: 26px;
}
.artikel .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}
.artikel .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}
.artikel .testimonial-item p {
	margin: 0 auto 16px auto;
}
.artikel .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.artikel .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #3b4ef8;
}
.artikel .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #3b4ef8;
}

.swiper-wrapper {
	height: 70%;
}

/*--------------------------------------------------------------
# Tentang
--------------------------------------------------------------*/
.tentang .content {
	background-color: #f6f9ff;
	padding: 40px;
}

.gambarbulat1 {
	border-radius: 25px;
	max-width: 100%;
	height: auto;
}

.tentang h3 {
	font-size: 14px;
	font-weight: 700;
	color: #9C3D8F;
	text-transform: uppercase;
}
.tentang h2 {
	font-size: 24px;
	font-weight: 700;
	color: #9C3D8F;
}
.tentang p {
	margin: 15px 0 30px 0;
	line-height: 24px;
}
.tentang .btn-read-more {
	line-height: 0;
	padding: 15px 40px;
	border-radius: 4px;
	transition: 0.5s;
	color: #fff;
	background: #9C3D8F;
	box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}
.tentang .btn-read-more span {
	font-family: "Nunito", sans-serif;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
}
.tentang .btn-read-more i {
	margin-left: 5px;
	font-size: 18px;
	transition: 0.3s;
}
.tentang .btn-read-more:hover i {
	transform: translateX(5px);
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
	padding: 0;
}
.why-us .row {
	overflow: hidden;
}
.why-us .content-item {
	padding: 40px;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin: -1px;
}
.why-us .content-item span {
	display: block;
	font-size: 24px;
	font-weight: 400;
	color: #6ec083;
}
.why-us .content-item h4 {
	font-size: 26px;
	font-weight: 300;
	padding: 0;
	margin: 20px 0;
}
.why-us .content-item p {
	color: #aaaaaa;
	font-size: 15px;
	margin: 0;
	padding: 0;
}
@media (max-width: 768px) {
	.why-us .content-item {
		padding: 40px 0;
	}
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
	opacity: 0.5;
	transition: 0.3s;
}
.clients .swiper-slide img:hover {
	opacity: 1;
}
.clients .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #9C3D8F;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #9C3D8F;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	text-align: center;
	padding: 70px 20px 80px 20px;
	transition: all ease-in-out 0.3s;
	background: #fff;
	box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
.services .icon-box .icon {
	margin: 0 auto;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: ease-in-out 0.3s;
	position: relative;
}
.services .icon-box .icon i {
	font-size: 36px;
	transition: 0.5s;
	position: relative;
}
.services .icon-box .icon svg {
	position: absolute;
	top: 0;
	left: 0;
}
.services .icon-box .icon svg path {
	transition: 0.5s;
	fill: #f5f5f5;
}
.services .icon-box h4 {
	font-weight: 600;
	margin: 10px 0 15px 0;
	font-size: 22px;
}
.services .icon-box h4 a {
	color: #222222;
	transition: ease-in-out 0.3s;
}
.services .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}
.services .icon-box:hover {
	border-color: #fff;
	box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
	color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
	color: #fff;
}
.services .iconbox-blue:hover .icon path {
	fill: #47aeff;
}
.services .iconbox-orange i {
	color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
	color: #fff;
}
.services .iconbox-orange:hover .icon path {
	fill: #ffa76e;
}
.services .iconbox-pink i {
	color: #e80368;
}
.services .iconbox-pink:hover .icon i {
	color: #fff;
}
.services .iconbox-pink:hover .icon path {
	fill: #e80368;
}
.services .iconbox-yellow i {
	color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
	color: #fff;
}
.services .iconbox-yellow:hover .icon path {
	fill: #ffbb2c;
}
.services .iconbox-red i {
	color: #ff5828;
}
.services .iconbox-red:hover .icon i {
	color: #fff;
}
.services .iconbox-red:hover .icon path {
	fill: #ff5828;
}
.services .iconbox-teal i {
	color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
	color: #fff;
}
.services .iconbox-teal:hover .icon path {
	fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
	background: #9C3D8F;
	padding: 80px 0;
}
.cta h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
}
.cta p {
	color: #fff;
}
.cta .cta-btn {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 2px;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 4px;
}
.cta .cta-btn:hover {
	background: #fff;
	color: #9C3D8F;
}
@media (max-width: 1024px) {
	.cta {
		background-attachment: scroll;
	}
}
@media (min-width: 769px) {
	.cta .cta-btn-container {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
}

/* Style the buttons */
.opsi {
	border: none;
	outline: none;
	padding: 10px 16px;
	background-color: #f1f1f1;
	cursor: pointer;
	font-size: 18px;
}

/*--------------------------------------------------------------
# Donasi Details
--------------------------------------------------------------*/
.donasi-details .donasi-item {
	width: 60vh;
	background-color: white;

	border-radius: 25px;
	border: 2px solid #eef0ef;

	/* position: fixed; */
}
.donasi-details .donasi-content {
	padding: 15px;
	border-radius: 25px;
}

.progress {
	vertical-align: baseline;

	height: 10px;
	width: 100%;
}

.progress-bar {
	vertical-align: baseline;
	width: 80%;
	height: 10px;
}

.donasi-details h3 {
	font-size: 24px;
	margin: 30px 0 0 0;
	font-weight: 700;
	position: relative;

	left: 10px;
}

.gambarbulat2 {
	width: 100%;
	height: 50vh;
	border-radius: 25px;
}

.donasi-details p1 {
	font-size: 12px;
	font-family: "Poppins", sans-serif;
	padding-left: 10px;
	color: #807e7e;
}

.donasi-details p2 {
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 15px;
	padding-left: 10px;
	padding-right: 0px;
	color: #807e7e;
}

.donasi-details h6 {
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 20px;
	padding-right: 20px;
	color: #000000;
}

.donasi-details h8 {
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	padding-right: 10px;
	color: #000000;
}

.donasi-details p3 {
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;

	color: #807e7e;
}

.donasi-details h4 {
	font-size: 22px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 20px;
	padding-left: 10px;
	padding-right: 70px;
	color: #9C3D8F;
}
.donasi-details .donasi-info {
	background: #f6f7f6;
	padding: 10px 15px;
	margin-bottom: 15px;
}
.donasi-details .donasi-info h5 {
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	font-family: "Poppins", sans-serif;
}
.donasi-details .donasi-info p {
	margin: 0;
	font-weight: 600;
	left: 10px;
}
.donasi-details .donasi-info a {
	color: #657a6d;
}

/*--------------------------------------------------------------
# Donasi Details Tabs
--------------------------------------------------------------*/
.Donasi-details-tabs {
	overflow: hidden;
	padding-top: 0;
}
.Donasi-details-tabs .nav-tabs {
	border: 0;
}
.Donasi-details-tabs .nav-link {
	border: 0;
	padding: 12px 15px 12px 0;
	transition: 0.3s;
	color: #37423b;
	border-radius: 0;
	border-right: 2px solid #e2e7e4;
	font-weight: 600;
	font-size: 15px;
}
.Donasi-details-tabs .nav-link:hover {
	color: #5fcf80;
}
.Donasi-details-tabs .nav-link.active {
	color: #5fcf80;
	border-color: #5fcf80;
}
.Donasi-details-tabs .tab-pane.active {
	-webkit-animation: fadeIn 0.5s ease-out;
	animation: fadeIn 0.5s ease-out;
}
.Donasi-details-tabs .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #37423b;
}
.Donasi-details-tabs .details p {
	color: #777777;
}
.Donasi-details-tabs .details p:last-child {
	margin-bottom: 0;
}
@media (max-width: 992px) {
	.Donasi-details-tabs .nav-link {
		border: 0;
		padding: 15px;
	}
	.Donasi-details-tabs .nav-link.active {
		color: #fff;
		background: #5fcf80;
	}
}

.gambarbulat3 {
	width: 30px;
	height: 30px;
	border-radius: 100px;
}

/*--------------------------------------------------------------
# form-donasi
--------------------------------------------------------------*/
.form-donasi .info-wrap {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	border-radius: 25px;
}
.form-donasi .info {
	background: #fff;
}
.form-donasi .info i {
	font-size: 20px;
	color: #1bbd36;
	float: left;
	width: 44px;
	height: 44px;
	border: 1px solid #1bbd36;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s;
}
.form-donasi .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 0px;
	color: #111;
}
.form-donasi .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #444444;
}
.form-donasi .info:hover i {
	background: #1bbd36;
	color: #fff;
}

.form-donasi h8 {
	font-size: 36px;
	font-family: Arial, Helvetica, sans-serif;
	padding-right: 10px;
	color: #000000;
}

.form-donasi .php-email-form {
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
	padding: 30px;
	background: #fff;
	border-radius: 25px;
}
.form-donasi .php-email-form .form-group {
	padding-bottom: 8px;
}
.form-donasi .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}
.form-donasi .php-email-form .error-message br + br {
	margin-top: 25px;
}
.form-donasi .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}
.form-donasi .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}
.form-donasi .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}
.form-donasi .php-email-form input,
.form-donasi .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}
.form-donasi .php-email-form input:focus,
.form-donasi .php-email-form textarea:focus {
	border-color: #1bbd36;
}
.form-donasi .php-email-form input {
	height: 44px;
}
.form-donasi .php-email-form textarea {
	padding: 10px 12px;
}
.form-donasi .php-email-form button[type="submit"] {
	background: #1bbd36;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
	width: 100%;
}

.form-donasi .php-email-form button[type="copy"] {
	background: #1bbd36;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}

.form-donasi .php-email-form button[type="submit"] a {
	border: 0;

	color: #fff;
	width: 100%;
}

.form-donasi .php-email-form button[type="submit"]:hover {
	background: #2ae149;
}
@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.form-donasi .page-link {
	margin: 0 0.2rem;
	border-color: grey;
	border-radius: 10px;
	padding: 0.5rem 0.8rem;
	width: 100%;
	color: #000000;
}
.form-donasi .page-link:hover,
.pagination-a .pagination .page-link:active,
.pagination-a .pagination .page-link:focus {
	background-color: #2eca6a;
}
.form-donasi .page-link span {
	font-size: 1.2rem;
}

.form-donasi .page-item:last-child .page-link {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.form-donasi .page-item:first-child .page-link {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.form-donasi .page-item.disabled .page-link {
	padding: 0.4rem 0.9rem;
	color: #555555;
}
.form-donasi .page-item.active .page-link {
	background-color: #2eca6a;
}

/* Solid border */
.solidborder {
	margin-top: 10px;
	margin-bottom: 10px;
	border-top: 1px solid #bbb;
}

.gambar1 {
	width: 150px;
	height: auto;
}

.gambarbulat4 {
	border-radius: 25px;
	max-width: 100%;
	height: 30vh;
}

.borderdotted {
	border-style: dotted;
	border-color: #777777;
}

/*--------------------------------------------------------------
# galeri
--------------------------------------------------------------*/
.galeri {
	padding: 60px 0;
	border-radius: 25px;
	border-color: #1bbd36;
}
.galeri #galeri-flters {
	padding: 0;
	margin: 0 0 35px 0;
	list-style: none;
	text-align: center;
}
.galeri #galeri-flters li {
	cursor: pointer;
	margin: 0 15px 15px 0;
	display: inline-block;
	padding: 10px 20px;
	font-size: 12px;
	line-height: 20px;
	color: #444444;
	border-radius: 4px;
	text-transform: uppercase;
	background: #fff;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}
.galeri #galeri-flters li:hover,
.galeri #galeri-flters li.filter-active {
	background: #3498db;
	color: #fff;
}
.galeri #galeri-flters li:last-child {
	margin-right: 0;
}
.galeri .galeri-wrap {
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
	border-radius: 25px;
	border-color: #1bbd36;
}
.galeri .galeri-wrap:hover {
	box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
.galeri .galeri-item {
	position: relative;
	height: 360px;
	overflow: hidden;
	border-radius: 25px;
	border-color: #1bbd36;
}
.galeri .galeri-item figure {
	background: #000;
	overflow: hidden;
	height: 240px;
	position: relative;
	border-radius: 4px 4px 0 0;
	margin: 0;
	border-radius: 25px;
	border-color: #1bbd36;
}
.galeri .galeri-item figure:hover img {
	opacity: 0.4;
	transition: 0.4s;
}
.galeri .galeri-item figure .link-preview,
.galeri .galeri-item figure .link-details {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	line-height: 0;
	text-align: center;
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 50%;
	transition: all 0.2s linear;
	overflow: hidden;
	font-size: 20px;
	border-radius: 25px;
}
.galeri .galeri-item figure .link-preview i,
.galeri .galeri-item figure .link-details i {
	color: #384046;
	line-height: 0;
}
.galeri .galeri-item figure .link-preview:hover,
.galeri .galeri-item figure .link-details:hover {
	background: #3498db;
}
.galeri .galeri-item figure .link-preview:hover i,
.galeri .galeri-item figure .link-details:hover i {
	color: #fff;
}
.galeri .galeri-item figure .link-preview {
	left: 45%;
	top: calc(50% - 18px);
}
.galeri .galeri-item figure .link-details {
	right: calc(50% - 38px);
	top: calc(50% - 18px);
}
.galeri .galeri-item figure:hover .link-preview {
	opacity: 1;
	left: 45%;
}
.galeri .galeri-item figure:hover .link-details {
	opacity: 1;
	right: calc(50% - 44px);
}
.galeri .galeri-item .galeri-info {
	background: #fff;
	text-align: center;
	padding: 30px;
	height: 90px;
	border-radius: 0 0 3px 3px;
	border-radius: 25px;
}
.galeri .galeri-item .galeri-info h4 {
	font-size: 18px;
	line-height: 1px;
	font-weight: 700;
	margin-bottom: 0px;
	padding-bottom: 0;
}
.galeri .galeri-item .galeri-info h4 a {
	color: #333;
}
.galeri .galeri-item .galeri-info h4 a:hover {
	color: #3498db;
}
.galeri .galeri-item .galeri-info p {
	padding: 0;
	margin: 0;
	color: #b8b8b8;
	font-weight: 500;
	font-size: 14px;
	/* text-transform: uppercase; */
	margin-top: 10px;
}

/*--------------------------------------------------------------
# galeri Details
--------------------------------------------------------------*/
.galeri-details {
	padding-top: 0;
}
.galeri-details .galeri-details-slider img {
	width: 100%;
}
.galeri-details .galeri-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.galeri-details
	.galeri-details-slider
	.swiper-pagination
	.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #3498db;
}
.galeri-details
	.galeri-details-slider
	.swiper-pagination
	.swiper-pagination-bullet-active {
	background-color: #3498db;
}
.galeri-details .galeri-info {
	padding: 30px;
	box-shadow: 0px 0 30px rgba(56, 64, 70, 0.08);
}
.galeri-details .galeri-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.galeri-details .galeri-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}
.galeri-details .galeri-info ul li + li {
	margin-top: 10px;
}
.galeri-details .galeri-description {
	padding-top: 30px;
}
.galeri-details .galeri-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}
.galeri-details .galeri-description p {
	padding: 0;
}

/*--------------------------------------------------------------
# Card General
--------------------------------------------------------------*/
@media (max-width: 767px) {
	.card-box-a,
	.card-box-b,
	.card-box-c,
	.card-box-d {
		margin-bottom: 2.5rem;
	}
}
.card-box-a span,
.card-box-b span,
.card-box-c span,
.card-box-d span {
	line-height: 0;
}

@media (min-width: 768px) {
	.grid .card-box-a,
	.grid .card-box-b,
	.grid .card-box-c,
	.grid .card-box-d {
		margin-bottom: 2.5rem;
	}
}

.card-box-a,
.card-box-b,
.card-box-d {
	position: relative;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 25px;
}

.card-box-a .img-a,
.card-box-a .img-b,
.card-box-b .img-a,
.card-box-b .img-b {
	transition: 0.8s all ease-in-out;
}
@media (min-width: 768px) {
	.card-box-a:hover .img-a,
	.card-box-a:hover .img-b,
	.card-box-b:hover .img-a,
	.card-box-b:hover .img-b {
		transform: scale(1.2);
	}
}
@media (min-width: 768px) {
	.card-box-a .price-a,
	.card-box-b .price-a {
		font-size: 0.9rem;
	}
}
@media (min-width: 992px) {
	.card-box-a .price-a,
	.card-box-b .price-a {
		font-size: 1rem;
	}
}

.card-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.card-shadow {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.card-shadow:before {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.2) 27%,
		rgba(0, 0, 0, 0.65) 90%
	);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
	padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
	width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.portfolio-details
	.portfolio-details-slider
	.swiper-pagination
	.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #9C3D8F;
}
.portfolio-details
	.portfolio-details-slider
	.swiper-pagination
	.swiper-pagination-bullet-active {
	background-color: #9C3D8F;
}
.portfolio-details .portfolio-info {
	padding: 30px;
	box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
	margin-top: 10px;
}
.portfolio-details .portfolio-description {
	padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
	padding: 0;
}

/*------/ Intro Single /------*/
.intro-single {
	padding: 10rem 0 0;
}
@media (max-width: 100%) {
	.intro-single {
		padding-top: 9rem;
	}
}
.intro-single .title-single-box {
	padding: 1rem 0 1rem 2rem;
}
.intro-single .title-single-box {
	border-left: 3px solid #2eca6a;
}
.intro-single .title-single-box .title-single {
	font-weight: 600;
	font-size: 2.2rem;
}
@media (min-width: 768px) {
	.intro-single .title-single-box .title-single {
		font-size: 2.1rem;
	}
}
@media (min-width: 992px) {
	.intro-single .title-single-box .title-single {
		font-size: 2.5rem;
	}
}
.intro-single .breadcrumb-box {
	padding: 1rem 0 0 0.5rem;
}
.intro-single .breadcrumb {
	background-color: transparent;
	padding-right: 0;
	padding-left: 0;
}

/*======================================
//--//-->   NEWS - CARD-B
======================================*/
.card-header-b {
	padding: 1rem;
	color: #ffffff;
	position: absolute;
	bottom: 20px;
	z-index: 2;
}
@media (min-width: 768px) {
	.card-header-b {
		bottom: 0px;
	}
}
@media (min-width: 992px) {
	.card-header-b {
		bottom: 20px;
	}
}
.card-header-b .category-b {
	font-size: 0.9rem;
	background-color: #2eca6a;
	padding: 0.3rem 0.7rem;
	color: #313131;
	letter-spacing: 0.03em;
	border-radius: 50px;
	text-decoration: none;
}
.card-header-b .title-2 {
	margin-bottom: 0;
	padding: 0.6rem 0;
	font-size: 1.5rem;
}
@media (min-width: 768px) {
	.card-header-b .title-2 {
		font-size: 1rem;
	}
}
@media (min-width: 992px) {
	.card-header-b .title-2 {
		font-size: 1.6rem;
	}
}
.card-header-b .title-2 a {
	color: #ffffff;
	text-decoration: none;
}
.card-header-b .date-b {
	color: #d8d8d8;
	font-size: 1rem;
}
@media (min-width: 768px) {
	.card-header-b .date-b {
		font-size: 0.9rem;
	}
}
@media (min-width: 992px) {
	.card-header-b .date-b {
		font-size: 1rem;
	}
}

/*------/ News Single /------*/
.post-information {
	padding: 3rem 0;
}

.post-content {
	font-size: 1.1rem;
	font-weight: 300;
	line-height: 1.6;
}
.post-content .post-intro {
	font-size: 1.7rem;
	font-weight: 300;
	margin-bottom: 4rem;
	line-height: 1.6;
	color: #000000;
	font-weight: 400;
}
.post-content p {
	margin-bottom: 1.7rem;
}
.post-content .blockquote {
	padding: 1rem 3rem 1.7rem 3rem;
	border-left: 3px solid #2eca6a;
	color: #000000;
}
.post-content .blockquote footer {
	text-align: left;
	padding: 0;
}

.post-footer {
	padding: 3rem 0 4rem;
}

.post-share .socials {
	display: inline-block;
}
.post-share .socials li {
	margin-left: 0.6rem;
}

/*------/ Comments /------*/
.box-comments .list-comments li {
	padding-bottom: 3.5rem;
}
.box-comments .list-comments .comment-avatar {
	display: table-cell;
	vertical-align: top;
}
.box-comments .list-comments .comment-avatar img {
	width: 80px;
	height: 80px;
}
.box-comments .list-comments .comment-author {
	font-size: 1.3rem;
}
@media (min-width: 768px) {
	.box-comments .list-comments .comment-author {
		font-size: 1.5rem;
	}
}
.box-comments .list-comments .comment-details {
	display: table-cell;
	vertical-align: top;
	padding-left: 25px;
}
.box-comments .list-comments .comment-description {
	padding: 0.8rem 0 0.5rem 0;
}
.box-comments .list-comments a {
	color: #000000;
}
.box-comments .list-comments span {
	display: block;
	color: #2b2a2a;
	font-style: italic;
}
.box-comments .comment-children {
	margin-left: 40px;
}

/*======================================
//--//-->   NEWS - CARD-B
======================================*/
.card-header-b {
	padding: 1rem;
	color: #ffffff;
	position: absolute;
	bottom: 20px;
	z-index: 2;
}
@media (min-width: 768px) {
	.card-header-b {
		bottom: 0px;
	}
}
@media (min-width: 992px) {
	.card-header-b {
		bottom: 20px;
	}
}
.card-header-b .category-b {
	font-size: 0.9rem;
	background-color: #2eca6a;
	padding: 0.3rem 0.7rem;
	color: #313131;
	letter-spacing: 0.03em;
	border-radius: 50px;
	text-decoration: none;
}
.card-header-b .title-2 {
	margin-bottom: 0;
	padding: 0.6rem 0;
	font-size: 1.5rem;
}
@media (min-width: 768px) {
	.card-header-b .title-2 {
		font-size: 1rem;
	}
}
@media (min-width: 992px) {
	.card-header-b .title-2 {
		font-size: 1.6rem;
	}
}
.card-header-b .title-2 a {
	color: #ffffff;
	text-decoration: none;
}
.card-header-b .date-b {
	color: #d8d8d8;
	font-size: 1rem;
}
@media (min-width: 768px) {
	.card-header-b .date-b {
		font-size: 0.9rem;
	}
}
@media (min-width: 992px) {
	.card-header-b .date-b {
		font-size: 1rem;
	}
}

/*------/ News Single /------*/
.post-information {
	padding: 3rem 0;
}

.post-content {
	font-size: 1.1rem;
	font-weight: 300;
	line-height: 1.6;
}
.post-content .post-intro {
	font-size: 1.7rem;
	font-weight: 300;
	margin-bottom: 4rem;
	line-height: 1.6;
	color: #000000;
	font-weight: 400;
}
.post-content p {
	margin-bottom: 1.7rem;
}
.post-content .blockquote {
	padding: 1rem 3rem 1.7rem 3rem;
	border-left: 3px solid #2eca6a;
	color: #000000;
}
.post-content .blockquote footer {
	text-align: left;
	padding: 0;
}

.post-footer {
	padding: 3rem 0 4rem;
}

.post-share .socials {
	display: inline-block;
}
.post-share .socials li {
	margin-left: 0.6rem;
}

/*------/ Comments /------*/
.box-comments .list-comments li {
	padding-bottom: 3.5rem;
}
.box-comments .list-comments .comment-avatar {
	display: table-cell;
	vertical-align: top;
}
.box-comments .list-comments .comment-avatar img {
	width: 80px;
	height: 80px;
}
.box-comments .list-comments .comment-author {
	font-size: 1.3rem;
}
@media (min-width: 768px) {
	.box-comments .list-comments .comment-author {
		font-size: 1.5rem;
	}
}
.box-comments .list-comments .comment-details {
	display: table-cell;
	vertical-align: top;
	padding-left: 25px;
}
.box-comments .list-comments .comment-description {
	padding: 0.8rem 0 0.5rem 0;
}
.box-comments .list-comments a {
	color: #000000;
}
.box-comments .list-comments span {
	display: block;
	color: #2b2a2a;
	font-style: italic;
}
.box-comments .comment-children {
	margin-left: 40px;
}

/*------/ Pagination-a /------*/
.pagination-a {
	text-decoration: none;
}
.pagination-a .pagination .page-link {
	margin: 0 0.2rem;
	border-color: transparent;
	padding: 0.5rem 0.8rem;
	color: #000000;
}
.pagination-a .pagination .page-link:hover,
.pagination-a .pagination .page-link:active,
.pagination-a .pagination .page-link:focus {
	background-color: #2eca6a;
}
.pagination-a .pagination .page-link span {
	font-size: 1.2rem;
}
.pagination-a .pagination .next .page-link {
	padding: 0.4rem 0.9rem;
}
.pagination-a .pagination .page-item:last-child .page-link {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.pagination-a .pagination .page-item:first-child .page-link {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.pagination-a .pagination .page-item.disabled .page-link {
	padding: 0.4rem 0.9rem;
	color: #555555;
}
.pagination-a .pagination .page-item.active .page-link {
	background-color: #2eca6a;
}

.a {
	text-decoration: none;
	color: #2eca6a;
	font-size: 1.3rem;
}

/*------/ Icon Box /------*/
.icon-box .icon-box-icon {
	display: table-cell;
	vertical-align: top;
	font-size: 36px;
	color: #000000;
	width: 50px;
	padding-top: 8px;
}
.icon-box .icon-box-content {
	padding-top: 18px;
}

/*--------------------------------------------------------------
# gambarartikel Section
--------------------------------------------------------------*/
#gambarartikel {
	width: 100%;
	height: 60vh;
	background: url("../img/program-3.jpg") top center;
	background-size: cover;
	position: relative;
}
#gambarartikel:before {
	content: "";

	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}
#gambarartikel .container {
	text-align: center;
	padding-top: 50px;
}
@media (max-width: 992px) {
	#gambarartikel .container {
		padding-top: 0;
	}
}
#gambarartikel h1 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: #fff;
}
#gambarartikel h2 {
	color: #eee;
	margin: 15px 0 0 0;
	font-size: 22px;
}
#gambarartikel .btn-get-started {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 9px 35px;
	border-radius: 50px;
	transition: 0.5s;
	margin-top: 40px;
	border: 2px solid #ffc107;
	color: #fff;
}
#gambarartikel .btn-get-started:hover {
	background: #ffc107;
}
@media (min-width: 1024px) {
	#gambarartikel {
		background-attachment: fixed;
	}
}
@media (max-width: 768px) {
	#gambarartikel {
		height: 100vh;
	}
	#gambarartikel h1 {
		font-size: 28px;
		line-height: 36px;
	}
	#gambarartikel h2 {
		font-size: 18px;
		line-height: 24px;
	}
}

/*------/ News Single /------*/

.post-information {
	padding: 3rem 0;
}

.post-content {
	font-size: 1.1rem;
	font-weight: 300;
	line-height: 1.6;
}
.post-content .post-intro {
	font-size: 1.7rem;
	font-weight: 300;
	margin-bottom: 4rem;
	line-height: 1.6;
	color: #000000;
	font-weight: 400;
}
.post-content p {
	margin-bottom: 1.7rem;
}
.post-content .blockquote {
	padding: 1rem 3rem 1.7rem 3rem;
	border-left: 3px solid #2eca6a;
	color: #000000;
}
.post-content .blockquote footer {
	text-align: left;
	padding: 0;
}

.post-footer {
	padding: 3rem 0 4rem;
}

.post-share .socials {
	display: inline-block;
}
.post-share .socials li {
	margin-left: 0.6rem;
}

/*------/ Comments /------*/
.box-comments .list-comments li {
	padding-bottom: 3.5rem;
}
.box-comments .list-comments .comment-avatar {
	display: table-cell;
	vertical-align: top;
}
.box-comments .list-comments .comment-avatar img {
	width: 80px;
	height: 80px;
}
.box-comments .list-comments .comment-author {
	font-size: 1.3rem;
}
@media (min-width: 768px) {
	.box-comments .list-comments .comment-author {
		font-size: 1.5rem;
	}
}
.box-comments .list-comments .comment-details {
	display: table-cell;
	vertical-align: top;
	padding-left: 25px;
}
.box-comments .list-comments .comment-description {
	padding: 0.8rem 0 0.5rem 0;
}
.box-comments .list-comments a {
	color: #000000;
}
.box-comments .list-comments span {
	display: block;
	color: #2b2a2a;
	font-style: italic;
}
.box-comments .comment-children {
	margin-left: 40px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
	text-align: center;
	margin-bottom: 20px;
	box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
	padding: 30px 20px;
	background: #fff;
}
.team .member img {
	max-width: 60%;
	border-radius: 50%;
	margin: 0 0 30px 0;
}
.team .member h4 {
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
}
.team .member span {
	font-style: italic;
	display: block;
	font-size: 13px;
}
.team .member p {
	padding-top: 10px;
	font-size: 14px;
	font-style: italic;
	color: #aaaaaa;
}
.team .member .social {
	margin-top: 15px;
}
.team .member .social a {
	color: #919191;
	transition: 0.3s;
}
.team .member .social a:hover {
	color: #9C3D8F;
}
.team .member .social i {
	font-size: 18px;
	margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	border-top: 3px solid #9C3D8F;
	border-bottom: 3px solid #9C3D8F;
	padding: 30px;
	background: #fff;
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .info i {
	font-size: 20px;
	color: #9C3D8F;
	float: left;
	width: 44px;
	height: 44px;
	background: #eaf6ed;
	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: 20px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #222222;
}
.contact .info p {
	padding: 0 0 10px 60px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #555555;
}
.contact .info .social-links {
	padding-left: 60px;
}
.contact .info .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #333;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	margin-right: 10px;
}
.contact .info .social-links a:hover {
	background: #9C3D8F;
	color: #fff;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: #9C3D8F;
	color: #fff;
}
.contact .php-email-form {
	width: 100%;
	border-top: 3px solid #9C3D8F;
	border-bottom: 3px solid #9C3D8F;
	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 .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}
.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}
.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}
.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}
.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}
.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: #9C3D8F;
}
.contact .php-email-form input {
	height: 44px;
}
.contact .php-email-form textarea {
	padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
	background: #9C3D8F;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
	background: #6ec083;
}
@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: #fbfbfb;
	min-height: 40px;
}
@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 66px;
	}
}
.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 300;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}
.breadcrumbs ol li + li {
	padding-left: 10px;
}
.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #3c3c3c;
	content: "/";
}
@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}
	.breadcrumbs ol {
		display: block;
	}
	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.my-float {
	margin-top: 16px;
}

#footer {
	color: #444444;
	font-size: 14px;
	background: #f1f3ff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-top {
	padding: 60px 0 30px 0;
	background: #fff;
}
#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
	font-size: 22px;
	margin: 0 0 30px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	color: #2d405f;
}
#footer .footer-top .footer-contact p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Krub", sans-serif;
	color: #4e6fa4;
}
#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #2d405f;
	position: relative;
	padding-bottom: 12px;
}
#footer .footer-top .footer-links {
	margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #6c7afa;
	font-size: 18px;
	line-height: 1;
}
#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}
#footer .footer-top .footer-links ul a {
	color: #777777;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #3b4ef8;
}
#footer .footer-newsletter {
	font-size: 15px;
}
#footer .footer-newsletter h4 {
	font-size: 16px;
	font-weight: bold;
	color: #2d405f;
	position: relative;
	padding-bottom: 12px;
}
#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 5px;
	text-align: left;
	border: 1px solid #9da7fc;
}
#footer .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: -1px;
	right: -2px;
	bottom: -1px;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #3b4ef8;
	color: #fff;
	transition: 0.3s;
	border-radius: 0 5px 5px 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
	background: #0a22f6;
}
#footer .credits {
	padding-top: 5px;
	font-size: 13px;
	color: #444444;
}
#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #e7eafe;
	color: #3b4ef8;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 5px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}
#footer .social-links a:hover {
	background: #3b4ef8;
	color: #fff;
	text-decoration: none;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

.login {
	min-height: 100vh;
}

.bg-image {
	background-image: url("../img/login.png");
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f6f7f9;
}
.fs-1 {
	font-size: 1rem !important;
}
.fs-10 {
	font-size: 3rem !important;
}
.radius-20 {
	border-radius: 20px;
}

.clients-img {
	height: 100px;
}

.cover {
	object-fit: cover;
}

.my-card {
	position: absolute;
	left: 44%;
	top: -20px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background-color: #9eebb3;
}

.img-profile {
	height: 150px;
	border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
	color: rgb(61, 61, 61) !important;
}
