/*
Theme Name: Connextion
Theme URI: https://mpiredesigngroup.com/
Description: This is the custom theme created for the Connextion Worldwide.
Author: StudioPress
Author URI: https://mpiredesigngroup.com/

Version: 3.4.1

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
Requires at least: 5.4
Requires PHP: 5.6
*/

/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
	- WPForms
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 960px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'Gilroy';
    src: url(./fonts/Gilroy/Gilroy-Thin.otf) format('opentype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url(./fonts/Gilroy/Gilroy-Light.otf) format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url(./fonts/Gilroy/Gilroy-Regular.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url(./fonts/Gilroy/Gilroy-Medium.otf) format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url(./fonts/Gilroy/Gilroy-Semibold.otf) format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url(./fonts/Gilroy/Gilroy-Bold.otf) format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url(./fonts/Gilroy/Gilroy-Extrabold.otf) format('opentype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url(./fonts/Gilroy/Gilroy-Heavy.otf) format('opentype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Font Awesome';
    src: url(./fa/fontawesome-pro-6.4.2-web/webfonts/fa-light-300.woff2) format('woff2');
}
/* HTML5 Reset
---------------------------------------------------------------------------- */
:root {
	--c-gray-blue : #EFEFFE;
	--c-xd-blue: #0A1068;
	--c-d-blue: #242CB5;
	--c-m-blue: #303AF2;
	--c-l-blue: #3854F2;

	--c-gray-100: #F8F7F7;
	--c-gray-200: #EFEFEF;
	--c-gray-300: #A39C95;
	--c-gray-400: #262626;

	--c-black: #000000;

	--font-heading: 'Gilroy';
	--font-body: 'Inter';
}


/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/* stylelint-enable */

/* Box Sizing
--------------------------------------------- */

html {
	box-sizing: border-box;
}

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

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: white;
	color: #333;
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
	overflow-x: hidden;
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	transition: all 0.2s ease-in-out;
}

a {
	color: var(--c-d-blue);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.inner-page-content a {
	position: relative;
}
.inner-page-content a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 2px;
	background-color: var(--c-xd-blue);
}

.inner-page-content a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0%;
	height: 2px;
	background-color: var(--c-l-blue);
	transition: 0.5s;
}
.inner-page-content a:hover::after {
	width: 100%;
}
a:focus,
a:hover {
	color: #333;
	text-decoration: none;
}

p {
	margin: 0 0 28px;
	padding: 0;
	letter-spacing: -1px;
	font-size: 22px;
}

ol,
ul {
	margin: 0;
	padding: 0;
	margin-left: 15px;
}
ul ul {
	margin-left: 15px;
	padding-left: 4px;
}
ul ul li {
	font-weight: 400;
	line-height: 1.15;
	font-size: 20px;
	list-style: circle !important;
}
li {
	list-style-type: circle;
	font-weight: 500;
	padding: 8px 0;
	font-size: 22px;
	letter-spacing: -1px;
	text-transform: capitalize;
}
li::marker {
	color: var(--c-m-blue);
}
li b {
	color: var(--c-m-blue);
}
hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	clear: both;
	color: #eee;
	margin: 1.65em auto;
}

b,
strong {
	font-weight: 500;
	font-size: 22px;
	letter-spacing: -1px;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: #333;
}

blockquote {
	margin: 30px;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 20px;
	color: var(--c-xd-blue);
	letter-spacing: -1px;
}

h1 {
	font-size: 72px;
}

h2 {
	font-size: 52px;
}

h3 {
	font-size: 44px;
}

h4 {
	font-size: 20px;
	color: var(--c-l-blue);
}

.entry-content h3,
.entry-content h4 {
	font-weight: 600;
}

.entry-content h4 {
	margin-top: 40px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

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

.gallery {
	overflow: hidden;
}

.gallery img {
	border: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px solid #999;
	outline: none;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: transparent;
	border: 1px solid #ddd;
	color: #333;
	font-size: 18px;
	font-weight: 400;
	padding: 15px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

:-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

::placeholder {
	color: #333;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
	background-color: var(--c-gray-blue);
	border: 0;
	color: var(--c-m-blue);
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding: 20px 35px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}
button.white {
	background-color: white;
	color: var(--c-m-blue);
}
button.blue {
	background-color: var(--c-gray-blue);
	color: var(--c-d-blue);
}
button.rounded {
	font-size: 20px;
	border-radius: 99999px;
}
button svg {
	display: none;
}
button.arrow {
	display: flex;
	align-items: center;
	overflow: hidden;
	transition: 0.75s;
	letter-spacing: -1px;
}
button.arrow .text {
	padding-right: 25px;
	background-color: inherit;
	z-index: 9;
}
button.arrow svg {
	display: inline;
	fill: var(--c-d-blue);
	height: 22px;
	transition-delay: 0;
}
button.arrow:hover svg {
	animation-duration: 0.75s;
	animation-name: buttonArrow;
	fill: white;
	transition-delay: 0.75s;
}
button.arrow:hover {
	background-color: var(--c-m-blue) !important;
}

@keyframes buttonArrow {
	0% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(60px);
		fill: var(--c-d-blue);
	}
	51% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0px);
		fill: white;
	}
}
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: var(--c-l-blue);
	border-width: 0;
	color: #fff;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid #eee;
}

th {
	font-weight: 600;
	padding: 0.5em;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	animation: fadein 1s;
	word-wrap: break-word;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

/* Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
	padding: 0px 0px 0;
}
html.lenis{height:auto}.lenis.lenis-smooth{scroll-behavior:auto}.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}.lenis.lenis-stopped{overflow:hidden}.lenis.lenis-scrolling iframe{pointer-events:none}
/* Only necessary with horizontal scrolling */
html[data-scroll-orientation="horizontal"] {
    body {
        width: fit-content;
    }
    [data-scroll-container] {
        display: flex;
    }
}

/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 15px 20px 0;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 40px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 16px;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 10px;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #0073e5;
}

