:root {
  --black: #444;
  --pink: #ffcfef;
  --violet: #cfdaff;
  --white: white;
  --black-2: black;
}

.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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--black);
  background-color: #f5f7ff;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

h1 {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Circe, sans-serif;
  font-size: 4.8vw;
  font-weight: 800;
  line-height: 102%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Circe, sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 110%;
}

a {
  text-decoration: underline;
}

.section {
  width: 100%;
  padding: 100px 50px;
}

.section.main {
  height: 100vh;
  background-image: url('../images/pattern-medlab.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.legal-main {
  padding-top: 160px;
}

.section.section-404 {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.section.section-catalog {
  padding-top: 200px;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.main-btn {
  background-color: var(--pink);
  text-align: center;
  border-radius: 90px;
  padding: 20px 80px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  transition: all .3s;
}

.main-btn:hover {
  color: var(--black);
  background-color: #fff;
}

.main-btn.violet {
  background-color: var(--violet);
  flex: none;
  display: block;
}

.main-btn.violet:hover {
  color: var(--black);
  background-color: #fff;
}

.main-btn.violet.show-more {
  max-width: 300px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.main-btn.btn-card {
  width: auto;
  flex: none;
  padding: 17px 40px;
  font-size: 15px;
}

.main-btn.btn-card.grey {
  color: var(--black);
  background-color: #fbfbfb;
  flex: none;
  font-size: 15px;
}

.main-btn.btn-card.grey:hover {
  color: var(--white);
  background-color: #cfdaff;
}

.main-btn.btn-submit {
  max-width: 250px;
  background-color: var(--pink);
}

.main-btn.btn-submit:hover {
  background-color: var(--violet);
  color: var(--white);
}

.main-btn.btn-404 {
  max-width: 300px;
  margin-top: 60px;
}

.main-btn.btn-404:hover {
  background-color: var(--violet);
  color: var(--white);
}

.wrap-btn {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.wrap-main-content-left {
  max-width: 55%;
}

.main-img {
  max-width: 55%;
  position: absolute;
  top: auto;
  bottom: -15%;
  left: auto;
  right: -15%;
}

.txt-main {
  max-width: 100%;
}

.container-menu {
  width: 100%;
  max-width: 1280px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.navbar {
  background-color: rgba(221, 221, 221, 0);
  padding-left: 50px;
  padding-right: 50px;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.logo-img {
  width: 150px;
}

.menu-item {
  padding: 10px 0 0;
  font-size: 17px;
  line-height: 22px;
  transition: all .2s;
}

.menu-item:hover {
  color: #bebebe;
}

.menu-item.w--current {
  color: #a8a8a8;
}

.nav-menu {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  margin-left: 80px;
  margin-right: auto;
  display: flex;
}

.brn-menu {
  text-align: center;
  background-color: #ffcfef;
  border-radius: 90px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all .3s;
}

.brn-menu:hover {
  background-color: #cfdaff;
}

.icon-menu {
  width: 12%;
}

.wrap-btn-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.wrap-btn-menu.mobile {
  display: none;
}

.grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.card {
  max-width: none;
  background-color: #fff;
  border-radius: 30px;
  flex: none;
  padding: 0;
}

.heading-card {
  font-family: Circe, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 110%;
}

.heading-card.mrg-btm {
  margin-bottom: 20px;
}

.top-card {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.small-txt-card {
  color: #888;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.txt-card {
  font-size: 17px;
  line-height: 28px;
}

.card-btm {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.img-card {
  max-width: 90%;
  margin-bottom: 20px;
  padding-top: 0;
}

.wrap-content-card {
  height: auto;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.max-width {
  max-width: 60%;
  margin-top: 30px;
}

.max-width.mrg-top {
  margin-top: 10px;
}

.grid-2 {
  max-width: 90%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr;
  margin-top: 60px;
}

.card-large {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  border-radius: 30px;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px;
  display: flex;
}

.wrap-left-card {
  max-width: 60%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.cta {
  background-color: #444;
  border-radius: 40px;
  justify-content: space-between;
  padding: 70px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta.light {
  background-color: #fff;
  flex-direction: column;
  padding-left: 60px;
  padding-right: 60px;
}

.h1-cta {
  color: var(--white);
  margin-bottom: 20px;
}

.h1-cta.dark {
  color: var(--black);
  margin-bottom: 10px;
}

.txt-cta {
  color: var(--white);
  font-size: 18px;
}

.txt-cta.dark {
  max-width: 75%;
  color: var(--black);
}

.btn-app {
  color: rgba(68, 68, 68, 0);
  background-color: #fff;
  background-image: url('../images/app-store-medlab.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60%;
  border-radius: 20px;
  padding: 20px 50px;
}

.btn-app.google {
  background-image: url('../images/google-play-medlab.svg');
  padding-left: 50px;
  padding-right: 50px;
}

.wrap-left-cta {
  max-width: 55%;
}

.img-cta {
  max-width: 60%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: -14%;
}

.wrap-btn-cta {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.footer {
  width: 100%;
  background-color: #424141;
  padding: 100px 50px;
}

.grid-footer {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 2fr;
}

.colomn-footer {
  flex-direction: column;
  display: flex;
}

.txt-footer {
  color: var(--white);
  margin-top: 20px;
  font-size: 16px;
  font-weight: 200;
  line-height: 24px;
}

.footer-link {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 200;
  line-height: 22px;
  text-decoration: none;
  transition: all .3s;
}

.footer-link:hover {
  color: #c2c2c2;
}

.footer-link.last {
  margin-bottom: 0;
}

.heading-footer {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 22px;
}

.text-field {
  height: 60px;
  background-color: #373636;
  border: 0 #000;
  border-radius: 10px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.text-field:active {
  color: #dbdbdb;
}

.text-field:focus {
  color: #e7e7e7;
}

.form {
  position: relative;
}

.submit-button {
  width: 53px;
  height: 53px;
  color: rgba(68, 68, 68, 0);
  background-color: #ffcfef;
  background-image: url('../images/icon-form.svg');
  background-position: 48%;
  background-repeat: no-repeat;
  background-size: 26px;
  border-radius: 10px;
  position: absolute;
  top: auto;
  bottom: 50%;
  left: auto;
  right: 4px;
  transform: translate(0, 50%);
}

.form-block {
  margin-top: 10px;
  margin-bottom: 0;
}

.wrap-left-form {
  max-width: none;
}

.input-custom {
  height: 60px;
  color: var(--black-2);
  background-color: #f8f8f8;
  border: 0 #000;
  border-radius: 20px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 400;
}

.input-custom::-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.input-custom::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.form-block-cta {
  width: auto;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 0;
}

.checkbox {
  width: 50px;
  height: 24px;
  cursor: pointer;
  background-color: #fff;
  background-image: url('../images/check-grey-medlab.svg');
  background-position: 5%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-style: none;
  border-radius: 90px;
  margin-top: 0;
  margin-left: -15px;
  transition: all .3s;
  box-shadow: 0 1px 6px rgba(163, 163, 163, .29);
}

.checkbox.w--redirected-checked {
  width: 50px;
  height: 24px;
  background-color: #fff;
  background-image: url('../images/check-medlab.svg');
  background-position: 95%;
  background-size: 16px;
  margin-left: -15px;
  box-shadow: 0 1px 6px rgba(199, 199, 199, .32);
}

.checkbox.w--redirected-focus {
  width: 50px;
  height: 24px;
  box-shadow: none;
  background-image: url('../images/check-medlab.svg');
  background-position: 5%;
  background-repeat: no-repeat;
  background-size: 16px;
  margin-left: -15px;
}

.checkbox.w--redirected-focus-visible {
  width: 50px;
  height: 24px;
  margin-top: 0;
  margin-left: -15px;
}

.checkbox-label {
  margin-bottom: 0;
  font-size: 16px;
}

.checkbox-field {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.link {
  color: var(--black-2);
}

.form-cta {
  grid-column-gap: 20px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrap-calendar {
  background-color: #fff;
  background-image: url('../images/spiral-medlab-new-shadow-min.png');
  background-position: 95% 100%;
  background-repeat: no-repeat;
  background-size: 36%;
  border-radius: 30px;
  padding: 70px 40px;
}

.html-embed {
  width: 35%;
  flex: none;
  margin-top: 0;
}

.tabs-menu {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
  display: flex;
}

.tab {
  background-color: #f5f7ff;
  border-radius: 90px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all .3s;
}

.tab:hover {
  color: rgba(68, 68, 68, .62);
}

.tab.w--current {
  color: var(--black);
  background-color: #cfdaff;
  padding-left: 45px;
  padding-right: 45px;
}

.tabs {
  width: 100%;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 50px;
  display: flex;
}

.tabs-content {
  width: 100%;
  margin-left: 0;
}

.wrap-tab-content {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: flex-start;
  display: flex;
}

.tabs-menu {
  display: flex;
}

.tabs-menu-time {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.tabs-content-hidden {
  display: none;
}

.tab-time {
  background-color: #f7f7f7;
  border-radius: 90px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: all .3s;
}

.tab-time:hover {
  color: rgba(68, 68, 68, .5);
}

.tab-time.w--current {
  color: var(--black);
  background-color: #cfdaff;
}

.txt-block-time {
  text-align: center;
}

.h1-legal {
  font-size: 55px;
  font-weight: 700;
}

.txt-legal {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.txt-legal.max-width {
  max-width: 80%;
}

.txt-legal.mrg-btm-60 {
  margin-bottom: 60px;
}

.txt-legal.left-txt-legal {
  text-align: right;
  margin-top: 60px;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 400;
}

.flex-legal {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
  position: relative;
}

.wrap-left-legal {
  width: 60%;
}

.h2-legal {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
}

.list-item {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

.list-item.last {
  margin-bottom: 0;
}

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

.link-legal {
  color: var(--black-2);
}

.sidebar {
  width: 30%;
  min-height: 60vh;
  background-color: #fff;
  border-radius: 30px;
  flex: none;
  padding: 40px 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.item-sidebar {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 18px;
  text-decoration: none;
  display: block;
}

.item-sidebar.last {
  margin-bottom: 0;
}

.dropdown-toggle {
  width: 100%;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff;
  border-radius: 20px;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.dropdown {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  transition: all .3s;
}

.wrap-faq {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: space-between;
  align-items: start;
  display: grid;
}

.text-block {
  font-size: 18px;
  font-weight: 400;
}

.wrap-question {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.dropdown-list {
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 10px;
}

.txt-dropdown {
  font-size: 16px;
  font-weight: 400;
}

.h2-max-width {
  max-width: 70%;
}

.img-faq {
  max-width: 100%;
  position: static;
  top: auto;
  bottom: -14%;
  left: 0%;
  right: auto;
}

.wrap-left-faq {
  height: 100%;
}

.main-img-mobile {
  max-width: 55%;
  display: none;
  position: absolute;
  top: auto;
  bottom: -15%;
  left: auto;
  right: -15%;
}

.h1-404 {
  margin-bottom: 20px;
  font-size: 80px;
}

.wrap-404 {
  height: 60vh;
  background-color: #fff;
  background-image: url('../images/spiral-new-min.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 52%;
  border-radius: 40px;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  display: flex;
}

.tabs-catalog {
  margin-top: 60px;
}

.tabs-custom {
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 90px;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  display: flex;
}

.tabs-custom.w--current {
  border: 1px solid var(--pink);
  background-color: #fff;
  background-image: url('../images/img-9-new-test-shadow-min.png');
}

.txt-tab-custom {
  text-align: center;
  flex: none;
  margin-top: 100px;
  font-size: 16px;
  font-weight: 400;
}

.tabs-menu-custom {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  display: flex;
}

.img-tab {
  max-width: 110%;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.img-tab.img-tab-3 {
  max-width: 100%;
}

.grid-catalog {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.txt-main-catalog {
  max-width: 75%;
}

.h1-catalog {
  font-size: 70px;
}

.wrap-main-content-right {
  width: 500px;
  height: 600px;
  position: relative;
}

.main-hand-heart {
  z-index: 0;
  width: 130%;
  max-width: none;
  position: absolute;
  top: auto;
  bottom: -40%;
  left: auto;
  right: -60%;
}

.main-logo-3d {
  z-index: 1;
  width: 67%;
  max-width: none;
  position: absolute;
  top: auto;
  bottom: 33%;
  left: auto;
  right: 24%;
}

.main-medical-kit {
  z-index: 0;
  width: 57%;
  max-width: none;
  position: absolute;
  top: auto;
  bottom: 63%;
  left: auto;
  right: -27%;
}

.main-icon-bo {
  z-index: 0;
  width: 24%;
  max-width: none;
  position: absolute;
  top: auto;
  bottom: -5%;
  left: auto;
  right: 70%;
}

.main-icon-pill {
  z-index: 0;
  width: 18%;
  max-width: none;
  position: absolute;
  top: auto;
  bottom: -10%;
  left: auto;
  right: 45%;
}

.faq-img-wrapper {
  width: 100%;
  height: 350px;
  position: relative;
}

.faq-img-bo {
  width: 40%;
  position: absolute;
  top: 27%;
  bottom: auto;
  left: 7%;
  right: auto;
}

.faq-icon-pill {
  width: 20%;
  position: absolute;
  top: 59%;
  bottom: auto;
  left: 65%;
  right: auto;
}

@media screen and (min-width: 1440px) {
  .main-hand-heart {
    width: 140%;
    bottom: -44%;
    right: -70%;
  }

  .main-logo-3d {
    width: 73%;
    bottom: 35%;
    right: 19%;
  }

  .main-medical-kit {
    width: 63%;
    bottom: 66%;
    right: -40%;
  }

  .main-icon-bo {
    width: 30%;
    bottom: -7%;
    right: 68%;
  }

  .main-icon-pill {
    width: 23%;
    bottom: -12%;
    right: 36%;
  }
}

@media screen and (min-width: 1920px) {
  .main-hand-heart {
    width: 160%;
    bottom: -55%;
    right: -110%;
  }

  .main-logo-3d {
    width: 75%;
    bottom: 36%;
    right: -4%;
  }

  .main-medical-kit {
    width: 70%;
    bottom: 70%;
    right: -83%;
  }

  .main-icon-bo {
    width: 34%;
    bottom: -9%;
    right: 60%;
  }

  .main-icon-pill {
    width: 25%;
    bottom: -12%;
    right: 30%;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 55px;
  }

  h2 {
    font-size: 40px;
  }

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

  .section.legal-main {
    padding-top: 140px;
  }

  .section.section-404 {
    height: auto;
  }

  .section.section-catalog {
    padding-top: 140px;
  }

  .container.main-screen {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-btn {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
    line-height: 16px;
  }

  .main-btn.btn-404 {
    margin-top: 40px;
  }

  .wrap-btn {
    z-index: 2;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 40px;
  }

  .wrap-main-content-left {
    z-index: 2;
    max-width: 80%;
    position: relative;
  }

  .main-img {
    max-width: 60%;
    display: none;
    bottom: 2%;
    right: -15%;
  }

  .txt-main {
    max-width: none;
    font-size: 17px;
    line-height: 28px;
  }

  .logo-img {
    width: 135px;
  }

  .menu-item {
    margin-bottom: 10px;
    padding-top: 0;
  }

  .nav-menu {
    background-color: #f5f7ff;
    border: 1px #000;
    border-top: 1px solid #fff;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    flex-direction: column;
    margin-left: auto;
    padding: 20px 50px 40px;
    box-shadow: 0 2px 5px rgba(216, 216, 216, .23);
  }

  .icon-menu {
    width: 30px;
  }

  .wrap-btn-menu {
    display: none;
  }

  .wrap-btn-menu.mobile {
    margin-top: 20px;
    display: flex;
  }

  .grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 40px;
    display: grid;
  }

  .card {
    max-width: none;
  }

  .wrap-content-card {
    height: auto;
    padding-bottom: 60px;
  }

  .max-width {
    max-width: none;
    font-size: 17px;
  }

  .max-width.mrg-top {
    margin-top: 15px;
    font-size: 17px;
  }

  .grid-2 {
    max-width: none;
    margin-top: 40px;
  }

  .card-large {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .wrap-left-card {
    max-width: none;
    margin-bottom: 40px;
  }

  .cta {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 220px;
  }

  .cta.light {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .txt-cta {
    font-size: 17px;
  }

  .txt-cta.dark {
    max-width: none;
  }

  .wrap-left-cta {
    max-width: 85%;
  }

  .img-cta {
    max-width: 65%;
    bottom: -4%;
    right: -8%;
  }

  .grid-footer {
    grid-column-gap: 40px;
    grid-row-gap: 80px;
    grid-template-columns: 1fr 1fr;
  }

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

  .wrap-calendar {
    background-image: none;
    padding: 40px 30px;
  }

  .html-embed {
    width: 100%;
  }

  .tabs-menu {
    margin-bottom: 40px;
  }

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

  .wrap-tab-content {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column-reverse;
  }

  .tabs-menu-time {
    flex-flow: wrap;
  }

  .tab-time {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 14px;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: rgba(200, 200, 200, 0);
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .line {
    width: 27px;
    height: 2px;
    background-color: var(--black-2);
    color: var(--black);
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .line.last {
    margin-bottom: 0;
  }

  .h1-legal {
    margin-bottom: 10px;
  }

  .txt-legal.max-width {
    max-width: none;
    font-size: 16px;
  }

  .wrap-left-legal {
    width: auto;
  }

  .h2-legal {
    font-size: 25px;
  }

  .sidebar {
    display: none;
  }

  .wrap-faq {
    grid-template-columns: 1fr;
  }

  .text-block {
    font-size: 17px;
  }

  .h2-max-width {
    max-width: none;
  }

  .img-faq {
    max-width: 80%;
    position: relative;
    bottom: -6%;
  }

  .main-img-mobile {
    max-width: 80%;
    display: block;
    top: auto;
    bottom: -12%;
    left: auto;
    right: -20%;
  }

  .h1-404 {
    font-size: 60px;
  }

  .wrap-404 {
    height: auto;
    background-position: 120% 170%;
    background-size: 60%;
    padding-top: 100px;
    padding-bottom: 400px;
  }

  .tabs-menu-custom {
    margin-bottom: 60px;
  }

  .grid-catalog {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 80px;
    display: grid;
  }

  .txt-main-catalog {
    max-width: none;
    font-size: 17px;
    line-height: 28px;
  }

  .h1-catalog {
    font-size: 55px;
  }

  .wrap-main-content-right {
    height: 500px;
  }

  .main-hand-heart {
    width: 100%;
    bottom: -40%;
    right: -60%;
  }

  .main-logo-3d {
    width: 50%;
  }

  .main-medical-kit {
    width: 45%;
    bottom: 60%;
    right: -40%;
  }

  .main-icon-bo {
    width: 26%;
    right: 65%;
  }

  .main-icon-pill {
    width: 17%;
    bottom: -10%;
    right: 39%;
  }
}

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

  .section {
    padding: 60px 20px;
  }

  .section.main {
    padding: 140px 20px;
  }

  .section.section-404 {
    padding-top: 100px;
  }

  .wrap-btn {
    flex-wrap: wrap;
  }

  .wrap-main-content-left {
    max-width: none;
  }

  .main-img {
    max-width: 65%;
    bottom: 0%;
    right: -20%;
  }

  .txt-main {
    max-width: 80%;
    font-size: 16px;
  }

  .navbar {
    padding-left: 20px;
    padding-right: 20px;
    overflow: visible;
  }

  .logo-img {
    width: 130px;
  }

  .nav-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .txt-card {
    font-size: 15px;
  }

  .max-width.mrg-top {
    font-size: 16px;
  }

  .card-large {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta {
    padding-bottom: 270px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .cta.light {
    padding-left: 30px;
    padding-right: 30px;
  }

  .h1-cta {
    margin-bottom: 15px;
    font-size: 32px;
  }

  .txt-cta {
    font-size: 16px;
    font-weight: 200;
  }

  .txt-cta.dark {
    font-weight: 300;
  }

  .btn-app {
    background-size: 75%;
    border-radius: 10px;
    padding: 10px 20px;
  }

  .btn-app.google {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrap-left-cta {
    max-width: none;
  }

  .img-cta {
    max-width: 85%;
    bottom: 0%;
    right: 0%;
  }

  .wrap-btn-cta {
    flex-wrap: wrap;
  }

  .footer {
    padding: 60px 20px;
  }

  .grid-footer {
    grid-row-gap: 60px;
  }

  .txt-footer, .form-block {
    max-width: 80%;
  }

  .wrap-calendar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand, .brand-menu {
    padding-left: 0;
  }

  .h1-legal {
    margin-bottom: 20px;
    font-size: 50px;
  }

  .txt-legal.max-width {
    margin-top: 0;
  }

  .h2-legal {
    line-height: 130%;
  }

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

  .main-img-mobile {
    max-width: 80%;
    bottom: 0%;
    right: -18%;
  }

  .h1-404 {
    font-size: 50px;
  }

  .wrap-404 {
    background-position: 100% 110%;
    padding-top: 80px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tabs-catalog {
    margin-top: 40px;
  }

  .tabs-menu-custom {
    flex-wrap: wrap;
  }

  .txt-main-catalog {
    max-width: none;
    font-size: 16px;
  }

  .h1-catalog {
    font-size: 50px;
  }

  .wrap-main-content-right {
    height: 500px;
  }

  .main-hand-heart {
    right: -36%;
  }

  .main-logo-3d {
    bottom: 29%;
    right: 29%;
  }

  .main-medical-kit {
    bottom: 55%;
    right: -20%;
  }

  .main-icon-bo {
    width: 21%;
    right: 69%;
  }

  .main-icon-pill {
    width: 15%;
    right: 50%;
  }
}

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

  h2 {
    font-size: 35px;
  }

  .section.main {
    background-position: 100% 100%;
    background-size: 200%;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section.padding-top, .section.legal-main, .section.section-catalog {
    padding-top: 120px;
  }

  .main-btn, .main-btn.btn-card {
    width: 100%;
  }

  .wrap-btn {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .wrap-main-content-left {
    max-width: none;
  }

  .main-img {
    max-width: 100%;
    bottom: -6%;
    right: -26%;
  }

  .txt-main {
    max-width: none;
  }

  .navbar {
    overflow: visible;
  }

  .nav-menu {
    z-index: 5;
    opacity: 1;
    background-color: #f5f7ff;
    flex-direction: column;
    padding-right: 20px;
  }

  .grid {
    margin-top: 40px;
  }

  .heading-card {
    font-size: 20px;
  }

  .small-txt-card {
    font-size: 14px;
  }

  .max-width {
    margin-top: 20px;
    font-size: 16px;
  }

  .cta {
    padding-bottom: 250px;
  }

  .btn-app {
    width: 100%;
    background-size: 120px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .img-cta {
    max-width: 120%;
    bottom: 0%;
    right: -20%;
  }

  .footer {
    overflow: hidden;
  }

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

  .txt-footer {
    max-width: none;
  }

  .footer-link {
    font-size: 14px;
    line-height: 20px;
  }

  .heading-footer {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .form-block {
    max-width: none;
  }

  .form-cta {
    grid-row-gap: 20px;
  }

  .wrap-calendar {
    padding-left: 30px;
    padding-right: 30px;
    overflow: hidden;
  }

  .tabs-menu {
    flex-wrap: wrap;
    padding-bottom: 20px;
    overflow: visible;
  }

  .tab {
    flex: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tab.w--current {
    flex: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    padding-left: 0;
  }

  .h1-legal {
    font-size: 42px;
  }

  .main-img-mobile {
    width: 115%;
    max-width: 120%;
    bottom: -6%;
    right: -26%;
  }

  .heading {
    font-size: 42px;
  }

  .h1-404 {
    font-size: 45px;
  }

  .wrap-404 {
    background-size: 80%;
    padding-top: 60px;
  }

  .tabs-custom, .tabs-custom.w--current {
    width: 80px;
    height: 80px;
  }

  .txt-tab-custom {
    font-size: 14px;
    line-height: 20px;
  }

  .tabs-menu-custom {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: scroll;
  }

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

  .txt-main-catalog {
    max-width: none;
  }

  .h1-catalog {
    font-size: 42px;
  }

  .wrap-main-content-right {
    width: 280px;
    height: 280px;
  }
}

#w-node-_86e9b470-dadc-c928-31c9-47cb072193a2-11ad2848, #w-node-_86e9b470-dadc-c928-31c9-47cb072193b4-11ad2848, #w-node-_86e9b470-dadc-c928-31c9-47cb072193c6-11ad2848, #w-node-_86e9b470-dadc-c928-31c9-47cb072193d8-11ad2848, #w-node-_86e9b470-dadc-c928-31c9-47cb072193eb-11ad2848, #w-node-_86e9b470-dadc-c928-31c9-47cb072193fd-11ad2848, #w-node-fc7b04f3-43d0-8bbd-e2b3-a55272654ef1-11ad2848, #w-node-_5ee8cab2-12e8-284e-8364-e8b0f2c319ec-11ad2848, #w-node-_5cc0147c-62eb-2487-aefe-b070eed71ec5-11ad2848, #w-node-_4017ee24-c931-e172-9c94-3c1e405d5288-11ad2848, #w-node-ea8fcc51-27e1-fc7c-66e6-fb70b68a5c04-b68a5c01, #w-node-ea8fcc51-27e1-fc7c-66e6-fb70b68a5c09-b68a5c01, #w-node-ea8fcc51-27e1-fc7c-66e6-fb70b68a5c12-b68a5c01, #w-node-ea8fcc51-27e1-fc7c-66e6-fb70b68a5c1b-b68a5c01, #w-node-_8fd65313-45c1-52c7-f011-9a80e650c9b0-83a7fec2, #w-node-_8fd65313-45c1-52c7-f011-9a80e650c9c2-83a7fec2, #w-node-_8fd65313-45c1-52c7-f011-9a80e650c9d4-83a7fec2, #w-node-_8fd65313-45c1-52c7-f011-9a80e650c9e6-83a7fec2, #w-node-_8fd65313-45c1-52c7-f011-9a80e650c9f8-83a7fec2, #w-node-_8fd65313-45c1-52c7-f011-9a80e650ca0a-83a7fec2, #w-node-f487ba13-e07f-52a5-03d8-451bfdde876e-83a7fec2, #w-node-_9710af2b-78f6-f721-8083-2211971f9504-83a7fec2, #w-node-e00170cf-adb1-e7d5-5116-0c0dc67b4768-83a7fec2, #w-node-_60955e8d-d655-f4ca-6365-427a37f8de81-83a7fec2, #w-node-_07237323-08d6-ddff-d66e-9dc7b5cd2561-83a7fec2, #w-node-_07237323-08d6-ddff-d66e-9dc7b5cd2573-83a7fec2, #w-node-_07237323-08d6-ddff-d66e-9dc7b5cd25ac-83a7fec2, #w-node-_07237323-08d6-ddff-d66e-9dc7b5cd25bf-83a7fec2, #w-node-ef22304f-f138-6a50-e954-b010f7e7eb3a-83a7fec2, #w-node-ef22304f-f138-6a50-e954-b010f7e7eb4c-83a7fec2, #w-node-ef22304f-f138-6a50-e954-b010f7e7eb5e-83a7fec2, #w-node-cd10556b-d365-574d-d1d9-78a51e26f8fe-83a7fec2, #w-node-cd10556b-d365-574d-d1d9-78a51e26f911-83a7fec2, #w-node-cd10556b-d365-574d-d1d9-78a51e26f924-83a7fec2, #w-node-cd10556b-d365-574d-d1d9-78a51e26f94a-83a7fec2, #w-node-ea61d223-171a-91b8-a2b8-a638726e94d7-83a7fec2, #w-node-_9491a17f-8fd3-5996-79b9-e5c8d6265bf6-83a7fec2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-ea61d223-171a-91b8-a2b8-a638726e94d7-83a7fec2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ea8fcc51-27e1-fc7c-66e6-fb70b68a5c04-b68a5c01, #w-node-ea8fcc51-27e1-fc7c-66e6-fb70b68a5c1b-b68a5c01 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ea8fcc51-27e1-fc7c-66e6-fb70b68a5c09-b68a5c01 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Circe';
  src: url('../fonts/Circe-Bold.woff') format('woff'), url('../fonts/Circe-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Circe';
  src: url('../fonts/Circe-ExtraBold.woff') format('woff'), url('../fonts/Circe-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Circe';
  src: url('../fonts/Circe-Light.woff') format('woff'), url('../fonts/Circe-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Circe';
  src: url('../fonts/Circe-Regular.woff') format('woff'), url('../fonts/Circe-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Circe';
  src: url('../fonts/Circe-Thin.woff') format('woff'), url('../fonts/Circe-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}