* {
	margin: 0;
	padding: 0;
}

html { height: 100%; }

body {
	box-sizing: border-box;
	font: 300 16px 'Montserrat', sans-serif;
	min-height: 100%;
	padding-bottom: 251px;
	position: relative;
}

h1, h2 {
	font-size: 40px;
	font-weight: 400;
	line-height: 1em;
	margin-bottom: 1em;
}

h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 1em;
	margin: 1em 0 0.6em 0;
}

p {
	line-height: 1.6em;
	margin: 1em 0;
}

p.larger {
	font-size: 20px;
	font-style: italic;
	font-weight: 500;
}

img { vertical-align: middle; }

strong { font-weight: 500; }

.button {
	background-color: #f1592a;
	border-radius: 20px;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	padding: 9px 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.pull-left {
	float: left;
	margin: 0 2em 1em 0;
}

.pull-right {
	float: right;
	margin: 0 0 1em 2em;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
	box-sizing: border-box;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, auto);
	padding: 20px;
	position: absolute;
	width: 100%;
	z-index: 100;
}

.logo { display: block; }

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

header .menu { justify-self: end; }

header .menu ul { list-style: none; }

header .menu a {
  display: block;
	text-decoration: none;
	transition: all 300ms ease-in-out;
}

.main-menu {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	margin: 20px 0;
}

.main-menu > li { margin: 0 20px; }

.main-menu > li > a:not(.button) {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
  padding: 3px 0;
  position: relative;
	text-transform: uppercase;
}

.main-menu > li > a:not(.button)::after {
  border-bottom: 3px solid #f1592a;
  content: '';
  height: 100%;
  position: absolute;
    right: 5px;
    left: 5px;
  transform: scaleX(0.0001);
  transition: transform 300ms ease-in-out;
}

.main-menu > li:hover > a:not(.button)::after { transform: scaleX(1); }

.main-menu > li.parent {
	background: url("../images/menu-arrow.png") right center no-repeat;
	padding-right: 19px;
}

.main-menu > li > a:hover { border-bottom-color: #d73694; }

.main-menu > li:hover > ul { display: block; }

.main-menu ul {
	background-color: #212121;
	border: 1px solid #3a3a3a;
	box-shadow: 4px 4px rgba(0, 0, 0, 0.15);
	display: none;
	padding: 12px 15px;
	position: absolute;
}

.main-menu ul a {
	border-top: 1px solid #3a3a3a;
	color: #d3d3d3;
	padding: 12px 15px;
}

.main-menu ul a:hover {
	background-color: #3a3a3a;
	color: #fff;
}

.main-menu ul li:first-child a { border-top: 0; }

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

#mainMenu {
	background-color: #282d30;
	height: 100vh;
	overflow-x: hidden;
	position: fixed;
		top: 0;
		right: 0;
	transition: 1s;
	width: 0;
	z-index: 998;
}

#mainMenu.show { width: 100%; }

#mainMenu ul { list-style: none; }

#mainMenu .moduletable.mobile { margin: 0 30px; }

#mainMenu .moduletable.mobile:first-child { margin-top: 30px; }

.mobile-menu li ul {
	display: none;
	margin-bottom: 15px;
}

.mobile-menu a {
	color: #fff;
	display: block;
	font-size: 18px;
	margin: 20px 0;
	text-decoration: none;
	white-space: nowrap;
}

/* ==========================================================================
		Mobile Menu Toggle
		========================================================================== */
	
#openMenu {
	background-color: #282d30;
	display: none;
	padding: 20px 15px;
	position: fixed;
		top: 0;
		right: 0;
	transition: .5s;
	width: 41px;
	z-index: 999;
}

#openMenu.open {
	background-color: #282d30;
	color: #fff;
}

#menuTitle {
	position: relative;
	text-align: center;
	transition: .5s;
}
	
/* ==========================================================================
		Mobile Menu Icon Transition Effect
		========================================================================== */
	
#btn {
	cursor: pointer;
	display: block;
	height: 30px;
	position: relative;
	transition: .5s;
	z-index: 200;
}

#btn .icon,
#btn .icon::before,
#btn .icon::after {
	background: #fff;
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	transition: top ease .5s .5s, transform ease .5s;
	width: 41px;
}

#btn .icon {
	top: 14px;
	left: 2px;
}

#btn .icon::before { top: -8px; }

#btn .icon::after { top: 8px; }

#btn.active .icon { background: transparent; }

#btn.active .icon::before { transform: rotate(45deg); }

#btn.active .icon::after { transform: rotate(-45deg); }

#btn.active .icon::before,
#btn.active .icon::after {
	background-color: #fff;
	top: 0;
	transition: top ease .5s, transform ease .5s .5s;
}

/* ==========================================================================
   Banner
   ========================================================================== */

.banner {
	position: relative;
	z-index: 0;
}

.banner img { max-width: 100%; }

/* ==========================================================================
   Content
   ========================================================================== */

.section1 + .content-wrapper { background: url("../images/bg.jpg") center center repeat; }

.frontpage {
	color: #fff;
	text-align: center;
}

.frontpage h1 { color: #fff !important; }

.content {
	color: #535353;
	margin: 0 auto;
	max-width: 1600px;
	overflow: hidden;
	padding: 75px 30px;
}

.content h1,
.content h2,
.content h3 { color: #282d30; }

.content a { color: #80bd01; }

.content ul {
	line-height: 1.75em;
	margin: 1em 0;
	overflow: hidden;
}

.content li { margin-left: 1.1em; }

.content .convertforms { margin-top: 2em; }

/* ==========================================================================
   Section 1
   ========================================================================== */

.section1 {
	color: #535353;
	margin: -120px auto 0 auto;
	max-width: 1600px;
	padding: 0 10px 70px 10px;
	position: relative;
	z-index: 100;
}

.section1 .custom {
	background-color: #fff;
	display: grid;
	gap: 20px 10px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	padding: 10px;
}

.section1 .grid-item {
	padding-bottom: 50px;
	position: relative;
	text-align: center;
}

.section1 .button-wrapper {
	position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
}

.section1 .button {
	border-radius: 0;
	display: block;
	padding: 14px 20px 15px 20px;
	text-transform: none;
}

.section1 h3 {
	color: #282d30;
	margin: 1em 0;
}

.section1 p:last-of-type { margin-bottom: 1.75em; }

.section1 img { max-width: 100%; }

/* ==========================================================================
   Section 2
   ========================================================================== */

.section2 {
	color: #535353;
	padding: 75px 30px;
	text-align: center;
}

.section2 h1,
.section2 h2 { color: #282d30; }

.section2 .convertforms { margin: 0 auto; }

.convertforms .cf-content-wrap,
.convertforms .cf-form-wrap { padding: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-wrapper {
	background-color: #282d30;
	position: absolute;
		bottom: 0;
	width: 100%;
}

.footer {
	color: #fff;
	margin: 0 auto;
	max-width: 1400px;
	padding: 40px 30px;
	text-align: center;
}

.bottom-menu {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	list-style: none;
	margin: 0 -20px 30px -20px;
}

.bottom-menu > li { margin: 0 20px; }

.bottom-menu > li > a {
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
}

.footer .logo { margin-bottom: 30px; }

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

header .menu,
.bottom-menu { display: none; }

#openMenu { display: block; }

.mobile-menu .button {
	background-color: transparent;
	font-weight: 300;
	padding: 0;
	text-transform: none;
}

.section1 {
	margin: 0 auto;
	padding: 50px 30px;
}

}