:root {
  --neutral--200: #f7f8fc;
  --neutral--600: #828aa3;
  --neutral--800: #1f2d54;
  --accent--primary-1: #3d73ff;
  --neutral--100: white;
  --neutral--400: #e6e9f1;
  --general--shadow-01: #14142b17;
  --neutral--500: #aab1c6;
  --system--blue-100: #eaf4ff;
  --general--shadow-05: #14142b29;
  --system--blue-400: #086cd9;
  --neutral--700: #454e66;
  --button-shadow--color-01: #4a3aff42;
  --neutral--300: #eff1f6;
  --button-shadow--white-01: #14142b0a;
  --button-shadow--white-03: #14142b1a;
  --system--300: #ff5a65;
  --system--red-100: #ffeff0;
  --system--red-400: #dc2b2b;
  --general--shadow-02: #14142b0f;
  --secondary--color-3: #f5f8ff;
  --system--blue-300: var(--accent--primary-1);
  --button-shadow--color-3: #4a3aff14;
  --secondary--color-2: #f1f4ff;
  --system--green-100: #def2e6;
  --system--green-300: #14ca74;
  --system--orange-100: #fff3e4;
  --system--orange-300: #ff9e2c;
  --system--blue-200: #8fc3ff;
  --system--green-200: #7fdca4;
  --system--orange-200: #ffd19b;
  --button-shadow--white-02: #14142b0f;
  --secondary--color-4: #94acf2;
  --button-shadow--color-2: #4a3aff14;
  --general--shadow-03: #14142b1a;
  --general--shadow-04: #14142b24;
  --general--shadow-06: #14142b3d;
  --secondary--color-1: #c7d6ff;
  --secondary--color-5: #fdb52a;
  --system--green-400: #11845b;
  --system--red-200: #ffbec2;
  --system--orange-400: #d5691b;
}

body {
  background-color: var(--neutral--200);
  color: var(--neutral--600);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.571em;
}

h1 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.571em;
}

h2 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.417em;
}

h3 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.273em;
}

h4 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375em;
}

h5 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.429em;
}

h6 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5em;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--neutral--800);
  text-decoration: underline;
  transition: color .3s;
}

a:hover {
  color: var(--accent--primary-1);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  margin-bottom: 8px;
  padding-left: 8px;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--neutral--800);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.286em;
  display: block;
}

strong {
  color: var(--neutral--800);
  font-weight: 700;
}

blockquote {
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  text-align: center;
  border: 0 solid #000;
  border-radius: 24px;
  margin-top: 14px;
  margin-bottom: 32px;
  padding: 86px 64px;
  font-size: 18px;
  line-height: 30px;
}

figure {
  margin-top: 24px;
  margin-bottom: 48px;
}

