body {
  box-sizing: border-box;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
* {
  --surface-surface-button: #5F249F;
  --surface-surface-primary: #F4F6FB;
  --text-button-label: #FFFFFF;
  --Dark-Purple: #1E0B4D;
  --Primary-Purple: #4A0D60;
  --Grey-Blue: #ECF0F9;
  --1: 8px;
  --2: 16px;
  --3: 24px;
  --4: 32px;
  --5: 40px;
  --6: 48px;
  --spacing-5: 20px;
}
body {
  background: var(--surface-surface-primary, #F4F6FB);
}
.buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 0.8rem;
}
.buttons a {
  position: relative;
}
.buttons a:hover .text,
.buttons a:active .text {
  background-color: #9251D8;
}
.buttons a:hover .gooey-effect .bubbles .bubble,
.buttons a:active .gooey-effect .bubbles .bubble {
  background-color: #782DC9;
}
.buttons a .text {
  z-index: 1;
  position: relative;
  display: flex;
  height: 5.4rem;
  padding: var(--2, 1.6rem) var(--3, 3.2rem);
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 5rem;
  background: var(--surface-surface-button, #5F249F);
  color: var(--text-button-label, #FFF);
  text-align: center;
  font-family: 'New Order', sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.028rem;
  text-transform: uppercase;
  grid-gap: 0.8rem;
}
.buttons a img {
  width: 2rem;
  height: 2rem;
}
.container {
  max-width: 144rem;
  padding: 0 6.4rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.6rem;
  }
}
.gooey-svg {
  position: absolute;
  top: -4000px;
  left: -4000px;
}
.gooey-effect {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  filter: url('#gooey');
  position: absolute;
  top: 0;
  left: 0;
}
.gooey-effect:focus {
  outline: none;
}
.gooey-effect .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.gooey-effect .bubbles .bubble {
  background-color: var(--surface-surface-button, #5F249F);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}
.gooey-effect .bubbles .bubble:nth-child(1) {
  left: 5%;
  width: 25px;
  height: 25px;
  animation: move-1 3.02s infinite;
  animation-delay: 0.2s;
}
.gooey-effect .bubbles .bubble:nth-child(2) {
  left: 10%;
  width: 25px;
  height: 25px;
  animation: move-2 3.04s infinite;
  animation-delay: 0.4s;
}
.gooey-effect .bubbles .bubble:nth-child(3) {
  left: 20%;
  width: 25px;
  height: 25px;
  animation: move-3 3.06s infinite;
  animation-delay: 0.6s;
}
.gooey-effect .bubbles .bubble:nth-child(4) {
  left: 30%;
  width: 25px;
  height: 25px;
  animation: move-4 3.08s infinite;
  animation-delay: 0.8s;
}
.gooey-effect .bubbles .bubble:nth-child(5) {
  left: 40%;
  width: 25px;
  height: 25px;
  animation: move-5 3.1s infinite;
  animation-delay: 1s;
}
.gooey-effect .bubbles .bubble:nth-child(6) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation: move-6 3.12s infinite;
  animation-delay: 1.2s;
}
.gooey-effect .bubbles .bubble:nth-child(7) {
  left: 60%;
  width: 25px;
  height: 25px;
  animation: move-7 3.14s infinite;
  animation-delay: 1.4s;
}
.gooey-effect .bubbles .bubble:nth-child(8) {
  left: 70%;
  width: 25px;
  height: 25px;
  animation: move-8 3.16s infinite;
  animation-delay: 1.6s;
}
.gooey-effect .bubbles .bubble:nth-child(9) {
  left: 80%;
  width: 25px;
  height: 25px;
  animation: move-9 3.18s infinite;
  animation-delay: 1.8s;
}
.gooey-effect .bubbles .bubble:nth-child(10) {
  left: 85%;
  width: 25px;
  height: 25px;
  animation: move-10 3.2s infinite;
  animation-delay: 2s;
}
.gooey-effect.to-bottom .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.gooey-effect.to-bottom .bubbles .bubble {
  background-color: var(--surface-surface-button, #5F249F);
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(1) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-1-bottom 3.02s infinite;
  animation-delay: 0.2s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(2) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-2-bottom 3.04s infinite;
  animation-delay: 0.4s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(3) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-3-bottom 3.06s infinite;
  animation-delay: 0.6s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(4) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-4-bottom 3.08s infinite;
  animation-delay: 0.8s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(5) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-5-bottom 3.1s infinite;
  animation-delay: 1s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(6) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-6-bottom 3.12s infinite;
  animation-delay: 1.2s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(7) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-7-bottom 3.14s infinite;
  animation-delay: 1.4s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(8) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-8-bottom 3.16s infinite;
  animation-delay: 1.6s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(9) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-9-bottom 3.18s infinite;
  animation-delay: 1.8s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(10) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-10-bottom 3.2s infinite;
  animation-delay: 2s;
}
@keyframes move-1 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -50px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-2 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -30px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-3 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -50px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-4 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -103px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-5 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-6 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -100px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-7 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -94px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-8 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -126px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-9 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -60px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-10 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -10px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-1-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 5rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-2-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 3rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-3-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 5rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-4-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 10.3rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-5-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 2rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-6-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 10rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-7-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 9.4rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-8-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 12.6rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-9-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 6rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-10-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 1rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
html {
  font-size: 10px;
}
@media (max-width: 4000px) {
  html {
    font-size: calc(10/1440 * 100vw);
  }
}
@media (max-width: 991px) {
  html {
    font-size: calc(10/991 * 100vw);
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(10/390 * 100vw);
  }
}
html.lock,
html.lock body {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
img {
  width: 100%;
}
a,
a:link,
a:visited {
  text-decoration: none;
}
ul li {
  list-style: none;
}
.hidden {
  display: none !important;
}
.hidden-modal {
  opacity: 0!important;
  pointer-events: none!important;
}
.mobile {
  display: none;
}
@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: initial;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #ffffff;
  z-index: 1001;
  transition: top 0.5s ease-in-out;
}
.header.hidden-header {
  top: -120px;
}
.header .visible {
  background-color: #ffffff;
}
.header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 156px;
}
.nav {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}
.nav-top {
  display: flex;
  justify-content: flex-end;
  padding: var(--1, 8px) 0;
  align-items: flex-start;
  gap: var(--4, 32px);
}
.nav-top a {
  color: #444;
  font-family: 'New Order', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.nav-bottom {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: var(--6, 48px);
}
.nav-bottom a {
  overflow: hidden;
  color: var(--surface-surface-button, #5F249F);
  font-family: 'New Order', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 114.286%;
  position: relative;
  text-align: center;
}
.nav-bottom a:nth-child(1) {
  width: 112px;
}
.nav-bottom a:nth-child(2) {
  width: 112px;
}
.nav-bottom a:nth-child(3) {
  width: 144px;
}
.nav-bottom a:nth-child(4) {
  width: 64px;
}
.nav-bottom a:not(.sign-in) {
  padding-top: 12px;
  padding-bottom: 13px;
}
.nav-bottom a.active,
.nav-bottom a:hover:not(.sign-in) {
  font-weight: bold;
  position: relative;
}
.nav-bottom a.active:after,
.nav-bottom a:hover:not(.sign-in):after {
  position: absolute;
  content: '';
  display: block;
  bottom: 2px;
  width: 100%;
  height: 7px;
}
.nav-bottom a.drop-down-arrow {
  position: relative;
}
.nav-bottom a.drop-down-arrow:after {
  content: '' !important;
  position: absolute !important;
  top: 50%;
  right: 39px;
  width: 24px !important;
  height: 24px !important;
  transform: rotate(180deg) translateY(50%);
  background-image: url("../../img/chevron-down-blue.svg");
  background-size: cover;
  background-position: center;
}
.nav-bottom a.drop-down-arrow.open:after {
  transform: rotate(0) translateY(-50%);
}
.nav-bottom .sub-menu {
  width: 148px;
  position: absolute;
  right: 108px;
  top: 44px;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  z-index: 10;
  background: #5F249F;
  border-radius: 4px;
}
.nav-bottom .sub-menu:before {
  content: '';
  width: 15.602px;
  height: 15.602px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #5F249F;
}
.nav-bottom .sub-menu a {
  width: 100%;
  padding: 0;
  color: #F4F6FB;
  text-align: center;
  font-family: "New Order", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.nav-bottom .sub-menu a:after {
  content: none !important;
}
.nav-bottom .sign-in {
  display: flex;
  padding: 12px 20px;
  width: 97px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  background: var(--surface-surface-button, #5F249F);
  color: var(--text-button-label, #FFF);
  font-family: 'New Order', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.nav-bottom .sign-in:hover,
.nav-bottom .sign-in:active {
  background: #00B5E2;
}
.nav-mobile {
  display: none;
}
@media (max-width: 991px) {
  .header {
    padding: 1.6rem 0 1.6rem;
  }
  .header .menu {
    cursor: pointer;
    position: relative;
    width: 5rem;
    height: 5.2rem;
    background-image: url("../../img/menu-circle.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .header .menu:before,
  .header .menu:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 0.4rem));
    background-image: url("../../img/menu-line.svg");
    width: 2.4rem;
    height: 0.3rem;
    transition: transform 0.3s ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .header .menu:after {
    transform: translate(-50%, calc(-50% - 0.4rem));
  }
  .header .menu.open:before,
  .header .menu.open:after {
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header .menu.open:after {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .logo {
    align-items: flex-end;
  }
  .nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
    align-items: flex-end;
  }
  .nav-mobile .divider {
    margin-bottom: 1.6rem;
    width: 100%;
    height: 0.1rem;
    background: var(--surface-surface-button, #5F249F);
  }
  .nav-mobile .menu-dropdown {
    padding: 0;
    background: #5F249F;
    position: absolute;
    top: 120px;
    left: 0;
    height: 0;
    overflow: hidden;
    width: 100%;
    transition: height 0.3s ease-in-out;
    z-index: 1001;
  }
  .nav-mobile.open .menu-dropdown {
    height: auto;
    transition: height 0.3s ease-in-out;
  }
  .nav-top {
    flex-direction: column;
    grid-gap: 1.3rem;
    padding: 4.45rem 3.2rem;
    margin-bottom: 0;
  }
  .nav-top a {
    border-radius: 5.6rem;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    padding: 1.2rem 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    font-size: 1.6rem;
    color: #ECF0F9;
    font-style: normal;
    font-weight: 500;
    line-height: 2rem;
  }
  .nav-bottom {
    flex-direction: column;
    grid-gap: 0;
    padding-bottom: 0;
  }
  .nav-bottom a:not(.sign-in) {
    width: 100%;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2rem;
    display: flex;
    padding: 3.2rem 0;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(236, 240, 249, 0.2);
    background: rgba(30, 11, 77, 0.2);
  }
  .nav-bottom a:not(.sign-in):hover:after {
    content: none;
  }
  .nav-bottom a.sign-in {
    width: 31rem;
    height: 7rem;
    margin: 4rem auto;
    display: flex;
    padding: 2.4rem 3.2rem;
    justify-content: center;
    align-items: center;
    border-radius: 5rem;
    background: #FFF;
    color: var(--Primary-Purple, #4A0D60);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.126rem;
  }
  .nav-bottom .sub-menu {
    position: relative;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 1px;
    z-index: 1;
    background: #5F249F;
    border-radius: 0;
    width: 100%;
  }
  .nav-bottom .sub-menu:before {
    content: none;
  }
  .nav-bottom .sub-menu a {
    width: 100%;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2rem;
    display: flex;
    padding: 3.2rem 0;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(236, 240, 249, 0.2);
    background: rgba(30, 11, 77, 0.2);
  }
}
@media (max-width: 768px) and (min-width: 410px) {
  .nav-mobile .menu-dropdown {
    top: 120px;
  }
  .nav-top {
    grid-gap: 13px;
    padding: 44.5px 32px;
  }
  .nav-top a {
    border-radius: 56px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 20px;
  }
  .nav-bottom a:not(.sign-in) {
    width: 100%;
    font-size: 20px;
    line-height: 20px;
    padding: 32px 0;
  }
  .nav-bottom a.sign-in {
    width: 310px;
    margin: 40px auto;
    padding: 24px 32px;
    border-radius: 50px;
    font-size: 18px;
    letter-spacing: 1.26px;
  }
}
@media (max-width: 768px) and (max-height: 830px) {
  .nav-top {
    padding: 1rem 3.2rem;
  }
  .nav-bottom a.sign-in {
    margin: 2rem auto;
  }
  .nav-bottom a:not(.sign-in) {
    padding: 2rem 0;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
  -ms-overflow-style: none;
}
.send-email-file[data-send-name="send-guide"],
.send-email-file[data-send-name="send-brochure"] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
}
.send-email-file[data-send-name="send-guide"] p,
.send-email-file[data-send-name="send-brochure"] p,
.send-email-file[data-send-name="send-guide"] span,
.send-email-file[data-send-name="send-brochure"] span {
  color: #333333;
}
.send-email-file[data-send-name="send-guide"] .close,
.send-email-file[data-send-name="send-brochure"] .close {
  position: absolute;
  top: -0.75rem;
  right: -1.9rem;
  width: 3.8rem;
  height: 3.8rem;
  background-color: #5F249F;
  border-radius: 50%;
}
.send-email-file[data-send-name="send-guide"] .close:after,
.send-email-file[data-send-name="send-brochure"] .close:after,
.send-email-file[data-send-name="send-guide"] .close:before,
.send-email-file[data-send-name="send-brochure"] .close:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 0.4rem));
  width: 1.7rem;
  height: 0.2rem;
  transition: transform 0.3s ease-in-out;
  background-color: #ffffff;
}
.send-email-file[data-send-name="send-guide"] .close:after,
.send-email-file[data-send-name="send-brochure"] .close:after {
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.send-email-file[data-send-name="send-guide"] .close:before,
.send-email-file[data-send-name="send-brochure"] .close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.send-email-file[data-send-name="send-guide"] .modal-wrapper,
.send-email-file[data-send-name="send-brochure"] .modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  max-width: 109.2rem;
  background: #FFFFFF;
  border-radius: 3.2rem;
  text-align: center;
}
.send-email-file[data-send-name="send-guide"] h2.modal-title,
.send-email-file[data-send-name="send-brochure"] h2.modal-title {
  color: var(--text-headline, #5F249F);
  font-family: 'Gothiks Round', sans-serif;
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.8rem;
  text-align: center;
}
.send-email-file[data-send-name="send-guide"] .subheader,
.send-email-file[data-send-name="send-brochure"] .subheader {
  font-family: 'New Order', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.8rem;
  text-align: center;
  margin-bottom: 0.7rem;
}
.send-email-file[data-send-name="send-guide"] input[type="email"],
.send-email-file[data-send-name="send-brochure"] input[type="email"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #C6A4EA;
  margin: 1rem 0 0.3rem;
  height: 6rem;
  font-family: 'New Order', sans-serif;
  color: #444444;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem;
  outline: none;
  padding-left: 1rem;
}
.send-email-file[data-send-name="send-guide"] .ginput_container.ginput_container_email,
.send-email-file[data-send-name="send-brochure"] .ginput_container.ginput_container_email {
  margin-bottom: 3.7rem;
}
.send-email-file[data-send-name="send-guide"] .ginput_container.error input[type="email"],
.send-email-file[data-send-name="send-brochure"] .ginput_container.error input[type="email"] {
  border-bottom: 0.1rem solid #F00;
}
.send-email-file[data-send-name="send-guide"] .ginput_container.error input[type="email"]::placeholder,
.send-email-file[data-send-name="send-brochure"] .ginput_container.error input[type="email"]::placeholder {
  color: #F00;
}
.send-email-file[data-send-name="send-guide"] .validation_message,
.send-email-file[data-send-name="send-brochure"] .validation_message {
  font-family: 'New Order', sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  color: #F00;
  text-align: right;
  position: relative;
}
.send-email-file[data-send-name="send-guide"] .validation_message:after,
.send-email-file[data-send-name="send-brochure"] .validation_message:after {
  content: '';
  position: absolute;
  top: -3.9rem;
  right: 0.8rem;
  background-image: url(../../img/alert-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.8rem;
  height: 1.8rem;
}
.send-email-file[data-send-name="send-guide"] .modal-content,
.send-email-file[data-send-name="send-brochure"] .modal-content {
  width: 86rem;
  padding: 6.4rem 12.4rem 4.8rem;
}
.send-email-file[data-send-name="send-guide"] .modal-content .gfield_label,
.send-email-file[data-send-name="send-brochure"] .modal-content .gfield_label,
.send-email-file[data-send-name="send-guide"] .modal-content .gform_heading,
.send-email-file[data-send-name="send-brochure"] .modal-content .gform_heading {
  display: none;
}
.send-email-file[data-send-name="send-guide"] .modal-content .form-submit,
.send-email-file[data-send-name="send-brochure"] .modal-content .form-submit,
.send-email-file[data-send-name="send-guide"] .modal-content #gform_submit_button_2,
.send-email-file[data-send-name="send-brochure"] .modal-content #gform_submit_button_2,
.send-email-file[data-send-name="send-guide"] .modal-content #gform_submit_button_6,
.send-email-file[data-send-name="send-brochure"] .modal-content #gform_submit_button_6 {
  z-index: 1;
  position: relative;
  display: flex;
  height: 5.4rem;
  padding: 1.6rem 3rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 5rem;
  background: var(--surface-surface-button, #5F249F);
  color: var(--text-button-label, #FFF);
  text-align: center;
  font-family: 'New Order', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.028rem;
  text-transform: uppercase;
  grid-gap: 0.8rem;
  margin: 4rem auto 0;
  width: 11.3rem;
  border: none;
  cursor: pointer;
}
.send-email-file[data-send-name="send-guide"] .modal-content .label-text,
.send-email-file[data-send-name="send-brochure"] .modal-content .label-text,
.send-email-file[data-send-name="send-guide"] .modal-content .more-info,
.send-email-file[data-send-name="send-brochure"] .modal-content .more-info,
.send-email-file[data-send-name="send-guide"] .modal-content #label_2_4_1,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_2_4_1,
.send-email-file[data-send-name="send-guide"] .modal-content #label_6_2_1,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_6_2_1 {
  font-family: 'New Order', sans-serif;
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6rem;
  text-align: left;
}
.send-email-file[data-send-name="send-guide"] .modal-content .label-text a,
.send-email-file[data-send-name="send-brochure"] .modal-content .label-text a,
.send-email-file[data-send-name="send-guide"] .modal-content .more-info a,
.send-email-file[data-send-name="send-brochure"] .modal-content .more-info a,
.send-email-file[data-send-name="send-guide"] .modal-content #label_2_4_1 a,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_2_4_1 a,
.send-email-file[data-send-name="send-guide"] .modal-content #label_6_2_1 a,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_6_2_1 a {
  font-weight: 700;
  text-decoration: underline;
  color: #5F249F;
}
.send-email-file[data-send-name="send-guide"] .modal-content .more-info,
.send-email-file[data-send-name="send-brochure"] .modal-content .more-info {
  margin-top: 4rem;
}
.send-email-file[data-send-name="send-guide"] .modal-content #field_2_3,
.send-email-file[data-send-name="send-brochure"] .modal-content #field_2_3 {
  position: relative;
}
.send-email-file[data-send-name="send-guide"] .modal-content #choice_2_4_1,
.send-email-file[data-send-name="send-brochure"] .modal-content #choice_2_4_1,
.send-email-file[data-send-name="send-guide"] .modal-content #choice_6_2_1,
.send-email-file[data-send-name="send-brochure"] .modal-content #choice_6_2_1 {
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  line-height: 0;
}
.send-email-file[data-send-name="send-guide"] .modal-content #label_2_4_1,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_2_4_1,
.send-email-file[data-send-name="send-guide"] .modal-content #label_6_2_1,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_6_2_1 {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.send-email-file[data-send-name="send-guide"] .modal-content #label_2_4_1:before,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_2_4_1:before,
.send-email-file[data-send-name="send-guide"] .modal-content #label_6_2_1:before,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_6_2_1:before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  border: 1px solid #C6A4EA;
  left: -2.2rem;
  top: 0;
}
.send-email-file[data-send-name="send-guide"] .modal-content #label_2_4_1:after,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_2_4_1:after,
.send-email-file[data-send-name="send-guide"] .modal-content #label_6_2_1:after,
.send-email-file[data-send-name="send-brochure"] .modal-content #label_6_2_1:after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  background-color: #C6A4EA;
  left: -2rem;
  top: 0.2rem;
  opacity: 0;
}
.send-email-file[data-send-name="send-guide"] .modal-content #input_2_4 > li,
.send-email-file[data-send-name="send-brochure"] .modal-content #input_2_4 > li {
  padding-left: 2rem;
}
.send-email-file[data-send-name="send-guide"] .modal-content #input_2_4 > li.active #label_2_4_1:after,
.send-email-file[data-send-name="send-brochure"] .modal-content #input_2_4 > li.active #label_2_4_1:after,
.send-email-file[data-send-name="send-guide"] .modal-content #input_2_4 > li.active #label_6_2_1:after,
.send-email-file[data-send-name="send-brochure"] .modal-content #input_2_4 > li.active #label_6_2_1:after {
  opacity: 1;
}
.send-email-file[data-send-name="send-guide"] .modal-content #field_6_2,
.send-email-file[data-send-name="send-brochure"] .modal-content #field_6_2 {
  border: none;
}
.send-email-file[data-send-name="send-guide"] .modal-content #field_6_2 .ginput_container.ginput_container_checkbox,
.send-email-file[data-send-name="send-brochure"] .modal-content #field_6_2 .ginput_container.ginput_container_checkbox {
  padding-left: 2rem;
}
.send-email-file[data-send-name="send-guide"] .modal-content .ginput_container.ginput_container_checkbox.active #label_6_2_1:after,
.send-email-file[data-send-name="send-brochure"] .modal-content .ginput_container.ginput_container_checkbox.active #label_6_2_1:after {
  opacity: 1;
}
.send-email-file[data-send-name="send-guide"] .modal-content fieldset input:checked + label:after,
.send-email-file[data-send-name="send-brochure"] .modal-content fieldset input:checked + label:after {
  opacity: 1 !important;
}
.send-email-file[data-send-name="send-guide"] .modal-content #gform_2_validation_container,
.send-email-file[data-send-name="send-brochure"] .modal-content #gform_2_validation_container {
  display: none;
}
.send-email-file[data-send-name="send-guide"] .modal-content .error-message,
.send-email-file[data-send-name="send-brochure"] .modal-content .error-message,
.send-email-file[data-send-name="send-guide"] .modal-content #validation_message_2_3,
.send-email-file[data-send-name="send-brochure"] .modal-content #validation_message_2_3 {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  color: #F00;
  font-family: 'New Order', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
}
.send-email-file[data-send-name="send-guide"] .modal-content .error-message.show-error,
.send-email-file[data-send-name="send-brochure"] .modal-content .error-message.show-error {
  display: inline-block;
}
.send-email-file[data-send-name="send-guide"] .modal-content .error-message.show-error:before,
.send-email-file[data-send-name="send-brochure"] .modal-content .error-message.show-error:before {
  content: '';
  position: absolute;
  top: -4.1rem;
  right: 0;
  background-image: url(../../img/alert-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.8rem;
  height: 1.8rem;
}
.send-email-file[data-send-name="send-guide"] .modal-content input.error,
.send-email-file[data-send-name="send-brochure"] .modal-content input.error {
  font-family: 'New Order', sans-serif;
  border-color: #F00;
}
.send-email-file[data-send-name="send-guide"] .modal-content input.error::placeholder,
.send-email-file[data-send-name="send-brochure"] .modal-content input.error::placeholder {
  color: #F00;
}
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block {
  display: flex;
  position: relative;
  margin-bottom: 4rem;
}
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block .label-text.active:after,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block .label-text.active:after {
  opacity: 1;
}
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block .first.last,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block .first.last {
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  line-height: 0;
}
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block .label-text,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block .label-text,
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block #label_2_4_1,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block #label_2_4_1,
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block #label_6_2_1,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block #label_6_2_1 {
  margin-left: 2rem;
  cursor: pointer;
}
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block .label-text:before,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block .label-text:before,
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block #label_2_4_1:before,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block #label_2_4_1:before,
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block #label_6_2_1:before,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block #label_6_2_1:before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  border: 1px solid #C6A4EA;
  left: 0;
}
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block .label-text:after,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block .label-text:after,
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block #label_2_4_1:after,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block #label_2_4_1:after,
.send-email-file[data-send-name="send-guide"] .modal-content .checkbox-block #label_6_2_1:after,
.send-email-file[data-send-name="send-brochure"] .modal-content .checkbox-block #label_6_2_1:after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  background-color: #C6A4EA;
  left: 0.2rem;
  top: 0.2rem;
  opacity: 0;
}
.send-email-file[data-send-name="send-guide"] .success-modal,
.send-email-file[data-send-name="send-brochure"] .success-modal {
  width: 70.4rem;
  padding: 6.4rem 12.4rem 4.8rem;
}
.send-email-file[data-send-name="send-guide"] .success-modal .subheader,
.send-email-file[data-send-name="send-brochure"] .success-modal .subheader {
  text-align: center;
}
.send-email-file[data-send-name="send-guide"] .success-modal .close-btn,
.send-email-file[data-send-name="send-brochure"] .success-modal .close-btn {
  max-width: 10.5rem;
  height: 5.4rem;
  margin: 4rem auto 0;
  border-radius: 5rem;
  background: #5F249F;
  display: flex;
  padding: 1.6rem 1rem;
  align-items: flex-start;
  color: #FFF;
  font-family: 'New Order', sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
  text-transform: uppercase;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .send-email-file[data-send-name="send-guide"] .modal-wrapper,
  .send-email-file[data-send-name="send-brochure"] .modal-wrapper {
    width: 90%;
    top: 50%;
  }
  .send-email-file[data-send-name="send-guide"] .modal-wrapper .modal-content,
  .send-email-file[data-send-name="send-brochure"] .modal-wrapper .modal-content,
  .send-email-file[data-send-name="send-guide"] .modal-wrapper .success-modal,
  .send-email-file[data-send-name="send-brochure"] .modal-wrapper .success-modal {
    width: 100%;
    padding: 0.4rem 1.4rem 1.8rem;
  }
  .send-email-file[data-send-name="send-guide"] .modal-wrapper h2,
  .send-email-file[data-send-name="send-brochure"] .modal-wrapper h2,
  .send-email-file[data-send-name="send-guide"] .modal-wrapper .modal-title,
  .send-email-file[data-send-name="send-brochure"] .modal-wrapper .modal-title {
    font-size: 4.2rem;
  }
  .send-email-file[data-send-name="send-guide"] .modal-wrapper .subheader,
  .send-email-file[data-send-name="send-brochure"] .modal-wrapper .subheader {
    font-size: 1.5rem;
  }
}
.welcome-modal {
  opacity: 1;
  pointer-events: all;
  transition: opacity 150ms ease-in;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 1001;
  overflow: auto;
  scrollbar-width: none;
}
.welcome-modal::-webkit-scrollbar {
  display: none;
}
.welcome-modal .content {
  position: absolute;
  top: 6rem;
  right: 6rem;
  width: 54rem;
  height: auto;
  border-radius: 3.2rem;
  background: #F4F6FB;
  padding: 5.3rem 5.7rem 2.7rem;
}
.welcome-modal .close {
  position: absolute;
  top: -0.7rem;
  right: -1.8rem;
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  background-color: #5F249F;
  border-radius: 50%;
  cursor: pointer;
}
.welcome-modal .close span {
  background: #FFF;
  display: block;
  width: 1.7rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}
