/* DETAILS
==================================================
	Theme Name: SWAPNA SOCIETY	
==================================================
*/
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');


:root {
	--Poppins: 'Poppins', sans-serif;
	--font-awesome: 'Font Awesome 6 Free';
	--common-transition: all 0.3s ease 0s;
	--theme-color: #142363;
	--text-color: #494a4a;
	--yellow: #f6ef3f;
	--black: #0a0a0a;
	--white: #ffffff;
}

/* =========== global adjustments =========== */
html {
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--Poppins);
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-color);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	margin: 0 0 20px;
	padding: 0;
	font-family: var(--Poppins);
	color: var(--theme-color);
}

h1 {
	font-size: 93px;
	line-height: 1.15;
	font-weight: 700;
}

h2 {
	font-size: 55px;
	line-height: 1.34;
	font-weight: 700;
}

h3 {
	font-size: 45px;
	line-height: 1.33;
	font-weight: 700;
}

h4 {
	font-size: 24px;
	line-height: 1.41;
	font-weight: 600;
}

h5 {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 600;
}

p {
	margin-bottom: 20px;
}

img {
	max-width: 100%;
}

a,
img {
	border: 0;
	text-decoration: none;
	outline: none;
}

a {
	color: var(--red);
}

a:link,
a:visited,
a:focus,
a:hover {
	outline: none;
	text-decoration: none;
	transition: var(--common-transition);
}

a:hover {
	text-decoration: none;
}

strong {
	font-weight: 700;
	color: var(--black);
}

.btn,
a.btn {
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	padding: 21px 51px;
	background: var(--yellow);
	color: var(--theme-color);
	border-radius: 60px;
	border: 1px solid transparent;
}

.btn:hover {
	background: var(--theme-color);
	color: var(--yellow);
}

.btn.blue-btn {
	background: var(--theme-color);
	color: var(--white);
	padding: 17px 34px;
	font-size: 14px;
	font-weight: 600;
}

.btn.blue-btn:hover {
	background: var(--yellow);
	color: var(--theme-color);
}

.img-resize {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.input-each {
	margin-bottom: 15px;
}

.form-control {
	border-radius: 10px;
	border: 1px solid #6e6e6e;
	background: transparent;
	padding: 16px 25px;
	font-size: 18px;
	line-height: 1;
	color: #525252;
}

textarea.form-control {
	height: 140px;
	resize: none;
}


/* ======== pagination Styles ======== */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 30px;
	width: 100%;
}

.pagination ul li {
	list-style: none;
}

.pagination .page-numbers {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #ffe4aa;
	font-size: 18px;
	color: #080a0a;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.pagination .current>.page-numbers,
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	color: #ffffff;
	background: #ffae00;
}

.pagination .next.page-numbers,
.pagination .prev.page-numbers {
	border: 1px solid #ffae00;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.common-padding {
	padding: 90px 0;
}

/* =========== container adjustments =========== */
/* @media only screen and (min-width: 1499px) {
	.container {
		max-width: 1324px;
	}
} */

/* @media only screen and (min-width: 1700px){
    .container{ max-width: 1624px;}
} */

/* ============ header Start ============ */
.main-header {
	position: relative;
	z-index: 100;
	background: var(--white);
	padding: 0;
}

