/* =GENERAL
-------------------------------------------------------------- */
:root {
	--brand-black: #000;
	--brand-green-lightest: #f2f8ea;
	--brand-green-light: #78b82a;
	--brand-green-dark: #609322;
}
html {
	font-size: 62.5%;	/* used to set font sizes using rems 1.2rem = 12px */
}
body {
	font-size: 1.6rem;
	font-family: 'Open Sans', sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
	font-weight: 500;
	font-family: 'Exo', sans-serif;
}
.page-template-template-company .h1, .page-template-template-company .h2, .page-template-template-company .h3, .page-template-template-company .h4, .page-template-template-company .h5, .page-template-template-company .h6, .page-template-template-company h1, .page-template-template-company h2, .page-template-template-company h3, .page-template-template-company h4, .page-template-template-company h5, .page-template-template-company h6 {
	font-family: 'Poppins', sans-serif;
}
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child, h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0;
}
.h1, h1 {
	font-size: 4rem;
}
.h2, h2 {
	font-size: 3rem;
}
.h3, h3 {
	font-size: 2.5rem;
}
.h4, h4, .h5, h5, .h6, h6 {
	font-size: 1.8rem;
}

a {
	color: #000;
	text-decoration: underline;
}
a:hover {
	color: #aaa;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}
img.alignleft {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
img.alignright {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}
img.aligncenter {
	display: block;
	margin: 0 auto 20px;
}

p {
	margin-bottom: 1.8em;
}
ul, ol {
	margin-bottom: 1.8em;
}

.button {
	margin: 0 0 1em;
}
.button a {
	padding: 5px 12px;
	display: inline-block;
	background-color: var(--brand-green-light);
	border-radius: 15px;
	color: #fff;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
}

.container {
	max-width: 1500px;
}

/* =HEADER
-------------------------------------------------------------- */
#site-header {
	z-index: 100;
	position: relative;
	background: #fff;
	box-shadow: 1px 2px 12px -5px rgba(0,0,0,0.5);
}
#site-header #logo-link {
	display: block;
	float: left;
	margin: 35px 0;
	max-width: 250px;
}
#site-header #logo-link img {
	display: block;
	height: auto;
	max-height: 100px;
}
#site-header #logo-text {
	margin: 25px 0;
	max-width: 350px;
	font-size: 2.5rem;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
}

#main-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#main-nav li a {
	display: block;
	padding: 5px 12px;
	color: #000;
	white-space: nowrap;
	font-size: 1.8rem;
	font-family: 'Poppins', sans-serif;
	line-height: 1.5em;
	text-decoration: none;
}
#main-nav > ul {
	text-align: right;
}
#main-nav > ul > li {
	display: inline-block;
	position: relative;
	margin: 0 0 0 20px;
}
#main-nav > ul > li:first-of-type {
	margin-left: 0;
}
#main-nav > ul > li.menu-button > a {
	background-color: var(--brand-green-light);
	color: #fff;
	border-radius: 15px;
}
#main-nav > ul > li.menu-button > a:hover {
	background-color: var(--brand-green-dark);
}
#main-nav li ul {
	position: absolute;
	display: none;
	top: 100%;
	left: -999em;
	z-index: 200;
	background-color: #fff;
}
#main-nav li:hover ul {
	display: block;
	left: 0;
}
#main-nav li.active > a,
body.single #main-nav li.current_page_parent > a,
#main-nav li a:hover {
	color: var(--brand-green-light);
}


#main-nav > ul > li.dashboard {
	display: none;
}
.logged-in #main-nav > ul > li.dashboard {
	display: inline-block;
}
.logged-in #main-nav > ul > li.login {
	display: none;
}

#mobile-nav-toggle {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
}
#mobile-nav-toggle a {
	display: block;
	color: #6da2e1;
	font-size: 30px;
}
#mobile-nav-toggle a:hover {
	color: #476a94;
}
#mobile-nav-toggle a span {
	color: transparent;
	font: 0/0 a;
}

#mobile-nav {
	display: none;
	clear: both;
	background: #eee;
}
#mobile-nav ul {
	padding: 0;
	list-style: none;
}
#mobile-nav ul ul {
	padding-left: 30px;
}


/* =CONTENT
-------------------------------------------------------------- */
#site-content {
	margin: 0 auto;
	clear: both;
}

