/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	background: #f3f4f9;
	color: #444;
	font-family: "Quicksand", sans-serif;
}

a {
	color: #3655A2
	;
	transition: 0.5s;
}

a:hover,
a:active,
a:focus {
	color: #3655A2	;
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0 0 30px 0;
	font-family: "Quicksand";
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Quicksand", sans-serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}

/* Back to top button */

.back-to-top {
	position: fixed;
	display: none;
	background: #3655A2;
	color: #fff;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 16px;
	border-radius: 50%;
	right: 15px;
	bottom: 5px;
	transition: background 0.5s;
	z-index: 11;
}

.wabutton {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
}

.back-to-top i {
	padding-top: 12px;
	color: #fff;
}

/* Prelaoder */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
	border-top: 6px solid #4166c4;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

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

#header {
	height: 100px;
	transition: all 0.5s;
	z-index: 997;
	padding: 20px 0;
	background: transparent;
}

#header.header-scrolled,
#header.header-pages {
	height: 80px;
	padding: 10px 0;
	background: #fff;
}
#header.header-scrolled,
#header.header-pages > a:active {
	border-bottom: 3px solid #3655A2;
}

#header .logo h1 {
	font-size: 36px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #ffffff;
	text-decoration: none;
}

#header .logo img {
	padding: 0;
	margin: -27px 0;
    max-width: 117px;
}

#header2 .logo img {
    padding: 0;
    margin: 6px 0;
    max-width: 110px;
}

#header2 {
	height: 100px;
	transition: all 0.5s;
	z-index: 997;
	padding: 20px 0;
	background: transparent;
}

#header2.header-scrolled,
#header2.header-pages {
	height: 80px;
	padding: 10px 0;
	background: #fff;
} 
#header2.header-scrolled,
#header2.header-pages > a:active {
	border-bottom: 3px solid #3655A2;
}

#header2 .logo h1 {
	font-size: 36px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#header2 .logo h1 a,
#header2 .logo h1 a:hover {
	color: #ffffff;
	text-decoration: none;
}

.section-header {
	margin: 20px auto;
}
.section-header h3 {
	font-family: "Quicksand";
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 70px;
	color: #2d3434;
}
.main-pages {
	margin-top: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav,
.main-nav * {
	margin: 5px;
	padding: 0;
	margin-top: 3px;
	list-style: none;
}

.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.main-nav a {
	display: block;
	position: relative;
	color: #565656;
	padding: 10px 5px;
	transition: 0.3s;
	font-size: 19px;
	font-family: "Quicksand", sans-serif;
	font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
	color: #3655A2;
	font-weight: bold;
	border-bottom: 3px solid #3655A2;
}

.main-nav .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.main-nav .drop-down li {
	min-width: 180px;
	position: relative;
}

.main-nav .drop-down ul a {
	padding: 10px 20px;
	font-size: 19px;
	color: #565656;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
	color: #00a381;
}

.main-nav .drop-down > a:after {
	content: "\f107";
	font-family: FontAwesome;
	padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.main-nav .drop-down .drop-down > a {
	padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
	content: "\f105";
	position: absolute;
	right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
	transition: 0.4s;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
	color: #fff;
    font-weight: bold;
	text-decoration: none;
}

.mobile-nav .drop-down > a:after {
	content: "\f078";
	font-family: FontAwesome;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down > a:after {
	content: "\f077";
}

.mobile-nav .drop-down > a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #004289;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(19, 39, 57, 0.8);
	overflow: hidden;
	display: none;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}
.navbar-default .navbar-nav > li > a::after {
	background-color: #ec1f27;
	bottom: -24px;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	transition: all 0.2s ease 0s;
	width: 0%;
}

/* Intro */

#intro {
	background: url(../img/background.png);
	background-attachment: scroll;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 160px 19px;
	width: 100%;
	height: 740px;
	position: relative;
}
#intro .intro-img {
	width: 50%;
	float: right;
}

#intro .intro-info {
	width: 50%;
	float: left;
	margin-top: 35px;
}