.main-header .container {
	max-width: 1760px;
	width: calc(100% - 100px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: relative;
}

.logo {
	width: 268px;
}

.logo-block a {
	display: block;
}

.logo-block img {
	width: 100%;
	height: 100%;
}

.donate-mobile {
	display: none;
}

.donate {
	position: absolute;
	right: 0;
	top: 0;
}

.donate a {
	width: max-content;
	background: var(--yellow);
	margin-left: auto;
	height: max-content;
	color: var(--theme-color);
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 33px 50px;
	text-transform: uppercase;
}

.donate a:hover {
	background: var(--theme-color);
	color: var(--yellow);
}

.main-header .navigation {
	position: relative;
	padding: 25px 0;
	margin-left: 10%;
}

.mobile-menu {
	position: fixed;
	top: -100vh;
	right: 0;
	left: 0;
	z-index: 9999;
	height: 100vh;
	display: none;
	transition: all 0.45s ease-in-out;
	background: var(--white);
}

.main-menu ul {
	display: flex;
}

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

.main-menu ul li a {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
	color: var(--theme-color);
	padding: 12px 22px;
	display: block;
	text-transform: capitalize;
	border-radius: 30px;
}

.main-menu ul li a:hover {
	background: var(--theme-color);
	color: var(--white);
}

/* ========== Responsive Menu Icon ========== */
.nav-btn {
	width: 24px;
	height: 22px;
	position: absolute;
	transform: rotate(0deg);
	transition: 0.5s ease-in-out;
	cursor: pointer;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: none;
}

.nav-btn span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	border-radius: 5px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
	background: var(--black);
}

.nav-btn span:nth-child(1) {
	top: 0px;
}

.nav-btn span:nth-child(2) {
	top: 8px;
}

.nav-btn span:nth-child(3) {
	top: 17px;
}

/* .nav-btn.open span:nth-child(1) { top: 14px; transform: rotate(135deg); }
	.nav-btn.open span:nth-child(2) { opacity: 0; left: -30px; }
	.nav-btn.open span:nth-child(3) {  top: 14px; transform: rotate(-135deg); } */
.mobile-menu .nav-btn-close {
	position: relative;
	width: 30px;
	height: 24px;
	vertical-align: top;
	cursor: pointer;
	z-index: 9;
	transition: all 0.45s ease-in-out;
	display: none;
}

.mobile-menu .nav-btn-close .top {
	position: absolute;
	top: 10px;
	width: 100%;
	height: 2px;
	background: var(--black);
	transform: rotate(45deg);
	z-index: 99;
}

.mobile-menu .nav-btn-close .bottom {
	position: absolute;
	top: 10px;
	width: 100%;
	height: 2px;
	background: var(--black);
	transform: rotate(-45deg);
	z-index: 99;
}

.mobile-mid-section {
	display: flex;
	align-items: start;
	height: calc(100vh - 144.7px);
	overflow-y: auto;
	transition: all 0.45s ease-in-out;
	padding-top: 0px;
}

.open .mobile-menu .main-menu {
	display: block;
}

.mobile-mid-section .main-menu ul {
	display: block;
}

.mobile-mid-section .main-menu ul li {
	display: block;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	margin: 0;
}

.mobile-mid-section .main-menu ul li a {
	text-transform: uppercase;
	display: block;
	color: var(--black);
	padding: 10px 0;
	font-size: 14px;
}

/* ========== Sticky Header ========== */

.header-sticky .navigation-bar {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.1);
	animation: slide-down 0.5s;
	transition: var(--common-transition);
	z-index: 11;
}

.header-sticky .top-block {
	display: none;
}