.widget-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.genesis-title-hidden .site-inner {
	padding-top: 0;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
	margin-bottom: 40px;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 20px;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
	background: transparent;
	border-bottom: 1px solid #eee;
	color: #333;
	padding-left: 0;
	padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
	background: transparent;
	color: #0073e5;
}

.gs-faq__question::after {
	content: "\f132";
	font-family: dashicons; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
	float: right;
}

.gs-faq__question.gs-faq--expanded::after {
	content: "\f460";
}

/* WP Forms
--------------------------------------------- */

.entry-content .wpforms-container {
	margin-bottom: 40px;
}

.entry-content .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 14px;
	font-weight: 300;
}

.entry-content .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .entry-content .wpforms-form textarea {
	padding: 15px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


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

.site-header {
	background-color: #fff;
	padding: 0 30px;
	position: fixed !important; 
	top: 0;
	left: 0;
	width: 100%;
}
.site-header .wrap {
	width: 100%;
	max-width: 1800px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
}
.site-header .wrap .menu-primary {
	display: flex;
	justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.site-header::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background-color: var(--c-m-blue);
	transition: 0.75s;
	transition-timing-function: ease-out;
	z-index: -1;
}
/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding-bottom: 25px;
	padding-top: 25px;
	transition: 0.5s;
}

.wp-custom-logo .title-area {
	max-width: 250px;
	padding-bottom: 5px;
	padding-top: 5px;
	width: 100%;
	z-index: 9;
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333;
	text-decoration: none;
}

.site-description,
.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
	transition: 0.5s;
}
.scrolling-down .title-area {
	opacity: 0;
	transform: translateY(15px);
}
.site-header {
	transition: 0.75s;
	z-index: 9;
}
.is-down.site-header {
	background-color: white;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
.scrolling-down.site-header {
	background-color: transparent;
	box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
}
.is-down.site-header::after {
	width: 0%;
}
.scrolling-down .genesis-nav-menu .menu-item {
	opacity: 0;
	transform: translateY(15px);
}
.genesis-nav-menu a {
	color: var(--c-xd-blue);
	font-family: var(--font-heading);
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	font-size: 16px;
	font-weight: 700;
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	padding-left: 15px;
	padding-right: 15px;
	text-decoration: none;
	position: relative;
}
.genesis-nav-menu a svg {
	transform: translateY(2px);
	fill: var(--c-xd-blue);
	transition: 0.35s;
}
.genesis-nav-menu a:hover svg {
	fill: var(--c-m-blue);
}
.genesis-nav-menu a::after {
	display:block;
	content: '';
	border-bottom: solid 2px var(--c-l-blue);  
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
	transform-origin:100% 50%
}
.genesis-nav-menu a:hover::after {
	transform: scaleX(1);
	transform-origin:0 50%;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: var(--c-l-blue);
	text-decoration: none;
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 15px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	font-size: 14px;
	position: relative;
	word-wrap: break-word;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none;
	position: relative;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	color: #333;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #0073e5;
}

.menu-toggle {
	float: right;
	line-height: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 15px 0;
	position: relative;
	z-index: 1000;
}

.menu-toggle.activated::before {
	content: "\f335";
}

.site-header .dashicons-before::before {
	transition: none;
}

.site-header .menu-toggle::before {
	float: left;
	margin-right: 5px;
	position: relative;
	text-rendering: auto;
	top: 1px;
}

.sub-menu-toggle {
	float: right;
	padding: 9px 10px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.sub-menu-toggle::before {
	display: inline-block;
	text-rendering: auto;
	transform: rotate(0);
	transition: transform 0.25s ease-in-out;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

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

.nav-primary {
	clear: left;
	padding-bottom: 15px;
	padding-top: 15px;
	width: 100%;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 10px;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Entry Content
--------------------------------------------- */

.entry {
	margin-bottom: 40px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	padding-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #f5f5f5;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 30px;
}

/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 60px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #333;
	color: #fff;
}

/* Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 40px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	line-height: 1.5;
}

.sidebar .widget {
	margin-bottom: 40px;
}

.sidebar p {
	margin-bottom: 20px;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	border-top: 1px solid #eee;
	background-color: #fff;
	clear: both;
	padding: 60px 0;
}

.footer-widgets .wrap {
	margin-left: auto;
	margin-right: auto;
}

.footer-widget-area {
	margin-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}


/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: #fff;
	border-top: 1px solid #eee;
	font-size: 15px;
	line-height: 1.5;
	padding: 30px;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}


/* Media Queries
---------------------------------------------------------------------------- */

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

	table {
		table-layout: auto;
		word-break: normal;
	}

}

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

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

	.site-header {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 9999;
	}

	.admin-bar .site-header {
		top: 32px;
	}

	/* Genesis Menu
	--------------------------------------------- */

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu > .menu-bold > a {
		font-weight: 700;
	}

	.genesis-nav-menu > .menu-highlight > a {
		background-color: #333;
		border-radius: 3px;
		color: #fff;
		font-weight: 600;
		margin-left: 15px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.genesis-nav-menu > .menu-highlight > a:focus,
	.genesis-nav-menu > .menu-highlight > a:hover {
		background-color: #0073e5;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 380px;
	}

	.genesis-nav-menu .sub-menu {
		background-color: white;
		z-index: 99;
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}

	.genesis-nav-menu .sub-menu a {
		border: 1px solid #eee;
		border-top: 0;
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -46px 0 0 179px;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.js .nav-primary {
		display: block;
		padding-top: 15px;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

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

	.nav-primary {
		clear: none;
		float: right;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		padding-left: 15px;
		padding-right: 15px;
	}

	/* Site-Inner
	--------------------------------------------- */

	.site-inner {
		max-width: 100%;
	}

	/* Content
	--------------------------------------------- */

	.content {
		float: left;
		width: 100%;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}

	/* Sidebar
	--------------------------------------------- */

	.sidebar {
		float: right;
		width: 30%;
	}

	.sidebar-content .sidebar {
		float: left;
	}

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 30px;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 40px 60px;
	}

	.after-entry .enews {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Column Classes
	--------------------------------------------- */

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2.564102564102564%;
	}

	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.717948717948715%;
	}

	.one-third,
	.two-sixths {
		width: 31.623931623931625%;
	}

	.four-sixths,
	.two-thirds {
		width: 65.81196581196582%;
	}

	.one-fourth {
		width: 23.076923076923077%;
	}

	.three-fourths {
		width: 74.35897435897436%;
	}

	.one-sixth {
		width: 14.52991452991453%;
	}

	.five-sixths {
		width: 82.90598290598291%;
	}

	.first {
		clear: both;
		margin-left: 0;
	}

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		margin-bottom: 60px;
	}

	/* Footer Widgets
	--------------------------------------------- */

	.footer-widgets .wrap {
		max-width: 1140px;
	}

	.footer-widget-area {
		float: left;
		margin-bottom: 0;
		width: calc(100% / 3);
	}

}

/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}
	/* width */
	::-webkit-scrollbar {
	width: 10px;
	}

	/* Track */
	::-webkit-scrollbar-track {
	background: var(--c-gray-blue);
	}

	/* Handle */
	::-webkit-scrollbar-thumb {
	background: var(--c-l-blue);
	}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
	background: var(--c-m-blue);
	}

  .constrain {
	max-width: 1800px;
	width: 100%;
	margin-left: auto !important;
	margin-right: auto !important;
  }
  .inner-page-content {
	padding-top: 250px;
  }

  .nav-phone {
	position: absolute !important;
	right: calc( (100vw - 1800px) / 2 ) !important;
}
.rmp-container .nav-phone {
	position: static !important;
	right: unset !important;
}
.rmp-container .nav-phone svg {
	display: none !important;
}
.image-wipe {
	object-fit: cover;
	object-position: center;
	width: 100%;
	min-width: 100%;
	height: 100%;
}

