:root {
  --body-text-grey: #a5a5a5;
  --tomato: #f26340;
  --grey: #919197;
  --almost-white: #fafafa;
  --see-through-white: #fff9;
  --grey-333: #333;
  --black: black;
  --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;
}

p {
  color: var(--body-text-grey);
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
}

.nav-text {
  color: #333;
  margin-bottom: 5px;
}

.nav-text.attention {
  color: var(--tomato);
}

.align-right {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.align-right.flex-center-ipad {
  margin-right: 10px;
}

.top-text {
  color: #919197;
  font-size: 15px;
  font-weight: 400;
}

.dropdown-toggle {
  padding: 15px 20px;
  transition: color .2s;
}

.dropdown-toggle:hover {
  color: #fc493e;
}

.top-margin {
  margin-top: 20px;
}

.top-margin.more {
  margin-top: 40px;
}

.mouse-dots {
  background-color: #fc493e;
  border-radius: 100%;
  width: 2px;
  height: 2px;
  margin-top: 6px;
}

.mouse-dots.grey-dots {
  background-color: var(--body-text-grey);
  width: 4px;
  height: 4px;
}

.dropdown-list.w--open {
  background-color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 5px 6px 20px 5px #00000005;
}

.button {
  border: 2px solid var(--tomato);
  background-color: var(--tomato);
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  justify-content: center;
  min-width: 160px;
  margin-right: 0;
  padding: 15px 25px;
  font-family: Open Sans, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.button:hover {
  border: 2px solid var(--tomato);
  color: var(--tomato);
  background-color: #fff;
}

.button.smaller {
  min-width: 140px;
  margin-right: 0;
  padding: 10px 15px;
}

.button.relative {
  position: static;
  top: -143px;
}

.container {
  flex: 1;
  max-width: 1200px;
  display: block;
}

.container.flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  text-align: right;
  flex-flow: wrap;
  flex: none;
  place-content: stretch flex-end;
  align-items: stretch;
  display: flex;
}

.logo-image {
  width: 50px;
  margin-right: 15px;
}

.flex-row {
  flex: 1;
  align-items: center;
  display: flex;
}

.flex-row.make-vertical {
  margin-left: 10px;
}

.nav-line {
  background-color: #fc493e;
  width: 0%;
  height: 1px;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(0);
}

.icon {
  margin-top: 18.5px;
  margin-right: 5px;
  font-size: 12px;
}

.social-text {
  color: var(--grey);
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  line-height: 15px;
}

.social-text.grey {
  color: var(--body-text-grey);
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.dropdown-link {
  color: #818187;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.dropdown-link:hover, .dropdown-link.w--current {
  color: #272b3a;
}

.navigation {
  background-color: #fff0;
  align-items: center;
  height: 100px;
  padding-left: 15px;
  padding-right: 15px;
  display: none;
  position: static;
  top: 0;
  left: 0;
  right: 0;
}

.navigation.vh {
  height: 8vh;
}

.navigation.vh.absolute {
  position: absolute;
}

.nav-link {
  border-radius: 30px;
  flex: none;
  padding: 15px 10px 15px 20px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  position: relative;
}

.nav-link:hover, .nav-link:focus {
  color: var(--tomato);
}

.nav-link.no-padding {
  padding: 0;
  overflow: visible;
}

.nav-link.no-padding:hover {
  color: var(--tomato);
}

.mouse-scroll {
  border: 1px solid #fc493e;
  border-radius: 12px;
  justify-content: center;
  align-items: flex-start;
  width: 20px;
  height: 30px;
  margin-left: 10px;
  display: flex;
  position: relative;
}

.mouse-scroll.grey-line {
  border-width: 2px;
  border-color: var(--body-text-grey);
}

.brand {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.shape-18 {
  z-index: -1;
  position: absolute;
  top: -40%;
  left: -44vw;
}

.ivc-header-shapes {
  z-index: -1;
  float: left;
  background-image: url('../images/ivc-background-shape.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  width: auto;
  min-width: 600px;
  height: 600px;
  margin-top: 50px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.paragraph-small {
  font-size: 14px;
  line-height: 24px;
}

.paragraph-small.grey-text.italic {
  margin-top: 20px;
  font-style: italic;
  line-height: 16px;
}

.card-corner {
  color: #222;
  justify-content: flex-end;
  align-items: center;
  height: 32px;
  margin-top: 24px;
  margin-right: -1px;
  padding-left: 16px;
  font-size: 17px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.feature-cards {
  flex-wrap: wrap;
  padding-top: 8px;
  display: flex;
}

.wrapper {
  background-color: #0000;
  max-width: 1200px;
}

.wrapper.review-slide-wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.section {
  cursor: default;
  background-color: #0000;
  background-image: url('../images/ivc-background-shape_1.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  margin-right: 0;
  padding: 0 0 0;
  position: relative;
}

.section.ivc-about-section {
  height: auto;
  margin-bottom: 0;
  padding: 10vh 0;
}

.section.ivc-virtualcare-section {
  background-color: #0000;
  background-image: url('../images/ivc-bg-shape.svg');
  background-position: 0 -10px;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  padding: 10vh 50px;
}

.section.ivc-testimonial-section {
  background-color: var(--almost-white);
  background-image: none;
  height: auto;
  padding: 10vh 0;
}

.section.ivc-clinic-section {
  background-color: #0000;
  background-image: url('../images/shape-28.png');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: auto 80%;
  height: auto;
  padding: 10vh 5vw;
}

.section.ivc-virtualnurse-section {
  background-color: #0000;
  background-image: none;
  height: auto;
  padding: 10vh 5vw;
}

.section.ivc-why-join-virtualcare {
  height: auto;
  padding: 50px 8vw;
}

.section.ivc-virtualcare-faq-section {
  background-color: var(--almost-white);
  background-image: url('../images/ivc-bg-shape.svg');
  background-position: 0 -10px;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  min-height: 70vh;
  padding: 5vh 8vw;
}

.section.ivc-virtualcare-application-process {
  background-color: var(--almost-white);
  background-image: none;
  height: auto;
  min-height: 70vh;
  padding: 5vh 8vw;
}

.vertical-header-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 72px;
  padding-top: 270px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.section-header-wrapper {
  text-align: center;
  width: 570px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 16px;
  display: block;
}

.card-corner-line {
  background-image: linear-gradient(to bottom, var(--tomato), var(--tomato));
  width: 2px;
  height: 100%;
  margin-left: 30px;
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-card {
  text-align: center;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 3px;
  flex: 1;
  margin-left: 15px;
  margin-right: 15px;
  padding: 88px 48px 80px;
  text-decoration: none;
  position: relative;
}

.side-feature-mini-wrapper {
  padding-top: 24px;
  display: flex;
}

.side-feature-image {
  flex: 0 auto;
  width: 41.66%;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.side-feature-header {
  margin-bottom: 8px;
}

.side-feature-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  width: 41.33%;
  margin-left: 2%;
  margin-right: 0%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.side-feature {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.side-feature-mini {
  width: 50%;
  padding-right: 30px;
}

.grey-text {
  color: #a5a5a5;
}

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

.review-content {
  color: #fff;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  display: flex;
}

.slider-arrow {
  border: 1px solid #ffffff80;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 40px;
  margin: auto auto auto 40px;
  transition: border .2s;
  display: flex;
  position: absolute;
  inset: 0 100% 0 0;
}

.slider-arrow:hover {
  border-color: #fff;
}

.slider-arrow.arrow-left {
  bottom: 48px;
}

.slider-arrow.arrow-right {
  top: 48px;
}

.review-slide {
  align-items: center;
  max-width: 770px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.review-author-info {
  color: var(--see-through-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 16px;
}

.review-text {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 32px;
}

.testimonials {
  background-color: #f26340;
  border-radius: 10px;
  height: auto;
  padding: 25px 136px;
}

.heading {
  color: var(--see-through-white);
  font-weight: 600;
}

.footer-column {
  float: left;
  width: 100%;
  padding-right: 0;
}

.footer-column.first-footer {
  width: 100%;
  padding-right: 0;
}

.footer-column.footer-column-is-lower {
  padding-top: 35px;
}

.link {
  color: #b5b5be;
}

.link-navigation {
  color: #919197;
  width: 100%;
  text-decoration: none;
}

.link-navigation:hover {
  text-decoration: underline;
}

.link-navigation.w--current {
  color: #515157;
}

.paragraph-bottom-margin {
  margin-bottom: 5px;
}

.section-2 {
  background-color: var(--almost-white);
  padding: 5vh 6vw;
}

.question-container {
  background-color: #fff;
  border-radius: 3px;
  flex-direction: column;
  align-items: stretch;
  margin-top: 16px;
  padding-left: 32px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #ddd;
}

.question-line {
  background-image: linear-gradient(to bottom, var(--tomato), var(--tomato));
  width: 2px;
  height: 32px;
}

.question {
  color: #222;
  justify-content: flex-end;
  align-items: center;
  padding-top: 11px;
  padding-bottom: 11px;
  display: flex;
}

.plus-icon-h-line {
  background-color: #222;
  border-radius: 1px;
  width: 100%;
  height: 2px;
  margin: auto;
  position: absolute;
  inset: 0;
}

.answer {
  padding-right: 30px;
}

.question-text {
  flex: 1;
}

.plus-icon {
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  margin-right: 0;
  position: relative;
}

.plus-icon-v-line {
  background-color: #222;
  border-radius: 1px;
  width: 100%;
  height: 2px;
  margin: auto;
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
}

.faq-list {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 8.33%;
  margin-right: 0%;
  padding-left: 15px;
  padding-right: 15px;
}

.features-content-second {
  flex: 1;
}

.left-wrapper-services {
  z-index: 2;
  align-items: center;
  height: auto;
  display: flex;
  position: relative;
}

.circle-features-icon {
  background-color: var(--tomato);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  margin-right: 15px;
  display: flex;
}

.right-padding {
  padding-left: 60px;
}

.features-wrapper-third {
  align-items: flex-start;
  margin-bottom: 30px;
  margin-right: 20px;
  display: flex;
}

.text-block {
  font-weight: 600;
}

.paragraph-2 {
  margin-left: 20px;
}

.ivc-application-action-block {
  justify-content: flex-end;
  margin-top: 15px;
  margin-bottom: 0;
  display: flex;
}

.secondary-button {
  border: 2px solid var(--tomato);
  color: var(--tomato);
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
  justify-content: center;
  min-width: 160px;
  margin-right: 0;
  padding: 15px 25px;
  font-family: Open Sans, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.secondary-button:hover {
  border: 2px solid var(--tomato);
  color: var(--tomato);
  background-color: #a5a5a51a;
}

.secondary-button.smaller {
  min-width: 140px;
  margin-right: 0;
  padding: 10px 15px;
}

.ivc-spacer {
  width: 10px;
  height: 10px;
}

.ivc-spacer.s20, .ivc-spacer._20 {
  width: 20px;
  height: 20px;
}

.ivc-spacer._50 {
  width: 50px;
  height: 50px;
}

.div-block {
  flex-direction: row;
  display: flex;
}

.ivc-application-instruction-block {
  border: 1px solid var(--tomato);
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

.heading-2 {
  color: var(--grey-333);
}

.ivc2-section {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.ivc2-grid-header {
  grid-template: ". ."
  / 1fr 3fr;
  align-items: start;
  height: 100%;
  min-height: 60vh;
  padding: 20px;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #f26340;
  border: 2px solid #f26340;
  border-radius: 4px;
  justify-content: center;
  min-width: 160px;
  margin-right: 0;
  padding: 15px 25px;
  font-family: Open Sans, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.button-3:hover {
  color: #f26340;
  background-color: #fff;
  border: 2px solid #f26340;
}

.heading-3 {
  margin-top: 0;
}

.ivc2-header-shapes {
  z-index: -1;
  float: left;
  background-image: url('../images/ivc-background-shape.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 60vw;
  max-width: none;
  height: 120vh;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -180px;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-4 {
  background-color: var(--almost-white);
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.container-2 {
  background-color: #fff;
  min-height: 60vh;
}

.client-logo {
  cursor: pointer;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-bottom: 1px #d6dfe1;
  border-right: 1px #000;
  align-self: auto;
  min-height: 50px;
  margin: 20px;
  padding: 0;
}

.client-logo.hearx {
  background-image: url('../images/Hearx.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  align-self: auto;
}

.client-logo.econocare {
  background-image: url('../images/Econocare.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.client-logo.allegra {
  background-image: url('../images/Allegra.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.client-logo.labstix {
  background-image: url('../images/Labstix.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.client-logo.retire {
  background-image: url('../images/Retireathome.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.client-logo.memo {
  background-image: url('../images/Memo-logomark-and-wordmark-green.svg');
  background-repeat: no-repeat;
  background-size: contain;
  align-self: start;
}

.text-block-2 {
  text-align: center;
  padding: 50px;
}

.question-grid {
  flex: 1;
  grid-template: ". . ."
  / 3.5fr .25fr .25fr;
  place-items: center start;
}

.nav-link-2 {
  display: block;
}

.utility-page-wrap {
  flex-direction: column;
  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;
  justify-content: center;
  align-items: center;
  width: 260px;
  display: flex;
}

.heading-5, .heading-6 {
  color: #333;
}

.grid-2 {
  background-color: #fff;
  border-radius: 3px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
}

.under-construction {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 41.33%;
  height: 40vh;
  margin-left: 0%;
  margin-right: 0%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.section-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero5-image {
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 35%;
  box-shadow: 1px 1px 15px 1px #00000057;
}

.feature-text {
  margin-bottom: 20px;
  padding-right: 80px;
}

._6-col {
  width: 460px;
  margin-right: 20px;
  display: inline-block;
}

._6-col._6-col-last {
  margin-right: 0;
}

.tagline {
  opacity: .6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.wrap {
  width: auto;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.wrap._w-custom.hero5 {
  flex-direction: row;
  align-items: center;
  width: auto;
  max-width: 1200px;
  height: 674px;
  display: flex;
  position: relative;
}

.wrap.wrap-vertical {
  flex-direction: row;
}

.wrap.wrap-vertical.always {
  flex-direction: column;
}

.wrap.white-bg {
  background-color: #fff;
}

.wrap.doctors {
  justify-content: center;
}

.wrap.doctors.empty {
  background-color: #0000;
  justify-content: center;
}

.feature-image {
  border-radius: 5px;
  display: inline-block;
  position: static;
  top: 50px;
  bottom: 0;
  left: 0%;
}

.wrap-2 {
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wrap-2._w-custom.hero1 {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding-top: 50px;
}

.wrap-2._w-custom.nav1-light {
  justify-content: space-between;
  align-items: center;
  width: auto;
  max-width: 1200px;
  display: flex;
}

._4-col {
  flex: 0 auto;
  align-self: center;
  width: 33%;
  margin-right: 0;
  display: inline-block;
}

._8-col {
  width: 620px;
  margin-right: 20px;
  display: inline-block;
}

._8-col._8-col-last {
  width: 66%;
  margin-right: 0;
}

.header-text {
  margin-bottom: 20px;
  padding-right: 80px;
}

.hero1-headline-wrapper {
  text-align: center;
  width: 620px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hero1-image {
  margin-top: 25px;
}

.doctor-wrapper {
  flex-flow: wrap;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.doctor_info_wrapper {
  cursor: default;
  flex-direction: column;
  width: 300px;
  min-height: 200px;
  margin-top: 60px;
  margin-left: 40px;
  margin-right: 40px;
  display: flex;
}

.d-76-social-media-wrapper {
  flex: 0 auto;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0;
  margin-bottom: 10px;
  display: none;
}

.d-76-h4-heading {
  color: #313131;
  text-align: center;
  margin-top: 60px;
  font-size: 24px;
  font-weight: 600;
}

.doctor_qualification {
  color: var(--tomato);
  text-align: center;
  margin-top: 0;
  font-size: 14px;
  font-weight: 700;
}

.doctor_image {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('../images/image-1.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 8px;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 300px;
  height: 300px;
  display: block;
  box-shadow: 0 10px 20px -8px #0003;
}

.doctor_image.precious {
  background-image: url('../images/precious.jpg');
}

.doctor_image.stephan {
  background-image: url('../images/ivc_doctor-–-14.jpg');
}

.doctor_image.samu {
  background-image: url('../images/samke.png');
}

.doctor_image.theana {
  background-image: url('../images/theana.jpg');
}

.doctor_image.dalene {
  background-image: url('../images/ivc_doctor-–-16.jpg');
}

.doctor_image.natha {
  background-image: url('../images/ivc_doctor-–-5.jpg');
}

.doctor_image.bianca {
  background-image: url('../images/ivc_doctor-–-13.jpg');
}

.doctor_image.christa {
  background-image: url('../images/ivc_doctor-–-12.jpg');
}

.doctor_image.tayyib {
  background-image: url('../images/ivc_doctor-–-11.jpg');
}

.doctor_image.spiros {
  background-image: url('../images/ivc_doctor-–-10.jpg');
}

.doctor_image.leeane {
  background-image: url('../images/ivc_doctor-–-9.jpg');
}

.doctor_image.luzanne {
  background-image: url('../images/ivc_doctor-–-8.jpg');
}

.doctor_image.melanie {
  background-image: url('../images/melaniek.jpg');
}

.doctor_image.reyhana {
  background-image: url('../images/ivc_doctor-–-6.jpg');
}

.doctor_image.camelia {
  background-image: url('../images/dr_bender.png');
}

.doctor_image.ilse {
  background-image: url('../images/dr_domingo.png');
}

.doctor_image.marlize {
  background-image: url('../images/ivc_doctor-–-17.jpg');
}

.doctor_image.ram {
  background-image: url('../images/ivc_doctor-–-18.jpg');
}

.doctor_image.amandahart {
  background-image: url('../images/ivc_doctor-–-19.jpg');
}

.doctor_image.farha {
  background-image: url('../images/ivc_doctor-–-20.jpg');
}

.doctor_image.mariaankuhn {
  background-image: url('../images/ivc_doctor-–-24.jpg');
}

.doctor_image.riaan {
  background-image: url('../images/riaan.jpg');
}

.doctor_image.chrisme {
  background-image: url('../images/chrisme.jpg');
}

.doctor_image.herina {
  background-image: url('../images/herina.jpg');
}

.doctor_image.nadine {
  background-image: url('../images/nadine.jpg');
}

.doctor_image.kirsten {
  background-image: url('../images/kirsten.jpg');
}

.doctor_image.mia {
  background-image: url('../images/mia.jpg');
}

.d-76-paragraph {
  color: #5e5e5e;
  text-align: center;
  margin-top: 0;
  font-size: 14px;
}

.d-76-paragraph.orange {
  color: var(--tomato);
}

.d-76-paragraph.justify {
  text-align: justify;
}

.d-76-icon {
  color: #5e5e5e;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  transition: color .2s;
}

.d-76-icon:hover {
  color: #4d16dd;
}

.d-76-icon.twitter {
  margin-bottom: -2px;
  font-size: 18px;
}

.doctor_bio {
  flex-direction: column;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  display: flex;
  overflow: hidden;
}

.calendly-inline-widget {
  background-color: #0000;
  height: 90vh;
  min-height: 85vh;
}

.booking-wrap {
  flex: 1;
  padding-top: 2vh;
}

.hero-paragraph-3 {
  color: #c7c7c9;
  text-align: left;
  margin-bottom: 9px;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 300;
  line-height: 31px;
  position: static;
}

.hero-paragraph-3.error {
  color: #d3788a;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 7px;
  padding-right: 7px;
  font-size: 18px;
  font-weight: 400;
}

.hero-paragraph-3.success {
  color: #fff;
  text-align: center;
  background-color: #76d895;
  border-radius: 10px;
  padding: 15px;
  font-size: 20px;
}

.login-form-container {
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.hero-paragraph-6 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 2px;
  font-size: 18px;
  font-weight: 300;
  line-height: 31px;
}

.hero-paragraph-6.login {
  color: #fff;
}

.hero-paragraph-6.login.protected_page {
  color: var(--black);
}

.text-field-4 {
  border-color: #e4e4e4;
  border-radius: 4px;
  height: 55px;
  margin-bottom: 20px;
  font-weight: 400;
}

.checkbox {
  color: #383838;
}

.text-field-login-form {
  color: #c7c7c9;
  text-align: center;
  border-color: #e4e4e4;
  border-radius: 4px;
  height: 55px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 400;
}

.div-block-82 {
  padding-top: 20px;
}

.div-block-78 {
  background-color: var(--white);
  border: 1px #f0f0f0;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: auto;
  height: auto;
  padding: 80px;
  display: flex;
}

.link-8 {
  color: #9f968b;
  font-weight: 400;
  text-decoration: none;
}

.link-8:hover {
  color: #fff;
  text-decoration: none;
}

.error-message-2 {
  border-radius: 5px;
  margin-top: 20px;
  padding: 16px 15px;
}

.hero-link-3 {
  color: #d8d8d8;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
}

.form-block {
  color: #d47789;
  justify-content: center;
  width: 100%;
  display: block;
}

.form {
  text-align: left;
  width: 100%;
}

.login-form-head-2 {
  padding-bottom: 15px;
  overflow: visible;
}

.link-3 {
  float: right;
  color: #9f968b;
  text-align: right;
  justify-content: space-between;
  padding-left: 0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

.link-3:hover {
  text-decoration: underline;
}

.section-7 {
  background-image: linear-gradient(#000 4%, #00000063 55%, #000), url('../images/slide-contatti.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 100vh;
  display: flex;
}

.section-7.about {
  background-image: linear-gradient(#000 19%, #00000063 51%, #000 87%), url('../images/1.jpg');
  align-items: center;
}

.hero-head-4 {
  color: #797979;
  width: auto;
  margin-top: 12px;
  font-size: 26px;
  font-weight: 300;
  display: inline-block;
}

.hero-head-4.login {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

.hero-head-4.login.protected_page {
  color: var(--black);
}

.submit-button-2 {
  color: #fff;
  background-color: #9f968b;
  border-radius: 4px;
  width: 100%;
  height: 55px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.submit-button-2:hover {
  background-color: #695e51;
}

.success-message-2 {
  background-color: #0000;
}

.field-label {
  color: #a5a5a5;
  font-size: 14px;
  font-weight: 400;
}

.checkbox-field {
  float: left;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-bottom: 20px;
  display: inline-block;
}

.form-2 {
  flex-direction: column;
  align-items: center;
  display: block;
}

.div-block-78-copy {
  background-color: var(--white);
  border: 1px #f0f0f0;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: auto;
  height: auto;
  padding: 80px;
  display: flex;
  box-shadow: 1px 1px 3px #00000057;
}

.protected_page {
  color: var(--tomato);
}

.password_block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  border: 1px #f0f0f0;
  border-radius: 10px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  width: auto;
  height: auto;
  padding: 80px;
  display: flex;
  box-shadow: 1px 1px 3px #00000057;
}

.password_block.wrap_900 {
  float: none;
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 500px;
  max-height: 500px;
  display: block;
  position: static;
}

.image-2 {
  padding-bottom: 13px;
}

.empty-state {
  width: 100vw;
}

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

.empty_state.doctors {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 80vh;
  display: flex;
}

.lottie-animation {
  align-self: center;
  width: 30vw;
}

.text-block-4 {
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  position: static;
  top: -188px;
}

.div-block-83 {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav1 {
  background-color: #0000;
  width: 100%;
}

.text-16 {
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
}

.link-light {
  opacity: .6;
  color: #111212;
  cursor: pointer;
  line-height: 24px;
  transition: color .4s, transform .4s, opacity .4s;
}

.link-light:hover {
  opacity: 1;
  color: #111212;
  transform: translate(0, -2px);
}

.link-light:active {
  opacity: .9;
  transform: translate(0, -1px);
}

.link-light.navigation1-link-light {
  opacity: .8;
  margin-right: 30px;
}

.nav1-logo-wrapper {
  flex: none;
  align-items: center;
  display: flex;
}

.btn {
  float: none;
  color: #fff;
  text-align: center;
  background-color: #1991eb;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 11px 25px;
  line-height: 24px;
  transition: color .2s, box-shadow .2s, background-color .2s, transform .4s;
  display: inline-block;
}

.btn:hover {
  color: #fff;
  background-color: #1386dd;
  border-color: #0c6eb8;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px #0000001a;
}

.btn:active {
  transform: translate(0, -1px);
  box-shadow: 0 1px 1px #0000001a;
}

.btn.btn-outline-light {
  color: #111212;
  background-color: #0000;
  border: 1px solid #1112120d;
}

.btn.btn-outline-light:hover {
  background-color: var(--tomato);
  color: var(--white);
  border-color: #1112121a;
  box-shadow: 0 1px 3px #0000000d;
}

.btn.btn-outline-light:active {
  box-shadow: 0 1px 1px #0000000d;
}

.nav1-wrap {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.nav1-menu-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacer {
  width: 10px;
  height: 10px;
}

.spacer._30 {
  width: 30px;
  height: 30px;
}

.spacer._100 {
  width: 100px;
  height: 100px;
}

.grid-3 {
  flex: 1;
  grid-template-columns: 1fr 1fr 1fr;
}

.spacer-2 {
  min-width: 50px;
  min-height: 50px;
}

.onboarding-image {
  max-width: 200px;
}

.div-block-9 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.paragraph-3 {
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 26px;
}

.heading-7 {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.right-hand-banner {
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  display: flex;
}

.right-hand-banner.options {
  padding-right: 50px;
}

.right-hand-banner.onboard {
  padding-left: 50px;
}

.input-label {
  color: #000;
  text-align: center;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  min-height: 75px;
  margin-bottom: 30px;
  margin-right: 30px;
  padding: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4em;
  text-decoration: none;
  transition: background-color .2s, box-shadow .4s, transform .4s cubic-bezier(.25, .1, 0, 1.58), border-color .2s;
}

.input-label:hover {
  border-color: #000;
  transform: translate(0, -10px);
  box-shadow: 0 20px 30px -10px #00000021;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 900px;
  height: 100%;
  min-height: 30vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.tittle-banner {
  color: #2b2b2b;
  font-family: Montserrat, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
}

.html-embed {
  height: 80vh;
}

.div-block-84 {
  justify-content: center;
  align-items: center;
  margin-top: 61px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.lottie-animation-2 {
  width: 400px;
}

html.w-mod-js [data-ix="fade-up-1"], html.w-mod-js [data-ix="fade-up-2"], html.w-mod-js [data-ix="fade-up-3"] {
  opacity: 0;
  transform: translate(0, 60px);
}

@media screen and (max-width: 991px) {
  .icon-2 {
    font-size: 30px;
  }
  .align-right.flex-center-ipad {
    margin-right: 0;
    justify-content: flex-end;
  }
  .button.relative {
    top: -175px;
  }
  .nav-menu {
    background-color: #fff;
    padding-bottom: 10px;
    box-shadow: 0 12px 19px -10px rgba(0, 0, 0, .24);
  }
  .flex-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .flex-row.make-vertical {
    align-items: flex-start;
  }
  .icon {
    display: none;
  }
  .navigation {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
  }
  .nav-link {
    color: #6b6b6b;
    text-align: left;
    max-width: 100%;
    padding: 15px 20px;
  }
  .menu-button {
    padding: 0px 15px;
  }
  .menu-button.w--open {
    background-color: #fff;
  }

  /* Added styles for menu button icons */
  .nav1-menu-btn .w-icon-nav-menu {
    color: #000000 !important; /* Black color */
    font-size: 22px; /* Adjusted size */
  }

  .navigation .menu-button .w-icon-nav-menu { /* Targets icon in the second navbar */
    color: #000000 !important; /* Black color */
    /* font-size is already 30px via .icon-2, so no need to repeat if .icon-2 is on the w-icon-nav-menu element or its parent */
  }
  /* End of added styles */

  .brand {
    padding-left: 15px;
  }

  .navigation {
    height: 80px;
  }

  .nav-link {
    float: none;
    text-align: left;
    padding-right: 20px;
    display: block;
  }

  .menu-button {
    flex: 0 auto;
  }

  .menu-button.w--open {
    opacity: .5;
    background-color: #0000;
  }

  .brand {
    flex: 1;
  }

  .ivc-header-shapes {
    max-width: 100%;
    display: none;
    top: 0;
    bottom: -41px;
    right: 0;
  }

  .paragraph-small {
    font-size: 13px;
    line-height: 20px;
  }

  .card-corner {
    font-size: 15px;
    line-height: 20px;
  }

  .section {
    background-position: 0 100%;
    background-size: auto 80%;
    padding: 80px 8px;
    overflow: hidden;
  }

  .section.ivc-about-section {
    height: 70vh;
    padding-top: 6vh;
  }

  .section.ivc-testimonial-section {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .section.ivc-why-join-virtualcare {
    height: auto;
    padding-top: 5vh;
  }

  .vertical-header-wrapper {
    display: none;
  }

  .section-header-wrapper {
    width: 470px;
    margin-bottom: 24px;
  }

  .card-corner-line {
    margin-left: 24px;
  }

  .feature-card {
    margin-left: 8px;
    margin-right: 8px;
    padding: 72px 16px 56px;
  }

  .side-feature-mini-wrapper {
    padding-top: 16px;
  }

  .side-feature-image {
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .side-feature-header {
    font-size: 28px;
  }

  .side-feature-content {
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 4%;
    padding-right: 4%;
  }

  .side-feature-mini {
    padding-right: 24px;
  }

  .review-content {
    padding-left: 32px;
  }

  .slider-arrow {
    margin-left: 24px;
  }

  .review-slide {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .review-text {
    font-size: 17px;
    line-height: 24px;
  }

  .testimonials {
    padding-left: 120px;
    padding-right: 120px;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
  }

  .question-container {
    padding-left: 24px;
  }

  .faq-list {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0;
    padding-right: 0;
  }

  .left-wrapper-services {
    height: auto;
    margin-top: 50px;
  }

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

  .button-3 {
    min-width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .heading-3 {
    font-size: 28px;
    line-height: 35px;
  }

  .ivc2-header-shapes {
    max-width: 100%;
    top: 0;
    bottom: -41px;
    right: 0;
  }

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

  .client-logo {
    width: 90%;
    padding: 30px 60px;
  }

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

  .under-construction {
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 4%;
    padding-right: 4%;
  }

  .text-block---work-with-us {
    height: 20vh;
  }

  .hero5-image {
    margin-top: -10px;
    position: static;
  }

  .feature-text {
    text-align: center;
    padding-right: 0;
  }

  ._6-col {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  ._6-col._6-col-last {
    width: 100%;
  }

  .wrap {
    width: 645px;
  }

  .wrap._w-custom.hero5 {
    text-align: center;
    flex-direction: column-reverse;
    height: auto;
    padding-top: 80px;
  }

  .wrap.wrap-vertical {
    flex-direction: column;
    align-items: center;
  }

  .wrap.wrap-vertical.wrap-vertical-reversed {
    flex-direction: column-reverse;
  }

  .wrap.doctors {
    justify-content: center;
    width: auto;
  }

  .feature-image {
    width: 100%;
    margin-top: -10px;
    position: static;
  }

  .wrap-2 {
    width: 645px;
  }

  .wrap-2._w-custom.nav1-light {
    background-color: #fff;
    width: 100%;
    padding: 0;
    display: block;
  }

  ._4-col {
    width: 100%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }

  ._4-col._4-col-centre {
    text-align: center;
    align-self: center;
  }

  ._8-col {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  ._8-col._8-col-last {
    width: 100%;
  }

  .header-text {
    text-align: center;
    padding-right: 0;
  }

  .hero1-headline-wrapper {
    width: 100%;
  }

  .doctor-wrapper {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .doctor_info_wrapper {
    align-items: stretch;
    margin-left: 20px;
    margin-right: 20px;
  }

  .calendly-inline-widget {
    min-height: 85vh;
  }

  .booking-wrap {
    padding-top: 80px;
  }

  .hero-paragraph-3 {
    text-align: center;
    margin-top: 0;
    font-size: 22px;
  }

  .hero-paragraph-3.error {
    margin-top: 0;
  }

  .login-form-container {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .hero-paragraph-6, .hero-link-3 {
    font-size: 18px;
  }

  .form-block {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .login-form-head-2 {
    padding-top: 20px;
  }

  .hero-head-4 {
    font-size: 35px;
  }

  .hero-head-4.login {
    margin-top: 0;
    font-size: 26px;
  }

  .lottie-animation {
    width: 50vw;
  }

  .text-block-4 {
    top: -135px;
  }

  .nav1-menu-btn {
    background-color: #0000;
    margin-right: 30px;
    padding: 0;
  }

  .nav1-menu-btn:active {
    background-color: #0000;
  }

  .nav1-menu-btn.w--open {
    background-color: #0000;
    margin-right: 30px;
  }

  .link-light.navigation1-link-light {
    margin-right: 0;
    padding: 20px;
  }

  .nav1-logo-wrapper {
    flex: none;
    justify-content: space-between;
    align-items: center;
    margin-left: 30px;
    display: flex;
  }

  .nav1-wrap {
    flex-direction: row;
    padding-top: 29px;
    padding-bottom: 29px;
  }

  .nav1-menu-wrapper {
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    display: flex;
    box-shadow: 0 1px 3px #1112120f;
  }

  .right-hand-banner {
    align-items: center;
    min-height: 0;
  }

  .right-hand-banner.options, .right-hand-banner.onboard {
    text-align: left;
    align-items: flex-start;
  }

  .input-label {
    flex: 0 auto;
    width: 80%;
    margin-right: 0;
  }

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

  .tittle-banner {
    font-size: 50px;
    line-height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .button.relative {
    position: static;
    top: -4px;
  }

  .ivc-header-shapes {
    background-size: 90%;
    width: 90vw;
  }

  .feature-cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
  }

  .section {
    height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.ivc-about-section {
    height: 120%;
    padding-top: 8vh;
  }

  .section.ivc-virtualcare-section, .section.ivc-clinic-section, .section.ivc-virtualnurse-section {
    height: 90vh;
  }

  .section.ivc-why-join-virtualcare {
    height: 120%;
  }

  .section.ivc-virtualcare-faq-section, .section.ivc-virtualcare-application-process {
    height: 90vh;
  }

  .section-header-wrapper {
    width: auto;
  }

  .feature-card {
    flex: 0 auto;
    width: 66.66%;
    margin-bottom: 24px;
    margin-left: 0;
    margin-right: 0;
    padding: 56px 32px 48px;
  }

  .side-feature-mini-wrapper {
    flex-wrap: wrap;
  }

  .side-feature-image {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .side-feature-content {
    width: 100%;
    margin-top: 11vh;
    padding-top: 24px;
  }

  .side-feature {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .slider-arrow {
    display: none;
  }

  .testimonials {
    padding-left: 40px;
    padding-right: 40px;
  }

  .testimonoals-nav {
    margin-top: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 9px;
    position: relative;
  }

  .footer-column.footer-column-is-lower {
    margin-left: 20px;
  }

  .faq-list {
    width: 100%;
    padding-bottom: 24px;
  }

  .ivc2-grid-header {
    grid-template: "."
                   "."
                   / 4fr;
    justify-items: center;
  }

  .ivc2-grid-content-wrapper {
    text-align: center;
  }

  .ivc2-grid-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .ivc2-header-shapes {
    background-size: 90%;
    width: 90vw;
  }

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

  .client-logo {
    width: 90%;
    margin: 5px;
    padding: 0;
  }

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

  .under-construction {
    width: 100%;
    margin-top: 11vh;
    padding-top: 24px;
  }

  .text-block---work-with-us {
    height: 15vh;
  }

  ._6-col {
    margin-right: 0;
  }

  .wrap, .wrap-2 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .calendly-inline-widget {
    height: 100vh;
    min-height: 90vh;
  }

  .hero-paragraph-3 {
    margin-top: 0;
    margin-bottom: 5px;
    padding-bottom: 11px;
    font-size: 22px;
  }

  .hero-paragraph-3.error {
    font-size: 16px;
  }

  .login-form-container {
    display: block;
  }

  .hero-paragraph-6 {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .login-form-head-2 {
    padding-top: 20px;
  }

  .hero-head-4 {
    margin-bottom: 0;
    font-size: 28px;
  }

  .lottie-animation {
    width: 60vw;
  }

  .text-block-4 {
    position: static;
    top: -119px;
  }

  .nav1 {
    z-index: 10;
  }

  .nav1-menu-btn {
    margin-top: -4px;
    padding: 0;
  }

  .nav1-menu-btn.w--open {
    margin-top: -4px;
  }

  .nav1-logo-wrapper {
    display: flex;
  }

  .div-block-9 {
    text-align: center;
    align-items: center;
  }

  .right-hand-banner.options, .right-hand-banner.onboard {
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-4 {
    grid-template-rows: auto auto;
    grid-template-columns: 3.75fr;
    margin-top: 45px;
  }

  .tittle-banner {
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 479px) {
  .align-right.flex-center-ipad {
    margin-bottom: 30px;
  }

  .button.relative {
    position: static;
  }

  .logo-image {
    width: 50px;
    margin-right: 10px;
  }

  .navigation {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .ivc-header-shapes {
    width: 110vw;
    height: 102vh;
    bottom: 0;
  }

  .section.ivc-about-section {
    padding-top: 10vh;
  }

  .section.ivc-virtualcare-section {
    height: auto;
  }

  .section.ivc-clinic-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.ivc-virtualnurse-section {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.ivc-virtualcare-faq-section, .section.ivc-virtualcare-application-process {
    height: auto;
  }

  .section-header-wrapper {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .feature-card {
    width: 100%;
  }

  .side-feature-image {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .side-feature-content {
    margin-top: 0;
    padding-top: 0;
  }

  .side-feature-mini {
    width: 100%;
  }

  .review-content {
    text-align: center;
    padding-left: 0;
  }

  .review-slide {
    flex-direction: column;
    justify-content: center;
  }

  .review-author-info {
    font-size: 10px;
  }

  .testimonials {
    padding-left: 24px;
    padding-right: 24px;
  }

  .faq-list {
    padding-left: 8px;
    padding-right: 8px;
  }

  .ivc-application-action-block {
    flex-direction: column;
  }

  .ivc-spacer {
    height: 10px;
  }

  .image {
    min-width: 100%;
  }

  .ivc2-header-shapes {
    width: 110vw;
    height: 102vh;
    bottom: 0;
  }

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

  .client-logo {
    width: 90%;
    padding: 20px;
  }

  .under-construction {
    margin-top: 0;
    padding-top: 0;
  }

  .doctor_info_wrapper {
    align-items: center;
    width: 240px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .doctor_image {
    width: 220px;
    height: 220px;
  }

  .hero-paragraph-3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 22px;
    line-height: 24px;
  }

  .hero-paragraph-3.error {
    font-size: 16px;
  }

  .login-form-container {
    flex-flow: column wrap;
    flex: 1;
    align-content: center;
    margin-top: 0;
    padding-top: 0;
    display: block;
  }

  .hero-paragraph-6 {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 17px;
  }

  .hero-paragraph-6.login.protected_page {
    text-align: center;
  }

  .div-block-78 {
    padding: 50px 30px;
  }

  .hero-link-3 {
    text-align: center;
    font-size: 14px;
  }

  .login-form-head-2 {
    padding-top: 15px;
  }

  .hero-head-4 {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 35px;
  }

  .hero-head-4.login {
    font-size: 20px;
  }

  .div-block-78-copy, .password_block {
    padding: 50px 30px;
  }

  .lottie-animation {
    width: 90vw;
  }

  .text-block-4 {
    position: static;
  }

  .btn {
    text-align: center;
    display: block;
  }

  .input-label {
    width: 100%;
  }

  .grid-4 {
    grid-template-rows: auto .25fr auto;
    grid-template-columns: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .tittle-banner {
    font-size: 40px;
    line-height: 44px;
  }
}

#w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d8f8-3515614c {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d8fa-3515614c {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d8fc-3515614c {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d8fe-3515614c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d900-3515614c {
  grid-area: 1 / 1 / 2 / 2;
  place-self: auto;
}

#w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d902-3515614c {
  grid-area: 1 / 6 / 2 / 7;
  align-self: start;
}

#w-node-f1323130-5717-e6c2-239c-5f5a18b6d28b-18b6d289 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-f1323130-5717-e6c2-239c-5f5a18b6d297-18b6d289 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1323130-5717-e6c2-239c-5f5a18b6d2a8-18b6d289 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-c6be50a8-77ca-7832-2b90-9f0676f9d697-961008da {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-c6be50a8-77ca-7832-2b90-9f0676f9d69a-961008da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c6be50a8-77ca-7832-2b90-9f0676f9d69c-961008da {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-e451b518-34ea-d20b-724d-a86fb85acdd3-961008da {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-e451b518-34ea-d20b-724d-a86fb85acdd6-961008da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-e451b518-34ea-d20b-724d-a86fb85acdd8-961008da {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_9397fac8-cecb-9712-4888-392689137197-961008da {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-_9397fac8-cecb-9712-4888-392689137195-961008da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_9397fac8-cecb-9712-4888-39268913719a-961008da {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_26fc756d-fc46-b597-cb15-a41b0944d8d2-961008da {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-_26fc756d-fc46-b597-cb15-a41b0944d8d5-961008da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_26fc756d-fc46-b597-cb15-a41b0944d8d7-961008da {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_2a3f9d27-1607-b048-8f53-e0914f3775da-961008da {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-_2a3f9d27-1607-b048-8f53-e0914f3775dd-961008da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2a3f9d27-1607-b048-8f53-e0914f3775df-961008da {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_48629582-d730-53ee-7f43-0cfaa7413ac4-961008da {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-_48629582-d730-53ee-7f43-0cfaa7413ac7-961008da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_48629582-d730-53ee-7f43-0cfaa7413ac9-961008da {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_534f2cba-f636-8c44-0a4b-0df39c5b0a9a-961008da {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-_534f2cba-f636-8c44-0a4b-0df39c5b0a9d-961008da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_534f2cba-f636-8c44-0a4b-0df39c5b0a9f-961008da {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-_8f138f71-5ce2-aee7-a002-e44f570aeea2-961008da, #w-node-d9ac1bc2-24cc-446c-0ba2-0043bf76705d-f4948653, #w-node-d33b595b-db5b-4637-2fb0-ebd7b465074f-7e60826d {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_4bdd9542-16a7-33e8-4352-ca96700e43e2-7e60826d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-d33b595b-db5b-4637-2fb0-ebd7b465074f-236c1263 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-b0cc6ebc-2443-af30-b3d9-847c4610257b-236c1263 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_888e661b-9b90-a89b-afda-ec22a6db16c6-236c1263 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-_888e661b-9b90-a89b-afda-ec22a6db16c9-236c1263 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_888e661b-9b90-a89b-afda-ec22a6db16cb-236c1263 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-b0cc6ebc-2443-af30-b3d9-847c4610257f-236c1263 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-b0cc6ebc-2443-af30-b3d9-847c46102582-236c1263 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-b0cc6ebc-2443-af30-b3d9-847c46102584-236c1263 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-b0cc6ebc-2443-af30-b3d9-847c46102593-236c1263 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center end;
}

#w-node-b0cc6ebc-2443-af30-b3d9-847c46102596-236c1263 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-b0cc6ebc-2443-af30-b3d9-847c46102598-236c1263 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-d33b595b-db5b-4637-2fb0-ebd7b465074f-094b79ec {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 991px) {
  #w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d8f8-3515614c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d8fa-3515614c {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d902-3515614c {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-f1323130-5717-e6c2-239c-5f5a18b6d297-18b6d289 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d8fc-3515614c {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_0db1250c-3cfc-fc9b-4b06-c89651b5d902-3515614c {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-f1323130-5717-e6c2-239c-5f5a18b6d297-18b6d289 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f1323130-5717-e6c2-239c-5f5a18b6d2a8-18b6d289 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_8f138f71-5ce2-aee7-a002-e44f570aeea2-961008da, #w-node-d9ac1bc2-24cc-446c-0ba2-0043bf76705d-f4948653, #w-node-d33b595b-db5b-4637-2fb0-ebd7b465074f-7e60826d {
    grid-area: 1 / 1 / 2 / 2;
    place-self: auto;
  }

  #w-node-_4bdd9542-16a7-33e8-4352-ca96700e43e2-7e60826d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-d33b595b-db5b-4637-2fb0-ebd7b465074f-236c1263, #w-node-d33b595b-db5b-4637-2fb0-ebd7b465074f-094b79ec {
    grid-area: 1 / 1 / 2 / 2;
    place-self: auto;
  }
}


