/*--------------------------------------------------------------
- RESET CSS
--------------------------------------------------------------*/
/* Do not edit this section! */

body {
  overscroll-behavior-y: none;
}

*, *:before, *:after {
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

	-webkit-box-sizing: border-box;
  	box-sizing: border-box;
}

html {
	margin: 0 !important;
	padding: 0 !important;
	scroll-behavior: smooth;
	-ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
	width: 100%;
    height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
}

main {
	display: block;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

hr {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}

b,
strong {
	font-weight: var(--font-weight-bold);
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

mark {
    background: #ff0;
    color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
	/*-webkit-appearance: none;*/
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}



button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	-webkit-box-sizing: border-box;
	        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"] {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

:focus {
	outline: -webkit-focus-ring-color auto 0px !important;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

.render {
    image-rendering: -moz-crisp-edges;
    image-rendering:   -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.clear {
	clear: both;
}


/*--------------------------------------------------------------
- Global Variables
--------------------------------------------------------------*/
/* Uncomment out when developing */

:root {

	/* Colors */
	--color-dark: #030D61;
	--color-blue: #0079c1;
	--color-white: #ffffff;
	--color-light-grey: #F0EDEA;

	/* Font Family */
	--font-primary: "Inter", "Helvetica Neue", sans-serif;
	--font-weight-bold: bold;

	/* Font Size */
	--font-size-body: clamp(0.9rem, 1vw, 1.5rem);

	/* Line Height */
	--line-height-body: 1.5;

	/* Letter Spacing */
	/* Buttons */
	/* Forms */
	/* Padding */
	/* Margins */
	--margin-bottom-content: 1.5em;

	/* Border Radius */
	--border-radius: 15px;

}

/* Set overall site width */
.container {
	max-width: 90%;
	margin: 0 auto;
}

/* Load additional CSS Files */
/* @import url("css/home.css"); */


/*--------------------------------------------------------------
- Typography
--------------------------------------------------------------*/

/* Webfonts
--------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


/* Base
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--color-dark);
	font-family: var(--font-primary);
	font-size: var(--font-size-body);
	line-height: var(--line-height-body);
}

/* Selection */
::-moz-selection {
	background: var(--color-blue);
	color: var(--color-white);
}
::selection {
	background: var(--color-blue);
	color: var(--color-white);
}
   
::-moz-selection {
	background: var(--color-blue);
	color: var(--color-white);
}

a::-moz-selection {
	color: var(--color-blue);
}

a::selection {
	color: var(--color-blue);
}

a::-moz-selection {
	color: var(--color-blue);
}


/* Titles
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: var(--font-weight-bold);
}
h1 {
	font-size: 5.8500000000000005rem;
}
h2 {
    font-size: 2.6rem;
    line-height: 1em;
	font-weight: 400;
}
h3 {
	font-size: 3.0333333333333337rem;
}
h4 {
	font-size: 2.6rem;
}
h5 {
	font-size: 1.7333333333333334rem;
}
h6 {
	font-size: 1.3rem;
}

/* Miscellaneous
--------------------------------------------- */
p {
	margin-bottom: var(--margin-bottom-content);
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 var(--margin-bottom-content);
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: var(--margin-bottom-content);
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}


/* Elements
--------------------------------------------- */
body {
	background: var(--color-light-grey);
	letter-spacing: -0.04em;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

hr {
    background-color: var(--color-light-grey);
    border: 0;
    height: 1px;
    margin-bottom: var(--margin-bottom-content);
}

ul,
ol {
	margin: 0;
	padding: 0
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li{
	margin-left: 1rem;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 600;
}

dd {
	margin: 0 1.5em var(--margin-bottom-content);
}

embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 var(--margin-bottom-content);
	width: 100%;
}


/* Links
--------------------------------------------- */
a {
	color: #4169e1;
	text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

a:visited {
	color: #800080;
}

a:hover,
a:focus,
a:active {
	color: #191970;
	outline: 0;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

/* Edit Link */
.edit-link {
    padding: 10px 20px;
    text-transform: uppercase;
    display: block;
    max-width: 65px;
    margin-top: 1.5em;
}

.edit-link a {
    color: #fff !important;
    font-weight: 600;
}


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

/* Buttons */
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 3px solid;
    border-radius: var(--border-radius);
    line-height: 1;
    padding: 1em 70px 1em 1em;
    position: relative;
	display: inline-block;
	text-align: left;
	font-weight: 500;
}
.button svg {
	width: 14px;
	-webkit-transition: all 500ms;
	-o-transition: all 500ms;
	transition: all 500ms;
	position: absolute;
    right: 20px;
	top: 50%;
    -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
}

.button:hover svg {
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    top: 33%;
    right: 7%;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	background: transparent;
	color: #fff;
}

/* Button Styles */
.btn1 {
	border-color: #9C84C1;
	background: transparent;
	color: #030D61;
}
.btn1:visited {
	color: #030D61;
}
.btn1:hover {
	color: #fff;
	background: #9C84C1;
}
.btn1 svg path {
	stroke: #030D61;
}
.btn1:hover svg path {
	stroke: #fff;
}

.btn2 {
	border-color: #fff;
	background: #fff;
	color: #030D61;
}
.btn2:visited {
	color: #030D61;
}
.btn2:hover {
	border-color: #fff;
	background: transparent;
	color: #fff;
}
.btn2 svg path {
	stroke: #030D61;
}
.btn2:hover svg path {
	stroke: #fff;
}

.btn3 {
	border-color: #fff;
	background: transparent;
	color: #fff;
}
.btn3:visited {
	color: #030D61;
}
.btn3:hover {
	border-color: #fff;
	background: #fff;
	color: #030D61;
}
.btn3 svg path {
	stroke: #fff;
}
.btn3:hover svg path {
	stroke: #030D61;
}

.btn-box {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
    width: 33.3333%;
    aspect-ratio: 3 / 2.4;
	padding: 1em;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.btn-box svg {
    top: 22%;
}
.btn-box:hover svg {
    top: 16%;
}

@media (max-width: 900px){
.process-block .btn1 {
	margin-left: 20px !important;
	}
}


/* Form Fields */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid var(--color-light-grey);
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid var(--color-light-grey);
}

textarea {
	width: 100%;
}


/*--------------------------------------------------------------
- Headers & Menus
--------------------------------------------------------------*/
#masthead {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
    position: fixed;
    width: 90%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
	z-index: 99;
}
#masthead .site-branding {
	display: block;
    width: 120px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background-color: #fff;
    padding: 50px 15px 15px;
	position: relative;
    top: -20px;
	-webkit-transition: top 500ms;
	-o-transition: top 500ms;
	transition: top 500ms;
}
#masthead .site-branding img {
	width: 100%;
	height: auto;
}
#masthead .header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#masthead .get-in-touch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    width: 120px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-size: 1.2rem;
    background-color: #030D61;
    padding: 50px 30px 30px;
    color: #fff;
    text-align: center;
    margin-right: 10px;
    position: relative;
    top: -20px;
    -webkit-transition: top 500ms;
    -o-transition: top 500ms;
    transition: top 500ms;
    font-weight: 500;
    line-height: 1.2;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#masthead .hamburger-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    width: 120px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background-color: #fff;
    padding: 50px 30px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	position: relative;
    top: -20px;
	-webkit-transition: top 500ms;
	-o-transition: top 500ms;
	transition: top 500ms;
}
#masthead .hamburger-menu span {
    height: 3px;
    margin: 6px 0;
    background-color: #030D61;
    width: 100%;
}
#masthead .site-branding:hover,
#masthead .hamburger-menu:hover,
#masthead .get-in-touch:hover {
	top: -10px;
	-webkit-transition: top 500ms;
	-o-transition: top 500ms;
	transition: top 500ms;
}

