* {
	padding: 0;
	margin: 0;
	-webkit-background-origin: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: 10px;
}

body {
	font-family: 'Rufina', serif;
	font-size: 1.8rem;
	color: #6C6967;
}

/*  Tags  */

a {
	text-decoration: none;
	padding: 0;
	margin: 0;

	cursor: pointer;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

h1 {
	font-size: 6rem;
	font-family: 'Trirong', serif;
	font-weight: 700;
}

h2 {
	font-size: 5.5rem;
	font-weight: 700;
	color: #484848;
}

h3 {
	font-family: 'Rufina', serif;
	font-size: 1.8rem;
}

img {
	width: 100%;
}

/*  Containers  */

.container_fluid {
	width: 100%;
	margin: 0;
}

.container {
	width: 1470px;
	margin: 0 auto;
}

.container_medium {
	width: 1455px;
	margin: 0 auto;
}

.container_small {
	width: 1345px;
	margin: 0 auto;
}

/*  Columns  */

.columns_wrap {
	margin-right: -30px;
}

.column {
	display: inline-block;
	vertical-align: top;
	padding-right: 30px;
	padding-bottom: 30px;
}

.column_1-2 {
	width: 50%;
}

.column_1-5 {
	width: 20%;
}

.column_1-8 {
	width: 12.5%;
}

/*  Buttons  */

.btn {
	display: inline-block;
	font-family: 'Trirong', serif;
	font-weight: 700;
	font-size: 2rem;
}

.btn:hover {
	outline: none;
}

/*  Header  */

.header-wrap {
	width: 100%;
	height: 100vh;
	min-height: 990px;
	/* background: #637B84 url('../images/header/Cross.png') 50% 57% no-repeat;
	-webkit-background-size: 40.5%;
	background-size: 40.5%; */
	background: url('../images/header/bg-header.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.header_logo {
	width: 18rem;
	margin-top: .3rem;
}

.header_top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 5rem 9rem;
}

.header_button {
	margin-left: auto;
	margin-top: -.1rem;
}

.header_btn {
	padding: 1.4rem 3.85rem;
	border: .3rem solid #fff;
	border-radius: 4rem;
	color: #fff;
	background: #637B84;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;

	position: relative;
	z-index: 100;
}

.header_btn:hover {
	background-color: #fff;
	color: #637B84;
}

/* Header images */

.header_img {
	position: absolute;
}

.header_img-first {
	width: 24.6%;
	top: 27.4%;
	right: -5%;
}

.header_img-second {
	width: 23.5%;
	bottom: 6.5%;
	right: 6.2%;
}

.header_img-third {
	width: 20.5%;
	bottom: 11.1%;
	left: 8.6%
}

.header_img-fourth {
	width: 24.5%;
	top: 25.7%;
	left: -6.4%;
}

.header_img-fifth {
	width: 18.4%;
	top: -5.8%;
	left: 27.5%;
}

.header_img-sixth {
	width: 13%;
	top: 4.3%;
	right: 28%;
}

/*  Intro  */

.intro .container_small {
	height: 100%;
}

.intro_inner {
	text-align: center;
	padding: 30rem 10rem 0;
	position: relative;
	z-index: 100;
	height: 100%;
}

.intro_title {
	line-height: 1.18em;
	color: #fff;
	text-shadow: 0 0 .5px #000;
}

.intro_btn {
	margin-top: 4.24rem;
	padding: 1.5rem 4rem;
	border-radius: 4rem;
	color: #fff;
	background-color: #EB763C;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.intro_btn:hover {
	background-color: #fff;
	color: #EB763C;
}

/*  Demo  */

.demo-wrap {
	background-color: #F9F7F5;
	padding: 13.8rem 0 8.9rem;
	overflow: hidden;
}

.demo_text {
	text-align: center;
	padding-bottom: 5.2rem;
}

.subtitle {
	color: #7DB5CB;
	font-family: 'Trirong', serif;
	font-weight: 700;
}

.demo_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	margin-right: -6rem;
}

.demo_item {
	padding-right: 6rem;
	padding-bottom: 6rem;	
}

.demo_item img {
	display: block;
	-webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.16);
	-moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.16);
	box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.16);
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
}

.demo_item:hover img {
	opacity: .6;
}

.demo_gradient {
	background: linear-gradient(to top, #3D3D3D, #808080);
	position: relative;

	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.demo_button-wrap {
	width: 100%;
	position: absolute;
	bottom: 18%;
	left: 0;
	text-align: center;

	transform: translate3d(0, 18%, 0);

	z-index: 2;
}

.demo_btn {
	padding: 1.5rem 4.6rem;
	border-radius: 4rem;
	color: #fff;
	background-color: #EB763C;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	opacity: 0;
	/* display: none; */
	display: inline-block;
}

.demo_gradient:hover .demo_btn {
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	opacity: 1;
	
}

.demo_btn:hover {
	background-color: #fff;
	color: #EB763C;
}

/*  Events  */

.events-wrap {
	padding: 14rem 0 7.6rem;
}

.events_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}

.events_text {
	width: 36%;
	padding-bottom: .5rem;
}

.par {
	margin-top: 4.5rem;
	line-height: 1.39em;
}

.view_btn {
	margin-top: 5rem;
	padding: 1.6rem 4.5rem;
	border-radius: 4rem;
	color: #282828;
	background-color: #F9E699;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.view_btn:hover {
	background-color: #647D85;
	color: #fff;
}

.events_img {
	width: 52%;
	margin-right: -.3rem;
}

/*  Donations  */

.donations-wrap {
	background: url('../images/sections/donations/donations-bckgrnd.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 13.8rem 0 12.5rem;
}

.donations_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}

.donations_img {
	width: 53%;
	margin-left: -.5rem;
}

.donations_text {
	width: 40.5%;
	padding-right: 8rem;
	padding-bottom: 1.4rem;
	color: #fff;
}

.donations_text .title {
	color: #fff;
}

/* Slider */

.slider-wrap {
	padding: 13.5rem 0 14.8rem;
}

.slider_inner {
	text-align: center;
}

.slider_title {
	margin-bottom: .3rem;
}

.swiper-wrapper {
	margin-top: 5rem;
	margin-bottom: 1rem;
}

.swiper-container {
	padding-bottom: 6.8rem;
}

.swiper-slide img {
	margin-bottom: 1.5rem;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.11);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.11);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.11);
}

