/* Highest priority styling */

/*
CORE
HEADER
MENUS
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
	font-size: 18px;
	--body-text-color: #0C1E46;
	--primary-color: #14172F;
	--secondary-color: #0C1E46;
	--alternate-color: #68B130;
	--gray-color: #C0C3D3;
	--light-gray-color: #E9F5F7;
	--body-font-family: 'Kumbh Sans';
	--heading-font-family: 'Kumbh Sans';
	--fa-caret-right: '\f0da';
	--fa-angle-right: '\f105';
	--fa-plus: '\f067';
	--fa-minus: '\f068';
}

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

body {
	display: block !important;
	line-height: 1.6;
	color: #0C1E46;
	font-size: 1.0rem;
	font-family: var(--body-font-family);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.overflow-hidden{
	overflow: hidden;
}

*:focus {
	outline: auto;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	color: #0C1E46;
	font-weight: 700;
	font-family: var(--heading-font-family);
	line-height: 1.2;
}

h1 {
	font-size: 1.61111rem;
	color: #68B130;
}

h2 {
	font-size: 1.33333rem;
}

h3 {
	font-size: 1.11111rem;
}

h4 {
	font-size: 0.94444rem;
}

h5,
h6 {
	font-size: 0.94444rem;
}

h1 span.subtitle,
h2 span.subtitle {
	display: block;
	color: #0C1E46;
	font-size: 40%;
}

p {
	margin: 0 0 30px;
	font-size: 1.0rem;
	color: #0C1E46;
}

/* CORE > Links and Buttons */
a {
	color: #197BBD;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #68B130;
}

a.no-underline {
	text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
	text-decoration: underline;
}