/* Main Menu
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}


/* Mobile Menu
--------------------------------------------- */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}


 /* Content Navigation
--------------------------------------------- */
.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 var(--margin-bottom-content);
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 50%;
	        flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 50%;
	        flex: 1 0 50%;
}


/*--------------------------------------------------------------
- Columns & Layout
--------------------------------------------------------------*/
.section {
	clear: both;
	margin: 0px;
	padding: 0px;
}

.row:before,
.row:after {
	content:"";
	display:table;
}

.row:after {
	clear:both;
}

.row {
	zoom:1; /* For IE 6/7 */
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/*--------------------------------------------------------------
- Page Templates
--------------------------------------------------------------*/

/* Posts
--------------------------------------------- */
.sticky {
	display: block;
}

/* .post,
.page {
	margin: 0 0 var(--margin-bottom-content);
} */

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 var(--margin-bottom-content);
}

/* Single Post */
.entry-meta,
.entry-footer {
    font-size: 14px;
}

.entry-meta a,
.entry-footer a {
    font-weight: 600;
}

.single .entry-footer {
    border-top: 1px solid #eaeaea;
    padding: 1.5em 0;
}

.single .edit-link,
.fr .edit-link {
    margin-top: 0;
}

span.author {
    text-transform: capitalize;
}

span.tags-links,
span.comments-link {
    margin-left: 2em;
}

/* Blog */
.blog h2.entry-title,
.archive h2.entry-title,
.search h2.entry-title {
    margin-bottom: 0;
}

.blog .entry-footer {
    border-top: 1px solid #eaeaea;
    padding: 1.5em 0;
}


/*--------------------------------------------------------------
- Miscellaneous
--------------------------------------------------------------*/