#intro .intro-info h2 {
	font-style: normal;
	font-weight: bold;
	font-size: 25px;
	line-height: 10px;
	color: #f1a501;
}
#intro .intro-info span {
	width: 528px;
	font-family: "Paytone One";
	font-style: normal;
	font-weight: normal;
	font-size: 37.0058px;
	line-height: 43px;
	background: -webkit-linear-gradient(90deg, #00c1d6, #00d6b9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#intro .intro-info h2 span {
	color: #ffff00;
	text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
	font-family: "Exo", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 120%;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 32px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 21px 20px 0px 0;
	color: #fff;
}
/* intro1 */
#intro1 {
	width: 82%;
	position: relative;
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	background-size: cover;
	padding-top: 115px;
	padding-bottom: 58px;
	margin: -156px auto;
}

#intro1 p {
	font-family: 'Exo';
	font-style: normal;
	font-weight: 600;
	text-align: center;
	color: #FFFFFF;
	margin:18px;
}

/* intro2 */
#intro10 {
	width: 82%;
	position: relative;
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	background-size: cover;
	padding-top: 90px;
	padding-bottom: 54px;
	margin: -156px auto;
}
/* slideshow */
input[type="radio"] {
	display: none;
}

.cards {
	position: absolute;
	width: 60%;
	height: 100%;
	left: 0;
	right: 0;
	margin: auto;
	transition: transform 0.4s ease;
	cursor: pointer;
}

.cardss {
	position: relative;
	width: 100%;
	height: 100%;
	margin-bottom: 20px;
}

#item-1:checked ~ .cardss #song-3,
#item-2:checked ~ .cardss #song-1,
#item-3:checked ~ .cardss #song-2 {
	transform: translatex(-40%) scale(0.8);
	opacity: 0.4;
	z-index: 0;
}

#item-1:checked ~ .cardss #song-2,
#item-2:checked ~ .cardss #song-3,
#item-3:checked ~ .cardss #song-1 {
	transform: translatex(40%) scale(0.8);
	opacity: 0.4;
	z-index: 0;
}

#item-1:checked ~ .cardss #song-1,
#item-2:checked ~ .cardss #song-2,
#item-3:checked ~ .cardss #song-3 {
	transform: translatex(0) scale(1);
	opacity: 1;
	z-index: 1;
}

#item-2:checked ~ .player #test {
	transform: translateY(0);
}

#item-2:checked ~ .player #test {
	transform: translateY(-40px);
}

#item-3:checked ~ .player #test {
	transform: translateY(-80px);
}
/* About Us Section
--------------------------------*/
#about {
	margin: 200px auto;
	margin-bottom: 0px;
}

#dalam {
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
    border-radius: 10px;
    height: 1053px;
}

#lihatsemua {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 67px;
	color: #002ea3;
	text-align:center;
	margin:256px;
}

#colpertama {
	height: 456px;
	resize: none;
}


#col1 {
	background: #FFFFFF;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	height:690px;
	width: 392px;
}

#col2 {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 663px;
    width: 387px;
}

#arsip {
	max-width: 18rem;
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
	border-radius: 10px;
	margin-top:0px;
	margin-left: 18px;
}

#arsip2 {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 296px;
}

#arsipkunjungan {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 296px;
}

#arsipkunjungan1 {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 331px;
}

#arsip1 {
	background: #FFFFFF;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	height:637px;
}

#arsip3 {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 507px;
}


#garis {
	border: 1px solid #666666;
	margin:16px auto;
}

#p1 {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: bold;
	font-size: 40px;
	line-height: 50px;
	text-align: center;
	color: #FFFFFF;
}

#donasi1 {
	font-family: 'Quicksand';
	width: 82%;
	font-style: normal;
	font-weight: bold;
	background: transparent;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
	box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
	border-radius: 10px;
	margin: 200px auto;
	border: 5px solid #263ecb;
}

#rekening {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	color: #666666;
}

#p2 {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #666666;
}

#donasi2 {
	background: #FFFFFF;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	height: 1032px;
}

