/* Import Rules */
 @import url('https://use.typekit.net/hpj8cen.css');

/* Variables.css | Apr 14, 2026 @3:13:25 PM  */

:root {
--body-background-color: rgb(247, 250, 252);
--header-background-color: #FFF;

    --brand-color: #233E7F; /* Dark Blue */
--brand-color-secondary: #E02626; /* Red */
--brand-color-tertiary: #818285; /* Grey */
--link-color: var(--brand-color);

/* Buttons */
    --btn-text-color:#FFF;
    --btn-background-color:var(--brand-color);
    --btn-border:none;

    --btn-text-color-hover: var(--btn-text-color);
    --btn-background-color-hover: var(--brand-color-secondary);
    --btn-border-hover: var(--btn-border);

    --btn-alt-text-color: var(--btn-text-color);
    --btn-alt-background-color: var(--brand-color-secondary);
    --btn-alt-border:none;

    --btn-alt-text-color-hover: var(--btn-text-color);
    --btn-alt-background-color-hover:var(--brand-color);
    --btn-alt-border-hover: var(--btn-alt-border);

/* Wrappers & Padding */
    --wrapper-width: 1024px;
    --wrapper-width-slim: 660px;
    --wrapper-width-thin: 900px;
    --wrapper-width-wide: 1400px;

--column-padding: 4rem;
--section-padding: 8rem;
--border-radius: 12px;
--border-radius-small: 6px;
--wrapper-padding: 4rem;


/* Fonts */
--font-primary: gotham, sans-serif;
--font-secondary: open-sans, sans-serif;
--font-tertiary: roboto-condensed, sans-serif;

--font-body: var(--font-secondary);
--font-headings: var(--font-primary);
--font-accents: var(--font-tertiary);

@media only screen and (max-width:767px) {
--wrapper-padding: 2rem;
--section-padding: 4rem;
--column-padding: 2rem;
}
}/* Typography.css | Apr 14, 2026 @4:28:28 PM  */

body {
font-family: var(--font-body);
font-weight: 300;
}

a {
color: var(--brand-color);
text-decoration: underline;
}

p:last-child {
margin: 0;
}

.module-intro-text p {
font-size: 2.3rem;
font-weight: normal;
}

strong {
font-weight: bold;
}

/* Buttons */

.btn {
position: relative;
font-family: var(--font-accents);
font-size: var(--font-size-md);
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
padding: 15px 25px;
border-radius: 100px;
}

.btn:not(.alt) {
color: #FFF;
background: var(--btn-background-color);
}

.btn:not(.alt):hover {
color: #FFF;
background: var(--btn-background-color);
}

.btn.alt,
.btn.alt:hover {
color: var(--btn-alt-text-color);
background: var(--btn-alt-background-color);
}

.btn::after {
content: "";
display: block;
position: absolute;
bottom: -3px;
left: 30px;
border-radius: 100px;
width: 0;
height: 6px;
background-color: var(--brand-color-secondary);
transition: 0.2s ease all;
}

.btn:hover::after {
width: calc(100% - 60px);
background-color: var(--brand-color-secondary);
}

.btn.alt::after {
background-color: var(--brand-color);
}

.btn.alt:hover::after {
background-color: var(--brand-color);
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
line-height: 1.25em;
margin-bottom: 2rem;
color: var(--brand-color);
font-family: var(--font-headings);
letter-spacing: -2px;
}

h2 {
font-size: var(--font-size-xl);
}

h3 {
font-size: var(--font-size-lg);
}

h4, h5, h6 {
font-size: var(--font-size-md);
}

.column-widget .module-intro-text h2:only-child {
margin: 0;
}

p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
margin-top: 4rem;
}

/* Navigation */

.navigation-widget a {
font-family: var(--font-accents);
}

/* Accordion */

.mce-accordion {
opacity: 0.8;

&[open] {
opacity: 1;

summary {
color: var(--brand-color);
}
}

summary {
font-family: var(--font-headings);
font-size: var(--font-size-lg);
letter-spacing: -1px;
}
}/* General.css | Apr 14, 2026 @3:15:18 PM  */

body {
background: var(--body-background-color);
overflow-x: hidden;
}

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

figure.image {
border: none;
background-color: transparent;
margin: 0;
width: 100%;
text-align: center;

figcaption {
border: none;
}
}

main .content-module img {
border-radius: 20px;
overflow: hidden;
}
.wrapper {
max-width: var(--wrapper-width-wide);
margin: auto;
padding: 0 var(--wrapper-padding);
}

hr {
margin: 1rem auto;
padding: 0;
width: 60%;
height: 2px;
background-color: var(--brand-color-secondary);
border: none;
}

.btn + .btn {
margin: 0 0 0 5px;
}

/* Header & Navigation */

