:root {
  --sp-font: dm-serif-display, serif;
  --body-font: dm-sans, sans-serif;
  --accent: #A0AE84;
  --yellow: #E7B745;
  --green: #204D3E;
  --green-l: #A9B8A4;
  --beige: #F1EDE4;
}

.loading {
  overflow: hidden !important;
}
.loading .loader {
  opacity: 1;
}
.loading lottie-player {
  opacity: 1;
}

.loader {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 998;
  pointer-events: none;
}
.overlay.show {
  pointer-events: all;
}

/*HEADER & FOOTER */
div.error {
  display: block;
  width: 100%;
  font-size: 0;
  position: fixed;
  top: -1px;
  left: 0;
  max-height: 400px;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
}

div.error p {
  display: block;
  width: 100%;
  background: var(--col-error);
  color: #fff;
  font-size: 18px;
  padding: 20px;
  text-align: center;
}

div.error.hide {
  max-height: 0px;
  opacity: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  overflow-x: hidden;
  font-weight: 300;
  font-size: 1.125em;
}

article {
  background: none;
}

#mainbody {
  margin-top: 80px;
}

.font-normal {
  font-family: var(--body-font) !important;
}

.font-sp {
  font-family: var(--sp-font) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-black {
  color: black;
}

.text-green {
  color: var(--green) !important;
}

.bg-green {
  background: var(--green-l) !important;
}

.bg-beige {
  background: var(--beige) !important;
}

.bg-dark-green {
  background: var(--green) !important;
}

.bg-light {
  background: var(--beige) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--body-font);
  font-weight: 600;
  margin-bottom: 3rem;
}
@media (max-width: 768.98px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768.98px) {
  .h1 {
    font-size: 5vw;
  }
}

h3 {
  margin-bottom: 0;
}
@media (max-width: 768.98px) {
  h3 {
    font-size: 1em;
  }
}

@media (max-width: 768.98px) {
  small {
    font-size: 0.75em;
  }
}

.lh-1 {
  line-height: 1em !important;
}

.ls-0 {
  letter-spacing: normal !important;
}

.ls-1 {
  letter-spacing: 0.17em !important;
}

.ls-2 {
  letter-spacing: 0.2em !important;
}

.tiny {
  font-size: 12px !important;
  line-height: 1.1em;
}

.border-right {
  position: relative;
}
.border-right:after {
  height: 100%;
  border-right: 1px solid var(--bs-border-color);
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 768.98px) {
  .border-right::after {
    display: none;
  }
}

hr {
  opacity: 1;
}

@media (max-width: 768.98px) {
  .sm-squard {
    padding-bottom: 100%;
    position: relative;
  }
  .sm-squard img {
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  font-size: 0.85em;
  transition: background 0.3s ease-in-out;
  background: var(--beige);
  color: black;
}
header a {
  color: black;
}
header nav {
  transition: background 0.3s ease-in-out;
  max-width: 1640px;
  margin: auto;
  position: relative;
}
header.home .hamburger {
  --line-color: white;
}
header.home nav {
  background: transparent;
}
header.home nav li.home {
  display: none;
}
header.home.visible nav {
  transform: translateY(0%);
}
header.attached {
  background-repeat: repeat-x;
  background-size: contain;
  color: var(--accent);
}
header.attached nav li.home {
  display: block;
}
header.attached .hamburger {
  --line-color: var(--accent);
}
header .fs-nav a {
  color: var(--accent);
}

.page-top nav {
  background: transparent !important;
}

nav {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  max-width: 1920px;
  transition: all 0.3s ease-in-out;
  color: white;
}
nav .desktop-nav {
  width: 100%;
}
nav ul {
  list-style: none;
  padding: 0;
}
nav ul li {
  padding: 0;
}
nav ul li::before, nav ul li::after {
  display: none;
}
nav ul li.home {
  position: relative;
  width: 150px;
}
nav ul li.home a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 1179.98px) {
  nav ul li.home a {
    display: flex;
    justify-content: center;
  }
}
nav ul li.home span {
  font-size: 0;
  position: absolute;
}
@media (max-width: 1179.98px) {
  nav ul li.home span {
    font-size: 1em;
    position: relative;
  }
}
nav ul li.home .logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  top: 50%;
  left: unset;
  transform: translateY(-50%);
  width: 150px;
  display: inline-block;
}
@media (max-width: 1179.98px) {
  nav ul li.home .logo {
    display: none;
  }
}
nav ul li a {
  font-weight: 700;
  text-decoration: none !important;
}
nav ul li a.active {
  text-decoration: underline !important;
}
nav ul li a:hover {
  text-decoration: underline !important;
}
nav ul li a.boxed {
  border: 1px solid black;
  padding: 10px 30px;
  padding-top: 14px;
}
nav .logo {
  width: 200px;
  display: block;
}
nav .logo svg {
  height: auto;
}
nav .nav-btn {
  color: black !important;
}
nav .nav-btn .burger span {
  background: black;
}
nav .nav-menu {
  margin: auto;
}
nav .register-btn {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 1em;
  width: auto;
  border-radius: 0.3125em;
  font-family: var(--special-font);
  color: white;
  background: var(--green);
  margin-right: 0.625em;
  transition: background-color 0.3s ease-in-out;
}
nav .register-btn:hover {
  background-color: var(--main-color-2);
}