#site-notice {
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
#site-notice-message {
	width: 92%;
	max-width: 450px;
	padding: 30px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#site-notice-message h2 {
	text-align: center;
}
#site-notice-message .button {
	margin: 0;
	text-align: center;
}

/* company template */
#company-intro {
	padding-top: 50px;
	padding-bottom: 50px;
	margin-bottom: 50px;
	background-color: #f7f7f7;
}
#company-intro #company-intro-title {
	margin-bottom: 50px;
}
#company-intro #company-intro-title h1 {
	margin-bottom: 0;
	text-align: center;
}
#company-intro-text p {
	margin-bottom: 1em;
}
#company-intro-text p:last-of-type {
	margin-bottom: 0;
}
#company-intro #company-intro-contact-list {
	margin: 0 0 0 30px;
	padding: 0;
	list-style: none;
}
#company-intro #company-intro-contact-list li {
	margin-bottom: 0.3em;
	position: relative;
}
#company-intro #company-intro-contact-list li a {
	position: relative;
	display: block;
	padding: 5px 0 5px 34px;
	text-decoration: none;
	transition: all 0.3s linear;
}
#company-intro #company-intro-contact-list li a::before {
	position: absolute;
	top: 5px;
	left: 0;
	min-width: 24px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	text-align: center;
}
#company-intro #company-intro-contact-list li.company-contact-tel a::before {
	content: "\f879";
}
#company-intro #company-intro-contact-list li.company-contact-email a::before,
#company-intro #company-intro-contact-list li.company-contact-email-multi > a::before {
	content: "\f0e0";
}
#company-intro #company-intro-contact-list li.company-contact-fax a::before {
	content: "\f1ac";
}
#company-intro #company-intro-contact-list li.company-contact-link a::before {
	content: "\f245";
}
#company-intro #company-intro-contact-list li ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	list-style: none;
	background-color: #f7f7f7;
	box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.1);
}
#company-intro #company-intro-contact-list li ul li {
	margin: 0;
}
#company-intro #company-intro-contact-list li ul li a {
	position: relative;
	padding: 5px 15px 5px 34px;
}
#company-intro #company-intro-contact-list li ul li:first-child a {
	margin-top: 10px;
}
#company-intro #company-intro-contact-list li ul li:last-child a {
	margin-bottom: 10px;
}
#company-intro #company-intro-contact-list li ul li a::before {
	position: absolute;
	top: 9px;
	left: 10px;
	height: 15px;
	width: 15px;
	min-width: 0;
	line-height: 15px;
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	text-align: center;
	font-size: 15px;
}

.nf-form-fields-required {
	display: none;
}
.nf-field-container.hr-container {
	margin-top: 30px!important;
	margin-bottom: 30px!important;
}


.nf-field-label .nf-label-span {
	font-size: 18px;
}
.nf-field-container.html-label p {
	margin-bottom: 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
}
.nf-field-container .nf-field-description p {
	margin-bottom: 1em!important;
}
.nf-field-container.indent {
	padding-left: 30px;
}
.nf-field-container.indent label {
	font-weight: normal;
}
.nf-field-container.deprecated,
.nf-field-container.hidden-input {
	display: none;
}
.nf-field-container.submit-container .nf-field-element {
	text-align: center;
}
.nf-help {
	position: relative;
	z-index: 1;
}

/* custom center align class */
.form-input-center .field-wrap {
	justify-content: center !important;
}
.form-input-center.checkbox-container.label-above label:before {
	left: 46px;
}
.form-input-center.checkbox-container.label-above label:after {
	left: 48px;
}

/* hide elements in form */
	/* risk calculator on embeds  */
	.page-embed .hide-embed {
		display: none;
	}
	
	.form-ai-consent,
	.form-ai-feedback,
	.form-ai-sub-note {
		display: none;
	}
	body.ai-rec-yes.ai-site-rec-yes .form-ai-consent,
	body.ai-rec-yes.ai-site-rec-yes .form-ai-sub-note {
		display: block;
	}
	.form-ai-sub-note p {
		margin: 1em 0 0;
		text-align: center;
	}