.include-header {
position: relative;
z-index: 10;
}
header {
width: 100%;
display: block;
background-color: var(--header-background-color);
box-shadow: 0 3px 50px rgba(0,0,0,0.3);
padding: 2rem 0;

.wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}

.site-logo {
display: flex;
width: 100%;
max-width: 290px;
padding: 0 2rem 0 0;
}

.navigation-widget {
flex: 1;
text-align: right;

&.standard:not(.collapse) {
.l1 {

> a {
position: relative;
padding: 2rem;
font-size: 1.6rem;
font-weight: 700;
letter-spacing: 1px;
color: var(--brand-color);
text-transform: uppercase;

&::after {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 30px;
border-radius: 100px;
width: 0;
height: 6px;
background-color: var(--brand-color);
transition: 0.2s ease all;
}
}

&.active > a::after {
width: calc(100% - 60px);
background-color: var(--brand-color-tertiary);
}

&:hover {
> a {
background: none;

&::after {
width: calc(100% - 60px);
background: var(--brand-color-secondary);
}
}
}

&.flyout a {
padding-right: 3rem;
}

&.item-login {
> a {
background-color: var(--brand-color);
color: #FFF;
border-radius: 2rem;
padding: 0.5rem 2rem;
}

&:hover > a {
background-color: var(--brand-color-secondary);
}
}

.submenu {
background-color: #FFF;
border-radius: 10px;
box-shadow: 2px 2px 20px rgba(0,0,0,0.2);
padding: 1rem;

a {
color: var(--brand-color);
font-size: 1.4rem;
font-weight: 700;
}

.l2:hover > a {
color: var(--brand-color-secondary);
}
}
}
}
}
}

/* Tagline */

.tagline {
background: rgb(63,158,252);
background: var(--brand-color);
color: #FFF;
text-align: center;

.content-module {
position: relative;
display: inline-block;

&::before {
position: absolute;
content: "";
width: calc(100% + 20px);
height: calc(100% + 0px);
top: calc(50% + 10px);
left: calc(50% + 10px);
transform: translate(-50%, -50%) skew(-14deg);
background: rgba(255,255,255,0.3);
border-radius: var(--border-radius);
mix-blend-mode: soft-light;
}

p {
position: relative;
display: inline-block;
font-size: var(--font-size-2xl);
font-weight: 900;
line-height: 1em;
text-shadow: 3px 3px 20px rgba(0,0,0,0.2);
}
}
}

.column-widget {

/* Column Type - Thin */
&.thin {
.wrapper {
max-width: var(--wrapper-width-thin);
}
}

/* Column Type - Vertical (Centered) */
&.vertical {
.column-wrapper {
align-items: center;
}
}

/* Column Type - Brand Color */
&.brand-color {
.backdrop {
background: var(--brand-color) !important;
}

&:has(+ .column-widget.brand-color) {
padding-bottom: 0;
}

+ .column-widget.brand-color {
padding-top: 0;
}

.column {
border-radius: 20px;
}
}
}

/* Footer */

footer {
width: 100%;
background: var(--brand-color);
border-top: 4px solid var(--brand-color-secondary);
padding: 2rem 0;

.wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}

.site-logo {
display: flex;
width: 100%;
max-width: 150px;
}

.navigation-widget {
flex: 1;
text-align: center;

&.standard:not(.collapse) {
.l1 {
> a {
color: #FFF;
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 500;
letter-spacing: 2px;
}

&:hover {
> a {
background: none;
color: #DDD;
transform: scale(1.1);
}
}
}
}

&.standard.collapse {
a {
justify-content: center;

&:hover {
text-decoration: underline;
}
}
}
}

a {
color: #FFF;
}

& + .powered-by {
display: flex;
align-items: center;
justify-content: center;
gap: calc(var(--item-gap) / 2);
padding: 1rem 2rem;
background-color: #1C0604;
font-size: var(--font-size-xs);
letter-spacing: 1px;
color: #FFF;

span {
text-transform: uppercase;
}

img {
width: auto;
height: 20px;
}
}
}

#templatefooter {
display: none;
}/* Modules-Widgets.css | Apr 14, 2026 @4:22:17 PM  */

/* Testimonials */

.testimonials-module a {
color: inherit;
}

.column-widget .testimonials-module .swiper-loaded .testimonial-item-list {
padding-bottom: 0;
}

.testimonials-module .speechbubble-card .item-header {
right: auto;
text-align: center;
}

.testimonials-module .item .item-profile-image {
display: none;
}

.testimonials-module .item-description {
line-height: 1.25em;
}

.swiper-pagination {
display: none;
}

/* Contact Form */