a,
button,
.button {
	-webkit-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
	-o-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
	transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button {
	font-family: var(--body-font-family);
	font-size: 1.11111rem;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 12px 25px;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: #68B130;
	text-decoration: none;
}

button:active,
.button:active {
	transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
	background-color: #0C1E46;
	color: #fff;
}

/* CORE > Layout */
.columns,
.column {
	float: left;
	padding: 0 30px;
}

.row,
.row-wide,
.row-narrow {
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

.row-narrow {
	max-width: 1024px;
}

.row-wide {
	max-width: 1599px;
}

.row:after {
	clear: both;
}

.row:after,
.row:before {
	display: table;
	content: ' ';
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-order: 1;
	order: 1;
}

@media screen and (min-width:1025px){
	.row-custom{
		max-width: 75%;
		margin: 0 auto;
	}
}

@media screen and (min-width:1450px){
	.row-custom{
		max-width: 1280px;
	}
}

/* CORE > Utility Classes */
.no-float {
	float: none;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.no-min-height {
	min-height: 0;
}

.position-static,
.static {
	position: static !important;
}

.position-relative,
.relative {
	position: relative !important;
}

.block {
	display: block;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.center,
.align-center,
.text-center {
	text-align: center;
}

.right,
.align-right,
.text-right {
	text-align: right;
}

.body-font {
	font-family: var(--body-font-family);
}

.header-font {
	font-family: var(--header-font-family);
}

.uppercase {
	text-transform: uppercase;
}

.hide {
	display: none;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.flex-container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.flex-align-vertical {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-align-horizontal {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	text-align: center;
}

.two-buttons-container a,
.two-buttons-container button {
	display: block;
	margin-bottom: 10px;
}

.small-text {
	font-size: 0.9rem;
}

.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.bold,
.font-bold {
	font-weight: 700;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt60 {
	padding-top: 60px;
}

.pt70 {
	padding-top: 70px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb60 {
	padding-bottom: 60px;
}

.pb70 {
	padding-bottom: 70px;
}

.small-margin-left {
	margin-left: 10px;
}

.small-margin-right {
	margin-right: 10px;
}

.no-background {
	background: none !important;
}

.animate-in-view,
.opacity0 {
	opacity: 0;
}

.opacity1 {
	opacity: 1 !important;
}

.pointer-events-none {
	pointer-events: none;
}

.transition-all {
	-webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-over {
	position: relative;
	z-index: 1;
}

.background-center {
	background-position: center center !important;
}

.background-y-bottom {
	background-position-y: 100%;
}

.background-y-top {
	background-position-y: 0%;
}

.background-cover {
	background-size: cover;
	background-repeat: no-repeat;
}

.background-transparent {
	background: transparent;
}

.light-text,
button.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li,
.light-text label {
	color: #fff;
}

@media screen and (min-width: 450px) {
	.two-buttons-container {
		display: flex;
		justify-content: center;
	}

	.two-buttons-container a,
	.two-buttons-container button {
		margin: 0 6px;
	}
}

@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px),
screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px),
screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #0C1E46;
	padding: 15px 20px;
	z-index: 2;
	-webkit-transition: border-color 200ms ease-out;
	-moz-transition: border-color 200ms ease-out;
	-ms-transition: border-color 200ms ease-out;
	-o-transition: border-color 200ms ease-out;
	transition: border-color 200ms ease-out;
}

.header>.row {
	height: 100%;
}

.header a {
	text-decoration: none;
}

.header-logo {
	display: flex;
	align-items: center;
}

.header-logo img {
	max-width: 100%;
	height: auto;
}

.header-mobile-inner {
	display: flex;
	min-height: 70px;
}

.header-mobile-buttons {
	display: flex;
	margin-left: auto;
	/* margin-left: 4%; */
	/* flex: 1; */
	justify-content: flex-end;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
	display: flex;
	font-size: 1.3rem;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex: 1;
	max-width: 50px;
	width: 50px;
	height: 50px;
}

.header_contact{
	display: none;
}

@media screen and (min-width: 500px) {

	.header-mobile-buttons a,
	.header-mobile-buttons button {
		/* width: 75px;
		max-width: 75px;
		height: 75px; */
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 1025px) {
	.header-logo {
		padding: 0;
	}

	.header{
		background-color: transparent;
		padding: 40px;
	}

	.header-logo img{
		width: 200px;
		transition: all 0.3s ease;
	}

	/* body.scrolled .header{
		background-color: #0C1E46;
		padding: 20px;
	}

	body.scrolled .header-mobile-buttons{
		align-items: center;
	}

	body.scrolled .header-logo img{
		width: 150px;
	} */

	.header-mobile-buttons .header_contact{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		width: auto;
		max-width: none;
		justify-content: flex-end;
		color: #fff;
		font-size: 1rem;
		margin-right: 35px;
		padding: 0;
	}

}

@media screen and (min-width:1450px){
	.header-logo img{
		width: 265px;
	}
}

/* HEADER > Header Search Bar */

.header-search {
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background-color: #14172F;
	padding: 18px 0;
	width: 100%;
	opacity: 0;
	z-index: 3;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-ms-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.header-search.active {
	opacity: 1;
	top: 0;
}

.header-search-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	float: none;
}

.search-results-post-type:not(:last-child) {
	margin-bottom: 30px;
}

.search-results-post-type ul {
	margin: 0;
}

.header-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 30px;
	background: #14172F;
	display: none;
	max-height: 350px;
	overflow: auto;
}

.header-search-results.active {
	display: block;
	-webkit-animation: fadeIn 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.header-search-results h3,
.header-search-results a,
.header-search-results p {
	color: #fff;
}

.header-search-results h3 {
	margin-bottom: 8px;
}

.header-search-results a {
	text-decoration: none;
}

.header-search-results a:hover,
.header-search-results a:focus {
	text-decoration: underline;
}

.header-search-form {
	position: relative;
	flex: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

#header-search-input {
	margin: 0;
	height: 45px;
	border: 0 none;
	font-size: 1.3rem;
	color: #fff;
	border-bottom: 1px solid #fff;
	background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #fff;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #fff;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #fff;
}

input::placeholder,
textarea::placeholder {
	color: #fff;
}

.header-search button {
	padding: 0 20px;
	height: 45px;
	white-space: pre;
}

.header-search-submit {
	margin: 0 1%;
}

#header-search-open {
	font-size: 1.1rem;
	display: inline-block;
	line-height: 40px;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	margin: 0 0 5px 30px;
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/

/* MENUS > Mobile Menu */
#container {
	position: relative;
	right: 0;
	top: 0;
	overflow: hidden;
}

#container:before {
	z-index: 99;
	content: "";
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	-webkit-transition: opacity 200ms ease-out;
	-moz-transition: opacity 200ms ease-out;
	-ms-transition: opacity 200ms ease-out;
	-o-transition: opacity 200ms ease-out;
	transition: opacity 200ms ease-out;
}

#container.active {
	cursor: pointer;
}

#container.active:before {
	opacity: 1;
}

#mobile-menu:not(.active) {
	display: none;
}

#mobile-navigation {
	z-index: 100;
	position: fixed;
	background-color: #68B130;
	opacity: 0;
	right: 0;
	padding: 0px 30px;
}

#mobile-navigation {
	display: block;
	height: 100vh;
	transform: translateY(-100%);
	width: 100%;
	animation-fill-mode: both;
	-webkit-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-moz-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-ms-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	-o-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
	overflow-y: scroll;
}