/* gallery */
div.gallery {
	margin: 0 0 30px;
}
div.gallery dl {
	float: left;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
}
div.gallery.gallery-columns-1 dl {
	width: 100%;
}
div.gallery.gallery-columns-2 dl {
	width: 50%;
}
div.gallery.gallery-columns-3 dl {
	width: 33.3333%;
}
div.gallery.gallery-columns-4 dl {
	width: 25%;
}
div.gallery.gallery-columns-5 dl {
	width: 20%;
}
div.gallery.gallery-columns-6 dl {
	width: 16.6666%;
}
div.gallery a {
	display: block;
}
div.gallery img {
	border: 0;
	display: block;
	padding: 7.5px;
}
#cboxSlideshow {
	color: #000!important;
}

/* =CTAS
-------------------------------------------------------------- */
/* general */
.cta-text-content ul.ticks {
	padding: 0 0 0 5px;
	list-style: none;
}
.cta-text-content ul.ticks li {
	position: relative;
	margin-bottom: 1em;
	padding-left: 45px;
	line-height: 30px;
}
.cta-text-content ul.ticks li::before {
	content: "\f00c";
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	background: var(--brand-green-light);
	color: #fff;
	border-radius: 50%;
	font-size: 1.6rem;
	line-height: 30px;
	text-align: center;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

/* banner */
.cta-banner {
	position: relative;
	height: 500px;
	background-color: rgba(153,195,67,0.7);
	background-blend-mode: multiply;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
/*
.cta-banner::after {
	content: " ";
	width: 100%;
	height: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: #1c3c53;
	opacity: 0.3;
}*/
.cta-banner .cta-banner-content {
	z-index: 20;
	padding-right: 30px;
	padding-left: 30px;
	text-align: center;
}
.cta-banner h1 {
	margin-bottom: 0;
	color: #fff;
	font-size: 4.5rem;
	text-shadow: 2px 2px 2px rgba(33,37,41,0.24);
}
.cta-banner h2 {
	margin-top: 1em;
	margin-bottom: 0;
	color: #fff;
	font-size: 3rem;
	text-shadow: 2px 2px 2px rgba(33,37,41,0.24);
}

/* ctas x 4 */
.cta-ctas-4 {
	margin-top: -100px;
	margin-bottom: 50px;
}
.cta-ctas-4 .cta-ctas-4-item {
	position: relative;
	text-align: center;
}
.cta-ctas-4 .cta-ctas-4-item::after {
	content: " ";
	width: 80%;
	height: 0;
	position: absolute;
	left: 10%;
	bottom: -3px;
	border-bottom: 7px dotted var(--brand-green-lightest);
}
.cta-ctas-4 .cta-ctas-4-item i {
	width: 200px;
	height: 180px;
	background-color: #fff;
	color: var(--brand-green-light);
	border-radius: 100px 100px 0 0;
	font-size: 6rem;
	line-height: 200px;
}
.cta-ctas-4 .cta-ctas-4-item .text-content {
	padding-right: 25px;
	padding-bottom: 45px;
	padding-left: 25px;
}
.cta-ctas-4 .cta-ctas-4-item .text-content h3 {
	margin-bottom: 1em;
	color: var(--brand-green-dark);
}
.cta-ctas-4 .cta-ctas-4-item .text-content p {
	margin: 0;
}

/* text */
.cta-text {
	margin-top: 60px;
	margin-bottom: 60px;
}
.cta-text h1,
.cta-text h2,
.cta-text h3,
.cta-text h4,
.cta-text h5,
.cta-text h6 {
	color: var(--brand-green-dark);
}
.cta-text .nf-form-content button,
.cta-text .nf-form-content input[type=button],
.cta-text .nf-field-container.submit-container .nf-field-element input {
	height: auto;
	padding: 5px 12px;
	background-color: var(--brand-green-light);
	border-radius: 15px;
	font-size: 1.8rem;
}
.cta-text .nf-form-content button:hover,
.cta-text .nf-form-content button:focus,
.cta-text .nf-form-content input[type=button]:hover,
.cta-text .nf-form-content input[type=button]:focus,
.cta-text .nf-field-container.submit-container .nf-field-element input:hover,
.cta-text .nf-field-container.submit-container .nf-field-element input:focus {
	background-color: var(--brand-green-dark);
	color: #fff;
}

/* text - 2 cols */
.cta-text-2-cols .nf-field-container.hr-container {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}
.cta-text-2-cols .file_upload-wrap button,
.cta-text-2-cols .repeater-container button {
	background-color: var(--brand-green-dark);
	font-size: 1.3rem;
}
.cta-text-2-cols .repeater-container fieldset {
	padding-left: 30px;
	position: relative;
}
.cta-text-2-cols .repeater-container legend {
	margin-bottom: 10px;
	color: var(--brand-green-dark);
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
}
.cta-text-2-cols .repeater-container label {
	font-size: 15px!important;
}
.cta-text-2-cols .repeater-container .nf-remove-fieldset {
	position: absolute;
	top: -20px;
	right: 0;
	z-index: 100;
	width: 25px;
	height: 25px;
	padding: 0;
	background-color: #000!important;
	line-height: 25px;
	text-align: center;
}
.cta-text-2-cols .repeater-container .nf-add-fieldset {
	margin-left: 30px;
}

.cta-text-2-cols .repeater-container .nf-field-description {
	margin-top: 0!important;
}
.cta-text-2-cols .repeater-container .nf-field-description p {
	margin-top: 0!important;
	margin-bottom: 20px!important;
	font-size: 18px!important;
	font-weight: 700;
	line-height: 20px;
}

/* text & image */
.cta-text-image {
	margin-top: 100px;
	margin-bottom: 100px;
}
.cta-text-image.cta-text-image-border-yes {
	padding-bottom: 100px;
	border-bottom: 7px dotted var(--brand-green-lightest);
}
.cta-text-image .image-content {
	padding-right: 5%;
	padding-left: 5%;
}
.cta-text-image .image-content a {
	display: block;
	position: relative;
}
.cta-text-image .image-content a:hover {
	cursor: pointer;
}
.cta-text-image .image-content a::after {
	content: "\f002";
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -15px;
	margin-left: -15px;
	background: var(--brand-green-light);
	color: #fff;
	border-radius: 50%;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.6rem;
	line-height: 30px;
	text-align: center;
}
.cta-text-image.cta-text-image-img-border-yes .image-content img {
	box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.1);
}

.cta-text-image .text-content {
	padding-right: 5%;
	padding-left: 5%;
}
.cta-text-image .text-content h3 {
	color: var(--brand-green-dark);
}
.cta-text-image .text-content p:last-child {
	margin: 0;
}
.cta-text-image .text-content ol {
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: item;
}
.cta-text-image .text-content ol li {
	position: relative;
	padding-left: 45px;
	counter-increment: item;
	margin-top: 2em;
}
.cta-text-image .text-content ol li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(item);
	width: 30px;
	height: 30px;
	background: var(--brand-green-light);
	color: #fff;
	border-radius: 50%;
	font-size: 1.6rem;
	line-height: 30px;
	text-align: center;
}

