/*-----------------------------
MASTER ITEMS
-----------------------------*/
html,
body{
	padding: 0px;
	margin: 0px;
	background-color: #ffffff;
}

body{
	position: relative;
	width: 100vw;
	height: auto;
	overflow-x: hidden;
}

section{
	width: 80%;
	max-width: 900px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spacer{
	height: 80px;
}

.imgWrap{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}

.imgWrap img{
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.innerSection{
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;

	position: relative;
}

.greenButtonLarge,
.greenButtonSmall,
.greenButtonSmallOutline{
	background-color: #77C5A3;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border-radius: 10px;

	padding-left: 25px;
	padding-right: 25px;
	padding-top: 10px;
	padding-bottom: 10px;

	transition: all .25s ease;
}

.greenButtonSmallOutline{
	background-color: transparent;
	border: 2px solid #77C5A3;
	transition: all .25s ease;
}

.greenButtonLarge:hover,
.greenButtonSmall:hover{
	background-color: #022D3B;

	transition: all .25s ease;
}

.greenButtonSmallOutline:hover{
	background-color: #77C5A3;
	transition: all .25s ease;
}

.greenButtonLarge p{
	color: #ffffff;
	font-size: 25px;
	margin:  0px;
}

.greenButtonSmall p,
.greenButtonSmallOutline p{
	color: #ffffff;
	font-size: 15px;
	margin:  0px;
}

@media screen and (min-width: 1500px) {
	section{
		max-width: 1200px;
	}

	.spacer{
		height: 150px;
	}
}

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

	section{
		width: 90%;
	}

	.greenButtonLarge p{
		color: #ffffff;
		font-size: 20px;
		margin:  0px;
	}

}

/*Fonts-------------*/

h1{
	font-family: 'Varela Round', sans-serif;
	font-size: 30px;
	line-height: 45px;
}

.hero h1,
.heroSmall h1,
.contactBanner h1{
	font-size: 50px;
	line-height: 55px;
}

h2{
	font-family: 'Varela Round', sans-serif;
	font-size: 45px;
	line-height: 50px;
}

h3{
	font-family: 'Varela Round', sans-serif;
}

h4{
	font-family: 'Varela Round', sans-serif;
}

p,
li{
	font-family: 'Varela Round', sans-serif;
	font-size: 18px;
}

a{
	font-family: 'Varela Round', sans-serif;
}

@media screen and (min-width: 1500px) {
	h1{
		font-family: 'Varela Round', sans-serif;
		font-size: 40px;
		line-height: 55px;
	}

	.hero h1,
	.heroSmall h1,
	.contactBanner h1{
		font-size: 70px;
		line-height: 75px;
	}
}

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

h1{
	font-size: 30px;
	line-height: 45px;
}

.hero h1,
.heroSmall h1,
.contactBanner h1{
	font-size: 50px;
	line-height: 55px;
}

h2{
	font-family: 'Varela Round', sans-serif;
	font-size: 25px;
	line-height: 30px;
}

}

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

h1{
	font-size: 25px;
	line-height: 40px;
}

.hero h1,
.heroSmall h1,
.contactBanner h1{
	font-size: 40px;
	line-height: 45px;
}

h2{
	font-family: 'Varela Round', sans-serif;
	font-size: 20px;
	line-height: 25px;
}

}

/*Fonts END-------------*/

/*Colors----------*/