.welcome-modal .close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.welcome-modal .close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.welcome-modal .inputs {
  margin: 2.8rem 0 2.7rem;
}
.welcome-modal .inputs .wpcf7-not-valid {
  border-bottom: 0.1rem solid #F00;
}
.welcome-modal .inputs .wpcf7-not-valid::placeholder {
  color: #F00;
}
.welcome-modal h2 {
  color: #5F249F;
  text-align: center;
  font-family: 'New Order', sans-serif;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.64rem;
  margin-bottom: 1.2rem;
}
.welcome-modal p {
  color: #333;
  text-align: center;
  font-family: 'New Order', sans-serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
}
.welcome-modal p sup {
  line-height: 0;
  font-size: 60%;
}
.welcome-modal p span {
  display: block;
  width: 100%;
}
.welcome-modal.finished {
  padding: 0;
}
.welcome-modal.finished .content > h2,
.welcome-modal.finished .content > p {
  display: none;
}
.welcome-modal .gform_heading,
.welcome-modal .gform_validation_errors {
  display: none;
}
.welcome-modal form .validation_message.gfield_validation_message,
.welcome-modal form .validation_message {
  font-family: 'New Order', sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  color: #F00;
  text-align: right;
  position: relative;
}
.welcome-modal form .validation_message.gfield_validation_message:after,
.welcome-modal form .validation_message:after {
  content: '';
  position: absolute;
  top: -3.9rem;
  right: 0.8rem;
  background-image: url(../../img/alert-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.8rem;
  height: 1.8rem;
}
.welcome-modal form fieldset {
  border: none;
}
.welcome-modal form fieldset legend {
  display: none;
}
.welcome-modal form fieldset .ginput_container {
  margin-top: 2.7rem;
  display: flex;
}
.welcome-modal form fieldset .ginput_container .wpcf7-not-valid-tip {
  display: none;
}
.welcome-modal form fieldset .ginput_container label {
  position: relative;
  padding-left: 2.9rem;
  text-align: left;
  font-family: 'New Order', sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.welcome-modal form fieldset .ginput_container label .gfield_required.gfield_required_asterisk {
  display: none;
}
.welcome-modal form fieldset .ginput_container label:before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  border: 0.1rem solid #C6A4EA;
  left: 0.3rem;
}
.welcome-modal form fieldset .ginput_container input:checked + label:after {
  content: '';
  position: absolute;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #C6A4EA;
  left: 0.53rem;
  top: 0.25rem;
}
.welcome-modal form fieldset .ginput_container a {
  color: #5F249F;
  font-family: 'New Order', sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}
.welcome-modal form fieldset .ginput_container input {
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  line-height: 0;
  position: relative;
}
.welcome-modal form fieldset .ginput_container label span:after {
  content: none;
}
.welcome-modal form fieldset .ginput_container-text.error {
  color: #F00;
}
.welcome-modal form fieldset .ginput_container-text.error a.error {
  color: #F00;
}
.welcome-modal form fieldset .validation_message {
  display: none !important;
}
.welcome-modal form fieldset .invalid label {
  color: #F00;
}
.welcome-modal form fieldset .invalid label a {
  color: #F00;
}
.welcome-modal form .wpcf7-response-output {
  margin: 0 !important;
  font-family: 'New Order', sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none !important;
  text-align: center;
  color: #F00;
}
.welcome-modal form label {
  width: 100%;
  display: block;
}
.welcome-modal form label span {
  position: relative;
}
.welcome-modal form label span:not([data-name="mobile"]) input[aria-invalid="false"] {
  padding-bottom: 1.8rem;
  margin-bottom: 0;
}
.welcome-modal form label span[data-name="mobile"]:after {
  bottom: 0;
}
.welcome-modal form .wpcf7-not-valid-tip {
  position: relative;
  bottom: -0.4rem;
  right: 0;
  color: #F00;
  text-align: right;
  font-family: 'New Order', sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
}
.welcome-modal form .wpcf7-not-valid-tip:before {
  content: '';
  position: absolute;
  top: -4.1rem;
  right: 0;
  background-image: url(../../img/alert-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.8rem;
  height: 1.8rem;
}
.welcome-modal form .wpcf7-not-valid-tip:after {
  content: none;
}
.welcome-modal form input:not([type="checkbox"]) {
  background: transparent;
  position: relative;
  display: block;
  width: 100%;
  color: #333;
  text-align: left;
  font-family: 'New Order', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  text-transform: initial;
  border: none;
  border-bottom: 0.1rem solid #C6A4EA;
  outline: none;
  padding: 2.6rem 0.8rem 1.8rem;
}
.welcome-modal form input:not([type="checkbox"])::placeholder {
  color: #333;
  text-align: left;
  font-family: 'New Order', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  text-transform: capitalize;
}
.welcome-modal form .ginput_container.error input:not([type="checkbox"]) {
  border-bottom: 0.1rem solid #F00;
}
.welcome-modal form .ginput_container.error input:not([type="checkbox"])::placeholder {
  color: #F00;
}
.welcome-modal form input[type='submit'] {
  cursor: pointer;
  max-width: 13.1rem;
  margin: 2.5rem auto 0;
  padding: 1.6rem 4rem;
  border-radius: 5rem;
  background: #5F249F;
  color: #FFF;
  font-family: 'New Order', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
}
.welcome-modal .wpcf7-response-output {
  display: none;
}
.welcome-modal #form-privacy-policy label {
  margin-left: 2.6rem;
  cursor: pointer;
}
.welcome-modal #form-privacy-policy label:before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  border: 0.1rem solid #C6A4EA;
  left: 0;
}
.welcome-modal #form-privacy-policy label:after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.1rem;
  position: absolute;
  background-color: #C6A4EA;
  left: 0.23rem;
  top: 0.23rem;
  opacity: 0;
}
.welcome-modal #form-privacy-policy label.active:after {
  opacity: 1;
}
.welcome-modal #form-privacy-policy input[type="checkbox"] + span {
  display: none;
}
.welcome-modal .gform_confirmation_wrapper,
.welcome-modal .success-modal {
  max-width: 26rem;
  margin: 4.6rem auto 9.9rem;
}
.welcome-modal .gform_confirmation_wrapper h2,
.welcome-modal .success-modal h2 {
  color: #5F249F;
  text-align: center;
  font-family: 'Gothiks Round', sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 6rem;
}
.welcome-modal .gform_confirmation_wrapper .close-btn,
.welcome-modal .success-modal .close-btn {
  max-width: 12rem;
  margin: 6.4rem auto 0;
  border-radius: 5rem;
  background: #5F249F;
  display: flex;
  padding: 1.6rem 4rem;
  align-items: flex-start;
  color: #FFF;
  font-family: 'New Order', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .welcome-modal .close {
    top: 2.4rem;
    right: 2.4rem;
    width: 3.8rem;
    height: 3.8rem;
  }
  .welcome-modal .content {
    border-radius: 1rem;
    top: 0;
    right: 0;
    width: 100%;
    overflow: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.4rem;
  }
  .welcome-modal .inputs {
    margin: 0 0 1rem;
  }
  .welcome-modal h2 {
    margin-bottom: 0.4rem;
    margin-top: 7.8rem;
    line-height: normal;
  }
  .welcome-modal p {
    font-size: 1.7rem;
    line-height: 1.41;
  }
  .welcome-modal form .wpcf7-spinner {
    width: 24px !important;
    margin: 0.1rem auto 0 !important;
  }
  .welcome-modal form .wpcf7-response-output {
    font-size: 0.8rem;
    line-height: 1rem;
  }
  .welcome-modal form .wpcf7-not-valid-tip {
    bottom: -0.4rem;
    font-size: 0.8rem;
    line-height: 1rem;
  }
  .welcome-modal form .wpcf7-not-valid-tip:before {
    top: -2.6rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  .welcome-modal form div.checkbox {
    margin-top: 1.2rem;
  }
  .welcome-modal form div.checkbox p,
  .welcome-modal form div.checkbox a {
    font-size: 1.3rem;
  }
  .welcome-modal form div.checkbox > p:not(.checkbox-text) {
    max-width: 3rem;
  }
  .welcome-modal form div.checkbox label span.checkbox {
    width: 2rem;
  }
  .welcome-modal form input:not([type="checkbox"]) {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 3rem 1rem 1rem;
  }
  .welcome-modal form input:not([type="checkbox"])::placeholder {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .welcome-modal form label span:after {
    bottom: 2rem;
  }
  .welcome-modal form label span:not([data-name="mobile"]) input[aria-invalid="false"] {
    padding-bottom: 1rem;
  }
  .welcome-modal form input[type='submit'] {
    margin: 2.4rem auto 0;
    padding: 1.6rem 4rem;
    border-radius: 5rem;
    line-height: 1.25;
    text-align: center;
  }
  .welcome-modal #form-privacy-policy label:before {
    width: 1.2rem;
    height: 1.2rem;
    left: -1.3rem;
  }
  .welcome-modal #form-privacy-policy label:after {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.2rem;
    left: -1.15rem;
  }
  .welcome-modal .success-modal h2 {
    font-size: 4rem;
    line-height: 1;
  }
  .welcome-modal .success-modal .close-btn {
    max-width: 7rem;
    margin: 1rem auto 0;
    padding: 1rem 1rem;
    border-radius: 5rem;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    display: block;
  }
}
.footer {
  background: var(--Dark-Purple, #1E0B4D);
}
.footer .container {
  padding-top: 44px;
  padding-bottom: 30px;
}
.footer .divider {
  margin: 33px 0 26px;
  width: 100%;
  height: 2px;
  background: var(--Primary-Purple, #4A0D60);
}
.footer-top {
  display: flex;
  justify-content: space-between;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer .links-block {
  display: flex;
  flex-direction: column;
  grid-gap: 26px;
}
.footer .link {
  margin-top: 13px;
  color: #FFFFFF;
  font-family: 'New Order', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer .link a {
  color: #FFFFFF;
  font-family: 'New Order', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
}
.footer .links {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--4, 32px);
}
.footer .links a {
  color: #FFFFFF;
  font-family: 'New Order', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer .socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--3, 24px);
}
.footer .socials a {
  display: block;
}
.footer .help-info {
  margin-top: 42px;
  color: #ABA3C9;
  text-align: center;
  font-family: 'New Order', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer .help-info a {
  color: var(--Grey-Blue, #ECF0F9);
  font-family: 'New Order', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer .rights {
  color: var(--Grey-Blue, #ECF0F9);
  font-family: 'New Order', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  flex-direction: column;
  grid-gap: 4px;
  margin-right: 14px;
}
.footer .find-doctor-btn {
  position: fixed;
  bottom: 18rem;
  right: 6.2rem;
  z-index: 1000;
  transition: bottom 300ms ease-out;
}
.footer .find-doctor-btn a img {
  width: 2rem;
  height: 2rem;
}
.footer .find-doctor-btn .text {
  width: 20rem;
  background-color: #2D114C;
  z-index: 1;
  position: relative;
  display: flex;
  height: 5.4rem;
  padding: var(--2, 1.6rem) var(--3, 3.2rem);
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  border-radius: 5rem;
  color: var(--text-button-label, #FFF);
  text-align: center;
  font-family: 'New Order', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.028rem;
  grid-gap: 1.3rem;
}
.footer .find-doctor-hide {
  bottom: -6rem;
}
@media (max-width: 991px) {
  .footer .links-block {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer .links {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer .links-block {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-5, 2rem);
  }
  .footer .links {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-5, 2rem);
    width: calc(50% - 1rem);
  }
  .footer .link {
    margin-top: 1.6rem;
    width: 100%;
    text-align: center;
  }
  .footer .divider {
    margin: 3.2rem 0;
  }
  .footer .pharmLogo {
    margin-top: 3.6rem;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  .footer .socials {
    margin-top: 3.2rem;
  }
  .footer .help-info {
    margin-top: 3.2rem;
  }
  .footer .help-info br {
    display: none;
  }
  .footer .find-doctor-btn {
    bottom: 16rem;
    right: 1.5rem;
  }
  .footer .find-doctor-btn.find-doctor-hide {
    bottom: -6rem;
  }
}
.main {
  margin-top: 12rem;
  padding-top: 3.8rem;
  overflow-x: hidden;
}
.hero {
  position: relative;
  margin: 0 auto 5.8rem;
  width: 100%;
  max-width: 131.6rem;
  height: 60rem;
  background-position: center;
  background-size: cover;
  border-radius: var(--border-radius-rounded, 3.2rem);
  padding: 0 0 0;
}
.hero .video-desktop {
  border-radius: var(--border-radius-rounded, 3.2rem);
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
}
.hero .video-desktop video {
  width: 100%;
  position: absolute;
  transform-origin: 46rem 25rem;
  transform: scale(1.2);
}
.hero .video-mob {
  display: none;
}
.hero .subtitle {
  color: #FFF;
  font-family: 'New Order', sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  width: 33.7rem;
}
.hero .container {
  position: relative;
  z-index: 5;
  padding-top: 11.2rem;
}
.hero h1 {
  width: 46.3rem;
  color: #FFF;
  font-family: 'Gothiks Round', sans-serif;
  font-size: 9.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 91.667%;
  text-transform: capitalize;
  padding-bottom: 16.8rem;
}
.hero h1 span {
  text-transform: lowercase;
}
.hero .bottom-block {
  position: absolute;
  bottom: -0.7rem;
  right: -0.7rem;
  display: flex;
  width: 45rem;
  height: 8.2rem;
  padding: 1.2rem 3rem;
  align-items: center;
  gap: 8px;
  border-top-left-radius: var(--border-radius-rounded, 3.2rem);
  background: var(--surface-surface-primary, #F4F6FB);
}
.hero .bottom-block .img {
  position: absolute;
  top: -4.3rem;
  right: -3.9rem;
  width: 17.5rem;
}
.hero .bottom-block p {
  color: var(--text-headline, #5F249F);
  font-family: 'New Order', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.2rem;
  /* 137.5% */
  text-transform: uppercase;
}
.hero .bottom-block p span {
  color: var(--text-fpo, #F0F);
  font-family: 'New Order', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.2rem;
  text-transform: uppercase;
}
.brochure {
  max-width: 131.6rem;
  width: 100%;
  margin: 0 auto;
}
.brochure .container {
  padding: 0;
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius-rounded, 3.2rem);
  background: #FFF;
}
.brochure .container .img {
  width: 60%;
}
.brochure .container .img img {
  width: 100%;
  height: 100%;
}
.brochure .container h2 {
  color: var(--text-headline, #5F249F);
  font-family: 'Gothiks Round', sans-serif;
  font-size: 7.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 1.6rem;
}
.brochure .container p {
  color: var(--text-body, #333);
  font-family: 'New Order', sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 3.4rem;
}
.brochure .container a .text {
  width: 17.5rem;
}
.brochure .content {
  width: 50%;
  padding: 4.876rem 0;
}
.what {
  background-size: 72rem 65.8rem;
  background-repeat: no-repeat;
  background-position: top right;
  position: relative;
}
.what .content {
  max-width: 53.6rem;
  width: 100%;
  padding: 18.3rem 0;
  margin: 0 auto 0 0;
}
.what .anotation {
  position: absolute;
  right: 32rem;
  bottom: 5.9rem;
  width: 20.5rem;
  color: var(--text-body, #333);
  font-family: 'New Order', sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.what h2 {
  color: var(--text-headline, #5F249F);
  font-family: 'Gothiks Round', sans-serif;
  font-size: 7.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 1.8rem;
}
.what p {
  color: var(--text-body, #333);
  font-family: 'New Order', sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.8rem;
  margin-bottom: 2.8rem;
}
.what p.bold {
  color: var(--text-subhead, #5F249F);
  leading-trim: both;
  text-edge: cap;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}
.what p sup {
  position: absolute;
}
.what a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  align-self: stretch;
  color: var(--text-text-link, #5F249F);
  text-align: center;
  font-family: 'New Order', sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.032rem;
  text-transform: uppercase;
}
.what a:hover,
.what a:active {
  text-decoration: underline;
}
.what a img {
  width: 2.4rem;
  height: 2.4rem;
}
.what.happens {
  background-position: bottom left;
  padding-left: 70rem;
}
.what.happens p {
  font-weight: 500;
}
.what.happens p.bold {
  font-weight: bold;
}
.what.happens .res {
  margin: 2.8rem 0 0;
  font-family: 'New Order', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6rem;
  text-align: left;
  text-indent: -0.8rem;
  padding-left: 0.8rem;
  color: #000000;
}
.what.happens .content {
  padding: 13.9rem 0 11.9rem;
  margin: 0;
}
.bumps {
  background-color: var(--color-primary-bright-purple, #5F249F);
  background-size: 84rem;
  background-repeat: no-repeat;
  background-position: 63rem center;
  padding: 10.426rem 0;
}
.bumps .container {
  display: flex;
}
.bumps h2 {
  color: var(--text-headline, #00B5E2);
  font-family: 'Gothiks Round', sans-serif;
  font-size: 7.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 1.4rem;
}
.bumps p {
  color: var(--text-body, #FFF);
  font-family: 'New Order', sans-serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 4.696rem;
}
.bumps .content {
  width: 42%;
}
.bumps .buttons {
  grid-gap: 2rem;
}
.bumps .buttons a .text {
  background-color: #FFF;
  color: #4A0D60;
  width: 17.5rem;
}
.bumps .buttons a .text:hover,
.bumps .buttons a .text:active {
  background: #00B5E2;
}
.bumps .buttons a .bubble {
  background-color: #FFF;
}
@media (max-width: 991px) {
  .main {
    margin-top: 120px;
    padding-top: 0;
  }
  .main .hero {
    border-radius: 0;
    padding: 2.5rem 1rem 0;
    overflow: hidden;
  }
  .main .hero .container h1 {
    font-size: 6.4rem;
    line-height: 6.4rem;
  }
  .main .hero .bottom-block {
    right: -4.7rem;
  }
  .main .hero .bottom-block .img {
    width: 11.5rem;
    right: 1.5rem;
    width: 14.5rem;
  }
  .what {
    background-size: 39rem 36.8rem;
  }
  .what .content {
    padding: 5.3rem 0;
  }
  .what.happens {
    background-position: bottom left;
    padding-left: 34rem;
  }
  .what.happens .content {
    padding: 5.3rem 0;
  }
  .bumps {
    padding: 5.3rem 0;
    background-position: 35rem center;
  }
}
@media (max-width: 768px) {
  .main .hero {
    margin-bottom: 0;
    padding: 0 0;
  }
  .main .hero .video-mob {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 99.5%;
    position: absolute;
  }
  .main .hero .video-mob video {
    width: 100%;
    position: absolute;
    transform: scale(1);
  }
  .main .hero .video-desktop {
    display: none;
  }
  .main .hero .container {
    padding: 2.5rem 1.6rem;
  }
  .main .hero .container h1 {
    width: 100%;
    font-size: 4.95rem;
    line-height: 1;
  }
  .main .hero .bottom-block {
    right: -4.7rem;
    border-top-left-radius: 0;
    bottom: -23rem;
  }
  .main .hero .bottom-block .img {
    width: 11.5rem;
    right: 2.5rem;
  }
  .main .brochure {
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    background-color: #FFF;
  }
  .main .brochure .container {
    padding: 0 1.6rem;
    border-radius: 0;
    background-color: transparent;
  }
  .main .brochure .container .img {
    display: none;
  }
  .main .brochure .container .content {
    width: 100%;
    padding: 6.4rem 0 3.9rem;
  }
  .main .brochure .container .content h2 {
    font-size: 6rem;
    line-height: 6rem;
  }
  .main .brochure .container .content p {
    font-size: 1.7rem;
    line-height: 2.4rem;
    margin-bottom: 26.6rem;
  }
  .main .brochure .container .content .buttons {
    flex-direction: column;
    justify-content: center;
  }
  .main .brochure .container .content .buttons .text {
    background: var(--text-button-label, #5F249F);
    color: var(--surface-surface-button, #FFF);
    width: 34.2rem;
  }
  .main .brochure .container .content .buttons a:hover .text,
  .main .brochure .container .content .buttons a:active .text {
    background: #00B5E2;
  }
  .main .brochure .container .content .buttons .gooey-effect .bubble {
    background-color: var(--text-button-label, #5F249F);
  }
  .main .what {
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
  }
  .main .what .container .content {
    padding-top: 41.1rem;
    padding-bottom: 6.4rem;
  }
  .main .what .container .content h2 {
    font-size: 6rem;
    line-height: 6rem;
  }
  .main .what .container .content p {
    font-size: 1.7rem;
    line-height: 2.4rem;
  }
  .main .what.happens {
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    padding-left: 0;
  }
  .main .what.happens .container .content {
    padding-top: 0rem;
    padding-bottom: 41.1rem;
  }
  .main .what.happens .container .content h2 {
    font-size: 6rem;
    line-height: 6rem;
  }
  .main .what.happens .container .content p {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }
  .main .what.happens .container .content .res {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .main .what.happens .container .content .res br {
    display: none;
  }
  .main .bumps {
    padding: 4.8rem 0;
  }
  .main .bumps .container .content {
    width: auto;
  }
  .main .bumps .container .content h2 {
    font-size: 6rem;
    line-height: 6rem;
  }
  .main .bumps .container .content h2 br {
    display: none;
  }
  .main .bumps .container .content p {
    font-size: 1.7rem;
    line-height: 2.4rem;
  }
  .main .bumps .container .content .buttons {
    flex-direction: column;
  }
  .main .bumps .container .content .buttons .text {
    width: 34.2rem;
  }
}
/*# sourceMappingURL=home.css.map */