.cta-text-image .modal-xl {
	width: 1200px;
	max-width: 94%;
	margin: 60px auto 0;
}
.cta-text-image .modal-content {
	border: none;
	border-radius: 0;
}
.cta-text-image .image-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	color: #fff;
	font-size: 4rem;
	opacity: 1;
	line-height: 50px;
	text-align: center;
}

/* text & button */
.cta-text-button {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: var(--brand-green-dark);
	color: #fff;
}
.cta-text-button .text-content {
	text-align: center;
}
.cta-text-button h2 {
	margin: 0;
	font-size: 3.5rem;
	text-shadow: 2px 2px 2px rgba(33,37,41,0.24);
}
.cta-text-button .button {
	margin: 0;
}
.cta-text-button .button a {
	font-size: 2.2rem;
	border: 2px solid var(--brand-green-light);
	border-radius: 20px;
	transition: all 0.3s linear;
}
.cta-text-button .button a:hover {
	background-color: transparent;
}

/* code */
.cta-code {
	margin-top: 30px;
	margin-bottom: 30px;
}
.cta-code iframe {
	display: block;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	border: none;
}

/* testimonials */
.cta-testimonials {
	padding-top: 100px;
	padding-bottom: 100px;
	background-image: url('../images/bg-dots-white.png');
	background-repeat: no-repeat;
	background-position: right top;
	background-size: auto 800px;
	background-color: var(--brand-green-lightest);
}
.cta-testimonials h2 {
	margin-bottom: 100px;
	color: var(--brand-green-dark);
	font-size: 3.5rem;
	text-align: center;
}
.cta-testimonials .testimonial-quote blockquote {
	position: relative;
	margin: 0;
	padding-right: 75px;
	padding-left: 75px;
}
.cta-testimonials .testimonial-quote blockquote::before,
.cta-testimonials .testimonial-quote blockquote::after {
	position: absolute;
	color: #fff;
	color: var(--brand-green-light);
	font-size: 170px;
	font-family: 'Arial', sans-serif;
}
.cta-testimonials .testimonial-quote blockquote::before {
	content: "“";
	top: -58px;
	left: 0;
}
.cta-testimonials .testimonial-quote blockquote::after {
	content: "”";
	right: 0;
	bottom: -150px;
}
.cta-testimonials .testimonial-quote blockquote p {
	position: relative;
	z-index: 1;
}
.cta-testimonials .testimonial-quote blockquote p:last-of-type {
	margin-bottom: 0;
}
.cta-testimonials .testimonial-attribution img {
	margin-bottom: 40px;
	width: 300px;
	max-width: 100%;
}
.cta-testimonials .testimonial-attribution .author {
	margin-bottom: 0.3em;
	font-weight: 700;
}
.cta-testimonials .testimonial-attribution .company {
	margin-bottom: 0;
}
.cta-testimonials .carousel-indicators {
	position: relative;
	right: auto;
	bottom: auto;
	left: auto;
	margin: 80px 0 0;
	z-index: 1;
}
.cta-testimonials .carousel-indicators li {
	width: 15px;
	height: 15px;
	margin: 0 10px;
	background: var(--brand-green-light);
	border-radius: 50%;
	background-clip: none;
	border: none;
	opacity: 1;
}
.cta-testimonials .carousel-indicators li.active {
	background: var(--brand-green-dark);
}