form.formWizForm {
h2 {
display: none;
}

input[type='text'], input[type='password'], input[type='email'], input[type='number'], textarea {
width: 100%;
font-size: 1.8rem;
font-family: var(--font-);
padding: 1rem;
border: 1px solid var(--brand-color);
border-radius: var(--border-radius-small);

&:focus {
outline-color: var(--brand-color);
}
}

.phone .left, .email input {
margin-right: 0;
}

div.sectionBreak {
font-family: var(--font-accents);
font-weight: 700;
font-size: var(--font-size-lg);
color: var(--brand-color);
}

.address {
.info {
display: inline-block;
background-color: var(--brand-color);
padding: 5px 10px;
color: #FFF;
font-family: var(--font-accents);
text-transform: uppercase;
margin-left: 10px;
border-bottom-left-radius: var(--border-radius-small);
border-bottom-right-radius: var(--border-radius-small);
margin-bottom: 2rem;
}
}
}

/* Column Widgets */

.column-widget {

/* Thinner Text Wrapper */
&.text {
.wrapper {
max-width: var(--wrapper-width);
}
}

&.services {
.column-wrapper {
img {
@media only screen and (max-width:512px) {
max-width: 150px;
}
}
}
}

.column {
border-radius: var(--border-radius);
}
}

/* Blogs Module */

.blogs-module {
.entry-list {

.item-meta {
display: block;
}

.item-header {
display: flex;
flex-wrap: wrap;
}

h4.item-title {
width: 100%;
order: 1;
margin-bottom: 0;
}

time {
order: 3;

&::before {
content: "\2014";
margin: 0 5px 0 10px;
}

&::after {
content: ".";
}

font-style: italic;
}

span.item-byline {
order: 2;
}

.item-excerpt {
margin-top: 3rem;
}

.text-link {
width: auto;
display: inline-flex;
align-items: center;
position: relative;
font-size: var(--font-size-md);
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
text-decoration: none;
padding: 5px 15px;
border-radius: 8px;
background-color: #EEE;
margin-top: 2rem;

i {
margin: 2px 0 0 5px;
}
}
}

.entry {
.item-header-content {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;

.item-byline {
order: 2;
}

.item-category {
order: 3;

a {
font-size: 1.4rem;
background-color: var(--brand-color);
padding: 5px 10px;
border-radius: var(--border-radius-small);
color: #FFF;
text-transform: uppercase;
text-decoration: none;
}
}
}

h3.item-title {
width: 100%;
margin-bottom: 1rem;

a {
text-decoration: none;
pointer-events: none;
}
}

time {
order: 3;
line-height: 2rem;

&::before {
content: "\2014";
margin: 0 5px 0 10px;
}

&::after {
content: ".";
}
}

span.item-byline {
order: 2;
line-height: 2rem;
}

.item-excerpt {
margin-top: 3rem;
}

article {
margin-top: 3rem;
}
}

.item-footer {
margin-top: 3rem;
}
}/* Responsive.css | Apr 14, 2026 @4:27:23 PM  */

/* Mobile Navigation */

header {
.navigation-widget.collapse.hamburger .menu-toggle label {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
padding: 0;
}

.navigation-widget.collapse.hamburger .menu-toggle label:hover::after {
color: var(--brand-color-tertiary);
}

.navigation-widget.collapse.hamburger .menu-toggle label span {
font-weight: 700;
position: relative;
margin-top: -1px;
}

.navigation-widget.collapse.hamburger .menu-toggle label::after {
position: static;
font-size: 1.8em;
line-height: 1em;
transform: none;
transition: 0.2s ease all;
margin: 0;
}

.navigation-widget.collapse.hamburger nav .menu-toggle {
display: block;
}

.navigation-widget.collapse.hamburger input.menu-toggle-check:checked ~ nav {
background: var(--brand-color);
}

.navigation-widget.collapse.hamburger nav ul.menu {
width: 90vw;
margin: 5vw auto 0;
}

.navigation-widget.collapse.hamburger nav .l1 > a {
font-size: 3rem;
border-radius: 10px;
padding-left: 2rem;
}

.navigation-widget.collapse.hamburger nav .l1.active > a {
border-left: 4px solid var(--brand-color-secondary);
}

.navigation-widget.collapse.hamburger nav .l1:hover > a {
color: var(--brand-color);
background: #FFF;
}
}

/* Footer Navigation */

@media only screen and (max-width:767px) {
footer {
.wrapper {
flex-direction: column;

.navigation-widget {
text-align: center;

&.collapse {
.l1 {
border: none;

a {
padding: 2px 0;
color: #FFF;
}

&:hover a {
background: none;
color: var(--brand-color-tertiary);
}
}
}
}
.site-logo {
margin-top: 3rem;
}
}
}
}

@media (max-width: 512px) {
.mobile-reverse {
.primary {
order: 2;
}

.last {
order: 1;
}
}

.testimonials-module {
.swiper-loaded {
padding: 0;
}

--swiper-navigation-sides-offset: -30px;
}
}