:root {
  --grey: #717587;
  --black: #2c2c2c;
  --dark-grey: #444a66;
  --dark-bg: #1e2833;
  --pink: #f1c1c1;
  --primary: #d52e2f;
  --white: white;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--grey);
  color: #fff;
  font-family: Comfortaa, sans-serif;
  font-size: 18px;
  line-height: 1.9;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Playfair Display, sans-serif;
  font-size: 69px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Playfair Display, sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.5;
}

h3 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Playfair Display, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 25px;
}

a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

img {
  border-radius: 4px;
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  display: block;
}

strong {
  color: #ffcbcb;
  font-weight: 700;
}

.hero_gradient {
  z-index: -1;
  mix-blend-mode: multiply;
  background-color: #a5a5a5;
  background-image: linear-gradient(#6b6b6b, #cfcfcf);
  position: absolute;
  inset: 0%;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section.hero {
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.section.metrics {
  padding-top: 0;
  padding-bottom: 0;
}

.section.cta_section {
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  min-height: 750px;
  padding-left: 75px;
  padding-right: 75px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.black_bg {
  background-color: var(--black);
  color: #fff;
}

.section.relative {
  color: #303030;
  background-color: #131313;
}

.section.center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section.gradient-to-blue {
  background-image: linear-gradient(to top, var(--dark-grey), #fff0);
}

.section.blue {
  background-color: var(--dark-grey);
}

.section.white-bg {
  color: var(--dark-bg);
  background-color: #f0e0e0;
  padding-top: 0;
  padding-bottom: 0;
}

.section.gallery {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section.hero-banner {
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.container {
  flex: 1;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.container.vertical-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.container.small {
  max-width: 650px;
}

.container.small.centered {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container.footer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.button {
  background-color: var(--pink);
  color: var(--dark-grey);
  text-align: center;
  text-transform: uppercase;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: #f8f2e8;
}

.paragraph_large {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.9;
}

.sidebar_grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1.66fr .33fr;
  align-items: start;
  margin-bottom: 50px;
  position: relative;
}

.sticky {
  position: sticky;
  top: 50px;
}

.text_small {
  color: var(--black);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.text_small.italicize {
  font-style: italic;
}

.color_grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.margin_bottom {
  margin-bottom: 15px;
}

.sub_head {
  margin-bottom: 25px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}

.grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.color_pallet {
  background-color: #00adef;
  border-radius: 10px;
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
  box-shadow: 0 0 15px -8px #00000080;
}

.color_pallet.dark {
  background-color: #2c2c2c;
}

.color_pallet.secondary {
  background-color: #1ba69c;
}

.color_pallet.light {
  background-color: #e1ffff;
}

.rich_text {
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.text_tiny {
  margin-top: 20px;
  font-size: 12px;
}

.navbar-brand-three {
  z-index: 5;
}

.dropdown_toggle {
  letter-spacing: .5px;
  padding: 5px 30px 5px 10px;
  font-size: 15px;
  line-height: 20px;
}

.dropdown_toggle:hover {
  color: var(--primary);
}

.dropdown_toggle:focus-visible, .dropdown_toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav_container {
  z-index: 5;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.navbar {
  background-color: var(--grey);
}

.image {
  object-fit: cover;
  width: 500px;
  height: 500px;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: relative;
}

.nav_list {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  background-color: #fff;
}

.dropdown_link {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  transition: all .15s;
}

.dropdown_link:hover {
  color: var(--primary);
}

.dropdown_link:focus-visible, .dropdown_link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.no-margins {
  margin: 0;
}

.no-margins.hidden {
  display: none;
}

.nav_link {
  color: #fff;
  letter-spacing: .5px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: all .15s;
  display: inline-block;
}

.nav_link:hover {
  color: var(--primary);
}

.nav_link:focus-visible, .nav_link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.banner_img {
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.metrics-grid {
  grid-column-gap: 0px;
  grid-row-gap: 52px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.display_heading {
  font-size: 30px;
  font-weight: 400;
}

.metrics_block {
  background-color: var(--pink);
  color: var(--dark-grey);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
}

.metrics_block._2 {
  background-color: #ecb1b1;
}

.metrics_block._3 {
  background-color: #e49b9b;
}

.accent {
  background-image: linear-gradient(155deg, #f38158, var(--primary) 50%, #ff0202);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.accent.light {
  background-image: linear-gradient(155deg, #ff0002, var(--primary) 50%, #f3c437);
}

.checkbox_wrap {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.field_grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.full_button {
  flex-direction: column;
  margin-bottom: 15px;
  display: flex;
}

.form {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  border-radius: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 24px;
  display: grid;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #ff1f00;
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.accent-2 {
  text-shadow: none;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(148deg, #00d374, #35c7ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 900;
}

.accent-2.w--current {
  text-shadow: none;
}

.success {
  color: #131314;
  background-color: #f2f2f2;
  padding: 20px;
}

.form_block {
  max-width: 450px;
  margin: 15px;
  box-shadow: 0 0 #000;
}

.checkbox_icon {
  cursor: pointer;
  border-style: solid;
  border-color: #737680;
  border-radius: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: 15px;
  transition: border-color .2s, background-color .2s;
}

.checkbox_icon.w--redirected-checked {
  background-color: #fff;
  background-image: url('../images/Check.svg');
  background-size: cover;
  border-style: solid;
  border-color: #2c2c2c;
  border-radius: 0;
  width: 17px;
  height: 17px;
  margin-top: 0;
  margin-left: 0;
}

.checkbox_icon.w--redirected-focus {
  box-shadow: none;
  border-style: solid;
  border-color: #737680;
  border-radius: 0;
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem 0 0;
}

.input_field {
  color: #2c2c2c80;
  text-align: left;
  background-color: #f2f2f2;
  margin-bottom: 0;
  padding: 5px 15px;
  transition: all .25s;
}

.input_field:focus {
  color: #2c2c2c;
  background-color: #fff;
}

.input_field::placeholder {
  color: #2c2c2c80;
}

.input_field.area {
  min-height: 8rem;
  padding-top: 10px;
}

.social_link {
  opacity: .75;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  transition: all .2s;
  display: flex;
}

.social_link:hover {
  opacity: 1;
}

.footer_head {
  color: #fff;
  margin-bottom: 22px;
  font-size: 17px;
}

.footer-wrapper {
  align-items: center;
  display: flex;
}

.footer_link {
  color: #ffffffbf;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.footer_link:hover, .footer_link.w--current {
  color: #fff;
}

.footer_grid {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer_cta {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  padding-right: 0;
  display: flex;
}

.footer {
  background-color: var(--dark-grey);
  padding-top: 75px;
  padding-bottom: 40px;
}

.bottom_bar {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.padded {
  padding: 25px;
}

.image_wrapper {
  position: relative;
}

.red_block {
  z-index: -1;
  background-color: var(--primary);
  width: 500px;
  height: 500px;
  position: absolute;
  top: -25px;
  left: auto;
  right: -25px;
}

.red_block.left {
  left: -25px;
  right: auto;
}

.red_block.testimonials {
  width: 800px;
  height: 250px;
  right: 39px;
}

.dots {
  z-index: -1;
  position: absolute;
  inset: auto auto -42px -42px;
}

.dots.right {
  left: auto;
  right: -42px;
}

.dots.testimonial_dots {
  left: 57px;
}

.head_wrapper {
  text-align: center;
  max-width: 450px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

.how_grid {
  grid-column-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 50px;
}

.how_item_wrapper {
  position: relative;
}

.card {
  background-color: var(--dark-grey);
  background-image: linear-gradient(332deg, var(--dark-grey), #5f647c);
  color: #fff;
  text-align: left;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 35px;
  font-size: 16px;
  display: flex;
}

.logo {
  width: 125px;
}

.bg_darken {
  z-index: -1;
  mix-blend-mode: multiply;
  background-color: #a5a5a5;
  position: absolute;
  inset: 0%;
}

.cta_heading {
  max-width: 45vw;
  font-size: 4vw;
}

.cta_content {
  max-width: 45vw;
}

.testimonial_card {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
  position: relative;
}

.right_arrow {
  background-color: var(--pink);
  color: var(--grey);
  border-radius: 100px;
  width: 45px;
  height: 45px;
  font-size: 14px;
  left: auto;
  right: -22px;
}

.author_img {
  border-radius: 100px;
  align-self: center;
  width: 50px;
  height: 50px;
  margin-right: 14px;
  box-shadow: 1px 1px 3px #00000024;
}

.testimonial_img {
  object-fit: cover;
  align-self: stretch;
}

.slide_nav {
  display: none;
}

.mask {
  height: 100%;
}

.img_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide {
  height: 100%;
}

.slider {
  background-color: #ddd0;
  align-items: center;
  max-width: 85%;
  height: 100%;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.content_block {
  color: var(--black);
  background-color: #fff;
  padding: 30px;
}

.left_arrow {
  background-color: var(--pink);
  color: var(--grey);
  border-radius: 100px;
  width: 45px;
  height: 45px;
  font-size: 14px;
  left: -21px;
}

.slide_wrapper {
  margin-top: 50px;
  position: relative;
}

.faq_wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 23px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 15px;
  display: grid;
}

.faq_question_wrap {
  background-color: #fff;
  overflow: hidden;
}

.faq_question_bar {
  background-color: var(--primary);
  color: #fff;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.faq_question {
  text-align: left;
  margin-bottom: 0;
  font-size: 18px;
}

.faq_icon {
  opacity: 1;
  filter: brightness(200%);
  width: 17px;
}

.faq_content {
  margin-top: -2px;
}

.faq_paragraph {
  color: #464646;
  text-align: left;
  margin-bottom: 0;
  padding: 20px;
}

.stats_grid {
  margin-bottom: 25px;
}

.stat_wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.list_grid {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 450px;
  margin-bottom: 25px;
  display: grid;
}

.list_head {
  text-align: left;
  font-size: 16px;
}

.white_wrap {
  color: var(--black);
  background-color: #fff;
  padding: 30px;
  box-shadow: -1px 1px 6px #0000000f;
}

.relative {
  position: relative;
}

.white_bg {
  z-index: -2;
  background-color: #fff;
  position: absolute;
  inset: 0%;
}

.author_flex {
  display: flex;
}

.flex_list_item {
  text-align: left;
  display: flex;
  position: relative;
}

.check-mark {
  filter: hue-rotate(180deg);
  width: 14px;
  height: 14px;
  margin-top: 4px;
  margin-right: 10px;
}

.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: 260px;
  display: flex;
}

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

.container-2 {
  width: 100%;
  max-width: 1100px;
  padding-left: 15px;
  padding-right: 15px;
}

.container-2.hero {
  max-width: 1440px;
}

.section-2 {
  flex: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-2.hero {
  color: #fff;
  text-align: center;
  justify-content: flex-end;
  align-items: center;
  min-height: 650px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.subhead {
  max-width: 750px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.8;
}

.background-image {
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.left-arrow, .right-arrow {
  opacity: 0;
  display: none;
}

.tag {
  color: var(--pink);
  letter-spacing: 2px;
  text-transform: capitalize;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  transition: all .2s;
  display: inline-block;
}

.tag.gradient {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(141deg, #00adef, #17a889 50%, #6bc8c0);
  background-clip: border-box;
  border-radius: 4px;
  padding-left: 15px;
  padding-right: 15px;
}

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

.tag.medium.block {
  display: block;
}

.background-multiply {
  z-index: -1;
  mix-blend-mode: multiply;
  background-image: linear-gradient(#707070, #707070);
  position: absolute;
  inset: 0%;
}

.heading-wrapper {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.heading-wrapper.hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 850px;
  margin-bottom: 35px;
  display: flex;
}

.heading-wrapper.centered {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.slide-nav {
  display: none;
}

.background-content-wrapper {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.button-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  background-image: linear-gradient(141deg, #00adef, #17a889 50%, #6bc8c0);
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: all .2s;
  display: inline-block;
}

.button-2:hover {
  color: #fff;
  transform: scale(1.02);
}

.button-2:active {
  background-color: #43464d;
}

.nav-text {
  font-size: 18px;
}

.nav-bar {
  background-color: var(--grey);
}

.large {
  font-size: 45px;
  font-weight: 700;
}

.paragraph-subhead {
  font-size: 19px;
}

.list-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-columns: 1fr;
  max-width: 550px;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.list-grid.locations {
  grid-template-columns: 1fr 1fr 1fr;
}

.list-grid._1-column {
  text-align: left;
  grid-template-columns: 1fr;
}

.list-grid._1-column.no_margins {
  margin-bottom: 0;
}

.list-item-grid {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 25px 1fr;
  align-items: center;
}

.bullet-point {
  background-color: var(--pink);
  border-radius: 100%;
  width: 15px;
  height: 15px;
}

.margin-bottom {
  margin-bottom: 35px;
}

.large-side-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1.15fr .85fr;
}

.large-side-grid.reverse {
  grid-template-columns: .85fr 1.15fr;
}

.grid-image {
  box-shadow: 32px 32px 0 0 var(--pink);
  object-fit: cover;
  width: 100%;
  height: 450px;
}

.grid-image.left-border {
  box-shadow: -34px 29px 0 0 var(--pink);
}

.link {
  color: #fff;
  font-weight: 700;
}

.testimonials-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.testimonials-grid.reverse {
  grid-template-columns: .85fr 1.15fr;
}

.icon-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center;
}

.logo-icon {
  width: 75%;
}

.footer-wrap {
  margin-bottom: 0;
}

.gallery-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-self: stretch;
}

.gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.white {
  color: #fff;
  font-weight: 800;
}

.fwa-banner {
  position: fixed;
  inset: auto 15px 15px auto;
}

@media screen and (max-width: 991px) {
  .sidebar_grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-wrapper {
    justify-content: space-between;
  }

  .nav_list {
    display: none;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .nav_link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .footer-column {
    padding-right: 20px;
  }

  .bottom_bar {
    flex-direction: column;
  }

  .padded {
    text-align: center;
  }

  .image_wrapper {
    max-width: 75%;
  }

  .how_grid {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 100px;
  }

  .right_arrow {
    bottom: -258px;
  }

  .left_arrow {
    bottom: -260px;
  }

  .slide_wrapper {
    margin-left: 15px;
    margin-right: 15px;
  }

  .faq_wrapper {
    margin-bottom: 30px;
  }

  .container-2 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .section-2 {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .section-2.hero {
    min-height: 600px;
  }

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

  .large-side-grid, .large-side-grid.reverse {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .icon-grid {
    grid-column-gap: 0px;
  }

  .pro-home {
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .sidebar_grid {
    grid-template-columns: 1fr;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .dropdown_toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .image {
    width: 400px;
    height: 400px;
  }

  .nav_list {
    flex-direction: column;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav_link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .metrics-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .display_heading {
    font-size: 40px;
    line-height: 60px;
  }

  .footer_grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .footer-column {
    padding-right: 0;
  }

  .bottom_bar {
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .red_block {
    width: 400px;
    height: 400px;
  }

  .how_grid {
    grid-template-columns: 1fr;
  }

  .bg_darken {
    background-color: #696969;
  }

  .cta_heading {
    max-width: none;
    font-size: 7vw;
  }

  .cta_content {
    text-align: center;
    flex: 1;
    max-width: none;
  }

  .testimonial_card {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .right_arrow {
    bottom: -22px;
    left: auto;
    right: -20px;
  }

  .left_arrow {
    bottom: -22px;
  }

  .slide_wrapper, .container-2 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 53px;
  }

  h2 {
    font-size: 22px;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  .section.cta_section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section.hero-banner {
    min-height: 400px;
  }

  .container, .container.small.centered {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button {
    padding: 18px 30px;
    font-size: 15px;
  }

  .button.nav_button {
    margin-left: 15px;
    padding: 10px 15px;
    font-size: 13px;
  }

  .paragraph_large {
    font-size: 16px;
  }

  .text_small {
    font-size: 13px;
  }

  .sub_head {
    font-size: 14px;
  }

  .nav_container {
    padding-left: 0;
    padding-right: 0;
  }

  .image {
    width: 250px;
    height: 250px;
  }

  .nav-wrapper {
    flex-direction: column;
  }

  .metrics-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .display_heading {
    font-size: 30px;
  }

  .metrics_block {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .field_grid {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 0;
  }

  .form_block {
    margin: 0;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer_grid {
    grid-template-columns: 1fr;
  }

  .bottom_bar {
    text-align: center;
    flex-direction: column;
  }

  .image_wrapper {
    max-width: 90%;
  }

  .red_block {
    width: 250px;
    height: 250px;
  }

  .card {
    padding: 25px;
  }

  .logo {
    margin-bottom: 3px;
  }

  .logo.hidden-on-mobile {
    display: none;
  }

  .testimonial_card {
    box-shadow: none;
  }

  .right_arrow {
    width: 35px;
    height: 35px;
  }

  .author_img {
    margin-bottom: 15px;
  }

  .slider {
    max-width: 95%;
    padding-left: 0;
    padding-right: 0;
  }

  .left_arrow {
    width: 35px;
    height: 35px;
  }

  .slide_wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .list_head {
    font-size: 15px;
  }

  .container-2 {
    max-width: none;
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-2.hero {
    padding-left: 0;
    padding-right: 0;
  }

  .subhead {
    font-size: 20px;
    line-height: 1.4;
  }

  .tag {
    font-size: 14px;
  }

  .nav-text {
    font-size: 16px;
  }

  .list-grid {
    grid-template-columns: 1fr;
  }

  .list-grid.locations {
    grid-template-columns: 1fr 1fr;
  }

  .grid-image {
    box-shadow: 18px 18px 0 0 var(--pink);
    height: 350px;
  }

  .grid-image.left-border {
    box-shadow: -19px 16px 0 0 var(--pink);
  }

  .icon-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

#w-node-_454bf14e-98ba-49db-2203-27286ced39f8-46d15948, #w-node-a87cb45d-999c-dfd3-4648-5abbd696cf92-46d15948, #w-node-_3b68bf39-783d-8a00-9ca0-5a3a70bbcecd-46d15948, #w-node-_1bbfed7e-e58a-bd86-d6c9-ebe2331131d2-46d15948, #w-node-_1bbfed7e-e58a-bd86-d6c9-ebe2331131d3-46d15948, #w-node-_1bbfed7e-e58a-bd86-d6c9-ebe2331131d4-46d15948, #w-node-_5dd0bcd4-b752-4b6e-f28f-02a7c6300c18-46d15948, #w-node-_5dd0bcd4-b752-4b6e-f28f-02a7c6300c19-46d15948, #w-node-_5dd0bcd4-b752-4b6e-f28f-02a7c6300c1a-46d15948, #w-node-d04b4f32-452e-17a0-8387-cf9494bbedfe-46d15948, #w-node-d04b4f32-452e-17a0-8387-cf9494bbedff-46d15948, #w-node-d04b4f32-452e-17a0-8387-cf9494bbee00-46d15948, #w-node-e9d88cd8-67f9-f389-e975-cc9ca71a9466-46d15948, #w-node-e9d88cd8-67f9-f389-e975-cc9ca71a9467-46d15948, #w-node-e9d88cd8-67f9-f389-e975-cc9ca71a9468-46d15948, #w-node-fa517627-ca86-871c-16f7-8e438f18e874-46d15948 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8b66b6cc-dbfa-f5b8-4827-f289f1e03b21-46d15948, #w-node-fbda8945-ba22-8890-441c-33ac2a93e06c-46d15948 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-fbda8945-ba22-8890-441c-33ac2a93e05f-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17452-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17453-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17454-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17457-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17458-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17459-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc1745c-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc1745d-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc1745e-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17461-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17462-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17463-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17466-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17467-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc17468-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc1746b-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc1746c-46d15948, #w-node-b5cf8c1d-7ee2-aa46-8553-33e63dc1746d-46d15948, #w-node-_71e16e29-bcc0-0ecb-6afe-0af1022a7c15-46d15948, #w-node-_71e16e29-bcc0-0ecb-6afe-0af1022a7c16-46d15948, #w-node-_71e16e29-bcc0-0ecb-6afe-0af1022a7c17-46d15948, #w-node-a9b41dab-dacc-4e42-c4de-b9655c33bd9e-46d15948, #w-node-a9b41dab-dacc-4e42-c4de-b9655c33bd9f-46d15948, #w-node-a9b41dab-dacc-4e42-c4de-b9655c33bda0-46d15948, #w-node-_225df6c9-a1cc-87d7-48cb-dafa483cc3db-46d15948, #w-node-_225df6c9-a1cc-87d7-48cb-dafa483cc3dc-46d15948, #w-node-_225df6c9-a1cc-87d7-48cb-dafa483cc3dd-46d15948, #w-node-f7231391-aa03-ce25-ce34-992e1e5e2090-46d15948, #w-node-f7231391-aa03-ce25-ce34-992e1e5e2091-46d15948, #w-node-f7231391-aa03-ce25-ce34-992e1e5e2092-46d15948, #w-node-_8944af7e-a8d5-8648-43be-3de7f0bb112d-46d15948, #w-node-_8944af7e-a8d5-8648-43be-3de7f0bb112e-46d15948, #w-node-_8944af7e-a8d5-8648-43be-3de7f0bb112f-46d15948, #w-node-_57a455a1-5faf-34df-f394-637b1270968e-46d15948, #w-node-_57a455a1-5faf-34df-f394-637b1270968f-46d15948, #w-node-_57a455a1-5faf-34df-f394-637b12709690-46d15948, #w-node-_9c2f5e62-f44d-061b-01d4-e42c0ac409e2-46d15948, #w-node-_9c2f5e62-f44d-061b-01d4-e42c0ac409e3-46d15948, #w-node-_9c2f5e62-f44d-061b-01d4-e42c0ac409e4-46d15948, #w-node-_4c7bd0e9-7ece-0c35-c612-54891efe5aae-46d15948, #w-node-_4c7bd0e9-7ece-0c35-c612-54891efe5aaf-46d15948, #w-node-_4c7bd0e9-7ece-0c35-c612-54891efe5ab0-46d15948, #w-node-db022ef5-8763-ea95-d888-037b47690912-46d15948, #w-node-db022ef5-8763-ea95-d888-037b47690913-46d15948, #w-node-db022ef5-8763-ea95-d888-037b47690914-46d15948, #w-node-f70224ca-66b8-216c-ff86-f1ac7744c8d3-46d15948 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_51a8facd-c9c2-d80b-a162-d5b1f44eefa5-46d15948 {
  place-self: stretch stretch;
}

#w-node-e63b6ff0-fad0-224c-43ee-b5e7c6bac20d-46d15948, #w-node-_8c3ad9dd-e715-681e-7000-ff159c9cd755-46d15948, #w-node-_108408be-7575-fd26-ad17-c64848cbe1c3-46d15948, #w-node-_13ccefa8-022f-021b-af04-039966ef1c30-46d15948, #w-node-_928949c2-198c-0e55-0d13-3aec4a781a04-46d15948, #w-node-f4a29ad5-176a-6b38-3808-8245b8ad9e18-46d15948, #w-node-c94c4765-b0e2-7195-5523-8e669cd8cf45-46d15948, #w-node-_14900ba3-f2ed-0b6b-b6b2-b0406a62ae05-46d15948, #w-node-_2c765c3a-63b3-c32e-12fc-256642ac4b38-46d15948, #w-node-_3185a0c1-b9ee-2adf-9cce-b7fd81396048-46d15948, #w-node-_96384517-65f2-2df1-0c0e-89baeb3a4bcf-46d15948, #w-node-_58d2173c-6227-eace-f59a-5eca5c08d17a-46d15948, #w-node-e995c60c-2bfd-09fa-d7c3-3976dc32a8af-46d15948 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_8b66b6cc-dbfa-f5b8-4827-f289f1e03b21-46d15948, #w-node-_51a8facd-c9c2-d80b-a162-d5b1f44eefa5-46d15948 {
    order: -9999;
  }
}