.fs-nav {
  position: absolute;
  height: auto;
  width: 100vw;
  top: 0px;
  transform: none;
  right: unset;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--green);
  z-index: 9998;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity ease-in-out 0.3s;
  transition: max-width 1s ease-in-out, max-height 1s ease-in-out;
}
@media (max-width: 768.98px) {
  .fs-nav {
    right: 1rem;
  }
}
.fs-nav .logo {
  width: 60vw;
}
.fs-nav li {
  border-bottom: 1px solid white;
  padding: 0.5em 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transition-delay: 0s;
}
.fs-nav li a {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: normal;
}
.fs-nav.show {
  pointer-events: initial;
  opacity: 1;
}
.fs-nav.show .nav-menu {
  padding: 2em;
}
.fs-nav.show .nav-menu li {
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.fs-nav.show .nav-menu li a {
  font-family: var(--body-font);
  font-weight: 300;
  text-decoration: none !important;
}
.fs-nav .nav-btn:hover .burger {
  transform: none !important;
}
.fs-nav .nav-btn .burger span {
  background: black;
  position: absolute;
  top: 50%;
  left: 50%;
}
.fs-nav .nav-btn .burger span:nth-child(1) {
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.fs-nav .nav-btn .burger span:nth-child(2) {
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(45deg);
}
.fs-nav .nav-btn .burger span:last-child {
  display: none;
}
.fs-nav .nav-menu {
  list-style: none;
}

.hamburger {
  --line-color: black;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 100px;
  height: 40px;
  z-index: 99999;
  display: block;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-decoration: none !important;
  transition: width 0.5s ease-in-out;
  transition-delay: 0;
}
@media (max-width: 768.98px) {
  .hamburger {
    right: 1rem;
  }
}
.hamburger img {
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.hamburger span {
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  padding-right: 10px;
}
.hamburger.active span {
  padding-left: 2rem;
  color: white;
}
.hamburger.active img {
  transform: rotate(180deg);
  filter: brightness(200);
}
.hamburger.active:before {
  opacity: 1;
  transition: opacity 0.3 ease-in-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
.btn {
  --bs-btn-border-radius: 0;
  padding: 0.5em 1em;
  font-weight: normal;
  text-transform: capitalize;
  letter-spacing: normal;
  border: 1px solid var(--accent);
  transition: all 0.3s ease-in-out !important;
  font-size: 0.85em;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  background: var(--accent);
  color: var(--green);
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: 1.1em;
}
.btn:hover {
  text-decoration: none !important;
  background: var(--green);
  color: var(--accent);
}
.btn.btn-red {
  background: var(--accent);
  color: var(--light-brown);
  text-align: center;
  border: 1px solid var(--accent);
}
.btn.btn-red.arrow-down::after {
  background-image: url(/img/arrow-down.svg);
}
.btn.btn-red.arrow-down:hover::after {
  background-image: url(/img/arrow-down-c.svg);
}
.btn.btn-red:hover {
  background: var(--light-brown);
  color: var(--accent);
}
.btn.btn-red:hover::after {
  background-image: url(/img/arrow-down-c.svg);
}
.btn.arrow-down {
  padding-bottom: 2em;
  position: relative;
}
.btn.arrow-down::after {
  content: "";
  display: block;
  width: 3em;
  height: 1em;
  background-image: url(/img/arrow-down-c.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  transition: all 0.5s ease-in-out;
}

a {
  color: var(--accent);
  font-family: var(--body-font);
  font-weight: 500;
}

.readmore {
  text-decoration: none;
  padding-left: 2em;
  position: relative;
  display: inline-block;
  color: black;
  text-transform: uppercase;
}
.readmore .less {
  display: inline-block;
}
.readmore .more {
  display: none;
}
.readmore .sign {
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 0;
  margin-top: -0.5em;
}
.readmore .sign::before, .readmore .sign::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--accent);
  top: 50%;
  transition: transform 0.3s ease-in-out;
}
.readmore.collapsed .less {
  display: none;
}
.readmore.collapsed .more {
  display: inline-block;
}
.readmore.collapsed .sign:after {
  transform: rotate(90deg);
}

img {
  width: 100%;
}

iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.s-line {
  display: block;
  margin: auto;
  width: 1px;
  height: 10em;
  background: var(--accent);
}

.arrow-down:not(.btn) {
  max-width: 50px;
}

.logo {
  width: 380px;
}

.slider.style-1 {
  --swiper-theme-color: #A1AD84;
  --swiper-pagination-bullet-width: 16px;
  --swiper-pagination-bullet-height: 16px;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-pagination-bullet-inactive-color: var(--green-l);
  --swiper-pagination-bullet-inactive-opacity: 1;
}
@media (max-width: 768.98px) {
  .slider.style-1 .swiper-slide {
    background: #fafafa;
  }
}
.slider.style-1 .swiper-slide > img {
  max-height: 46vw;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 768.98px) {
  .slider.style-1 .swiper-slide > img {
    min-height: 80vw;
  }
}
.slider.style-1 .swiper-pagination-bullets {
  position: relative;
  transform: none;
  bottom: unset;
  margin-top: 2em;
}
.slider.style-1 .swiper-button-next,
.slider.style-1 .swiper-button-prev {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
  margin-top: calc(-1 * (2em + 13px));
}
.slider.style-1 .swiper-button-next:hover,
.slider.style-1 .swiper-button-prev:hover {
  filter: invert(1);
}
.slider.style-1 .swiper-button-next:after,
.slider.style-1 .swiper-button-prev:after {
  font-size: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/img/arrow-prev.svg);
  background-size: contain;
}
.slider.style-1 .swiper-button-next::after {
  background-image: url(/img/arrow-next.svg);
}
.slider.style-1 .swiper-pagination-bullet-active {
  --swiper-pagination-color: #786982;
}

.btn-download {
  display: inline-block;
  background: var(--green);
  width: 100%;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  font-family: var(--sp-font);
  color: white;
}
.btn-download::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 70%;
}
.btn-download::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.75em;
  height: 1.5em;
  background-image: url(/img/icon-download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: calc(50% + 1em);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  filter: brightness(2);
}
.btn-download span {
  position: absolute;
  left: 50%;
  top: calc(50% - 1em);
  font-weight: 600;
  transform: translate(-50%, -50%);
  font-size: 1.125em;
  width: 100%;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}
.btn-download:hover {
  background: var(--green-l);
}
.btn-download:hover span {
  filter: invert(1);
}
.btn-download:hover::after {
  filter: brightness(2) invert(1);
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader lottie-player {
  width: 65vw;
}

section:not(.hero) {
  padding: 2em 0;
}
@media (max-width: 1179.98px) {
  section:not(.hero) {
    height: unset;
    max-height: unset;
  }
}
@media (max-width: 768.98px) {
  section:not(.hero) {
    padding: 0;
  }
}

.hero {
  background-image: url("/img/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  aspect-ratio: 16/5;
}
.hero::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  background: linear-gradient(0deg, rgb(4, 21, 25) 15%, rgba(4, 21, 25, 0) 100%);
  bottom: 0;
  z-index: 0;
  opacity: 0.85;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero .arrow-down {
  display: inline-block;
  max-width: 40px;
}

#highlights .icon {
  width: 110px;
  margin-bottom: 1rem;
}

.timeline-container {
  width: 100%;
  overflow: hidden;
  padding-top: 50px;
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.timeline {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768.98px) {
  .timeline {
    flex-direction: column;
  }
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(60% + 10px);
  height: 2px;
  background-color: #B9A98F;
  opacity: 0.7;
}
@media (max-width: 768.98px) {
  .timeline::before {
    left: 50%;
    right: unset;
    height: 100%;
    width: 2px;
    top: 0;
  }
}

.timeline-item {
  flex: 1;
  position: relative;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  min-height: 200px;
  justify-content: space-between;
}
@media (max-width: 768.98px) {
  .timeline-item {
    flex-direction: row;
    width: 100%;
  }
}
.timeline-item:first-of-type::after, .timeline-item:last-of-type::after {
  width: 50%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  background: var(--beige);
  z-index: 0;
  left: 0;
}
@media (max-width: 768.98px) {
  .timeline-item:first-of-type::after, .timeline-item:last-of-type::after {
    width: 100%;
    height: 50%;
    top: 0;
  }
}
.timeline-item:first-of-type div, .timeline-item:last-of-type div {
  position: relative;
  z-index: 1;
}
.timeline-item:last-of-type::after {
  left: unset;
  right: 0;
}
@media (max-width: 768.98px) {
  .timeline-item:last-of-type::after {
    bottom: 0;
    top: unset;
  }
}
.timeline-item:hover::before, .timeline-item.active::before {
  background-color: var(--green);
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 10px var(--green-l);
}
.timeline-item:hover .timeline-event, .timeline-item:hover::before, .timeline-item.active .timeline-event, .timeline-item.active::before {
  opacity: 1;
  border-color: var(--green-l);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60%;
  width: 20px;
  height: 20px;
  background-color: var(--green-l);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 1;
}
@media (max-width: 768.98px) {
  .timeline-item::before {
    top: 50%;
  }
}
.timeline-item.active::before {
  opacity: 1;
}

.timeline-date {
  position: static;
  width: auto;
  text-align: center;
  font-size: 0.875em;
  color: black;
  font-weight: normal;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}
@media (max-width: 768.98px) {
  .timeline-date {
    width: 50%;
  }
}

.timeline-event {
  position: static;
  letter-spacing: 0.01em;
  width: 100%;
  font-size: 1.5em;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--green);
  text-align: center;
  font-family: var(--sp-font);
}
.timeline-event span {
  line-height: 1em;
}
@media (max-width: 768.98px) {
  .timeline-event {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .timeline::before {
    left: 10px;
    right: auto;
    width: 1px;
    height: 100%;
    top: 0;
  }
  .timeline {
    display: block;
    padding: 0;
  }
  .timeline-item {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-top: 0;
  }
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  .timeline-item::before {
    left: 10px;
    top: 0.35em;
    opacity: 1;
  }
  .timeline-date {
    width: 100%;
    position: relative;
    padding-left: 40px;
    text-align: left;
    margin-bottom: 0.25rem;
  }
  .timeline-event {
    position: relative;
    width: 100%;
    font-size: 1em;
    padding-left: 40px;
    opacity: 1;
    color: black !important;
    margin-top: 0;
    text-align: left;
  }
}
.faq-container {
  --text-dark: black;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --transition-slow: all 0.4s ease;
  margin: 0 auto;
  overflow: hidden;
}
.faq-container .faq-content {
  padding: 0;
}

.faq-item {
  border-bottom: 2px solid var(--green-l);
}
.faq-item .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-weight: normal;
  font-size: 1.5em;
  font-family: var(--sp-font);
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  text-align: left;
  padding-left: 3rem;
  position: relative;
}
.faq-item .faq-question:hover {
  background-color: var(--bg-light);
  color: var(--green);
}
.faq-item .faq-question:focus {
  outline: none;
  background-color: var(--bg-hover);
}
.faq-item .faq-icon {
  order: 1;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  border-radius: 50%;
  background-color: var(--green-l);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item .faq-icon:after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  transform: rotate(-90deg);
  background-image: url(/img/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(100);
}
.faq-item.active .faq-question {
  color: var(--green);
}
.faq-item.active .faq-icon {
  transform: rotate(90deg);
}
.faq-item.active .faq-icon::after {
  filter: none;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-left: 3rem;
  color: var(--green);
  font-size: 0.875em;
  transition: var(--transition-slow);
  background-color: var(--bg-light);
}
.faq-item .faq-answer-content {
  padding-bottom: 24px;
  color: var(--text-light);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

.team-sel {
  max-width: 323px;
  width: auto;
  height: 100%;
  max-height: 57px;
  display: block;
  opacity: 0.2;
  transition: opacity 0.3 ease-in-out;
}
@media (max-width: 768.98px) {
  .team-sel {
    max-height: 32px;
  }
}
@media (max-width: 575.98px) {
  .team-sel {
    opacity: 1;
    pointer-events: none;
    max-height: 40px;
    max-width: 60vw;
  }
}
.team-sel.active {
  opacity: 1;
}
.team-sel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.team-desc {
  display: none;
}
.team-desc a {
  color: black;
}

.reveal {
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transition-delay: 700;
}
.reveal.active {
  opacity: 1;
}

.split-line {
  font-size: 3.5em;
  line-height: 1.2em;
}
@media (max-width: 1179.98px) {
  .split-line {
    font-size: 3.5vw;
  }
}
@media (max-width: 768.98px) {
  .split-line {
    font-size: 6vw;
  }
}

[data-aos=reveal-line] {
  opacity: 0.08;
  transition-property: transform, opacity;
}
[data-aos=reveal-line].aos-animate {
  opacity: 1;
}

footer {
  width: 100%;
  font-size: 14px;
  position: relative;
  font-weight: 300;
  font-size: 0.75rem;
}
footer .logo {
  max-width: 220px;
  width: 40vw;
}
footer .logo.sickkids {
  width: 30vw;
  max-width: 130px;
}
footer .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: top center;
}
footer .has-bg {
  background-size: 80%;
  background-position: 100% top;
  background-repeat: no-repeat;
  position: relative;
}
footer .logo {
  width: 90%;
  max-width: 464px;
}
footer .logo-bousfields {
  width: 200px;
}
footer .container .row {
  z-index: 99;
}
footer p {
  font-weight: normal;
}
footer a {
  font-weight: normal;
  letter-spacing: normal;
  color: black;
  text-transform: inherit;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline !important;
}
footer a.map {
  display: inline-block;
  position: relative;
}
footer a.map::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0.35em;
  width: 100%;
  height: 1px;
  background: #000;
}
@media (max-width: 1179.98px) {
  footer .p-logo {
    width: 30%;
    margin: 0 10px;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  footer .p-logo {
    width: 45%;
    margin: 0;
    text-align: center;
  }
}
footer h6 {
  font-size: 1em;
  font-weight: 500;
}
footer .copyright {
  text-transform: initial;
  font-weight: 300;
  font-size: 1em;
}
footer .copyright a {
  text-decoration: underline;
  font-weight: inherit;
}

/* FORM + INPUT STYLING*/
form {
  --col-missing: red;
}

input, textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input[type=radio] {
  -webkit-appearance: inherit;
}

input[type=submit] {
  cursor: pointer;
}

div.field > label {
  display: none;
}

div.field.missing label {
  color: var(--col-missing) !important;
}

div.field.warning label {
  color: var(--col-warning) !important;
}

div.field.missing div.checkbox label {
  color: var(--col-missing) !important;
}

div.field.missing span.error-message {
  color: var(--col-missing);
  display: block;
  font-size: 11px;
  position: absolute;
  top: 12px;
  right: 20px;
}

div.field.warning span.warning-message {
  color: var(--col-warning);
  display: block;
  font-size: 11px;
  position: absolute;
  bottom: -12px;
  left: 10px;
}

form {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: var(--default-input-font-size);
  font-family: var(--default-input-font);
}

fieldset {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  margin-bottom: 16px;
}

div.form-col {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

div.form-row {
  display: flex;
  width: 100%;
  gap: 16px;
  margin-bottom: 16px;
}

div.form-row:last-child {
  margin-bottom: 0px;
}

div.form-row > div {
  width: 100%;
}

div.form-row.x_2_31 > div {
  width: 25%;
}

div.form-row.x_2_31 > div:first-child {
  width: 75%;
}

div.form-row.x_3_21 > div {
  width: 33.34%;
}

div.form-row.x_3_21 > div:first-child {
  width: 66.66%;
}

div.radios {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

div.radios > label {
  padding-right: 20px;
}

div.radio input[type=radio] {
  display: none;
}

div.radio label {
  display: block;
  position: relative;
  padding-left: 32px;
  padding-top: 2px;
  line-height: 1.25;
  min-height: 22px;
  width: auto;
  font-family: var(--default-input-font);
}

div.radio label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: 1px solid var(--col-border);
  border-radius: 32px;
  box-sizing: border-box;
}

div.radio label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border-radius: 16px;
  border: 0px solid var(--col-border);
  box-sizing: border-box;
}

div.radio input[type=radio]:checked + label:after {
  background-color: #ccc;
  border: 3px solid var(--col-border);
}

div.checkbox {
  display: block;
  text-align: left;
  position: relative;
  width: 100%;
}

div.checkbox input[type=checkbox] {
  display: none;
}

div.checkbox label {
  display: block;
  color: var(--col-input);
  font-family: inherit;
  text-align: left;
  position: relative;
  width: 100%;
  font-size: var(--default-input-font-size);
  padding-left: 31px;
  min-height: 20px;
  padding-top: 1px;
  line-height: 1.25;
  font-family: var(--default-input-font);
}

div.checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  border: 1px solid var(--col-border);
  background: transparent;
  display: block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}

div.missing div.checkbox label:before {
  border-color: var(--col-error);
  -webkit-animation: pulse 0.5s 1;
  animation: pulse 0.5s 1;
}

div.checkbox input:checked + label:before {
  background: url(/lib/img/dark/checkmark.svg) no-repeat center center;
  background-size: 14px 12px;
}

div.file-upload input {
  display: none !important;
}

div.file-upload label {
  display: block !important;
  position: relative;
  padding-left: var(--dim-input-height);
  line-height: var(--dim-input-height);
  cursor: pointer;
}

div.file-upload label:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(var(--dim-input-height) * 0.66);
  height: var(--dim-input-height);
  left: 0;
  top: 0;
  background: url(/lib/img/dark/paperclip.svg) no-repeat center center;
  background-size: contain;
}

div.input-file-list > div:empty {
  display: none;
}

div.input-file-list > div {
  margin-top: 20px;
}

div.input-file-list > div span {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #000;
  padding-left: 24px;
  position: relative;
}

div.input-file-list > div span:before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: url(/lib/img/dark/x.svg) no-repeat left center;
  background-size: contain;
  cursor: pointer;
}