.header-sticky main {
	padding-top: 187.19px;
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Home Page Start */

.banner .item,
.banner {
	position: relative;
	background: #142363;
	line-height: 0;
}

.banner .image {
	position: relative;
	padding-bottom: 52%;

}

.banner .image img {
	opacity: 1;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-info-wrap {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 2;
}

.banner-info {
	max-width: 625px;
	line-height: normal;
}

.banner-info h4 {
	color: var(--yellow);
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.banner-info h1 {
	color: var(--white);
	margin-bottom: 50px;
}

.banner-info h1 span {
	color: var(--yellow);
}

.banner-info p {
	font-size: 20px;
	color: var(--white);
	margin-bottom: 65px;
}

.banner-slider {
	position: relative;
	z-index: 2;
}

.banner-slider .slick-prev,
.banner-slider .slick-prev:hover {
	left: 0px !important;
	background: url('https://eleganteventsny.com/wp-content/themes/elegant/images/banner-prev.svg') no-repeat !important;
	width: 50px;
	height: 78px;
	z-index: 2;
	background-size: contain !important;
}

.banner-slider .slick-next,
.banner-slider .slick-next:hover {
	right: 0px !important;
	background: url('https://eleganteventsny.com/wp-content/themes/elegant/images/banner-next.svg') no-repeat !important;
	width: 50px;
	height: 78px;
	z-index: 2;
	background-size: contain !important;
}

.banner-slider .slick-prev::before,
.banner-slider .slick-next::before {
	display: none;
}

/*======= About Start =======*/
.about-wrap {
	background: #f9f8f6;
	padding-bottom: 150px;
}

.about-info {
	padding-top: 130px;
}

.about-info h2 {
	margin-bottom: 60px;
	color: var(--theme-color);
	text-transform: uppercase;
}

.about-info-inner {
	max-width: 660px;
}

.donate-info-top {
	padding: 46px 43px 50px;
	background: var(--theme-color);
}

.donate-info-inner {
	max-width: max-content;
	margin: -120px 0 0 auto;
	position: relative;
	z-index: 2;
}

.donate-info-top h3 {
	font-size: 30px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 37px;
	line-height: 1.2;
}

.donate-info-top li {
	font-size: 30px;
	font-weight: 700;
	color: var(--yellow);
	padding-right: 22px;
	margin-right: 22px;
	border-right: 1px solid #5f89e6;
}

.donate-info-top li span {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
}

.donate-info-top li:last-child {
	padding: 0;
	margin: 0;
	border: none;
}

.donate-notice-board {
	border-top: 16px solid #1532af;
	padding: 50px 40px 30px;
	background: var(--white);
	box-shadow: 0 0 54px 15px rgba(0, 0, 0, 0.08);
}

.donate-notice {
	/* height: 300px; */
	overflow-y: auto;
}
.donate-notice ul {
    list-style: none;
    padding: 0;
}
.donate-notice ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
}
.donate-notice ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/check-mark.png) no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    z-index: 1;
    content: '';
}

.donate-notice-board p {
	font-weight: 500;
	color: #1f4495;
	margin: 0;
}

.donate-notice-board h4 {
	font-weight: 600;
	color: #1f4495;
}




/* Work Start */
.project-wrap h2 {
	margin-bottom: 60px;
	text-transform: uppercase;
}

.project-each-inn {
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
}

.project-info {
	padding: 30px 20px;
}

.project-info p {
	margin-bottom: 40px;
}

.project-img-holder {
	position: relative;
	padding-top: 67%;
}

/* Upcoming Events */
.events-wrap {
	background: url(../images/event-bg.jpg) no-repeat top;
	background-size: 100% 72%;
	padding: 90px 0 0;
}

.events-wrap h2 {
	color: var(--white);
	margin-bottom: 60px;
	text-transform: uppercase;
}

.event-each-wrap {
	-webkit-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.12);

}

