@charset "UTF-8";
/* ========================================================================= */
/* !RESETS AND DEFAULTS */
/* ========================================================================= */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, img,
ins, kbd, q, samp, var, hr, acronym, dl, dt, dd, ol, ul, li,
pre, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav,
section, summary, time, mark, audio, video {
  border: 0;
  outline: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

em, strong, b, i, a, span, sub, sup, small {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border-top: 1px solid #000;
  color: #000;
}

input, select {
  vertical-align: middle;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  line-height: 0px;
}

sup {
  vertical-align: super;
  font-size: smaller;
  line-height: 0px;
}

input, button, textarea, select, label, img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input[type=text],
input[type=password],
input[type=url],
input[type=number],
input[type=tel],
input[type=email],
input[type=button],
input[type=submit],
button, textarea, select {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  overflow: auto;
}

button, [type=submit], [type=button], [type=reset] {
  cursor: pointer;
  border: 0;
  text-align: center;
  background: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

table {
  table-layout: fixed;
}

a[href^=tel] {
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}

select::-ms-expand {
  display: none;
}

/* != FONT SMOOTHING */
body, input, button, textarea {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* != ms-clear */
input[type=text]::-ms-clear {
  display: none;
}

/* != BACKGROUND POSITION AND BOX SIZING */
*, *:before, *:after {
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
}

/* != .clearfix - CLEAR ELEMENTS */
.clear {
  clear: both;
}

.clearfix {
  display: block;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/* != .wordwrap - CONTINUE LONG URLS/WORDS ON NEXT LINE */
.wordwrap {
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
}

svg path {
  d: revert-layer !important;
}

* {
  text-wrap: pretty;
}

/* ========================================================================= */
/* !FONTS (@fontface generated with FontSpring Syntax formatting */
/* ========================================================================= */
/* ========================================================================= */
/* !SASS VARIABLES & MIXINS */
/* ========================================================================= */
/*
    // Use Case: $b (second) variable is optional and defaults to 'max-width'

    @include break(1100){
        h1{
            background: red;
        }
    }

    // Output
    @media screen and (max-width: 1100px) {
        h1 { background: red; }
    }

    // Also, if you want to specify the 2nd variable for break type (i.e., min-height)

    @include break(1100, 'min-height'){
        h1 {
            background:red;
        }
    }

    // Output
    @media screen and (min-height: 1100px) {
        h1 { background: red; }
    }
*/
/*
    // inline SVGs
    // usage: background-image: inline-svg('<svg><!-- your svg code --></svg>');
*/
/* ========================================================================= */
/* !STYLES */
/* ========================================================================= */
/* != DEFAULT STYLES ===== */
html, body {
  scroll-behavior: smooth;
  font-family: "Avenir Next", Arial, sans-serif;
  font-size: 16px;
}

[id] {
  scroll-margin-top: 100px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
}
.content-main ul:not([class*=gf]) > li {
  position: relative;
  padding-left: 10px;
}
.content-main ul:not([class*=gf]) > li:before {
  content: "•";
  position: absolute;
  left: 0;
}
.content-main ol {
  counter-reset: li;
}
.content-main ol > li {
  position: relative;
  padding-left: 20px;
}
.content-main ol > li:before {
  content: counter(li) ". ";
  counter-increment: li;
  position: absolute;
  right: calc(100% - 15px);
}

.socials {
  display: flex;
  gap: 16px;
}
.socials .social {
  height: 27px;
}
.socials .social:hover svg {
  fill: #000;
  background-color: #eaeaea;
}
.socials .social svg {
  fill: #fff;
  background-color: #000;
  padding: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  transition: all 0.2s;
}
.socials .social svg:hover {
  fill: #000;
}

::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

/* != DEFAULT WORDPRESS STYLES = USE AS NEEDED = .wp-caption = .wp-caption-dd = .wpGallery = .shutter = .shutterset ==== */
.aligncenter {
  display: block;
  margin: 25px auto;
}

.alignleft {
  float: left;
  margin: 0 25px 25px 0;
}

.alignright {
  float: right;
  margin: 0 0 25px 25px;
}

.alignnone {
  display: inline-block;
}

/* != ACCESSIBILITY STYLES ===== */
.sr-only, .slick-sr-only {
  /* Styles below are so elements are shown to screen readers only */
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

*:focus {
  outline: 3px solid rgba(0, 0, 0, 0.5);
  outline-offset: 3px;
}

@supports selector(:focus-visible) {
  *:focus {
    outline: none;
  }
  *:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.5);
    outline-offset: 3px;
  }
}
#skipnav {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  height: 30px;
  width: 150px;
  top: 0;
  left: 50%;
  margin-left: -75px;
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.3s;
  z-index: 9999999999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
#skipnav:focus {
  transform: translateY(0%);
}

body .gform_wrapper .gform_fields .gfield--type-honeypot {
  display: block !important;
  position: absolute;
  left: -99999px;
}

/* != SELECTION STYLES (Leaving these blank will show no indication of text selection) ===== */
/*
    ::selection         {
        background: #aaa;
        color: #fff;
    }
    ::-moz-selection    {
        background: #aaa;
        color: #fff;
    }
    ::-webkit-selection {
        background: #aaa;
        color: #fff;
    }
*/
/* != LAYOUT STYLES ===== */
.wrap {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

#alert {
  display: none;
}

#header {
  background-color: #0C2F8F;
  margin: 48px 47px 0;
  padding: 20px;
  border-radius: 25px;
}

#main-nav > ul > li {
  display: inline-block;
  position: relative;
}
#main-nav > ul > li > a {
  display: block;
  color: #ffffff;
}
#main-nav > ul > li .sub-menu-wrap {
  display: block;
  background: #555;
  width: 300px;
  padding: 30px 20px;
  position: absolute;
}
#main-nav > ul > li .sub-menu-wrap ul[aria-hidden=true] {
  display: none;
}
#main-nav > ul > li .sub-menu-wrap li {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 0;
}
#main-nav > ul > li .sub-menu-wrap li a {
  color: #fff;
  text-decoration: none;
}
#main-nav > ul > li.menu-item-has-children {
  position: relative;
}
#main-nav > ul > li.menu-item-has-children > .menu-toggle-button {
  width: 0;
  height: 0;
  border: none;
  padding: 0;
  margin: 0;
  background-color: none;
  position: absolute;
  right: 0;
  top: 50%;
}
@media screen and (min-width: 769px) {
  #main-nav > ul > li.menu-item-has-children:hover .sub-menu-wrap ul {
    display: block;
  }
}
#main-nav > ul > li.menu-item-has-children:hover > a {
  color: #fff;
  background-color: #555;
}
@media screen and (min-width: 769px) {
  #main-nav > ul > li.menu-item-has-children.active .sub-menu-wrap ul {
    display: block;
  }
}
#main-nav > ul > li.menu-item-has-children.active > a {
  color: #fff;
  background-color: #555;
}

