:root {
  --gray-900: #101828;
  --gray-600: #475467;
  --primary-700: #1d4ed8;
  --white: white;
  --gray-300: #d0d5dd;
  --gray-500: #667085;
  --gray-100: #f2f4f7;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-300: #93c5fd;
  --gray-200: #eaecf0;
  --gray-50: #f9fafb;
  --gray-400: #98a2b3;
  --gray-700: #344054;
  --gray-800: #1d2939;
  --black: black;
  --error-50: #fef2f2;
  --error-300: #fca5a5;
  --error-500: #ef4444;
  --error-700: #b91c1c;
  --error-900: #7f1d1d;
  --warning-900: #78350f;
  --warning-700: #b45309;
  --warning-500: #f59e0b;
  --warning-300: #fcd34d;
  --warning-50: #fffbeb;
  --success-50: #f0fdf4;
  --success-100: #dcfce7;
  --success-300: #86efac;
  --success-500: #22c55e;
  --success-700: #15803d;
  --success-900: #14532d;
  --warning-100: #fef3c7;
  --error-100: #ffe4e6;
  --secondary-50: #fefce8;
  --secondary-100: #fef9c3;
  --secondary-300: #fde047;
  --secondary-500: #eab308;
  --secondary-700: #a16207;
  --secondary-900: #713f12;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-900: #1e3a8a;
  --primary-200: #bfdbfe;
  --primary-400: #60a5fa;
  --primary-800: #1e40af;
}

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

body {
  color: var(--gray-900);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
}

h2 {
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
}

h3 {
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 38px;
}