.slick-slide h2 {
	font-size: 30px;
	margin-bottom: 0;
	font-weight: 500;
	color: #5c596c;
	text-align: center;
}

.page-template-default .gform_wrapper textarea {
	max-height: 200px !important;
}
.page-template-default .gform_wrapper input, .page-template-default .gform_wrapper textarea {
	border: 0 !important;
}
.page-template-default h1 {
	font-size: 60px;
	letter-spacing: -2px;
	margin-top: 18px;
}
.page-template-default .primary-content .col.left svg {
    height: 66px;
    width: 17px;
	margin-top: 50px;
}
.page-template-default .gform_wrapper input[type="submit"] {
	background-color: transparent !important;
	border: 1px solid var(--c-d-blue) !important;
	color: var(--c-d-blue) !important;
	transition: 0.35s !important;
}
.page-template-default .gform_wrapper input[type="submit"]:hover {
	background-color: var(--c-l-blue) !important;
	color: white !important;
}
.gform_wrapper .ginput_container_text, .gform_wrapper .ginput_container_email, .gform_wrapper .ginput_container_phone, .gform_wrapper .ginput_container_textarea {
	position: relative !important;
}
.gform_wrapper .ginput_container_text::after, .gform_wrapper .ginput_container_email::after, .gform_wrapper .ginput_container_phone::after, .gform_wrapper .ginput_container_textarea::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	opacity: 0.5;
	background-color: var(--c-m-blue);
}
.gform_wrapper .ginput_container_text::before, .gform_wrapper .ginput_container_email::before, .gform_wrapper .ginput_container_phone::before,  .gform_wrapper .ginput_container_textarea::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: var(--c-m-blue);
	transition: 0.5s;
	z-index: 9;
}
.gform_wrapper .ginput_container_text:focus-within::before, .gform_wrapper .ginput_container_email:focus-within::before,  .gform_wrapper .ginput_container_phone:focus-within::before, .gform_wrapper .ginput_container_textarea:focus-within::before {
	width: 100%;
}
.contact-m-top {
	margin-top: 300px;
}
.contact-pad-right {
	padding-right: 250px;
}
.page-id-68 .inner-page-content {
	position: relative;
}
.page-id-68 .inner-page-content::after {
	content: '';
    right: -57%;
    bottom: -33%;
    width: 100%;
    height: 100%;
    position: absolute;
    background: radial-gradient(#3854f284 0%, transparent 70%, transparent 100%);
    z-index: -1;
}
#Team.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	row-gap: 20px;
	margin: 50px 0 100px 0;
}
#Team .team-single {
	width: calc(100% / 3);
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	transition: 0.35s;
}
#Team .team-single:hover {
	opacity: 0.7;
}
#Team .team-single.member {
	cursor: pointer;
}
#Team .team-single img {
	height: 470px;
	object-fit: cover;
	width: 100%;
	object-position: top;
}
#Team .team-single .team-single-info {
	display: flex;
	flex-direction: column;
	background-color: var(--c-gray-100);
	padding: 25px 35px;
}
#Team .team-single .team-single-info h2 {
	font-size: 30px;
	margin-bottom: 5px;
}
#Team .team-single .team-single-info h3 {
	font-size: 22px;
}
#Team .team-single .team-single-info a {
	font-size: 17px;
	font-weight: 500;
	color: var(--c-m-blue);
	text-decoration: none;
}
#Team .team-single .team-single-info p {
	display: none;
}
#Team .team-single .team-single-info .row {
	display: flex;
	justify-content: space-between;
}
#Team .team-single .team-single.info .row a {
	text-align: right;
}
#Team .team-single .team-single-info .row a svg {
	width: 30px;
	height: 30px;
	fill: var(--c-d-blue);
	transition: 0.35s;
}
#Team .team-single .team-single-info .row a::after, #Team .team-single .team-single-info .row a::before {
	display: none;
}
#Team .team-single .team-single-info .row a svg:hover {
	fill: var(--c-l-blue);
}
  #team-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 50vw;
	min-width: 1300px;
	min-height: 700px;
	height: 50vh;
	background-color: white;
	display: none;
	flex-direction: row;
	transition: 0.75s;
	z-index: 9999999999;
	opacity: 0;
	border: 2px solid var(--c-gray-blue);
  }
  #team-popup-page-overlay {
	position: fixed;
	display: none;
	left: 0vw;
	top: 0vh;
	min-width: 100vw;
	min-height: 100vh;
	transition: 0.75s;
	background-color: rgba(255,255,255,0.5);
	cursor: pointer;
	z-index: 9999999999;
	opacity: 0;
  }
  #team-popup-close {
	position: absolute;
	right: 25px;
	top: 25px;
	color: white;
	cursor: pointer;
	font-weight: 900;
  }
  #team-popup-close svg {
	width: 40px;
	height: 40px;
	fill: var(--c-m-blue);
	transition: 0.35s;
  }
  #team-popup-close svg:hover {
	fill: var(--c-d-blue);
  }
  #team-popup .image {
	height: 100%;
	width: 40%;
	border: 70px solid white;
  }
  #team-popup a svg {
	display: none;
  }
  #team-popup .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  #team-popup .content {
	width: 60%;
	display: flex;
	flex-direction: column;
	color: white;
    padding: 50px;
	padding-right: 175px;
  }
  #team-popup .content h3 {
	font-size: 20px;
  }
  #team-popup .content p {
	font-size: 20px;
	margin-top: 20px;
	color: var(--c-xd-blue);
  }
  #team-popup .content h4 {
	color: var(--c-m-blue);
	font-size: 18px;
  }

  /* EVENT PRIME / EVENTS */
  .emagic .ep-btn-dark {
	background-color: var(--c-m-blue) !important;
  }
  .emagic .ep-btn-dark:hover {
	background-color: var(--c-d-blue) !important;
  }
