:root {
  --primary-company-color: #470A68;
  --primary-light-company-color: #CBC3E3;
  --secondary-company-color: #E0115F;
  --forgin-bridges-color: #A3DDF540;
  --thin-font-color: #3C4242;
  --uncheck-checkbox-border: #A7A9AC;
  --text-input-background-color: #F4F6F9;
  --text-input-placeholder-color: #AEBACC;
  --text-input-border-color: #D6DDE7;
  --telary-font-color: #58595B;
  --fpo-font-color: #1A3141;
  --footer-font-color: #EBEEF4;
  --thirdly-link-color: #467886;
}
* {
  box-sizing: border-box;
}
html {
  font-size: calc(10 / 1512 * 100vw);
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}
body {
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
h1,
h2 {
  font-size: 4.4rem;
  line-height: 5.5rem;
  color: var(--primary-company-color);
}
@media screen and (max-width: 768px) {
  h1,
  h2 {
    line-height: 4.84rem;
  }
}
p,
a {
  font-size: 1.8rem;
  line-height: 2.25rem;
}
input:not([type]),
input[type='text'],
input[type='email'] {
  font-family: 'Montserrat', sans-serif;
  outline: none;
  padding: 1rem 2.2rem;
  border-radius: 4.8rem;
  border: 0.1rem solid var(--text-input-border-color);
  background: var(--text-input-background-color);
  font-size: 1.6rem;
  line-height: 2.4rem;
}
input:not([type])::placeholder,
input[type='text']::placeholder,
input[type='email']::placeholder {
  color: var(--text-input-placeholder-color);
}
input[type='checkbox'] {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  outline: none;
  box-shadow: none;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
}
input[type='checkbox']::before,
input[type='checkbox']::after {
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
input[type='checkbox']::before {
  border-radius: inherit;
  border: 2px solid #A7A9AC;
  width: 100%;
  height: 100%;
}
input[type='checkbox']::after {
  top: 0.5rem;
  left: 0.35rem;
  width: 0;
  height: 1rem;
  background-image: url('../../img/svg/white-check-mark.svg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
input[type='checkbox']:checked::before,
input[type='checkbox']:hover::before {
  border-color: var(--secondary-company-color);
  background-color: var(--secondary-company-color);
}
input[type='checkbox']:checked::after,
input[type='checkbox']:hover::after {
  width: 1.4rem;
}
input[type='checkbox'] + label {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: var(--thin-font-color);
}
input[type='radio'] {
  margin: 0;
}
u {
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
}
button {
  border: none;
}
label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: var(--thin-font-color);
}
br.mobile {
  display: none;
}
@media (max-width: 768px) {
  br.mobile {
    display: initial;
  }
}
@media (max-width: 768px) {
  br.desktop {
    display: none;
  }
}
@keyframes bounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.4rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes submit-button-bounce {
  0% {
    background-position: 13.1rem 1.2rem;
  }
  50% {
    background-position: 13.5rem 1.2rem;
  }
  100% {
    background-position: 13.1rem 1.2rem;
  }
}
main {
  background-image: url(../../img/landing_background.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #F4ECF5;
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  main {
    background-image: url(../../img/mobile_background.webp);
    padding-bottom: 6rem;
  }
}
main header {
  padding-top: 4.8rem;
}
main header .horizontal-bookmark {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 45.9rem;
  height: 4rem;
  background: var(--secondary-company-color);
}
@media screen and (max-width: 768px) {
  main header .horizontal-bookmark {
    width: 24.1rem;
  }
}
main header .horizontal-bookmark span {
  display: inline-block;
  width: 27.7rem;
  font-size: 1.8rem;
  line-height: 2.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: white;
}
@media screen and (max-width: 768px) {
  main header .horizontal-bookmark span {
    width: 19.2rem;
    text-align: left;
  }
}
main header .header {
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  main header .header {
    text-align: center;
  }
}
main header .header .logo {
  display: inline-block;
  width: 26.3rem;
  height: 8.4rem;
}
main header .header .logo img {
  width: 26.3rem;
  height: 8.4rem;
}
main #introduction {
  margin-top: 7.1rem;
}
@media screen and (max-width: 768px) {
  main #introduction {
    margin-top: 13.4rem;
  }
}
main #introduction h1 {
  font-weight: 700;
  text-align: center;
}
main #introduction h2 {
  font-size: 2.4rem;
  line-height: 3rem;
  text-align: center;
}
main #introduction h2 br {
  display: none;
}
@media screen and (max-width: 768px) {
  main #introduction h2 br {
    display: unset;
  }
}
@media screen and (max-width: 768px) {
  main #introduction h2 {
    line-height: 3.6rem;
  }
}
main #introduction > h2 {
  margin-top: 0.5rem;
  color: var(--secondary-company-color);
}
@media screen and (max-width: 768px) {
  main #introduction > h2 {
    margin-top: 2.2rem;
  }
}
main #introduction > p {
  margin: 3.3rem auto 0 auto;
  width: 91rem;
  font-size: 2rem;
  text-align: center;
  color: var(--primary-company-color);
}
@media screen and (max-width: 768px) {
  main #introduction > p {
    width: 100%;
    margin-top: 3.3rem;
    line-height: 3rem;
  }
  main #introduction > p br {
    display: none;
  }
}
main #introduction .blocks {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 4.9rem;
}
@media screen and (max-width: 768px) {
  main #introduction .blocks {
    justify-content: unset;
    gap: 2.8rem;
    margin-top: 4.2rem;
  }
}
main #introduction .blocks .block {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding-bottom: 2.9rem;
  max-width: 100%;
  width: 45.8rem;
  height: 34.3rem;
  border-radius: 1.2rem;
  background: white;
  box-shadow: 0 0.4rem 4.4rem 0 #0000001A;
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block {
    padding-bottom: 2rem;
    height: unset;
    box-shadow: 0 0.4rem 4.4rem 0 #00000040;
  }
}
main #introduction .blocks .block:first-of-type {
  padding-right: 6.4rem;
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block:first-of-type {
    padding-right: unset;
  }
}
main #introduction .blocks .block .horizontal-bookmark {
  display: flex;
  align-items: center;
  margin-top: 3.1rem;
  width: 33.3rem;
  height: 4.8rem;
  background: var(--primary-company-color);
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block .horizontal-bookmark {
    margin-top: 2rem;
    width: 24.6rem;
  }
}
main #introduction .blocks .block .horizontal-bookmark h2 {
  margin-left: 3.1rem;
  font-weight: 700;
  line-height: 3rem;
  text-align: start;
  color: white;
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block .horizontal-bookmark h2 {
    margin-left: unset;
    width: 100%;
    text-align: center;
  }
}
main #introduction .blocks .block .description {
  margin: 2rem 4.1rem 0 3.1rem;
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block .description {
    margin: 2rem 2.34rem 0 2.26rem;
  }
}
main #introduction .blocks .block .description p {
  color: var(--telary-font-color);
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block .description p {
    padding-right: 1.7rem;
    line-height: 2.7rem;
  }
}
main #introduction .blocks .block .description p:not(:first-child) {
  margin-top: 0.8rem;
}
main #introduction .blocks .block .about-links {
  margin: auto 0 0 3.1rem;
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block .about-links {
    margin: 0 2.34rem 0 2.26rem;
  }
}
main #introduction .blocks .block .stay-links {
  margin: auto 0 0 3.1rem;
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block .stay-links {
    margin: 1.9rem 2.34rem 0 2.26rem;
  }
}
main #introduction .blocks .block a {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block a {
    margin-top: 1.9rem;
    width: 100%;
    justify-content: space-between;
  }
}
main #introduction .blocks .block a h3 {
  position: relative;
  font-weight: 600;
  height: 1em;
  line-height: 1em;
  color: var(--secondary-company-color);
}
@media screen and (max-width: 768px) {
  main #introduction .blocks .block a h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2rem;
    text-align: left;
  }
}
main #introduction .blocks .block a h3::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0;
  overflow: hidden;
  text-wrap: nowrap;
  color: var(--primary-company-color);
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0.3s;
}
main #introduction .blocks .block a::before,
main #introduction .blocks .block a::after {
  content: "";
  display: inline-block;
  margin-left: 1rem;
  height: 3rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0s;
}
main #introduction .blocks .block a::after {
  width: 3rem;
  background-image: url("../../img/svg/secondary-icon-front.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
}
main #introduction .blocks .block a::before {
  position: absolute;
  left: calc(100% - 4rem);
  top: 0;
  z-index: 1;
  width: 0;
  background-image: url("../../img/svg/primary-icon-front.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
}
main #introduction .blocks .block a svg,
main #introduction .blocks .block a img {
  margin-left: 1rem;
  width: 3rem;
  height: 3rem;
  fill: var(--secondary-company-color);
}
main #introduction .blocks .block a:hover h3::before {
  width: 100%;
  transition-delay: 0s;
}
main #introduction .blocks .block a:hover::before,
main #introduction .blocks .block a:hover::after {
  animation: bounce 1s ease-in-out;
}
main #introduction .blocks .block a:hover::before {
  width: 3rem;
  transition-delay: 0.3s;
}
main #forging-bridges {
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main #forging-bridges {
    margin-top: 12.4rem;
  }
}
@media screen and (max-width: 768px) {
  main #forging-bridges h2 {
    font-size: 3.9rem;
    font-weight: 400;
    line-height: 4.29rem;
  }
}
main #forging-bridges p {
  margin-top: 2rem;
  font-size: 2.4rem;
  line-height: 3rem;
  color: var(--primary-company-color);
}
@media screen and (max-width: 768px) {
  main #forging-bridges p {
    line-height: 3.6rem;
  }
  main #forging-bridges p br {
    display: none;
  }
}
main #forging-bridges div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem auto 0 auto;
  width: 93.7rem;
  max-width: 100%;
  height: 29.5rem;
  border-radius: 1.2rem;
  background: var(--forgin-bridges-color);
}
@media screen and (max-width: 768px) {
  main #forging-bridges div {
    margin-top: 5rem;
    width: unset;
    height: unset;
    border: none;
    background: transparent;
  }
}
main #forging-bridges div img {
  margin-top: 4rem;
  width: 26rem;
  height: 7rem;
}
@media screen and (max-width: 768px) {
  main #forging-bridges div img {
    margin-top: 0;
    width: 19.297rem;
    height: 5.197rem;
  }
}
main #forging-bridges div .button {
  margin-top: 4.1rem;
}
@media screen and (max-width: 768px) {
  main #forging-bridges div .button {
    margin-top: 3.3rem;
    padding: 1.1rem 2.4rem;
  }
  main #forging-bridges div .button span {
    width: 25.9rem;
    text-align: center;
  }
}
main #forging-bridges div p {
  font-weight: 700;
  color: var(--secondary-company-color);
}
@media screen and (max-width: 768px) {
  main #forging-bridges div p {
    margin-top: 3.3rem;
  }
}
main #forging-bridges div p a {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary-company-color);
}
main #forging-bridges div a img {
  width: 3rem;
  height: 3rem;
  margin: 0;
}
main #sign-up {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  main #sign-up {
    margin-top: 17.6rem;
  }
}
main #sign-up form {
  margin: 0 auto;
  padding: 4.3rem 7.4rem;
  width: 93.7rem;
  background: white;
  border-radius: 1.2rem;
  box-shadow: 0px 0.4rem 4.4rem 0px #0000001A;
}
@media screen and (max-width: 768px) {
  main #sign-up form {
    padding: 0;
  }
}
main #sign-up form ul {
  margin-top: 3rem;
}
main #sign-up form ul li {
  display: flex;
  flex-direction: row;
  gap: 1.3rem;
  position: relative;
}
main #sign-up form ul li input[type="radio"] {
  opacity: 0;
  position: relative;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 0.4rem;
  cursor: pointer;
}
main #sign-up form ul li input[type="radio"] + label::before {
  content: '';
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  border: 0.2rem solid var(--uncheck-checkbox-border);
  z-index: 1;
}
main #sign-up form ul li input[type="radio"] + label > h3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
  color: var(--primary-company-color);
}
main #sign-up form ul li input[type="radio"] + label > p {
  margin-top: 1rem;
  padding-left: 0.2rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: var(--thin-font-color);
}
main #sign-up form ul li input[type="radio"] + label > p:not(:first-of-type) {
  margin-top: 0.8rem;
}
main #sign-up form ul li .request-sales > p {
  margin-top: 0.6rem;
}
main #sign-up form ul li:not(:first-child) {
  margin-top: 1.5rem;
}
main #sign-up form .email-input {
  margin-top: 3rem;
}
main #sign-up form .email-input label {
  width: 74.4rem;
}
main #sign-up form .email-input label input {
  margin-top: 0.6rem;
  width: 74.4rem;
}
main #sign-up form .select-one {
  margin-top: 3rem;
}
main #sign-up form .select-one .checkbox {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
main #sign-up form button[type="submit"] {
  margin-top: 3rem;
}
main #sign-up form .description {
  margin-top: 3rem;
  width: 76.4rem;
}
main #sign-up form .description p {
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: var(--thin-font-color);
}
main #sign-up form .description p:not(:first-of-type) {
  margin-top: 1.8rem;
}
main #sign-up form input[type="radio"] {
  opacity: 0;
  position: relative;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 0.4rem;
  cursor: pointer;
}
main #sign-up form input[type="radio"] + label::before {
  content: '';
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  border: 0.2rem solid var(--uncheck-checkbox-border);
  z-index: 1;
}
main #sign-up form input[type="radio"] + label > h3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
  color: var(--primary-company-color);
}
main #sign-up form input[type="radio"] + label > p {
  margin-top: 1rem;
  padding-left: 0.2rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: var(--thin-font-color);
}
main #sign-up form input[type="radio"] + label > p:not(:first-of-type) {
  margin-top: 0.8rem;
}
main #sign-up form input[type="radio"]:checked + label > h3,
main #sign-up form input[type="radio"]:checked + span > h3 {
  color: var(--secondary-company-color);
}
main #sign-up form .input-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--thin-font-color);
}
main #sign-up .form-wrapper form {
  margin: 0 auto;
  padding: 4.3rem 7.4rem;
  width: 93.7rem;
  max-width: 100%;
  background: white;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 4.4rem 0 #0000001A;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form {
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
}
main #sign-up .form-wrapper form h2 {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form h2 {
    line-height: 5.5rem;
  }
}
main #sign-up .form-wrapper form > div > p:not(.input-title) {
  margin-top: 1rem;
}
main #sign-up .form-wrapper form > div > div {
  display: flex;
}
main #sign-up .form-wrapper form > div > div > p > label {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  position: relative;
}
main #sign-up .form-wrapper form > div > div > p > label input[type="radio"] {
  opacity: 0;
  position: relative;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 0.4rem;
  cursor: pointer;
}
main #sign-up .form-wrapper form > div > div > p > label input[type="radio"] + label::before {
  content: '';
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  border: 0.2rem solid var(--uncheck-checkbox-border);
  z-index: 1;
}
main #sign-up .form-wrapper form > div > div > p > label input[type="radio"] + label > h3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
  color: var(--primary-company-color);
}
main #sign-up .form-wrapper form > div > div > p > label input[type="radio"] + label > p {
  margin-top: 1rem;
  padding-left: 0.2rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: var(--thin-font-color);
}
main #sign-up .form-wrapper form > div > div > p > label input[type="radio"] + label > p:not(:first-of-type) {
  margin-top: 0.8rem;
}
main #sign-up .form-wrapper form > div > div > p > label input[type="radio"]:checked + label > h3,
main #sign-up .form-wrapper form > div > div > p > label input[type="radio"]:checked + span > h3,
main #sign-up .form-wrapper form > div > div > p > label:has(input[type="radio"]:checked) > h3 {
  color: var(--secondary-company-color);
}
main #sign-up .form-wrapper form > div > div > p > label .request-sales > p {
  margin-top: 0.6rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form > div > div > p > label .request-sales > p br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form > div > div > p > label .request-sales > p {
    line-height: 2.4rem;
  }
}
main #sign-up .form-wrapper form > div > div > p > label:not(:first-child) {
  margin-top: 1.5rem;
}
main #sign-up .form-wrapper form > div > div > p > label .wpcf7-list-item {
  margin: 0;
}
main #sign-up .form-wrapper form > div > div > p > label .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  position: absolute;
  width: 40rem;
  bottom: -1.5rem;
  left: -0.5rem;
}
main #sign-up .form-wrapper form > div > div h3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
  color: var(--primary-company-color);
}
main #sign-up .form-wrapper form > div > div:has(input[type="radio"]:checked) h3 {
  color: var(--secondary-company-color);
}
main #sign-up .form-wrapper form .stay-updated label,
main #sign-up .form-wrapper form .request-sales label {
  margin-right: 1.6rem;
  gap: unset;
  cursor: pointer;
}
main #sign-up .form-wrapper form .stay-updated > p,
main #sign-up .form-wrapper form .request-sales > p {
  margin-left: 3.6rem;
}
main #sign-up .form-wrapper form .stay-updated .wpcf7-list-item.first.last,
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item.first.last {
  display: flex;
  flex-direction: row;
}
main #sign-up .form-wrapper form .stay-updated .wpcf7-list-item.first.last .wpcf7-list-item-label,
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item.first.last .wpcf7-list-item-label {
  margin-left: 1.3rem;
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
}
main #sign-up .form-wrapper form .stay-updated {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .stay-updated {
    margin-bottom: 1.7rem;
  }
}
main #sign-up .form-wrapper form .stay-updated .wpcf7-list-item-label {
  color: var(--secondary-company-color);
}
main #sign-up .form-wrapper form .request-sales {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .request-sales {
    margin-bottom: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .request-sales p br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .request-sales p {
    line-height: 2.4rem;
  }
}
main #sign-up .form-wrapper form .request-sales input[type="checkbox"] {
  flex-shrink: 0;
  width: 2.2rem;
  visibility: hidden;
}
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item {
  position: relative;
  align-items: center;
  height: 1.7rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .request-sales .wpcf7-list-item {
    height: unset;
  }
}
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item::before,
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item::after {
  position: absolute;
  content: '';
  display: block;
  border-radius: 50%;
}
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item::before {
  top: 0;
  left: 0;
  border: 0.2rem solid var(--uncheck-checkbox-border);
  width: 2.2rem;
  height: 2.2rem;
  background-color: white;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item::after {
  top: 0.6rem;
  left: 0.4rem;
  width: 0;
  height: 1.3rem;
  background-image: url('../../img/svg/white-check-mark.svg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item:has(input[type="checkbox"]:checked)::before,
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item:hover::before {
  border-color: var(--primary-company-color);
  background-color: var(--primary-company-color);
}
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item:has(input[type="checkbox"]:checked)::after,
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item:hover::after {
  width: 1.8rem;
}
main #sign-up .form-wrapper form .request-sales .wpcf7-list-item-label {
  color: var(--primary-company-color);
}
main #sign-up .form-wrapper form .row-inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .row-inputs {
    gap: 1.6rem;
  }
}
main #sign-up .form-wrapper form .row-inputs > div {
  display: flex;
  max-width: 100%;
  flex-direction: column;
}
main #sign-up .form-wrapper form .row-inputs > div h3 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--thin-font-color);
}
main #sign-up .form-wrapper form .row-inputs > div label {
  max-width: 100%;
  width: 36.2rem;
  gap: unset;
}
main #sign-up .form-wrapper form .row-inputs > div label .wpcf7-form-control-wrap {
  max-width: 100%;
}
main #sign-up .form-wrapper form .row-inputs > div label .wpcf7-form-control-wrap input {
  margin-top: 0.6rem;
  width: 36.2rem;
  max-width: 100%;
}
main #sign-up .form-wrapper form .row-inputs .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  position: absolute;
  width: 40rem;
  bottom: -2.5rem;
  left: 0;
}
main #sign-up .form-wrapper form .email-input {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .email-input {
    margin-top: 1.6rem;
  }
}
main #sign-up .form-wrapper form .email-input > P {
  padding-left: unset;
  margin: 0;
}
main #sign-up .form-wrapper form .email-input h3 {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--thin-font-color);
}
main #sign-up .form-wrapper form .email-input input {
  margin-top: 0.6rem;
  width: 74.4rem;
  max-width: 100%;
}
main #sign-up .form-wrapper form .email-input .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  position: absolute;
  width: 40rem;
  bottom: -3.5rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form #location-npi-inputs {
    margin-top: 1.6rem;
  }
}
main #sign-up .form-wrapper form .select-one {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .select-one {
    margin-top: 4.2rem;
  }
}
main #sign-up .form-wrapper form .checkboxes {
  display: grid;
  grid-template-columns: 17.5rem 19.5rem 24.1rem;
  align-items: flex-start;
  column-gap: 2.9rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .checkboxes {
    grid-template-columns: 100%;
  }
}
main #sign-up .form-wrapper form .checkboxes input[type="radio"] {
  flex-shrink: 0;
}
main #sign-up .form-wrapper form .checkboxes .wpcf7-list-item {
  margin: 0;
}
main #sign-up .form-wrapper form .checkboxes .wpcf7-list-item label {
  display: flex;
  flex-direction: row;
}
main #sign-up .form-wrapper form .checkboxes .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .checkboxes .wpcf7-list-item label .wpcf7-list-item-label {
    max-width: 31.2rem;
  }
}
main #sign-up .form-wrapper form .checkboxes .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
}
main #sign-up .form-wrapper form .checkboxes .wpcf7-list-item label .wpcf7-list-item-label span {
  white-space: nowrap;
}
main #sign-up .form-wrapper form .checkboxes > h3 {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--thin-font-color);
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .checkboxes > h3 {
    margin-bottom: 1.7rem;
  }
}
main #sign-up .form-wrapper form .checkboxes label span {
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: var(--thin-font-color);
  padding-left: 1.1rem;
}
main #sign-up .form-wrapper form .checkboxes input[type="radio"] {
  margin-top: 0;
}
main #sign-up .form-wrapper form .checkboxes .checkbox .wpcf7-not-valid-tip {
  height: 0;
  overflow: hidden;
}
main #sign-up .form-wrapper form .checkboxes + p .wpcf7-not-valid-tip {
  display: none;
}
main #sign-up .form-wrapper form .checkboxes:has( .wpcf7-not-valid-tip) + p {
  margin-top: 0.6rem;
}
main #sign-up .form-wrapper form .checkboxes:has( .wpcf7-not-valid-tip) + p .wpcf7-not-valid-tip {
  display: block;
}
main #sign-up .form-wrapper form .checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
main #sign-up .form-wrapper form .checkbox .wpcf7-list-item {
  vertical-align: top;
}
main #sign-up .form-wrapper form .checkbox label {
  cursor: pointer;
}
main #sign-up .form-wrapper form .checkbox label input[type="radio"] + span::before,
main #sign-up .form-wrapper form .checkbox label input[type="radio"] + span::after {
  content: '';
  display: block !important;
  position: absolute;
  border-radius: 50%;
}
main #sign-up .form-wrapper form .checkbox label input[type="radio"] + span::before {
  top: 0;
  left: 0;
  border: 0.2rem solid var(--uncheck-checkbox-border);
  width: 2.2rem;
  height: 2.2rem;
  background-color: white;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