.blueYellowOverlay{
	background: rgb(11,166,236);
	background: -moz-linear-gradient(45deg, rgba(11,166,236,1) 0%, rgba(255,209,0,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(11,166,236,1) 0%, rgba(255,209,0,1) 100%);
	background: linear-gradient(45deg, rgba(11,166,236,1) 0%, rgba(255,209,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0ba6ec",endColorstr="#ffd100",GradientType=1);

	mix-blend-mode: hard-light;

	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 10;
}

.yellowBlueOverlay{
	background: rgb(255,209,0);
	background: -moz-linear-gradient(45deg, rgba(255,209,0,1) 0%, rgba(11,166,236,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(255,209,0,1) 0%, rgba(11,166,236,1) 100%);
	background: linear-gradient(45deg, rgba(255,209,0,1) 0%, rgba(11,166,236,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#0ba6ec",GradientType=1);

	mix-blend-mode: hard-light;

	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 10;
}

.blueBaseOverlay{
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 9;
	background-color: #022D3B;
	opacity: .3;
	mix-blend-mode: multiply;
}

/*Colors END----------*/

/*-----------------------------
MASTER ITEMS END
-----------------------------*/

/*-----------------------------
HERO
-----------------------------*/

.hero{
	height: calc(100vh - 70px); /*full-screen - height of header*/
	width: 100vw;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.heroSmall{
	height: calc(50vh - 70px);
	width: 100vw;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.hero video{
	position: absolute;
	object-fit: cover;
	height: 100%;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.heroTextWrap{
	position: relative;
	z-index: 12;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hero h1,
.heroSmall h1{
	text-align: center;
	color: #ffffff;
	text-shadow: 2px 2px 5px #000000;
}

.hero .greenButtonLarge{
	box-shadow: 2px 2px 5px #000000;
}


/*Color Boxes--------------*/

.colorBoxWrap{
	position: absolute;
	margin: auto;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30%;
	width: 100%;

	z-index: 11;
}


.heroSmall .colorBoxWrap{
	position: absolute;
	margin: auto;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	width: 100%;

	z-index: 11;
}

.colorBox{
	position: absolute;
	width: 30%;
	height: 100vh;
	top: 0;
	opacity: .75;
	border-radius: 10px;
}

#boxOne{
	background-color: #EC6285;
	mix-blend-mode: hard-light;

	margin-top: 3%;
	left: -5vw;
	z-index: 2;
}

#boxTwo{
	background-color: #FED47C;
	mix-blend-mode: hard-light;

	margin-top: 0%;
	left: 15vw;
	z-index: 1;
}

#boxThree{
	background-color: #77C5A3;
	mix-blend-mode: multiply;

	margin-top: 5%;
	right: 33vw;
	z-index: 2;
}

#boxFour{
	background-color: #FED47C;
	mix-blend-mode: hard-light;

	margin-top: 10%;
	right: 10vw;
	z-index: 1;
}

#boxFive{
	background-color: #EC6285;
	mix-blend-mode: hard-light;

	margin-top: 6%;
	right: -5vw;
	z-index: 2;
}

@media screen and (min-width: 1500px) {
	.hero{
		height: calc(100vh - 130px); /*full-screen - height of header*/
		width: 100vw;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}

	.heroSmall{
		height: calc(50vh - 130px);
		width: 100vw;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}

	.colorBoxWrap{
		position: absolute;
		margin: auto;
		bottom: 0;
		left: 0;
		right: 0;
		height: 30%;
		width: 100%;

		z-index: 11;
	}
}

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

	.colorBoxWrap{
		height: 20%;
	}

	.heroSmall .colorBoxWrap{
		height: 30%;
	}

	#boxFour,
	#boxFive{
		display: none;
	}

	.colorBox{
		width: 48%;
	}

	#boxTwo{
		left: 30vw;
	}

	#boxThree{
		right: -5vw;
	}
}

/*Color Boxes END--------------*/



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

header{
	position: sticky;
	margin: auto;
	top: 0;
	background-color: #ffffff;
	height: 70px;
	width: 100%;
	z-index: 999;
	box-shadow: 0px 0px 10px #888;
	margin-bottom: 100px;
}

.headerLogo{
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
	height: 150%;
	margin-bottom: 9px;
	transition: all .25s ease;
}

nav{
	position: absolute;
	bottom: 0;
	width: 100%;
}

/*Mobile Nav Button-----------*/

#mobile-nav{
	display: none;
}

.mobile-nav{
	height: calc(100vh - 70px); /*full-screen - height of header*/
	width: 100vw;
	background-color: #022D3B;
	position: absolute;
	z-index: 996;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	top: 0;
	overflow-y: scroll;
}

.mobile-nav section{
	flex-direction: column;
	width: auto;
	align-items: stretch;
	padding-top: 25px;
	padding-bottom: 25px;
}

.mobile-nav h3{
	position: relative;
	color: #ffffff;
	text-align: center;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	color: #77C5A3;
	font-weight: 400;
}