/* Comments
--------------------------------------------- */
#comments,
#respond {
    margin-top: 3em;
}

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

.comment-author img {
    vertical-align: middle;
    margin-right: .5em;
}

.comment-metadata {
    font-size: 13px;
    float: right;
    margin-top: -2.05em;
}

.comment-list,
.comment-list .children {
    list-style: none;
}

.comment-list li.parent:nth-child(even) {
    background: #f9f9f9;
    padding: 1em;
    margin-bottom: 1em;
}

.comment-list li.parent:nth-child(odd) {
    background: #fff;
    padding: 1em;
    margin-bottom: 1em;
}

.comment-list .edit-link {
    display: none;
}

.comment-list li.depth-1 .reply {
    padding-bottom: 2em;
}

.comment-list li #respond {
    margin-top: 0;
}

p.logged-in-as {
    margin-top: 0;
}


/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.custom-logo-link {
	display: inline-block;
	width: 100%;
}


/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: var(--margin-bottom-content);
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}


/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: var(--margin-bottom-content);
	display: -ms-grid;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	-ms-grid-columns: (1fr)[5];
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	-ms-grid-columns: (1fr)[6];
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	-ms-grid-columns: (1fr)[7];
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	-ms-grid-columns: (1fr)[8];
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	-ms-grid-columns: (1fr)[9];
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}


/* Alerts
--------------------------------------------- */
.alert {
    font-size: 16px;
    padding: 8px 14px;
    margin-bottom: 20px;
    color: #c09853;
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
}

.alert p {
    margin: 0;
}

.alert-info {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-warning {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.alert-success {
    color: #468847;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-error {
    color: #956433;
    background-color: #fff7d6;
    border-color: #f1da74;
}


/* Blockquotes
--------------------------------------------- */
blockquote {
    font-size: 1.4em;
    margin: 20px auto;
    font-style: italic;
    color: #555555;
    padding: 1.2em 30px 1.2em 75px;
    line-height: 1.6;
    position: relative;
}

blockquote::after {
    content: '';
}

blockquote span {
    display: block;
    color: #333333;
    font-style: normal;
    font-weight: 600;
    margin-top: .5em;
}

blockquote span:before {
    content: '\2014';
    margin-right: .5em;
}


/* Code
--------------------------------------------- */
code,
samp,
kbd {
    font-family: "Courier New", Courier, monospace, sans-serif;
    text-align: left;
    color: #555;
}

pre {
    padding: 0.5em 1em;
    margin: 1.7em 0 2.7em;
    overflow: auto;
}

*:first-child+html pre {
    padding-bottom: 2em;
    overflow-y: hidden;
    overflow: visible;
    overflow-x: auto;
}

* html pre {
    padding-bottom: 2em;
    overflow: visible;
    overflow-x: auto;
}


/* Back To Top
--------------------------------------------- */
.topbutton {
	height:50px;
	width:50px;
	position:fixed;
	right:5px;
	bottom:5px;
	z-index:1;
	background: red;
	display:none;
}


/*--------------------------------------------------------------
 - Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	        clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}


/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: var(--margin-bottom-content);
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: var(--margin-bottom-content);
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--margin-bottom-content);
}


/* Jetpack infinite scroll
--------------------------------------------- */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
 - IE Styles
--------------------------------------------------------------*/

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    /* IE10+-specific styles go here */
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	input[type="range"],
	input[type="date"],
	input[type="month"],
	input[type="week"],
	input[type="time"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="color"] {
		height: 36px !important;
	}
}





/*--------------------------------------------------------------
 - Gallery Slider - 3/10
--------------------------------------------------------------*/




.proj-gal-images{
  height: 100%;
  width: 100%;
  min-height: 38rem;
  display: grid;
  align-content: center;
}


.proj-gal-images img{
  object-fit: cover;
  height: 48rem;
	/* max-height: 85vh; */
  top: 0;
  position: relative;
  width: 100%;
  transition: all 0.3s;

}


.project-gallery-img.is-next,
.project-gallery-img.is-prev{
  margin: auto;
  transition: all 0.3s;
}


.project-gallery-img.is-next .proj-gal-images img,
.project-gallery-img.is-prev .proj-gal-images img{
  height: 31rem;
  transition: all 0.3s;
}

/*
@media(max-width: 768px) {
	.project-gallery-img.is-next .proj-gal-images img,
	.project-gallery-img.is-prev .proj-gal-images img {
		max-height: 65vh;
	}
	.proj-gal-images {
		min-height: unset;
	}
} */

.project-gallery-img{
  transition: all 0.3s;
}


.project-gallery-img .proj-gal-images img{
  transition: all 0.3s;
}


.proj-gal-images img{
	border-radius: var(--border-radius);
}


.splide__arrow {
	background-color: #030D61 !important;
	background: #030D61 !important;
}

.splide__arrow:hover {
	background-color:white;
}


.splide__arrow svg{
	fill:#00dbb0;
}


.splide__pagination__page{
	background: #030D61;
}

.splide__pagination__page.is-active{
	background-color:white;
}


/*--------------------------------------------------------------
 - Gallery Slider - 2 visible slider option - 3/10
--------------------------------------------------------------*/
/*

.proj-gal-images img{
  height: 31rem !important;
  transition: all 0.3s;
}



.project-gallery-img.is-next img,
.project-gallery-img.is-active img{
  object-fit: cover;
  height: 38rem !important;
  top: 0;
  position: relative;
  width: 100%;
  transition: all 0.3s;

}




*/
#eyebrow{
	background-color: #9C8576;
	padding: 0.4rem 0;
	text-align: center;
	z-index: 100;
	position: relative;
	color: #ffffff;
	font-weight: 700;
}
#eyebrow a{
	color: #00DBB0;
	font-weight: 700;
}