main #sign-up .form-wrapper form .checkbox label input[type="radio"] + span::after {
  top: 0.6rem;
  left: 0.4rem;
  width: 0;
  height: 1.3rem;
  background-image: url('../../img/svg/white-check-mark.svg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
main #sign-up .form-wrapper form .checkbox label input[type="radio"]:checked + span::before,
main #sign-up .form-wrapper form .checkbox label input[type="radio"]:hover + span::before {
  border-color: var(--secondary-company-color);
  background-color: var(--secondary-company-color);
}
main #sign-up .form-wrapper form .checkbox label input[type="radio"]:checked + span::after,
main #sign-up .form-wrapper form .checkbox label input[type="radio"]:hover + span::after {
  width: 1.8rem;
}
main #sign-up .form-wrapper form .checkbox:has( input[name="agreement[]"]) .wpcf7-not-valid-tip {
  display: none;
}
main #sign-up .form-wrapper form .checkbox:has( input[name="agreement[]"]):has( .wpcf7-form-control-wrap .wpcf7-not-valid-tip) > p > .wpcf7-not-valid-tip {
  display: block;
}
main #sign-up .form-wrapper form input[type="submit"] {
  text-align: left;
  margin-top: 6rem;
  width: 20.1rem;
  height: 5.4rem;
  background-image: url(../../img/icon-arrow-w.webp);
  background-repeat: no-repeat;
  background-position: 13.1rem 1.2rem;
  background-size: 3rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