#back-to-top {
	position: fixed;
	right: 5px;
	bottom: -0px;
	z-index: 999;
	color: var(--c-l-blue);
	transform-origin: left;
	cursor: pointer;
	transition: 0.5s;
	padding: 5px;
}
#back-to-top .center {
	position: relative;
}
#back-to-top .back-circle {
	-webkit-animation: spin 6s linear infinite;
 	animation: spin 6s linear infinite;
	transform-origin: center;
}
#back-to-top .arrow-up {
	width: 20px;
	height: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	fill: var(--c-d-blue);
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.white-wrap {
	background-color: white;
}

.top-heading {
	color:  var(--c-m-blue);
	margin-top: 150px;
	font-weight: 700;
	font-size: 7vw;
	margin: 0 !important;
	padding-left: 18%;
	letter-spacing: -4px;
	line-height: 1;
  }
    .front {
		padding: 150px 0;
	}
  .front .row {
	display: flex;
	flex-direction: row;
  }
  .front .row .col {
	display: flex;
	flex-direction: column;
  }
	.front p {
		color: var(--c-xd-blue);
	}
	.front p span {
		color: var(--c-m-blue);
	}
	.front h2 {
		color: var(--c-xd-blue);
		font-weight: 700;
	    line-height: 1.25;
	}
	.front h2 span {
		color: var(--c-d-blue);
	}
	#Front-1 {
		position: relative;
	}
	#Front-1 .front-graphic {
		position: absolute;
		right: 500px;
		top: 171px;
		transform: translateX(50%);
	}
	#Front-1 .front-graphic svg {
		height: 250px;
	}
	#Front-1 img {
		margin: 15px 0;
		height: 175px;
	}
	#Front-1 .col {
		width: 50%;
	}
	#Front-1 .floating {
		position: absolute;
		left: 50px;
		transform: translateY(-35%);
		height: 650px;
		width: 500px;
	}
	#Front-1 .floating img {
		width: 750px;
		height: 900px;
	}
	#Front-1 .heading {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding: 50px 0 150px 0;
	}
	#Front-1 .heading .row:nth-of-type(2) {
		justify-content: center;
	}
	#Front-1 .heading .row:nth-of-type(3) {
		justify-content: end;
	}

  #Front-1 .sub-heading {
	gap: 50px;
	align-items: center;
	max-width: 900px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-top: 200px;
  }
  #Front-1 p {
	width: 66.6%;
	max-width: 477px;
  }
  #Front-2 {
	position: relative;
  }
  #Front-2 .col {
	width: 50%;;
  }
  #Front-2 .col.staggered {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	gap: 50px;
  }
	#Front-2 .col.staggered p {
		transform: translateX(400px);
		max-width: 500px;
	}
	#Front-2 .col.staggered button {
		transform: translateX(525px);
	}
	#Front-2 .absolute-image {
		width: 500px;
		height: 750px;
		position: absolute;
		top: -50px;
		right: 50px;
	}
	#Front-2 .absolute-image img {
		width: 650px;
		height: 900px;
		object-fit: cover;
	}
	#Front-2 .dot-strip {
		position: absolute;
		left: 100px;
		top: 0;
		width: calc(50% - 100px);
	}
	.dot-strip img {
		min-height: 30px;
		object-fit: cover;
	}
	#Front-3 .row {
		flex-wrap: wrap;
		gap: 15px;
		row-gap: 15px;
	}
	#Front-3 .box {
		width: 100%;
		background-color: #fff;
		max-width: calc(100% / 3 - 10px);
		padding: 35px;
		box-shadow: 0px 0px 20px var(--c-gray-blue);
		display: flex;
		flex-direction: column;
		gap: 60px;
		z-index: 9; 
	}
	#Front-3 .box h3 {
		margin-bottom: 75px;
		font-size: 40px;
		font-weight: 500;
	}
	#Front-3 .box strong, #Front-3 .box p {
		font-size: 20px;
	}
	#Front-3 .box strong {
		color: var(--c-m-blue);
		font-weight: 400;
	}
	#Front-3 .box p {
		margin-top: 35px;
	}
	#Front-3 {
		position: relative;
	}
	#Front-3 .first {
		max-width: calc(100% / 3 - 10px);
		min-width: calc(100% / 3 - 10px);
	}
	#Front-3 .first p, #Front-3 .first strong {
		max-width: 375px;
		font-size: 20px;
	}
	#Front-3 .first .last {
		margin-top: 75px;
	}
	#radial-blue {
		position: absolute;
		right: -1100px;
		top: -400px;
		height: 2000px;
		width: 2000px;
		background: radial-gradient(#3854f284 0%, transparent 70%, transparent 100%);
	}
	#Front-4 {
		position: relative;
		padding: 100px 0px 150px 0
	}

	#Front-4 .dot-strip {
		position: absolute;
		left: 100px;
		top: 0;
		width: calc(50% - 100px);
	}
	#Front-4 .logo-row {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		row-gap: 50px;
		margin-top: 50px;
	}
	#Front-4 .logo-row .image {
		width: 25%;
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 300px;
	}
	#Front-4 .logo-row .image img {
		max-height: 105px;
		width: auto;
		max-width: 50%;
	}
	#footer a::before, #footer a::after {
		display: none !important;
	}
  .page-content.blue {
	background-color: var(--c-gray-blue);
  }
