@import url('https://fonts.googleapis.com/css?family=Poppins:900i');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;700&display=swap');

/* Preloader */

.preloader {
	display:block;
   width: 100%;
   height: 100%;
   position: fixed;
   top: 0;
   left: 0;
   background-color: #fff;
   z-index: 100000;	
}

.load-logo {
	width: 150px;
	margin-bottom: 10px;
}

.wrapperanimate{
    width:200px;
	margin-left: 175px;
    transform: translate(-50%, -50%);
}

.circle {
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #43b02a;
    left:15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shadow:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.wrapperanimate span{
    position: absolute;
    top:75px;
	font-family: Montserrat, sans-serif;
	font-weight: 700;
    font-size: 20px;
	text-align: center;
    letter-spacing: 12px;
    color: #222;
    left:10%;
}



  


/* Header */

.green-gradient {
	background-image: linear-gradient(to top, rgba(14, 206, 30, 0.7), rgba(0, 0, 0, 0.7));
}

.header-buttons {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.button-wrapper {
	padding: 10px 20px;
}

.duck-button {
	cursor: pointer;
	width: 200px;
	transition: all .5s ease;
	color: #fff;
	border: 3px solid white;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	font-size: 17px;
	letter-spacing: 1px;
	background-color: transparent;
	padding: 10px;
	outline: none;
	border-radius: 4px;
}

.duck-button:hover {
	color: #43b02a;
	background-color: #fff;
}

.scroll-down {
	cursor: pointer;
	position: absolute;
	left: 50%;
	bottom: 80px;
	display: block;
	text-align: center;
	font-size: 20px;
	z-index: 100;
	text-decoration: none;
	text-shadow: 0;
	width: 20px;
	height: 20px;
	border-bottom: 5px solid #fff;
	border-right: 5px solid #fff;
	z-index: 9;
	left: 50%;
	-webkit-transform: translate(-50%, 0%) rotate(45deg);
	-moz-transform: translate(-50%, 0%) rotate(45deg);
	transform: translate(-50%, 0%) rotate(45deg);
	-webkit-animation: fade_move_down 2s ease-in-out infinite;
	-moz-animation: fade_move_down 2s ease-in-out infinite;
	animation: fade_move_down 2s ease-in-out infinite;
}

@-webkit-keyframes fade_move_down {
	0% {
		-webkit-transform: translate(0, -10px) rotate(45deg);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		-webkit-transform: translate(0, 10px) rotate(45deg);
		opacity: 0;
	}
}

@-moz-keyframes fade_move_down {
	0% {
		-moz-transform: translate(0, -10px) rotate(45deg);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		-moz-transform: translate(0, 10px) rotate(45deg);
		opacity: 0;
	}
}

@keyframes fade_move_down {
	0% {
		transform: translate(0, -10px) rotate(45deg);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translate(0, 10px) rotate(45deg);
		opacity: 0;
	}
}

/* Navbar */

.nav-bar-compact {
	min-height: 40px;
	position: fixed;
	top: 10px;
	left: 10px;
	background: rgba(0, 0, 0, 0);
	cursor: pointer;

	-webkit-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);

	z-index: 201;
}

.nav-bg, .js-nav-bg {
	background: rgba(18, 18, 18, .93);
}

.nav-logo-wrap {
	float: left;
	min-width: 120px;
	max-width: 250px;
	height: 65px;
	padding: 0 20px;

	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.nav-logo {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	left: 0;
	top: 50%;
	float: left;

	text-align: left;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, .9);

	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.nav-logo img {
	max-height: 100%;
}


.nav-menu-button {
	width: 68px;
	height: 65px;
	position: relative;
	float: left;
	border-left: 1px solid rgba(255, 255, 255, .1);
}

.nav-menu-icon {
	display: block;
	width: 27px;
	height: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -14px;
	background: rgba(255, 255, 255, .9);

	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.nav-menu-button:active .nav-menu-icon {
	-webkit-transform: translateX(1px) translateY(1px);
	-moz-transform: translateX(1px) translateY(1px);
	transform: translateX(1px) translateY(1px);
}

.nav-bg .nav-menu-icon,
.js-nav-bg .nav-menu-icon {
	opacity: 1;
}

.nav-menu-icon:before {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	top: -7px;
	left: 0;
	background: rgba(255, 255, 255, .9);

	-webkit-transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.nav-menu-icon:after {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 7px;
	left: 0;
	background: rgba(255, 255, 255, .9);

	-webkit-transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: background 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.nav-bar-compact:hover,
.nav-bar-compact.js-opened,
.nav-bg:hover,
.js-nav-bg:hover {
	background: rgba(18, 18, 18, .93);
}

.nav-bar-compact:hover .nav-menu-icon,
.nav-bar-compact.js-opened .nav-menu-icon {
	background: rgba(255, 255, 255, .3);
}

.nav-bar-compact.js-opened .nav-menu-icon {

	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);

}

.nav-bar-compact:hover .nav-menu-icon:before,
.nav-bar-compact.js-opened .nav-menu-icon:before {
	background: rgba(255, 255, 255, .3);
}

.nav-bar-compact:hover .nav-menu-icon:after,
.nav-bar-compact.js-opened .nav-menu-icon:after {
	background: rgba(255, 255, 255, .3);
}

.nav-menu-wrap {
	display: none;
	width: 100%;
	overflow-y: auto;
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(18, 18, 18, .93);
	border-top: 1px solid rgba(255, 255, 255, .1);
	opacity: 0;

	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transition: all 0.19s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.19s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.19s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.19s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.19s cubic-bezier(0.000, 0.000, 0.580, 1.000);

	-webkit-transform: perspective(200px) rotateX(15deg) scale(0.75);
	-moz-transform: perspective(200px) rotateX(15deg) scale(0.75);
	-o-transform: perspective(200px) rotateX(15deg) scale(0.75);
	-ms-transform: perspective(200px) rotateX(15deg) scale(0.75);
	transform: perspective(200px) rotateX(15deg) scale(0.75);

}

.nav-menu-wrap, .js-opened {
	max-height: 852px;
	display: block;
}

.nav-bar-compact.js-opened .nav-menu-wrap {
	-webkit-transform: perspective(200px) rotateX(0deg) scale(1);
	-moz-transform: perspective(200px) rotateX(0deg) scale(1);
	-o-transform: perspective(200px) rotateX(0deg) scale(1);
	-ms-transform: perspective(200px) rotateX(0deg) scale(1);
	transform: perspective(200px) rotateX(0deg) scale(1);

	opacity: 1;
}

.nav-menu-links,
.nav-menu-links ul {
	margin: 0;
	padding: 10px 0;
	line-height: 1.3;
}

.nav-menu-links ul.nav-sub {
	padding: 0;
}

.nav-menu-links a {
	display: block;
	position: relative;
	margin: 0;
	padding: 9px 20px;
	color: #999;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;

	-webkit-tap-highlight-color: rgba(255, 255, 255, .1);

	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);

	z-index: 11;
}

.nav-menu-links a:hover,
.nav-menu-links a:active,
.nav-menu-links li.js-opened>a {
	color: #43b02a;
	text-decoration: none;
}

.nav-menu-links li {
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.nav-menu-links li>a:before {
	content: "";
	display: block;
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .1);

	-webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	-ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);

	z-index: 10;
}

.nav-menu-links li>a:hover:before {
	width: 100%;
}

.nav-menu-links li.js-opened:before {
	display: none;
}

.green-text {
	color: #43b02a !important;
}

/* BOOK AD */

.ad-wrapper {
	background-color: #a1dce8;
}

/* LOGO ANIMATED BG */
.canvas-wrapper {
    position: relative;
    height: 100vh;
}

#canvas-basic {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* SECTIONS */

.section-heading {
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 40px;
}

.section-heading-small {
	font-family: Montserrat, sans-serif;
	font-size: 30px;
	font-weight: 700;
}

.charity {
	width:250px;
}

.charity-text {
	height: 100%;
}

.message-box {
	height: 100px;
}

.contact-form .error{
    margin-top: 20px;
    padding: 13px 20px;
    text-align: center;
    background: rgba(228,25,25, .75);
    color: #fff;
}
.contact-form .success{
    margin-top: 20px;
    padding: 13px 20px;
    text-align: center;
    background: rgba(50,178,95, .75);
    color: #fff;
}

.copyright {
	background-color: #111;
	color: #43b02a;
	cursor: default;
}





/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
	margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
	color: #FFF;
	font-size: 14px;
	margin: 5px;
	padding: 4px 7px;
	background: #D6D6D6;
	display: inline-block;
	cursor: pointer;
	border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
	background: #43b02a;
	color: #FFF;
	text-decoration: none
}

.owl-theme .owl-nav .disabled {
	opacity: .5;
	cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: block;
	backface-visibility: visible;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #43b02a
}