main #sign-up .form-wrapper form input[type="submit"]:disabled {
  background-color: #E0115F40;
}
main #sign-up .form-wrapper form input[type="submit"]:not(:disabled):hover {
  background-color: var(--primary-company-color);
  animation: submit-button-bounce 1s linear;
}
main #sign-up .form-wrapper form .description {
  margin-top: 3rem;
  width: 78.6rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .description {
    margin-top: 4.2rem;
    height: unset;
  }
}
main #sign-up .form-wrapper form .description p {
  padding-left: 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: var(--thin-font-color);
}
main #sign-up .form-wrapper form .description p:not(:first-of-type) {
  margin-top: 1.6rem;
}
main #sign-up .form-wrapper form .description p a {
  font-size: inherit;
  text-decoration: underline;
}
main #sign-up .form-wrapper form .description .checkbox {
  margin-top: 1.6rem;
}
main #sign-up .form-wrapper form .description .checkbox label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.1rem;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .description .checkbox label {
    align-items: flex-start;
  }
}
main #sign-up .form-wrapper form .description .checkbox label > br {
  display: none;
}
main #sign-up .form-wrapper form .description .checkbox label input[type='checkbox'] {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  main #sign-up .form-wrapper form .description .checkbox label input[type='checkbox'] {
    margin-top: 0.4rem;
  }
}
main #sign-up .form-wrapper form .description .checkbox label .wpcf7-list-item-label {
  display: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
  text-align: left;
}
main #sign-up .form-wrapper form .description .checkbox label span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: calc(18em/14);
  color: var(--thin-font-color);
}
main #sign-up .form-wrapper form .description .wpcf7-list-item.first.last {
  margin: 0;
}
main #sign-up .form-wrapper form input[type="radio"] {
  opacity: 0;
  position: relative;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 0.4rem;
  cursor: pointer;
}
main #sign-up .form-wrapper form input[type="radio"] + label::before {
  content: '';
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  border: 0.2rem solid var(--uncheck-checkbox-border);
  z-index: 1;
}
main #sign-up .form-wrapper form input[type="radio"] + label > h3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
  color: var(--primary-company-color);
}
main #sign-up .form-wrapper form input[type="radio"] + label > p {
  margin-top: 1rem;
  padding-left: 0.2rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: var(--thin-font-color);
}
main #sign-up .form-wrapper form input[type="radio"] + label > p:not(:first-of-type) {
  margin-top: 0.8rem;
}
main #sign-up .form-wrapper form input[type="radio"]:checked + label::before,
main #sign-up .form-wrapper form input[type="radio"]:checked + span::before,
main #sign-up .form-wrapper form input[type="radio"]:checked + label::after,
main #sign-up .form-wrapper form input[type="radio"]:checked + span::after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 0;
}
main #sign-up .form-wrapper form input[type="radio"]:checked + label::before,
main #sign-up .form-wrapper form input[type="radio"]:checked + span::before {
  top: 0.4rem;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  background-color: var(--secondary-company-color);
  z-index: 1;
}
main #sign-up .form-wrapper form input[type="radio"]:checked + label::after,
main #sign-up .form-wrapper form input[type="radio"]:checked + span::after {
  top: 0.845rem;
  left: 0.345rem;
  width: 1.2rem;
  height: 0.9rem;
  background-image: url('../../img/svg/white-check-mark.svg');
  background-size: 100% 100%;
  z-index: 1;
}
main #sign-up .form-wrapper form input[type="radio"]:checked + label > h3,
main #sign-up .form-wrapper form input[type="radio"]:checked + span > h3 {
  color: var(--secondary-company-color);
}
main #sign-up .form-wrapper form #learning-interests-fields {
  margin-top: 3.5rem;
}
main #sign-up .form-wrapper form #learning-interests-fields p {
  padding: 0;
}
main #sign-up .form-wrapper form #learning-interests-fields p .wpcf7-list-item {
  display: block;
}
main #sign-up .form-wrapper form #learning-interests-fields p .wpcf7-list-item:not(:first-of-type) {
  margin-top: 0.6rem;
}
main #sign-up .form-wrapper form #learning-interests-fields p .wpcf7-list-item label {
  display: inline-flex;
  flex-direction: row;
  gap: 1.3rem;
}
main #sign-up .form-wrapper form #learning-interests-fields p .wpcf7-list-item label input {
  flex-shrink: 0;
  margin-top: 0.3rem;
}
main #sign-up .form-wrapper form #learning-interests-fields p .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: calc(4em/3);
  color: var(--thin-font-color);
}
main #sign-up .form-wrapper form #learning-interests-fields label {
  font-weight: normal;
  cursor: pointer;
}
main #sign-up .form-wrapper form #currently-on-treatment-fields {
  margin-top: 3.5rem;
}
main #sign-up .form-wrapper form #is-on-attruby-fields {
  margin-top: 3.5rem;
}
main #sign-up .form-wrapper form .wpcf7-spinner {
  display: none;
}
main #sign-up .form-wrapper form .screen-reader-response {
  display: none;
}
main #sign-up .form-wrapper form .wpcf7-response-output {
  display: none;
}
main #sign-up .form-wrapper form .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  max-width: 100%;
}
main #sign-up .form-wrapper form .wpcf7-list-item {
  margin: 0;
}
main #sign-up .form-wrapper form .wpcf7-not-valid-tip {
  display: none !important;
}
main #sign-up .form-wrapper form .input-error {
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.5em !important;
  color: #E0115F !important;
}
main #information {
  margin-top: 7.4rem;
}
@media screen and (max-width: 768px) {
  main #information {
    margin-top: 10rem;
  }
}
main #information .terms p {
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: var(--thin-font-color);
}
main #information .terms p:not(:first-of-type) {
  margin-top: 1rem;
}
main #information .fpo {
  position: relative;
  margin-top: 2rem;
  width: 112.8rem;
  max-width: 100%;
  color: var(--fpo-font-color);
}
@media screen and (max-width: 768px) {
  main #information .fpo {
    height: unset;
  }
}
main #information .fpo h2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16rem;
  line-height: 20rem;
  color: var(--secondary-company-color);
  opacity: 30%;
}
main #information .fpo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.25rem;
  text-transform: uppercase;
}
main #information .fpo h3:first-child {
  text-transform: none;
}
main #information .fpo h3:first-of-type ~ p {
  margin-top: 0.7rem;
}
main #information .fpo h3:not(:first-of-type) {
  margin-top: 2.7rem;
}
main #information .fpo h3:not(:first-of-type) ~ p {
  margin-top: 1rem;
}
main #information .fpo h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.25rem;
  margin-top: 1rem;
}
main #information .fpo a {
  text-decoration: underline;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