.page-content.white {
	background-color: white;
  }
  .page-template-default .row {
	display: flex;
  }
  .page-template-default .row .col {
	width: 50%;
  }
  .page-template-default .primary-content {
	min-height: 50vh;
	position: relative;
	padding-bottom: 100px;
  }  
  .page-template-default .primary-content p {
	font-size: 20px;
	margin-top: 8px;
  }
  .page-template-default .primary-content::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 27.3%;
	height: 100%;
	background: radial-gradient(circle at 225% 225%, #3854f284, #3854f284 50%, transparent 75%, transparent 75%);
  }
  .page-template-default .primary-content .col.right {
	padding-right: 20%;
  }
  .page-template-default .full-width-image {
	width: 100vw;
	height: 100vh;
  }
  .page-template-default .full-width-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .page-template-default .secondary-content {
	position: relative;
	background-color: var(--c-gray-200);
	overflow: hidden;
	padding: 100px 0;
  }
  .page-template-default .secondary-content h4 {
	font-weight: 500;
	font-size: 22px;
	letter-spacing: -1px;
	color: var(--c-m-blue);
  }
.page-id-61.page-template-default .secondary-content, .page-id-21.page-template-default .secondary-content, .page-id-85.page-template-default .secondary-content {
	background-color: #fff;
  }
  .page-id-68.page-template-default .secondary-content {
	background-color: transparent;
  }
  .page-id-68 .secondary-content .col.right {
	width: 50% !important;
	margin-top: -25px;
  }
	.page-template-default .secondary-content #radial-blue {
		position: absolute;
		left: -1000px;
		top: 400px;
		height: 2000px;
		width: 2000px;
		background: radial-gradient(#3854f284 0%, transparent 70%, transparent 100%);
	}
	.page-id-68 .inner-page-content {
		padding-top: 125px !important;
	}
	.page-id-85 .secondary-content #radial-blue {
		left: unset;
		right: -1000px;
	}
  .page-template-default .secondary-content .large-stacked-heading {
	font-size: 8vw;
	font-weight: 600;
	color: white;
	position: relative;
	z-index: 9;
  }
.page-id-21 .secondary-content .large-stacked-heading {
	color: var(--c-d-blue);
	font-weight: 800;
  }
  .page-id-68 #radial-blue {
	display: none !important;
  }
  .page-id-61 .secondary-content .large-stacked-heading, .page-id-85 .secondary-content .large-stacked-heading, .page-id-68 .secondary-content .large-stacked-heading  {
	font-size: 3.9vw;
	line-height: 4.1vw;
	color: var(--c-xd-blue);
  }
  .page-template-default .secondary-content .col.left {
	width: 66.6%;
  }
.page-id-68 .secondary-content .col.left {
	width: 50% !important;
  }
  .page-template-default .secondary-content .col.right {
	width: 33.3%;
	display: flex;
	flex-direction: column;
	gap: 50px;
  }
  .page-template-default .secondary-content .sub-heading {
	font-weight: 700;
	position: relative;
	padding-left: 30px;
  }
  .page-template-default .secondary-content .sub-heading::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 15px;
	width: 15px;
	transform: translate(-50%, 25%);
	background-color: var(--c-m-blue);
  }
  ::selection {
	background-color: #303af271;
	color: var(--c-gray-400);
  }