/* toggles */
.cta-toggles .cta-toggles-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.cta-toggles .cta-toggles-list .toggle-question:hover {
	cursor: pointer;
}


/* =FOOTER
-------------------------------------------------------------- */
#site-footer {
	padding-top: 50px;
	padding-bottom: 50px;
	border-top: 1px solid #999;
	text-align: center;
}
#site-footer p {
	margin: 0;
	font-size: 1.4rem;
}


/* =USEFUL
-------------------------------------------------------------- */
.nf-sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	opacity: 0;
	white-space: nowrap;
	width: 1px;
}
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
	max-height:0;
}


.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}

.row-no-padding > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}



/* placeholder colours, defined separately otherwise they're ignored by all browsers  */
::-webkit-input-placeholder { /* WebKit browsers */
	color: inherit;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: inherit;
	opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: inherit;
	opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: inherit;
}

/* prevent automatic styling of telephone numbers */
a[href^=tel]{
    color:inherit;
    text-decoration:none;
}

/* prevent rounded corners on form inputs */
textarea,
input[type=text],
input[type=email],
input[type=image],
input[type=submit] {
	-webkit-appearance: none;
	-webkit-border-radius:0px;
}

/* work around mobile device auto-fitting where text is made too narrow on non responsive sites */
@media only screen and (max-device-width: 800px) {
   h1,h2,h3,h4,h5,h5,p,li,dt,dd {
       background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==); 
       background-repeat:repeat;
    }
}


/* =RESPONSIVE
-------------------------------------------------------------- */

@media (max-width: 991px) {
	
	/* ctas */
		
		/* text (2 cols) */
		.cta-text-2-cols .cta-text-2-cols-intro {
			padding-bottom: 20px;
			margin-bottom: 50px;
			border-bottom: 7px dotted var(--brand-green-lightest);
		}
	
		/* text & image */
		.cta-text-image {
			margin-top: 75px;
			margin-bottom: 75px;
		}
		.cta-text-image.cta-text-image-border-yes {
			padding-bottom: 75px;
		}
		
		/* testimonials */
		.cta-testimonials {
			padding-top: 75px;
			padding-bottom: 75px;
		}
		.cta-testimonials h2 {
			margin-bottom: 75px;
		}
	
}

@media (max-width: 800px) {
	
	/* sign up form */
	.nf-form-cont .five-sixths, .nf-form-cont .four-sixths, .nf-form-cont .one-fourth, .nf-form-cont .one-half, .nf-form-cont .one-sixth, .nf-form-cont .one-third, .nf-form-cont .three-fourths, .nf-form-cont .three-sixths, .nf-form-cont .two-fourths, .nf-form-cont .two-sixths, .nf-form-cont .two-thirds {
		margin-bottom: 25px!important;
	}
	.form-input-center .field-wrap {
		justify-content: start !important;
	}

	
}