.select2-results__options::-webkit-scrollbar-track, form *::-webkit-scrollbar-track {
  background-color: rgba(var(--col-border-rgb), 0.2);
}

.select2-results__options::-webkit-scrollbar, form *::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.select2-results__options::-webkit-scrollbar-thumb, form *::-webkit-scrollbar-thumb {
  background-color: rgba(var(--col-border-rgb), 1);
}

input[type=text], input[type=search], input[type=tel], input[type=number], input[type=email], input[type=password] {
  display: block;
  width: 100%;
  line-height: var(--dim-input-height);
  min-height: var(--dim-input-height);
  border-color: var(--col-border);
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  padding: 0 10px;
  text-align: left;
  color: var(--col-input);
  font-family: var(--default-input-font);
  font-size: inherit;
  background-color: var(--col-input-bg);
}

input[type=search].highlighted, input[type=tel].highlighted, input[type=number].highlighted, input[type=text].highlighted, input[type=email].highlighted, input[type=password].highlighted {
  background-color: var(--col-missing);
}

input[type=search].missing, input[type=tel].missing, input[type=number].missing, input[type=text].missing, input[type=email].missing, input[type=password].missing {
  border-color: var(--col-missing);
}

select {
  display: block;
  width: 100%;
  line-height: var(--dim-input-height);
  min-height: var(--dim-input-height);
  border-color: var(--col-border);
  border-width: 1px;
  border-style: solid;
  padding: 10px;
  line-height: 1.5;
  text-align: left;
  color: var(--col-input);
  font-size: inherit;
}

