@charset "UTF-8";
/*!
Theme Name: Continental
Theme URI: http://underscores.me/
Author: broadhead.
Author URI: https://broadheadco.com
Description: A custom WordPress theme for Continental Stock Transfer & Trust Company
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: continental
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Continental is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.black {
  color: #000000;
}

.white {
  color: #ffffff;
}

.purple {
  color: #262A82;
}

.ltgray-bg {
  background-color: #f2f2f2;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* Helpers
--------------------------------------------- */
/* Helper classes taken from Tailwind CSS */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.leading-0 {
  line-height: 0;
}

.leading-1 {
  line-height: 1;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.col-50 {
  width: 48%;
}

.col-33 {
  width: 32%;
}

.col-25 {
  width: 24%;
}

.p-0 {
  padding: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.m-0 {
  margin: 0;
}

.mx-0 {
  padding-left: 0;
  padding-right: 0;
}

.my-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-0 {
  margin-left: 0;
}

.italic {
  font-style: italic;
}

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

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

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

.font-extrabold {
  font-weight: 800;
}

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

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

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

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.object-cover {
  object-fit: cover;
}

.overflow-hidden {
  overflow: hidden;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.bg-cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/roboto-v30-latin-300.eot"); /* IE9 Compat Modes */
  src: url("./fonts/roboto-v30-latin-300.eot?#iefix") format("embedded-opentype"), url("./fonts/roboto-v30-latin-300.woff2") format("woff2"), url("./fonts/roboto-v30-latin-300.woff") format("woff"), url("./fonts/roboto-v30-latin-300.ttf") format("truetype"), url("./fonts/roboto-v30-latin-300.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/roboto-v30-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("./fonts/roboto-v30-latin-regular.eot?#iefix") format("embedded-opentype"), url("./fonts/roboto-v30-latin-regular.woff2") format("woff2"), url("./fonts/roboto-v30-latin-regular.woff") format("woff"), url("./fonts/roboto-v30-latin-regular.ttf") format("truetype"), url("./fonts/roboto-v30-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("./fonts/roboto-v30-latin-italic.eot"); /* IE9 Compat Modes */
  src: url("./fonts/roboto-v30-latin-italic.eot?#iefix") format("embedded-opentype"), url("./fonts/roboto-v30-latin-italic.woff2") format("woff2"), url("./fonts/roboto-v30-latin-italic.woff") format("woff"), url("./fonts/roboto-v30-latin-italic.ttf") format("truetype"), url("./fonts/roboto-v30-latin-italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/roboto-v30-latin-700.eot"); /* IE9 Compat Modes */
  src: url("./fonts/roboto-v30-latin-700.eot?#iefix") format("embedded-opentype"), url("./fonts/roboto-v30-latin-700.woff2") format("woff2"), url("./fonts/roboto-v30-latin-700.woff") format("woff"), url("./fonts/roboto-v30-latin-700.ttf") format("truetype"), url("./fonts/roboto-v30-latin-700.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/inter-v13-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("./fonts/inter-v13-latin-regular.eot?#iefix") format("embedded-opentype"), url("./fonts/inter-v13-latin-regular.woff2") format("woff2"), url("./fonts/inter-v13-latin-regular.woff") format("woff"), url("./fonts/inter-v13-latin-regular.ttf") format("truetype"), url("./fonts/inter-v13-latin-regular.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/inter-v13-latin-700.eot"); /* IE9 Compat Modes */
  src: url("./fonts/inter-v13-latin-700.eot?#iefix") format("embedded-opentype"), url("./fonts/inter-v13-latin-700.woff2") format("woff2"), url("./fonts/inter-v13-latin-700.woff") format("woff"), url("./fonts/inter-v13-latin-700.ttf") format("truetype"), url("./fonts/inter-v13-latin-700.svg#Inter") format("svg"); /* Legacy iOS */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.1;
}

.hdg-1, .hdg-2 {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-style: normal;
}

h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
}

h3 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
}

h4 {
  font-weight: 400;
  font-size: 1.25rem;
}

.left-center-hdg {
  margin-bottom: 40px;
}

.sub-hdg {
  font-size: 1.1rem;
}

.hdg-border {
  padding-bottom: 8px;
  position: relative;
}
.hdg-border:after {
  content: "";
  background: linear-gradient(90deg, rgb(134, 16, 159) 0%, rgb(130, 189, 52) 100%);
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: -2px;
}

@media screen and (min-width: 768px) {
  .left-center-hdg {
    text-align: center;
    margin-bottom: 50px;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1280px) {
  h1 {
    font-size: 3.75rem;
  }
}
p {
  margin-bottom: 15px;
}
p:last-of-type {
  margin-bottom: 0;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  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: #ffffff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 15px 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.list-reset li {
  line-height: 1;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #000000;
}
a:visited {
  color: #800080;
}
a:hover, a:focus, a:active {
  color: #191970;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

.link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  color: #262A82;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.1;
}
.link:after {
  content: url("/wp-content/uploads/2023/11/link-caret.svg");
  display: block;
  position: absolute;
  width: 5px;
  height: 10px;
  bottom: 9px;
  right: -15px;
  -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
}
.link:hover:after {
  right: -18px;
}
.link:visited {
  color: #262A82;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 0;
  background: #82C341;
  color: #000000;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
}
button.border-btn,
input[type=button].border-btn,
input[type=reset].border-btn,
input[type=submit].border-btn {
  background-color: transparent;
  border: 2px solid #262A82;
  padding: 8px 12px;
  color: #262A82;
  border-radius: 0;
}
button.border-btn:hover,
input[type=button].border-btn:hover,
input[type=reset].border-btn:hover,
input[type=submit].border-btn:hover {
  color: #262A82;
}
button:visited,
input[type=button]:visited,
input[type=reset]:visited,
input[type=submit]:visited {
  color: #000000;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  color: #ffffff;
}

.btn, .wp-block-button__link, .wp-element-button {
  border: 0;
  background: #82C341;
  color: #000000;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
}
.btn.border-btn, .wp-block-button__link.border-btn, .wp-element-button.border-btn {
  background-color: transparent;
  border: 2px solid #262A82;
  padding: 8px 12px;
  color: #262A82;
  border-radius: 0;
}
.btn.border-btn:hover, .wp-block-button__link.border-btn:hover, .wp-element-button.border-btn:hover {
  color: #262A82;
}
.btn:visited, .wp-block-button__link:visited, .wp-element-button:visited {
  color: #000000;
}
.btn:hover, .wp-block-button__link:hover, .wp-element-button:hover {
  color: #ffffff;
}

.btn-wrap {
  margin-top: 30px;
}

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 #ccc;
  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 #ccc;
}

textarea {
  width: 100%;
}

.wpcf7-form-control-wrap input[type=text],
.wpcf7-form-control-wrap input[type=email],
.wpcf7-form-control-wrap input[type=number],
.wpcf7-form-control-wrap input[type=tel],
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap select {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border: none;
  border-radius: 0;
  width: 100%;
  color: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7-form-control-wrap input[type=text]::placeholder,
.wpcf7-form-control-wrap input[type=email]::placeholder,
.wpcf7-form-control-wrap input[type=number]::placeholder,
.wpcf7-form-control-wrap input[type=tel]::placeholder,
.wpcf7-form-control-wrap textarea::placeholder,
.wpcf7-form-control-wrap select::placeholder {
  color: #ffffff;
}
.wpcf7-form-control-wrap .wpcf7-textarea {
  max-height: 100px;
  color: #ffffff;
}

.select-wrap {
  position: relative;
  width: 100%;
}
.select-wrap:after {
  content: "";
  background: url("/wp-content/uploads/2023/12/arrow-down.svg");
  background-size: 20px 10px;
  background-position: center center;
  display: block;
  width: 20px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 20px;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.page-item-21 {
  display: none;
}

.footer-navigation .menu {
  font-size: 1rem;
}
.footer-navigation .menu .menu-item {
  margin: 0 0 15px;
  display: block;
}
.footer-navigation .menu .menu-item:last-of-type {
  margin-bottom: 0;
}
.footer-navigation .menu a {
  text-decoration: underline;
}
.footer-navigation .menu a:after {
  display: none;
}
.footer-navigation .menu-item.current-menu-item a {
  color: #ffffff;
}

.main-menu {
  position: fixed;
  width: 0;
  height: 0;
  right: 0;
  top: 0;
  z-index: 10;
  overflow: hidden;
  background-image: url("/wp-content/uploads/2023/11/nav-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.4s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.4s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.4s cubic-bezier(0.15, 0, 0.25, 1);
}
.main-menu.open {
  width: 100vw;
  height: 100%;
}
.main-menu.open .menu-item {
  display: block;
}
.main-menu.open .menu-item.menu-item-home {
  display: none;
}
.main-menu.open .main-navigation {
  animation-name: fade;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}
.main-menu.open #mega-menu-wrap-menu-1 .mega-menu-toggle + #mega-menu-menu-1 {
  display: block !important;
}

.mega-menu-item-1493 .mega-sub-menu {
  padding: 0;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-1627 {
  margin-top: 20px;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu {
  background: #ffffff;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu {
  padding: 10px;
}

.menu-btn-icon {
  position: relative;
  z-index: 20;
}

.menu-btn {
  position: relative;
  z-index: 9999;
  background: 0 0;
  border: none;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  all: unset;
  transition: transform 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  cursor: pointer;
}
.menu-btn svg {
  display: block;
}
.menu-btn .close-btn-icon {
  display: none;
  width: 25px;
  height: 26px;
}
.menu-btn.open {
  z-index: 40;
}
.menu-btn.open .menu-btn-icon {
  display: none;
}
.menu-btn.open .close-btn-icon {
  display: block;
}

#mega-menu-wrap-menu-1 .mega-menu-toggle {
  display: none !important;
}

.main-navigation {
  display: flex;
  padding: 0 20px;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  opacity: 0;
}

.main-menu-flex {
  height: 100vh;
}

.menu {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1.1rem;
  padding: 0;
}
.menu li {
  line-height: 1;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
  width: 100% !important;
}

.menu-item {
  margin-bottom: 35px;
  display: inline-block;
}
.menu-item.menu-item-home {
  display: none;
}
.menu-item:last-child {
  margin-bottom: 0;
}
.menu-item a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: none;
  position: relative;
}
.menu-item a:after {
  display: block;
  content: "";
  border-bottom: solid 4px #82C341;
  transform: scaleX(0);
  -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  padding-top: 4px;
}
.menu-item a:hover:after {
  transform: scaleX(1);
}
.menu-item.current-menu-item a, .menu-item.current-page-ancestor a, .menu-item.current_page_parent a {
  color: #ffffff;
}
.menu-item.current-menu-item a:after, .menu-item.current-page-ancestor a:after, .menu-item.current_page_parent a:after {
  transform: scaleX(1);
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item {
  position: relative;
  padding: 0;
  line-height: 1;
  margin-bottom: 10px;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:last-of-type {
  margin-bottom: 0;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:after {
  display: block;
  content: "";
  border-bottom: solid 4px #82C341;
  transform: scaleX(0);
  -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:hover:after {
  transform: scaleX(0);
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-menu-item:after {
  transform: scaleX(1);
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-menu-item-has-children:hover:after {
  transform: scaleX(0);
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  display: inline-block;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:after {
  transform: scaleX(1);
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current-page-ancestor:after, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-current_page_parent:after {
  transform: scaleX(1);
}

.nav-flex {
  align-items: center;
}

.login-wrap {
  margin: 0 30px 0 0;
}

.posts-navigation {
  margin-bottom: 40px;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item.mega-menu-item-object-custom .mega-menu-link {
  margin-left: 20px;
  position: relative;
  padding-left: 12px !important;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item.mega-menu-item-object-custom .mega-menu-link:before {
  content: url("/wp-content/uploads/2024/01/green-arrow.svg");
  position: absolute;
  left: -12px;
  top: -2px;
  width: 5px;
  height: 12px;
  display: block;
  margin-left: 12px;
}

@media screen and (min-width: 768px) {
  .menu-btn {
    right: 30px;
  }
  .menu-btn.open .menu-btn-icon {
    right: 0;
  }
}
@media screen and (min-width: 769px) {
  .nav-links {
    display: flex;
    align-items: center;
    align-items: flex-start;
    justify-content: space-between;
  }
  .nav-links a {
    -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
    -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
    -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
    transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  }
  .nav-links a .nav-subtitle {
    color: #000000;
  }
  .nav-links .nav-previous, .nav-links .nav-next {
    width: 45%;
  }
  .nav-links .nav-next {
    text-align: right;
    margin-top: 0;
  }
  .nav-links .nav-subtitle {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .nav-links .nav-title {
    font-size: 1.25rem;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item {
    margin-bottom: 0;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:hover:after {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 960px) {
  .menu-btn {
    display: none;
  }
  .main-navigation {
    display: block;
    height: unset;
    opacity: 1;
    padding: 0;
  }
  .main-navigation .menu {
    white-space: nowrap;
  }
  .main-menu {
    background: transparent;
    position: relative;
    width: 100%;
    height: unset;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    overflow: visible;
  }
  .menu {
    font-size: 1rem;
    line-height: 1;
  }
  .menu-item {
    display: inline-block;
    font-size: 0.9rem;
    margin: 0 0 0 10px;
  }
  .menu-item:first-of-type {
    margin-left: 0;
  }
  .menu-item a {
    color: #333333;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
    font-size: 0.8rem !important;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item {
    margin-right: 15px;
  }
  #mega-menu-wrap-menu-1 li.mega-menu-item.mega-menu-item-3320 > ul.mega-sub-menu {
    width: 50% !important;
    margin-left: calc(50% - 140px) !important;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-item-1627 {
    margin-top: 0;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu {
    background: #f2f2f2;
    padding: 20px;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu {
    padding: 20px;
  }
  .nav-flex {
    flex-direction: row-reverse;
  }
  .login-wrap {
    margin: 0 0 0 5%;
  }
  .footer-navigation .menu {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .menu-item {
    font-size: 1rem;
    margin: 0 0 0 15px;
  }
}
@media screen and (min-width: 1280px) {
  .main-navigation {
    margin-right: 60px;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
    font-size: 16px !important;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item {
    margin-right: 25px;
  }
  .menu-item {
    margin: 0 0 0 50px;
  }
  .login-wrap {
    margin: 0 0 0 50px;
  }
}
/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget select {
  max-width: 100%;
}

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

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  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: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

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

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

/* Content
--------------------------------------------- */
.site-footer {
  background-image: url("/wp-content/uploads/2023/11/footer-bg-mobile.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding: 50px 0;
  font-family: "Inter", "Roboto", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #ffffff;
}
.site-footer a {
  color: #ffffff;
}

.footer-cols .col-1 {
  margin-bottom: 100px;
}
.footer-cols .col-2 {
  margin-bottom: 60px;
}
.footer-cols .col-3 {
  margin-bottom: 40px;
}

.footer-logo svg {
  width: 100%;
  max-width: 350px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

abbr {
  border-bottom: none;
  cursor: inherit;
  text-decoration: none;
}

.footer-logo svg {
  width: 250px;
}

.footer-navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer-navigation ul li {
  line-height: 1;
}

.footer-social {
  width: 140px;
  margin: 0 auto 40px auto;
  display: block;
}
.footer-social svg {
  height: 30px;
}
.footer-social a {
  color: transparent;
  font-size: 0;
}
.footer-social .fb {
  width: 14px;
}
.footer-social .twitter {
  width: 29px;
}
.footer-social .linkedin {
  width: 31px;
}

.footer-sub-links {
  width: 170px;
  margin: 0 auto 20px auto;
}
.footer-sub-links li {
  margin-bottom: 10px;
}
.footer-sub-links li:last-of-type {
  margin-bottom: 0;
}

.site-info {
  font-size: 12px;
}

@media screen and (min-width: 769px) {
  .site-footer {
    background-image: url("/wp-content/uploads/2023/11/footer-bg-desktop.jpg");
    text-align: left;
  }
  .footer-logo svg {
    max-width: unset;
    width: 100%;
  }
  .footer-cols {
    display: flex;
    justify-content: space-between;
  }
  .footer-cols .col-1, .footer-cols .col-2, .footer-cols .col-3 {
    margin-bottom: 0;
  }
  .footer-cols .col-1 {
    width: 28%;
  }
  .footer-cols .col-2 {
    width: 33%;
  }
  .footer-social {
    margin: 40px 0 0;
  }
  .footer-sub-links {
    display: flex;
    margin: 0 0 20px;
    width: 100%;
  }
  .footer-sub-links li {
    margin-right: 20px;
  }
  .site-info {
    margin-top: 40px;
  }
}
.site-header {
  width: 100%;
  height: 60px;
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9999;
}

.page-template-careers-template .site-header {
  background-color: transparent;
  position: absolute;
}

.site-branding {
  position: relative;
  z-index: 1;
  line-height: 0;
}
.site-branding a {
  display: inline-block;
}

.custom-logo {
  width: 150px;
  height: auto;
  display: block;
}

.post-template-default .site-main, .page-template-default .site-main, .blog .site-main, .page-template-contact-template .site-main, .error404 .site-main {
  position: relative;
  padding-top: 6px;
  overflow: hidden;
}
.post-template-default .site-main:before, .page-template-default .site-main:before, .blog .site-main:before, .page-template-contact-template .site-main:before, .error404 .site-main:before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgb(134, 16, 159) 0%, rgb(35, 47, 78) 65%, rgb(130, 189, 52) 100%);
  display: block;
  width: 100%;
  height: 6px;
  top: 0;
}

.page-template-our-team-template .content-area {
  position: relative;
  padding-top: 6px;
  overflow: hidden;
}
.page-template-our-team-template .content-area:before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgb(134, 16, 159) 0%, rgb(35, 47, 78) 65%, rgb(130, 189, 52) 100%);
  display: block;
  width: 100%;
  height: 6px;
  top: 0;
}

.page-template-default.page-id-86 .site-main:before, .page-template-default.page-id-213 .site-main:before, .page-template-default.page-id-38 .site-main:before, .page-template-default.page-id-414 .site-main:before {
  display: none;
}

@media screen and (min-width: 960px) {
  .site-header {
    height: 120px;
  }
  .custom-logo {
    width: 300px;
  }
  .post-template-default .site-main, .page-template-default .site-main, .blog .site-main, .page-template-contact-template .site-main, .error404 .site-main {
    padding-top: 10px;
  }
  .post-template-default .site-main:before, .page-template-default .site-main:before, .blog .site-main:before, .page-template-contact-template .site-main:before, .error404 .site-main:before {
    height: 10px;
  }
  .page-template-our-team-template .content-area {
    padding-top: 10px;
  }
  .page-template-our-team-template .content-area:before {
    height: 10px;
  }
}
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.noscroll {
  overflow: hidden;
  height: 100%;
}

video {
  display: block;
  width: 100%;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

address {
  font-style: normal;
  margin: 0;
}

.entry-header {
  display: none;
}

.sticky {
  display: block;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.inner, .inner-content, .wp-block-group__inner-container {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
}

.wp-block-group__inner-container {
  position: relative;
  z-index: 1;
}
.wp-block-group__inner-container .wp-block-group {
  padding: 0;
}
.wp-block-group__inner-container .wp-block-group .wp-block-group__inner-container {
  padding: 0;
}

.zero-font {
  font-size: 0;
  line-height: 0;
  color: transparent;
}

address {
  font-style: normal;
  margin: 0;
}
address a {
  text-decoration: none;
}

figure {
  margin: 0;
}

.mobile-hide {
  display: none;
}

.desktop-hide {
  display: block;
}

.flex-cols .col-1 {
  margin-bottom: 20px;
}
.flex-cols.five-cols {
  display: flex;
  flex-wrap: wrap;
}
.flex-cols.five-cols .col {
  width: 48%;
  margin-bottom: 20px;
}

.mobile-breadcrumb {
  padding: 10px 25px;
  background: #262A82;
}

.breadcrumb {
  font-size: 0.9375rem;
}
.breadcrumb a {
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}
.breadcrumb a:visited {
  color: #ffffff;
}
.breadcrumb.black a {
  color: #000000;
}
.breadcrumb.no-hero {
  margin-top: 40px;
}

.modal {
  background: url("/wp-content/uploads/2023/11/modal-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.modal .modal-img img {
  width: 100%;
}

.modal-open:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  background: linear-gradient(180deg, rgba(12, 0, 63, 0.9) 0%, rgba(128, 63, 128, 0.9) 100%);
  width: 100%;
  height: 100%;
}

.post-title-link {
  color: #000000;
  text-decoration: none;
}
.post-title-link:visited {
  color: #000000;
}

.entry-content .wp-block-buttons {
  margin-top: 30px;
}

.widget-area {
  background-color: #eaeaea;
}
.widget-area .wp-block-group {
  padding: 40px 0;
}
.widget-area .wp-block-heading {
  margin-bottom: 30px;
}
.widget-area .wp-block-latest-posts__featured-image {
  margin-bottom: 20px;
}
.widget-area .wp-block-latest-posts__featured-image img {
  display: block;
}
.widget-area .wp-block-latest-posts__post-title {
  text-decoration: none;
  color: #000000;
  font-size: 1.1rem;
  line-height: 1;
}
.widget-area .wp-block-latest-posts__post-excerpt a {
  margin-top: 10px;
  text-decoration: none;
  position: relative;
  color: #262A82;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: capitalize;
}
.widget-area .wp-block-latest-posts__post-excerpt a:after {
  content: url("/wp-content/uploads/2023/11/link-caret.svg");
  display: block;
  position: absolute;
  width: 5px;
  height: 10px;
  bottom: 14px;
  right: -15px;
  -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
}
.widget-area .wp-block-latest-posts__post-excerpt a:hover:after {
  right: -18px;
}
.widget-area .wp-block-latest-posts__post-excerpt a:visited {
  color: #262A82;
}

.gradient-bg-1 {
  background: linear-gradient(90deg, rgba(130, 195, 65, 0.5) 0%, rgb(255, 255, 255) 70%);
  margin-bottom: 60px;
}
.gradient-bg-1 .breadcrumbs-block .inner {
  padding: 0;
}
.gradient-bg-1 .breadcrumbs-block .breadcrumb.no-hero {
  margin-top: 0;
}
.gradient-bg-1.blue-gradient {
  background: linear-gradient(90deg, rgba(71, 167, 255, 0.35) 0%, rgb(255, 255, 255) 70%);
}

.ssb_inline-share_heading {
  margin: 50px 10px 0 0;
  padding: 0;
  display: inline-block;
  font-size: 21px;
}

div.simplesocialbuttons {
  margin: -41px 0 0 60px !important;
}

.accordion {
  margin-bottom: 20px;
}
.accordion:last-of-type {
  margin-bottom: 0;
}
.accordion .accordion-content {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
}
.accordion .accordion-trigger {
  cursor: pointer;
  padding: 30px 10px;
}
.accordion .accordion-trigger h2 {
  font-size: 1.25rem;
}
.accordion .accordion-trigger .block-heading {
  width: calc(100% - 60px);
}
.accordion .accordion-trigger .accordion-arrow {
  height: 50px;
}
.accordion .accordion-trigger .accordion-arrow svg {
  -webkit-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -moz-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  -o-transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transition: all 0.2s cubic-bezier(0.15, 0, 0.25, 1);
  transform: rotate(180deg);
  height: 50px;
  width: 50px;
}
.accordion .accordion-trigger.open .accordion-arrow svg {
  transform: rotate(0);
}
.accordion .accordion-trigger.open + .accordion-content {
  height: auto;
  overflow: visible;
  visibility: visible;
  opacity: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0;
}
.accordion .accordion-trigger.open + .accordion-content:before {
  content: "";
  background: linear-gradient(90deg, rgb(134, 16, 159) 0%, rgb(130, 189, 52) 100%);
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  top: 0;
}

.error-404 p {
  font-size: 1.2rem;
}

.post-template-default .wp-block-heading {
  margin-bottom: 20px;
}

.home .mobile-breadcrumb {
  display: none;
}

.pum-theme-2074 .pum-container, .pum-theme-default-theme .pum-container {
  padding: 25px !important;
  background-image: url("/wp-content/uploads/2023/11/modal-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.pum-theme-2074 .pum-container h3, .pum-theme-default-theme .pum-container h3 {
  color: #000000;
}

.pum-theme-2074, .pum-theme-default-theme {
  background-color: transparent !important;
  background: linear-gradient(180deg, rgba(12, 0, 63, 0.9) 0%, rgba(128, 63, 128, 0.9)) !important;
}

.pum-theme-2074 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
  background-color: transparent !important;
  color: transparent !important;
  width: 60px !important;
  height: 60px !important;
  background-image: url("/wp-content/uploads/2024/01/close-icon.svg");
  background-position: top right;
  background-size: 60px 60px;
  background-repeat: no-repeat;
  padding: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  top: 10px !important;
  right: 10px !important;
}
.pum-theme-2074 .pum-content + .pum-close:hover, .pum-theme-default-theme .pum-content + .pum-close:hover {
  background: none;
  background-image: url("/wp-content/uploads/2024/01/close-icon.svg");
}

.popup-flex .col-1 {
  margin-bottom: 30px;
}

.strong-view.controls-type-sides:not(.rtl) .wpmslider-next {
  right: 0 !important;
}

.strong-view.controls-type-sides:not(.rtl) .wpmslider-prev {
  left: 0 !important;
}

.strong-view.slider-container {
  margin-top: 20px !important;
}

.strong-view.wpmtst-modern .wpmtst-testimonial-inner {
  padding-bottom: 0 !important;
}

.strong-view.wpmtst-modern .wpmtst-testimonial-content {
  font-size: 1.2rem !important;
  margin: 0 20px !important;
}

.strong-view.wpmtst-modern .wpmtst-testimonial-content:before, .strong-view.wpmtst-modern .wpmtst-testimonial-content:after {
  position: absolute !important;
  width: 35px !important;
  height: 35px !important;
  font-size: 35px !important;
  background: #333333 !important;
}

.strong-view.wpmtst-modern .testimonial-name {
  font-size: 1.1rem !important;
  line-height: 1.2 !important;
  margin: 20px 0 0 !important;
  position: relative;
  display: inline-block;
}
.strong-view.wpmtst-modern .testimonial-name:before {
  content: "—";
  font-size: 1.2rem;
  color: #333333;
  line-height: 1;
  position: absolute;
  left: -21px;
  top: 1px;
}

.strong-view.wpmtst-modern .testimonial-company {
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
}

@media screen and (min-width: 768px) {
  .mobile-hide {
    display: block;
  }
  .desktop-hide {
    display: none;
  }
  .max-850 {
    max-width: 850px;
  }
  .flex-cols {
    display: flex;
  }
  .flex-cols .col-1 {
    margin-bottom: 0;
  }
  .flex-cols .col-1, .flex-cols .col-2 {
    width: 45%;
  }
  .flex-cols.five-cols .col {
    width: 20%;
    margin-bottom: 0;
  }
  .max-960 {
    max-width: 960px;
  }
  .widget-area .wp-block-group {
    padding: 60px 0;
  }
  .widget-area .wp-block-latest-posts__post-title {
    font-size: 1.25rem;
  }
  .accordion {
    margin-bottom: 30px;
  }
  .accordion .accordion-trigger {
    padding: 30px 60px;
  }
  .accordion .accordion-trigger .block-heading {
    width: calc(100% - 100px);
  }
  .accordion .accordion-trigger h2 {
    font-size: 1.75rem;
  }
  .accordion .accordion-trigger.open + .accordion-content {
    padding: 30px 60px;
  }
  .accordion .accordion-trigger .accordion-arrow {
    height: 60px;
  }
  .accordion .accordion-trigger .accordion-arrow svg {
    height: 60px;
    width: 60px;
  }
  .pum-theme-2074 .pum-container, .pum-theme-default-theme .pum-container {
    padding: 60px !important;
  }
  .pum-container.pum-responsive.pum-responsive-medium {
    width: 50% !important;
  }
  .popup-flex {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .popup-flex .col-1 {
    margin-bottom: 0;
  }
  .popup-flex .col {
    width: 48%;
  }
  .strong-view.wpmtst-modern .wpmtst-testimonial-content {
    font-size: 1.3rem !important;
  }
  .strong-view.wpmtst-modern .wpmtst-testimonial-content:before, .strong-view.wpmtst-modern .wpmtst-testimonial-content:after {
    width: 45px !important;
    height: 45px !important;
    font-size: 45px !important;
  }
  .strong-view.wpmtst-modern .wpmtst-testimonial-content:before {
    top: -17px !important;
  }
  .strong-view.wpmtst-modern .wpmtst-testimonial-content:after {
    bottom: -17px !important;
  }
  .strong-view.wpmtst-modern .wpmtst-testimonial-content {
    margin: 0 30px !important;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    max-width: 1440px;
  }
  .inner-content {
    max-width: 1280px;
  }
  .wp-block-group__inner-container {
    max-width: 1280px !important;
  }
  .strong-view.controls-type-sides:not(.rtl) .wpmslider-next {
    right: -20px !important;
  }
  .strong-view.controls-type-sides:not(.rtl) .wpmslider-prev {
    left: -20px !important;
  }
}
@media screen and (min-width: 1440px) {
  .strong-view.controls-type-sides:not(.rtl) .wpmslider-next {
    right: -40px !important;
  }
  .strong-view.controls-type-sides:not(.rtl) .wpmslider-prev {
    left: -40px !important;
  }
}
.home .breadcrumb {
  display: none;
}

.hero-block.home-hero h1 {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.hero-block.home-hero:after {
  position: absolute;
  content: url("/wp-content/uploads/2023/11/home-hero-corner.svg");
  right: 0;
  top: 0;
  width: 180px;
  height: auto;
}
.hero-block h1 {
  font-weight: 400;
  font-size: 1.75rem;
}
.hero-block .hero-flex {
  display: flex;
  flex-direction: column-reverse;
}
.hero-block .hero-flex .col-1 {
  margin: -80px 0 60px;
  padding: 0 20px;
}
.hero-block .hero-flex .col-1 h1 {
  width: 80%;
}
.hero-block .hero-flex .col-1 p {
  position: relative;
  z-index: 2;
}
.hero-block .hero-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

.block-padding {
  padding: 60px 0;
}

.block-margin-bottom {
  margin-bottom: 60px;
}

.cta-block p {
  margin-top: 30px;
}

.wp-block-group {
  padding: 60px 0;
}
.wp-block-group.pt-0 {
  padding-top: 0;
}
.wp-block-group.pb-0 {
  padding-bottom: 0;
}

.wp-block-columns img {
  display: block;
  width: 100% !important;
}
.wp-block-columns .wp-block-column {
  margin-bottom: 40px !important;
}
.wp-block-columns .wp-block-column:last-of-type {
  margin-bottom: 0 !important;
}
.wp-block-columns .wp-block-column .wp-block-heading {
  margin-bottom: 10px;
}
.wp-block-columns.mobile-reverse {
  flex-direction: column-reverse;
}
.wp-block-columns:not(:first-of-type) {
  margin-top: 40px;
}
.wp-block-columns.three-columns .wp-block-column h4.wp-block-heading {
  margin-bottom: 20px;
}
.wp-block-columns.three-columns .is-layout-flex {
  display: flex !important;
  flex-wrap: nowrap !important;
}
.wp-block-columns.three-columns .is-layout-flex .wp-block-column {
  margin-bottom: 0 !important;
}
.wp-block-columns.three-columns.with-icons img {
  display: block;
  max-width: 150px;
  margin: 0 auto;
}

.banner-overlap-block p {
  margin-top: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
}
.banner-overlap-block .corner-image {
  position: absolute;
  bottom: -110px;
  right: 0;
  width: 120px;
}

.block-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.block-bg.green-gradient-bg {
  background-image: url("/wp-content/uploads/2023/11/green-gradient-bg.jpg");
}
.block-bg.three-col-bg {
  color: #ffffff;
  background-image: url("/wp-content/uploads/2023/11/three-col-bg-scaled.jpg");
}

.after-element {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.after-element:after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  z-index: 0;
}
.after-element.green-corner:after {
  content: url("/wp-content/uploads/2023/11/green-triangle-right.svg");
  width: 100px;
  height: auto;
}
.after-element.green-bottom-left-corner:after {
  content: url("/wp-content/uploads/2023/11/lower-left-green.svg");
  width: 60%;
  height: auto;
  right: unset;
  top: unset;
  bottom: 0;
  left: 0;
}

.work-together-block {
  padding: 80px 0;
}
.work-together-block .border-cols {
  padding: 0;
  position: relative;
}
.work-together-block .border-cols:before, .work-together-block .border-cols:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgb(130, 195, 65) 0%, rgb(26, 90, 215) 100%);
  left: 0;
  right: 0;
  z-index: 2;
}
.work-together-block .border-cols:before {
  top: 0;
}
.work-together-block .border-cols:after {
  bottom: 0;
}
.work-together-block .border-cols .col {
  padding: 40px 0;
  position: relative;
}
.work-together-block .border-cols .col-inner {
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.work-together-block .border-cols .col-1 {
  position: relative;
}
.work-together-block .border-cols .col-1:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgb(130, 195, 65) 0%, rgb(26, 90, 215) 100%);
  left: 0;
  right: 0;
  bottom: 0;
}
.work-together-block .border-cols .col-1 p {
  margin-left: 25px;
}
.work-together-block .border-cols .col-2 p {
  margin-right: 25px;
}
.work-together-block .btn-wrap {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  :where(.wp-block-columns.is-layout-flex) {
    gap: 6em;
  }
  .block-padding {
    padding: 100px 0;
  }
  .block-margin-bottom {
    margin-bottom: 100px;
  }
  .cta-block {
    text-align: center;
  }
  .gradient-bg-1 {
    margin-bottom: 100px;
  }
  .banner-overlap-block p {
    font-size: 1.75rem;
  }
  .banner-overlap-block .corner-image {
    bottom: unset;
    top: 0;
    width: 210px;
  }
  .after-element.green-corner:after {
    width: 150px;
  }
  .hero-block h1 {
    font-size: 3vw;
  }
  .hero-block .hero-flex .col-1 {
    margin: -200px 0 60px;
    padding: 0 30px;
  }
  .work-together-block .border-cols {
    padding: 0;
    position: relative;
    justify-content: space-between;
  }
  .work-together-block .border-cols .col {
    width: 50%;
  }
  .work-together-block .border-cols .col-inner {
    padding: 0 30px;
  }
  .work-together-block .border-cols .col-1:after {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 100%;
    background: none;
    left: unset;
    top: 0;
    background-color: rgb(26, 90, 215);
    z-index: 1;
  }
  .work-together-block .btn-wrap {
    margin-top: 60px;
  }
  .wp-block-columns.three-columns {
    margin-top: 20px;
  }
  .wp-block-columns.three-columns:where(.wp-block-columns.is-layout-flex) {
    gap: 4em;
  }
  .wp-block-columns.three-columns .wp-block-columns:where(.wp-block-columns.is-layout-flex) {
    gap: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .wp-block-group {
    padding: 100px 0;
  }
  .wp-block-columns .wp-block-column {
    margin-bottom: 0 !important;
  }
  .wp-block-columns.mobile-reverse {
    flex-direction: row;
  }
  .wp-block-columns:not(:first-of-type) {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-block.home-hero:after {
    width: 300px;
  }
  .hero-block .hero-flex {
    flex-direction: row;
    align-items: center;
  }
  .hero-block .hero-flex .col-1 {
    width: 75%;
    padding-left: 8%;
    padding-right: 0;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .hero-block .hero-flex .col-1 h1 {
    width: 100%;
  }
  .hero-block .hero-flex .col-2 {
    margin-left: -10%;
    position: relative;
    z-index: 0;
  }
}
@media screen and (min-width: 1025px) {
  .banner-overlap-block .corner-image {
    width: 450px;
    bottom: unset;
    top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .hero-block {
    min-height: 725px;
  }
  .hero-block h1 {
    font-size: 3.25vw;
  }
  .hero-block .hero-img {
    min-height: 725px;
  }
  .hero-block .hero-flex .col-1 {
    width: 70%;
  }
  .breadcrumbs-block .inner {
    max-width: 1280px;
  }
}
.news-cols .col-1 {
  margin-bottom: 20px;
}
.news-cols .col-1 img {
  display: block;
}

.widget-area h2 {
  font-weight: 400;
}
.widget-area .wp-block-latest-posts {
  margin-bottom: 0;
}
.widget-area .wp-block-latest-posts li {
  margin-bottom: 40px;
}
.widget-area .wp-block-latest-posts li:last-of-type {
  margin-bottom: 0;
}

.posts-feed-wrap {
  background-image: url("/wp-content/uploads/2024/01/news-gradient.jpg");
  background-position: top right;
  background-repeat: no-repeat;
  width: 100%;
}

.news-hdg-select-cols {
  flex-direction: column-reverse;
}
.news-hdg-select-cols h2 {
  margin-bottom: 40px;
}
.news-hdg-select-cols .wpc-filter-content select {
  padding: 20px 10px;
  border: 0;
  margin-bottom: 0;
}
.news-hdg-select-cols .widget {
  margin: 0;
}

.posts-feed .post {
  margin-bottom: 40px;
}

.post-cols .widget-area {
  background-color: transparent;
}
.post-cols .col-2 {
  background-image: url("/wp-content/uploads/2024/01/recent-articles-gradient.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wpc-filters-widget-main-wrapper .wpc-filters-labels li.wpc-term-item label span.wpc-filter-label-wrapper {
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.wpc-filters-widget-main-wrapper .wpc-filters-labels li.wpc-term-item label {
  margin-right: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.news-filter-wrap {
  margin: 20px 0;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.news-filter-wrap .ml-20 {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
.news-filter-wrap a {
  display: inline-block;
  color: #000000 !important;
}
.news-filter-wrap a.category-all {
  text-decoration: none !important;
}
.news-filter-wrap .wpc-filters-section {
  margin-bottom: 0;
}

.filter-links a {
  text-decoration: underline !important;
}

.wpc-filter-header {
  display: none !important;
}

.wpc-filters-widget-main-wrapper ul.wpc-filters-ul-list {
  padding: 0 !important;
  margin: 0 !important;
  overflow: unset !important;
}

.wpc-filters-widget-main-wrapper .wpc-filters-labels li.wpc-term-item {
  margin-bottom: 0 !important;
  position: relative;
}
.wpc-filters-widget-main-wrapper .wpc-filters-labels li.wpc-term-item:first-of-type {
  margin-right: 20px;
}
.wpc-filters-widget-main-wrapper .wpc-filters-labels li.wpc-term-item:after {
  content: "|";
  position: absolute;
  display: block;
  right: -11px;
  top: -2px;
  font-size: 21px;
}

.wpc-filters-widget-main-wrapper input.wpc-label-input:checked + label span.wpc-filter-label-wrapper, .wpc-filters-widget-main-wrapper input.wpc-label-input + label:hover span.wpc-filter-label-wrapper {
  background-color: transparent !important;
}

.wpc-filters-widget-main-wrapper .wpc-filters-labels li.wpc-term-item input:checked + label a, body .wpc-filters-labels li.wpc-term-item input:checked + label a {
  color: #262A82 !important;
  font-weight: bold !important;
}

@media screen and (min-width: 768px) {
  .news-cols .col-1 {
    width: 33%;
    margin-bottom: 0;
  }
  .news-cols .col-2 {
    width: 62%;
    margin-top: 15px;
  }
  .post-cols .col-1 {
    width: 70%;
    margin-bottom: 0;
  }
  .post-cols .col-2 {
    width: 25%;
  }
  .widget-area h2 {
    font-size: 2rem;
  }
  .posts-feed-wrap {
    padding-top: 100px;
  }
  .news-hdg-select-cols {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .news-hdg-select-cols .col {
    width: unset;
  }
  .news-hdg-select-cols h2 {
    margin-bottom: 0;
  }
  .news-hdg-select-cols .wpc-filter-content select {
    width: 300px !important;
  }
  .posts-feed .post {
    margin-bottom: 80px;
  }
}
.team-block .block-heading {
  width: 80%;
}
.team-block .member-blocks .member {
  width: 48%;
  margin-bottom: 40px;
  cursor: pointer;
}
.team-block .member-blocks .member img {
  width: 100%;
}
.team-block .member-name {
  font-size: 1.1rem;
}
.team-block .member-title {
  font-size: 0.9rem;
  line-height: 1.2;
}

.member-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 2;
  height: auto;
  max-height: 600px;
  padding: 20px;
  overflow: hidden;
}
.member-modal .flex-modal .col-1 {
  margin-bottom: 20px;
}
.member-modal .col-2 {
  height: 190px;
  overflow-x: scroll;
}
.member-modal .close-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 1;
}

.team-wrap {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.team-wrap.team-1 {
  background-image: url("/wp-content/uploads/2024/01/senior-management-gradient.jpg");
}
.team-wrap.team-2 {
  background-image: url("/wp-content/uploads/2024/01/account-gradient.jpg");
}
.team-wrap.team-3 {
  background-image: url("/wp-content/uploads/2024/01/client-support-gradient.jpg");
}

@media screen and (min-width: 768px) {
  .team-block .intro-copy {
    width: 75%;
  }
  .team-block .member-blocks .member {
    width: 30%;
    margin-bottom: 60px;
  }
  .team-block .member-name {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  .team-block .member-title {
    font-size: 1rem;
  }
  .member-modal {
    width: 700px;
    max-height: 600px;
    padding: 50px;
    font-size: 1.1rem;
  }
  .member-modal .flex-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .member-modal .flex-modal .col-1 {
    width: 45%;
    margin: 0;
  }
  .member-modal .flex-modal .col-2 {
    width: 50%;
    position: relative;
    height: auto;
    max-height: 530px;
  }
  .member-modal .member-name {
    font-size: 1.75rem;
    margin-top: 0;
  }
  .team-wrap {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1280px) {
  .member-modal {
    width: 80%;
    max-width: 1000px;
    max-height: 650px;
    padding: 60px;
  }
  .member-modal .close-btn {
    width: 60px;
    height: 60px;
  }
}
.form-module {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("/wp-content/uploads/2023/11/form-bg-scaled.jpg");
  padding: 60px 20px;
}
.form-module .form-module__copy {
  margin-bottom: 30px;
}
.form-module p {
  margin-bottom: 20px;
}
.form-module p label {
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
}
.form-module p input {
  display: block;
  margin-top: 5px;
  width: 100%;
}
.form-module p .wpcf7-submit {
  width: auto;
  margin-top: 30px;
}
.form-module p .wpcf7-spinner {
  display: none;
}
.form-module .submit-btn {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.contact-cols {
  margin-top: 60px;
}
.contact-cols .col {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  padding: 40px 20px;
}
.contact-cols .col:last-of-type {
  margin-bottom: 0;
}
.contact-cols .contact-info {
  background-image: url("/wp-content/uploads/2023/12/contacts-bg.jpg");
}
.contact-cols .contact-info h2 {
  margin-bottom: 30px;
}
.contact-cols .contact-info h3 {
  margin-top: 30px;
}
.contact-cols .contact-info a {
  color: #000000;
  text-decoration: none;
}
.contact-cols .contact-info a:visited {
  color: #000000;
}

.contact-form {
  background-image: url("/wp-content/uploads/2023/12/contact-form-bg.jpg");
  padding: 40px 20px !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-form-wrap {
  margin-top: 20px;
}
.contact-form-wrap p {
  margin-bottom: 0;
}
.contact-form-wrap .flex-cols {
  justify-content: space-between;
}
.contact-form-wrap .flex-cols .col {
  padding: 0;
}
.contact-form-wrap .contact-row {
  margin-bottom: 15px;
}
.contact-form-wrap .contact-row .col:first-of-type {
  margin-bottom: 15px;
}
.contact-form-wrap .submit-btn, .contact-form-wrap .wpcf7-submit {
  width: 100px;
}

.wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-list-item.first {
  margin-right: 20px !important;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: none !important;
  margin: 20px 0 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none !important;
  text-align: center !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
}

.page-id-3284 .wpcf7 form.failed .wpcf7-response-output {
  border: none !important;
  text-align: center !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
}

@media screen and (min-width: 768px) {
  .form-module {
    text-align: center;
  }
  .form-module .form-inner {
    max-width: 750px;
    margin: 0 auto;
  }
  .form-module .form-module__copy {
    max-width: 65%;
    margin: 20px auto 0 auto;
  }
  .form-module p {
    margin-bottom: 0;
  }
  .form-module p label {
    display: block;
  }
  .form-module p .wpcf7-submit {
    margin: 30px auto 0 auto;
    width: auto;
    display: block;
  }
  .contact-module-form {
    max-width: 960px;
    margin: 40px auto 0 auto;
  }
  .contact-module-form .flex-cols {
    justify-content: space-between;
  }
  .contact-module-form .col {
    width: 31%;
  }
  .contact-form {
    padding: 60px !important;
  }
  .contact-cols {
    display: block;
  }
  .contact-cols .contact-info .flex-cols {
    display: block;
  }
  .contact-form-wrap .contact-row .col:first-of-type {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .contact-cols {
    display: flex;
    justify-content: space-between;
  }
  .contact-cols .col {
    width: 48%;
    margin-bottom: 0;
    padding: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-cols .contact-info .flex-cols {
    display: flex;
  }
  .contact-cols .contact-info .flex-cols .col-text {
    width: 40%;
  }
}
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  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;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}