.mobile-nav h3:after{
	content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background-color: #77C5A3;
  height:2px;
  border-radius: 999px;
}

.mobile-nav li{
	list-style-type: none;
	background-color: transparent;
	border: 2px solid #77C5A3;
	border-radius: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
	transition: all .25s ease;
}

.mobile-nav li:hover{
	background-color: #77C5A3;
}

.mobile-nav li a{
	text-decoration: none;
	color: #ffffff;
	font-size: 25px;
	padding: 10px 20px 10px 20px;
	display: block;
}

.navLogo{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 50vw;
	opacity: 0.1;
}

button:focus,
button:active,
button:visited,
button:hover{
	background-color: transparent !important;
}

.mobile-nav-button{
	height: 40px;
	width: 40px;
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;

	position: absolute;
	margin: auto;
	right: 25px;
	top: 0;
	bottom: 0;
	overflow: visible;
	display: flex;
}

.mobile-nav-button:hover .hamburger{
	background-color: #77C5A3;
	transition: all 0.25s ease;
}

.hamburger{
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	height: 3px;
	width: 20px;
	border-radius: 999px;
	background-color: #022D3B;
	transition: all 0.25s ease;
}

#burger-one,
#burger-two{
	transform: rotate(0deg);
}

#burger-one{
	top: 15px;
}

#burger-two{
	bottom: 15px;
}

.popup { display: none; }
.popup.show { display: flex; }
.popup-shown { overflow: hidden; }

@media screen and (min-width: 1500px) {
	header{
		height: 130px;
		margin-bottom: 200px;
	}

	.headerLogo{
		margin-bottom: 16px;
	}

	.mobile-nav{
		height: calc(100vh - 130px); /*full-screen - height of header*/
	}
}


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

	.hero{
		height: calc(100vh - 70px); /*full-screen - height of header*/
	}

	.headerLogo{
		margin-bottom: 9px;
	}

	.mobile-nav{
		height: calc(100vh - 70px); /*full-screen - height of header*/
	}

	.mobile-nav li a{
		font-size: 18px;
	}
}

/*Header END--------------*/

/*-----------------------------
HERO END
-----------------------------*/


/*-----------------------------
CONTENT BLOCKS
-----------------------------*/

.contentWrap{
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/*Callout Header-----------------*/

.calloutHeader{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	margin-bottom: 50px;
}

.calloutColorBox{
	position: absolute;
}

#calloutBoxOne{
	background-color: #EC6285;
	mix-blend-mode: multiply;
	opacity: 0.14;
	border-radius: 10px;
	height: 100%;
	width: 45%;
	top: -40px;
	left: 0;
	z-index: 3;
}

#calloutBoxTwo{
	background-color: #77C5A3;
	mix-blend-mode: multiply;
	opacity: 0.14;
	border-radius: 10px;
	height: 100%;
	width: 45%;
	bottom: -40px;
	right: 0;
	z-index: 3;
}

#calloutBoxThree{
	background-color: #FED47C;
	mix-blend-mode: multiply;
	opacity: 0.25;
	height: 100%;
	width: 100%;
	z-index: 4;
}

.calloutHeader h1{
	position: relative;
	text-align: center;
	font-weight: 400;
	color: #022D3B;
	margin-right: 10%;
	margin-left: 10%;
	z-index: 5;
}

/*Callout Header END-----------------*/

/*Basic Paragraph-----------------*/

.basicParagraph{
	flex-direction: column;
}

.basicParagraph p{
	width: 100%;
	color: #022D3B;
}

.basicParagraph a{
	color: #49B184;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.25s ease;
}

.basicParagraph a:hover{
	color: #022D3B;
	transition: all 0.25s ease;
}

.basicParagraph figure{
	position: relative;
	width: 100%;
	background-color: #f4f4f4;
}

.basicParagraph figure img{
	width: 100%;
	margin: 0px;
	object-fit: contain;
	max-height: 50vh;
	display: block;
}

/*Basic Paragraph END-----------------*/

/*Basic Headline-----------------*/