#donasi3 {
	background: #FFFFFF;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	height: 1364px;
}


#artikel {
    padding: 3px;
    margin-right: -284px;
}

#sidebarbbq {
	background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 530px;
    margin: 37px auto;
    margin-bottom: 0px;
    width: 375px;
    margin-left: 319px;
}

#sidebargaleri {
	background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 620px;
    margin: 119px auto;
    margin-bottom: 0px;
    width: 375px;
    margin-left: 319px;
}


#sidebarbbq2 {
	background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 389px;
    margin: 0px auto;
    margin-bottom: 0px;
    width: 375px;
    margin-left: 319px;
}

#sidebargaleri2 {
	background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 389px;
    margin: 0px auto;
    margin-bottom: 0px;
    width: 375px;
    margin-left: 319px;
}

#arsipkunjungan9 {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 331px;
    margin-top: 121px;
}


#sidebarbbq3 {
	background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 283px;
    margin: 30px auto;
    margin-bottom: 43px;
    width: 375px;
    margin-left: 319px;
}



#sidebargaleri3 {
	background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 283px;
    margin: 30px auto;
    margin-bottom: 43px;
    width: 375px;
	margin-left: 319px;
}


#sidebarbbq1 {
    height: 366px;
    resize: none;
    margin: -22px auto;
    margin-left: -1px;
}

.section-headerbbq {
    margin: 20px auto;
    margin-left: 0px;
}

.section-headerbbq h3 {
	font-family: "Quicksand";
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 70px;
    color: #2d3434;
}


/* tentangkami */

#tentangkami {
	padding-top: 96px;
	margin: 0px;
}

#kontak {
	padding-top: 96px;
	margin: 0px;
}

#mapkontak {
	height: 565px;
		width: 712px;
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		margin-bottom: 72px;
}

#cardmasjid {
	max-width: 18rem;background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);border-radius: 10px;margin-left: 18px;width: 272px;"
}

#pkontak {
    font-family: 'Quicksand';
    margin-bottom: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 113%;
    text-align: center;
    color: #FFFFFF;
}

#cardkunjungan {
    max-width: 18rem;
    background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
    border-radius: 10px;
    margin-left: 10px;
    width: 277px;
}

#maps {
	width: 674px;
	height: 450px;
	style: border:0;
	border-radius: 10px;
	filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
}

#sidekontak {
	background: #FFFFFF;
	box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
	border-radius: 20px;
	height: 389px;
	margin: 0px auto;
	margin-bottom: 0px;
	width: 375px;
	margin-left: -3px;
	margin-top: 117px;
}

#sidemasjid {
	background: #FFFFFF;
	box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
	border-radius: 20px;
	height: 389px;
	margin: 0px auto;
	margin-bottom: 0px;
	width: 375px;
	margin-left: -3px;
	margin-top: 117px;
}


/* donasi */
#donasi {
	margin: 32px auto;
}

#textform {
    margin-top: 100px;
    padding-top: 24px;
    width: 100%;
    height: 100px;
}

.formkiri {
	width: 40%;
	float: left;
	text-align: center;
}

.formkiri h3 {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 700;
	font-size: 28px;
	line-height: 62px;
/* identical to box height */
	text-transform: capitalize;
	color: #3A59A8;
}

.formkanan {
	width: 40%;
	float: right;
	text-align: center;
}

.formkanan h4 {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 62px;
/* identical to box height */
	text-transform: capitalize;
	color: #3A59A8;
}

#formulir{
	margin-top: 20px;
	margin-bottom: 20px;
}

#textkiri {
	width: 250px;
	padding-left: 220px;
	font-size: 18px;
}


#textkanan {
	width: 450px;
	padding-right: 183px;
}

#textkanan3 input {
	width: 450px;
	padding-right: 170px;
}

#textkanan textarea {
    margin-bottom: 15px;
    width: 100%;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
	font-size: 18px;
	}

#textkanan select {
    margin-bottom: 15px;
    width: 100%;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
	font-size: 18px;
}

