:root {
  --white: white;
  --black: #000;
  --signature-blue: #377dff;
  --secondary: #01265b;
  --color-4: #e4f5fd;
  --primary: #be1623;
  --color-3: #4998d1;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

p {
  margin-bottom: 0;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2.5rem;
}

img {
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .313rem;
  font-weight: 700;
  display: block;
}

blockquote {
  border-left: .313rem solid var(--signature-blue);
  color: var(--black);
  margin-bottom: 0;
  padding: .625rem 1.25rem;
  font-size: 1.125rem;
  line-height: 1.375rem;
}

.navbar {
  background-color: var(--white);
  height: 6rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 6rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar-logo {
  width: auto;
  height: 5rem;
}

.navbar-menu {
  background-color: var(--white);
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.navbar-link {
  padding: 1.25rem;
}

.navbar-link.w--current {
  color: var(--black);
}

.button {
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
  border-radius: 3rem;
  padding: 1rem 2rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.navbar-mobile-menu {
  padding: 0;
  font-size: 2rem;
}

.navbar-button-wrapper {
  margin-left: 1.25rem;
}

.identifier-section {
  padding: 6rem 1.25rem;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.two-column {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.style-guide-section {
  padding: 6rem 1.25rem;
}

.style-guide-section.is-hidden {
  display: none;
}

.one-column {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.style-guide-content-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.style-guide-label {
  color: #fff;
  background-color: #377dff;
  align-items: center;
  margin-bottom: 1rem;
  padding: .25rem 1rem;
  display: inline-block;
}

.rich-text-block h1 {
  margin-bottom: 1rem;
}

.rich-text-block h2, .rich-text-block h3, .rich-text-block h4, .rich-text-block h5, .rich-text-block h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.rich-text-block p, .rich-text-block blockquote, .rich-text-block ol, .rich-text-block ul {
  margin-bottom: 1rem;
}

.secondary-button {
  background-color: var(--signature-blue);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  line-height: 1;
  text-decoration: none;
}

.form-block {
  margin-bottom: 0;
}

.text-field {
  margin-bottom: .625rem;
}

.faq-block {
  width: 100%;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background-color: var(--secondary);
  color: #fff;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.faq-cross {
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-left: 1.5rem;
  display: flex;
  position: relative;
}

.faq-vertical-cross {
  background-color: #fff;
  width: .125rem;
  height: 1.25rem;
  position: absolute;
}

.faq-horizontal-cross {
  background-color: #fff;
  width: 1.25rem;
  height: .125rem;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-padding {
  margin-top: 0;
  padding: 1rem;
}

.list-item {
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.list-check-wrap {
  color: #fff;
  background-color: #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
  margin-right: .5rem;
  font-weight: 600;
  display: flex;
}

.list-check {
  width: 1rem;
}

.list-item-last {
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.three-column {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.four-column {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.spacer {
  width: 100%;
  height: 2rem;
}

.small-spacer {
  width: 100%;
  height: 1rem;
}

.medium-spacer {
  width: 100%;
  height: 2rem;
}

.large-spacer {
  width: 100%;
  height: 3rem;
}

.extra-large-spacer {
  width: 100%;
  height: 4rem;
}

.size-small-text {
  font-size: .875rem;
}

.size-medium-text {
  font-size: 1.125rem;
}

.size-large-text {
  font-size: 1.25rem;
}

.thin-text {
  font-weight: 100;
}

.extra-light-text {
  font-weight: 200;
}

.light-text {
  font-weight: 300;
}

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

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

.semi-bold-text {
  font-weight: 600;
}

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

.extra-bold-text {
  font-weight: 800;
}

.black-text {
  font-weight: 900;
}

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

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

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

.italic-text {
  font-style: italic;
}

.strikethrough-text {
  text-decoration: line-through;
}

.underline-text {
  text-decoration: underline;
}

.overline-text {
  text-decoration: overline;
}

.all-caps-text {
  text-transform: uppercase;
}

.start-case-text {
  text-transform: capitalize;
}

.lowercase-text {
  text-transform: lowercase;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 16.25rem;
  margin-bottom: 1rem;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.error-message {
  margin-top: .625rem;
  padding: .625rem;
}

.success-message {
  padding: 1.25rem;
}

.home-hero-section {
  color: var(--white);
  background-image: url('../images/background.webp');
  background-position: 50%;
  background-size: cover;
  padding: 6rem 1.25rem;
}

.home-about-section {
  background-color: var(--color-4);
  padding: 6rem 1.25rem;
}

.home-reviews-section {
  background-color: var(--secondary);
  color: var(--white);
  padding: 6rem 1.25rem;
}

.home-reviews-content-wrapper {
  text-align: center;
  flex-flow: column;
  display: flex;
}

.home-services-section {
  background-color: var(--color-4);
  padding: 6rem 1.25rem;
}

.home-reviews-image-wrapper {
  width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.home-reviews-stars-wrapper {
  width: 8rem;
  margin-left: auto;
  margin-right: auto;
}

.home-services-content-wrapper {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1rem;
}

.home-services-image {
  border-radius: 1rem;
}

.home-events-section {
  background-color: var(--color-4);
  padding: 6rem 1.25rem;
}

.home-events-content-wrapper {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1rem;
}

.home-events-image {
  border-radius: 1rem;
}

.home-faq-section {
  padding: 6rem 1.25rem;
}

.home-cta-section {
  color: var(--white);
  background-image: url('../images/background.webp');
  background-position: 50%;
  background-size: cover;
  padding: 6rem 1.25rem;
}

.home-cta-content-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-contact-section {
  background-color: var(--color-4);
  padding: 6rem 1.25rem;
}

.home-contact-image {
  border-radius: 1rem;
}

.footer {
  background-color: var(--secondary);
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.25rem;
  display: flex;
}

.footer-content-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-logo {
  width: auto;
  height: 5rem;
}

@media screen and (max-width: 991px) {
  .navbar-menu {
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
  }

  .navbar-mobile-menu.w--open {
    background-color: var(--white);
    color: var(--black);
  }

  .navbar-link-wrapper {
    text-align: center;
    flex-flow: column;
    display: flex;
  }

  .navbar-button-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 1.25rem;
    margin-left: 0;
    display: flex;
  }

  .identifier-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .two-column {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .style-guide-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .three-column {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .four-column {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .spacer {
    height: 1.5rem;
  }

  .home-hero-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .home-hero-content-wrapper {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .home-about-section, .home-reviews-section, .home-services-section, .home-events-section, .home-faq-section, .home-cta-section, .home-contact-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3, h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .navbar-home-link {
    padding-left: 0;
  }

  .identifier-section, .style-guide-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer {
    height: 1.25rem;
  }

  .home-hero-section, .home-about-section, .home-reviews-section, .home-services-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .home-reviews-image-wrapper {
    width: auto;
  }

  .home-events-section, .home-faq-section, .home-cta-section, .home-contact-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 479px) {
  .identifier-section, .style-guide-section, .home-hero-section, .home-about-section, .home-reviews-section, .home-services-section, .home-events-section, .home-faq-section, .home-cta-section, .home-contact-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

#w-node-_2269fa0a-f599-ba05-6f48-142d2ee9ff8b-c931735e, #w-node-_893087e4-7bea-7982-1b55-973278eb88d1-c931735e {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_2269fa0a-f599-ba05-6f48-142d2ee9ff8b-c931735e, #w-node-_893087e4-7bea-7982-1b55-973278eb88d1-c931735e {
    align-self: auto;
  }
}