figcaption {
  text-align: center;
  margin-top: 16px;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

.page-wrapper.full-page-wrapper {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

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

.grid-2-columns.gap-column-48px {
  grid-column-gap: 48px;
}

.grid-2-columns.gap-row-64px {
  grid-template-columns: 1fr;
  display: block;
}

.grid-2-columns.main-dashboard-grid {
  grid-column-gap: 40px;
  flex-flow: row;
  flex: 0 auto;
  grid-template-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  margin-top: 3vw;
  display: flex;
}

.card {
  border: 1px solid var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: 0 2px 7px 0 var(--general--shadow-01);
  border-radius: 12px;
}

.card.search-result-link {
  padding: 32px 24px;
  text-decoration: none;
}

.card.password-protected-card {
  text-align: center;
  max-width: 456px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 32px;
}

.card._404 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  padding: 104px 40px;
  display: flex;
  position: relative;
}

.card.inside-image {
  z-index: 1;
  opacity: .95;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 1vw 2vw;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.card.pd-16px {
  padding: 16px;
}

.card.pd-24px {
  padding: 24px;
}

.card.amount-over-graph {
  z-index: 1;
  padding: 28px 20px 56px;
  position: relative;
}

.card.pd-22px---18px {
  padding: 22px 18px;
}

.card.pd-24px---18px---28px {
  padding: 24px 18px 28px;
}

.card.pd-24px---18px {
  padding: 24px 18px;
}

.card.pd-32px---18px {
  padding: 32px 18px;
}

.card.image-right-inside {
  z-index: 1;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 2px none var(--neutral--800);
  background-image: radial-gradient(circle farthest-corner at 90% -40%, var(--system--blue-100) 2%, white 76%), url("https://cdn.prod.website-files.com/676e82ad392bf3db2f50d8d2/676efde60817591f48db1c41_Space.jpg");
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  border-radius: 20px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: flex-start;
  place-items: center stretch;
  padding: 0 2vw 0 4vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card.pd-32px---44px {
  padding: 32px 44px;
}

.card.component-card-copy {
  border-style: dashed;
  border-color: var(--neutral--500);
  margin-top: 1rem;
  padding: 40px;
}

.card.component-card-copy.bg-black-25 {
  background-color: #00000040;
}

.card.overflow-hidden.border-none {
  border-style: none;
}

.card.component-card {
  border-style: dashed;
  border-color: var(--neutral--500);
  margin-top: 1rem;
  padding: 40px;
  display: block;
}

.card.component-card.bg-black-25 {
  background-color: #00000040;
}

.card.pd-32px---24px {
  padding: 32px 24px 16px;
}

.card.header-dropdown-card {
  grid-column-gap: 48px;
  box-shadow: 0 2vw 2vw 1vw var(--general--shadow-05);
  align-items: flex-start;
  padding: 2vw;
  display: flex;
}

.mg-bottom-24px {
  color: var(--neutral--800);
  margin-bottom: 24px;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.3vw;
  line-height: 160%;
}

.text-200 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
}

.text-200.medium {
  font-weight: 500;
}

.text-200.medium.mg-bottom-4px {
  font-family: Nunito, Arial, sans-serif;
  font-size: 1.2vw;
  font-weight: 500;
}

.text-200.bold {
  margin-bottom: .5vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.6vw;
  font-weight: 600;
}

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

.grid-1-column.gap-row-24px {
  margin-top: 1rem;
}

.grid-1-column.sidebar-links-grid {
  grid-row-gap: 4px;
}

.grid-1-column.gap-row-12px {
  grid-column-gap: 1vw;
  grid-row-gap: 0vw;
}

.gap-column-16px {
  grid-column-gap: 16px;
}

.gap-row-24px {
  grid-row-gap: 24px;
}

.gap-row-64px {
  grid-row-gap: 64px;
}

.text-100 {
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}

.text-100.bold {
  font-weight: 700;
}

.text-100.medium {
  font-weight: 500;
}

.text-100.medium.color-neutral-800 {
  flex: 1;
  order: 0;
  align-self: center;
}

.text-100.medium.color-neutral-800.text-100-contacts {
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.text-100.dropdown-column-title {
  color: var(--neutral--700);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  margin-bottom: 8px;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.6vw;
  font-weight: 500;
}

.inner-container._600px {
  max-width: 600px;
}

.inner-container.center {
  margin-left: auto;
  margin-right: auto;
}

.inner-container._326px {
  max-width: 326px;
}

.inner-container._244px._100-mbl, .inner-container._244px._100-tablet {
  width: 100%;
}

.inner-container._720px {
  max-width: 720px;
}

.inner-container._400px {
  max-width: 400px;
}

.inner-container._348px {
  max-width: 348px;
}

.inner-container._388px {
  max-width: 388px;
}

.inner-container._272px {
  max-width: 272px;
}

.inner-container._370px {
  max-width: 370px;
}

.inner-container._180px {
  max-width: 180px;
}

.inner-container._334px {
  max-width: 334px;
}

.inner-container._334px._100-mbl {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 2fr;
  grid-auto-columns: 1fr;
  place-items: stretch start;
  max-width: 100%;
  margin-top: 3vw;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 4vw;
  padding-right: 0;
  display: grid;
}

.inner-container._368px {
  max-width: 368px;
}

.inner-container._576px {
  max-width: 576px;
}

.inner-container._624px {
  max-width: 624px;
}

.inner-container._542px {
  max-width: 542px;
}

.inner-container._244px {
  max-width: 244px;
}

.inner-container._244px._100-mbl, .inner-container._244px._100-tablet, .inner-container._244px._100-mbl {
  width: 100%;
}

.inner-container._384px {
  max-width: 384px;
}

.inner-container._384px._100-mbl {
  max-width: 100%;
}

.mg-bottom-0 {
  margin-bottom: 0;
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.line-rounded-icon {
  font-family: Line Rounded Icons;
}

.line-rounded-icon.icon-size-14px {
  font-size: 14px;
  line-height: 1em;
}

.line-rounded-icon.dropdown-icon {
  color: var(--neutral--600);
  justify-content: center;
  align-items: center;
  min-width: 12px;
  max-width: 12px;
  min-height: 12px;
  max-height: 12px;
  font-size: 14px;
  line-height: 1em;
  display: flex;
}

.line-rounded-icon.header-dropdown-icon {
  color: var(--neutral--500);
  font-family: Inter;
  font-weight: 500;
  line-height: 1em;
}

.line-rounded-icon.header-dropdown-icon:hover {
  color: var(--accent--primary-1);
}

.line-rounded-icon.header-dropdown-icon:lang(en) {
  color: var(--neutral--500);
}

.buttons-row {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.buttons-row.center {
  justify-content: center;
}

.buttons-row.justify-end {
  justify-content: flex-end;
}

.container-default {
  flex: 1;
  justify-content: center;
  align-items: stretch;
  max-width: 1268vw;
  margin-top: 0;
  padding-left: 11vw;
  padding-right: 11vw;
  display: flex;
}

.hamburger-menu-wrapper {
  padding: 0;
}

.hamburger-menu-wrapper.w--open {
  background-color: #0000;
}

.hidden-on-desktop {
  display: none;
}

.flex-vertical {
  flex-direction: column;
  display: flex;
}

.flex-vertical.align-center {
  justify-content: center;
  align-items: stretch;
  display: flex;
}

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

.flex-horizontal.gap-column-12px {
  grid-column-gap: 12px;
}

.flex-horizontal.children-wrap {
  flex-wrap: wrap;
}

.flex-horizontal.children-wrap.gap-16px---8px {
  grid-column-gap: 16px;
  grid-row-gap: 8px;
}

.flex-horizontal.justify-start {
  justify-content: flex-start;
}

.flex-horizontal.justify-end {
  justify-content: flex-end;
}

.flex-horizontal.align-start {
  align-items: flex-start;
}

.error-message {
  border: 1px solid var(--system--300);
  background-color: var(--system--red-100);
  color: var(--system--red-400);
  text-align: center;
  border-radius: 6px;
  margin-top: 20px;
  padding: 20px 24px;
}

.error-message.small {
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  margin-top: 8px;
  padding: 10px 14px;
}

.overflow-hidden {
  overflow: hidden;
}

.flex {
  display: flex;
}

.flex.align-center {
  align-items: center;
}

.flex.align-center.gap-column-6px {
  grid-column-gap: 6px;
}

.flex.align-end {
  align-items: flex-end;
}

.flex.align-start {
  align-items: flex-start;
}

.flex.align-start.gap-column-12px {
  grid-column-gap: 0px;
  padding-left: 0;
}

.flex.align-start.gap-column-6px {
  grid-column-gap: 1vw;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
}

.gap-column-6px {
  grid-column-gap: 6px;
}

._2-items-wrap-container {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

._2-items-wrap-container.gap-column-16px {
  grid-column-gap: 16px;
}

._2-items-wrap-container.gap-column-8px {
  grid-column-gap: 8px;
}

._2-items-wrap-container.align-start {
  align-items: flex-start;
}

._2-items-wrap-container.amount-and-data {
  grid-column-gap: 6px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: flex-end;
}

._2-items-wrap-container.amount-and-data.justify-space-between {
  justify-content: space-between;
}

._2-items-wrap-container.gap-column-24px {
  grid-column-gap: 24px;
}

._2-items-wrap-container.children-wrap-reverse {
  flex-wrap: wrap-reverse;
}

._2-items-wrap-container.align-end {
  align-items: flex-end;
}

._2-items-wrap-container.justify-center {
  justify-content: center;
}

._2-items-wrap-container.justify-center.gap-row-40px {
  grid-row-gap: 40px;
  align-items: flex-start;
}

._2-items-wrap-container.justify-center.gap-column-48px {
  grid-column-gap: 48px;
}

.dashboard-main-content {
  flex: 0 auto;
  align-self: auto;
  width: 100%;
  max-width: 970px;
  margin-bottom: 3vw;
}

.dashboard-main-content.utility-page-main-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  display: flex;
}

.dashboard-main-content.changelog-page-main-content {
  grid-column-gap: 40px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  display: flex;
}

.loading-bar-wrapper {
  z-index: 2147483647;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.loading-bar {
  background-image: linear-gradient(to bottom, var(--accent--primary-1), var(--secondary--color-3));
  min-height: 4px;
}

.max-w-20px {
  flex: 0 auto;
  width: 100%;
  max-width: 20px;
  height: 100%;
  margin-right: .25rem;
  display: block;
}

.color-neutral-800 {
  color: var(--neutral--800);
}

.logo-link-wrapper {
  transform-style: preserve-3d;
  flex-flow: column;
  padding-left: 0;
  text-decoration: none;
  transition-property: transform;
  display: flex;
}

.logo-link-wrapper:hover {
  transform: scale3d(1.04, 1.04, 1.01);
}

.logo-link-wrapper.w--current {
  grid-column-gap: 0vw;
  grid-row-gap: 0vw;
  flex: 0 auto;
  margin-right: 1rem;
  text-decoration: none;
  display: flex;
}

.header-nav-link {
  color: var(--neutral--700);
  flex: 1;
  align-self: center;
  padding: 0;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1vw;
  font-weight: 500;
}

.header-nav-link:hover {
  color: var(--accent--primary-1);
}

.header-nav-link.w--current {
  color: var(--system--blue-300);
  margin-left: 0;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.2vw;
  font-weight: 600;
}

.header-nav-link.w--current:hover {
  color: var(--accent--primary-1);
}

.header-nav-link.w--current:visited {
  color: var(--system--blue-300);
}

.header-nav-link.dropdown-header-link {
  grid-column-gap: 0px;
  align-items: center;
  display: flex;
}

.header-nav-link.dropdown-header-link.w--open {
  color: var(--accent--primary-1);
}

.header-nav-menu-wrapper {
  grid-column-gap: 0px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header-nav-menu-wrapper:where(.w-variant-16b34baa-548c-f89a-b8a2-eb81457896ec) {
  margin-right: 1vw;
}

.header-nav-menu-list {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  outline-offset: 0px;
  background-color: #f4f6ff;
  border-radius: 100vw;
  outline: 2px solid #e7ecff;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-bottom: 0;
  padding: .75vw 1.5vw;
  list-style-type: none;
  display: flex;
}

.header-nav-list-item {
  flex: 0 auto;
  align-self: center;
  margin-bottom: 0;
  padding-left: 0;
  line-height: 1.286em;
  display: flex;
}

.header-content-wrapper {
  grid-column-gap: 0px;
  flex: 1;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: flex;
}

.sidebar-container {
  z-index: 1;
  position: sticky;
  top: 24px;
}

.success-message {
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  text-align: center;
  border-radius: 16px;
  padding: 20px 24px;
}

.notification-bar {
  border: 1.2px solid var(--neutral--300);
  background-color: var(--neutral--200);
  transform-origin: 50% 0;
  border-radius: 8px;
}

.notification-bar.red {
  border-color: var(--system--300);
  background-color: var(--system--red-100);
}

.notification-bar.blue {
  border-color: var(--system--blue-200);
  background-color: var(--system--blue-100);
}

.notification-bar.green {
  border-color: var(--system--green-200);
  background-color: var(--system--green-100);
}

.notification-bar.orange {
  border-color: var(--system--orange-200);
  background-color: var(--system--orange-100);
}

.notification-bar-icon {
  border-radius: 100%;
  min-width: 18px;
  max-width: 18px;
}

.notification-bar-icon.red {
  box-shadow: 0 1px 2px #ff3d545c;
}

.notification-bar-icon.blue {
  min-width: 1.5vw;
  max-width: 2vw;
  box-shadow: 0 1px 2px #3d73ff5c;
}

.notification-bar-icon.green {
  order: -1;
  box-shadow: 0 1px 2px #2fdf4b42;
}

.notification-bar-icon.orange {
  box-shadow: 0 1px 2px #ffa63d5c;
}

.notification-bar-main-container {
  grid-column-gap: 48px;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  display: flex;
}

.pd-32px---24px {
  padding: 32px 24px;
}

.pd-26px---24px---40px {
  padding: 26px 24px 40px;
}

.gap-column-12px {
  grid-column-gap: 12px;
}

.tabs-menu {
  grid-column-gap: 1vw;
  background-color: var(--neutral--200);
  border-radius: 72px;
  align-items: center;
  margin-bottom: 20px;
  padding: 6px;
  display: flex;
}

.tabs-menu.links-single {
  grid-column-gap: 0px;
  background-color: #0000;
  border-radius: 0;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
}

.tab-menu-badge-link {
  color: var(--neutral--600);
  text-align: center;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 32px;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.286em;
  transition: box-shadow .3s, background-color .3s, border-color .3s, color .3s;
}

.tab-menu-badge-link:hover {
  border-color: var(--neutral--200);
  background-color: var(--neutral--100);
  box-shadow: 0 0 3px 0 var(--general--shadow-01);
  color: var(--neutral--600);
}

.tab-menu-badge-link.w--current {
  border-color: var(--neutral--300);
  background-color: var(--neutral--100);
  box-shadow: 0 0 3px 0 var(--general--shadow-01);
  color: var(--neutral--700);
}

.dropdown-list {
  z-index: 1;
  background-color: #0000;
  padding-top: 16px;
}

.dropdown-list.w--open {
  padding-top: 2vw;
}

.header-right-side-container {
  margin-left: auto;
}

.hamburger-menu-bar {
  background-image: linear-gradient(#3d7fff, #4b5dff);
  border-radius: 64px;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.footer-top-section {
  grid-column-gap: 0px;
  border-bottom: 1px solid var(--neutral--300);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 1vw;
  display: flex;
}

.bg-neutral-100 {
  background-color: var(--neutral--100);
}

.footer-bottom-section {
  grid-column-gap: 4rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.overflow-visible {
  overflow: visible;
}

.position-relative---z-index-2 {
  z-index: 2;
  position: relative;
}

.dropdown-link-single {
  border-bottom: 1px solid var(--neutral--400);
  color: var(--neutral--700);
  width: 100%;
  margin-bottom: .5vw;
  padding: 0 0 .2rem;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.3vw;
  line-height: 160%;
}

.dropdown-link-single:hover {
  color: var(--accent--primary-1);
}

.text-500-big {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.167em;
}

.text-500-big.bold {
  font-weight: 700;
}

.text-500-big.bold.mg-bottom-24px-copy {
  color: var(--neutral--700);
  letter-spacing: -1px;
  margin-bottom: .5vw;
  font-family: Nunito, Arial, sans-serif;
  font-size: 35px;
  font-weight: 800;
  display: block;
  position: relative;
}

.text-500-big.bold.mg-bottom-24px {
  color: var(--neutral--700);
  letter-spacing: -1px;
  border-top: 1px #0000001a;
  flex-flow: row;
  margin-top: 2vw;
  margin-bottom: .5vw;
  padding-top: 2vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 3.2vw;
  font-weight: 600;
  display: flex;
  position: relative;
}

.text-block {
  order: 9999;
  align-self: center;
  padding-left: .3vw;
  padding-right: .3vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1vw;
  font-weight: 500;
}

.image {
  background-color: #fff;
  border-radius: 0;
  flex: 0 auto;
  align-self: stretch;
  min-width: 10vw;
  max-width: 90%;
  padding: .1vw;
}

.div-block-8 {
  flex: 1;
  padding-bottom: 5vw;
}

.div-block-9 {
  display: flex;
}

.slogan {
  color: var(--secondary--color-4);
  margin-top: .25vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.1vw;
  line-height: 1vw;
}

.div-block-11 {
  grid-column-gap: .5vw;
  grid-row-gap: .5vw;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: start stretch;
  margin-left: 0;
  display: flex;
}

.div-block-12 {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  border: 1px #000;
  border-radius: 0;
  flex-flow: row;
  margin-top: 3vw;
  display: flex;
}

.div-block-14 {
  margin-right: 1vw;
}

.slogan-home-1 {
  max-width: 30px;
  margin-right: .25rem;
}

.dropdown-menu-icons-footer {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: space-between;
  align-self: stretch;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.menu-telegram-icon {
  flex: 0 auto;
  align-self: center;
  align-items: flex-start;
  display: block;
}

.whatsapp-menu {
  flex: 0 auto;
  align-self: flex-start;
  max-width: 3vw;
  margin-bottom: 0;
  display: block;
}

.whatsapp-menu:hover {
  color: #fff;
}

.telegram-menu {
  opacity: .7;
  max-width: 3vw;
  margin-bottom: 0;
}

.telegram-menu:hover {
  opacity: 1;
  color: #fff;
}

.menu-whatsapp-icon {
  opacity: .7;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
  overflow: visible;
}

.menu-whatsapp-icon:hover {
  opacity: 1;
  color: #ffffffb3;
}

.slogan-home-trans {
  opacity: 1;
  max-width: 25vw;
  margin-bottom: .5vw;
  margin-right: .25rem;
}

.link {
  opacity: .4;
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.link:hover {
  opacity: 100;
  color: var(--neutral--700);
}

.notification-bar-icon-copy {
  border-radius: 100%;
  min-width: 18px;
  max-width: 18px;
}

.notification-bar-icon-copy.green {
  box-shadow: 0 1px 2px #2fdf4b42;
}

.notification-bar-icon-copy.red {
  box-shadow: 0 1px 2px #ff3d545c;
}

.notification-bar-icon-copy.orange {
  box-shadow: 0 1px 2px #ffa63d5c;
}

.notification-bar-icon-copy.blue {
  min-width: 1.5vw;
  max-width: 2vw;
  box-shadow: 0 1px 2px #3d73ff5c;
}

.dropdown-menu-icons-footer-phone {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: space-between;
  align-self: stretch;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.bottom-text {
  -webkit-text-decoration-skip-ink: auto;
  text-decoration-skip-ink: auto;
  align-self: auto;
  margin-top: .5vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.6vw;
  font-weight: 600;
  text-decoration: none;
}

.image-bottom {
  flex: 0 auto;
  align-self: stretch;
  min-width: 25%;
  max-width: 50%;
}

.text-block-5 {
  text-align: right;
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.field-label {
  padding-right: 25vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.form {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 60vw;
  display: flex;
}

.text-field {
  border-radius: .5vw;
  flex: 0 auto;
  margin-bottom: 2vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.text-field:hover, .text-field:lang(en) {
  color: var(--neutral--800);
}

.field-label-2 {
  margin-bottom: 1vw;
  padding-right: 5vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.heading-2 {
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.1vw;
  font-weight: 400;
}

.success-message-2 {
  background-color: var(--accent--primary-1);
}

.text-block-7 {
  color: var(--secondary--color-3);
}

.logo-link-wrapper-home {
  transform-style: preserve-3d;
  padding-left: 0;
  transition-property: transform;
}

.logo-link-wrapper-home:hover {
  transform: scale3d(1.04, 1.04, 1.01);
}

.logo-link-wrapper-home.w--current {
  grid-column-gap: 0vw;
  grid-row-gap: 0vw;
  flex-flow: column;
  flex: 0 auto;
  margin-right: 1rem;
  display: flex;
}

.sidebar-link-2 {
  grid-column-gap: 6px;
  color: var(--neutral--600);
  border: 1px solid #0000;
  border-radius: 6px;
  align-items: center;
  padding: 8px;
  text-decoration: none;
  transition: box-shadow .3s, border-color .3s, background-color .3s, color .3s;
  display: flex;
}

.sidebar-link-2:hover {
  border-color: var(--neutral--300);
  background-color: var(--neutral--100);
  color: var(--neutral--600);
}

.sidebar-link-2.w--current {
  border-color: var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: 0 0 3px 0 var(--general--shadow-01);
  color: var(--neutral--700);
}

.container-default-free-consult {
  flex: 1;
  justify-content: center;
  align-items: stretch;
  max-width: 1268vw;
  margin-top: 0;
  padding-left: 11vw;
  padding-right: 11vw;
  display: flex;
}

.main-section-session {
  padding-top: 48px;
  padding-bottom: 0;
}

.main-section-session.pd-bottom-64px {
  padding-top: 3rem;
  padding-bottom: 64px;
}

.image-7 {
  flex: 0 auto;
  order: -1;
  align-self: center;
  max-width: 1.4vw;
}

.field-label-3 {
  align-self: center;
  margin-bottom: 0;
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.btn-primary-form {
  box-shadow: 0 1px 4px 0 var(--button-shadow--color-01);
  color: var(--neutral--100);
  text-align: center;
  transform-style: preserve-3d;
  background-color: #0000;
  background-image: linear-gradient(#3d7fff, #4174ff 0%, #4b5dff);
  border: 1px solid #3961d9;
  border-radius: 76px;
  justify-content: center;
  padding: 8px 16px;
  font-weight: 500;
  line-height: 1.286em;
  text-decoration: none;
  transition: box-shadow .3s, transform .3s, background-color .3s, color .3s;
  display: block;
}

.btn-primary-form:hover {
  color: var(--neutral--100);
  transform: scale3d(1.02, 1.02, 1.01);
  box-shadow: 0 2px 16px 1px #4a3aff4d;
}

.btn-primary-form.large {
  padding: 14px;
  font-size: 16px;
  line-height: 1.125em;
}

.btn-primary-form.disabled {
  border-color: var(--neutral--400);
  background-color: var(--neutral--300);
  box-shadow: none;
  color: var(--neutral--600);
  cursor: not-allowed;
  background-image: none;
}

.btn-primary-form.disabled:hover {
  transform: none;
}

.btn-primary-form.white {
  border-color: var(--neutral--300);
  background-color: var(--neutral--100);
  color: var(--neutral--800);
  background-image: none;
  box-shadow: inset 0 -3px 8px #0000001a;
}

.btn-primary-form.white:hover {
  border-color: var(--neutral--100);
  box-shadow: none;
  color: var(--neutral--100);
  background-color: #0000;
}

.text-block-9, .text-block-10, .text-block-11 {
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.1vw;
}

.pd-top-24px-in-form {
  flex-flow: column;
  padding-top: 0;
  display: flex;
}

.paragraph-5 {
  color: var(--neutral--800);
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.3vw;
  line-height: 160%;
}

.div-block-23 {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  flex-flow: column;
  align-items: center;
  margin-top: 2vw;
  margin-bottom: 1vw;
  display: flex;
}

.div-block-24 {
  margin-top: 5vw;
  display: block;
}

.dropdown-link-single-last {
  border-bottom: 1px none var(--neutral--400);
  color: var(--neutral--700);
  width: 100%;
  margin-bottom: .5vw;
  padding: 0 0 .2rem;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.3vw;
  line-height: 160%;
}

.dropdown-link-single-last:hover {
  color: var(--accent--primary-1);
}

.space-1-vw {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  outline-color: var(--neutral--400);
  outline-offset: 0px;
  outline-width: 1px;
  outline-style: none;
  margin-top: .5vw;
  margin-bottom: .5rem;
  margin-right: 0;
  display: flex;
}

.icon-header-in-form-select {
  grid-column-gap: .5vw;
  grid-row-gap: .5vw;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.day-select-session-format {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  align-self: stretch;
  margin-bottom: 2vw;
  display: flex;
}

.format-select {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-flow: column;
  margin-left: 1vw;
  display: flex;
}

._2 {
  color: var(--system--blue-300);
  font-family: Nunito, Arial, sans-serif;
  font-size: 5vw;
  font-weight: 900;
  line-height: 90%;
}

.utc-5 {
  color: var(--neutral--600);
  margin-bottom: 1vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.1vw;
  line-height: 160%;
}

.radio-button-label {
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.flex-contacts {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}

.flex-contacts.align-center {
  align-items: center;
}

.flex-contacts.align-center.gap-column-6px {
  grid-column-gap: 6px;
}

.flex-contacts.align-end {
  align-items: flex-end;
}

.flex-contacts.align-start {
  align-items: flex-start;
}

.flex-contacts.align-start.gap-column-12px {
  grid-column-gap: 0px;
  padding-left: 0;
}

.flex-contacts.align-start.gap-column-6px {
  grid-column-gap: 1vw;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
}

.text-block-12 {
  text-align: right;
  margin-top: 1vw;
}

.div-block-30 {
  align-self: auto;
}

.paragraph-footer {
  margin-right: 1vw;
  font-family: "Inter 18 Pt", Arial, sans-serif;
  font-size: 1.2vw;
  line-height: 160%;
}

.footer-text {
  text-align: right;
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.header-wrapper-2-copy {
  z-index: 999;
  background-color: var(--neutral--100);
  box-shadow: 1px 0 3px 0 var(--general--shadow-01);
  justify-content: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.booking {
  flex-flow: column;
  margin-top: -5vw;
  display: flex;
}

.grid-1-column-first-copy {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-1-column-first-copy.sidebar-links-grid {
  grid-row-gap: 4px;
}

.grid-1-column-first-copy.gap-row-12px {
  grid-row-gap: 12px;
}

.grid-1-column-first-copy.gap-row-24px {
  grid-row-gap: 13px;
  margin-top: 0;
  margin-bottom: 4rem;
  padding-top: 0;
}

.link-block-6, .link-block-7, .link-block-8 {
  text-decoration: none;
}

.text-500-big-2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.167em;
}

.text-500-big-2.bold {
  font-weight: 700;
}

.text-500-big-2.bold.mg-bottom-24px-copy {
  color: var(--neutral--700);
  letter-spacing: -1px;
  margin-bottom: .5vw;
  font-family: Nunito, Arial, sans-serif;
  font-size: 35px;
  font-weight: 800;
  display: block;
  position: relative;
}

.text-500-big-2.bold.mg-bottom-24px {
  color: var(--neutral--700);
  letter-spacing: -1.5px;
  border-top: 1px #0000001a;
  flex-flow: row;
  margin-top: 2vw;
  margin-bottom: .5vw;
  padding-top: 2vw;
  font-family: Nunito, Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.buttons {
  border: 1.2px solid var(--neutral--300);
  background-color: var(--neutral--200);
  transform-origin: 50% 0;
  border-radius: 8px;
}

.buttons.green {
  border-color: var(--system--green-200);
  background-color: var(--system--green-100);
}

.buttons.red {
  border-color: var(--system--300);
  background-color: var(--system--red-100);
}

.buttons.orange {
  border-color: var(--system--orange-200);
  background-color: var(--system--orange-100);
}

.buttons.blue {
  border-color: var(--system--blue-200);
  background-color: var(--system--blue-100);
  transition: transform .2s, box-shadow .2s;
}

.buttons.blue:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1vw #4667ff40;
}

.link-to-main-page {
  grid-column-gap: 6px;
  color: var(--neutral--600);
  border: 1px solid #0000;
  border-radius: 6px;
  align-items: center;
  padding: 8px;
  text-decoration: none;
  transition: box-shadow .3s, border-color .3s, background-color .3s, color .3s;
  display: flex;
}

.link-to-main-page:hover {
  border-color: var(--neutral--300);
  background-color: var(--neutral--100);
  color: var(--neutral--600);
}

.link-to-main-page.w--current {
  border-color: var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: 0 0 3px 0 var(--general--shadow-01);
  color: var(--neutral--700);
}

.recaptcha {
  margin-top: 0;
  margin-bottom: 2vw;
}

.offline-choose {
  font-family: "Inter 18 Pt", Arial, sans-serif;
}

.video-block {
  border-radius: 0;
  width: 53%;
  margin-top: .5vw;
  margin-right: 2vw;
  padding-left: 0;
}

.video-about-alina-zhdanova {
  border-radius: 0;
}

.div-block-40 {
  margin-top: 5vw;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .grid-2-columns.main-dashboard-grid {
    flex: 0 auto;
    justify-content: space-between;
    align-self: center;
    align-items: center;
    margin-top: 3vw;
    display: block;
  }

  .card.overflow-hidden {
    color: var(--neutral--800);
  }

  .card.image-right-inside {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .card.header-dropdown-card {
    padding-bottom: 2vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .color-neutral-100 {
    font-size: 1.6vw;
    font-weight: 600;
  }

  .mg-bottom-24px {
    color: var(--neutral--800);
    font-size: 1.1vw;
    line-height: 160%;
  }

  .text-200.bold {
    font-family: Nunito, Arial, sans-serif;
    font-size: 1.6vw;
  }

  .text-400.bold.color-neutral-800 {
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 1.6vw;
    font-weight: 600;
  }

  .text-100 {
    font-size: 1.2vw;
  }

  .text-100.medium.color-neutral-800 {
    flex: 1;
  }

  .text-100.dropdown-column-title {
    color: var(--neutral--700);
    font-size: 1.4vw;
    font-weight: 500;
    display: block;
  }

  .inner-container._334px._100-mbl {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    padding-right: 3vw;
  }

  .container-default {
    justify-content: center;
    align-items: stretch;
  }

  .flex.align-start.gap-column-12px {
    justify-content: center;
    align-items: center;
  }

  .dashboard-main-content {
    flex: 1;
    align-self: center;
    max-width: 1200px;
    margin-bottom: 2vw;
    display: block;
  }

  .max-w-20px {
    max-width: 25px;
    max-height: 25px;
    margin-right: .25rem;
  }

  .text-500.bold.mg-bottom-24px {
    font-size: 1.6vw;
  }

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

  .header-nav-link {
    text-align: left;
    flex: 0 auto;
    align-self: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.1vw;
    font-weight: 500;
    display: block;
  }

  .header-nav-link.w--current {
    flex: 1;
    font-size: 1.1vw;
    display: block;
  }

  .header-nav-menu-wrapper {
    grid-column-gap: 2vw;
    flex: 0 auto;
  }

  .header-nav-menu-list {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    flex-flow: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: auto;
    align-items: center;
    margin-right: 1vw;
    padding-left: 1.5vw;
    padding-right: 1.5vw;
    display: flex;
  }

  .header-nav-list-item {
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .header-content-wrapper {
    grid-column-gap: 0vw;
  }

  .notification-bar-main-container {
    padding: 1vw 2vw;
  }

  .footer-top-section {
    margin-bottom: 2vw;
    padding-top: 0;
    padding-bottom: 1vw;
  }

  .footer-bottom-section {
    grid-column-gap: 2vw;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .card-image-right {
    max-width: 23vw;
  }

  .mg-top-80px {
    padding-top: 0;
  }

  .cta-card.buy-card {
    border-radius: 4vw;
  }

  .dropdown-link-single {
    padding-bottom: .5vw;
    font-size: 1.1vw;
  }

  .card-home-pages-wrapper {
    border-radius: 50vw;
  }

  .text-500-big.bold.mg-bottom-24px {
    margin-bottom: 1vw;
    line-height: 100%;
  }

  .div-block {
    grid-template-columns: 1fr 1fr;
  }

  .text-block {
    font-size: 1.1vw;
    font-weight: 500;
  }

  .basic-info {
    font-size: 3vw;
  }

  .heading {
    font-size: 1.6vw;
    font-weight: 600;
  }

  .cta-square-avatar {
    object-fit: cover;
    flex: 1;
    width: auto;
    min-width: auto;
    max-width: 20vw;
  }

  .block-about-me {
    padding-top: 0;
  }

  .card-2-info.image-right-inside {
    flex-flow: column;
  }

  .slogan {
    margin-top: .2vw;
    font-size: 1vw;
  }

  .slogan-home {
    max-width: 10vw;
    max-height: 10vw;
    padding-bottom: 0;
  }

  .div-block-12 {
    flex-flow: row;
    justify-content: center;
    align-self: auto;
    align-items: center;
    margin-top: 5vw;
    margin-bottom: 1vw;
  }

  .slogan-home-copy, .slogan-home-1 {
    max-width: 25px;
    max-height: 25px;
  }

  .dropdown-menu-icons-footer {
    justify-content: space-between;
    align-self: stretch;
  }

  .whatsapp-menu {
    min-width: 2.6vw;
    max-width: 2.6vw;
    max-height: 100px;
  }

  .text-meta-footer {
    font-size: 1rem;
    font-weight: 300;
  }

  .text-meta-footer.text-color-muted-footer {
    color: #ffffff80;
    text-transform: uppercase;
    text-transform: uppercase;
    font-size: 1vw;
    font-weight: 300;
  }

  .instagram-menu {
    min-width: 2.6vw;
    max-width: 2.6vw;
    max-height: 100%;
  }

  .heading-h4-footer.text-uppercase-copy {
    font-size: 3vw;
    font-weight: 600;
  }

  .telegram-menu {
    min-width: 2.6vw;
    max-width: 2.6vw;
    max-height: 100%;
  }

  .menu-whatsapp-icon {
    width: auto;
    height: auto;
  }

  .slogan-home-trans {
    opacity: 1;
    max-width: 20vw;
    max-height: 10vw;
    padding-bottom: 0;
  }

  .text-block-2 {
    font-size: 1.1vw;
  }

  .paragraph-2 {
    margin-bottom: 1vw;
    font-size: 1.2vw;
    line-height: 160%;
  }

  .text-block-3 {
    font-size: 1.1vw;
  }

  .paragraph-3 {
    margin-bottom: 1vw;
    font-size: 1.2vw;
    line-height: 150%;
  }

  .text-block-4 {
    font-size: 1.1vw;
  }

  .lightbox-link {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
  }

  .notification-bar-icon-copy.blue {
    box-shadow: none;
    box-shadow: none;
  }

  .dropdown-menu-icons-footer-phone {
    justify-content: space-between;
    align-self: stretch;
  }

  .bottom-text {
    font-size: 1.6vw;
    font-weight: 500;
  }

  .text-block-5 {
    text-align: left;
    font-size: 1.2vw;
  }

  .field-label {
    margin-bottom: .5vw;
    font-size: 1.1vw;
  }

  .text-field {
    padding-top: 1vw;
    padding-bottom: 1vw;
    font-size: 1.1vw;
  }

  .field-label-2 {
    margin-top: 1vw;
    margin-bottom: .5vw;
    font-size: 1.1vw;
  }

  .textarea {
    font-size: 1.1vw;
  }

  .image-5 {
    min-width: 45%;
    max-width: 45%;
  }

  .avatar-in-about-me {
    border-radius: 100%;
  }

  .container-default-free-consult {
    padding-left: 0;
    padding-right: 0;
  }

  .select-field-2 {
    font-size: 1.1vw;
  }

  .day-select-session {
    align-self: stretch;
  }

  .image-7 {
    max-width: 1vw;
  }

  .icon-header-in-form {
    margin-top: 1vw;
    margin-bottom: .5vw;
  }

  .field-label-3, .btn-primary-form, .text-block-9, .text-block-10, .text-block-11 {
    font-size: 1.1vw;
  }

  .card-main.image-right-inside {
    padding-left: 3vw;
  }

  .paragraph-5 {
    font-size: 1.1vw;
    line-height: 160%;
  }

  .image-9 {
    max-width: 36vw;
  }

  .div-block-24 {
    display: block;
  }

  .header-nav-menu-list-second {
    grid-column-gap: 0vw;
    flex-flow: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: auto;
    align-items: center;
    margin-right: 1vw;
    padding-left: 2vw;
    padding-right: 2vw;
    display: flex;
  }

  .header-nav-link-second-1 {
    text-align: left;
    flex: 0 auto;
    align-self: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 1vw;
    display: block;
  }

  .header-nav-link-second-1.w--current {
    flex: 1;
    font-size: 1.1vw;
    display: block;
  }

  .header-nav-link-second-2 {
    text-align: left;
    flex: 0 auto;
    align-self: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 1vw;
    display: block;
  }

  .header-nav-link-second-2.w--current {
    flex: 1;
    font-size: 1.1vw;
    display: block;
  }

  .dropdown-link-single-last {
    margin-bottom: 1vw;
    padding-bottom: .5vw;
    font-size: 1.1vw;
  }

  .icon-header-in-form-select {
    margin-top: 1vw;
    margin-bottom: .5vw;
  }

  .utc-5 {
    color: var(--neutral--600);
    font-size: 1.1vw;
    line-height: 160%;
  }

  .radio-button-label, .radio-button-label-2 {
    font-size: 1.1vw;
  }

  .header-content-wrapper-copy {
    grid-column-gap: 0vw;
  }

  .certificates-space {
    padding-top: 0;
  }

  .div-block-12-copy {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-25 {
    flex: 1;
  }

  .link-block-3 {
    display: flex;
  }

  .div-block-26 {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    display: flex;
  }

  .text.medium.color-neutral-800 {
    text-align: center;
    text-align: center;
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1.2vw;
  }

  .text.dropdown-column-title {
    color: var(--neutral--700);
    font-size: 1.4vw;
    font-weight: 800;
    display: block;
  }

  .div-block-27 {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .flex-contacts.align-start.gap-column-12px {
    justify-content: center;
    align-items: center;
  }

  .text-second.medium.color-neutral-800 {
    text-align: center;
    text-align: center;
    margin-top: 1vw;
    margin-bottom: 1vw;
  }

  .text-second.dropdown-column-title {
    color: var(--neutral--700);
    font-size: 1.4vw;
    font-weight: 800;
    display: block;
  }

  .success-font-2 {
    font-size: 1.6vw;
  }

  .success-font-2.medium.color-neutral-800 {
    flex: 1;
  }

  .success-font-2.dropdown-column-title {
    color: var(--neutral--700);
    font-size: 1.4vw;
    font-weight: 800;
    display: block;
  }

  .div-block-29 {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-12 {
    text-align: left;
    margin-top: .5vw;
    font-size: 1.2vw;
  }

  .div-block-30 {
    grid-column-gap: .6vw;
    grid-row-gap: .6vw;
    flex-flow: column;
    display: flex;
  }

  .lightbox-book {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
  }

  .avatar-in-about-me-2 {
    object-fit: contain;
    border-radius: 15%;
    min-width: 20vw;
    max-width: 25vw;
    margin-top: 5vw;
  }

  .main-image {
    border-radius: 100px 0% 0%;
    max-width: 23vw;
  }

  .questions.medium.color-neutral-800 {
    text-align: center;
    text-align: center;
    align-self: flex-start;
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1.2vw;
  }

  .questions.dropdown-column-title {
    color: var(--neutral--700);
    font-size: 1.4vw;
    font-weight: 800;
    display: block;
  }

  .paragraph-footer {
    flex: 1;
    margin-right: 0;
  }

  .footer-text {
    text-align: left;
    font-size: 1.2vw;
    line-height: 100%;
  }

  .code-embed-2 {
    height: 50vw;
    min-height: 55vw;
  }

  .div-block-32 {
    flex-flow: column;
    display: flex;
  }

  .header-nav-link-copy {
    text-align: left;
    flex: 0 auto;
    align-self: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.1vw;
    font-weight: 500;
    display: block;
  }

  .header-nav-link-copy.w--current {
    flex: 1;
    font-size: 1.1vw;
    display: block;
  }

  .slogan2 {
    margin-top: .2vw;
    font-size: 1vw;
  }

  .booking {
    margin-top: -4vw;
  }

  .back {
    margin-top: .2vw;
    font-size: 1vw;
  }

  .text-100-contacts {
    font-size: 1.2vw;
  }

  .text-100-contacts.medium.color-neutral-800 {
    flex: 1;
  }

  .text-100-contacts.dropdown-column-title {
    color: var(--neutral--700);
    font-size: 1.4vw;
    font-weight: 800;
    display: block;
  }

  .text-500-big-main-text.bold.mg-bottom-24px {
    margin-bottom: 1vw;
    font-size: 3vw;
    line-height: 100%;
  }

  .text-500-big-2.bold.mg-bottom-24px, .text-500-big-3.bold.mg-bottom-24px, .text-500-big-3.bold.mg-bottom-24px, .text-500-big-3.bold.mg-bottom-24px {
    margin-bottom: 1vw;
    line-height: 100%;
  }

  .google-calendar-text.bold.mg-bottom-24px {
    margin-bottom: 1vw;
    padding-top: 4vw;
    font-size: 2.4vw;
    line-height: 120%;
  }

  .offline-choose {
    font-size: 1.1vw;
  }

  .container-after-send-form {
    justify-content: center;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    max-width: 90%;
  }

  .div-block-35 {
    flex: 1;
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .text-about-me.bold.mg-bottom-24px {
    margin-bottom: 1vw;
    line-height: 100%;
  }

  .video-block {
    width: 48%;
  }
}

@media screen and (min-width: 1920px) {
  .grid-2-columns.main-dashboard-grid {
    margin-top: 3vw;
  }

  .card.component-card {
    display: block;
  }

  .card.inside-image {
    grid-column-gap: .2vw;
    grid-row-gap: .2vw;
    opacity: .95;
    flex-flow: column;
    display: flex;
  }

  .card.image-right-inside {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 2vw;
    display: flex;
  }

  .card.header-dropdown-card {
    box-shadow: 0 2vw 3vw 1vw var(--general--shadow-05);
    min-width: 30vw;
    margin-top: 0;
    padding: 2vw;
  }

  .color-neutral-100 {
    flex: 1;
    margin-bottom: 0;
    font-size: 1.6vw;
    display: flex;
  }

  .mg-bottom-24px {
    color: var(--neutral--800);
    margin-top: 0;
    font-size: 1.1vw;
    line-height: 160%;
  }

  .text-200.bold {
    font-family: Nunito, Arial, sans-serif;
    font-size: 1.6vw;
  }

  .grid-1-column.gap-row-12px {
    margin-bottom: 1vw;
  }

  .text-400.bold.color-neutral-800 {
    font-size: 1.4vw;
    font-weight: 600;
  }

  .text-100 {
    font-size: 1.1vw;
    line-height: 160%;
  }

  .text-100.medium.color-neutral-800 {
    font-size: 1.1vw;
  }

  .text-100.dropdown-column-title {
    color: var(--neutral--800);
    font-size: 1.4vw;
    font-weight: 500;
  }

  .inner-container._334px._100-mbl {
    flex: 0 auto;
    justify-content: flex-start;
    align-self: auto;
    align-items: stretch;
    margin-top: 0;
    margin-right: 3vw;
    padding-bottom: 1vw;
    display: block;
  }

  .mg-bottom-0 {
    font-size: 1.1vw;
    line-height: 160%;
  }

  .btn-primary {
    flex-flow: row;
    flex: 1;
    align-items: stretch;
    padding: .5vw 20px;
    font-size: .6vw;
    display: flex;
  }

  .btn-primary.white {
    flex: 0 auto;
  }

  .btn-secondary {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .buttons-row.gap-column-12px {
    display: flex;
  }

  .container-default {
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .flex-horizontal.gap-column-4px {
    grid-column-gap: .5vw;
    grid-row-gap: .5vw;
    grid-column-gap: .5vw;
    grid-row-gap: .5vw;
    line-height: 160%;
    display: flex;
  }

  .flex.align-start.gap-column-6px {
    grid-column-gap: 1vw;
    grid-column-gap: 1vw;
    grid-column-gap: 1vw;
    flex-flow: row;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
  }

  .hidden-on-mbl {
    flex: 1;
    align-items: stretch;
    display: flex;
  }

  .text-50.medium.mg-bottom-4px {
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 1vw;
  }

  .dashboard-main-content {
    width: auto;
    max-width: 1728px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .max-w-20px {
    max-width: 1.6vw;
    max-height: 1.6vw;
  }

  .text-500.bold.mg-bottom-0 {
    display: flex;
  }

  .text-500.bold.mg-bottom-24px {
    margin-bottom: 0;
    font-size: 1.6vw;
    font-weight: 600;
  }

  .header-wrapper {
    justify-content: space-between;
    align-items: stretch;
  }

  .logo-link-wrapper.w--current {
    max-height: 4vw;
  }

  .header-nav-link {
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 1vw;
    font-weight: 500;
  }

  .header-nav-link.w--current {
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-weight: 500;
  }

  .header-nav-menu-list {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    border-radius: 100vw;
    flex: 0 auto;
    margin-left: 1vw;
    margin-right: 1vw;
    padding: .5vw 1.5vw;
  }

  .header-nav-list-item {
    padding-right: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
  }

  .header-content-wrapper {
    flex-flow: row;
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .notification-bar.blue {
    align-items: stretch;
    display: flex;
  }

  .notification-bar-icon.green, .notification-bar-icon.orange, .notification-bar-icon.green, .notification-bar-icon.orange {
    min-width: 1.5vw;
    max-width: 2vw;
  }

  .notification-bar-main-container {
    padding: 1vw 2vw 1.2vw;
  }

  .tab-menu-badge-link, .tab-menu-badge-link.w--current {
    padding: 1vw;
  }

  .header-right-side-container {
    flex-flow: row;
    flex: 0 auto;
    display: flex;
  }

  .footer-top-section {
    padding-top: 0;
    padding-bottom: 3vw;
  }

  .footer-bottom-section {
    justify-content: space-between;
    align-self: stretch;
    align-items: flex-start;
    margin-top: 2vw;
    margin-bottom: 2vw;
  }

  .card-image-right {
    flex: 0 auto;
    max-width: 23vw;
    position: relative;
  }

  .cta-card {
    flex-flow: row;
    display: flex;
  }

  .cta-card.buy-card {
    display: flex;
  }

  .dropdown-link-single {
    margin-bottom: 0;
    font-size: 1.1vw;
    line-height: 160%;
  }

  .link-icon.arrow-right {
    max-width: 15vw;
  }

  .card-home-pages-wrapper {
    flex-flow: column;
    display: flex;
  }

  .grid-2-columns-2._1-col-tablet {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    justify-content: stretch;
    place-items: center;
    margin-top: 5vw;
  }

  .cta-square-logo {
    width: 16vw;
  }

  .text-500-big.bold.mg-bottom-24px, .text-500-big.bold.mg-bottom-24px-copy, .text-500-big.bold.mg-bottom-24px, .text-500-big.bold.mg-bottom-24px-copy, .text-500-big.bold.mg-bottom-24px, .text-500-big.bold.mg-bottom-24px-copy {
    padding-top: 2vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }

  .card-xp.pd-24px-xp {
    background-image: none;
    border-radius: 2vw;
    padding: 1vw;
  }

  .div-block {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    margin-top: 2vw;
    margin-bottom: 2vw;
  }

  .text-block {
    font-size: 1vw;
    font-weight: 500;
  }

  .image {
    min-width: 13vw;
    max-width: 41vw;
  }

  .div-block-4 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    display: flex;
  }

  .basic-info, .heading {
    font-size: 1.6vw;
  }

  .div-block-6 {
    grid-column-gap: .5vw;
    grid-row-gap: .5vw;
    align-self: stretch;
    margin-bottom: 1vw;
  }

  .card-copy.image-right-inside {
    flex: 1;
  }

  .cases {
    flex: 1;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    display: flex;
  }

  .overall-cases {
    align-items: flex-start;
    margin-top: 1vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
  }

  .cta-square-avatar {
    object-fit: cover;
    width: 16vw;
    min-width: 15vw;
    max-width: 15vw;
  }

  .block-about-me {
    justify-content: flex-start;
    align-items: center;
  }

  .block-galeria {
    grid-template-rows: auto;
  }

  .div-block-8 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2vw;
    display: flex;
  }

  .card-2-info.image-right-inside {
    flex-flow: column;
    padding-bottom: 2rem;
  }

  .div-block-9 {
    flex: 1;
    display: flex;
  }

  .slogan {
    margin-top: 0;
    font-size: .9vw;
  }

  .podwal {
    margin-bottom: 1vw;
    text-decoration: none;
  }

  .div-block-11 {
    grid-column-gap: .5vw;
    grid-row-gap: .5vw;
  }

  .div-block-12 {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    flex-flow: row;
    flex: 0 auto;
    order: 0;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    margin-top: 5vw;
    margin-bottom: 0;
  }

  .dropdown-menu-icons-footer {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    flex-direction: row;
    flex: 0 auto;
    order: 3;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-self: stretch;
    align-items: stretch;
    margin-top: 1vw;
    margin-bottom: .3vw;
    margin-left: 0;
    padding: 0;
    display: flex;
  }

  .menu-telegram-icon {
    opacity: .7;
    order: 3;
    align-self: auto;
    width: auto;
    height: auto;
    margin-left: 1rem;
  }

  .menu-telegram-icon:hover {
    opacity: 1;
  }

  .menu-instagram-icon {
    opacity: .7;
    order: 4;
    margin-left: 1rem;
  }

  .menu-instagram-icon:hover {
    opacity: 1;
  }

  .whatsapp-menu {
    flex: 0 auto;
    align-self: flex-start;
    width: 2.4vw;
    max-width: 2.4vw;
    height: 2.4vw;
    max-height: 2.4vw;
    margin: 0;
    display: block;
  }

  .text-meta-footer {
    font-size: 1vw;
    font-weight: 300;
  }

  .text-meta-footer.text-color-muted-footer {
    color: #ffffff80;
    text-align: left;
    text-transform: uppercase;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-top: .25rem;
    font-size: 1vw;
  }

  .instagram-menu {
    opacity: 1;
    flex: 0 auto;
    order: 0;
    align-self: center;
    width: 2.4vw;
    max-width: 2.4vw;
    height: 2.4vw;
    max-height: 2.4vw;
    margin: 0;
    display: inline-block;
  }

  .heading-h4-footer.text-uppercase-copy {
    text-transform: uppercase;
    text-transform: uppercase;
    margin-top: 1vw;
    font-size: 3vw;
    line-height: 100%;
  }

  .margin-bottom-copy.margin-tiny-copy {
    background-color: #0000;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .telegram-menu {
    opacity: 1;
    align-self: center;
    width: 2.4vw;
    max-width: 2.4vw;
    height: 2.4vw;
    max-height: 2.4vw;
    margin: 0;
    display: block;
  }

  .menu-whatsapp-icon {
    opacity: .7;
    flex-direction: row;
    order: 2;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: auto;
    height: auto;
    display: block;
  }

  .menu-whatsapp-icon:hover {
    opacity: 1;
  }

  .footer-padding {
    flex-direction: column;
    align-self: stretch;
    align-items: stretch;
    padding-right: 5rem;
    display: flex;
  }

  .slogan-home-trans {
    opacity: 1;
    max-width: 25vw;
    max-height: 25vw;
  }

  .space-0-5-rem {
    align-self: stretch;
  }

  .text-block-2 {
    padding: 0 .2vw;
    font-size: 1.2vw;
  }

  .logo-in-mobile-menu {
    grid-column-gap: .2vw;
    grid-row-gap: .2vw;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .paragraph-2 {
    margin-bottom: 1vw;
    font-size: 1.1vw;
    line-height: 160%;
  }

  .text-block-3 {
    font-size: 1.1vw;
  }

  .paragraph-3 {
    margin-top: 0;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    line-height: 160%;
  }

  .text-block-4 {
    padding-top: .5vw;
    padding-bottom: .5vw;
    font-size: 1.1vw;
    line-height: 100%;
  }

  .double-pic {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .link {
    font-size: 1.2vw;
  }

  .div-block-18 {
    flex: 0 auto;
    display: block;
  }

  .certificates {
    padding-top: 6vw;
  }

  .lightbox-link {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
  }

  .dropdown-menu-icons-footer-phone {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    flex-direction: row;
    flex: 0 auto;
    order: 3;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-self: stretch;
    align-items: stretch;
    margin-top: 1vw;
    margin-bottom: .3vw;
    margin-left: 0;
    padding: 0;
    display: flex;
  }

  .image-bottom {
    min-width: 33vw;
    max-width: 40vw;
  }

  .text-block-5 {
    font-size: 1.2vw;
  }

  .div-block-20, .div-block-21 {
    grid-column-gap: .5vw;
    grid-row-gap: .5vw;
    flex-flow: column;
    display: flex;
  }

  .field-label {
    font-size: 1.1vw;
  }

  .text-field {
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
    font-size: 1.1vw;
  }

  .field-label-2 {
    margin-top: 1vw;
    margin-bottom: .5vw;
    font-size: 1.1vw;
  }

  .textarea {
    font-size: 1.2vw;
  }

  .field-label-alarm {
    font-size: 1vw;
  }

  .image-5 {
    border-radius: 0;
    min-width: 45%;
    max-width: 45%;
  }

  .image-5:hover {
    opacity: .8;
  }

  .avatar-in-about-me {
    border-radius: 100%;
    flex: 0 auto;
    align-self: auto;
    min-width: 20vw;
    max-width: 25vw;
    display: block;
  }

  .container-default-free-consult {
    justify-content: space-between;
    align-items: center;
    max-width: 1268vw;
    display: flex;
  }

  .btn-primary-copy {
    flex-flow: row;
    flex: 1;
    align-items: stretch;
    padding: 12px 20px;
    font-size: .6vw;
    display: flex;
  }

  .select-field-2 {
    min-height: 3vw;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 1vw;
    font-size: 1.1vw;
  }

  .day-select-session {
    padding-right: 0;
  }

  .icon-header-in-form {
    margin-top: 1vw;
  }

  .divider-for-button {
    margin-bottom: 5vw;
  }

  .field-label-3 {
    font-size: 1.1vw;
  }

  .btn-primary-form {
    flex-flow: row;
    flex: 1;
    align-items: stretch;
    padding: 12px 20px;
    font-size: 1.1vw;
    display: flex;
  }

  .text-block-9, .text-block-10, .text-block-11 {
    font-size: 1.1vw;
  }

  .card-main.inside-image {
    grid-column-gap: .5vw;
    grid-row-gap: .5vw;
    flex-flow: column;
    display: flex;
  }

  .card-main.image-right-inside {
    background-image: none;
    border-radius: 3vw;
    flex-flow: row;
    padding-bottom: 0;
    display: flex;
  }

  .image-8 {
    max-width: 10vw;
    max-height: 10vw;
  }

  .image-8-copy {
    max-width: 15vw;
    max-height: 15vw;
  }

  .paragraph-4 {
    font-size: 1.1vw;
    line-height: 140%;
  }

  .paragraph-5 {
    font-size: 1.1vw;
    line-height: 160%;
  }

  .image-9 {
    flex: 0 auto;
  }

  .div-block-24 {
    padding-left: 10vw;
    padding-right: 10vw;
    display: block;
  }

  .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold-copy.mg-bottom-24px, .text-500-big-copy.bold-copy.mg-bottom-24px-copy, .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold-copy.mg-bottom-24px, .text-500-big-copy.bold-copy.mg-bottom-24px-copy, .text-500-big-copy.bold-copy.mg-bottom-24px, .text-500-big-copy.bold-copy.mg-bottom-24px-copy {
    padding-top: 2vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }

  .header-wrapper-second {
    justify-content: flex-start;
    align-items: stretch;
  }

  .header-nav-menu-list-second {
    grid-column-gap: 0vw;
    flex: 0 auto;
    margin-left: 0;
    margin-right: 1vw;
    padding-left: 0;
    padding-right: 1vw;
  }

  .header-nav-link-second-1, .header-nav-link-second-2 {
    font-size: 1.1vw;
  }

  .dropdown-link-single-last {
    margin-bottom: 0;
    font-size: 1.1vw;
    line-height: 140%;
  }

  .space-1-vw {
    display: flex;
  }

  .icon-header-in-form-select {
    margin-top: 1vw;
  }

  .format-select {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
  }

  .utc-5 {
    color: var(--neutral--600);
    margin-top: 0;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    line-height: 160%;
  }

  .radio-button-label, .radio-button-label-2 {
    font-size: 1.1vw;
  }

  .container-default-copy {
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .header-content-wrapper-copy {
    flex-flow: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .avatar-about-me {
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }

  .div-block-12-copy {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    justify-content: flex-start;
    align-items: center;
  }

  .text {
    font-size: 1.1vw;
    line-height: 160%;
  }

  .text.medium.color-neutral-800 {
    text-align: center;
    text-align: center;
    font-size: 1.1vw;
  }

  .text.dropdown-column-title {
    color: var(--neutral--800);
    font-size: 1.4vw;
    font-weight: 800;
  }

  .div-block-27 {
    margin-top: 1vw;
  }

  .flex-contacts.align-start.gap-column-6px {
    grid-column-gap: 1vw;
    grid-column-gap: 1vw;
    grid-column-gap: 1vw;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
  }

  .text-second {
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    line-height: 160%;
  }

  .text-second.medium.color-neutral-800 {
    text-align: center;
    text-align: center;
    font-size: 1.1vw;
  }

  .text-second.dropdown-column-title {
    color: var(--neutral--800);
    font-size: 1.4vw;
    font-weight: 800;
  }

  .success-font-2 {
    margin-top: 1vw;
    font-size: 1.4vw;
    line-height: 160%;
  }

  .success-font-2.medium.color-neutral-800 {
    font-size: 1.1vw;
  }

  .success-font-2.dropdown-column-title {
    color: var(--neutral--800);
    font-size: 1.4vw;
    font-weight: 800;
  }

  .div-block-28 {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
  }

  .image-10 {
    flex: 0 auto;
  }

  .div-block-29 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-30 {
    grid-column-gap: .6vw;
    grid-row-gap: .6vw;
    flex-flow: column;
    line-height: 160%;
    display: flex;
  }

  .lightbox-book {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
  }

  .avatar-in-about-me-2 {
    border-radius: 15%;
    flex: 0 auto;
    align-self: auto;
    min-width: 20vw;
    max-width: 25vw;
    margin-top: 3vw;
    display: block;
  }

  .main-image {
    flex: 0 auto;
    max-width: 23vw;
    position: relative;
  }

  .questions {
    font-size: 1.1vw;
    line-height: 160%;
  }

  .questions.medium.color-neutral-800 {
    text-align: center;
    text-align: center;
    align-self: flex-start;
    font-size: 1.1vw;
  }

  .questions.dropdown-column-title {
    color: var(--neutral--800);
    font-size: 1.4vw;
    font-weight: 800;
  }

  .footer-text {
    font-size: 1.2vw;
  }

  .code-embed-2 {
    flex: 1;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    margin-top: 0;
    font-size: 14vw;
    display: flex;
  }

  .div-block-32 {
    flex-flow: column;
    display: flex;
  }

  .header-wrapper-copy, .header-wrapper-2, .header-wrapper-2-copy {
    justify-content: space-between;
    align-items: stretch;
  }

  .header-nav-link-copy {
    font-size: 1vw;
    font-weight: 500;
  }

  .header-nav-link-copy.w--current {
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-weight: 500;
  }

  .image-clinical-mind-back {
    min-width: 13vw;
    max-width: 41vw;
  }

  .slogan2 {
    font-size: 1vw;
  }

  .booking {
    margin-top: -3vw;
  }

  .back {
    font-size: 1vw;
  }

  .text-100-contacts {
    font-size: 1.1vw;
    line-height: 160%;
  }

  .text-100-contacts.medium.color-neutral-800 {
    font-size: 1.1vw;
  }

  .text-100-contacts.dropdown-column-title {
    color: var(--neutral--800);
    font-size: 1.4vw;
    font-weight: 800;
  }

  .text-500-big-main-text.bold.mg-bottom-24px, .text-500-big-main-text.bold.mg-bottom-24px-copy, .text-500-big-main-text.bold.mg-bottom-24px, .text-500-big-main-text.bold.mg-bottom-24px-copy, .text-500-big-main-text.bold.mg-bottom-24px, .text-500-big-main-text.bold.mg-bottom-24px-copy {
    padding-top: 2vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }

  .text-500-big-2.bold.mg-bottom-24px {
    padding-top: 2vw;
    padding-bottom: 1vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 3vw;
    font-weight: 600;
  }

  .text-500-big-2.bold.mg-bottom-24px-copy, .text-500-big-3.bold.mg-bottom-24px, .text-500-big-3.bold.mg-bottom-24px-copy, .text-500-big-3.bold.mg-bottom-24px, .text-500-big-3.bold.mg-bottom-24px-copy, .text-500-big-3.bold.mg-bottom-24px, .text-500-big-3.bold.mg-bottom-24px-copy {
    padding-top: 2vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }

  .buttons.blue, .google-calendar-link.blue, .google-calendar-link.blue {
    align-items: stretch;
    display: flex;
  }

  .google-calendar-text.bold.mg-bottom-24px {
    padding-top: 4vw;
    padding-bottom: 1vw;
    font-size: 2vw;
  }

  .google-calendar-text.bold.mg-bottom-24px-copy {
    padding-top: 2vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }

  .offline-choose {
    font-size: 1.1vw;
  }

  .container-after-send-form {
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 100%;
    margin-top: 2vw;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold-copy.mg-bottom-24px, .price-header.bold-copy.mg-bottom-24px-copy, .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold-copy.mg-bottom-24px, .price-header.bold-copy.mg-bottom-24px-copy, .price-header.bold-copy.mg-bottom-24px, .price-header.bold-copy.mg-bottom-24px-copy {
    padding-top: 2vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }

  .div-block-35 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-about-me.bold.mg-bottom-24px, .text-about-me.bold.mg-bottom-24px-copy, .text-about-me.bold.mg-bottom-24px, .text-about-me.bold.mg-bottom-24px-copy, .text-about-me.bold.mg-bottom-24px, .text-about-me.bold.mg-bottom-24px-copy {
    padding-top: 2vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }

  .code-embed-4 {
    object-fit: cover;
    width: 0;
    height: 0;
    display: block;
  }

  .div-block-36 {
    flex-flow: row;
    display: flex;
  }

  .section {
    flex: 0 auto;
  }

  .video {
    width: 25%;
    max-width: none;
    height: 25%;
    max-height: none;
  }

  .div-block-37 {
    display: flex;
  }

  .code-embed-5 {
    flex: 1;
    min-width: 50%;
    min-height: 50%;
  }

  .video-block {
    width: 41%;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    margin-bottom: 12px;
  }

  .grid-2-columns.main-dashboard-grid {
    grid-row-gap: 64px;
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .card._404 {
    max-width: 520px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .card.inside-image {
    margin-top: 0;
    margin-bottom: 0;
  }

  .card.image-right-inside {
    flex-flow: column;
    padding: 56px 40px;
  }

  .color-neutral-100 {
    font-size: 3vw;
  }

  .mg-bottom-24px {
    font-size: 2vw;
    line-height: 180%;
  }

  .text-200.bold {
    font-size: 3vw;
  }

  .grid-1-column.sidebar-links-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-1-column.sidebar-links-grid.mg-bottom-48px {
    margin-bottom: 32px;
  }

  .text-400.bold.color-neutral-800 {
    font-size: 2.6vw;
  }

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

  .grid-3-columns._1-col-tablet {
    grid-template-columns: 1fr;
  }

  .inner-container._100-tablet {
    max-width: 100%;
  }

  .container-default {
    flex: 1;
  }

  .hamburger-menu-wrapper {
    grid-column-gap: 24px;
    flex: 0 auto;
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .hamburger-menu-wrapper.w--open {
    background-color: #0000;
  }

  .hidden-on-desktop.show-on-tablet {
    display: block;
  }

  .error-message.password {
    margin-left: 32px;
    margin-right: 32px;
  }

  ._404-not-found {
    font-size: 100px;
  }

  .hidden-on-mbl {
    flex: 1;
  }

  .text-50.medium.sidebar-title {
    margin-bottom: 12px;
  }

  .position-relative---z-index-1 {
    display: block;
  }

  .dashboard-main-content.utility-page-main-content {
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    display: flex;
  }

  .dashboard-main-content.changelog-page-main-content {
    grid-row-gap: 80px;
    min-height: auto;
  }

  .text-500.bold.mg-bottom-24px {
    font-size: 2vw;
  }

  .text-600 {
    font-size: 26px;
  }

  .header-nav-menu-wrapper {
    z-index: 999999;
    border-top: 1px solid var(--neutral--300);
    border-bottom: 1px solid var(--neutral--300);
    background-color: var(--neutral--100);
    text-align: left;
    padding: 40px 24px;
  }

  .header-nav-menu-list {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
    display: none;
  }

  .header-content-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .sidebar-container {
    z-index: 0;
    position: static;
  }

  .buttons-container {
    grid-column-gap: 20px;
  }

  .divider-vertical {
    margin-left: 40px;
    margin-right: 40px;
  }

  .avatars-container {
    grid-column-gap: 40px;
  }

  .border-radius-12px {
    max-width: 100%;
  }

  .header-right-side-container {
    grid-column-gap: 16px;
    flex: 1;
    align-items: center;
    display: flex;
  }

  .hamburger-menu-bar {
    width: 44px;
  }

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

  .footer-bottom-section {
    grid-row-gap: 20px;
    text-align: center;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .card-image-right {
    order: -1;
    align-self: flex-start;
    width: auto;
    max-width: 35vw;
  }

  .cta-card {
    border-radius: 20px;
    padding: 64px 40px;
  }

  .hidden-on-tablet {
    display: none;
  }

  .header-sidebar-wrapper {
    margin-bottom: 24px;
    display: block;
  }

  .grid-2-columns-2._1-col-tablet {
    grid-template-columns: 1fr;
  }

  .text-500-big.bold.mg-bottom-24px {
    margin-top: 0;
    line-height: 140%;
  }

  .text-500-big.bold.mg-bottom-24px-copy {
    line-height: 140%;
  }

  .card-xp._404 {
    max-width: 520px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .card-xp.image-right-inside {
    padding: 56px 40px;
  }

  .grid-1-column-first.sidebar-links-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-1-column-first.sidebar-links-grid.mg-bottom-48px {
    margin-bottom: 32px;
  }

  .card-copy.image-right-inside {
    padding: 56px 40px;
  }

  .heading {
    font-size: 3vw;
  }

  .card-image-left {
    width: 56%;
  }

  .card-copy._404 {
    max-width: 520px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .card-copy.image-right-inside {
    margin-bottom: 2vw;
    padding: 2vw 40px 0;
  }

  .cta-square-avatar {
    width: auto;
    max-width: 35vw;
    min-height: auto;
    max-height: 35vw;
  }

  .block-galeria {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    margin-top: 2vw;
    margin-bottom: 2vw;
  }

  .card-2-info._404 {
    max-width: 520px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .card-2-info.image-right-inside {
    padding: 56px 40px;
  }

  .text-50-slogan.medium.sidebar-title {
    margin-bottom: 12px;
  }

  .div-block-12 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10vw;
  }

  .text-50-menu.medium.sidebar-title {
    margin-bottom: 12px;
  }

  .dropdown-menu-icons-footer {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    justify-content: space-around;
    margin-bottom: 2rem;
  }

  .whatsapp-menu {
    width: 10vw;
    max-width: 15vw;
  }

  .text-meta-footer {
    font-size: 2vw;
  }

  .text-meta-footer.text-color-muted-footer {
    color: #ffffff80;
    text-transform: uppercase;
    text-transform: uppercase;
    margin-top: 2px;
    font-size: 1.8vw;
    font-weight: 300;
  }

  .instagram-menu {
    width: 10vw;
    max-width: 10vw;
  }

  .heading-h4-footer.text-uppercase-copy {
    font-size: 6vw;
  }

  .margin-bottom-copy {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom-copy.margin-tiny-copy {
    justify-content: flex-start;
    align-self: flex-end;
    display: flex;
  }

  .telegram-menu {
    width: 10vw;
    max-width: 10vw;
  }

  .paragraph {
    font-size: 2vw;
  }

  .text-block-2 {
    font-size: 1.6vw;
  }

  .mobile-logo {
    flex: 0 auto;
  }

  .lightbox-link {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4vw;
  }

  .notification-bar-icon-copy.blue {
    min-width: 3vw;
  }

  .dropdown-menu-icons-footer-phone {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    justify-content: space-around;
    margin-bottom: 2rem;
  }

  .bottom-text {
    margin-bottom: 4vw;
    font-size: 3vw;
  }

  .image-bottom {
    max-width: 70%;
  }

  .text-block-5 {
    text-align: right;
  }

  .field-label {
    margin-bottom: .5vw;
  }

  .field-label-2 {
    margin-top: 3vw;
  }

  .heading-2 {
    font-size: 1.6vw;
  }

  .image-5 {
    max-width: 100%;
  }

  .avatar-in-about-me {
    max-width: 45vw;
  }

  .container-default-free-consult {
    flex: 1;
  }

  .icon-header-in-form {
    margin-top: 3vw;
  }

  .card-main._404 {
    max-width: 520px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .card-main.image-right-inside {
    flex-flow: column;
    padding: 56px 40px;
  }

  .image-9 {
    border-radius: 5vw;
    flex: 0 auto;
    max-width: 40%;
    max-height: 40%;
  }

  .div-block-23 {
    flex-flow: column;
  }

  .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold-copy.mg-bottom-24px, .text-500-big-copy.bold-copy.mg-bottom-24px-copy, .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold-copy.mg-bottom-24px, .text-500-big-copy.bold-copy.mg-bottom-24px-copy, .text-500-big-copy.bold-copy.mg-bottom-24px, .text-500-big-copy.bold-copy.mg-bottom-24px-copy {
    line-height: 140%;
  }

  .header-nav-menu-list-second {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
    display: none;
  }

  .icon-header-in-form-select {
    margin-top: 3vw;
  }

  .utc-5 {
    font-size: 2vw;
    line-height: 180%;
  }

  .container-default-copy {
    flex: 1;
  }

  .header-content-wrapper-copy {
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-12-copy {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .div-block-26 {
    flex-flow: column;
  }

  .text.medium.color-neutral-800 {
    color: var(--neutral--500);
    justify-content: center;
    align-items: center;
    margin-top: .5vw;
    margin-bottom: .5vw;
    display: flex;
  }

  .flex-contacts {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
  }

  .text-second.medium.color-neutral-800 {
    color: var(--neutral--500);
    justify-content: center;
    align-items: center;
    margin-top: .5vw;
    margin-bottom: .5vw;
    display: flex;
  }

  .success-font-2 {
    margin-bottom: 5vw;
  }

  .image-10 {
    width: 40vw;
    height: 40vw;
  }

  .lightbox-book {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .avatar-in-about-me-2 {
    max-width: 45vw;
  }

  .main-image {
    order: -1;
    align-self: flex-start;
    width: auto;
    max-width: 35vw;
  }

  .questions.medium.color-neutral-800 {
    color: var(--neutral--500);
    justify-content: center;
    align-items: center;
    margin-top: .5vw;
    margin-bottom: .5vw;
    display: flex;
  }

  .paragraph-footer {
    font-size: 2vw;
  }

  .code-embed-2 {
    height: 110vw;
    min-height: 90vw;
  }

  .back-to-main-page {
    padding-bottom: 0;
  }

  .div-block-34 {
    align-self: flex-start;
    margin-bottom: 2vw;
  }

  .back {
    align-self: center;
    font-size: 1.6vw;
  }

  .grid-1-column-first-copy.sidebar-links-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-1-column-first-copy.sidebar-links-grid.mg-bottom-48px {
    margin-bottom: 32px;
  }

  .text-100-contacts.medium.color-neutral-800 {
    font-size: 2.4vw;
  }

  .text-500-big-main-text.bold.mg-bottom-24px {
    margin-top: 0;
    line-height: 140%;
  }

  .text-500-big-main-text.bold.mg-bottom-24px-copy {
    line-height: 140%;
  }

  .text-500-big-2.bold.mg-bottom-24px {
    margin-top: 0;
    line-height: 140%;
  }

  .text-500-big-2.bold.mg-bottom-24px-copy {
    line-height: 140%;
  }

  .text-500-big-3.bold.mg-bottom-24px {
    margin-top: 0;
    line-height: 140%;
  }

  .text-500-big-3.bold.mg-bottom-24px-copy {
    line-height: 140%;
  }

  .google-calendar-text.bold.mg-bottom-24px {
    margin-top: 0;
    line-height: 140%;
  }

  .google-calendar-text.bold.mg-bottom-24px-copy {
    line-height: 140%;
  }

  .ontacts-after-send-form {
    font-size: 2vw;
  }

  .container-after-send-form {
    flex: 1;
  }

  .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold-copy.mg-bottom-24px, .price-header.bold-copy.mg-bottom-24px-copy, .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold-copy.mg-bottom-24px, .price-header.bold-copy.mg-bottom-24px-copy, .price-header.bold-copy.mg-bottom-24px, .price-header.bold-copy.mg-bottom-24px-copy {
    line-height: 140%;
  }

  .text-about-me.bold.mg-bottom-24px {
    margin-top: 0;
    line-height: 140%;
  }

  .text-about-me.bold.mg-bottom-24px-copy {
    line-height: 140%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  blockquote {
    border-radius: 18px;
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .grid-2-columns._2-col-mbl {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2-columns.pd-sides-40px.pd-sides-0-mbl {
    grid-row-gap: 12px;
    grid-row-gap: 12px;
  }

  .card {
    box-shadow: 0 2px 12px #14142b0a;
  }

  .card._404 {
    max-width: 480px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .card.component-card {
    padding: 32px;
  }

  .card.pd-32px---24px {
    font-size: 2vw;
  }

  .card.pd-32px---18px {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card.image-right-inside {
    grid-row-gap: 40px;
    border-radius: 16px;
    flex-flow: column;
    grid-template-columns: 1fr;
    padding: 40px 32px 0;
  }

  .card.component-card-copy {
    padding: 32px;
  }

  .mg-bottom-24px {
    font-size: 2.6vw;
  }

  .mg-bottom-32px {
    margin-bottom: 28px;
  }

  .mg-bottom-40px {
    margin-bottom: 34px;
  }

  .mg-bottom-48px {
    margin-bottom: 40px;
  }

  .mg-top-48px {
    margin-top: 40px;
  }

  .text-200.bold {
    font-size: 4vw;
  }

  .grid-1-column.sidebar-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .text-100.medium.color-neutral-800 {
    flex: 1;
  }

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

  .grid-3-columns.home-cards-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .inner-container._100-mbl {
    max-width: 100%;
  }

  .inner-container._334px._100-mbl {
    margin-top: 2vw;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .error-message.password {
    margin-left: 24px;
    margin-right: 24px;
  }

  ._404-not-found {
    font-size: 80px;
  }

  .mg-bottom-12px.mg-bottom-32px-mbl {
    margin-bottom: 32px;
  }

  .flex.align-start.gap-column-6px {
    justify-content: center;
    align-items: center;
  }

  .hidden-on-mbl {
    display: none;
  }

  ._2-items-wrap-container.justify-center.gap-column-48px {
    grid-column-gap: 40px;
    grid-column-gap: 40px;
  }

  ._2-items-wrap-container.gap-row-40px {
    grid-row-gap: 40px;
  }

  .dashboard-main-content.utility-page-main-content {
    padding-top: 64px;
  }

  .text-500 {
    font-size: 22px;
  }

  .text-500.bold.mg-bottom-24px {
    font-size: 3vw;
  }

  .text-600 {
    font-size: 24px;
  }

  .logo-link-wrapper.w--current {
    flex-flow: column;
  }

  .header-nav-menu-wrapper {
    padding: 32px 20px;
  }

  .header-content-wrapper {
    flex: 1;
  }

  .divider-vertical {
    margin-left: 32px;
    margin-right: 32px;
  }

  .notification-bar-main-container {
    display: flex;
  }

  .card-icon-square {
    border-radius: 8px;
    max-width: 40px;
  }

  .data-table-row {
    min-width: 800px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .user-table-row {
    grid-template-columns: 2.5fr 1.5fr 1fr .8fr;
  }

  .tab-menu-underline-link {
    padding-bottom: 20px;
  }

  .header-right-side-container {
    grid-column-gap: 12px;
    flex: 1;
    justify-content: space-between;
  }

  .hamburger-menu-bar {
    width: 32px;
  }

  .footer-top-section {
    grid-column-gap: 32px;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .footer-links-container {
    grid-column-gap: 12px;
  }

  .footer-bottom-section {
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .social-links-container {
    grid-column-gap: 12px;
  }

  .social-circle-link {
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    font-size: 12px;
  }

  .card-image-right {
    order: -1;
    align-self: flex-start;
    width: 50%;
    max-width: none;
    margin-left: 0;
    position: static;
  }

  .mg-top-80px {
    margin-top: 72px;
  }

  .cta-card {
    grid-row-gap: 24px;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
  }

  .mg-bottom-80px {
    margin-bottom: 72px;
  }

  .pd-sides-40px {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pd-sides-40px.pd-sides-0-mbl {
    padding-left: 0;
    padding-right: 0;
  }

  .card-home-pages-wrapper {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .text-500-big {
    font-size: 22px;
  }

  .text-500-big.bold.mg-bottom-24px {
    margin-top: 5vw;
    line-height: 120%;
  }

  .card-xp {
    box-shadow: 0 2px 12px #14142b0a;
  }

  .card-xp._404 {
    max-width: 480px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .card-xp.component-card {
    padding: 32px;
  }

  .card-xp.pd-32px---18px {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card-xp.image-right-inside {
    grid-row-gap: 40px;
    border-radius: 16px;
    grid-template-columns: 1fr;
    padding: 40px 32px 0;
  }

  .grid-1-column-first.sidebar-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .basic-info {
    letter-spacing: -.5px;
    font-size: 5vw;
    font-weight: 800;
  }

  .card-image-left {
    width: 120%;
    max-width: none;
    margin-left: -40px;
    position: static;
  }

  .div-block-6 {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
  }

  .card-copy {
    box-shadow: 0 2px 12px #14142b0a;
  }

  .card-copy._404 {
    max-width: 480px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .card-copy.component-card {
    padding: 32px;
  }

  .card-copy.pd-32px---18px {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card-copy.image-right-inside {
    grid-row-gap: 40px;
    border-radius: 16px;
    grid-template-columns: 1fr;
    padding: 2vw 32px 0;
  }

  .card-copy.component-card-copy {
    padding: 32px;
  }

  .cta-square-avatar {
    max-width: 45vw;
    max-height: none;
    margin-left: 0;
    padding-left: 0;
  }

  .block-galeria {
    grid-row-gap: 5vw;
    margin-bottom: 22vw;
  }

  .card-2-info {
    box-shadow: 0 2px 12px #14142b0a;
  }

  .card-2-info._404 {
    max-width: 480px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .card-2-info.component-card {
    padding: 32px;
  }

  .card-2-info.pd-32px---18px {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card-2-info.image-right-inside {
    grid-row-gap: 40px;
    border-radius: 16px;
    grid-template-columns: 1fr;
    padding: 40px 32px 0;
  }

  .card-2-info.component-card-copy {
    padding: 32px;
  }

  .div-block-12 {
    flex-flow: column;
    align-items: flex-start;
    display: flex;
  }

  .slogan-home-copy {
    height: 25px;
  }

  .dropdown-menu-icons-footer {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    justify-content: flex-start;
    align-self: center;
    margin-bottom: 2rem;
    display: flex;
  }

  .whatsapp-menu {
    width: 6vw;
    max-width: 15vw;
  }

  .text-meta-footer {
    font-size: 3vw;
  }

  .text-meta-footer.text-color-muted-footer {
    color: #ffffff80;
    text-transform: uppercase;
    text-transform: uppercase;
    margin-top: 2px;
    font-size: 2.4vw;
  }

  .instagram-menu {
    width: 6vw;
    max-width: 15vw;
  }

  .heading-h4-footer {
    font-size: 1.5rem;
  }

  .heading-h4-footer.text-uppercase-copy {
    font-size: 8vw;
  }

  .margin-bottom-copy {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom-copy.margin-tiny-copy {
    flex-direction: row;
    justify-content: space-between;
    align-self: flex-end;
    display: flex;
  }

  .telegram-menu {
    width: 6vw;
    max-width: 15vw;
  }

  .paragraph {
    font-size: 3vw;
  }

  .space-0-5-rem {
    flex-flow: column;
  }

  .text-block-2 {
    font-size: 3vw;
  }

  .notification-bar-icon-copy.blue {
    box-shadow: none;
    box-shadow: none;
    min-width: 2vw;
    max-width: 5vw;
  }

  .dropdown-menu-icons-footer-phone {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    justify-content: flex-start;
    align-self: center;
    margin-bottom: 2rem;
    display: flex;
  }

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

  .form {
    max-width: 100%;
  }

  .textarea {
    padding-bottom: 10vw;
  }

  .heading-2 {
    margin-top: 0;
    font-size: 3vw;
  }

  .avatar-in-about-me {
    max-width: 60%;
  }

  .container-default-free-consult {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-7 {
    max-width: 3vw;
    margin-right: 0;
    padding-right: 0;
  }

  .field-label-3 {
    flex: 1;
  }

  .card-main {
    box-shadow: 0 2px 12px #14142b0a;
  }

  .card-main._404 {
    max-width: 480px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .card-main.component-card {
    padding: 32px;
  }

  .card-main.pd-32px---24px {
    font-size: 2vw;
  }

  .card-main.pd-32px---18px {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card-main.image-right-inside {
    grid-row-gap: 40px;
    border-radius: 16px;
    flex-flow: column;
    grid-template-columns: 1fr;
    padding: 40px 32px 0;
  }

  .card-main.component-card-copy {
    padding: 32px;
  }

  .image-8, .image-8-copy {
    max-width: 15vw;
    max-height: 15vw;
  }

  .galery-text {
    font-family: Nunito, Arial, sans-serif;
    font-size: 3vw;
    font-weight: 800;
  }

  .text-500-big-copy {
    font-size: 22px;
  }

  .utc-5 {
    font-size: 3vw;
  }

  .container-default-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-content-wrapper-copy {
    flex: 1;
  }

  .certificates-space {
    margin-top: 72px;
  }

  .div-block-12-copy {
    flex-flow: column;
    align-items: flex-start;
    display: flex;
  }

  .div-block-27 {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 4vw;
  }

  .flex-contacts.align-start.gap-column-6px {
    justify-content: center;
    align-items: center;
  }

  .success-font-2 {
    margin-bottom: 10vw;
    font-size: 4vw;
  }

  .success-font-2.medium.color-neutral-800 {
    flex: 1;
  }

  .success-font-1 {
    align-self: center;
    font-size: 6vw;
  }

  .div-block-28 {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-29 {
    justify-content: center;
    align-items: flex-start;
  }

  .redirect-text {
    font-size: 6vw;
  }

  .avatar-in-about-me-2 {
    max-width: 60%;
  }

  .main-image {
    order: -1;
    align-self: flex-start;
    width: 50%;
    max-width: none;
    margin-left: 0;
    position: static;
  }

  .paragraph-footer {
    font-size: 3vw;
  }

  .code-embed-2 {
    min-height: 160vw;
  }

  .booking {
    margin-top: -10vw;
  }

  .back {
    font-size: 3vw;
  }

  .grid-1-column-first-copy.sidebar-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .text-100-contacts.medium.color-neutral-800 {
    flex: 1;
  }

  .text-500-big-main-text {
    font-size: 22px;
  }

  .text-500-big-main-text.bold.mg-bottom-24px {
    margin-top: 5vw;
    line-height: 120%;
  }

  .text-500-big-2 {
    font-size: 22px;
  }

  .text-500-big-2.bold.mg-bottom-24px {
    margin-top: 5vw;
    line-height: 120%;
  }

  .text-500-big-3 {
    font-size: 22px;
  }

  .text-500-big-3.bold.mg-bottom-24px {
    margin-top: 5vw;
    line-height: 120%;
  }

  .google-calendar-text {
    font-size: 22px;
  }

  .google-calendar-text.bold.mg-bottom-24px {
    margin-top: 5vw;
    line-height: 120%;
  }

  .ontacts-after-send-form {
    font-size: 3vw;
  }

  .confidentially {
    font-size: 4vw;
  }

  .container-after-send-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .price-header, .text-about-me {
    font-size: 22px;
  }

  .text-about-me.bold.mg-bottom-24px {
    margin-top: 5vw;
    line-height: 120%;
  }
}

@media screen and (max-width: 479px) {
  img {
    max-width: 90%;
    margin-bottom: 5vw;
  }

  .page-wrapper {
    flex-flow: column;
    display: flex;
  }

  .grid-2-columns.main-dashboard-grid {
    flex-flow: column;
    flex: 1;
    margin-top: 0;
  }

  .card.password-protected-card {
    padding: 32px 24px;
  }

  .card._404 {
    padding: 48px 24px;
  }

  .card.component-card {
    padding: 10px 2vw;
  }

  .card.inside-image {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    opacity: .98;
    border-bottom-right-radius: 4vw;
    border-bottom-left-radius: 4vw;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    margin-top: -40px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
    display: flex;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .card.image-right-inside {
    grid-row-gap: 0vw;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
  }

  .card.component-card-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

  .color-neutral-100 {
    letter-spacing: -.5px;
    margin-bottom: 2vw;
    font-size: 7vw;
    font-weight: 500;
    line-height: 120%;
  }

  .mg-bottom-16px {
    margin-bottom: 12px;
  }

  .mg-bottom-24px {
    margin-bottom: 20px;
    font-size: 4vw;
  }

  .mg-top-48px {
    margin-top: 32px;
  }

  .text-200.bold {
    margin-bottom: 2vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 6vw;
    font-weight: 500;
  }

  .grid-1-column.sidebar-links-grid {
    grid-column-gap: 12px;
    grid-column-gap: 12px;
    grid-template-columns: 1fr;
  }

  .text-400.bold.color-neutral-800 {
    letter-spacing: -.5px;
    letter-spacing: -.5px;
    letter-spacing: -.5px;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 7vw;
    font-weight: 500;
  }

  .text-100 {
    flex: 0 auto;
    align-self: auto;
    max-width: 100%;
    margin-bottom: 0;
    font-size: 4vw;
    line-height: 160%;
    display: block;
  }

  .text-100.medium {
    text-transform: none;
    margin-bottom: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 6vw;
    font-style: normal;
    font-weight: 500;
  }

  .text-100.medium.color-neutral-800 {
    flex: 0 auto;
    margin-bottom: 0;
    font-size: 4vw;
    font-weight: 500;
    line-height: 170%;
    text-decoration: none;
    display: block;
  }

  .text-100.medium.color-neutral-800.text-100-contacts {
    letter-spacing: 0;
    letter-spacing: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
  }

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

  .grid-3-columns.home-cards-grid {
    grid-row-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .inner-container._334px._100-mbl {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 2fr;
    grid-auto-columns: 1fr;
    align-self: stretch;
    margin-top: 0;
    padding-bottom: 5vw;
    padding-left: 5%;
    padding-right: 5%;
    display: grid;
  }

  .mg-bottom-0 {
    align-self: stretch;
    padding-top: .3vw;
    padding-bottom: .3vw;
  }

  .btn-primary {
    display: flex;
  }

  .btn-secondary {
    display: block;
  }

  .line-rounded-icon.header-dropdown-icon {
    color: var(--neutral--600);
    font-size: 6vw;
  }

  .buttons-row.gap-column-12px {
    grid-column-gap: 12vw;
    grid-row-gap: 6vw;
    grid-column-gap: 12vw;
    grid-row-gap: 6vw;
    flex-flow: column;
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    padding-left: 1vw;
    padding-right: 0;
    display: flex;
  }

  .width-100 {
    width: 80%;
    margin-top: 5vw;
    margin-left: 5vw;
  }

  .container-default {
    flex: 1;
    max-width: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
    display: block;
  }

  .hamburger-menu-wrapper {
    grid-row-gap: 0px;
    justify-content: flex-end;
    align-self: auto;
    align-items: center;
    display: flex;
  }

  .hamburger-menu-wrapper.w--open {
    grid-column-gap: 0px;
    flex: 0 auto;
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .hamburger-menu-wrapper.w--open:active {
    opacity: .3;
  }

  .hamburger-menu-wrapper.w--open:focus {
    opacity: 1;
  }

  .hidden-on-desktop.show-on-tablet {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-self: stretch;
    margin-top: .5rem;
    display: flex;
  }

  .flex-vertical.align-center {
    align-items: stretch;
  }

  .flex-horizontal.gap-column-4px {
    grid-column-gap: 3vw;
    align-items: center;
  }

  .flex-horizontal.vertical-mbp {
    flex-direction: column;
  }

  .flex-horizontal.align-start.gap-column-16px {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    flex-flow: column;
    justify-content: space-between;
    display: flex;
  }

  ._404-not-found {
    font-size: 32vw;
  }

  .flex.align-center.gap-column-16px {
    grid-column-gap: 12px;
    grid-column-gap: 12px;
  }

  .flex.align-start.gap-column-6px {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .text-50.medium.sidebar-title {
    margin-top: 4rem;
    font-family: Nunito, Arial, sans-serif;
    font-size: 4vw;
  }

  .text-50.medium.mg-bottom-4px {
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4vw;
  }

  .dashboard-content.utility-page-content {
    flex: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .dashboard-main-content {
    flex: 1;
    align-self: flex-start;
    max-width: 100%;
    padding-left: 1%;
    padding-right: 1%;
  }

  .dashboard-main-content.utility-page-main-content {
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
  }

  .max-w-20px {
    width: auto;
    min-width: 10vw;
    max-width: 6vw;
    height: auto;
    margin-bottom: 0;
  }

  .text-500.bold.mg-bottom-0 {
    display: block;
  }

  .text-500.bold.mg-bottom-24px {
    margin-top: 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 6vw;
    font-weight: 600;
  }

  .header-wrapper {
    padding-top: .5rem;
    padding-bottom: .5rem;
    position: sticky;
  }

  .logo-link-wrapper {
    flex-flow: column;
    text-decoration: none;
  }

  .logo-link-wrapper.w--current {
    flex-flow: column;
    margin-top: 1vw;
    padding-left: 0%;
  }

  .header-nav-link.dropdown-header-link {
    justify-content: flex-start;
    display: flex;
  }

  .header-nav-menu-wrapper {
    background-image: linear-gradient(184deg, #fff 68%, #ecf0ff 85%, var(--neutral--200));
    border-bottom-right-radius: 10vw;
    border-bottom-left-radius: 10vw;
    flex-flow: column;
    flex: 0 auto;
    padding: 5vw 16px 10vw 1rem;
    display: flex;
    box-shadow: 1px 4vw 4vw #0000001f;
  }

  .header-content-wrapper {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .main-section {
    padding-top: 10vw;
  }

  .main-section.pd-bottom-64px {
    margin-top: 15vw;
    padding-top: 0;
  }

  .sidebar-container {
    align-self: stretch;
  }

  .sidebar-link {
    border-bottom-width: 3px;
    border-bottom-color: var(--button-shadow--color-3);
  }

  .divider-vertical.horizontal-mbp {
    width: 100%;
    min-width: auto;
    max-width: none;
    min-height: 1px;
    max-height: 1px;
    margin: 32px auto;
  }

  .avatars-container {
    grid-column-gap: 24px;
    grid-row-gap: 32px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .notification-bar.blue {
    flex: 1;
    align-self: auto;
  }

  .notification-bar-icon.blue {
    min-width: 5vw;
    max-width: 7vw;
    margin-bottom: 0;
  }

  .notification-bar-icon.green {
    min-width: 24px;
    margin-bottom: 0;
  }

  .notification-bar-icon.orange {
    margin-bottom: 0;
  }

  .notification-bar-main-container {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .card-icon-square {
    margin-bottom: 2vw;
  }

  .pd-26px---24px---40px {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    flex-flow: column;
    display: flex;
  }

  .data-table-row {
    grid-column-gap: 6px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .tabs-menu {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    background-color: var(--secondary--color-2);
    border-radius: 8px;
    flex-direction: column;
    width: 100%;
    margin-bottom: 2vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .tabs-menu.links-single {
    grid-row-gap: 20px;
    grid-row-gap: 20px;
  }

  .tab-menu-badge-link {
    background-color: var(--button-shadow--white-02);
    width: 100%;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .tab-menu-badge-link.w--current {
    margin-top: 1vw;
    margin-bottom: 1vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .tab-menu-underline-link {
    padding-bottom: 8px;
  }

  .breadcrumb-badge {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }

  .max-w-12px-mbp {
    max-width: 14px;
  }

  .header-right-side-container {
    flex-flow: row;
    flex: 1;
    order: 1;
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
    margin-right: 1%;
    display: flex;
  }

  .hamburger-menu-bar {
    width: 24px;
  }

  .hamburger-menu-bar.top, .hamburger-menu-bar.bottom, .hamburger-menu-bar.top, .hamburger-menu-bar.bottom {
    width: 30px;
    height: 1vw;
  }

  .footer-top-section {
    grid-row-gap: 16px;
    flex-direction: column;
    padding-top: 10vw;
    padding-bottom: 0;
    display: block;
  }

  .footer-bottom-section {
    grid-column-gap: 0vw;
    grid-row-gap: 1vw;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 10vw;
    padding-left: 0%;
  }

  .social-links-container {
    margin-top: 5vw;
  }

  .social-circle-link {
    min-width: 20vw;
    max-width: 24vw;
    min-height: 20vw;
    max-height: 24vw;
    font-family: Inter;
    font-weight: 500;
  }

  .card-image-right {
    z-index: 0;
    border-radius: 27vw;
    align-self: stretch;
    width: 75vw;
    margin-top: 4vw;
    margin-left: 0;
    position: relative;
  }

  .mg-top-80px {
    margin-top: 0;
    padding-top: 10vw;
  }

  .cta-card {
    border-radius: 12px;
    padding: 32px 24px;
  }

  .cta-card.buy-card {
    border-radius: 10vw;
  }

  .pd-top-24px {
    padding-top: 25vw;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pd-sides-40px {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pd-top-64px---bottom-100px {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .link-icon.arrow-right {
    max-width: 8vw;
    margin-bottom: 0;
  }

  .card-home-pages-wrapper {
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 6vw 15px 7vw 6vw;
  }

  .grid-2-columns-2._1-col-tablet {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    display: grid;
  }

  .cta-square-logo {
    border-radius: 8vw;
    align-self: flex-start;
    width: auto;
    min-width: 20vw;
    max-width: 60vw;
  }

  .text-500-big.bold.mg-bottom-24px {
    text-align: left;
    letter-spacing: -1px;
    flex-flow: row;
    align-self: flex-start;
    align-items: flex-end;
    margin-top: 10vw;
    margin-bottom: 2vw;
    padding-top: 8vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 9vw;
    font-weight: 600;
    line-height: 110%;
    display: flex;
  }

  .text-500-big.bold.mg-bottom-24px-copy {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .card-xp.password-protected-card {
    padding: 32px 24px;
  }

  .card-xp._404 {
    padding: 48px 24px;
  }

  .card-xp.component-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .card-xp.inside-image {
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .card-xp.image-right-inside {
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 5vw;
  }

  .text-block {
    color: var(--neutral--600);
    font-size: 6vw;
  }

  .image {
    background-color: #fff0;
    min-width: 50vw;
    max-width: 75vw;
    margin-bottom: 0;
  }

  .text-500-big-copy.bold.mg-bottom-24px {
    font-family: Nunito Sans;
  }

  .max-w-20px-points {
    max-width: 15vw;
    margin-bottom: 0;
  }

  .grid-1-column-first.gap-row-24px {
    grid-column-gap: 0vw;
    grid-row-gap: 0px;
    margin-top: 5vw;
    padding-top: 25vw;
  }

  .grid-1-column-first.sidebar-links-grid {
    grid-column-gap: 12px;
  }

  .card-copy.image-right-inside {
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .basic-info {
    letter-spacing: -1px;
    margin-bottom: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 9vw;
    font-weight: 600;
    line-height: 120%;
  }

  .heading {
    letter-spacing: -.5px;
    margin-bottom: 2vw;
    font-size: 7vw;
    font-weight: 500;
    line-height: 120%;
  }

  .div-block-6 {
    margin-top: 4vw;
    margin-bottom: 2vw;
  }

  .card-copy.password-protected-card {
    padding: 32px 24px;
  }

  .card-copy._404 {
    padding: 48px 24px;
  }

  .card-copy.component-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .card-copy.inside-image {
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .card-copy.image-right-inside {
    padding: 3vw 5vw 5vw;
  }

  .card-copy.component-card-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cases {
    flex: 1;
    align-self: flex-start;
    padding-right: 0;
  }

  .overall-cases {
    flex-flow: column;
  }

  .cta-square-avatar {
    border-width: 1vw;
    border-color: var(--neutral--400);
    object-fit: cover;
    border-radius: 12%;
    flex: 1;
    align-self: flex-start;
    width: auto;
    min-width: auto;
    max-width: 100%;
    min-height: auto;
    max-height: 100%;
    margin-left: 0;
  }

  .block-about-me {
    margin-top: 0;
    padding-top: 5vw;
  }

  .block-galeria {
    grid-row-gap: 8vw;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    margin-bottom: 10vw;
  }

  .div-block-8 {
    flex: 0 auto;
    align-self: flex-start;
    padding-left: 2%;
    padding-right: 0%;
  }

  .card-2-info.password-protected-card {
    padding: 32px 24px;
  }

  .card-2-info._404 {
    padding: 48px 24px;
  }

  .card-2-info.component-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .card-2-info.inside-image {
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .card-2-info.image-right-inside {
    margin-top: 25vw;
    padding: 8vw 0 3vw;
  }

  .card-2-info.component-card-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .space-1-rem {
    outline-color: var(--neutral--400);
    outline-offset: 0px;
    outline-width: 1px;
    outline-style: none;
    align-self: stretch;
    margin-bottom: 0;
    padding-top: 20vw;
  }

  .slogan {
    text-align: center;
    margin-top: .125rem;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: 140%;
  }

  .slogan-home:active {
    opacity: .2;
  }

  .slogan-home:lang(en) {
    opacity: 1;
  }

  .podwal {
    font-size: 5vw;
    font-weight: 600;
    line-height: 160%;
    text-decoration: none;
  }

  .div-block-11 {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    align-items: stretch;
    width: 100%;
    padding-right: 2vw;
  }

  .div-block-12 {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
    flex-flow: column;
    flex: 0 auto;
    align-self: flex-start;
    margin-top: 5vw;
    margin-bottom: 7vw;
    padding-right: 0;
    display: flex;
  }

  .slogan-home-copy {
    flex: 1;
    align-self: center;
    width: 10vw;
    height: 10vw;
    margin-left: 5vw;
    display: block;
  }

  .slogan-home-copy:active {
    opacity: .2;
  }

  .div-block-13 {
    flex-flow: column;
    flex: 1;
    align-self: stretch;
    margin-top: 2vw;
    display: flex;
  }

  .div-block-14 {
    flex-flow: column;
    flex: 1;
    align-self: center;
    margin-top: 1vw;
    display: flex;
  }

  .text-50-menu.medium.sidebar-title {
    margin-top: 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 4vw;
  }

  .div-block-15 {
    align-self: stretch;
  }

  .div-block-16 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 8px;
    display: block;
  }

  .slogan-home-1 {
    flex: 0 auto;
    max-width: 1rem;
    margin-bottom: 0;
  }

  .slogan-home-1:active {
    opacity: .2;
  }

  .slogan-home-1:lang(en) {
    opacity: 1;
    max-width: 15vw;
  }

  .dropdown-menu-icons-footer {
    grid-column-gap: 8vw;
    grid-row-gap: 8vw;
    background-color: var(--neutral--100);
    outline-color: var(--button-shadow--color-3);
    outline-offset: 0px;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-radius: 5vw;
    outline-width: 3px;
    outline-style: none;
    flex: 1;
    grid-template-rows: repeat(auto-fit, 75%);
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    justify-content: space-between;
    align-self: stretch;
    place-items: center;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 4vw 5vw;
    display: flex;
  }

  .menu-telegram-icon, .menu-instagram-icon {
    max-width: 100%;
    max-height: 100%;
  }

  .whatsapp-menu {
    opacity: 1;
    width: 12vw;
    max-width: 15vw;
    max-height: 15vw;
    margin-bottom: 0;
  }

  .text-meta-footer {
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: normal;
    background-color: #0000;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 0;
    font-size: 4vw;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }

  .text-meta-footer.text-color-muted-footer {
    color: #ffffff80;
    text-align: center;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .6px;
    text-transform: uppercase;
    background-color: #0000;
    border: 1px solid #0000;
    justify-content: flex-start;
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: .5rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 4vw;
    display: inline-block;
  }

  .instagram-menu {
    width: 15vw;
    max-width: 15vw;
    max-height: 15vw;
    margin-bottom: 0;
  }

  .heading-h4-footer.text-uppercase-copy {
    letter-spacing: .2px;
    text-transform: uppercase;
    letter-spacing: .2px;
    text-transform: uppercase;
    margin-top: .5rem;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 15vw;
    font-weight: 600;
    line-height: 90%;
    display: flex;
  }

  .margin-bottom-copy {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom-copy.margin-tiny-copy {
    text-align: left;
    text-align: left;
    background-color: #0000;
    align-self: flex-start;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 1vw;
    display: block;
  }

  .telegram-menu {
    opacity: 100;
    width: 12vw;
    max-width: 15vw;
    max-height: 15vw;
    margin-bottom: 0;
  }

  .menu-whatsapp-icon {
    opacity: 100;
    width: auto;
    max-width: 75%;
    height: auto;
  }

  .footer-padding {
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    display: flex;
  }

  .slogan-home-trans:active {
    opacity: .2;
  }

  .slogan-home-trans:lang(en) {
    opacity: 1;
  }

  .paragraph {
    color: var(--neutral--800);
    align-self: stretch;
    padding-top: 2vw;
    padding-left: 2vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4vw;
    font-weight: 500;
  }

  .space-0-5-rem {
    flex-flow: column;
  }

  .text-block-2 {
    text-align: left;
    font-size: 4.5vw;
    font-weight: 500;
    line-height: 120%;
  }

  .logo-in-mobile-menu {
    padding-left: 0;
  }

  .paragraph-2 {
    margin-bottom: 4vw;
    font-size: 4vw;
    line-height: 160%;
  }

  .text-block-3 {
    font-size: 4vw;
  }

  .paragraph-3 {
    margin-top: 0;
    margin-bottom: 4vw;
    font-size: 4vw;
    line-height: 160%;
  }

  .text-block-4, .link {
    font-size: 4vw;
  }

  .mobile-logo {
    opacity: 1;
    align-self: flex-start;
    width: 30vw;
    max-width: 35vw;
    margin-bottom: 0;
    display: block;
  }

  .mobile-logo:hover {
    opacity: .55;
  }

  .mobile-logo:active {
    opacity: .25;
  }

  .mobile-logo:focus, .mobile-logo:lang(en) {
    opacity: 1;
  }

  .certificates {
    margin-bottom: 10vw;
    padding-top: 20vw;
  }

  .lightbox-link {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    flex-flow: column;
    margin-top: 5vw;
  }

  .image-3 {
    align-self: center;
    max-width: 90%;
    margin-top: 5vw;
    padding: 3vw 3vw 3vw 0;
  }

  .space-5-vw {
    margin-bottom: 0;
    padding-top: 20vw;
  }

  .notification-bar-icon-copy.blue {
    align-self: center;
    min-width: 4vw;
    max-width: 6vw;
    margin-bottom: 0;
  }

  .messengers {
    grid-column-gap: 26vw;
    grid-row-gap: 26vw;
    flex-flow: row;
    flex: 0 auto;
    order: 1;
    justify-content: space-between;
    align-self: flex-start;
    align-items: center;
    margin-top: 5vw;
    display: flex;
  }

  .dropdown-menu-icons-footer-phone {
    grid-column-gap: 6vw;
    grid-row-gap: 6vw;
    background-color: var(--neutral--100);
    outline-color: var(--button-shadow--color-3);
    outline-offset: 0px;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-radius: 6vw;
    outline-width: 3px;
    outline-style: none;
    flex: 1;
    grid-template-rows: repeat(auto-fit, 75%);
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    justify-content: space-between;
    align-self: stretch;
    place-items: center;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 4vw;
    display: flex;
  }

  .div-block-19 {
    justify-content: space-between;
    align-self: stretch;
    display: flex;
  }

  .link-block {
    display: flex;
  }

  .link-block-2 {
    background-color: var(--secondary--color-2);
    outline-color: var(--system--blue-200);
    outline-offset: 0px;
    border-radius: 3vw;
    outline-width: 1px;
    outline-style: solid;
  }

  .telegram {
    color: var(--neutral--800);
    text-transform: none;
    font-family: Nunito, Arial, sans-serif;
    font-size: 4vw;
    font-weight: 500;
    text-decoration: none;
  }

  .notification-bar-main-container-2py, .notification-bar-main-container-3copy {
    background-color: var(--secondary--color-2);
    outline-color: var(--system--blue-200);
    outline-offset: 0px;
    border-radius: 3vw;
    outline-width: 1px;
    outline-style: solid;
    display: block;
  }

  .bottom-text {
    margin-top: 0;
    margin-bottom: 4vw;
    font-size: 4vw;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
  }

  .image-bottom {
    min-width: 50vw;
    max-width: 80vw;
    margin-bottom: 0;
  }

  .text-block-5 {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .field-label {
    color: var(--neutral--800);
    margin-bottom: 1vw;
    padding-right: 58vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
    font-weight: 400;
  }

  .field-label-4 {
    margin-bottom: 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 4.5vw;
  }

  .form {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    display: flex;
  }

  .text-field {
    color: var(--neutral--800);
    border-radius: 2vw;
    flex: 1;
    margin-bottom: 4vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    font-size: 4.5vw;
    line-height: 160%;
  }

  .text-field:focus {
    color: var(--neutral--800);
  }

  .text-field-2 {
    border-radius: 2vw;
    flex: 1;
    margin-bottom: 4vw;
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .select-field {
    color: var(--system--blue-400);
    background-color: #f3f9ff;
  }

  .text-field-3 {
    color: var(--neutral--800);
    border-radius: 2vw;
    flex: 1;
    margin-bottom: 4vw;
    padding-top: 4vw;
    padding-bottom: 4vw;
  }

  .text-field-3:focus {
    color: var(--neutral--800);
  }

  .field-label-2 {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    color: var(--neutral--800);
    margin-bottom: 1vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
    font-weight: 400;
    display: flex;
  }

  .textarea {
    color: var(--neutral--800);
    padding-bottom: 60vw;
  }

  .textarea:focus {
    color: var(--neutral--800);
  }

  .heading-2 {
    margin-top: 2vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: 140%;
  }

  .field-label-alarm {
    color: var(--system--blue-400);
    margin-bottom: 1vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 4vw;
  }

  .text-block-6 {
    font-family: Nunito, Arial, sans-serif;
    font-size: 6vw;
    font-weight: 700;
  }

  .success-message-2 {
    background-color: var(--accent--primary-1);
    border-radius: 5vw;
  }

  .text-block-7 {
    color: var(--neutral--100);
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 6vw;
  }

  .text-block-8 {
    color: var(--neutral--100);
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 5vw;
  }

  .error-message-2 {
    background-color: #df5e76;
    border-radius: 2vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .logo-link-wrapper-home.w--current {
    margin-top: 1vw;
    margin-right: 0;
    padding-left: 3%;
  }

  .sidebar-link-2 {
    border-bottom-width: 3px;
    border-bottom-color: var(--button-shadow--color-3);
    justify-content: center;
    align-items: center;
  }

  .image-5 {
    border-radius: 4vw;
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .image-5:active {
    opacity: .5;
  }

  .avatar-in-about-me {
    max-width: 100%;
  }

  .container-default-free-consult {
    flex: 1;
    margin-top: 10vw;
    margin-bottom: 5vw;
    padding-left: 2vw;
    padding-right: 2vw;
    display: block;
  }

  .btn-primary-copy {
    display: flex;
  }

  .main-section-session {
    padding-top: 0;
  }

  .main-section-session.pd-bottom-64px {
    padding-top: 0;
  }

  .time-session {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    margin-top: 3vw;
    margin-bottom: 0;
    padding-bottom: 0;
    display: flex;
  }

  .radio-button-time:hover {
    color: var(--system--blue-400);
  }

  .radion-circle-select {
    background-color: var(--secondary--color-2);
  }

  .radion-circle-select:hover {
    background-color: var(--neutral--400);
  }

  .radion-circle-select:focus {
    opacity: 1;
    color: var(--system--blue-400);
  }

  .radion-circle-select.w--redirected-focus {
    color: var(--system--blue-400);
  }

  .select-field-2 {
    background-color: var(--neutral--100);
    color: var(--neutral--800);
    border-radius: 2vw;
    padding-right: 0;
    display: flex;
  }

  .day-select-session {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 5vw;
    padding-bottom: 0;
    display: flex;
  }

  .image-6 {
    order: -1;
    max-width: 7vw;
  }

  .div-block-22 {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .image-7 {
    box-sizing: border-box;
    order: -1;
    max-width: 5vw;
    margin-bottom: 0;
  }

  .icon-header-in-form {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    order: 0;
    align-self: stretch;
    margin-bottom: 1vw;
    display: flex;
  }

  .divider-for-button {
    margin-bottom: 5vw;
  }

  .field-label-3 {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    flex: 1;
    margin-bottom: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
    font-weight: 400;
    display: flex;
  }

  .btn-primary-form {
    padding: 3vw 10vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    display: flex;
  }

  .text-block-9 {
    font-size: 4vw;
    font-weight: 500;
  }

  .text-block-10, .text-block-11 {
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4vw;
    font-weight: 500;
  }

  .pd-top-24px-in-form {
    margin-top: 10vw;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .card-main.password-protected-card {
    padding: 32px 24px;
  }

  .card-main._404 {
    padding: 48px 24px;
  }

  .card-main.component-card {
    padding: 10px 16px;
  }

  .card-main.inside-image {
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .card-main.image-right-inside {
    grid-row-gap: 0vw;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin-top: 3vw;
    padding-top: 0;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
  }

  .card-main.component-card-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

  .image-8 {
    opacity: .5;
    max-width: 14vw;
    margin-bottom: 0;
  }

  .image-8-copy {
    opacity: .5;
    max-width: 12vw;
    max-height: 12vw;
    margin-bottom: 2vw;
  }

  .paragraph-5 {
    color: var(--neutral--800);
    font-size: 4vw;
    line-height: 180%;
  }

  .galery-text {
    margin-bottom: 0;
    font-size: 6vw;
    font-weight: 700;
  }

  .image-9 {
    object-fit: cover;
    flex: 0 auto;
    order: 2;
    align-self: stretch;
    max-width: 80%;
    max-height: 80%;
  }

  .div-block-23 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 15vw;
    display: flex;
  }

  .div-block-24 {
    margin-top: 5vw;
  }

  .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold-copy.mg-bottom-24px {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold.mg-bottom-24px, .text-500-big-copy.bold.mg-bottom-24px-copy, .text-500-big-copy.bold-copy.mg-bottom-24px {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .text-500-big-copy.bold-copy.mg-bottom-24px {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .text-500-big-copy.bold-copy.mg-bottom-24px-copy {
    text-align: left;
    align-self: center;
    margin-top: 30vw;
    margin-bottom: 3vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 9vw;
    font-weight: 600;
    line-height: 120%;
  }

  .header-wrapper-second {
    padding-top: .5rem;
    padding-bottom: .5rem;
    position: sticky;
  }

  .header-nav-link-second-1.dropdown-header-link, .header-nav-link-second-2.dropdown-header-link, .header-nav-link-second-2.dropdown-header-link {
    justify-content: flex-start;
    display: flex;
  }

  .icon-header-in-form-select {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    order: 0;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    margin-top: 3vw;
    margin-bottom: 3vw;
    display: flex;
  }

  .day-select-session-format {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
    border-top: 1px solid var(--neutral--400);
    border-bottom: 1px solid var(--neutral--400);
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    margin-top: 2vw;
    margin-bottom: 5vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    display: flex;
  }

  .format-select {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    align-items: flex-start;
    margin-left: 0;
  }

  .select-online-format {
    border: 1px none var(--neutral--400);
    opacity: 1;
    background-color: #fff0;
    border-radius: 2vw;
    flex: 0 auto;
    align-self: flex-start;
    padding: 0;
  }

  .select-online-format:active, .select-online-format:focus {
    opacity: 100;
  }

  .select-online-format:lang(en) {
    opacity: 1;
  }

  ._2 {
    font-size: 8vw;
  }

  .utc-5 {
    margin-bottom: 20px;
    font-size: 4vw;
  }

  .radio-button-label {
    border: 1px solid var(--neutral--500);
    background-color: var(--neutral--100);
    opacity: 1;
    border-radius: 2vw;
    padding: 2vw;
    font-size: 4.5vw;
  }

  .radio-button-label:active {
    background-color: var(--system--blue-300);
    color: var(--neutral--100);
  }

  .container-default-copy {
    flex: 1;
    padding-left: 16px;
    padding-right: 16px;
    display: block;
  }

  .header-content-wrapper-copy {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .certificates-space {
    margin-top: 0;
    padding-top: 0;
  }

  .terapy-faq {
    order: 3;
    margin-bottom: 2vw;
  }

  .avatar-about-me {
    padding-top: 15vw;
  }

  .div-block-12-copy {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    flex-flow: column;
    flex: 0 auto;
    align-self: flex-start;
    padding-right: 0;
    display: flex;
  }

  .div-block-25 {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    flex-flow: column;
    margin-top: 5vw;
    display: flex;
  }

  .link-block-3 {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    flex-flow: row;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    display: flex;
  }

  .link-block-4 {
    flex: 1;
    display: flex;
  }

  .link-block-5 {
    flex: 1;
    margin-top: 0;
    display: flex;
  }

  .div-block-26 {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    padding-bottom: 2vw;
    display: flex;
  }

  .text {
    margin-bottom: 5vw;
  }

  .text.medium {
    margin-bottom: 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 6vw;
    font-weight: 700;
  }

  .text.medium.color-neutral-800 {
    color: var(--neutral--600);
    text-align: center;
    text-align: center;
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 3vw;
    font-size: 4vw;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
  }

  .div-block-27 {
    outline-offset: 0px;
    background-color: #eef4ff;
    border-radius: 6vw;
    outline: .25rem #e7f0ff;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    margin-top: 10vw;
    margin-left: 0;
    padding-bottom: 6vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .whatsapp-telegram {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    justify-content: center;
    align-items: center;
  }

  .whatsapp-telegram-about-me {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    margin-bottom: 4vw;
  }

  .start-text {
    color: var(--system--blue-400);
    letter-spacing: -.6vw;
    align-self: flex-end;
    padding-right: 2vw;
    font-family: Nunito, Arial, sans-serif;
    position: relative;
    transform: skew(-4deg, 2deg);
  }

  .flex-contacts {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
  }

  .flex-contacts.align-center.gap-column-16px {
    grid-column-gap: 12px;
    grid-column-gap: 12px;
  }

  .flex-contacts.align-start.gap-column-6px {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    flex-flow: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: stretch;
    align-items: flex-start;
    display: flex;
  }

  .space-5-vw-real {
    margin-bottom: 0;
    padding-top: 5vw;
  }

  .metods {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
  }

  .text-second {
    margin-bottom: 5vw;
    font-size: 4vw;
  }

  .text-second.medium {
    margin-bottom: 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 6vw;
    font-weight: 700;
  }

  .text-second.medium.color-neutral-800 {
    color: var(--neutral--500);
    text-align: center;
    text-align: center;
    flex: 0 auto;
    margin-top: 1vw;
    margin-bottom: 2vw;
    font-size: 4vw;
    font-weight: 600;
    text-decoration: none;
  }

  .success-font-2 {
    text-align: left;
    margin-bottom: 20vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
    font-weight: 500;
    line-height: 160%;
  }

  .success-font-2.medium {
    margin-bottom: 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 6vw;
    font-weight: 700;
  }

  .success-font-2.medium.color-neutral-800 {
    flex: 0 auto;
    margin-bottom: 0;
    font-size: 4vw;
    font-weight: 600;
    text-decoration: none;
    display: block;
  }

  .success-font-1 {
    letter-spacing: -.4vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 11vw;
    font-weight: 600;
    line-height: 110%;
  }

  .div-block-28 {
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .image-10 {
    width: auto;
    min-width: 25vw;
    max-width: 85%;
    height: auto;
    min-height: 25vw;
    max-height: 85%;
  }

  .div-block-29 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .image-11 {
    border-bottom: .5vw solid #0000000d;
    max-width: 90%;
    margin-bottom: 0;
    padding-bottom: 5vw;
  }

  .image-12 {
    margin-bottom: 0;
  }

  .text-block-12 {
    text-align: left;
    margin-top: 4vw;
  }

  .redirect-text {
    text-align: center;
    letter-spacing: -.4vw;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 75vw;
    font-size: 11vw;
    font-weight: 800;
    line-height: 110%;
    display: flex;
  }

  .book {
    margin-bottom: 10vw;
    padding-top: 3vw;
  }

  .lightbox-book {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    flex-flow: column;
    margin-top: 5vw;
  }

  .avatar-in-about-me-2 {
    max-width: 85%;
    margin-top: 2vw;
    margin-bottom: 0;
  }

  .div-block-31 {
    flex-flow: column;
    max-width: 100%;
    display: flex;
  }

  .main-image {
    z-index: 0;
    box-sizing: content-box;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 35%;
    border-radius: 0% 0% 50%;
    flex: 1;
    align-self: flex-start;
    width: 80%;
    max-width: 85%;
    min-height: auto;
    max-height: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    position: relative;
    overflow: clip;
  }

  .questions {
    margin-bottom: 5vw;
  }

  .questions.medium {
    margin-bottom: 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 6vw;
    font-weight: 700;
  }

  .questions.medium.color-neutral-800 {
    color: var(--neutral--800);
    text-align: center;
    text-align: center;
    flex: 0 auto;
    margin-top: 5vw;
    margin-bottom: 2vw;
    font-size: 4vw;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
  }

  .paragraph-footer {
    color: var(--neutral--800);
    align-self: stretch;
    padding-top: 2vw;
    padding-left: 0;
    font-size: 4vw;
  }

  .footer-text {
    text-align: left;
    margin-top: 1vw;
  }

  .code-embed {
    align-self: stretch;
  }

  .code-embed-2 {
    align-self: stretch;
    height: 240vw;
    min-height: 245vw;
    margin-top: 5vw;
  }

  .div-block-32 {
    margin-top: 2vw;
  }

  .header-wrapper-copy, .header-wrapper-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
    position: sticky;
  }

  .header-wrapper-2-copy {
    padding-top: 1vw;
    padding-bottom: 1vw;
    position: fixed;
  }

  .header-nav-link-copy.dropdown-header-link {
    justify-content: flex-start;
    display: flex;
  }

  .logo-link {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    margin-top: 5vw;
    padding-left: 0;
  }

  .logo-link.w--current {
    margin-top: 1vw;
    padding-left: 3%;
  }

  .image-clinical-mind-back {
    background-color: #fff0;
    min-width: 55vw;
    max-width: 80vw;
    margin-bottom: 0;
  }

  .slogan2 {
    margin-top: .125rem;
    font-size: 4.5vw;
    line-height: 140%;
  }

  .booking {
    margin-top: -8vw;
  }

  .back-to-main-page {
    margin-bottom: 0;
  }

  .div-block-34 {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    margin-bottom: 3vw;
  }

  .back {
    margin-top: .125rem;
    font-size: 4.5vw;
    line-height: 140%;
  }

  .grid-1-column-first-copy.gap-row-24px {
    margin-top: 3vw;
    padding-top: 0;
  }

  .grid-1-column-first-copy.sidebar-links-grid {
    grid-column-gap: 12px;
  }

  .text-100-contacts {
    flex: 0 auto;
    align-self: auto;
    max-width: 100%;
    margin-bottom: 4vw;
    font-size: 4vw;
    line-height: 160%;
    display: block;
  }

  .text-100-contacts.medium {
    margin-bottom: 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 6vw;
    font-weight: 700;
  }

  .text-100-contacts.medium.color-neutral-800 {
    flex: 0 auto;
    margin-bottom: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
    font-weight: 500;
    text-decoration: none;
    display: block;
  }

  .text-500-big-main-text.bold.mg-bottom-24px {
    text-align: left;
    letter-spacing: -1px;
    flex-flow: row;
    align-self: center;
    align-items: flex-end;
    margin-top: 4vw;
    margin-bottom: 2vw;
    padding-top: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 8vw;
    font-weight: 600;
    line-height: 110%;
    display: flex;
  }

  .text-500-big-main-text.bold.mg-bottom-24px-copy {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .text-500-big-2.bold.mg-bottom-24px {
    text-align: left;
    flex-flow: row;
    order: 1;
    align-self: center;
    align-items: flex-end;
    margin-top: 0;
    margin-bottom: 2vw;
    padding-top: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 9vw;
    font-weight: 600;
    line-height: 110%;
    display: flex;
  }

  .text-500-big-2.bold.mg-bottom-24px-copy {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .text-500-big-3.bold.mg-bottom-24px {
    text-align: left;
    flex-flow: row;
    align-self: center;
    align-items: flex-end;
    margin-top: 0;
    margin-bottom: 2vw;
    padding-top: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 9vw;
    font-weight: 600;
    line-height: 120%;
    display: flex;
  }

  .text-500-big-3.bold.mg-bottom-24px-copy {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

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

  .bold-text-list {
    font-weight: 600;
    line-height: 200%;
  }

  .buttons.blue, .google-calendar-link.blue, .google-calendar-link.blue {
    flex: 1;
    align-self: auto;
  }

  .google-calendar-text.bold.mg-bottom-24px {
    text-align: left;
    letter-spacing: -1px;
    flex-flow: row;
    align-self: flex-start;
    align-items: flex-end;
    margin-top: 0;
    margin-bottom: 5vw;
    padding-top: 20vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 7vw;
    font-weight: 600;
    line-height: 120%;
    display: flex;
  }

  .google-calendar-text.bold.mg-bottom-24px-copy {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .link-to-main-page {
    border-bottom-width: 3px;
    border-bottom-color: var(--button-shadow--color-3);
    justify-content: center;
    align-items: center;
  }

  .recaptcha {
    margin-top: 0;
    margin-bottom: 5vw;
  }

  .offline-choose {
    border: 1px solid var(--neutral--500);
    background-color: var(--neutral--100);
    border-radius: 2vw;
    padding: 2vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
  }

  .offline-choose:active {
    background-color: var(--system--blue-300);
    color: var(--neutral--100);
  }

  .select-offine-format {
    border: 1px none var(--neutral--400);
    opacity: 1;
    background-color: #fff0;
    border-radius: 2vw;
    padding: 0;
  }

  .select-offine-format:active, .select-offine-format:focus {
    opacity: 100;
  }

  .ontacts-after-send-form {
    color: var(--neutral--800);
    align-self: stretch;
    padding-top: 0;
    padding-left: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 4.5vw;
    font-weight: 500;
  }

  .confidentially {
    letter-spacing: -.5px;
    margin-bottom: 2vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 7vw;
    font-weight: 500;
    line-height: 110%;
  }

  .container-after-send-form {
    flex: 1;
    max-width: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
    display: block;
  }

  .radio-button {
    width: 3vw;
    margin-top: 3vw;
    margin-left: 0;
    margin-right: 2vw;
    font-size: 14vw;
  }

  .radio-button-2 {
    width: 3vw;
    margin-top: 3vw;
    margin-left: 0;
    margin-right: 2vw;
  }

  .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold-copy.mg-bottom-24px {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold.mg-bottom-24px, .price-header.bold.mg-bottom-24px-copy, .price-header.bold-copy.mg-bottom-24px {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .price-header.bold-copy.mg-bottom-24px {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .price-header.bold-copy.mg-bottom-24px-copy {
    text-align: left;
    align-self: center;
    margin-top: 0;
    margin-bottom: 2vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 9vw;
    font-weight: 600;
    line-height: 120%;
  }

  .text-about-me.bold.mg-bottom-24px {
    text-align: left;
    letter-spacing: -1px;
    flex-flow: row;
    align-self: flex-start;
    align-items: flex-end;
    margin-top: 0;
    margin-bottom: 2vw;
    padding-top: 0;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 9vw;
    font-weight: 600;
    line-height: 110%;
    display: flex;
  }

  .text-about-me.bold.mg-bottom-24px-copy {
    text-align: left;
    align-self: center;
    margin-bottom: 2vw;
    font-family: Nunito, Arial, sans-serif;
    font-size: 7vw;
    font-weight: 800;
    line-height: 120%;
  }

  .div-block-36 {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .background-video {
    width: 100%;
    max-height: 20%;
    margin-bottom: 5vw;
  }

  .div-block-38 {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
    margin-bottom: 2vw;
  }

  .video-text {
    color: var(--neutral--100);
    margin-top: 1vw;
    font-family: "Inter 18 Pt", Arial, sans-serif;
    font-size: 8vw;
    font-weight: 600;
  }

  .video-block {
    background-color: var(--accent--primary-1);
    border-radius: 5vw;
    order: 9999;
    width: 90%;
    height: auto;
    margin-top: 20vw;
    margin-bottom: 20vw;
    margin-right: 0;
    padding: 4vw;
  }

  .video-about-alina-zhdanova {
    border: 1px none var(--accent--primary-1);
    border-radius: 0;
    height: auto;
  }

  .div-block-40 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

#w-node-_7502167b-2bb6-02d4-ba9b-1249c5700528-2f50d9a1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5b7b5ab1-6d00-c7e0-62e6-f29490555c22-2f50d9a1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-c437169f-dad2-e411-fd96-cc03d0b5ddbf-2f50d9a1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-bdf375e4-f372-ad95-cceb-78bd47bb7446-47bb7443 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1888680e-051f-dba6-208c-e56a38b0e497-47bb7443 {
  place-self: stretch stretch;
}

#w-node-_92311b4f-7da8-513c-4d21-ac369d419878-47bb7443, #w-node-abce692c-33df-a5d4-65c1-61ae24c1cc53-47bb7443, #w-node-_2514fb0a-f711-3eb7-a720-2ea4c7c15358-47bb7443, #w-node-a18e7787-f94a-8bb8-31da-09113a0384d4-47bb7443, #w-node-f19763a7-a319-6fea-a8e7-c1e735b1a13f-35b1a13f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-bdf375e4-f372-ad95-cceb-78bd47bb7446-47bb7443 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c437169f-dad2-e411-fd96-cc03d0b5ddbf-2f50d9a1 {
    justify-self: stretch;
  }
}