#mobile-navigation::before{
	content: '';
	position: absolute;
	display: block;
	opacity: 0.1;
	bottom: 0;
	right: 0;
	width: 317px;
	height: 372px;
	background-image: url(../images/ampersand.png);
} 

#mobile-navigation .sub-menu{
	display: block;
	transform: translateY(0);
	height: auto;
	margin-left: 30px;
	width: calc(100% - 30px);
}

.mobile-navigation-top-inner {
	align-items: center;
	padding: 8px 0 8px 20px;
	padding-right: 0;
	background: transparent;
}

#mobile-navigation.active .mobile-navigation-top-inner {
	display: flex !important;
}

.mobile-navigation-close {
	background: none;
}

#mobile-navigation a {
	padding-left: 20px;
}

#mobile-navigation.active {
	transform: translateY(0);
	opacity: 1;
}

#mobile-navigation a {
	display: block;
	text-decoration: none;
	font-size: 1.2rem;
	color: #fff;
	padding-top: 12px;
	padding-bottom: 12px;
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
	color: #68B130;
	background: #fff;
}

#mobile-navigation ul {
	margin: 0;
}

#mobile-navigation ul li {
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 1px solid #E9F5F7;
}

#mobile-navigation ul li a{
	font-size: 1rem;
	text-transform: uppercase;
}

#mobile-navigation ul.sub-menu li{
	border: none;
}

#mobile-navigation ul.sub-menu li a{
	font-size: 0.83333rem;
	position: relative;
	margin-right: 60px;
}

#mobile-navigation ul.sub-menu li a:before{
	position: relative;
}

#mobile-navigation ul li:last-of-type {
	border: none;
}

#mobile-navigation ul li:before {
	display: none;
}

#mobile-navigation .sub-menu {
	z-index: 1;
	overflow: auto;
	display: none;
}

#mobile-navigation ul li.active .sub-menu {
	display: block;
}

.mobile-navigation-next,
.mobile-navigation-close {
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 60px;
	height: 100%;
}

.mobile-navigation-close {
	margin-left: auto;
	color: #fff;
	font-size: 1.6rem;
	height: 60px;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
	color: #0C1E46;
}

/* .mobile-navigation-next {
	position: absolute;
	right: 0;
	top: 0;
	height: 58px;
} */

#mobile-navigation ul li .mobile-navigation-next {
	position: absolute;
	right: 0;
	top: 0;
	height: 58px;
}

/* #mobile-navigation ul li .sub-menu .mobile-navigation-next{
	height: 100%;
} */

/* #mobile-navigation ul li ul li .mobile-navigation-next {
	right: 30px;
} */

.mobile-navigation-previous {
	margin-bottom: 10px;
	border: none !important;
}

.mobile-navigation-next .opened{
	display: none;
}

.sub-menu-open > .mobile-navigation-next i{
	display: none;
}

.sub-menu-open > .mobile-navigation-next i.opened{
	display: block;
}

.menu-item.menu-item-has-children{
	overflow: hidden;
}

@media screen and (min-width:1025px){
	#mobile-navigation {
		max-width: 450px;
	}
}