.event-each {
	width: 100%;
	background: var(--white);
	padding: 20px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.event-each .event-img {
	position: relative;
	padding-bottom: 15%;
	max-width: 274px;
	width: 100%;
}

.event-each .event-title {
	padding: 0 48px;
	width: 380px;
	box-sizing: content-box;
	border-right: 1px solid #dcdcdc;
}

.event-each .event-other-info {
	padding: 0 35px;
	border-right: 1px solid #dcdcdc;
	box-sizing: content-box;
	width: 230px;
}

.event-each .event-other-info:last-child {
	border: none;
}

/* Management Teams */
.management-wrap {
	padding: 130px 0;
}

.management-wrap h2 {
	margin-bottom: 60px;
	text-transform: uppercase;
}

.management-img {
	position: relative;
	padding-bottom: 84%;
}

.management-info {
	padding: 20px 30px;
	border: 1px solid #d7d7d7;
	border-top: none;
}

/* ======= Footer Start ======= */
.ftr-top {
	padding: 70px 0 60px;
	background: url(../images/footer-bg.jpg) no-repeat bottom center;
	background-size: cover;
}

.ftr-logo {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ftr-logo p {
	margin: 40px 0 0;
	color: #b5b5b5;
	max-width: 400px;
	width: 100%;
}

.ftr-each h4 {
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 30px;
}

.ftr-top ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ftr-top ul a {
	color: #cfd8fd;
	display: block;
	font-weight: 400;
}

.ftr-top ul li:not(:last-child) {
	margin-bottom: 14px;
}

.ftr-contact-info-each p {
	font-weight: 400;
	margin: 0;
	color: #cfd8fd;
}

footer a:hover,
.ftr-btm ul li a:hover {
	color: var(--yellow);
}

.ftr-social {
	margin-top: 50px;
}

.ftr-social ul {
	gap: 8px;
}

.ftr-social ul a {
	font-size: 22px;
	width: 48px;
	height: 48px;
	transition: var(--common-transition);
}

.ftr-social ul a:hover {
	border-radius: 50%;
	transition: var(--common-transition);
	color: var(--yellow);
}

.ftr-social ul li a.facebook {
	background: #435594;
}

.ftr-social ul li a.twitter {
	background: #239ded;
}

.ftr-social ul li a.youtube {
	background: #d71a25;
}

.ftr-social ul li a.instagram {
	background: #C13584;
}

.ftr-social ul li a.linkedin {
	background: #0674b1;
}

.ftr-top .ftr-social ul li {
	margin: 0;
}

/*********** Inner Page Start ************/
.inner-banner .image {
    padding-bottom: 22.7%;
}
.inner-gallery-wrap {
	padding-top: 60px;
	padding-bottom: 60px;
}
.inner-gallery-wrap .photo-wrap {
	display: flex;
	gap: 13px 15px;
	flex-wrap: wrap;
}
.inner-gallery-wrap .recent-photo-holder {
	position: relative;
	padding-bottom: 22.5%;
	width: calc(100% / 3 - 12px);
	border-radius: 12px;
	overflow: hidden;
}
.recent-photo-holder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-event-wrap {
    background: transparent;
    padding: 90px 0;
}
.inner-event-wrap .event-each-wrap:not(:last-child) {
    margin-bottom: 40px;
}

.contact-wrap h3 {
    text-transform: uppercase;
}
.contact-info-details ul {
	padding: 0;
	list-style: none;
	margin-bottom: 30px;
}
.contact-info-details ul li, .contact-info-details ul li a {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.contact-info-details ul li i {
	color: var(--theme-color);
	font-size: 20px;
	margin-right: 10px;
}
.contact-info-details ul li a:hover {
	color: var(--theme-color);
}

.wpcf7-submit {
    background: #142363;
    color: #fff;
}

.wpcf7-submit:hover {
    background: #239ded;
    color: #fff;
}

.event-details h2 {
	color: var(--theme-color);
	margin-bottom: 12px;
}
.event-details-info ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}
.event-details-info ul li {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 1;
}
.event-details-info ul li i {
	color: var(--theme-color);
	font-size: 14px;
	margin-right: 6px;
	line-height: 1;
}

/*========================================
        Responsive Start
========================================== */
@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1499px) {
	h1 {
		font-size: 45px;
	}

	h2 {
		font-size: 34px;
	}

	h3 {
		font-size: 23px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}

	body {
		font-size: 16px;
	}

	.donate a {
		font-size: 16px;
		gap: 10px;
		padding: 22px 30px;
	}

	.main-menu ul li a {
		font-size: 14px;
		padding: 11px 24px;
	}

	.main-header .navigation {
		padding: 15px 0;
		margin-left: 6%;
	}

	.banner .image {
		padding-bottom: 42.4%;
	}
	.inner-banner .image {
		padding-bottom: 22.7%;
	}
	.event-each .event-title {
		padding: 0 30px;
	}

	.event-each .event-other-info {
		padding: 0 20px;
	}



}

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

	p,
	body {
		font-size: 14px;
		line-height: 1.7;
	}

	.btn,
	a.btn,
	.btn.blue-btn {
		padding: 12px 23px;
		font-size: 14px;
	}

	.logo {
		width: 148px;
	}

	.main-header .navigation {
		padding: 15px 0;
		margin-left: 20px;
	}

	.main-menu ul li a {
		font-size: 14px;
		padding: 9px 14px;
	}

	.main-menu ul {
		gap: 0px;
	}

	.donate a {
		font-size: 14px;
		padding: 20px 20px;
		line-height: 1.8;
	}

	.banner-info h4 {
		font-size: 22px;
		margin-bottom: 6px;
	}

	.banner-info h1 {
		margin-bottom: 20px;
	}

	.banner-info {
		max-width: 300px;
	}

	.banner-info p {
		font-size: 14px;
		color: var(--white);
		margin-bottom: 25px;
	}

	.about-info {
		padding-top: 60px;
	}

	.donate-info-top {
		padding: 30px;
	}

	.donate-info-top h3 {
		font-size: 22px;
		margin-bottom: 18px;
	}

	.donate-info-top li {
		font-size: 20px;
		padding-right: 15px;
		margin-right: 15px;
	}

	.donate-info-top li span {
		font-size: 14px;
	}

	.donate-notice-board {
		border-top: 8px solid #1532af;
		padding: 20px 24px;
	}

	.about-info h5 {
		margin-bottom: 10px;
	}


	.events-wrap h2,
	.management-wrap h2,
	.project-wrap h2,
	.about-info h2 {
		margin-bottom: 30px;
	}

	.donate-notice {
		height: 220px;
		overflow-y: auto;
	}

	.about-wrap {
		padding-bottom: 50px;
	}

	.common-padding {
		padding: 60px 0;
	}

	.events-wrap {
		padding: 60px 0 0;
	}

	.ftr-top {
		padding: 60px 0 40px;
	}

	.event-each .event-img {
		max-width: 200px;
	}


}

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

	.container,
	.container-sm {
		max-width: 96%;
	}

	.main-header {
		padding: 14px 0;
	}

	.donate-mobile {
		display: block;
		position: relative;
		margin-right: 50px;
	}

	.donate-desktop {
		display: none;
	}

	.mobile-logo img {
		height: auto;
		width: auto;
	}

	.mobile-menu .menu-inner .mobile-top-section {
		padding: 15px 0;
		transition: all 0.45s ease-in-out;
	}

	.mobile-menu .menu-inner .mobile-top-section .inner-row {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.main-menu {
		display: none;
	}

	.mobile-menu {
		display: block;
	}

	.open .mobile-menu {
		display: block;
		top: 0;
		transition: all 0.45s ease-in-out;
	}

	.nav-btn,
	.mobile-menu .nav-btn-close {
		display: block;
	}

	h1 {
		font-size: 30px;
	}

	h2 {
		font-size: 26px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}



	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0 0 15px;
	}

	.main-header .container {
		width: calc(100% - 40px);
		margin: 0 20px;
		padding: 0;
		justify-content: space-between;
	}



	.header-top .container {
		display: flex;
	}

	.logo {
		text-align: left;
	}

	.header-top .donate {
		margin-left: auto;
		position: relative;
		right: 30px;
	}

	.donate a {
		width: max-content;
		font-size: 13px;
		padding: 10px 15px;
	}

	.banner-slider .slick-prev,
	.banner-slider .slick-prev:hover,
	.banner-slider .slick-next,
	.banner-slider .slick-next:hover {
		width: 30px;
		height: 48px;
	}

	.banner-info h4 {
		font-size: 18px;
		margin-bottom: 6px;
	}

	.banner-info p {
		font-size: 12px;
		margin-bottom: 25px;
	}

	.donate-info-top {
		padding: 20px;
	}

	.donate-info-top h3 {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.donate-info-top li {
		font-size: 16px;
		padding-right: 12px;
		margin-right: 12px;
	}

	.donate-info-top li span {
		font-size: 12px;
	}

	.donate-info-inner {
		margin: -60px 0 0 auto;
	}

	.donate-notice-board {
		padding: 20px;
	}

	.project-info {
		padding: 20px 15px;
	}

	.project-info p {
		margin-bottom: 20px;
	}

	.event-each .event-img {
		max-width: 140px;
	}

	.event-each .event-title,
	.event-each .event-other-info {
		padding: 0 15px;
	}

	.event-each .event-title h4,
	.event-each .event-other-info h5 {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.event-each .event-title p,
	.event-each .event-other-info p {
		font-size: 13px;
	}

	.event-each {
		padding: 15px 10px;
	}

	.management-info {
		padding: 15px 10px;
	}

	.ftr-social ul a {
		font-size: 16px;
		width: 38px;
		height: 38px;
	}

	.ftr-each h4 {
		margin-bottom: 14px;
		font-size: 16px;
	}

	.ftr-logo img {
		width: 200px;
	}


}

@media only screen and (max-width: 767px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 16px;
	}

	.management-each {
		width: 50%;
		margin-bottom: 30px;
	}

	.banner-info h4 {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.banner-info h1 {
		margin-bottom: 20px;
		font-size: 20px;
	}

	.donate-info-top {
		padding: 10px;
	}

	.donate-info-top h3 {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.donate-info-top li {
		font-size: 14px;
		line-height: 1.3;
		padding-right: 9px;
		margin-right: 9px;
	}

	.donate-notice-board {
		padding: 10px;
	}

	.about-info {
		padding-top: 30px;
	}

	.about-wrap {
		padding-bottom: 30px;
	}

	.events-wrap h2,
	.management-wrap h2,
	.project-wrap h2,
	.about-info h2 {
		margin-bottom: 20px;
	}

	.common-padding {
		padding: 30px 0;
	}

	.project-info {
		padding: 15px 10px;
	}

	.project-info h4 {
		font-size: 14px;
		margin-bottom: 6px;
	}

	p,
	body {
		font-size: 12px;
		line-height: 1.7;
	}

	.btn,
	a.btn,
	.btn.blue-btn {
		padding: 11px 19px;
		font-size: 12px;
	}

	.events-wrap {
		padding: 30px 0 0;
	}

	.event-each {
		flex-wrap: wrap;
	}

	.event-each .event-title {
		border: none;
	}

	.event-each .event-other-info {
		margin-top: 20px;
	}

	.ftr-social ul a {
		font-size: 14px;
		width: 28px;
		height: 28px;
	}

	.ftr-top {
		padding: 30px 0;
	}

	.donate-info-inner {
		margin: -40px 0 0 auto;
	}


}


@media screen and (max-width: 575px) {
	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 16px;
	}

	h5 {
		font-size: 16px;
	}

	.btn,
	a.btn {
		padding: 9px 16px;
		font-size: 14px;
	}

	.donate-mobile {
		margin-right: 40px;
	}

	.donate a {
		width: max-content;
		font-size: 12px;
		padding: 6px 11px;
		gap: 5px;
	}

	.banner .image {
		padding-bottom: 60%;
	}
	.inner-banner .image {
		padding-bottom: 22.7%;
	}
	.banner-info h1 {
		margin-bottom: 10px;
		font-size: 20px;
	}

	.banner-info p {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.donate-info-inner {
		margin: 0 auto;
		max-width: 300px;
	}

	.donate-info-top h3 {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.donate-info-top li {
		font-size: 20px;
		line-height: 1.3;
		padding-right: 16px;
		margin-right: 16px;
	}

	.donate-info-top,
	.donate-notice-board {
		padding: 20px;
	}

	.project-each {
		margin-bottom: 30px;
	}

	.event-each .event-img {
		max-width: 200px;
		margin: 0 auto 25px;
		padding-bottom: 27%;
	}

	.event-each .event-title,
	.event-each .event-other-info {
		border: none;
		width: 100%;
		text-align: center;
	}

	.ftr-each:not(:last-child) {
		margin-bottom: 30px;
	}

	.ftr-top ul li:not(:last-child) {
		margin-bottom: 8px;
	}

	.ftr-top .ftr-social ul li {
		margin: 0;
	}

}