.page-id-61.page-template-default .secondary-content .col.right, .page-id-85.page-template-default .secondary-content .col.right {
	width: 50%;
	gap: 0;
}
.page-id-61.page-template-default .secondary-content .col.left,.page-id-85.page-template-default .secondary-content .col.left  {
	width: 50%;
}
.page-id-61.page-template-default #radial-blue, .page-id-21.page-template-default #radial-blue {
	top: 40%;
}
.page-id-61.page-template-default #wrapper #content .pin-spacer, .page-id-85.page-template-default #wrapper #content .pin-spacer {
	height: 0 !important;
	padding: 0 !important;
}
.accordions .title {
  font-size: 40px;
  line-height: 1.15;
  padding-bottom: .4em;
  color: var(--c-xd-blue);
  letter-spacing: 0.75px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.accordions .text {
  line-height: 1.4;
  overflow: hidden;
  padding-bottom: 20px;
  font-size: 22px;
  letter-spacing: 0.75px;
}

.accordions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

.accordion {
  background-color: white;
  width: 100%;
  padding: 25px 30px 10px;
  margin-bottom: 40px;
  box-shadow: 0px 0px 20px var(--c-gray-blue);
}

.contact-page input::placeholder, .contact-page textarea::placeholder {
	color: var(--c-m-blue);
	opacity: 0.5;
	font-size: 30px;
	letter-spacing: -0.75px;
}
.contact-page input, .contact-page textarea {
	font-size: 30px !important;
	color: var(--c-m-blue);
	letter-spacing: -0.75px;
}
.contact-page input, .contact-page textarea {
	margin-top: 25px;
}
.contact-page .gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 180px !important;
}
.gform_required_legend {
	display: none !important;
}

#gform_2 input[type="submit"] {
    color: var(--c-m-blue) !important;
    letter-spacing: -1px !important;
    border-radius: 99999px !important;
    font-size: 20px !important;
    background-color: white !important;
    padding: 20px 35px !important;
}
#gform_2 input[type="submit"]:hover {
	background-color: var(--c-l-blue) !important;
	color: white !important;
}
@media (max-width: 480px) {
  .accordion {
    padding: 15px 20px 8px;
  }
  .accordions .title {
    font-size: 20px;
  }
}
.flair {
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9;
	transition: scale 0.35s, opacity 0.35s;
	opacity: 1;
}
.flair.hide {
	opacity: 0;
}
.flair .inner {
	scale: 0.20;
	position: relative;
	width: 100%;
	height: 100%;
	transition: scale 0.35s;
}
.flair.active .inner {
	scale: 1.25;
}
.flair svg {
	fill: var(--c-m-blue);
	stroke: var(--c-m-blue);
}
.flair p {
	color: white;
	z-index: 9;
	position: absolute;
	left: 50%;
	font-size: 12.5px;
	line-height: 1;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.35s;
}
.flair.active p {
	opacity: 1;
}
.flair.active svg.arrow {
	opacity: 1;
}
.contact-page .gform_footer {
	display: none !important;
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 52px;
  height: 52px;
  width: 52px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  scale: 1.25;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
}
.progress-wrap::after {
  position: absolute;
  font-family: 'Font Awesome';
  content: '\f062';
  text-align: center;
  line-height: 52px;
  font-size: 22px;
  color: var(--c-m-blue); /* --- Pijl kleur --- */
  left: 0;
  font-weight: 200;
  top: 0;
  height: 52px;
  width: 52px;
  cursor: pointer;
  display: block;
  z-index: 1;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap::before {
  position: absolute;
  font-family: 'Font Awesome';
  content: '\f062';
  text-align: center;
  line-height: 52px;
  font-size: 22px;
  opacity: 0;
  background: var(--c-m-blue); /* --- Pijl hover kleur --- */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 52px;
  width: 52px;
  cursor: pointer;
  display: block;
  z-index: 2;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap svg path { 
  fill: none; 
}
.progress-wrap svg.progress-circle path {
  stroke: var(--c-m-blue); /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing:border-box;
}
#footer {
	background-color: #1d212d;
	color: white;
	padding-top: 100px;
	position: relative;
	z-index: 9;
	overflow: hidden;
}
#footer h2 {
	font-size: 50px;
	letter-spacing: -1px;
	color: rgba(255,255,255,0.4);
	line-height: 100%;
}
#footer h3 {
	font-size: 28px;
    line-height: 107%;
	color: rgba(255,255,255,0.9);
	font-weight: 400;
}
#footer .row.top, #footer .row.bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
#footer .row.top .col.center a {
	line-height: 0.9;
	padding: 0 0;
	position: relative;
	text-transform: lowercase;
	font-weight: 500;
	color: rgba(255,255,255,0.9);
	font-size: 50px;
	letter-spacing: -1px;
	transition: 0.35s;
	font-family: 'Gilroy';
}
#footer .gform_validation_errors {
	display: none !important;
}
#footer .gform_button {
	display: none !important;
}
#footer .row.top .col.center a:hover {
	color: rgba(255,255,255,0.4);
}
#footer .gfield_label {
	display: none !important;
}
#footer .row.top {
	padding-bottom: 250px;
}
#footer .row.top .col.left {
	width: 50%;
}
#footer .row.top .col.right {
	width: 18%;
}
#footer .row.top .col.center {
	width: 32%;
	display: flex;
	flex-direction: column;
	align-items: baseline;
}
#footer .row.bottom .col {
	width: 50%;
	display: flex;
	flex-direction: column;
}
#footer .row.bottom .col.left .row {
	display: flex;
	align-items: center;
	gap: 20px;
}
#footer .row.bottom img {
	height: 60px;
	margin-right: 20px;
}
#footer .row.bottom {
	padding: 75px 0 100px;
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(255,255,255,0.2);
	position: relative;
}
#footer .row.bottom::before {
	content: '+';
	position: absolute;
	top: -2px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 22px;
	color: rgba(255,255,255,0.9);
	rotate: 45deg;
	margin-left: -11px;
}
#footer .row.bottom a {
	font-family: 'Gilroy';
	position: relative;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .5px;
	font-weight: 400;
	color: rgba(255,255,255,0.9);
	transition: 0.35s;
}
#footer .row.bottom a:hover {
	color: rgba(255,255,255,0.4);
}

