@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root{
	--primary: #094325;
	--secondery: #f0e0bc;
	--lightGreen: #306419;
	--lightWhite: #fcedb5;
}
*:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}
html {
  font-size: 16px;
}
body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 16px;
	font-style: normal;
	overflow-x: hidden;
	color: var(--primary);
}
.homepage-header {
	position: fixed;
	z-index: 9999;
	left: 0px;
	width: 100%;
	max-width: 100%;
	height: 100px;
	background-color: transparent;
	padding: 10px 30px;
	display: flex;
	justify-content: space-between;
}
/* Desktop: Shift fixed header down by the standard admin bar height */
body.admin-bar .homepage-header {
    top: 32px !important;
}
/* Mobile: Adjust offset since the WordPress admin bar becomes taller */
@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px !important;
    }
}
.homepage-header .logo {
	animation: logoAnimation 1s ease-out;
}
@keyframes logoAnimation {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(0px);
    }
}
.homepage-header .top-bar {
	display: flex;
	justify-content: end;
	align-items: center;
	padding: 15px;
	margin: 15px;
	list-style-type: none;
	animation: menuAnimation 1s ease-out;
	position: relative;
	top: -15px;
}
@keyframes menuAnimation {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0px);
    }
}
.homepage-header .top-bar {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	height: 100px;
}
.homepage-header .top-bar li {
	position: relative;
	margin-right: 15px;
}
.homepage-header .top-bar li a {
	z-index: 3;
	position: relative;
	margin-right: 10px;
	color: var(--primary);
	padding: 10px;
	text-decoration: none;
	cursor: pointer;
}
.homepage-header .top-bar li a:hover, .homepage-header .top-bar .current_page_item a {
	text-decoration: underline;
}
.homepage-header .top-bar .menu-item-object-page a {
	text-align: left;
	display: block;
	padding-bottom: 5px;
	text-decoration: none;
}
.homepage-header .top-bar li a {
	min-width: 10px;
	text-align: center;
	display: block;
	padding-bottom: 5px;
	text-decoration: none;
	font-size: 15px;
}
.homepage-header .top-bar li:last-child a {
 	border: 1px solid var(--primary);
	background-color: var(--primary);
	color: var(--secondery);
	padding: 10px 20px;
	border-radius: 50px;
	overflow: hidden;
	transition: all 0.3s;
	position: relative;
	text-decoration: none;
	display: block;
}
.homepage-header .top-bar li:last-child a:hover {
	background-color: var(--secondery);
	color: var(--primary);
}
.homepage-header .top-bar li:last-child a:before {
	content: '';
	background-color: white;
	width:55%;
	height: 30px;
	position: absolute;
	top: 8px;
	left: 0px;
	transform: translateX(-100%) rotate(45deg);
	transition: all 0.3s;
}
.homepage-header .top-bar li:last-child a:hover:before {
	transform: translateX(200%) rotate(45deg);
}
.homepage-header .top-bar .menu-item-has-children:last-child a {
 	border: 1px solid var(--primary);
	background-color: var(--primary);
	color: var(--secondery);
	padding: 10px 10px;
	border-radius: 50px;
	overflow: hidden;
	transition: all 0.2s;
	position: relative;
	text-decoration: none;
	display: block;
}
.homepage-header .top-bar .menu-item-has-children:last-child a:hover {
	background-color: var(--primary);
	color: var(--secondery);
}
.homepage-header .top-bar .menu-item-has-children:last-child a:before {
	content: '';
	background-color: white;
	width:55%;
	height: 30px;
	position: absolute;
	top: 8px;
	left: 0px;
	transform: translateX(-100%) rotate(45deg);
	transition: all 0.3s;
}
.homepage-header .top-bar .menu-item-has-children:last-child a:hover:before {
	transform: translateX(-100%) rotate(45deg);
}
.homepage-header .top-bar li .sub-menu li, .homepage-header .top-bar li .sub-menu li a {
	background-color: var(--primary);
}
.homepage-header .top-bar li .sub-menu {
	list-style-type: none;
	min-width: 220px;
	display: none;
	position: absolute;
	z-index: 1000;
	top: 100%;
	left: 0px;
	margin: 0px;
	padding: 0px;
	text-align: left;
	background-color: var(--primary);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
.homepage-header .top-bar li .sub-menu, .homepage-header .top-bar li .sub-menu li {
	border-radius: 0px;
	background-color: var(--primary);
}
.homepage-header .top-bar li .sub-menu li a {
	color: var(--lightWhite);
	background-color: var(--primary);
	display: block;
	text-align: left;
	min-width: -moz-fit-content;
	min-width: fit-content;
	padding: 10px;
}
.homepage-header .top-bar li a:has(+ .sub-menu):after {
	content: "▲";
	color: var(--primary);
	position: absolute;
	top: 0px;
	right: -22px;
	padding: 10px;
	transform: rotate(180deg);
}
.homepage-header .top-bar li a:has(+ .sub-menu):hover:after {
	color: var(--primary);
}
.homepage-header .top-bar li .sub-menu li a:hover {
	color: #ffffff !important;
	display: block;
	text-align: left;
	text-decoration: none;
}
.homepage-header .top-bar li .sub-menu a:first-child {
	margin-left: 0px;
}
.homepage-header .top-bar li .sub-menu a:last-child {
	margin-right: 0px;
}
.homepage-header .top-bar .sub-menu li .sub-menu {
	left: 215px;
	top: 0px;
}
.homepage-header .top-bar > .menu-item-has-children:hover > .sub-menu {
	display: block;
}
.homepage-header .top-bar .menu-item-has-children .sub-menu > .menu-item-has-children:hover > .sub-menu {
	display: block;
}
.heading1 {
	position: absolute;
	z-index: 5;
	top: 830px;
	left: 100px;
	width: 330px;
}
.heading1 h1 {
	font-size: 50px;
	opacity: 0;
}
.heading1 h1 span {
	color: var(--lightGreen);
}
.heading1 #separator {
	display: flex;
	justify-content: start;
	align-items: center;
	position: relative;
	opacity: 0;
}
.heading1 #separator img {
	margin-right: 20px;
}
.heading1 #separator span {
	width: 70%;
	border-top: 4px solid var(--primary);
}
.heading1 #home-cta p {
	line-height: 1.5;
	padding-top: 15px;
}
#home-cta a {
	text-decoration: none;
	background-color: var(--primary);
	color: var(--lightWhite);
	padding: 10px 20px;
	border-radius: 50px;
	position: relative;
	top: 15px;
	border: 1px solid var(--primary);
	cursor: pointer;
	overflow: hidden;
	transition: all 0.2s;
	position: relative;
	text-decoration: none;
	display: inline-block;
}
#home-cta a:hover {
	background-color: var(--lightWhite);
	color: var(--primary);
}
#home-cta a:before {
	content: '';
	background-color: white;
	width:55%;
	height: 30px;
	position: absolute;
	top: 8px;
	left: 0px;
	transform: translateX(-100%) rotate(45deg);
	transition: all 0.3s;
}
#home-cta a:hover:before {
	transform: translateX(200%) rotate(45deg);
}
@media all and (max-width: 320px) {

}
@media all and (min-width: 321px) and (max-width: 360px) {

}
@media all and (min-width: 361px) and (max-width: 480px) {

}
@media all and (min-width: 481px) and (max-width: 576px) {

}
@media all and (min-width: 577px) and (max-width: 768px) {

}
@media all and (min-width: 769px) and (max-width: 992px) {

}
@media all and (min-width: 993px) and (max-width: 1280px) {
	/* Start Mobile */
}
@media all and (min-width: 1281px) and (max-width: 1400px) {
	/* Start Desktop */
	.heading1 {
		top: 550px;
		left: 70px;
	}
}
@media all and (min-width: 1401px) and (max-width: 1600px) {
	.heading1 {
		top: 640px;
	}
}
@media all and (min-width: 1601px) and (max-width: 1750px) {
	.heading1 {
		top: 750px;
	}
}