#textkanan input {
    background: #3b5baa;
    border: 2px solid transparent;
    border-radius: 4px;
    color: #fff;
    padding: 10px 48px 10px 48px;
    font-size: 18px;
}

.borderform {
	padding-top: 100px;
	padding-bottom: 300px;
    border: 4px solid #0B3398;
    border-radius: 12px;
}

.borderform1 {
    padding-top: 100px;
    padding-bottom: 100px;
    border: 4px solid #0B3398;
    border-radius: 12px;
}

#formulir p {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	text-align: center;

	color: #000000;
}

.norek {
    float: left;
    width: 40%;

}

.bordernorek {
	padding-top: 17px;
    padding-right: 27px;
    padding-bottom: 17px;
    border: 2px solid #bfbfbf;
    border-radius: 12px;
    margin-left: 78px;
    padding-left: 27px;

}

.norek input {
	background: transparent;
    border: 0px transparent;
    font-size: 25px;
    align-items: center;
    width: 100%;

}

#jarak1 {
    padding-left: 13px;
    padding-right: 40px;
}

#jarak {
    padding-left: 42px;
    padding-right: 41px;
}

#no {
    font-size: 23px;
    margin: 0 0 0px 0;
}

.nomorwa {
	float: right;
    width: 42%;
}

.borderwa {
    padding-top: 17px;
    padding-right: 27px;
    padding-bottom: 17px;
    border: 2px solid #bfbfbf;
    border-radius: 12px;
    margin-right: 78px;
    padding-left: 27px;

}

#nomor1 {
    padding-left: 39px;
    padding-right: 54px;
}

#nomor {
    padding-left: 42px;
    padding-right: 41px;
}

.bank {
	margin-left: 72px;
    margin-top: 17px;
    text-align: center;
}

.bukawa {
	margin-top: 17px;
    text-align: center;
    margin-right: 72px;
}

.bukawa button {
    background: linear-gradient(180deg, #5E86EA 0%, #2F4F9D 100%);
    border: 0px solid transparent;
    border-radius: 26px;
    color: #fff;
    padding: 10px 48px 10px 48px;
    font-size: 18px;
}

.bukawa button:hover {
    background: linear-gradient(180deg, #5e86ea00 0%, #2f4e9d00 100%);
    border: 2px solid #2F4F9D;
    border-radius: 26px;
    color: rgb(0, 0, 0);
    padding: 10px 48px 10px 48px;
    font-size: 18px;
}

.popup {
    background: linear-gradient(180deg, #5E86EA 0%, #2F4F9D 100%);
    padding: 21px 14px 19px 23px;
    border-radius: 44px;
    position: fixed;
    bottom: 44px;
    width: 50%;
    left: 342px;
	z-index: 999;
}

.jarakpop {
	padding-right: 50px;
}

.jarakpop1 button {
    background: linear-gradient(180deg, #1948bf 0%, #001d63 100%);
    border: 0px solid transparent;
    border-radius: 26px;
    color: #fff;
    padding: 10px 48px 10px 48px;
    font-size: 18px;
}

.jarakpop button {
    border-radius: 31px;
    padding: 25px 50px 25px 50px;
    font-size: 18px;
}

.jarakpop1 h3 {
	margin-bottom: 0px;
    color: #fff;
    font-size: 18px;
}

.jarakpop h3 {
	margin-bottom: 0px;
    color: #fff;
	font-size: 25px;
}

#textkanan3 input {
	margin-bottom: 15px;
    width: 117%;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    font-size: 18px;
}
#ketentuan h1 {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 62px;
    text-transform: uppercase;
    color: #3A59A8;
    margin: 0px 0px 0px 0px;
}

#ketentuan li {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 39px;
    text-transform: capitalize;
    color: #000000;
    margin: 0px 0px 7px 0px;
}

#ketentuan {
	margin-top: 100px;
    padding-top: 24px;
    width: 100%;
    height: 527px;
}

#ketentuan button {
	background: linear-gradient(180deg, #1948bf 0%, #001d63 100%);
    border: 0px solid transparent;
    border-radius: 26px;
    color: #fff;
    padding: 10px 48px 10px 48px;
    font-size: 18px;
}


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