#footer input {
	border: 0;
	color: rgba(255,255,255,0.4);
	font-size: 24px;
}
#footer .gform_wrapper .ginput_container_email::after{
	opacity: 1;
	background-color: #7478c5;
}
#footer input::placeholder {
	color: rgba(255,255,255,0.4);
	font-size: 24px;
}
#footer span.dot-break {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.9);
}
#footer .row.bottom .col.tag {
	font-size: 12px;
	letter-spacing: .5px;
	font-size: 12px;
	text-transform: uppercase;
}
#footer .row.bottom .col.right .row {
	display: flex;
	gap: 20px;
	align-items: center;
}
#footer .row.bottom .col.right {
	align-items: end;
}
.page-id-21 .secondary-content .large-stacked-heading, .page-id-61 .secondary-content .large-stacked-heading  {
	text-decoration: none;
	display: flex;
    flex-direction: column;
    align-items: baseline;
	letter-spacing: -2px;
}
.page-id-21 .secondary-content .large-stacked-heading .has-underline, .page-id-61 .secondary-content .large-stacked-heading .has-underline {
	position: relative;
}
.page-id-21 .secondary-content .large-stacked-heading .underline, .page-id-61 .secondary-content .large-stacked-heading .underline {
	width: 0%;
	height: 12px;
	background-color: var(--c-l-blue);
	border-radius: 2px;
	position: absolute;
	bottom: 14px;
}
.page-id-21 .secondary-content .large-stacked-heading p, .page-id-61 .secondary-content .large-stacked-heading p  {
	max-width: 850px;
	color: var(--c-gray-400);
    font-weight: 400;
	font-family: var(--font-body);
	font-size: 22px;
	letter-spacing: -1px;
	line-height: 1.625;
}
.page-id-21 .secondary-content .col.right {
	gap: 10px;
}
.page-id-21 .secondary-content .col.right h4 {
	margin-bottom: 0;
	font-size: 26px;
}
.page-id-61.page-template-default .secondary-content .col.right ul p, .page-id-61.page-template-default .secondary-content .col.right ul .row, .page-id-85.page-template-default .secondary-content .col.right ul p, .page-id-85.page-template-default .secondary-content .col.right ul .row {
	border-bottom: 1px solid #dddddd;
	padding-bottom: 25px;
}
.page-id-61.page-template-default .secondary-content .col.right ul li, .page-id-85.page-template-default .secondary-content .col.right ul li {
	list-style-type: none;
	color: var(--c-m-blue);
}
.page-id-61.page-template-default .secondary-content .col.right ul ul li, .page-id-85.page-template-default .secondary-content .col.right ul ul li {
	list-style-type: disc;
	color: var(--c-black);
}
.home .item {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3.125rem;
  display: flex;
  position: relative;
}
.home .item_info {
  z-index: 5;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  color: white;
}
.home .item_info h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.home .item_info p {
  margin-top: 0;
  margin-bottom: 0;
  font-family: serif;
  font-size: 0.875rem;
  line-height: 1.4;
}
.home .item_image {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.home .item_image img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home .item_image .mask {
  width: 100%;
  height: 50%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
}
.text-reveal {margin-top:0px; overflow:hidden; }

.split-line {
  overflow: hidden;
}
  @media only screen and (max-width: 1860px) {
	.constrain {
		padding-left: 30px;
		padding-right: 30px;
	}
  }
@media only screen and (max-width: 1700px) {
	.top-heading {
		font-size: 10vw;
	}
}
@media only screen and (max-width: 1500px) {
	.constrain {
		padding: 0 30px;
	}
	.inner-page-content {
		padding-top: 150px !important;
	}
	#Front-2 .col.staggered p {
		transform: translateX(175px);
	}
	#Front-2 .col.staggered button {
		transform: translateX(450px);
	}
	.page-template-default .primary-content::after {
		width: 100%;
		height: calc(100% + 250px);
	}
	#Front-1 .front-graphic {
		right: 250px;
	}
}
@media only screen and (max-width: 1300px) {
	#team-popup {
		min-width: 100%;
	}
	#Front-2 .col.staggered p {
		transform: translateX(0);
	}
	#Front-2 .col.staggered button {
		transform: translateX(0);
	}
	#Front-3 .box, #Front-3 .first {
		max-width: calc(100% / 2 - 10px);
		min-width: calc(100% / 2 - 10px);
	}
	#Front-4 .dot-strip {
		width: calc(100% - 100px);
		left: 50px;
	}
	#Front-1 .floating {
		max-width: 38%;
	}
	#Front-1 .floating img {
		width: 100%;
		object-fit: cover;
	}
	#Front-1 .front-graphic {
		right: 120px;
	}
}
@media only screen and (max-width: 1100px) {
	.page-template-default .primary-content .col.right {
		padding-right: 0 !important;
	}
	#Front-1 .front-graphic {
		display: none;
	}
	#Front-2 .absolute-image {
		width: 360px;
		height: 500px;
		position: absolute;
		top: 60px;
		right: 50px;
	}
	#Front-1 .floating img {
		height: 550px;
	}
	#Team .team-single {
		width: calc(100% / 2);
		display: flex;
		flex-direction: column;
		padding: 0 10px;
	}
	#Team .team-single.member {
		cursor: pointer;
	}
	#Team .team-single img {
		height: 350px;
		object-fit: cover;
	}
	#team-popup .image {
		display: none;
	}
	#team-popup .content {
		width: 100%;
		padding-right: 10px;
		padding-left: 10px;
	}
	#team-popup .content p {
		margin-top: 20px;
		font-size: 15px;
	}
	#team-popup h2, #team-popup h3, #team-popup h4 {
		font-size: 19px !important;
	}
}
@media only screen and (max-width: 1000px) {
	#Front-1 p {
		width: 100%;
	}
	#footer .row.top, #footer .row.bottom {
		flex-direction: column;
	}
}
@media only screen and (max-width: 850px) {
	.page-id-61.page-template-default .secondary-content .col.left, .page-id-85.page-template-default .secondary-content .col.left {
		width: 100%;
	}
	.page-id-61.page-template-default .secondary-content .col.right, .page-id-85.page-template-default .secondary-content .col.right {
		width: 100%;
	}
	#footer .row.top .col {
		width: 100% !important;
	}
	#Front-1 img {
		height: 105px;
	}
	#footer .row.top {
		gap: 80px;
		padding-bottom: 100px;
	}
	.front #radial-blue {
		display: none;
	}
	#footer .row.bottom .col {
		width: 100%;
		align-items: center !important;
	}
	#footer .row.bottom img {
		margin-right: 0;
	}
	#Front-2 .absolute-image {
		display: none;
	}
	#Front-2 .dot-strip {
		width: calc(100% - 100px);
		left: 50px;
	}
	#Front-2 .col.staggered {
		width: 100%;
		align-items: center;
		justify-self: center;
	}
	#Front-2 .col.staggered p {
		max-width: 100%;
	}
	#Front-2 br {
		display: none;
	}
	.page-template-default .row {
		flex-direction: column;
	}
	.page-template-default .row .col {
		width: 100%;
	}
	.contact-page .gform_wrapper.gravity-theme .gform_fields {
		grid-row-gap: 70px !important;
	}
	.page-template-default .secondary-content .col.left, .page-template-default .secondary-content .col.right {
		width: 100% !important;
	}
	.page-template-default .secondary-content .large-stacked-heading {
		font-size: 16vw;
		line-height: 16.5vw;
	}
	.page-id-21 .secondary-content .large-stacked-heading .underline, .page-id-61 .secondary-content .large-stacked-heading .underline {
		bottom: 3px;
		height: 6px;
	}
}
@media only screen and (max-width: 780px) {
	.contact-m-top {
		margin-top: 20px;
	}
	#Front-1 .heading {
		padding-bottom: 75px;
	}
	#Front-1 .sub-heading {
		padding-top: 75px;
	}
	#Front-1 .floating {
		transform: unset;
	}
	.contact-pad-right {
		padding-right: 0;
	}
	#newsletter .row {
	
		flex-direction: column;
	}
	#newsletter .row .col {
		width: 100%;
	}
	#Front-3 .box, #Front-3 .first {
		max-width: 100%;
		min-width: 100%;
	}
	.front {
		padding: 75px 0;
	}
	.page-template-default .full-width-image {
		height: 50vh;
	}
}
@media only screen and (max-width: 750px) {
	.inner-page-content {
		margin-bottom: 35px !important;
	}

	.show-mobile-only {
		display: block !important;
	}

	#About .row {
		flex-direction: column-reverse;
	}
	h2 {
		font-size: 33px;
	}

	.front.front-body .row {
		gap: 50px;
	}
		#Team .team-single {
		width: 100%;
		display: flex;
		flex-direction: column;
		padding: 0 10px;
	}
	#Team .team-single.member {
		cursor: pointer;
	}
	#Team .team-single img {
		height: 400px;
		object-fit: cover;
	}
	.partner-slider {
		margin-top: 50px;		
	}
	.partner-slider .slick-slide {
		width: 50%;		
	}
	.page-template-default .secondary-content #radial-blue, .home #radial-blue {
		height: 100%;
		width: 100%;
	}
}