main #information .fpo a:hover {
  color: var(--secondary-company-color);
}
main #information .fpo ul {
  list-style: disc inside;
}
main #information .fpo ul li {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 2.25rem;
}
main #information .fpo div {
  margin-top: 1rem;
}
.isi-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  max-height: 100%;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out, bottom 1s ease-in-out;
}
.isi-panel.active .isi-toggle .active {
  display: none;
}
@media screen and (max-width: 768px) {
  .isi-panel.active .isi-content-container {
    padding: 2rem 1.2rem calc(2rem + 130px) !important;
  }
}
.isi-panel.close .isi-toggle .close {
  display: none;
}
.isi-panel.visible {
  transform: translateY(0);
}
.isi-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem 0 18.3rem;
  height: 4rem;
  background-color: #DEC7E7;
}
@media screen and (max-width: 768px) {
  .isi-header {
    padding: 0 1.2rem;
    height: 7rem;
  }
}
.isi-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.25rem;
  text-align: left;
  color: #470A68;
}
@media screen and (max-width: 768px) {
  .isi-header h3 {
    letter-spacing: -0.01em;
  }
}
.isi-toggle {
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .isi-toggle {
    gap: 1.2rem;
  }
}
.isi-toggle-button {
  width: 2.4rem;
  height: 2.4rem;
  background-position: center;
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
  cursor: pointer;
}
.isi-toggle-button.active {
  background-image: url('../../img/plus.svg');
}
.isi-toggle-button.close {
  background-image: url('../../img/minus.svg');
}
.isi-content {
  max-height: calc(100% - 4rem - env(safe-area-inset-bottom));
  height: 12rem;
  background: white;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: height 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .isi-content {
    max-height: calc(100vh - 7rem);
    height: 9.3rem;
  }
}
.isi-content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding: 0.9rem 0 2rem 0;
}
.isi-content-container h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.25rem;
  text-align: left;
  color: #963CBD;
}
@media screen and (max-width: 768px) {
  .isi-content-container h3 {
    margin-bottom: 1.6rem;
  }
}
.isi-content-container h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.25rem;
  text-align: left;
  color: #470A68;
}
.isi-content-container p,
.isi-content-container li {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.25rem;
  text-align: left;
  color: #1A3141;
}
.isi-content-container ul li {
  display: flex;
  flex-direction: row;
  gap: 0.3em;
  margin-top: 1rem;
}
.isi-content-container ul li::before {
  content: '●';
  display: block;
  flex-shrink: 0;
  color: #953DBF;
}
.isi-content-container strong.primary-color {
  color: var(--primary-company-color);
}
.isi-content-container a {
  text-decoration: underline;
  color: inherit;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.isi-content-container a:hover {
  color: var(--secondary-company-color);
}
.isi-content-container .indications {
  flex-shrink: 0;
  width: 34.3rem;
}
@media screen and (max-width: 768px) {
  .isi-content-container .indications {
    width: 100%;
  }
}
.isi-content-container .isi {
  flex-shrink: 0;
  width: 74.4rem;
}
@media screen and (max-width: 768px) {
  .isi-content-container .isi {
    width: 100%;
  }
}
.isi-content-container .text-content > :not(:first-child) {
  margin-top: 1rem;
}
footer {
  padding: 2.7rem 0 1.9rem 0;
  background: var(--primary-company-color);
}
@media (max-width: 768px) {
  footer {
    padding: 2rem 0;
  }
}
footer nav ul {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  footer nav ul {
    gap: 1.1rem;
    flex-direction: column;
  }
}
footer nav ul li:not(:first-of-type)::before {
  content: '|';
  padding: 0 0.4em;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 600;
  color: var(--footer-font-color);
}
@media (max-width: 768px) {
  footer nav ul li:not(:first-of-type)::before {
    display: none;
  }
}
footer nav ul li a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 600;
  color: var(--footer-font-color);
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
footer nav ul li a::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -0.2rem;
  width: 0;
  height: 0.2rem;
  background-color: var(--primary-light-company-color);
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
footer nav ul li a:hover {
  color: var(--primary-light-company-color);
}
footer nav ul li a:hover::after {
  width: 100%;
}
footer .disclaimer {
  margin-top: 5rem;
  font-size: 1.4rem;
  line-height: 1.75rem;
  color: var(--footer-font-color);
}
footer .company-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 9.3rem;
}
@media (max-width: 768px) {
  footer .company-info {
    flex-direction: column;
    gap: 4rem;
    margin-top: 4.3rem;
  }
}
footer .company-info ul li {
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: var(--footer-font-color);
}
footer .company-info ul li:not(:first-of-type) {
  margin-top: 0.4rem;
}
footer .company-info .logo {
  align-self: center;
  width: 14.9rem;
  height: 5.3rem;
}
@media (max-width: 768px) {
  footer .company-info .logo {
    align-self: flex-start;
  }
}
.button,
[type="submit"] {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 4rem;
  border-radius: 5rem;
  background-color: var(--secondary-company-color);
  box-shadow: 0px 0.4rem 0.4rem 0px #00000040;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1em;
  color: white;
  cursor: pointer;
  outline: none;
  border: none;
}
.button span,
[type="submit"] span {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .button span,
  [type="submit"] span {
    font-size: 1.8rem;
  }
}
.button svg,
[type="submit"] svg {
  width: 3rem;
  height: 3rem;
}
.button svg path,
[type="submit"] svg path {
  fill: white;
}
.container {
  width: 112.8rem;
  max-width: 100% ;
  margin: auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}