#footer {
    color: #eee;
    font-size: 14px;
    margin-top: 29px;
}

#footer {
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
	padding: 0 0 30px 0;
	color: #eee;
	font-size: 14px;
}

#footer .footer-top {
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 34px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-family: "Quicksand", sans-serif;
	color: #fbfbfb;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#footer .footer-top .footer-info p {
	font-size: 13px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Quicksand", sans-serif;
	color: #fbfbfb;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: transparent;
	color: #fbfbfb;
	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 .social-links a:hover {
	background: transparent;
	color: #fbfbfb;
}

#footer .footer-top h4 {
	position: relative;
	padding-bottom: 10px;
	font-family: "Quicksand";
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #ffffff;
}

#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 li {
	padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fbfbfb;
}

#footer .footer-top .footer-links ul a:hover {
	color: #74b5fc;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
	line-height: 20px;
	font-family: "Quicksand";
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	font-style: normal;
}

#footer .footer-top .footer-newsletter {
	margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
	border: 0;
	padding: 6px 8px;
	width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
	background: #007bff;
	border: 0;
	width: 35%;
	padding: 6px 0;
	text-align: center;
	color: #fbfbfb;
	transition: 0.3s;
	cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
	background: #0062cc;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
	font-family: "Quicksand";
}

#footer .credits {
	text-align: center;
	font-size: 13px;
	color: #f1f7ff;
	font-family: "Quicksand";
}

#footer .credits a {
	color: #bfddfe;
}

#footer .credits a:hover {
	color: #f1f7ff;
}
.pembatas {
	border: 2px solid #f3f4f9;
}
.box {
	background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
	border-radius: 10px;
	color: white;
	font-size: 100px;
	width: 329px;
	height: 52px;
}

.infogambar {
	float: left;
    margin-bottom: 40px;
}

.infotext {
	float: right;
    width: 62%;
}

.infotext h6 {
	font-family: 'Quicksand';
font-style: normal;
font-weight: 600;
font-size: 23px;
line-height: 40px;
/* identical to box height */

text-transform: capitalize;

color: #000000;
}

#kegiatan1 {
	margin-bottom: 307px;
}

#kegiatan2 {
	margin-bottom: 290px;
}

#kegiatan3 {
	margin-bottom: 311px;
}

#kegiatan4 {
	margin-bottom: 311px;
}

#kegiatan5 {
	margin-bottom: 311px;
}

#ourteam {
	height: 406px;
	background: #FFFFFF;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}

#textdepan {
	background: #FFFFFF;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    height: 1124px;
    padding: 42px 40px 29px 40px;
	width: 687px;
}


/*--------------------------------------------------------------
# Tampilan Mobile
--------------------------------------------------------------*/


