@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Fa brands 400";
  src: url('../fonts/fa-brands-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --midnight-blue: #032b40;
  --royal-blue: #006cff;
  --light-green: #30bf78;
  --dark-green: #269960;
  --white: white;
  --crimson: #c52134;
  --black: black;
  --gold: #ffd900;
}

.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;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--midnight-blue);
  text-align: center;
  flex-direction: column;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 25px;
  display: flex;
}

h1 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 75px;
  font-weight: 700;
  line-height: 85px;
}

h2 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}

h3 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

h4 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

h5 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
}

h6 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 22.5px;
}

p {
  margin-bottom: 25px;
}

a {
  color: var(--royal-blue);
  letter-spacing: 2.5px;
  text-indent: 2.5px;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #0051bf;
}

blockquote {
  border: 0 solid #000;
  margin-bottom: 0;
  padding: 25px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
}

.lottie-animation {
  z-index: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.home-hero-section {
  background-image: url('../images/main-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  overflow: hidden;
}

.hero-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 100%;
  max-width: 1400px;
}

.hero-image-wrapper {
  background-image: url('../images/hero-abstract-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 50%;
  padding-bottom: 50%;
  display: flex;
  position: relative;
}

.call-button {
  z-index: 25;
  background-color: var(--light-green);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  text-decoration: none;
  transition: background-color .2s, box-shadow .2s;
  display: flex;
  position: absolute;
  box-shadow: 0 0 50px -25px #000;
}

.call-button:hover {
  background-color: var(--dark-green);
  box-shadow: 0 0 #000;
}

.hero-image {
  border-radius: 100%;
  width: 50%;
  position: absolute;
  inset: auto;
}

.call-icon {
  color: var(--white);
  font-family: "Fa solid 900", sans-serif;
  font-size: 40px;
  line-height: 40px;
  text-decoration: none;
}

.hero-info-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 100px;
  display: flex;
}

.hero-title {
  color: var(--white);
  max-width: 675px;
}

.subtitle {
  color: var(--light-green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 25px;
}

.subtitle.collection-item {
  margin-bottom: 12.5px;
}

.subtitle.doctor-profile, .subtitle._404 {
  margin-bottom: 0;
}

.nav-link {
  color: var(--white);
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  align-items: center;
  padding: 12.5px 17.5px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity .2s;
  display: flex;
}

.nav-link:hover {
  opacity: .5;
  color: var(--white);
}

.nav-link.w--current {
  color: var(--white);
  padding-top: 12.5px;
  padding-bottom: 12.5px;
}

.brand {
  align-items: center;
  height: 50px;
  padding-left: 0;
  display: flex;
}

.navbar {
  background-color: #0000;
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 12.5px;
  padding-bottom: 12.5px;
  display: flex;
}

.nav-menu {
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-top: 37.5px;
  padding-bottom: 37.5px;
  display: flex;
}

.vertical-line {
  background-color: #ffffff1a;
  flex: 1;
  width: 1px;
  height: 100%;
  min-height: 100px;
}

.nav-menu-wrapper {
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

.nav-link-colored {
  background-color: var(--light-green);
  color: var(--white);
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  margin-left: 17.5px;
  padding: 12.5px 17.5px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color .2s;
  display: flex;
}

.nav-link-colored:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.footer-social-buttons-grid {
  grid-column-gap: 12.5px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.button-social {
  background-color: var(--light-green);
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 20px;
  line-height: 20px;
  transition: background-color .2s;
  display: flex;
}

.button-social:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.brand-logo {
  background-color: #0000;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 78px;
  height: 50px;
  margin-right: 0;
  padding-right: 0;
  display: flex;
}

.brand-text {
  color: var(--white);
  letter-spacing: 0;
  text-indent: 0;
  font-size: 25px;
  font-weight: 700;
}

.brand-logo-icon {
  color: var(--white);
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  line-height: 20px;
}

.free-quote-form {
  grid-column-gap: 12.5px;
  grid-row-gap: 12.5px;
  flex-direction: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100%;
  display: flex;
}

.text-field {
  border: 4px solid var(--white);
  background-color: var(--white);
  border-radius: 25px;
  width: 100%;
  height: 50px;
  margin-bottom: 0;
  padding: 17.5px;
  transition: border-color .2s;
}

.text-field:focus {
  border-color: var(--light-green);
}

.text-field::placeholder {
  color: #032b4080;
}

.free-quote-form-block {
  background-color: #006cff;
  background-image: url('../images/main-bg.svg');
  background-position: 100% 100%;
  background-size: 150%;
  border-radius: 12.5px;
  width: 100%;
  max-width: 1440px;
  margin-top: -100px;
  margin-bottom: 0;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  box-shadow: 0 0 50px -37.5px #000;
}

.home-services-section {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  transition: opacity .2s;
  display: flex;
}

.contact-form-title {
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.hero-buttons-grid {
  grid-column-gap: 12.5px;
  grid-row-gap: 12.5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 25px;
  display: grid;
}

.button-colored {
  background-color: var(--light-green);
  color: var(--white);
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  min-width: 175px;
  padding: 17.5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  transition: background-color .2s;
  display: flex;
}

.button-colored:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.button-colored.newsletter {
  min-width: auto;
}

.button-colored.licensing {
  z-index: 25;
  width: auto;
  min-width: auto;
  position: absolute;
  inset: auto 25px 25px;
}

.button-colored._404 {
  margin-bottom: 25px;
}

.button-outline {
  color: var(--white);
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  background-color: #0000;
  border: 1px solid #ffffff40;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  min-width: 175px;
  padding: 17.5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  transition: border-color .2s;
  display: flex;
}

.button-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.features-section {
  background-image: url('../images/grey-bg.svg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.features-grid {
  grid-column-gap: 25px;
  grid-row-gap: 12.5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1440px;
  margin-top: -100px;
  position: relative;
}

.features-wrapper {
  background-color: var(--white);
  border-radius: 12.5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 50px 25px;
  display: flex;
  box-shadow: 0 0 50px -37.5px #000;
}

.features-icon-wrapper {
  background-color: var(--royal-blue);
  border-radius: 150px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 25px;
  display: flex;
}

.features-icon {
  background-color: var(--light-green);
  color: var(--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 40px;
  line-height: 40px;
  display: flex;
  box-shadow: 0 0 50px -25px #000;
}

.home-section-title-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.vertical-dark-line {
  background-color: #032b401a;
  flex: 1;
  width: 1px;
  min-width: 1px;
  height: 100%;
  min-height: 100px;
}

.footer {
  background-image: url('../images/grey-bg.svg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: sticky;
  top: 100%;
  bottom: 0;
}

.newsletter-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 50px;
  background-image: url('../images/main-bg.svg');
  background-position: 0%;
  background-size: cover;
  border-radius: 12.5px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin-top: -100px;
  padding: 50px 50px 25px;
  display: grid;
  box-shadow: 0 0 50px -37.5px #000;
}

.newsletter-title {
  color: var(--white);
  align-items: center;
  min-height: 50px;
  margin-bottom: 0;
  display: flex;
}

.newsletter-form {
  grid-column-gap: 12.5px;
  grid-row-gap: 12.5px;
  grid-template-rows: auto;
  grid-template-columns: auto min-content;
  grid-auto-columns: 1fr;
  place-items: end start;
  display: grid;
}

.newsletter-text-field {
  border: 4px solid var(--white);
  background-color: var(--white);
  border-radius: 25px;
  width: 100%;
  min-width: 480px;
  height: 50px;
  margin-bottom: 0;
  padding: 17.5px;
  transition: border-color .2s;
}

.newsletter-text-field:focus {
  border-width: 4px;
  border-color: var(--light-green);
}

.newsletter-text-field::placeholder {
  color: #032b4080;
}

.newsletter-form-block {
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.home-about-grid {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #032b401a;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1439px;
  padding: 1px 0;
}

.home-about-text-wrapper {
  background-image: url('../images/grey-bg.svg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.quote-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.free-quote-form-grid {
  grid-column-gap: 12.5px;
  grid-row-gap: 12.5px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.home-section-title-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
  max-width: 1440px;
}

.section-title-sublink {
  margin-bottom: 25px;
}

.section-title-sublink:hover {
  color: #0051bf;
}

.services-collection-list {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.services-collection-list-wrapper {
  width: 100%;
  max-width: 1440px;
}

.collection-item-wrapper {
  background-color: var(--white);
  border-radius: 12.5px;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  padding: 25px;
  display: flex;
  box-shadow: 0 0 50px -37.5px #000;
}

.collection-item-photo {
  background-image: url('../images/Huette-Rouleau.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12.5px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 50%;
  padding-bottom: 50%;
  transition: transform .2s;
  display: flex;
  position: relative;
}

.collection-item-photo:hover {
  transform: scale(1.1);
}

.collection-item-photo.talhah-james {
  background-image: url('../images/Aaron-Dana.jpg');
}

.collection-item-photo.olivier-tillman {
  background-image: url('../images/Gemma-Sciverit.jpg');
}

.doctors-collection-item {
  justify-content: center;
  padding-left: 15px;
  display: flex;
}

.footer-navbar {
  justify-content: flex-end;
  display: flex;
}

.footer-copyright-text {
  color: #ffffff80;
  text-transform: capitalize;
  justify-content: flex-start;
  align-items: center;
  padding-top: 25px;
  font-size: 12.5px;
  line-height: 25px;
}

.footer-coypright-link {
  color: var(--white);
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  transition: color .2s;
}

.footer-coypright-link:hover {
  color: #ffffff80;
}

.footer-nav-link {
  color: var(--white);
  text-align: right;
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  align-items: flex-end;
  height: 100%;
  padding-top: 25px;
  padding-left: 25px;
  font-weight: 600;
  transition: opacity .2s;
  display: flex;
}

.footer-nav-link:hover {
  opacity: .5;
  color: var(--white);
}

.footer-navbar-wrapper {
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.footer-grid {
  grid-column-gap: 25px;
  grid-row-gap: 12.5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.horizontal-line {
  background-color: #032b401a;
  width: 100%;
  height: 1px;
}

.vertical-line-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 100%;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  display: grid;
}

.testimonials-section {
  flex-direction: column;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.testimonials-grid {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #032b401a;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  padding-top: 1px;
  padding-bottom: 1px;
  display: grid;
}

.testimonials-wrapper {
  background-color: var(--white);
  background-image: linear-gradient(#ffffffe6, #ffffffe6), url('../images/quote-icon.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 50px 25px;
  display: flex;
  position: relative;
}

.testimonial-top-wrapper {
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

.image {
  border-radius: 50px;
  margin-right: 12.5px;
}

.heading {
  margin-bottom: 0;
}

.home-section-image-block {
  background-image: url('../images/abstract-bg_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.home-section-image-block._2 {
  background-image: url('../images/abstract-bg_2.svg');
  background-size: contain;
}

.home-section-image-wrapper {
  border-radius: 100%;
  width: 50%;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px -25px #000;
}

.home-section-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home-news-section {
  flex-direction: column;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.home-news-collection-list-wrapper {
  background-color: #032b401a;
  flex: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding-top: 1px;
  padding-bottom: 1px;
  display: flex;
}

.home-news-collection-list {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.home-news-collection-item {
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.home-news-collection-item.col-border {
  border-right: 1px solid #e5e9eb;
}

.home-doctors-section {
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.collection-item-social-links-grid {
  z-index: 25;
  grid-column-gap: 12.5px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  position: absolute;
  bottom: 25px;
}

.doctors-collection-list-wrapper {
  width: 100%;
  max-width: 1440px;
}

.doctors-collection-list {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.aux-hero-section {
  background-image: url('../images/main-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  overflow: hidden;
}

.services-section {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: -100px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  transition: opacity .2s;
  display: flex;
}

.aux-hero-info-wrapper {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.success-message {
  color: var(--white);
  background-color: #0000;
  border-radius: 12.5px;
  margin-top: 50px;
}

.success-message.newsletter {
  margin-top: 0;
  padding: 12.5px 0;
}

.error-message {
  background-color: var(--crimson);
  color: var(--white);
  border-radius: 25px;
  width: 100%;
  margin-top: 12.5px;
  padding: 0 12.5px;
}

.error-message-text-block {
  justify-content: center;
  align-items: center;
  height: 50px;
  display: flex;
}

.doctors-section, .news-section {
  flex-direction: column;
  align-items: center;
  margin-top: -100px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.news-collection-list {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1px;
  padding-bottom: 1px;
  display: grid;
}

.news-collection-item {
  justify-content: center;
  display: flex;
}

.news-collection-list-wrapper {
  width: 100%;
  max-width: 1440px;
}

.aux-section {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-top: -100px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  transition: opacity .2s;
  display: flex;
}

.aux-wrapper {
  background-color: var(--white);
  text-align: left;
  border-radius: 12.5px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  padding: 50px 50px 25px;
  box-shadow: 0 0 50px -37.5px #000;
}

.aux-image {
  float: right;
  text-align: left;
  object-fit: cover;
  border-radius: 12.5px;
  max-width: 50%;
  margin-bottom: 25px;
  margin-left: 50px;
}

.aux-image.img-col2 {
  max-width: 100%;
}

.collection-item-photo-wrapper {
  border-radius: 12.5px;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.collection-item-photo-wrapper.collection-item-photo {
  background-image: url('../images/dental-crowns_1.jpg');
}

.collection-item-tittle-link {
  color: var(--midnight-blue);
  letter-spacing: 0;
  text-indent: 0;
  transition: opacity .2s, color .2s;
}

.collection-item-tittle-link:hover {
  opacity: .5;
  color: var(--midnight-blue);
}

.main-hero-image-wrapper {
  border-radius: 100%;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  padding-top: 50%;
  display: flex;
  position: absolute;
}

.main-hero-image {
  object-fit: scale-down;
  height: 150%;
  margin-top: -50%;
  position: absolute;
  inset: 0%;
}

.aux-hero-title {
  color: var(--white);
  max-width: 1050px;
  margin-top: 25px;
}

.licensing-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 25px;
}

.licensing-block {
  padding-top: 100%;
  position: relative;
}

.licensing-wrapper {
  background-color: #032b401a;
  border-radius: 12.5px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.licensing-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .2s;
}

.licensing-image:hover {
  transform: scale(1.1);
}

.licensing-text {
  color: var(--crimson);
  text-align: center;
}

.contact-grid {
  grid-column-gap: 25px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  margin-bottom: 25px;
}

.map {
  border-radius: 12.5px;
}

.contact-info-grid {
  grid-column-gap: 25px;
  grid-row-gap: 12.5px;
  text-align: center;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  margin-bottom: 25px;
  display: flex;
}

.contact-text {
  color: var(--black);
  white-space: normal;
  justify-content: center;
  align-items: center;
  padding: 5px 12.5px;
  font-size: 14px;
  font-weight: 600;
}

.text-icon {
  color: var(--light-green);
  padding-right: 5px;
  font-family: "Fa solid 900", sans-serif;
}

.doctor-social-links-grid {
  z-index: 25;
  grid-column-gap: 12.5px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  margin-bottom: 25px;
}

.free-quote-form-title {
  color: var(--white);
  justify-content: center;
  align-items: center;
  min-height: 100px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

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

.contact-form {
  flex-direction: column;
  display: flex;
}

.contact-form-succes-message {
  background-color: #0000;
}

.contact-form-text-field {
  background-color: #032b401a;
  border: 0 solid #000;
  border-radius: 25px;
  height: 50px;
  margin-bottom: 12.5px;
  padding: 17.5px;
  transition: background-color .2s;
}

.contact-form-text-field:focus {
  background-color: #032b400d;
}

.contact-form-text-area {
  background-color: #032b401a;
  border: 0 solid #000;
  border-radius: 25px;
  min-height: 112.5px;
  margin-bottom: 12.5px;
  padding: 17.5px;
  transition: background-color .2s;
}

.contact-form-text-area:focus {
  background-color: #032b400d;
}

.contact-form-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

._404-section {
  background-image: url('../images/main-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  overflow: hidden;
}

.text-block {
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.collection-item-wrapper-2 {
  background-color: #fff;
  border-radius: 12.5px;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  padding: 25px;
  display: flex;
  box-shadow: 0 0 50px -37.5px #000;
}

.doctors-collection-item-2 {
  justify-content: center;
  display: flex;
}

.subtitle-2 {
  color: #30bf78;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 25px;
}

.subtitle-2.collection-item {
  margin-bottom: 12.5px;
}

.button-colored-2 {
  color: #fff;
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  background-color: #30bf78;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  min-width: 175px;
  padding: 17.5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  transition: background-color .2s;
  display: flex;
}

.button-colored-2:hover {
  color: #fff;
  background-color: #269960;
}

.div-block {
  flex: 1;
}

.text-block-2 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.text-block-2.collection-item-tittle-link {
  margin-top: 40px;
  margin-bottom: 25px;
}

.text-block-3 {
  letter-spacing: 0;
  text-indent: 0;
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-3.collection-item-tittle-link {
  margin-bottom: 25px;
}

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

.custom-heading-3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.text-block-4 {
  margin-bottom: 20px;
}

.column, .column-2 {
  padding-left: 0;
  padding-right: 0;
}

.text-block-5 {
  text-transform: none;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.text-block-5.text-block-subtitle {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 38px;
}

.text-block-5.text-block-subtitle.text-cen {
  text-align: center;
  line-height: 53px;
}

.text-block-5.text-block-subtitle.text-center {
  text-align: center;
}

.text-logo-color {
  color: #30bf78;
  letter-spacing: 0;
  text-indent: 0;
  font-size: 25px;
  font-weight: 700;
}

.column-3 {
  padding-left: 0;
  padding-right: 0;
}

.columns {
  margin-top: 30px;
  margin-bottom: 30px;
}

.image-2 {
  border-radius: 12.5px;
  margin-bottom: 0;
}

.columns-2 {
  margin-top: 10px;
  margin-bottom: 40px;
}

.text-block-6 {
  margin-bottom: 20px;
}

.error-message-2 {
  color: #fff;
  background-color: #c52134;
  border-radius: 25px;
  width: 100%;
  margin-top: 12.5px;
  padding: 0 12.5px;
}

.text-icon-2 {
  color: #30bf78;
  padding-right: 5px;
  font-family: "Fa solid 900", sans-serif;
}

.column-5, .column-6, .column-7 {
  padding-left: 5px;
  padding-right: 5px;
}

.columns-3 {
  margin-bottom: 5px;
}

.text-block-7 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 15px;
}

.button {
  margin-right: 20px;
}

.columns-4 {
  margin-bottom: 20px;
}

.text-block-8 {
  text-align: center;
  margin-bottom: 20px;
}

.blog {
  font-size: 45px;
  line-height: 55px;
}

.heading-2 {
  color: var(--white);
  text-align: left;
  margin-bottom: 0;
  font-size: 40px;
  line-height: 50px;
}

.container {
  padding-bottom: 60px;
}

.container-2 {
  max-width: 1200px;
}

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

.link {
  font-size: 15px;
}

.image-3 {
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .home-hero-section {
    height: auto;
    max-height: none;
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

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

  .hero-image-wrapper {
    justify-content: center;
    margin-bottom: 100px;
  }

  .hero-image {
    width: 50%;
  }

  .hero-info-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link {
    justify-content: center;
  }

  .navbar {
    height: 75px;
  }

  .nav-menu {
    background-color: #000e37;
    border-radius: 12.5px;
    justify-content: center;
    height: auto;
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
    box-shadow: 0 0 100px -87.5px #000;
  }

  .nav-link-colored {
    margin-left: 0;
  }

  .free-quote-form-block {
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
    box-shadow: 0 0 100px -87.5px #000;
  }

  .home-services-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .menu-button {
    border: 1px solid #ffffff40;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 15px;
    transition: border-color .2s;
    display: flex;
  }

  .menu-button.w--open {
    border-color: var(--white);
    background-color: #0000;
  }

  .icon {
    color: var(--white);
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    display: flex;
  }

  .features-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .features-grid {
    grid-column-gap: 12.5px;
    grid-template-columns: 1fr 1fr;
  }

  .features-wrapper {
    padding: 25px 25px 0;
    box-shadow: 0 0 100px -87.5px #000;
  }

  .footer {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .newsletter-wrapper {
    grid-row-gap: 25px;
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
    box-shadow: 0 0 100px -87.5px #000;
  }

  .newsletter-form {
    grid-template-columns: auto min-content;
    justify-items: stretch;
    width: 100%;
  }

  .newsletter-text-field {
    width: 100%;
  }

  .newsletter-form-block {
    justify-content: center;
  }

  .home-about-grid {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .home-about-text-wrapper {
    padding: 0 25px;
  }

  .quote-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .services-collection-list {
    grid-column-gap: 12.5px;
    grid-row-gap: 12.5px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav-link {
    justify-content: center;
  }

  .testimonials-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

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

  .testimonials-wrapper {
    padding: 25px 25px 0;
  }

  .home-section-image-block {
    display: none;
  }

  .home-news-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

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

  .home-doctors-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .doctors-collection-list {
    grid-column-gap: 12.5px;
    grid-row-gap: 12.5px;
    grid-template-columns: 1fr 1fr;
  }

  .aux-hero-section {
    height: auto;
    max-height: none;
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .services-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .aux-hero-info-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .success-message {
    margin-top: 25px;
  }

  .doctors-section, .news-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .news-collection-list {
    grid-column-gap: 12.5px;
    grid-row-gap: 12.5px;
    grid-template-columns: 1fr 1fr;
  }

  .aux-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .aux-wrapper {
    padding: 25px 25px 0;
  }

  .aux-image {
    float: none;
    max-width: 100%;
    margin-bottom: 25px;
    margin-left: 0;
  }

  .licensing-grid {
    grid-column-gap: 12.5px;
    grid-row-gap: 12.5px;
    grid-template-columns: 1fr 1fr;
  }

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

  ._404-section {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
}

@media screen and (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-text-field {
    min-width: auto;
  }

  .home-about-grid {
    grid-template-columns: 1fr;
  }

  .free-quote-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-collection-list, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .home-news-collection-list-wrapper {
    display: block;
  }

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

  .home-news-collection-item.col-border {
    border-bottom: 1px solid #e5e9eb;
    border-right-style: none;
  }

  .doctors-collection-list, .news-collection-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 55px;
    line-height: 65px;
  }

  .call-button {
    width: 75px;
    height: 75px;
  }

  .call-icon {
    font-size: 30px;
    line-height: 30px;
  }

  .hero-buttons-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-section-title-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .newsletter-wrapper {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: auto;
  }

  .free-quote-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav-link {
    padding-top: 12.5px;
    padding-left: 12.5px;
    padding-right: 12.5px;
  }

  .footer-navbar-wrapper {
    justify-content: center;
  }

  .home-news-collection-list-wrapper {
    display: block;
  }

  .home-news-collection-item.col-border {
    border-bottom: 1px solid #e5e9eb;
    border-right-style: none;
  }

  .aux-hero-title {
    font-size: 48px;
    line-height: 64px;
  }

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

  .custom-heading {
    font-size: 36px;
    line-height: 48px;
  }

  .image-2, .column-4 {
    margin-bottom: 20px;
  }

  .column-8 {
    margin-bottom: 10px;
  }
}

#w-node-_72422435-9035-d7ef-17f4-3d61b3122209-0d8be387 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: center;
}

#w-node-_2eef013e-22ba-d75c-02b2-6509f730c01d-0d8be387 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_4b4fee24-68f2-957c-af14-a726c664d567-0d8be387, #w-node-_31ce69de-38ca-fffa-36a6-cf722b9c303a-0d8be387 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_7a7a5860-bde3-d089-65e4-b6e17a3758fd-0d8be387 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: center;
}

#w-node-cfcfb09b-d2a5-0814-1364-b9572291f6ee-0d8be387 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_475eea29-7950-177b-c831-5062bd75a089-bd75a087 {
  place-self: center start;
}

#w-node-_475eea29-7950-177b-c831-5062bd75a08b-bd75a087 {
  justify-self: end;
}

#w-node-_475eea29-7950-177b-c831-5062bd75a095-bd75a087 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_475eea29-7950-177b-c831-5062bd75a0a3-bd75a087 {
  justify-self: center;
}

#w-node-_4f437f79-2d8d-5237-d230-45f3d5c56918-6a8be38a, #w-node-f19df250-0be7-8dfb-63ee-5d259a5ea252-7c8be38b, #w-node-_524e1142-eeee-5958-43a4-be68264d8354-368be38c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-52234284, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a965024c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-42f84a0e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-17f853d8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-597154c8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-8a6c9db6, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5940fbb3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c8fefdc5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-d49ca57b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7bbdc62c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f7f8bbd4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-da53fa35, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-072d1e97, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-35b443ba, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ba541e1c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-0ae1b066, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c3054198, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-701cae91, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a50f8cae, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-06eb520d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ee49ec93, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a71cd7ab, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-46f651c1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-666aa1a8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5cb7cc78, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-441c3604, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a1b45ff3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-228e6739, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c5871f58, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2f40c854, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-65b49260, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-38b51a6f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2bd44c40, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-25c9f192, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-b3b53136, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-09acdcc1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ccd5ca51, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5afb4bbe, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e9aa7ac0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-69860dae, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-074a611d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a67ccc7b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5c720ead, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a8053524, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e9447853, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5856f148, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1d3e172b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e640d9ea, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c9871090, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-6372ac14, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7fee904b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-58af27f0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f780d14d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1fd4fe60, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-bb0860e8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-38a47298, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a5087d06, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-3132703e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-861b67c4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-67255a2e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-848e9c3b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5ca8fe78, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-31747338, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-21719ef1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-30dc1c12, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-72c603bb, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f774c2fd, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1398fe1f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-eefeb7b5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-773c77f6, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-88795ec4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-202f7790, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-65796caa, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-afea126c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-43aa76d4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2d57b6f4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-831b45d7, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-4a613d34, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-21e04b86, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7364a2d3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-95b7a69e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-55f2dee9, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-832bbe85, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-96a6c832, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2ef5840c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ba02f40e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-3e7dd332, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-127206bf, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-baf5b064, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e1a70e8f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-064e82f5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-37acd108, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-75e096ad, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c5a48d6b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-8e0800d0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-bb372372, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-63d7051b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2f7fa094, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-b07b2615, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-06089c9e {
  grid-area: 1 / 1 / 2 / 3;
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_8e06a1a0-ceca-b077-44ae-9c7883c0952d-0d8be387 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_72422435-9035-d7ef-17f4-3d61b3122209-0d8be387 {
    grid-column-end: 3;
  }

  #w-node-_4b4fee24-68f2-957c-af14-a726c664d567-0d8be387 {
    grid-column-start: 1;
  }

  #w-node-_891a6723-2ed1-c42b-7693-657c8bdb2645-0d8be387 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_31ce69de-38ca-fffa-36a6-cf722b9c303a-0d8be387 {
    grid-column: 1 / 2;
  }

  #w-node-_7a7a5860-bde3-d089-65e4-b6e17a3758fd-0d8be387 {
    grid-column: 2 / 3;
  }

  #w-node-cfcfb09b-d2a5-0814-1364-b9572291f6ee-0d8be387 {
    grid-column: 1 / 2;
  }

  #w-node-_475eea29-7950-177b-c831-5062bd75a089-bd75a087, #w-node-_475eea29-7950-177b-c831-5062bd75a08b-bd75a087 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4f437f79-2d8d-5237-d230-45f3d5c56918-6a8be38a, #w-node-f19df250-0be7-8dfb-63ee-5d259a5ea252-7c8be38b, #w-node-_524e1142-eeee-5958-43a4-be68264d8354-368be38c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-52234284, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a965024c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-42f84a0e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-17f853d8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-597154c8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-8a6c9db6, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5940fbb3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c8fefdc5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-d49ca57b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7bbdc62c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f7f8bbd4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-da53fa35, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-072d1e97, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-35b443ba, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ba541e1c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-0ae1b066, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c3054198, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-701cae91, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a50f8cae, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-06eb520d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ee49ec93, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a71cd7ab, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-46f651c1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-666aa1a8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5cb7cc78, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-441c3604, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a1b45ff3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-228e6739, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c5871f58, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2f40c854, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-65b49260, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-38b51a6f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2bd44c40, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-25c9f192, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-b3b53136, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-09acdcc1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ccd5ca51, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5afb4bbe, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e9aa7ac0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-69860dae, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-074a611d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a67ccc7b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5c720ead, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a8053524, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e9447853, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5856f148, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1d3e172b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e640d9ea, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c9871090, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-6372ac14, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7fee904b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-58af27f0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f780d14d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1fd4fe60, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-bb0860e8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-38a47298, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a5087d06, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-3132703e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-861b67c4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-67255a2e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-848e9c3b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5ca8fe78, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-31747338, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-21719ef1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-30dc1c12, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-72c603bb, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f774c2fd, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1398fe1f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-eefeb7b5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-773c77f6, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-88795ec4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-202f7790, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-65796caa, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-afea126c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-43aa76d4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2d57b6f4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-831b45d7, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-4a613d34, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-21e04b86, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7364a2d3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-95b7a69e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-55f2dee9, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-832bbe85, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-96a6c832, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2ef5840c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ba02f40e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-3e7dd332, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-127206bf, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-baf5b064, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e1a70e8f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-064e82f5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-37acd108, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-75e096ad, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c5a48d6b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-8e0800d0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-bb372372, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-63d7051b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2f7fa094, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-b07b2615, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-06089c9e {
    grid-column: 1 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2eef013e-22ba-d75c-02b2-6509f730c01d-0d8be387 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_31ce69de-38ca-fffa-36a6-cf722b9c303a-0d8be387 {
    grid-column-end: 3;
  }

  #w-node-_7a7a5860-bde3-d089-65e4-b6e17a3758fd-0d8be387 {
    grid-column-start: 1;
  }

  #w-node-cfcfb09b-d2a5-0814-1364-b9572291f6ee-0d8be387 {
    grid-column-end: 3;
  }

  #w-node-_475eea29-7950-177b-c831-5062bd75a095-bd75a087 {
    place-self: auto;
  }

  #w-node-_4f437f79-2d8d-5237-d230-45f3d5c56918-6a8be38a, #w-node-f19df250-0be7-8dfb-63ee-5d259a5ea252-7c8be38b, #w-node-_524e1142-eeee-5958-43a4-be68264d8354-368be38c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-52234284, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a965024c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-42f84a0e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-17f853d8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-597154c8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-8a6c9db6, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5940fbb3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c8fefdc5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-d49ca57b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7bbdc62c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f7f8bbd4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-da53fa35, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-072d1e97, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-35b443ba, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ba541e1c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-0ae1b066, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c3054198, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-701cae91, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a50f8cae, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-06eb520d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ee49ec93, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a71cd7ab, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-46f651c1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-666aa1a8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5cb7cc78, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-441c3604, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a1b45ff3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-228e6739, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c5871f58, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2f40c854, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-65b49260, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-38b51a6f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2bd44c40, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-25c9f192, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-b3b53136, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-09acdcc1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ccd5ca51, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5afb4bbe, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e9aa7ac0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-69860dae, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-074a611d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a67ccc7b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5c720ead, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a8053524, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e9447853, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5856f148, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1d3e172b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e640d9ea, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c9871090, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-6372ac14, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7fee904b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-58af27f0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f780d14d, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1fd4fe60, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-bb0860e8, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-38a47298, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-a5087d06, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-3132703e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-861b67c4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-67255a2e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-848e9c3b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-5ca8fe78, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-31747338, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-21719ef1, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-30dc1c12, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-72c603bb, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-f774c2fd, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-1398fe1f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-eefeb7b5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-773c77f6, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-88795ec4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-202f7790, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-65796caa, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-afea126c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-43aa76d4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2d57b6f4, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-831b45d7, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-4a613d34, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-21e04b86, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-7364a2d3, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-95b7a69e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-55f2dee9, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-832bbe85, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-96a6c832, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2ef5840c, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-ba02f40e, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-3e7dd332, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-127206bf, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-baf5b064, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-e1a70e8f, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-064e82f5, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-37acd108, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-75e096ad, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-c5a48d6b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-8e0800d0, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-bb372372, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-63d7051b, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-2f7fa094, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-b07b2615, #w-node-f8a85e43-9a2f-6f68-a8ca-6cb24ca877fe-06089c9e {
    grid-column-end: 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2eef013e-22ba-d75c-02b2-6509f730c01d-0d8be387, #w-node-_475eea29-7950-177b-c831-5062bd75a089-bd75a087, #w-node-_475eea29-7950-177b-c831-5062bd75a08b-bd75a087, #w-node-_475eea29-7950-177b-c831-5062bd75a095-bd75a087 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}