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

.hero {
  display: block;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-image-mask {
  width: 100%;
  margin-left: 21px;
  padding-left: 0px;
}

.hero-image {
  width: 100%;
  height: 100%;
  margin-left: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0.5 auto;
  -ms-flex: 0 0.5 auto;
  flex: 0 0.5 auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.body {
  font-family: Poppins, sans-serif;
  color: #363636;
}

.hero-header {
  font-family: 'Fontsfree net sfprodisplay', sans-serif;
  font-size: 64px;
  line-height: 70px;
  font-weight: 900;
}

.hero-content {
  overflow: visible;
  width: 450px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0px;
  direction: ltr;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  text-transform: none;
  white-space: normal;
}

.call-to-action {
  display: block;
  margin-top: 0px;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/Group-28.png');
  background-position: 0px 0px;
  background-size: auto;
}

.centered-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -80px;
  margin-bottom: -80px;
  padding-top: 19px;
  padding-bottom: 19px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.cta-content {
  width: 639px;
  margin-top: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  -o-object-fit: fill;
  object-fit: fill;
}

.section-header {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: 'Fontsfree net sfprodisplay', sans-serif;
  color: #fff;
  font-size: 50px;
}

.section-header.black {
  padding-top: 0px;
  padding-bottom: 0px;
  color: #363636;
  font-size: 40px;
}

.section-header.black.centered {
  text-align: center;
}

.orange-button {
  height: 50px;
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 14px;
  background-color: #ffb800;
  box-shadow: 1px 0 14px -3px #aa5800;
  font-weight: 600;
}

.orange-button.form {
  box-shadow: none;
}

.white-button {
  height: 50px;
  padding: 15px 20px;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  color: #0844f4;
  font-weight: 700;
}

.white-button:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.white-button.w--current:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.features-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 35px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  border: 1px none #000;
  border-radius: 10px;
  box-shadow: 4px 0 30px -4px rgba(0, 0, 0, 0.07);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  margin-top: 0px;
  padding: 0px;
  border-radius: 100px;
}

.icon-wrapper.horizontal {
  margin-left: 20px;
  border-radius: 0px;
}

.icon-wrapper.horizontal.rounded {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
}

.card-heading {
  margin-top: 27px;
  margin-bottom: 27px;
  padding-top: 0px;
  font-family: 'Fontsfree net sfprodisplay', sans-serif;
  font-weight: 900;
  text-align: center;
}

.card-content {
  display: block;
  width: 250px;
  margin-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 30px;
  text-align: center;
}

.card-icon {
  display: inline-block;
  margin-top: 0px;
  padding-top: 0px;
}

.main-features-grid {
  margin-top: 20px;
  margin-bottom: 20px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.main-features {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.all-features {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.all-features-grid {
  margin-top: 40px;
  margin-bottom: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

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

.card-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 4px 0 30px -4px rgba(0, 0, 0, 0.07);
}

.div-block-6 {
  width: 100%;
  height: 100%;
}

.card-horizontal-header {
  margin-right: 20px;
  margin-bottom: 0px;
  margin-left: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 18px;
  text-decoration: none;
}

.card-horizontal-content {
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  line-height: 20px;
}

.card-horizontal-content.contacts {
  color: #657db6;
  text-decoration: none;
}

.benefits-column {
  height: 100%;
  margin-top: 30px;
}

.benefits-section {
  margin-top: 0px;
  margin-bottom: 88px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.main-features-section {
  margin-bottom: 88px;
}

.all-features-section {
  margin-top: 0px;
  margin-bottom: 88px;
}

.section-card {
  height: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
  padding-right: 15px;
  padding-left: 25px;
}

.section-content {
  margin-top: 20px;
  margin-bottom: 62px;
  padding-right: 21px;
  font-size: 16px;
  line-height: 30px;
}

.section-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 500px;
  margin-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  background-color: #fff;
}

.navbar-container {
  padding-top: 13px;
  padding-bottom: 13px;
}

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

.nav-link:hover {
  font-weight: 600;
}

.nav-link:active {
  color: #747474;
  font-weight: 700;
}

.nav-link:focus {
  font-weight: 700;
}

.nav-link.w--current {
  color: #363636;
  font-weight: 700;
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.section-details {
  height: 100%;
}

.appointment-section {
  margin-top: 0px;
  margin-bottom: 88px;
}

.appointment-form {
  height: 400px;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 3px 3px 30px -4px rgba(0, 0, 0, 0.07);
}

.text-field {
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px none #000;
  border-radius: 10px;
  background-color: #fafafc;
}

.textarea {
  overflow: auto;
  border: 1px none #000;
  border-radius: 14px;
  background-color: #fafafc;
  -o-object-fit: fill;
  object-fit: fill;
}

.founders-section {
  margin-top: 0px;
  margin-bottom: 88px;
}

.founders {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.founders-card-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-right: 22px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 4px 0 30px -4px rgba(0, 0, 0, 0.07);
}

.founders-name {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 20px;
  line-height: 30px;
}

.founders-details {
  margin: 23px 14px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.founders-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  padding: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.social-media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.founders-image {
  overflow: hidden;
  margin: 0px 10px 0px 20px;
  padding: 0px;
  border-radius: 100%;
}

.founders-role {
  margin-top: 5px;
  margin-bottom: 0px;
}

.founders-motto {
  width: 100%;
  margin-bottom: 0px;
  font-style: italic;
}

.image {
  width: 150px;
  border-radius: 200%;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.image:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.seperator {
  width: 50px;
  height: 2.5px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #ffb800;
}

.founders-grid {
  margin-top: 40px;
}

.benefits {
  margin-top: 0px;
  margin-bottom: 0px;
}

.social-media-icon {
  width: 30px;
  height: 30px;
}

.link {
  margin-right: 5px;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-separator {
  width: 180px;
}

.home.w--current {
  margin-left: 0px;
}

.faq-content {
  display: block;
  width: 100%;
  margin: 40px 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.faq-item {
  margin-bottom: 0px;
}

.faq-wrap {
  padding: 25px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 4px 0 30px -4px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}

.faq-question-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.faq-answer-wrap {
  margin-top: 15px;
}

.questions {
  display: block;
  margin-top: 0px;
  padding-top: 3px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}

.plus-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 22px;
  height: 22px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.plus-horizontal {
  width: 75%;
  height: 4px;
  border: 1px none #000;
  border-radius: 20px;
  background-color: #ffb800;
}

.plus-vertical {
  position: absolute;
  width: 4px;
  height: 75%;
  border-radius: 20px;
  background-color: #ffb800;
}

.answer {
  margin-left: 0px;
  font-size: 14px;
  text-align: left;
}

.faq-questions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.faq-icon {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.faq-section {
  margin-bottom: 88px;
}

.gallery-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
}

.gallery-images {
  width: auto;
  border-radius: 5px;
  opacity: 0.75;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  mix-blend-mode: normal;
}

.gallery-images:hover {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  mix-blend-mode: normal;
}

.gallery-images.seven {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.gallery-images.seven:hover {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gallerygrid {
  margin-top: 40px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.gallery-section {
  margin-bottom: 88px;
}

.grid-3 {
  margin-top: -30px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.section-map {
  height: 100%;
}

.contact-us-section {
  margin-bottom: 88px;
}

.contacts-link-block {
  width: 100%;
  height: 100%;
  color: #363636;
  text-decoration: none;
}

.card-icon-horizontal.rounded-icon {
  border-radius: 100px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.card-icon-horizontal.rounded-icon:hover {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.div-block-11 {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .flex-container {
    padding-right: 0px;
    padding-left: 5px;
  }

  .hero-image-mask {
    margin-right: 5px;
    margin-left: 25px;
  }

  .hero-image {
    margin-left: 0px;
    padding-top: 0px;
  }

  .hero-header {
    font-size: 45px;
    line-height: 50px;
  }

  .hero-content {
    overflow: hidden;
    width: 330px;
    height: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 25px;
  }

  .call-to-action {
    display: block;
  }

  .centered-container {
    margin-top: -50px;
    margin-bottom: -50px;
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main-features-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .all-features-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }

  .benefits-grid {
    margin-left: 6px;
    padding-left: 0px;
  }

  .section-card {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .navbar-container {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .nav-link {
    color: #fff;
    text-align: left;
  }

  .nav-menu {
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: rgba(54, 54, 54, 0.97);
  }

  .menu-button {
    background-color: transparent;
  }

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

  .section-details {
    margin-top: 14px;
    margin-bottom: 14px;
    padding-left: 0px;
  }

  .hero-contents {
    margin-left: 20px;
    padding-left: 0px;
  }

  .appointment-form {
    padding: 20px;
  }

  .founders-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .home.w--current {
    margin-left: 15px;
  }

  .logo {
    margin-left: 5px;
  }

  .gallery-images.seven {
    -webkit-transform: translate(0px, 0px) translate(0px, 0px);
    -ms-transform: translate(0px, 0px) translate(0px, 0px);
    transform: translate(0px, 0px) translate(0px, 0px);
  }

  .div-block-11 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding: 40px 20px;
  }

  .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero-image-mask {
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .hero-image {
    width: 0%;
    height: 0%;
  }

  .hero-header {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 50px;
    text-align: center;
  }

  .hero-content {
    overflow: hidden;
    width: auto;
    height: 160px;
    margin-top: 15px;
    margin-bottom: 20px;
    margin-left: 0px;
    padding: 10px 20px;
    line-height: 30px;
    text-align: center;
  }

  .call-to-action {
    padding: 40px 20px;
  }

  .cta-content {
    width: 500px;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .section-header {
    margin-top: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 40px;
  }

  .section-header.black {
    margin-top: 0px;
    text-align: center;
  }

  .section-header.black.centered {
    margin-top: 0px;
  }

  .orange-button {
    margin: 0px;
  }

  .orange-button.form {
    margin-right: 0px;
    margin-left: 0px;
  }

  .white-button {
    margin-bottom: 50px;
  }

  .features-card {
    width: 400px;
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .card-heading {
    width: 350px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .card-content {
    width: 350px;
  }

  .main-features-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }

  .all-features-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    justify-items: center;
  }

  .card-horizontal {
    width: 400px;
  }

  .section-card {
    margin-top: 0px;
    padding-right: 26px;
    padding-left: 26px;
  }

  .section-content {
    padding-right: 0px;
    text-align: center;
  }

  .section-title {
    margin-top: 0px;
  }

  .nav-link {
    color: #d1d1d1;
  }

  .nav-link:hover {
    color: #fff;
  }

  .nav-link:focus {
    color: #fff;
  }

  .section-details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-right: 50px;
    padding-left: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hero-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .founders-card-horizontal {
    width: 500px;
  }

  .founders-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .section-design {
    width: 0px;
    height: 0px;
  }

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

  .home.w--current {
    margin-left: 15px;
  }

  .logo {
    margin-left: 0px;
  }

  .gallery-block {
    border-radius: 10px;
  }

  .gallery-images {
    border-radius: 5px;
  }

  .gallerygrid {
    padding-right: 30px;
    padding-left: 30px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    margin-top: 0px;
  }

  .section-map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-11 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 479px) {
  .hero-header {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 35px;
    font-weight: 900;
  }

  .hero-content {
    display: block;
    overflow: visible;
    width: auto;
    height: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 0px 4px;
    text-align: center;
  }

  .centered-container {
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: left;
  }

  .cta-content {
    width: 300px;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
  }

  .section-header {
    margin-top: 0px;
    font-size: 30px;
    text-align: center;
  }

  .section-header.black {
    margin-top: 0px;
    font-size: 30px;
  }

  .orange-button {
    margin: 15px 0px 0px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .orange-button.form {
    margin-right: -7px;
    margin-left: 0px;
  }

  .white-button {
    margin-bottom: 0px;
  }

  .features-card {
    width: 300px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .card-heading {
    width: 250px;
  }

  .card-content {
    width: 250px;
    margin-left: 0px;
  }

  .benefits-grid {
    margin-left: 0px;
    grid-auto-flow: column;
  }

  .card-horizontal {
    width: 300px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .card-horizontal-content {
    line-height: 25px;
  }

  .benefits-column {
    margin-top: 0px;
  }

  .section-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 400px;
    padding-right: 25px;
    padding-left: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .section-card.mobile-view {
    height: 100%;
    margin-top: 0px;
  }

  .section-content {
    margin-bottom: 20px;
  }

  .section-title {
    margin-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-details {
    margin-bottom: 0px;
  }

  .appointment-section {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .appointment-form {
    width: 300px;
    height: 360px;
  }

  .founders-card-horizontal {
    width: 300px;
    padding-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

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

  .founders-details {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .founders-info {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .social-media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .founders-image {
    margin-top: 20px;
    margin-right: 0px;
    margin-left: 0px;
  }

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

  .image {
    width: 100px;
  }

  .founders-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .home.w--current {
    margin-left: 15px;
  }

  .logo {
    margin-left: 0px;
  }

  .questions {
    width: 200px;
  }

  .faq-icon {
    margin-top: 8px;
    margin-right: 10px;
    margin-left: 0px;
    padding-top: 0px;
  }

  .faq-section {
    margin-bottom: 50px;
  }

  .gallery-block {
    border-radius: 5px;
  }

  .gallery-images {
    border-radius: 5px;
  }

  .gallerygrid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    margin-top: 0px;
  }

  .section-map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-11 {
    display: block;
    margin: 30px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

#w-node-_1addc897-36c2-3bcc-2bea-023234879585-3ef271ac {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-e3ef0c73-0920-a294-bc8b-fd16955bd61a-3ef271ac {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_8b1b0ccc-b04c-3dc0-3246-6a0ca13fc08f-3ef271ac {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_8117389d-f005-4556-148f-6dd2416b4971-3ef271ac {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_87f8b175-307e-dabb-85a3-09b7d4b39ca9-3ef271ac {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_87f8b175-307e-dabb-85a3-09b7d4b39ca9-3ef271ac {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
}

@font-face {
  font-family: 'Fontsfree net sfprodisplay';
  src: url('../fonts/FontsFree-Net-SFProDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fontsfree net sfprodisplay';
  src: url('../fonts/FontsFree-Net-SFProDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fontsfree net sfprodisplay';
  src: url('../fonts/FontsFree-Net-SFProDisplay-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fontsfree net sfprodisplay';
  src: url('../fonts/FontsFree-Net-SFProDisplay-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fontsfree net sfprodisplay';
  src: url('../fonts/FontsFree-Net-SFProDisplay-Heavy.ttf') format('truetype'), url('../fonts/FontsFree-Net-SFProDisplay-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}