.basicHeadline{
	display: flex;
	flex-direction: column;
	margin-bottom: 25px;
}

.basicHeadline h1,
.basicHeadline h4{
	text-align: center;
	font-weight: 400;
	margin-right: 10%;
	margin-left: 10%;
}

.basicHeadline h1{
	color: #022D3B;
	margin: 0px;
}

.basicHeadline h4{
	font-size: 15px;
	line-height: 25px;
	color: #49B184;

	margin-top: 0px;
}

/*Basic Headline END-----------------*/

/*Image Gallery-----------------*/

.imageGallery{
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.imageGallery figure{
	position: relative;
	background-color: #f4f4f4;
	margin: 0px;
	flex: 1;
	overflow: hidden;
	height: 30vh;
	flex-basis: 400px;
}

.imageGallery figure img{
	width: 100%;
	margin: 0px;
	object-fit: cover;
	max-height: 50vh;
	display: block;
	position: absolute;
	height: 100%;
}

/*Image Gallery END-----------------*/

/*Video Block-----------------*/

.videoBlock iframe{
	width: 100%;
	height: 50vw;
	min-height: 400px;
	max-height: 50vh;
}

/*Video Block END-----------------*/

/*Files Block-----------------*/

.filesBlock{
	flex-direction: column;
}

.filesBlock a{
	background-color: #f4f4f4;
	color: #022D3B;
	padding: 25px;
	width: 100%;
	margin-bottom: 2px;
	transition: all 0.25s ease;
	text-decoration: none;
	font-weight: 700;
	box-sizing: border-box;
}

.filesBlock a:hover{
	background-color: #022D3B;
	color: #ffffff;
	transition: all 0.25s ease;
}

.filesBlock a:first-child{
	border-radius: 10px 10px 0px 0px;
}

.filesBlock a:last-child{
	border-radius: 0px 0px 10px 10px;
}

.filesBlock a i{
	float: right;
}

/*Files Block END-----------------*/

/*Featured Pages-----------------*/

.featuredPages{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px;
}

.featuredPageWrap{
	position: relative;
	height: 25vh;
	min-height: 200px;
	flex: 1;
	flex-basis: 40%;
	text-decoration: none;
}

.featuredPageWrap:hover img{
	scale: 1.1;

	transition: 0.25s ease all;
}

.featuredPageWrap img{
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	scale: 1;
	z-index: 1;

	transition: 0.25s ease all;
}

.featuredPageWrap .blueYellowOverlay{
	z-index: 2;
}

.pageNameWrap{
	position: absolute;
	bottom: 0;
	left: 0;

	display: flex;
	justify-content: flex-start;
	align-items: center;

	padding-left: 25px;
	padding-right: 25px;

	height: 40%;
	max-width: 75%;
	min-width: 66%;
}

.featuredPages .titleColorBox{
	background-color: #49B184;
	mix-blend-mode: multiply;
	opacity: 0.75;
	z-index: 4;
	border-radius: 10px;

	position: absolute;
	top: -15px;
	bottom: -15px;
	left: -15px;
	right: -15px;
}

.pageNameWrap h3{
	position: relative;
	font-size: 30px;
	color: #ffffff;
	z-index: 5;
	margin: 0px;
	text-shadow: 2px 2px 5px #000000;
}

@media screen and (max-width: 800px) {
	.featuredPages{
		flex-direction: column;
	}

	.featuredPageWrap{
		width: 100%;
		flex: none;
		flex-basis: none;
	}

	.basicParagraph p{
		width: 100%;
		font-size: 15px;
	}

	.basicParagraph figure{
		width: 100%;
	}
}

/*Featured Pages END-----------------*/

/*Recent Posts-----------------*/

.recentPostsWrapper{
	margin-top: 100px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.recentPosts{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px;

	margin-bottom: 50px;
}

.recentPostWrap{
	position: relative;
	height: 15vh;
	min-height: 200px;
	flex: 1;
	flex-basis: 30%;
	text-decoration: none;
}

.recentPostWrap:hover img{
	scale: 1.1;

	transition: 0.25s ease all;
}

.recentPostWrap img{
	scale: 1;
	z-index: 1;

	transition: 0.25s ease all;
}

.recentPostWrap .blueYellowOverlay{
	z-index: 2;
}

.recentPostWrap .pageNameWrap{
	position: absolute;
	bottom: 0;
	left: 0;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;

	padding-left: 25px;
	padding-right: 25px;

	height: 40%;
	max-width: 75%;
	min-width: 66%;
}

.recentPosts .titleColorBox{
	background-color: #EC6285;
	mix-blend-mode: multiply;
	opacity: 0.75;
	z-index: 10;
	border-radius: 10px;

	position: absolute;
	top: -15px;
	bottom: -15px;
	left: -15px;
	right: -15px;
}

.recentPosts .pageNameWrap h3{
	position: relative;
	font-size: 20px;
	color: #ffffff;
	z-index: 11;
	margin: 0px;
	text-shadow: 2px 2px 5px #000000;
}

.recentPosts .pageNameWrap h4{
	position: relative;
	font-size: 13px;
	color: #ffffff;
	z-index: 11;
	margin: 0px;
	text-shadow: 2px 2px 5px #000000;
}

@media screen and (min-width: 1500px) {
	.recentPostsWrapper{
		margin-top: 150px;
	}

	.basicHeadline{
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 800px) {
	.recentPosts{
		flex-direction: column;
	}

	.recentPostWrap{
		width: 100%;
		flex: none;
		flex-basis: none;
	}

}

/*Recent Posts END-----------------*/

/*-----------------------------
CONTENT BLOCKS END
-----------------------------*/

/*-----------------------------
CATEGORIES
-----------------------------*/

.resourcesWrap{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.categoryWrap{
	position: relative;
	width: 100%;

	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;

	margin-bottom: 50px;
}

.categoryWrap h1{
	position: relative;
	color: #77C5A3;
	padding-left: 50px;
	padding-bottom: 10px;
	padding-right: 25px;
	margin-top: 0px;
}

.categoryWrap h1:after{
	content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background-color: #022D3B;
  height: 4px;
  border-radius: 0px 999px 999px 0px;
}

.categoryEntriesWrap{
	position: relative;
	width: 100%;
	height: calc(15vw + 15px);
	min-height: calc(200px + 15px);
	max-height: calc(300px + 15px);

	overflow-x: auto;
	overflow-y: visible !important;

	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: row;
}

.postWrap{
	flex: none;
	width: 25vw;
	height: 15vw;
	min-width: 200px;
	max-width: 500px;
	min-height: 200px;
	max-height: 300px;

	margin-left: 25px;
	margin-right: 25px;
}

.postWrap:first-child{
	margin-left: 50px;
}

.postWrap:last-child{
	margin-right: 50px;
}

.postWrap .titleColorBox{
	background-color: #EC6285;
	mix-blend-mode: multiply;
	opacity: 0.75;
	z-index: 10;
	border-radius: 10px;

	position: absolute;
	top: -15px;
	bottom: -15px;
	left: -15px;
	right: -15px;
}

.postWrap .pageNameWrap h3{
	position: relative;
	font-size: 20px;
	color: #ffffff;
	z-index: 11;
	margin: 0px;
	text-shadow: 2px 2px 5px #000000;
}

.postWrap .pageNameWrap h4{
	position: relative;
	font-size: 13px;
	color: #ffffff;
	z-index: 11;
	margin: 0px;
	text-shadow: 2px 2px 5px #000000;
}

.scrollButton{
	position: absolute;
	margin: auto;
	bottom: 0;

	width: 50px;

	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(15vw + 15px);
	min-height: calc(200px + 15px);
	max-height: calc(300px + 15px);
	z-index: 20;

	font-size: 20px;
	color: #022D3B;
	transition: 0.25s ease all;
}

.left{
	left: 0;
	background: rgb(255,255,255);
background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
transition: 0.25s ease all;
}

.right{
	right: 0;
	background: rgb(255,255,255);
background: -moz-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -webkit-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
transition: 0.25s ease all;
}

.scrollButton:hover{
	cursor: pointer;
	background: #022D3B;
	font-size: 25px;
	color: #ffffff;
	transition: 0.25s ease all;
}

/*-----------------------------
CATEGORIES END
-----------------------------*/

/*-----------------------------
FOOTER
-----------------------------*/

footer{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	width: 100vw;
	margin-top: 100px;
}

/*Contact Banner-----------------*/

.contactBanner{
	position: relative;
	height: 50vh;
	max-height: 400px;
	min-height: 300px;
	width: 100%;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contactTextWrap{
	position: relative;
	z-index: 12;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contactBanner h1,
.contactBanner h2{
	text-align: center;
	color: #ffffff;
	text-shadow: 2px 2px 5px #000000;
	margin: 0px;
}

.contactBanner .greenButtonLarge{
	box-shadow: 2px 2px 5px #000000;
	margin-top: 25px;
}

/*Contact Banner END-----------------*/

.logoBar{
	position: relative;
	height: 5vw;
	max-height: 72px;
	width: 100%;
	background-color: #ffffff;
}

.footerLogo{
	position: absolute;
	bottom: 0;
	left: 0;
	height: 20vw;
	max-height: 300px;
	z-index: 20;
}

/*Footer Content END-----------------*/

.footerWrap{
	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footerContent{
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #022D3B;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;

	text-align: center;
	color: #ffffff;
}

.footerContent section{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
}

.footerColumn{
	justify-content: space-between;
	flex: 1;
}

.footerColumn h4{
	position: relative;
	margin-top: 30px;
	margin-bottom: 30px;
	padding-bottom: 25px;
	font-size: 30px;
}

.footerColumn h4:after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background-color: #77C5A3;
  height:2px;
  border-radius: 999px;
}

.footerColumn li{
	margin-bottom: 5px;
}

.footerColumn ul{
	text-decoration: none;
	padding: 0px;
	list-style: none;
}

.footerColumn ul a{
	text-decoration: none;
	color: #ffffff;
	transition: 0.25s ease all;
}

.footerColumn ul a:hover{
	color: #77C5A3;
	transition: 0.25s ease all;
}

.socialIconsWrap{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.socialIcon{
	height: 25px;
	width: 25px;
	display: flex;
	justify-content: center;
	align-items: center;

	padding: 5px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	background-color: transparent;
	border: 2px solid #77C5A3;
	border-radius: 10px;
	text-decoration: none;
	color: #ffffff;
	transition: 0.25s ease all;
}

.socialIcon:hover{
	background-color: #77C5A3;
	transition: 0.25s ease all;
}

.copyrightBar{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #77C5A3;
	color: #ffffff;
}

.copyrightBar p{
	text-align: center;
	font-size: 12px;
}

@media screen and (min-width: 1500px) {
	footer{
		margin-top: 200px;
	}
}

@media screen and (max-width: 800px) {
	.footerContent section{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footerColumn{
		width: 100%;
	}
}

/*Footer Content END-----------------*/

/*-----------------------------
FOOTER END
-----------------------------*/


/*------------------------------------------------------
Contact Form
------------------------------------------------------*/

input#secretHoneypotParamName {
  display: none;
}

.contactFormWrap{
  color: #77C5A3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contactFormWrap form{
  width: 100%;
}

.contactFormWrap h3{
	margin-top: 0px;
}

.contactFormWrap input,
.contactFormWrap textarea{
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  color: #022D3B;
  border-style: hidden;
  border: 2px solid #022D3B;
	border-radius: 10px;
  margin-bottom: 25px;
  padding: 10px;
  font-size: 15px;
  box-sizing: border-box;
}

.contactFormWrap textarea:focus,
.contactFormWrap input:focus{
    outline: none;
    border: 2px solid #77C5A3;
}

.contactFormWrap h3{
  margin-bottom: 10px;
}

.contactFormWrap .submitButton{
  border: none;
	border-radius: 10px;
  background-color: #022D3B;
  font-family: 'Varela Round', sans-serif;
  font-size: 20px;
	color: #ffffff;
  width: 100%;
  max-width: 200px;

  -webkit-appearance: none;

  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.contactFormWrap .submitButton:hover{
  background-color: #77C5A3;
  cursor: pointer;

  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

/*------------------------------------------------------
Contact Form END
------------------------------------------------------*/