@media (max-width: 500px) {

	
	#textkanan3  input{
		margin-bottom: 15px;
		width: 117%;
		padding: 10px 10px 10px 10px;
		border-radius: 6px;
		font-size: 18px;
}

	#textdepan {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 1197px;
		padding: 42px 40px 29px 40px;
	}
	
	#ketentuan {
		margin-top: 100px;
		padding-top: 24px;
		width: 100%;
		height: 1032px;
	}

	.popup {
		background: linear-gradient(180deg, #5E86EA 0%, #2F4F9D 100%);
		padding: 21px 14px 19px 23px;
		border-radius: 44px;
		position: fixed;
		bottom: 43px;
		width: 62%;
		left: 72px;
		z-index: 999;
	}
	#intro {
		background: url(../img/background.png);
		background-attachment: scroll;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		padding: 103px 6px;
		width: 100%;
		height: 431px;
		position: relative;
	}

	#dalam {
		background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
		border-radius: 10px;
		height: 1813px;
	}

	#lihatsemua {
		font-family: 'Quicksand';
		font-style: normal;
		font-weight: bold;
		font-size: 16px;
		line-height: 67px;
		color: #3655A2;
		text-align:center;
		margin:1px;
	}

	#ourteam {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 1235px;
	}

	#intro1 {
		width: 94%;
		position: relative;
		background: linear-gradient(
	180deg, #577cd8 0%, #3655A2 100%);
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		background-size: cover;
		padding-top: 36px;
		padding-bottom: 29px;
		margin: -195px auto;
	}

	.infotext {
		float: right;
		width: 100%;
	}

	#arsipkunjungan9 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 19px;
		height: 331px;
		padding-right: 314px;
		margin-top: 0px;
	}

	#intro1 p {
		font-family: 'Exo';
		font-style: normal;
		font-weight: 600;
		text-align: center;
		color: #FFFFFF;
		font-size: 14px;
		margin: 5px;
		line-height: 18px;
	}

	#colpertama {
		height: 366px;
		resize: none;
		width: 315px;
	}

	#garis {
		border: 1px solid #666666;
		margin: 16px auto;
		padding-right: 296px;
	}

	#col1 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px	;
		/* height: 603px; */

		padding-right: 313px;	
		overflow-y: scroll;

	}

	#col2 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 578px;
		padding-right: 313px;

	}

	#arsip {
		max-width: 18rem;
		background: linear-gradient(
		180deg, #577cd8 0%, #3655A2 100%);
		border-radius: 10px;
		margin-left: 3px;
		margin-right: -291px;
		margin-bottom: 15px;
	}
	
	#arsip1 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 620px;
		padding-right: 311px;
		margin-bottom: 15px;
	}

	#arsip2 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 296px;
		padding-right: 311px;
		margin-bottom: 15px;
	}

	#arsip4 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 396px;
	}

	#arsip3 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 620px;
		padding-right: 311px;
	}



	#arsipkunjungan {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 258px;
		padding-right: 311px;
	}

	.section-header h3 {
		font-family: "Quicksand";
		font-style: normal;
		font-weight: bold;
		font-size: 20px;
		line-height: 32px;
		color: #2d3434;
	}

	#intro2 {
		width: 100%;
		position: relative;
		background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		background-size: cover;
		padding-top: 22px;
		padding-bottom: 0px;
		margin: -2px auto;
	}

	#p1
	{
		font-family: Quicksand;
		font-style: normal;
		font-weight: bold;
		font-size: 13px;
		line-height: 15px;
		text-align: center;
		color: #FFFFFF;
	}

	#donasi1 {
		font-family: 'Quicksand';
		width: 82%;
		font-style: normal;
		font-weight: bold;
		background: transparent;
		font-size: 16px;
		line-height: 20px;
		color: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 10px;
		margin: 29px auto;
		border: 5px solid #00A381;
	}

	#rekening {
		font-family: 'Quicksand';
		font-style: normal;
		font-weight: bold;
		font-size: 15px;
		line-height: 21px;
		text-align: center;
		color: #666666;
	}

	#p2 {
		font-family: 'Quicksand';
		font-style: normal;
		font-weight: 500;
		font-size: 12px;
		line-height: 20px;
		text-align: center;
		color: #666666;
	}

	#donasi2 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 999px;
	}

	#donasi3 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 1413px;
	}


	/*--------------------------------------------------------------
# Tampilan Mobile
--------------------------------------------------------------*/


	#tentangkami {
		padding-top: 101px;
		padding-right: 0px;
	}

	#kontak {
		padding-top: 101px;
			padding-right: 0px;
			width: 367px;
	}

	#sidebarbbq {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 530px;
		margin: 119px auto;
		margin-bottom: 0px;
		width: 344px;
		margin-right: 1px;
	}

	#sidebargaleri {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 713px;
		margin: 119px auto;
		margin-bottom: 0px;
		width: 344px;
		margin-right: 1px;
	}

	#sidebarbbq1 {
		height: 366px;
		resize: none;
		margin:-22px auto;
	}

	#sidebargaleri1 {
		height: 366px;
		resize: none;
		margin:-22px auto;
	}

	.section-headerbbq {
		margin: 20px auto;
	}

	.section-headerbbq h3 {
		font-family: "Quicksand";
		font-style: normal;
		font-weight: bold;
		font-size: 20px;
		line-height: 70px;
		color: #2d3434;
	}
	
	#artikel {
	padding: 3px;
    margin-right: 0px;
	}

	#sidebarbbq2 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 335px;
		margin: 0px auto;
		margin-bottom: 0px;
		width: 375px;
		margin-left: 0px;
	}

	#sidebargaleri2 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 335px;
		margin: 0px auto;
		margin-bottom: 0px;
		width: 375px;
		margin-left: 0px;
	}

	#sidebarbbq3 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 283px;
		margin: 30px auto;
		margin-bottom: 43px;
		width: 375px;
		margin-left: 0px;
	}
	
	#sidebargaleri3 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 283px;
		margin: 30px auto;
		margin-bottom: 43px;
		width: 375px;
		margin-left: 0px;
	}

	#maps {
		width: 307px;
		height: 450px;
		style: border:0;
		border-radius: 10px;
		filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
	}

	#cardkunjungan {
		max-width: 18rem;
		background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
		border-radius: 10px;
		margin-left: 10px;
		width: 277px;
	}

	#cardmasjid {
		max-width: 18rem;
		background: linear-gradient(180deg, #577cd8 0%, #3655A2 100%);
		border-radius: 10px;
		margin-left: -292px;
		width: 272px;
	}

	#sidemasjid {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 389px;
		margin: 0px auto;
		margin-bottom: 0px;
		width: 375px;
		margin-left: -3px;
		margin-top: 117px;
		padding-left: 311px;
	}

	#arsipkunjungan1 {
		background: #FFFFFF;
		box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
		border-radius: 20px;
		height: 313px;
		padding-right: 311px;
	}

	#textkanan {
		width: 450px;
		padding-right: 15px;
	}

	#textkiri {
		width: 250px;
		padding-left: 16px;
		font-size: 15px;
	}

	#textkanan select {
	margin-bottom: 15px;
    width: 78%;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    font-size: 15px;
	}

	#textkanan textarea {
		margin-bottom: 15px;
		width: 78%;
		padding: 10px 10px 10px 10px;
		border-radius: 6px;
		font-size: 15px;
	}
	}

	.formkiri {
		width: 56%;
		float: left;
		text-align: center;
	}

	.formkiri h3 {
		font-family: 'Quicksand';
		font-style: normal;
		font-weight: 700;
		font-size: 15px;
		line-height: 62px;
		text-transform: capitalize;
		color: #3A59A8;
	}

	.formkanan {
		width: 40%;
		float: right;
		text-align: center;
	}

	.formkanan h4 {
		font-family: 'Quicksand';
		font-style: normal;
		font-weight: 700;
		font-size: 11px;
		line-height: 62px;
		text-transform: capitalize;
		color: #3A59A8;
	}

	.borderform1 {
		padding-top: 63px;
		padding-bottom: 63px;
		padding-left: 10px;
		/* padding-right: 20px; */
		border: 4px solid #0B3398;
		border-radius: 12px;
	}

	.bordernorek {
		padding-top: 16px;
		padding-right: 17px;
		padding-bottom: 20px;
		border: 2px solid #bfbfbf;
		border-radius: 12px;
		margin-left: 0px;
		padding-left: 13px;
	}

	.norek {
		float: left;
		width: 100%;
	}

	.nomorwa {
		float: right;
		width: 100%;
	}

	.borderform {
		padding-top: 63px;
		padding-bottom: 563px;
		border: 4px solid #0B3398;
		border-radius: 12px;
	}

	.borderwa {
		padding-top: 17px;
		padding-right: 1px;
		padding-bottom: 17px;
		border: 2px solid #bfbfbf;
		border-radius: 12px;
		margin-right: 0px;
		padding-left: 2px;
	}

	.bank {
		margin-top: 17px;
		text-align: center;
		margin-left: 0px;
	}

	.bukawa {
		margin-top: 17px;
		text-align: center;
		margin-right: 0px;
	}


}