textarea {
  display: block;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  border-color: var(--col-border);
  padding: 10px;
  line-height: 1.5;
  text-align: left;
  font-size: inherit;
}

button[type=submit], button[type=button] {
  display: table;
  width: auto;
  line-height: var(--dim-input-height);
  border: 0px;
  padding: 0 40px;
  text-align: center;
  background-color: var(--col-button-bg);
  color: var(--col-button);
  font-size: var(--default-input-font-size);
  cursor: pointer;
  position: relative;
}

button[type=submit]:hover, button[type=button]:hover {
  background-color: var(--col-accent);
}

div.reveal-response {
  text-align: center;
}

div.reveal-response p {
  font-size: 18px;
}

.js-postal-code {
  text-transform: uppercase;
}

form.validation-in-progress button[type=submit], form.submit-in-progress button[type=submit] {
  color: #000;
  position: relative;
}

form.validation-in-progress button[type=submit]:after {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 40px;
  top: 0;
  left: 0;
  font-size: 0 !important;
  content: "";
  display: block;
  background: url(/lib/img/white/spin2.gif) transparent no-repeat center center;
  background-size: 80px 10px;
}

form.submit-in-progress button[type=submit]:after {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 40px;
  font-size: 0 !important;
  content: "";
  display: block;
  background: url(/lib/img/white/spin2.gif) var(--col-button) no-repeat center center !important;
  background-size: 34px 34px !important;
  top: 0;
  left: 0;
}