h4 {
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

h5 {
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

h6 {
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

p {
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 24px;
}

a {
  color: var(--primary-700);
  line-height: 24px;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 8px;
  padding-left: 0;
  list-style-type: none;
}

li {
  color: var(--gray-600);
  background-image: url('../images/list-bullet-blue.svg');
  background-position: 0 7px;
  background-repeat: no-repeat;
  background-size: auto;
  min-height: 16px;
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 24px;
}

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

label {
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 24px;
  display: block;
}

strong {
  font-weight: 700;
  line-height: 24px;
}

em {
  font-style: italic;
  line-height: 24px;
}

blockquote {
  color: var(--gray-600);
  border-left: 5px solid #2d99ff;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
}

.utility-page-wrap {
  border-radius: 4px;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin-bottom: 96px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.ds-nav {
  background-color: var(--white);
  border: 0 #000;
  border-right-color: #0000;
  width: 100%;
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: visible;
}

.ds-menu-brand {
  color: #fff;
  margin-top: 14px;
  margin-bottom: 14px;
  text-decoration: none;
}

.ds-menu {
  background-color: var(--white);
  max-height: 80vh;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  overflow: auto;
}

.ds-menu-link {
  color: var(--gray-500);
  text-align: left;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 27px;
  font-size: 16px;
  text-decoration: none;
}

.ds-menu-link:hover {
  background-color: #f7f7f7;
}

.ds-menu-link.w--current {
  background-color: var(--gray-100);
  color: var(--gray-900);
  font-weight: 400;
}

.ds-section {
  padding: 60px 0 48px;
  font-weight: 400;
}

.ds-section.header {
  background-color: var(--primary-500);
  color: #fff;
  margin-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
}

.body {
  color: var(--gray-900);
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.ds-section-header {
  margin-bottom: 50px;
}

.ds-title {
  color: var(--primary-600);
}

.sg-label {
  color: #808c91;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
}

.rich-text {
  text-align: left;
}

.rich-text img {
  border-radius: 8px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.rich-text h4, .rich-text h2, .rich-text h1, .rich-text h5 {
  font-weight: 500;
}

.text-md {
  color: #000;
  text-align: left;
  white-space: normal;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 24px;
}

.text-md.semibold {
  font-weight: 600;
}

.text-md.semibold.primary-700 {
  color: var(--primary-700);
}

.text-md.semibold._10px-margin-bottom {
  margin-bottom: 10px;
}

.text-md.text-align-center {
  color: #000;
}

.text-md.text-align-center.text-blue-gray {
  color: #25011d;
}

.text-md.withe {
  color: var(--white);
}

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

.text-md.medium.primary-700 {
  color: #926896;
}

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

.text-md.text-blue-gray {
  color: #25011d;
}

.text-md.head {
  color: #fff;
  width: 400px;
}

.text-md.addres {
  text-align: left;
}

.block-quote {
  border-left-color: var(--primary-300);
  font-size: 16px;
  line-height: 22px;
}

.sg-block {
  margin-bottom: 32px;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  min-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column._9-column {
  width: 75%;
}

.column._4-column {
  width: 33.33%;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.color-block {
  background-color: #f9fafb;
  border-radius: 5px;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.neutral-200 {
  background-color: var(--gray-200);
}

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

.color-block.neutral-50 {
  background-color: var(--gray-50);
}

.color-block.neutral-300 {
  background-color: var(--gray-300);
}

.color-block.neutral-400 {
  background-color: var(--gray-400);
}

.color-block.neutral-500 {
  background-color: var(--gray-500);
}

.color-block.neutral-600 {
  background-color: var(--gray-600);
}

.color-block.neutral-700 {
  background-color: var(--gray-700);
}

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

.color-block.neutral-900 {
  background-color: var(--gray-900);
}

.color-block.base-white {
  background-color: var(--white);
}

.color-block.base-black {
  background-color: var(--black);
}

.color-block.error-50 {
  background-color: var(--error-50);
}

.color-block.error-300 {
  background-color: var(--error-300);
}

.color-block.error-500 {
  background-color: var(--error-500);
}

.color-block.error-700 {
  background-color: var(--error-700);
}

.color-block.error-900 {
  background-color: var(--error-900);
}

.color-block.warning-900 {
  background-color: var(--warning-900);
}

.color-block.warning-700 {
  background-color: var(--warning-700);
}

.color-block.warning-500 {
  background-color: var(--warning-500);
}

.color-block.warning-300 {
  background-color: var(--warning-300);
}

.color-block.warning-50 {
  background-color: var(--warning-50);
}

.color-block.success-50 {
  background-color: var(--success-50);
}

.color-block.success-100 {
  background-color: var(--success-100);
}

.color-block.success-300 {
  background-color: var(--success-300);
}

.color-block.success-500 {
  background-color: var(--success-500);
}

.color-block.success-700 {
  background-color: var(--success-700);
}

.color-block.success-900 {
  background-color: var(--success-900);
}

.color-block.warning-100 {
  background-color: var(--warning-100);
}

.color-block.error-100 {
  background-color: var(--error-100);
}

.color-block.secondary-50 {
  background-color: var(--secondary-50);
}

.color-block.secondary-100 {
  background-color: var(--secondary-100);
}

.color-block.secondary-300 {
  background-color: var(--secondary-300);
}

.color-block.secondary-500 {
  background-color: var(--secondary-500);
}

.color-block.secondary-700 {
  background-color: var(--secondary-700);
}

.color-block.secondary-900 {
  background-color: var(--secondary-900);
}

.color-block.primary-50 {
  background-color: var(--primary-50);
}

.color-block.primary-100 {
  background-color: var(--primary-100);
}

.color-block.primary-300 {
  background-color: var(--primary-300);
}

.color-block.primary-500 {
  background-color: var(--primary-500);
}

.color-block.primary-700 {
  background-color: var(--primary-700);
}

.color-block.primary-900 {
  background-color: var(--primary-900);
}

.color-block.primary-200 {
  background-color: var(--primary-200);
}

.color-block.primary-400 {
  background-color: var(--primary-400);
}

.color-block.primary-600 {
  background-color: var(--primary-600);
}

.color-block.primary-800 {
  background-color: var(--primary-800);
}

.button {
  color: #fff;
  text-align: center;
  background-color: #926896;
  border-radius: 4px;
  flex: none;
  margin-bottom: 0;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .2s, color .2s, box-shadow .2s, background-color .2s;
  box-shadow: 0 2px 8px #00000008;
}

.button:hover {
  background-color: #7c5480;
  box-shadow: 0 7px 20px -10px #0003;
}

.button:active {
  background-color: #af75b4;
}

.button.outline {
  color: #fff;
  background-color: #0000;
  box-shadow: inset 0 0 0 1.5px #fff;
}

.button.outline:hover {
  color: #926896;
  background-color: #0000;
  box-shadow: inset 0 0 0 2px #926896;
}

.button.outline:active {
  background-color: #0000;
  box-shadow: inset 0 0 0 2px #a976ad;
}

.button.outline._100-width {
  width: 100%;
}

.button.outline._100-width.contact {
  color: #fff;
  background-color: #926896;
}

.button.outline._100-width.contact:hover {
  background-color: #755079;
}

.button.size {
  max-width: 175px;
}

.button.second {
  padding-left: 50px;
  padding-right: 50px;
}

.column-styleguide {
  background-color: #2d99ff;
  border-radius: 6px;
  width: 100%;
  height: 40px;
}

.ds-module {
  background-color: #2d99ff;
  border-radius: 5px;
  flex-direction: column;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  position: relative;
}

._2-1-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: none;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._1-2-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: none;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.visible-spacer {
  background-color: #2d99ff;
  border-radius: 5px;
  display: inline-block;
}

.nav-menu-link {
  color: var(--gray-500);
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 10px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.nav-menu-link:hover {
  background-color: var(--gray-50);
  border-radius: 4px;
}

.nav-menu-link.w--current {
  color: var(--gray-900);
  font-weight: 400;
}

.nav-menu-link.last {
  display: none;
}

.icon-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #a579dc;
  background-color: #0000;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding: 5px 20px;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.icon-button:hover {
  background-color: #fbefff;
}

.icon-button:active {
  background-color: var(--primary-100);
}

.icon-button.outline {
  color: #926896;
  border: 1.5px solid #926896;
  align-items: center;
}

.icon-button.outline:hover {
  background-color: #fbefff00;
  border-color: #7c577f;
}

.icon-button.primary {
  background-color: var(--primary-500);
  color: var(--white);
}

.icon-button.primary:hover {
  background-color: #3171ff;
}

.icon-button.primary:active {
  background-color: var(--primary-600);
}

.icon-button.about {
  margin-top: 40px;
}

.container {
  max-width: 1280px;
  height: auto;
  padding: 0 32px;
  position: static;
}

.container.content-center {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container.text-center {
  text-align: center;
}

.container._99block {
  padding-top: 0;
}

._4-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
}

._3-column-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
}

._2-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  justify-content: center;
}

.spacer-16px {
  width: 16px;
  height: 16px;
}

.spacer-24px {
  width: 24px;
  height: 24px;
}

.spacer-32px {
  width: 3%;
  height: 32px;
}

.spacer-48px {
  width: 48px;
  height: 120px;
  padding-top: 106px;
}

.spacer-64px {
  width: 45px;
  height: 45px;
}

.spacer-80px {
  width: 80px;
  height: 80px;
}

.spacer-96px {
  width: 96px;
  height: 96px;
}

.spacer-128px {
  width: 128px;
  height: 128px;
}

.heading-h1 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
}

.heading-h1.bold {
  color: #fff;
  width: auto;
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
}

.heading-h1.medium {
  font-weight: 500;
}

.heading-h1.semibold {
  font-weight: 600;
}

.heading-h1.margin-bottom-10px, .heading-h1.margin-bottom-10px.colorh1 {
  color: #fff;
  margin-left: 15.2778vw;
}

.heading-h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
}

.heading-h2.medium {
  font-weight: 500;
}

.heading-h2.semibold {
  font-weight: 600;
}

.heading-h2.bold {
  font-weight: 700;
}

.heading-h2.white {
  color: var(--white);
}

.heading-h3 {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
}

.heading-h3.semibold {
  font-weight: 600;
}

.heading-h3.medium {
  font-weight: 500;
}

.heading-h3.bold {
  font-weight: 700;
}

.heading-h4 {
  color: var(--gray-900);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
}

.heading-h4.semibold {
  font-weight: 600;
}

.heading-h4.medium {
  color: #926896;
  text-align: center;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
}

.heading-h4.medium.colorcont {
  color: #fff;
}

.heading-h4.bold {
  font-weight: 700;
}

.heading-h4.open {
  color: #926896;
  text-align: center;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
}

.heading-h4.open.colorcont {
  color: #fff;
}

.heading-h5 {
  color: var(--gray-900);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: none;
}

.heading-h5.semibold {
  font-weight: 600;
}

.heading-h5.medium {
  font-weight: 500;
}

.heading-h5.medium.link:hover {
  color: #a579dc;
}

.heading-h5.bold {
  font-weight: 700;
}

.heading-h6 {
  color: var(--gray-900);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.heading-h6.medium {
  font-weight: 500;
}

.heading-h6.semibold {
  font-weight: 600;
}

.heading-h6.bold {
  font-weight: 700;
}

.column-1 {
  flex-direction: column;
  width: 8.33%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-2 {
  flex-direction: column;
  width: 16.66%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-3 {
  flex-direction: column;
  width: 25%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.row {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

.column-5 {
  flex-direction: column;
  width: 41.66%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-4 {
  flex-direction: column;
  width: 33.33%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-6 {
  flex-direction: column;
  width: 50%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-7 {
  flex-direction: column;
  width: 58.3333%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-8 {
  flex-direction: column;
  width: 66.6667%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-9 {
  flex-direction: column;
  width: 75%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-10 {
  flex-direction: column;
  width: 83.33%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-11 {
  flex-direction: column;
  width: 91.66%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column-12 {
  flex-direction: column;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.footer {
  color: #a579dc;
  background-color: #92689633;
}

.footer-main-grid {
  grid-column-gap: 30px;
  grid-row-gap: 42px;
  grid-template: "."
                 "."
                 / 1fr 1fr 1fr 1fr;
  margin-top: 40px;
}

.footer-bottom-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: center;
  place-items: center stretch;
  margin-top: 16px;
  margin-bottom: 30px;
}

.main-nav-menu {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-logo {
  padding-top: 0;
  display: block;
}

.nav-logo.mobile {
  display: none;
}

.brand {
  margin-top: 0;
}

.main-navigation {
  background-color: #0000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.unordered-list {
  margin-bottom: 8px;
  padding-left: 0;
  list-style-type: none;
}

.list-item {
  background-image: url('../images/dotts.svg');
  background-position: 0 6px;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  padding-left: 25px;
  font-size: 18px;
}

.list-item.bl {
  display: none;
}

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

.social-media-icons-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.social-media-icons-container {
  justify-content: center;
  margin-bottom: 0;
  display: flex;
}

.social-media-icon-link {
  background-color: #f8e8ff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: background-color .2s;
  display: flex;
}

.social-media-icon-link:hover {
  background-color: #fff;
}

.social-media-icon-link:active {
  background-color: var(--primary-300);
}

.twitter-icon {
  position: relative;
  top: 1px;
  left: 1px;
}

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

.text-lg {
  color: var(--gray-600);
  white-space: normal;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

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

.text-lg.medium.gray-900 {
  color: var(--gray-900);
  white-space: normal;
}

.text-lg.gray-900 {
  color: var(--gray-900);
}

.text-lg.semibold {
  font-weight: 600;
}

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

.text-sm {
  color: var(--gray-600);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.text-sm.primary-700 {
  color: #a579dc;
}

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

.text-sm.semibold {
  font-weight: 600;
}

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

.main {
  flex: 1;
}

.menu-button-2.w--open {
  background-color: var(--primary-500);
}

.facebook-icon {
  position: relative;
  right: 1px;
}

.linkedin-icon {
  background-color: #0000;
}

.contact-us-container {
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.container-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 1232px;
  margin-top: 30px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.text-box-850px {
  max-width: 850px;
}

.text-box-850px.text-lg {
  text-align: left;
  max-width: none;
  margin-top: 20px;
}

.staff-grid {
  grid-column-gap: 10px;
  grid-row-gap: 60px;
  grid-template-rows: 1fr auto;
  grid-template-columns: .5fr 1.5fr;
  grid-auto-flow: row;
}

.blue-circle-small {
  z-index: -1;
  background-color: var(--primary-400);
  border-radius: 150px;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 0;
}

.staff-image-container {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.staff-text-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.spacer-8px {
  width: 8px;
  height: 8px;
}

.grid-text-block {
  grid-column-gap: 104px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  display: block;
}

.grid-column-space-between {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.blog-post-container {
  display: flex;
}

.blog-post-image {
  object-fit: cover;
  border-radius: 8px;
  flex: none;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 300px;
}

.blog-post-image.shadow-01 {
  height: 300px;
  box-shadow: 0 1px 2px #0d0e1940, 0 1px 3px 1px #0d0e191a;
}

.collection-grid {
  grid-column-gap: 30px;
  grid-row-gap: 29px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post-description {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.blog-post-link {
  color: #030303;
  text-decoration: none;
}

.blog-post-image-link {
  object-fit: cover;
  border-radius: 8px;
  flex: none;
  width: 50%;
  max-width: 280px;
  height: auto;
}

.blog-article-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 450px;
}

.container-blog {
  max-width: 900px;
  padding-left: 24px;
  padding-right: 24px;
}

.pexel-image {
  width: 240px;
}

.pexels-images-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-column-center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.changelog-box {
  background-color: var(--gray-100);
  color: var(--primary-100);
  border-radius: 8px;
  max-width: 850px;
  padding: 20px;
}

.changelog-box.shadow-01 {
  background-color: var(--white);
  margin-bottom: 96px;
}

.contact-us-flex-container {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.text-field {
  border: 1.5px solid #926896;
  border-radius: 4px;
  height: 50px;
}

.text-field:focus {
  border-color: var(--primary-700);
}

.form-field-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.text-area {
  border: 1.5px solid #926896;
  border-radius: 4px;
  height: auto;
  min-height: 100px;
  margin-bottom: 20px;
}

.text-area:focus {
  border-color: #1d4ed8;
}

.success-message {
  background-color: var(--primary-500);
  color: var(--white);
  border-radius: 4px;
}

.error-message {
  background-color: var(--error-500);
  color: #fff;
  border-radius: 4px;
  margin-top: 20px;
}

.services-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.contact-us-link-big {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}

.contact-us-link-big:hover {
  color: #926896;
}

.contact-us-container-center {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 100px;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.section-title-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  height: 120px;
  display: flex;
}

.more-button-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pathologies-list-grid {
  grid-column-gap: 47px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 4fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: block;
}

.services-section-grid {
  grid-column-gap: 32px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
}

._404-text {
  color: #0074e2;
  font-size: 100px;
  line-height: 100px;
}

.paragraph-white {
  color: #fff;
}

.field-label {
  display: block;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section.no-bottom-padding {
  padding-bottom: 0;
}

.section.no-top-padding {
  background-color: #0000;
  height: auto;
  min-height: 80vh;
  padding-top: 0;
  display: block;
}

.section.no-top-padding.mainbg {
  background-image: url('../images/bg_blue.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  min-height: auto;
}

.section.no-top-padding.cont {
  min-height: 50vh;
}

.section.no-top-padding.faq {
  display: none;
}

.section.gray-50 {
  -webkit-text-fill-color: inherit;
  background-color: #a579dc1a;
  background-clip: padding-box;
  height: auto;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.no-padding {
  margin-top: 100px;
  margin-bottom: 50px;
  padding-top: 0;
  padding-bottom: 0;
}

.section.gray-50-copy {
  -webkit-text-fill-color: inherit;
  background-color: #a579dc1a;
  background-clip: padding-box;
  height: auto;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.gray-99 {
  -webkit-text-fill-color: inherit;
  background-color: #baaccc00;
  background-clip: padding-box;
  height: auto;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.gray-99.scroll {
  background-color: #ffffff26;
}

.section._99block {
  -webkit-text-fill-color: inherit;
  background-color: #92689630;
  background-clip: padding-box;
  height: auto;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.services {
  background-color: #9268960f;
}

.section.services.new {
  margin-bottom: 100px;
}

.section.hide {
  display: none;
}

.section.mp {
  padding-top: 0;
}

.section.mp-2 {
  background-color: #9268960d;
  padding-top: 0;
}

.section.hide {
  background-color: #0000;
  height: auto;
  min-height: auto;
  padding-top: 0;
  display: block;
}

.section.hide.mainbg {
  background-image: url('../images/bg_blue.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  min-height: auto;
}

.section.hide.cont {
  min-height: 50vh;
}

.section.hide.faq {
  display: none;
}

.ds-border {
  border: 1px solid var(--gray-900);
  height: 100%;
}

.ds-box {
  width: 100%;
  height: 60px;
}

.shadow-01 {
  box-shadow: 0 1px 2px #0d0e1940, 0 1px 3px 1px #0d0e191a;
}

.shadow-02 {
  box-shadow: 0 8px 11.5px -2px #0d0e191a, 0 4px 7.68px -3.84px #0d0e191f;
}

.overline {
  color: var(--gray-600);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.overline.color-primary-600 {
  color: #fff;
  margin-left: 15.2778vw;
  font-weight: 500;
}

.overline.color-primary-600.wh {
  color: #fff;
}

.overline.color-primary-600.serv {
  color: #926896;
  margin-left: 0;
}

.overline.color-primary-600.home {
  margin-left: 0;
}

.overline.color-primary-600.services {
  font-size: 48px;
  line-height: 60px;
}

.overline-small {
  color: var(--gray-600);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

.hero-container {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-top: 35px;
  display: grid;
}

.hero-container.mp {
  grid-column-gap: 3.47222vw;
  /*grid-template-columns: 1fr 1fr;*/
  align-items: center;
}

.hero-container.mp2 {
  grid-column-gap: 3.47222vw;
  align-items: center;
  margin-top: 60px;
}

.hero-container.prolps {
  grid-column-gap: 3.47222vw;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-left {
  grid-column-gap: 70px;
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.nav-menu-links {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  display: flex;
}

.hero-right {
  justify-content: flex-end;
  width: auto;
  height: auto;
  display: flex;
  position: relative;
}

.hero-image-container {
  position: relative;
}

.hero-image-decoration-bottom {
  z-index: -1;
  position: absolute;
  inset: auto auto -28px -28px;
}

.hero-imagen-decoration-top {
  z-index: -1;
  position: absolute;
  inset: -28px -28px auto auto;
}

.hero-image {
  object-fit: cover;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  height: 500px;
}

.text-span {
  background-image: url('../images/line.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-button-container {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.hero-text-container {
  grid-column-gap: 24px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.badge {
  color: var(--gray-900);
  background-color: #f8e9ff;
  border-radius: 16px;
  padding: 2px 10px;
  display: inline-block;
}

.featured-icon {
  background-color: #d4b2ff00;
  border-radius: 28px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  display: block;
}

.cta-container {
  background-color: #0000;
  background-image: url('../images/smile.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  min-height: 300px;
  padding: 20px 150px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-decoration {
  z-index: -1;
  height: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.cta-decoration-right {
  z-index: -1;
  height: 100%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.cta-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.check-circle-item {
  color: #0a3866;
  background-image: url('../images/Icon.svg');
  background-position: 0%;
  margin-bottom: 15px;
  padding-left: 35px;
  font-size: 16px;
}

.service-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.nav-menu-text {
  color: var(--gray-700);
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 24px;
}

.nav-menu-text:hover, .nav-menu-text:focus {
  color: #926896;
}

.nav-menu-phone {
  color: var(--gray-700);
  text-align: right;
  width: 140px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 24px;
  transition: color .2s;
}

.nav-menu-phone:hover {
  color: #926896;
}

.footer-book-appointment-container {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-contact-us-icon {
  margin-top: 2px;
  margin-right: 15px;
}

.form-label-and-field-container {
  width: 100%;
}

.contact-form {
  width: 100%;
  margin-bottom: 0;
  display: none;
}

.cta-background {
  z-index: -2;
  background-color: var(--primary-50);
  color: var(--primary-50);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

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

.contact-form-container {
  grid-column-gap: 50px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.form-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  display: none;
  overflow: visible;
}

.form-image-container {
  height: 382px;
}

.form-image-container.shadow-01 {
  background-image: url('../images/map.jpg');
  background-position: 0%;
  background-size: cover;
  border-radius: 4px;
  height: 400px;
  overflow: hidden;
}

.nav-bar-logo-container {
  width: 250px;
}

.link {
  color: var(--gray-900);
  font-weight: 500;
  transition: color .2s;
}

.link:hover {
  color: var(--primary-700);
}

.accordion-content {
  background-color: #0000;
  display: block;
  position: relative;
}

.accordion-content.w--open {
  background-color: #0000;
}

.accordion-inner {
  flex-flow: column wrap;
  align-items: flex-start;
  width: 100%;
  padding: 32px 24px;
  display: flex;
}

.accordion {
  border: 0 solid #926896;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.accordion-toggle {
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  border-bottom: 1px solid var(--gray-300);
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  display: flex;
}

.accordion-icon {
  border-bottom: 1px solid var(--gray-900);
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  margin-bottom: -1px;
  display: flex;
}

.accordion-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.accordion-title-text {
  padding-top: 16px;
  padding-bottom: 16px;
}

.ds-page {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-post-header {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.mobile-menu-close-button {
  cursor: pointer;
  margin-top: 12px;
  margin-right: 12px;
  padding: 12px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.mobile-menu {
  z-index: 1001;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #475467;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100vw;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.mobile-menu-background-two {
  z-index: -1;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.div-block {
  background-color: var(--primary-500);
  display: none;
}

.mobile-menu-line-container {
  flex: 1;
  justify-content: center;
  display: flex;
}

.mobile-menu-links-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.mobile-menu-link {
  color: var(--gray-900);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  display: block;
}

.mobile-menu-link.w--current {
  color: var(--primary-700);
}

.mobile-menu-social-icons-container {
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
}

.mobile-menu-line {
  background-color: #475467;
  width: 2px;
  height: 100%;
}

.mobile-menu-container {
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.nav-menu-mobile {
  cursor: pointer;
  display: none;
}

.navigation-bar-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  position: static;
}

.mobile-menu-social-media-icons-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.dropdown-toggle {
  color: #a579dc;
  border: 1px #a579dc;
  border-radius: 3px;
  padding: 0 42px 0 0;
}

.dropdown-link {
  color: #a579dc;
  text-align: center;
}

.dropdown-link-2 {
  color: #926896;
  text-align: center;
  background-color: #fff0;
  padding-left: 0;
  padding-right: 51px;
}

.dropdown-list, .dropdown-list.w--open {
  background-color: #fff0;
}

.div-block-2 {
  align-items: center;
  display: flex;
}

.body-2 {
  color: #a579dc;
}

.bold-text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.div-block-3 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.22222vw;
  padding-right: 32px;
  display: flex;
}

.paragraph {
  max-width: 34.7222vw;
  padding-left: 2.08333vw;
}

.slider {
  background-image: linear-gradient(27deg, #ffffff0d, #fff9), url('../images/Frame-2.png');
  background-position: 0 0, 50% 30%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 430px;
  display: flex;
}

.heading-slider {
  color: var(--black);
}

.paragraph-2 {
  color: var(--black);
  display: block;
}

.paragraph-2.client {
  font-style: italic;
  font-weight: 300;
}

.paragraph-2.name {
  text-align: right;
  font-style: italic;
  font-weight: 400;
}

.mask {
  flex: 0 auto;
}

.slider-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #ffffffd6;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 120px;
  margin-left: 130px;
  margin-right: 130px;
  padding: 40px;
  display: flex;
}

.photoslid {
  height: 450px;
}

.image {
  display: block;
}

.image-2 {
  width: 120px;
  max-width: 150%;
}

.photo-block {
  grid-column-gap: 15px;
  grid-row-gap: 16px;
  grid-template-rows: 366px;
  grid-template-columns: minmax(200px, 1fr) 1fr;
  grid-auto-columns: 1fr;
  margin-top: 16px;
  margin-left: 60px;
  margin-right: 60px;
  display: grid;
}

.photo-block-5 {
  background-color: #0000;
  background-image: url('../images/WhatsApp-Image-2023-02-10-at-1.59.43-PM.jpeg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-3 {
  max-width: 250px;
  max-height: 300px;
}

.slider-photo {
  background-color: #0000;
  height: 430px;
  display: flex;
}

.icon {
  background-color: #0000;
  overflow: visible;
}

.right-arrow {
  margin-right: 45px;
}

.left-arrow {
  margin-left: 45px;
}

.photo-block-6 {
  background-color: #0000;
  background-image: url('../images/WhatsApp-Image-2023-02-10-at-2.07.56-PM.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-block-3 {
  background-color: #0000;
  background-image: url('../images/WhatsApp-Image-2023-02-10-at-2.06.53-PM.jpeg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-block-4 {
  background-color: #0000;
  background-image: url('../images/WhatsApp-Image-2023-02-10-at-1.53.49-PM-1.jpeg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-block-1 {
  background-color: #0000;
  background-image: url('../images/WhatsApp-Image-2023-02-10-at-1.55.02-PM.jpeg');
  background-position: 70%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-block-2 {
  background-color: #0000;
  background-image: url('../images/WhatsApp-Image-2023-02-10-at-2.02.04-PM.jpeg');
  background-position: 50% 90%;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-about {
  background-image: url('../images/about_bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  max-width: 100%;
  height: 30vw;
  display: flex;
}

.bg-service {
  background-image: url('../images/services_bg-2.png');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 30vw;
  display: flex;
}

.bg-blog {
  background-image: linear-gradient(#5050504a, #5050504a), url('../images/Frame-7-1.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
}

.bg-contact {
  background-image: url('../images/couple_bg-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 30vw;
  display: flex;
}

.bg-contact.in {
  background-image: url('../images/drinkwt_bg-1.png');
}

.bg-contact.pr {
  background-image: url('../images/pr_bg.png');
}

.bg-contact.ch {
  background-image: url('../images/contact_bg.png');
  background-position: 100%;
}

.photo-block-2-hid {
  background-color: #0000;
  background-image: url('../images/WhatsApp-Image-2023-02-10-at-2.02.04-PM.jpeg');
  background-position: 50% 90%;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-4 {
  border-radius: 4px;
  width: 45vw;
  max-width: none;
}

.image-5, .image-6, .image-7, .image-8, .image-9, .image-10 {
  border-radius: 4px;
}

.heading {
  font-size: 20px;
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

.introduction-serv {
  margin-bottom: 60px;
}

.image-11 {
  width: 40px;
}

.image-11.cont {
  width: 25px;
}

.image-12 {
  width: 40px;
}

.image-12.cont {
  width: 25px;
}

.image-13 {
  width: 40px;
}

.image-13.cont {
  width: 25px;
}

._7log {
  color: #2e2e2e;
  font-size: 12px;
}

.color {
  color: #ff7b00;
}

.text-block, .icon-2 {
  color: #926896;
}

.link-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link-block-2, .link-block-3, .menop {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.bolt {
  color: #926896;
  font-weight: 600;
}

.slide-nav-2 {
  display: none;
}

.text-span-2 {
  font-weight: 600;
}

.heading-2 {
  margin-bottom: 40px;
}

.bg-mp {
  background-image: url('../images/couple_bg.png');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 30vw;
  display: flex;
}

.image-14 {
  width: 400px;
  max-width: none;
}

.div-block-4 {
  grid-column-gap: 40px;
  display: flex;
}

.textcontainer {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.image-15 {
  width: auto;
  max-width: none;
  height: auto;
}

.heading-3 {
  color: #926896;
  text-align: left;
  font-weight: 600;
}

.paragraph-3 {
  text-align: left;
}

.div-block-5 {
  width: auto;
}

.div-block-6 {
  width: auto;
  height: auto;
}

.paragraph-4 {
  text-align: left;
  max-width: 500px;
  line-height: 30px;
}

.heading-4 {
  color: #926896;
  margin-bottom: 30px;
  font-weight: 500;
}

.gg-bg {
  background-image: url('../images/gg_bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 30vw;
  display: flex;
}

.gg-bg.in {
  background-image: url('../images/in_bg.png');
}

.paragraph-5 {
  text-align: left;
  font-weight: 400;
}

.image-16 {
  width: 50px;
  max-width: none;
}

.div-block-7 {
  align-items: center;
  display: flex;
}

.text-block-2 {
  margin-right: 10px;
}

.link-block-4 {
  margin-right: 20px;
}

.paragraph-prolaps {
  text-align: left;
  max-width: none;
  line-height: 30px;
}

.div-block-8 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.down-arrow {
  width: 30px;
  margin-left: 40px;
}

.dropdown {
  width: 500px;
}

.dropdown-toggle-2 {
  width: 500px;
  padding-left: 0;
  display: flex;
}

.dropdown-list-2 {
  background-color: #fff;
  width: 750px;
  display: block;
}

.staff-grid-second {
  grid-column-gap: 10px;
  grid-row-gap: 60px;
  grid-template-rows: 1fr auto;
  grid-template-columns: .5fr 1.5fr;
  grid-auto-flow: row;
  display: flex;
}

.accodin-wrapper {
  width: 100%;
}

.accordion-hedder {
  grid-column-gap: 2rem;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5em;
  display: flex;
}

.accordion-panel {
  padding-bottom: 1.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: none;
}

.image-17 {
  width: 120px;
}

@media screen and (max-width: 991px) {
  .ds-nav {
    width: 100%;
    height: 63px;
  }

  .ds-menu-brand {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 0;
  }

  .ds-menu {
    box-shadow: 1px 1px 3px 0 var(--gray-300);
    color: #fff;
    background-color: #fff;
    width: 100%;
    padding-bottom: 20px;
    position: absolute;
  }

  .ds-menu-link {
    border-bottom: 1px #e6e6e6;
    width: 100vw;
    padding: 12px 20px;
    transition: background-color .2s;
  }

  .ds-menu-link:hover {
    background-color: #adadad12;
  }

  .sg-block {
    margin-bottom: 40px;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .column {
    width: 50%;
  }

  .button {
    position: relative;
  }

  ._2-1-column-grid, ._1-2-column-grid {
    margin-left: 0;
  }

  .nav-menu-link {
    border-bottom: 1px #e2e2e2;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-menu-link.last {
    border-bottom-width: 0;
  }

  .icon-button {
    margin-top: 10px;
    margin-left: 0;
  }

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

  ._3-column-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .spacer-48px {
    display: block;
  }

  .heading-h1.margin-bottom-10px {
    width: 35.5vw;
    margin-left: 15.2778vw;
  }

  .heading-h1.margin-bottom-10px.colorh1 {
    width: 35.503vw;
  }

  .heading-h4.medium, .heading-h4.open, .heading-h4.open {
    text-align: center;
  }

  .footer-main-grid {
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    grid-template: "."
                   "."
                   "."
                   / 1fr 1fr;
  }

  .main-nav-menu {
    background-color: #fff;
    border: 0 solid #000;
    border-bottom-color: #b3b3b3;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 1px 1px 3px #8b8b8b;
  }

  .nav-logo.mobile {
    display: block;
  }

  .brand {
    top: 15px;
  }

  .main-navigation {
    padding-top: 0;
    padding-bottom: 0;
  }

  .twitter-icon {
    color: #0000;
  }

  .menu-button-2.w--open {
    background-color: var(--primary-500);
  }

  .staff-grid {
    grid-template-columns: .75fr 1fr;
    align-items: stretch;
  }

  .grid-text-block {
    grid-column-gap: 51px;
  }

  .blog-post-image {
    width: 100%;
    max-width: none;
  }

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

  .blog-post-image-link {
    width: 50%;
    max-width: none;
  }

  .blog-article-image {
    height: 350px;
  }

  .contact-us-flex-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

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

  .contact-us-link-big {
    max-width: 200px;
  }

  .contact-us-container-center {
    grid-column-gap: 15px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: .25fr 1fr;
    grid-auto-columns: 1fr;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .pathologies-list-grid {
    grid-column-gap: 49px;
    grid-row-gap: 33px;
    grid-template-columns: 1fr 1fr;
  }

  .services-section-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .hero-container {
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-container.mp, .hero-container.mp2, .hero-container.prolps {
    grid-column-gap: 40px;
  }

  .nav-menu-links {
    flex-direction: column;
  }

  .hero-right {
    justify-content: center;
  }

  .hero-image-container, .hero-image {
    width: 100%;
  }

  .cta-content {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-container {
    margin-bottom: 40px;
  }

  .nav-menu-phone {
    text-align: left;
    width: 100%;
    padding: 10px;
    display: none;
  }

  .form-image {
    object-position: 50% 50%;
  }

  .form-image-container.shadow-01 {
    background-position: 0%;
    background-size: cover;
  }

  .nav-bar-logo-container {
    display: none;
  }

  .nav-menu-mobile {
    margin-right: -18px;
    padding: 18px;
    display: block;
  }

  .navigation-bar-container {
    justify-content: space-between;
    display: flex;
  }

  .slider-block {
    margin-top: 9.889vw;
    margin-left: 80px;
    margin-right: 80px;
  }

  .photo-block {
    margin-left: 0;
    margin-right: 0;
  }

  .right-arrow {
    margin-right: -10px;
  }

  .left-arrow {
    margin-left: -10px;
  }

  .bg-about, .bg-service {
    height: 40vw;
  }

  .image-4 {
    width: 91vw;
  }

  .image-5, .image-6, .image-7, .image-10 {
    width: 91vw;
    max-width: none;
  }

  .div-block-5, .paragraph-4, .paragraph-prolaps {
    max-width: none;
  }

  .staff-grid-second {
    grid-template-columns: .75fr 1fr;
    align-items: stretch;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
    line-height: 44px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 28px;
    line-height: 36px;
  }

  h5 {
    line-height: 28px;
  }

  h6 {
    line-height: 24px;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .column._4-column {
    width: 100%;
  }

  .ds-colour-block {
    width: 25%;
  }

  ._2-1-column-grid, ._1-2-column-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  ._3-column-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .heading-h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .heading-h1.margin-bottom-10px.colorh1 {
    width: 42vw;
  }

  .heading-h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .heading-h5 {
    line-height: 28px;
  }

  .heading-h6 {
    line-height: 24px;
  }

  .footer-main-grid {
    grid-template: "Area Area"
                   ". ."
                   ". ."
                   / 1fr 1fr;
    grid-auto-flow: row;
  }

  .menu-button-2 {
    background-color: #0000;
  }

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

  .staff-grid {
    grid-column-gap: 25px;
    grid-template-columns: .25fr 1fr;
  }

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

  .blog-post-image, .blog-post-description {
    width: 100%;
  }

  .blog-post-image-link {
    width: 50%;
    max-width: none;
  }

  .blog-article-image {
    height: 300px;
  }

  .contact-us-flex-container {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .form-field-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
  }

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

  .contact-us-link-big {
    max-width: none;
  }

  .contact-us-container-center {
    grid-column-gap: 15px;
    grid-template-columns: 56px 1fr;
    width: 100%;
  }

  .services-section-grid {
    grid-template-columns: 1fr;
  }

  .section.no-top-padding.mainbg, .section.hide.mainbg {
    background-position: 50%, 0 0, 100%;
    background-repeat: no-repeat, repeat, no-repeat;
  }

  .hero-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 400px;
  }

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

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

  .accordion-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-menu-close-button {
    cursor: pointer;
  }

  .mobile-menu {
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-menu-mobile {
    cursor: pointer;
    display: block;
  }

  .paragraph-2.client {
    font-size: 14px;
  }

  .slider-block {
    margin-top: 14.3416vw;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .photo-block {
    margin-left: 0;
    margin-right: 4px;
  }

  .right-arrow {
    margin-right: -20px;
  }

  .left-arrow {
    margin-left: -20px;
  }

  .photo-block-6, .photo-block-3, .photo-block-2-hid, .slide-nav {
    display: none;
  }

  .image-4 {
    width: 89vw;
  }

  .staff-grid-second {
    grid-column-gap: 25px;
    grid-template-columns: .25fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .ds-nav {
    display: block;
  }

  .ds-section {
    padding-left: 0;
    padding-right: 0;
  }

  .text-md {
    font-size: 15px;
  }

  .text-md.text-align-right.text-align-left-on-mobile {
    text-align: left;
  }

  .text-md.head {
    width: auto;
    display: none;
  }

  .column {
    margin-bottom: 0;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .button {
    width: auto;
    font-size: 16px;
  }

  .button.outline {
    box-shadow: inset 0 0 0 1.5px var(--white);
    color: var(--white);
  }

  .button.size {
    max-width: 100%;
  }

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

  .nav-menu-link.w--current {
    background-color: var(--gray-100);
  }

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

  ._4-column-grid, ._3-column-grid {
    grid-template-columns: 1fr;
  }

  .heading-h1.bold {
    font-size: 40px;
    line-height: 48px;
  }

  .heading-h1.margin-bottom-10px {
    text-align: left;
    width: 35.4906vw;
    margin-left: 8vw;
    font-size: 5.84551vw;
    line-height: 8.35073vw;
  }

  .heading-h1.margin-bottom-10px.colorh1 {
    text-align: left;
    justify-content: flex-start;
    width: 35.4906vw;
    margin-left: 8vw;
    font-size: 6.26305vw;
    line-height: 8.35073vw;
    display: flex;
  }

  .heading-h4.medium {
    text-align: center;
  }

  .heading-h4.open {
    text-align: center;
    text-align: center;
    width: auto;
    min-width: 28.5714vw;
    font-size: 4.52381vw;
    line-height: 24px;
  }

  .footer-main-grid {
    grid-template: "Area"
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

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

  .main-nav-menu {
    padding-left: 0;
    padding-right: 0;
  }

  .brand {
    padding-left: 0;
  }

  .social-media-icons-container {
    margin-bottom: 10px;
  }

  .staff-grid {
    grid-row-gap: 23px;
    grid-template-columns: 1fr;
  }

  .blog-post-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .blog-post-image {
    width: 100%;
    max-width: none;
  }

  .blog-post-description {
    width: 100%;
    margin-left: auto;
  }

  .blog-post-image-link {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-article-image {
    height: 250px;
  }

  .container-blog {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pexels-images-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-title-container {
    height: 80px;
  }

  .pathologies-list-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: .75fr 1fr;
  }

  .services-section-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  ._404-text {
    font-size: 60px;
  }

  .section.no-top-padding {
    width: 100%;
  }

  .section.no-top-padding.mainbg {
    background-image: url('../images/bg_blue.png');
    background-position: 57%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    min-height: 60vh;
    padding-bottom: 0;
  }

  .section.mp {
    padding-bottom: 20px;
  }

  .section.hide {
    width: 100%;
  }

  .section.hide.mainbg {
    background-image: url('../images/bg_blue.png');
    background-position: 57%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    min-height: 60vh;
    padding-bottom: 0;
  }

  .overline.color-primary-600 {
    margin-left: 8vw;
    font-size: 2.92276vw;
  }

  .hero-image-decoration-bottom, .hero-imagen-decoration-top {
    max-width: 120px;
    display: none;
  }

  .hero-button-container {
    grid-column-gap: 20px;
    grid-row-gap: 15px;
    flex-direction: column;
  }

  .cta-decoration-right {
    display: none;
  }

  .check-circle-item {
    background-position: 0 0;
  }

  .nav-menu-phone {
    color: #926896;
    display: block;
  }

  .mobile-menu {
    background-color: #926896;
    display: none;
  }

  .overflow-hidden.bg {
    display: none;
  }

  .mobile-menu-links-container {
    align-items: flex-start;
    margin-left: 40px;
  }

  .mobile-menu-link {
    font-weight: 500;
  }

  .mobile-menu-link.w--current {
    color: #926896;
    font-weight: 500;
  }

  .mobile-menu-line {
    background-color: #926896;
  }

  .nav-menu-mobile {
    margin-right: -16px;
    display: block;
  }

  .navigation-bar-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bold-text {
    font-size: 14px;
  }

  .slider, .mask {
    height: 100%;
  }

  .slider-block {
    height: 100%;
    margin: 10px;
    padding: 20px;
  }

  .photoslid {
    height: 100%;
  }

  .image-2 {
    width: 16.6667vw;
  }

  .photo-block {
    grid-template-rows: 283px;
  }

  .slider-photo {
    height: 350px;
  }

  .icon {
    overflow: visible;
  }

  .right-arrow {
    display: none;
    overflow: hidden;
  }

  .left-arrow {
    display: none;
  }

  .bg-about {
    background-position: 55%;
    height: 65vw;
  }

  .bg-service {
    background-position: 60%;
    height: 60vw;
  }

  .bg-contact {
    background-position: 41%;
    height: 65vw;
  }

  .bg-contact.in {
    background-position: 60%;
  }

  .bg-contact.pr {
    background-position: 33%;
  }

  .bg-contact.ch {
    background-position: 30%;
  }

  .right-arrow-2, .left-arrow-2 {
    display: none;
  }

  .slide {
    height: 100%;
  }

  .slide-nav {
    margin-bottom: -41px;
  }

  .image-4.ph {
    display: none;
  }

  .bg-mp {
    background-position: 35%;
  }

  .gg-bg {
    background-position: 30%;
    height: 65vw;
  }

  .down-arrow {
    width: 7.14286vw;
    margin-left: 0;
  }

  .staff-grid-second {
    grid-row-gap: 23px;
    grid-template-columns: 1fr;
  }

  .accordion-hedder {
    justify-content: space-between;
  }

  .image-17 {
    width: 16.6667vw;
  }
}

#w-node-_19b7cc0e-e972-d0f9-0a98-a3a2453a3a9a-6dee82ab {
  align-self: center;
}

#w-node-d30a604c-0a59-c1e7-6ff6-3e840d7836dd-6dee82ab, #w-node-_13379c26-75a4-4615-f784-0a24fdbcc51e-6dee82ab, #w-node-_6013df77-0ba1-7fff-3784-e5be7d999a1c-6dee82ab, #w-node-_94949dfc-7790-cfe7-d9ba-7a1fe8800f23-6dee82ab, #w-node-_4e365414-d5d6-3d0b-b928-19c39799570a-97995707 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4e365414-d5d6-3d0b-b928-19c397995737-97995707 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_4e365414-d5d6-3d0b-b928-19c397995738-97995707 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_4e365414-d5d6-3d0b-b928-19c39799573a-97995707 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_4e365414-d5d6-3d0b-b928-19c39799570b-97995707 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_4e365414-d5d6-3d0b-b928-19c39799570c-97995707 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_4e365414-d5d6-3d0b-b928-19c39799570e-97995707 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_4e365414-d5d6-3d0b-b928-19c397995721-97995707 {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-_4e365414-d5d6-3d0b-b928-19c397995722-97995707, #w-node-_4e365414-d5d6-3d0b-b928-19c39799574d-97995707, #w-node-_4e365414-d5d6-3d0b-b928-19c39799574e-97995707 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-fd62a41c-bf64-9247-8eed-5e29fea5ba07-97995707, #w-node-d3d4c025-5bfd-1e78-fc50-154efef2d43a-b9ee82ae, #w-node-_9f3dbbf6-1272-a4d3-4446-b9373c921a12-b9ee82ae, #w-node-_4c567c92-191e-f037-09ed-da4adca86760-b9ee82ae, #w-node-_418eca29-f803-27a7-2fb7-46f68e9bc51d-b9ee82ae, #w-node-_418eca29-f803-27a7-2fb7-46f68e9bc51e-b9ee82ae, #w-node-d57a7a39-64ce-9f78-1648-bc3a9b9f78ee-b9ee82ae, #w-node-d57a7a39-64ce-9f78-1648-bc3a9b9f78ef-b9ee82ae, #w-node-_952c514e-7f9d-501b-5dce-82a118233f82-66ee82b3, #w-node-_714d43d9-bd90-78d6-fce9-4db2a6a5d7cc-66ee82b3, #w-node-d63c29de-dbaf-1642-9612-29fd6e26ce99-c6ee82b6, #w-node-d63c29de-dbaf-1642-9612-29fd6e26ce9a-c6ee82b6, #w-node-_892b01ac-1d64-b1ea-acfd-84fb7cf0b5b9-c6ee82b6, #w-node-_892b01ac-1d64-b1ea-acfd-84fb7cf0b5ba-c6ee82b6, #w-node-a1b1e129-5a77-5ae4-58d9-e711f441e54f-c6ee82b6, #w-node-a1b1e129-5a77-5ae4-58d9-e711f441e550-c6ee82b6, #w-node-_844c1d57-730d-a421-88eb-bc136db8e0b5-c6ee82b6, #w-node-bbe6e3a0-4d10-1c71-f1c0-ee1cc7fb98e1-c6ee82b6, #w-node-_7985b95b-e763-7324-ac4b-d709dd7e75ae-c6ee82b6, #w-node-c13c0104-fe6f-cfe9-d368-3f374f95514a-c6ee82b6, #w-node-bd86bb51-2217-ce42-527b-5277f6ad047c-c6ee82b6, #w-node-_8504c0ac-98ae-4674-606b-6549b1e7fbbd-c6ee82b6, #w-node-_052fa215-f55a-e024-3819-264c136ddc0d-c6ee82b6, #w-node-e14c8450-c03b-6817-1232-333e5a9c949a-c6ee82b6, #w-node-_8e167749-a4ab-a428-d953-2045f04d4ee1-c6ee82b6, #w-node-_589fb174-190b-eade-1a26-2e51f78e957a-c6ee82b6, #w-node-_4384f8f3-ea83-9663-79f4-a006bf72ebb5-c6ee82b6, #w-node-_1d8eb7cf-04ff-9ce9-d3c9-94eb59792db7-c6ee82b6, #w-node-_9232b033-1463-e1ba-187f-942cbadb8535-c6ee82b6, #w-node-c00160a2-4360-5693-ce6f-6a2db28be388-c6ee82b6, #w-node-_310a0073-a13a-8b47-d12f-b7bb746565e9-c6ee82b6, #w-node-_8e733bd2-d58c-4d22-f481-633ebf1b8157-c6ee82b6, #w-node-_93db8a2c-1e41-e94a-21e9-a816bf8c763e-c6ee82b6, #w-node-_8f3d9180-60ad-9f88-4ada-1e1384f0b759-c6ee82b6, #w-node-_6e34f4ff-ccf8-49b6-929f-d6f647a59e4e-bfee82b8, #w-node-_6e34f4ff-ccf8-49b6-929f-d6f647a59e53-bfee82b8, #w-node-_6e34f4ff-ccf8-49b6-929f-d6f647a59e58-bfee82b8, #w-node-_6e34f4ff-ccf8-49b6-929f-d6f647a59e5d-bfee82b8, #w-node-_930dfb07-6824-5ba0-c9b9-8f84bb1ef71f-c8ee82b9, #w-node-_930dfb07-6824-5ba0-c9b9-8f84bb1ef725-c8ee82b9, #w-node-_930dfb07-6824-5ba0-c9b9-8f84bb1ef72b-c8ee82b9, #w-node-_26005652-89f4-786f-0d57-4e98c5fe4648-f7f61907, #w-node-_26005652-89f4-786f-0d57-4e98c5fe464d-f7f61907, #w-node-_26005652-89f4-786f-0d57-4e98c5fe4652-f7f61907, #w-node-_26005652-89f4-786f-0d57-4e98c5fe4657-f7f61907, #w-node-_81664bb4-967c-d990-8d89-28a83d02aeed-062571b6, #w-node-_81664bb4-967c-d990-8d89-28a83d02aef2-062571b6, #w-node-_81664bb4-967c-d990-8d89-28a83d02aef7-062571b6, #w-node-_81664bb4-967c-d990-8d89-28a83d02aefc-062571b6, #w-node-_07c8c38b-16d1-d436-df13-f3d34de7e429-b1225df1, #w-node-_07c8c38b-16d1-d436-df13-f3d34de7e42e-b1225df1, #w-node-_07c8c38b-16d1-d436-df13-f3d34de7e433-b1225df1, #w-node-_07c8c38b-16d1-d436-df13-f3d34de7e438-b1225df1, #w-node-_2e9ffe13-7c7a-87ca-cf11-0e35ae6b7894-fdaae934, #w-node-_2e9ffe13-7c7a-87ca-cf11-0e35ae6b7899-fdaae934, #w-node-_2e9ffe13-7c7a-87ca-cf11-0e35ae6b789e-fdaae934, #w-node-_2e9ffe13-7c7a-87ca-cf11-0e35ae6b78a3-fdaae934 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_4e365414-d5d6-3d0b-b928-19c397995737-97995707 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_4e365414-d5d6-3d0b-b928-19c39799570b-97995707 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_4e365414-d5d6-3d0b-b928-19c397995721-97995707 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_4e365414-d5d6-3d0b-b928-19c39799574d-97995707 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_9f3dbbf6-1272-a4d3-4446-b9373c921a12-b9ee82ae, #w-node-_418eca29-f803-27a7-2fb7-46f68e9bc51e-b9ee82ae, #w-node-d57a7a39-64ce-9f78-1648-bc3a9b9f78ee-b9ee82ae {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dd1872b5-4ec9-92d2-b179-9090f5f7bb9c-66ee82b3 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4e365414-d5d6-3d0b-b928-19c397995737-97995707, #w-node-_4e365414-d5d6-3d0b-b928-19c39799570b-97995707 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4e365414-d5d6-3d0b-b928-19c397995721-97995707 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_4e365414-d5d6-3d0b-b928-19c39799575e-97995707 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