.swiper-slide h5 {
	font-family: 'Trirong', sans-serif;
	font-size: 1.8rem;
	font-weight: bold;
	color: #6C6967;

}

.swiper-scrollbar-drag {
	background-color: #FF1000;
	border-radius: 0;
}

.swiper-scrollbar {
	width: 4rem;
	margin: 0 auto;
	height: .05rem;
}

.swiper-container-horizontal>.swiper-scrollbar {
	width: 37.5% !important;
	height: .25rem;
	left: 50%;
	transform: translateX(-50%);
}

/* Plugins */

.plugins-wrap {
	background: #647D85;
	text-align: center;
	padding: 14rem 0 11.4rem;
	overflow: hidden;
}

.plugins_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;

	margin-top: 4.8rem;
}

.plugins_inner.columns_wrap {
	margin-right: -93px;
}

.plugins_title {
	color: #fff;
}

.plugins_subtitle {
	color: #F9E699;
}

.plugins_item.column {
	padding-right: 93px;
}

.plugins_caption {
	margin-top: 2.2rem;
	line-height: 1.4em;
	color: #fff;
}

/*  Blog */

.blog-wrap {
	padding: 12.5rem 0 7.1rem;
}

.blog_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}

.blog_text {
	width: 35%;
	padding-bottom: 5rem;
	color: #484848;
}

.blog_par {
	color: #6C6967;
}

.blog_img {
	width: 55.5%;
	padding-top: 2.5rem;
	margin-right: -1.7rem;
}

/*  Features  */

.features-wrap {
	padding: 13.5rem 0 7.8rem;
	text-align: center;

	background: #F9F7F5;
	overflow: hidden;
}

.features_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 5.8rem;
	padding-left: .8rem;
}

.features_inner.columns_wrap {
	margin: 0;
}

.features_item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: flex-end;
}

.features_item.column {
	padding: 0 0 7rem;
}

.features_img {
	height: 46%;
}

.features_item:nth-child(1) .features_img {
	width: 30%;
	height: 46%;
	margin-bottom: 2.7rem;
}

.features_item:nth-child(2) .features_img {
	width: 28.5%;
	height: 44%;
	margin-bottom: 3.2rem;
}

.features_item:nth-child(3) .features_img {
	width: 27%;
	height: 46%;
	margin-bottom: 2.9rem;
}

.features_item:nth-child(4) .features_img {
	width: 30%;
	height: 46%;
	margin-bottom: 2.9rem;
}

.features_item:nth-child(5) .features_img {
	width: 25%;
	height: 38%;
	margin-bottom: 3.7rem;
}

.features_item:nth-child(6) .features_img {
	width: 30%;
	height: 45%;
	margin-bottom: 2.8rem;
}

.features_item:nth-child(7) .features_img {
	width: 25.2%;
	height: 38%;
	margin-bottom: 3.6rem;
}

.features_item:nth-child(8) .features_img {
	width: 28%;
	height: 42%;
	margin-bottom: 3.4rem;
}

.features_item:nth-child(9) .features_img {
	width: 35%;
	height: 55%;
	margin-bottom: 2rem;
}

.features_item:nth-child(10) .features_img {
	width: 28%;
	margin-bottom: 2.8rem;
}

.features_caption {
	line-height: 1.6em;
	letter-spacing: .01em;
	font-family: 'Rufina', serif;
	font-weight: 400;
	font-size: 2rem;
}

/*  Footer  */

.footer-wrap {
	background: url(../images/footer/footer-1.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;

	text-align: center;

	padding: 12.2rem 0 15rem;
}

.footer_inner {
	padding: 0 15rem;
}

.footer_title {
	font-family: 'Trirong', serif;
	font-size: 7rem;
	font-weight: bold;
	color: #fff;
	line-height: 1em;
}

.footer_title span {
	font-family: "Rough Brush Script", 'Kaushan Script', cursive;
	font-size: 19.6rem;
	font-weight: 400;
	line-height: .43em;
	margin-bottom: -2rem;
	display: block;
	color: #F9E699;
}

.footer_btn {
	background: #EB763C;
	padding: 1.6rem 4rem;
	color: #fff;
	border-radius: 4rem;
	margin-top: 4.5rem;
}

.footer_btn:hover {
	background-color: #647D85;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.footer_title span {
		font-family: "Rough Brush Script", 'Kaushan Script', cursive;
		font-weight: 400;
	}
}

/*LOADER*/

#loader {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 1000;
	transition: 0.3s ease opacity;
}
#loader:before,
#loader:after {
	content: '';
	width: 80px;
	height: 80px;
	border: 2px solid #EB763C;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	animation-name: loaderCircleAnim;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
#loader:after {
	animation-delay: 1s;
}
@keyframes loaderCircleAnim {
	0% {
		width: 0;
		height: 0;
		opacity: 0;
	}
	10% {
		width: 10px;
		height: 10px;
		opacity: 1;
	}
	80% {
		width: 60px;
		height: 60px;
		opacity: 0.1;
	}
	100% {
		width: 70px;
		height: 70px;
		opacity: 0;
	}
}