button.submit-in-progress, a.submit-in-progress {
  background: url(/lib/img/white/spin2.gif) var(--col-button) no-repeat center center !important;
  background-size: 34px 34px !important;
  font-size: 0 !important;
  transition: none;
}

.select2-container--default {
  box-sizing: border-box;
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  border-color: var(--col-border);
}

.select2-container .select2-selection--single {
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  font-size: inherit;
  line-height: var(--dim-input-height);
  padding-left: 10px;
  padding-right: var(--dim-input-height);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: var(--dim-input-height);
  height: 100%;
  right: 0;
  top: 0;
  background: url(/lib/img/dark/arrow-down.svg) no-repeat center center;
  background-size: 21px 12px;
  transform: rotate(0deg);
  transition: all 0.1s ease-out;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:hover {
  background-size: 27px 17px;
}

.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: rotate(180deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-selection__rendered {
  color: var(--col-input);
}

.select2-results__option {
  font-size: var(--default-input-font-size);
}

div.inline-response {
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
}

form.form-done {
  display: none !important;
}

div.reveal-response {
  margin: 0 auto;
  height: auto;
  opacity: 1;
  transition: opacity 0.5s;
}

div.grecaptcha-badge {
  right: -1600px !important;
}

.js-hidden-option {
  display: none !important;
}

.js-hidden-option.revealed {
  display: block !important;
}

/* PLACEHOLDERS */
*::-webkit-input-placeholder {
  line-height: var(--dim-input-height);
  color: var(--col-placeholder);
  font-size: var(--default-input-font-size);
  font-family: var(--default-input-font);
}

*::-moz-placeholder {
  line-height: var(--dim-input-height);
  color: var(--col-placeholder);
  font-size: var(--default-input-font-size);
  font-family: var(--default-input-font);
}

*:-ms-input-placeholder {
  line-height: var(--dim-input-height);
  color: var(--col-placeholder);
  font-size: var(--default-input-font-size);
  font-family: var(--default-input-font);
}

textarea::-webkit-input-placeholder {
  padding-top: 0px;
  line-height: 1.5;
}

textarea::-moz-placeholder {
  padding-top: 0px;
  line-height: 1.5;
}

textarea:-ms-input-placeholder {
  padding-top: 0px;
  line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--col-text);
}

div.field.missing *::-webkit-input-placeholder {
  color: var(--col-missing) !important;
}

div.field.missing *::-moz-placeholder {
  color: var(--col-missing) !important;
}

div.field.missing *:-ms-input-placeholder {
  color: var(--col-missing) !important;
}

div.field.warning *::-webkit-input-placeholder {
  color: var(--col-warning) !important;
}

div.field.warning *::-moz-placeholder {
  color: var(--col-warning) !important;
}

div.field.warning *:-ms-input-placeholder {
  color: var(--col-warning) !important;
}

form {
  --c-text-color: black;
  --col-border: #959595;
}
form.form-done {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
form legend {
  font-family: var(--body-font);
  color: black;
  margin-bottom: 0;
  padding-left: 0.5em;
}
@media (max-width: 768.98px) {
  form {
    font-size: 16px;
  }
}

.radio-wrapper {
  font-size: 1em;
  display: flex;
  font-weight: normal;
  line-height: 60px;
  margin-bottom: 15px;
}
.radio-wrapper .control {
  display: block;
  position: relative;
  padding-left: 3%;
  margin-bottom: 0;
  margin-left: 3%;
  cursor: pointer;
  font-size: 1em;
}
@media (max-width: 575.98px) {
  .radio-wrapper .control {
    margin-left: 10px;
  }
}
.radio-wrapper .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .radio-wrapper .control input {
    width: 80vw;
  }
}
.radio-wrapper .control__indicator {
  position: absolute;
  left: 0;
  top: 20px;
  height: 20px;
  width: 20px;
  background: transparent;
  border: 1px solid black;
  border-color: transparent;
}
.radio-wrapper .control--radio .control__indicator {
  border-radius: 50%;
}
.radio-wrapper .control input:checked ~ .control__indicator {
  border-color: black;
}
.radio-wrapper .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.radio-wrapper .control .control__indicator:after {
  content: "";
  position: absolute;
}
.radio-wrapper .control .control__indicator:after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 10px;
  width: 10px;
  border-radius: 50%;
}
.radio-wrapper .control input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.radio-wrapper .control__indicator {
  border-radius: 0 !important;
  width: 2.5em;
  height: 2.5em;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
.radio-wrapper .control {
  display: flex;
  padding-left: 0;
  width: 3em;
}
.radio-wrapper .control input + span {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.radio-wrapper .control input:checked ~ .control__indicator:after {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.inline-response {
  color: black;
  font-size: 1em;
  line-height: 1.5em;
  text-align: center;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.3 ease-in-out;
  flex-direction: column;
  top: 0;
  left: 0;
  z-index: 1998;
}
.inline-response h1 {
  font-size: 1.5em;
}
.inline-response h3 {
  font-size: 1.25em;
}
.inline-response .close {
  width: 20px;
  height: 20px;
  top: 17px;
  right: 10px;
}
.inline-response .close span {
  width: 20px;
  height: 2px;
  background: white;
  display: block;
  position: absolute;
}
.inline-response .close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.inline-response .close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.inline-response .popup-wrapper {
  z-index: 2000;
  border: 10px solid white;
}
@media (max-width: 575.98px) {
  .inline-response .popup-wrapper {
    width: 100%;
  }
}
.inline-response img {
  width: 350px;
}
@media (max-width: 575.98px) {
  .inline-response img {
    width: 100%;
  }
}
.inline-response.reveal-response {
  visibility: visible;
  opacity: 1;
  display: flex;
}

.consent {
  font-weight: 300;
  font-family: var(--body-font);
  font-size: 1em;
  color: black;
}

.consent-wrapper {
  margin-top: 1em;
  max-width: 500px;
  height: 2.2em;
}

.g-recaptcha {
  position: relative;
}
.g-recaptcha:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  width: 100%;
  height: 99%;
  border-radius: 3px;
  border: 1px solid transparent;
}
.g-recaptcha.error:after {
  border-color: red;
}

.error {
  border-color: red !important;
}
.error::placeholder {
  color: red !important;
}

legend {
  font-size: 1em;
  line-height: 55px;
}
@media (max-width: 575.98px) {
  legend {
    font-size: 0.8em;
  }
}

input:not([type=checkbox]):not([type=radio]),
textarea {
  font-family: var(--sp-font);
  text-transform: inherit;
  background: transparent;
  letter-spacing: normal;
  appearance: none;
  border: none;
  border-bottom: 1px solid #959595;
  border-radius: 0;
  display: block;
  font-weight: normal;
  width: 100%;
  font-size: 1em;
  text-transform: initial;
  text-align: left;
  line-height: 2em;
  height: 2em;
  padding: 0 0.75em;
  margin-bottom: 1em;
  text-transform: inherit;
  color: var(--c-text-color);
}
@media (max-width: 575.98px) {
  input:not([type=checkbox]):not([type=radio]),
  textarea {
    line-height: 2.75em;
    height: 2.75em;
    margin-bottom: 0.5em;
  }
}
input:not([type=checkbox]):not([type=radio])::placeholder,
textarea::placeholder {
  color: var(--c-text-color);
  text-transform: uppercase;
  opacity: 1;
  font-weight: 300;
}

textarea {
  border: 1px solid black;
}

.radio-custom-label {
  display: inline-flex;
  align-items: center;
  margin: 5px;
  cursor: pointer;
  position: relative;
}

.radio-custom {
  opacity: 0;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}
.radio-custom + .radio-custom-label:before {
  content: "";
  background: #fff;
  border: 1px solid #707070;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
}
.radio-custom:checked + .radio-custom-label:before {
  background: var(--primary-color);
  box-shadow: inset 0px 0px 0px 2px #fff;
}
.radio-custom:focus + .radio-custom-label {
  outline: none;
}

textarea {
  padding-top: 10px;
  height: auto;
  font-weight: 300;
}

.checkbox-wrapper {
  font-size: 1.5em;
}
@media (max-width: 768.98px) {
  .checkbox-wrapper {
    font-size: 1em;
  }
}
.checkbox-wrapper.error label:before {
  border: 2px solid red !important;
  background: white;
}
.checkbox-wrapper.error label {
  color: red;
}
.checkbox-wrapper input {
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #221f1f;
  height: 20px;
  width: 20px;
  display: block;
  float: left;
  margin-right: 20px;
}
.checkbox-wrapper label {
  display: inline;
  padding: 0;
  font-size: 0.75em;
  line-height: 1.25rem;
  letter-spacing: 0;
}
@media (max-width: 575.98px) {
  .checkbox-wrapper label {
    font-size: 0.875em;
  }
}
.checkbox-wrapper [type=checkbox]:not(:checked), .checkbox-wrapper [type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label, .checkbox-wrapper [type=checkbox]:checked + label {
  position: relative;
  padding-left: 50px;
  display: block;
  text-transform: inherit;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:before, .checkbox-wrapper [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  background-color: none;
  border: 1px solid black;
  height: 20px;
  width: 20px;
  display: block;
  float: left;
  margin-right: 20px;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after, .checkbox-wrapper [type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
  background: url(/img/asset/checkmark.svg) no-repeat;
  background-position: center center;
  background-size: 70%;
  width: 1.5em;
  height: 1.5em;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.checkbox-wrapper [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-wrapper [type=checkbox]:disabled:not(:checked) + label:before {
  box-shadow: none;
  border-color: black;
  background-color: #ddd;
}
.checkbox-wrapper [type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.checkbox-wrapper [type=checkbox]:disabled:checked + label:after {
  color: #999;
}
.checkbox-wrapper [type=checkbox]:disabled + label {
  color: #aaa;
}
.checkbox-wrapper [type=checkbox]:checked:focus + label:before, .checkbox-wrapper [type=checkbox]:not(:checked):focus + label:before {
  border: 1px solid black;
}
.checkbox-wrapper label:hover:before {
  border: 1px solid black !important;
}

.checkbox-wrapper.error label:before {
  border: 1px solid red !important;
}
.checkbox-wrapper.error label {
  color: red;
}
.checkbox-wrapper input {
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid black;
  height: 20px;
  width: 20px;
  display: block;
  float: left;
  margin-right: 20px;
}
.checkbox-wrapper label {
  display: inline;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
}
@media (max-width: 575.98px) {
  .checkbox-wrapper label {
    font-size: 0.875em;
  }
}
.checkbox-wrapper [type=checkbox]:not(:checked), .checkbox-wrapper [type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label, .checkbox-wrapper [type=checkbox]:checked + label {
  position: relative;
  padding-left: 30px;
  display: block;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:before, .checkbox-wrapper [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  background-color: none;
  border: 1px solid black !important;
  height: 1.5em;
  width: 1.5em;
  display: block;
  float: left;
  margin-right: 1em;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after, .checkbox-wrapper [type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
  background: url(/img/asset/checkmark.svg) no-repeat;
  background-position: center center;
  background-size: 70%;
  width: 1.5em;
  height: 1.5em;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.checkbox-wrapper [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-wrapper [type=checkbox]:disabled:not(:checked) + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.checkbox-wrapper [type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.checkbox-wrapper [type=checkbox]:disabled:checked + label:after {
  color: #999;
}
.checkbox-wrapper [type=checkbox]:disabled + label {
  color: #aaa;
}
.checkbox-wrapper [type=checkbox]:checked:focus + label:before, .checkbox-wrapper [type=checkbox]:not(:checked):focus + label:before {
  border: 1px solid rgba(17, 34, 51, 0.2666666667);
}
.checkbox-wrapper label:hover:before {
  border: 1px solid #white !important;
}

.broker-wrapper {
  opacity: 0;
  height: 0;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3 ease-in-out;
}
.broker-wrapper.show {
  max-height: 1000px;
  height: auto;
  opacity: 1;
  transition: all 0.3 ease-in-out;
}

div.checkbox {
  width: auto;
}

form {
  width: 100%;
}

.form-row {
  width: 100%;
}
.form-row label {
  font-size: 0px;
  position: absolute;
  margin-left: -1000px;
}
.form-row .checkbox label {
  font-size: inherit;
  position: relative;
  margin-left: unset;
}

@media (max-width: 768.98px) {
  .form-row {
    flex-wrap: wrap;
  }
}

input::placeholder {
  overflow: visible;
}

div.field.warning {
  position: relative;
  --col-warning: red;
}

textarea:focus, input:focus {
  outline: none;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  height: 2em;
  display: flex;
  align-items: center;
  color: black;
  font-size: 1em;
  font-family: var(--sp-font);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 20px;
  height: 26px;
  right: 10px;
  display: block;
}

.select2-results__option {
  font-family: var(--sp-font);
}

.select2-results__options {
  background: var(--beige);
  border-color: black;
}

.select2-dropdown {
  border: 1px solid black;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--green);
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: var(--green-l);
}

button[type=submit], button[type=button] {
  background: transparent;
  text-transform: capitalize;
  color: black;
  cursor: pointer;
  font-weight: normal;
  font-family: var(--body-font);
  letter-spacing: normal;
  font-size: 1em;
  padding: 0 2em;
  height: 3em;
  line-height: 2em;
  display: block;
  margin: 2em auto;
  transition: background 0.3s ease-in-out;
  outline: none !important;
  background: var(--green);
  border: 1px solid var(--accent);
  color: white;
}
button[type=submit]:hover, button[type=button]:hover {
  color: var(--accent);
  background: white;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
}

/*# sourceMappingURL=main.css.map */
