* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
}

html,
body {
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #001a48;
  background-color: #001a48;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "roboto", sans-serif;
}

nav ul {
  list-style: none;
}

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

a {
  text-decoration: underline;
  color: #e42227;
  transition: color 0.5s ease-in-out;
}
a:hover {
  color: #fff;
}

.slick-arrow {
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #001a48;
  padding: 5px;
  font-size: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  width: 42px;
  height: 42px;
  opacity: 0.8;
  color: #001a48;
}
.slick-arrow.next {
  right: -20px;
}
.slick-arrow.prev {
  left: -20px;
}

@media (max-width: 767px) {
  .hide-small {
    display: none;
  }
}

.gform_title {
  text-align: center;
}

.gform_footer {
  margin: 0;
  padding: 0 0 1rem 0;
}

.btn,
.wp-element-button,
input[type=submit],
button {
  padding: 6px 20px 9px 20px;
  color: #fff;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: transparent;
  z-index: 0;
  text-align: center;
  transition: color 0.5s ease-in-out;
  display: inline-block;
  width: 100%;
}
.btn:hover,
.wp-element-button:hover,
input[type=submit]:hover,
button:hover {
  color: #fff;
}
.btn::after,
.wp-element-button::after,
input[type=submit]::after,
button::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #0a236c;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.btn::before,
.wp-element-button::before,
input[type=submit]::before,
button::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 6px;
  background-color: #001a48;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.btn:hover:before,
.wp-element-button:hover:before,
input[type=submit]:hover:before,
button:hover:before {
  height: 100%;
}
.btn.btn-sm,
.wp-element-button.btn-sm,
input[type=submit].btn-sm,
button.btn-sm {
  font-size: 1rem;
  padding: 6px 20px 12px 20px;
}
.btn.btn-red,
.wp-element-button.btn-red,
input[type=submit].btn-red,
button.btn-red {
  color: #fff;
}
.btn.btn-red::after,
.wp-element-button.btn-red::after,
input[type=submit].btn-red::after,
button.btn-red::after {
  background-color: #e42227;
}
.btn.btn-red::before,
.wp-element-button.btn-red::before,
input[type=submit].btn-red::before,
button.btn-red::before {
  background-color: #a7171c;
}
.btn.btn-white,
.wp-element-button.btn-white,
input[type=submit].btn-white,
button.btn-white {
  color: #e42227;
}
.btn.btn-white::after,
.wp-element-button.btn-white::after,
input[type=submit].btn-white::after,
button.btn-white::after {
  background-color: #fff;
}
.btn.btn-white::before,
.wp-element-button.btn-white::before,
input[type=submit].btn-white::before,
button.btn-white::before {
  background-color: #f2f2f2;
}
.btn.btn-small,
.wp-element-button.btn-small,
input[type=submit].btn-small,
button.btn-small {
  padding: 0.5rem 0.75rem;
}

select,
textarea,
input {
  padding: 6px 20px !important;
  border: 2px solid #001a48;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  background-color: white;
  color: #949494 !important;
  font-family: "futura-pt", sans-serif;
  line-height: 1 !important;
  min-height: unset !important;
}
select:focus,
textarea:focus,
input:focus {
  border-color: #0a236c !important;
  border-radius: 0 !important;
}
select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  color: #949494 !important;
}
select::placeholder,
textarea::placeholder,
input::placeholder {
  color: #949494 !important;
}

select {
  padding: 11px 40px !important;
}

.gchoice {
  text-align: left;
}
.gchoice input {
  opacity: 0;
  position: absolute;
}
.gchoice input + label {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #001a48;
  position: relative;
  overflow: hidden;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
}
.gchoice input + label::before, .gchoice input + label::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  transition: 0.5s;
}
.gchoice input:not(:checked) + label::after {
  width: 20px;
  height: 20px;
  border: 2px solid #001a48;
  top: 0px;
}
.gchoice input:checked + label::after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #001a48;
  background-color: #001a48;
  z-index: 0;
}
.gchoice input:checked + label::before {
  content: "\f00c";
  color: #fff;
  font-family: "Font Awesome 6 Pro";
  top: -3px;
}

header {
  padding: 1rem;
  z-index: 100;
}
header .logo img {
  max-width: 200px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem 1rem 1rem;
}
footer .discaimer {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.25rem 0.5rem;
}
footer .navigation {
  margin-top: 0.5rem;
}
footer .navigation ul {
  display: flex;
  list-style: none;
  padding: 0;
}
footer .navigation ul li {
  margin: 0 1rem;
}
footer .navigation ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}
footer .navigation ul li a:hover {
  color: #e42227;
}

main .title h1 {
  font-family: "bc-eric-machat-script", sans-serif;
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
}
main .title.image {
  margin-top: -79px;
  min-height: 500px;
}
@media (max-width: 992px) {
  main .title.image {
    min-height: 400px;
  }
}
main .title.image::after {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(to top, #001a48, rgba(0, 26, 72, 0));
  z-index: 1;
}
main .title.image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -o-object-position: top;
     object-position: top;
  top: 0;
  left: 0;
  z-index: 0;
}
main .title.image h1 {
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
}
main .content {
  max-width: 800px;
  padding: 0 2rem;
  margin: auto;
  color: #fff;
}
main .content p,
main .content blockquote {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
main .content ul,
main .content ol {
  margin-top: 1rem;
  padding-left: 1.5rem;
}
main .content ul li,
main .content ol li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
main .content ul {
  list-style: disc;
}

.error404 main .wrapper > * {
  grid-column: span 12;
  text-align: center;
}
.error404 main .wrapper h1 {
  font-size: 3rem;
  text-transform: none;
}/*# sourceMappingURL=theme.css.map */