@media (max-width: 767px) {
	
	/* general */
	.h1, h1 {
		font-size: 3.5rem;
	}
	.h2, h2 {
		font-size: 2rem;
	}
	.h3, h3 {
		font-size: 1.8rem;
	}
	
	/* header */
	#site-header #logo-link.site {
		float: none;
		margin: 15px auto 15px;
	}
	#main-nav.site-menu {
		margin-bottom: 15px;
	}
	#main-nav.site-menu > ul {
		text-align: center;
	}
	#main-nav.site-menu > ul > li {
		margin-right: 5px;
		margin-left: 5px;
	}
	#main-nav li a {
		padding: 5px 8px;
		font-size: 1.5rem;
	}


	#site-header #logo-link.company {
		float: none;
		margin: 15px auto 15px;
	}
	#site-header #logo-link.company img {
		margin: 0 auto;
	}
	#main-nav.company-menu {
		margin-bottom: 15px;
	}
	#main-nav.company-menu > ul {
		text-align: center;
	}
	#main-nav.company-menu > ul > li {
		margin-right: 5px;
		margin-left: 5px;
	}
	
	/* content */
	#site-notice-message {
		top: 30px;
		transform: translate(-50%,0);
	}
	
	/* company template */
	#company-intro-text {
		margin-bottom: 30px;
	}
	
	.nf-form-content label,
	.nf-field-container.html-label p,
	.nf-field-label .nf-label-span {
		font-size: 16px!important;
	}
	
	/* ctas */
		/* banner */
		.cta-banner .cta-banner-content {
			padding-right: 5%;
			padding-left: 5%;
		}
		.cta-banner h1 {
			font-size: 3.5rem;
		}
		.cta-banner h2 {
			font-size: 2rem;
		}
		
		/* ctas x 4 */
		.cta-ctas-4 {
			margin-top: -70px;
		}
		.cta-ctas-4 .cta-ctas-4-item i {
			width: 140px;
			height: 120px;
			border-radius: 70px 70px 0 0;
			font-size: 5rem;
			line-height: 140px;
		}
		
		/* text & image */
		.cta-text-image {
			margin-top: 60px;
			margin-bottom: 60px;
		}
		.cta-text-image.cta-text-image-border-yes {
			padding-bottom: 60px;
		}
		.cta-text-image .image-content {
			margin-bottom: 40px;
		}
		.cta-text-image .modal-xl {
			max-width: 100%;
		}
		
		/* text & button */
		.cta-text-button h2 {
			font-size: 2.5rem;
		}
		
		/* testimonials */
		.cta-testimonials {
			padding-top: 60px;
			padding-bottom: 60px;
		}
		.cta-testimonials h2 {
			margin-bottom: 60px;
			font-size: 2.5rem;
		}
		.cta-testimonials .testimonial-quote {
			margin-bottom: 50px;
		}
		.cta-testimonials .testimonial-quote blockquote {
			padding-right: 5%;
			padding-left: 5%;
		}
		.cta-testimonials .testimonial-quote blockquote::before,
		.cta-testimonials .testimonial-quote blockquote::after {
			font-size: 80px;
		}
		.cta-testimonials .testimonial-quote blockquote::before {
			top: -23px;
			left: -3px;
		}
		.cta-testimonials .testimonial-quote blockquote::after {
			right: 0;
			bottom: -72px;
		}
	
}

@media (max-width: 576px) {
	
	/* general */
	body {
		font-size: 1.5rem;
	}
	.h1, h1 {
		font-size: 3rem;
	}
	
	/* ctas */
	
		/* banner */
		.cta-banner {
			height: 400px;
		}
		.cta-banner h1 {
			font-size: 2.5rem;
		}
		.cta-banner h2 {
			font-size: 1.8rem;
		}
		
		/* text & button */
		.cta-text-button .text-content {
			margin-bottom: 30px;
		}
		
		/* testimonials */
		.cta-testimonials .testimonial-quote blockquote {
			padding-right: 30px;
			padding-left: 30px;
		}
		.cta-testimonials .testimonial-attribution-content {
			padding-right: 30px;
			padding-left: 30px;
			text-align: center;
		}
	
}