@media only screen and (max-width: 650px) {
	.top-heading {
		font-size: 58px !important;
		padding-top: 0;
		padding-bottom: 0;
	}


	.partner-slider .slick-slide {
		width: 100%;		
	}
	.partner-slider .constrain {
		gap: 50px;
	}
	.partner-slider .slick-slide img {
		width: 170px;
	}
	#Front-1 .row.first {
		flex-direction: column-reverse;
	}
	#Front-1 .row.first .col {
		width: 100%;
		padding: 0 20px;
	}
	#Front-1 .floating {
		max-width: 100%;
		position: static;
	}
	#Front-1 .floating img {
		height: 400px;
	}
	#Front-1 p {
		max-width: 100%;
	}
	#Front-1 .heading .row:nth-of-type(3), #Front-1 .heading .row:nth-of-type(2), #Front-1 .heading .row:nth-of-type(1) {
		justify-content: center;
	}
}
#gform_confirmation_message_2 {
	font-size: 30px !important;
    color: var(--c-m-blue);
    letter-spacing: -0.75px;
}
#rmp-menu-wrap-179 .rmp-menu-item-link, #rmp-menu-additional-content-179 {
	font-family: 'Gilroy' !important;
	letter-spacing: -1px;
	font-weight: 500;
	line-height: 1 !important;
}
@media only screen and (max-width: 550px) {
	#footer .row.bottom .col.left .row {
		flex-direction: column;
	}
	#footer .row.bottom .col.right .row {
		flex-direction: column;
		margin-top: 35px;
	}
	#Front-1 img {
		height: 60px;
	}
	#Front-3 .box {
		gap: 20px;
		padding: 20px;
	}
	.constrain {
		padding-left: 15px;
		padding-right: 15px;
	}
	#Front-1 img {
		width: 100%;
		transform: unset !important;
	}
	#Front-1 .heading {
		padding-bottom: 50px;
	}
}
#page-loader {
	width: 100vw;
	height: 100vh;
	min-width: 100vw;
	min-height: 100vh;
	z-index: 9999999999999;
	background-color: var(--c-gray-blue);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#page-loader #graphic {
	max-height: 200px;
	max-width: 200px;
}
#page-loader #graphic svg {
	width: 100%;
	height: 100%;
}
#page-loader #graphic svg .st1 {
	fill: #fff;
}
#page-loader #graphic svg .st2 {
	fill: #fff;
}
#page-loader #graphic svg polygon {
	fill: #fff;
}
.pulse-anim {
    animation-name: pulse;
    animation-duration: 0.75s;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
}
.loaded .pulse-anim {
	animation-iteration-count: 1;
}
@keyframes pulse {
	0% {
		transform: scale(.95);
	}
	50% {
	}
	100% {
		transform: scale(1.05);
	}
}