body:has(#eyebrow) #masthead{
	top: -4px;
}
body:has(#eyebrow) #primary{
	position: relative;
	top: 32px;
}
body:has(#eyebrow) #masthead .site-branding,
body:has(#eyebrow) #masthead .get-in-touch,
body:has(#eyebrow) #masthead .hamburger-menu{
	padding: 84px 15px 15px;
	transition: padding ease-out 0.3s;
}

body:has(#eyebrow).scrolled #masthead .site-branding,
body:has(#eyebrow).scrolled #masthead .get-in-touch,
body:has(#eyebrow).scrolled #masthead .hamburger-menu{
	padding: 50px 15px 15px;
}

.blog-grid-container .form-copy{
	max-width: 50%;
}

@media (max-width: 1000px){
	.blog-grid-container .form-copy{
	max-width: 100%;
}
}

.blog-grid-container .the-form{
	margin-top: auto;
	margin-bottom: auto;
}

@media (max-width: 1000px) {
    .form-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
        width: 100%;
    }
	.the-form{
		margin-left: 0 !important;
	}
	.the-form a{
		width: 100%;
	}
}

.page-id-2306 #colophon .footer-form{
	display: none !important;
}

.forminator-ui.forminator-custom-form[data-design=none] .forminator-label {
  display: none;
}

.forminator-ui.forminator-custom-form[data-design=none] .forminator-input,
.forminator-ui.forminator-custom-form[data-design=none] .forminator-select2,
.forminator-ui.forminator-custom-form[data-design=none] .forminator-textarea {
  background: #ffffff;
  border: none;
  font-size: 1.5rem;
  padding: 36px;
  border-radius: 10px;
  width: 100%;
}

.forminator-ui.forminator-custom-form[data-design=none] .forminator-error-message {
  background: #f8d7da;
  color: #842029;
  font-size: 1.25rem;
  padding: 5px;
  border-radius: 5px;
}

.forminator-ui.forminator-custom-form[data-design=none] .forminator-button-submit {
  float: right;
}

.forminator-ui.forminator-custom-form[data-design=none] .forminator-input::placeholder, 
.forminator-ui.forminator-custom-form[data-design=none] .forminator-select2,
.forminator-ui.forminator-custom-form[data-design=none] .forminator-textarea::placeholder {
	color: #BEC9E5;
}

/* Hide the bullet list of errors */
.forminator-response-message ul {
  display: none !important;
}

.custom-error-message {
  background: #f8d7da;
  color: #842029;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 500;
}

.custom-error-message {
  transition: opacity 0.3s ease;
}

.custom-error-message.hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
}

.forminator-button-submit {
  position: relative;
}

/* Spinner base */
.forminator-button-submit::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

/* ACTIVE STATE (more reliable selector) */
.forminator-ui.forminator-is_submitting .forminator-button-submit::after,
.forminator-is_submitting .forminator-button-submit::after {
  opacity: 1;
  animation: spin 0.7s linear infinite;
}

/* Animation */
@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Hide SVG when loading */
.forminator-ui.forminator-is_submitting .forminator-button-submit svg,
.forminator-is_submitting .forminator-button-submit svg {
  opacity: 0;
}

.forminator-response-message.forminator-success {
  background: #e6f9f0;
  color: #0f5132;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 500;
  margin: 20px 0;
}

.forminator-response-message.forminator-success::before {
  content: "✓";
  font-weight: bold;
  margin-right: 10px;
}

/* Only animate when visible states exist */
.forminator-response-message.forminator-success,
.forminator-response-message.forminator-error {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* Initial state ONLY when those classes are present */
.forminator-response-message.forminator-success,
.forminator-response-message.forminator-error {
  animation: fadeUp 0.4s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