.horizontal-bookmark {
  border-radius: 0 6rem 6rem 0;
}
.horizontal-bookmark-left {
  border-radius: 6rem 0 0 6rem;
}
.horizontal-bookmark-left.fixed-sign-up {
  display: none;
}
@media screen and (max-width: 768px) {
  .horizontal-bookmark-left.fixed-sign-up {
    position: fixed;
    top: 25.3rem;
    right: 0;
    z-index: 999;
    display: block;
    padding: 1.7rem 2rem;
    width: 15rem;
    background: var(--secondary-company-color);
  }
  .horizontal-bookmark-left.fixed-sign-up .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.5rem;
    color: white;
  }
  .horizontal-bookmark-left.fixed-sign-up .row .email-icon {
    width: 2.2rem;
    height: 1.8rem;
  }
}
#sign-up-bookmark {
  transition: transform 0.3s ease-in-out, bottom 1s ease-in-out;
}
#sign-up-bookmark.move-right {
  transform: translateX(100%);
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.text-decoration-none {
  text-decoration: none;
}
.text-transform-uppercase {
  text-transform: uppercase;
}
.hidden-input {
  margin: 0 !important;
  overflow: hidden !important;
  height: 0 !important;
  border: none !important;
  padding: 0 !important;
}
.thirdly-color {
  color: var(--thirdly-link-color) !important;
}
@media screen and (max-width: 768px) {
  :has( .isi-panel.close.visible) #ot-sdk-btn-floating {
    bottom: 8rem;
  }
  :has( .isi-panel.active.visible) #ot-sdk-btn-floating {
    opacity: 0!important;
  }
}
/*# sourceMappingURL=base.css.map */