#menu-toggle {
  display: none;
}
#footer .jackrabbit a {
  text-decoration: underline;
}
#footer .jackrabbit a:hover {
  text-decoration: none;
}

/* != PLACEHOLDER ATTRIBUTE STYLES = input or textarea - placeholder="whatever" ===== */
/*
    ::-webkit-input-placeholder {
        color: #aaa;
    }

    ::-moz-placeholder {
        color: #aaa;
    }
*/
/* != FORM STYLES ===== */
input[type=text], input[type=password], input[type=url], input[type=number], input[type=tel], input[type=email] {
  width: 100%;
  padding: 10px 15px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #f00;
}

textarea {
  width: 100%;
  padding: 10px 15px;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid #f00;
}

/* .ginput_container_checkbox {
	.gfield_checkbox {
		.gchoice {
			label {
				padding: 0 0 0 2px;
				cursor: pointer;
				position: relative;
				&:before {
					border: 1px solid #00f;
					@include size(15px);
					border-radius: 2px;
					left: -17px;
					top: 1px;
					content: '';
					position: absolute;
					opacity: 1;
				}
				&:after {
					border-left: 3px solid #f00;
					border-bottom: 3px solid #f00;
					@include size(17px, 6px);
					transform: rotate(-45deg);
					top: 5px;
					left: -14px;
					content: '';
					position: absolute;
					opacity: 0;
				}
				&:hover {
					&:after {
						opacity: 0.3;
					}
				}
			}
			input[type=checkbox] {
				visibility: hidden;
				&:checked + label:after {
					opacity: 1;
				}
			}
		}
	}
}
.ginput_container_radio {
	.gfield_radio {
		.gchoice {
			label {
				padding: 0 0 0 2px;
				cursor: pointer;
				position: relative;
				&:before {
					border: 1px solid #00f;
					@include size(15px);
					border-radius: 50%;
					left: -17px;
					top: 1px;
					content: '';
					position: absolute;
					opacity: 1;
				}
				&:after {
					@include size(5px);
					border-radius: 50%;
					left: -12px;
					top: 6px;
					content: '';
					position: absolute;
					opacity: 0;
				}
				&:hover {
					&:after {
						opacity: 0.3;
					}
				}
			}
			input[type=radio] {
				visibility: hidden;
				&:checked + label:before {
					background: #f00;
					border: 1px solid #f00;
				}
				&:checked + label:after {
					background: #fff;
					opacity: 1;
				}
			}
		}
	}
} */
input[type=submit], button {
  display: inline-block;
  cursor: pointer;
}
select {
  padding: 10px 35px 10px 15px;
  width: 100%;
  background: #fff url("data:image/svg+xml,%3Csvg width%3D%2213%22 height%3D%228%22 viewBox%3D%220 0 13 8%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M.293.293c.36-.36.928-.388 1.32-.083l.094.083L6.51 5.096 11.313.293c.36-.36.928-.388 1.32-.083l.094.083c.36.36.389.928.084 1.32l-.084.094-5.51 5.51c-.36.36-.927.388-1.32.083l-.094-.083-5.51-5.51c-.39-.39-.39-1.024 0-1.414z%22 fill%3D%22%23f00%22 fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat calc(100% - 10px) 50%;
  border: 1px solid #f00;
}

.gform_validation_errors {
  background-color: #c00;
  color: #fff;
  padding: 20px;
}
.gform_validation_errors h2 {
  color: #fff;
}

.gform_validation_container {
  position: absolute;
  top: -9999px;
  left: -9999px;
  pointer-events: none;
  opacity: 0;
}