.line {
  overflow: hidden;
  will-change: transform;
}

.leading-min {
  line-height: 1.15;
}

.btn {
  position: relative;
}
.btn.line-f::before, .btn.line-f:before {
  opacity: 0;
}
.btn.line-f::after, .btn.line-f:after {
  bottom: -0.2em;
  border: 1px solid #fff;
  mix-blend-mode: difference;
}
.btn .cta-button .l .l-w {
  display: block;
  float: left;
}
.btn::after, .btn:after, .btn::before, .btn:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  right: 0;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: right;
}
.btn::after, .btn:after {
  border-bottom: 2px solid #181818;
  transform: scaleX(0);
}
.btn::before, .btn:before {
  border-bottom: 2px solid #e2e2e2;
}
@media (max-width: 768px) {
  .btn::before, .btn:before {
    border-bottom: 1px solid #181818;
  }
}
.btn:hover::after, .btn:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.world {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #888888;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: world 5s linear infinite;
}
.world .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: inset 0.1em 0px 0px 0.08em #888888;
  animation: circle_anm 2.7s linear infinite;
  font-size: 0.75em;
}
.world .circle:nth-child(1) {
  animation-delay: -1.8s;
}
.world .circle:nth-child(2) {
  animation-delay: -0.9s;
}
.world .circle-hor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  height: 55%;
  box-shadow: inset 0px 0px 0px 0.15em #888888;
  font-size: 0.75em;
}
.world .circle-hor-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  transform: translate(-50%, -50%);
  border-radius: 0%;
  height: 0.15em;
  background: #888888;
  font-size: 0.75em;
}

@keyframes circle_anm {
  0% {
    border-radius: 50%;
    box-shadow: inset 0.1em 0px 0px 0.08em #888888;
    width: 100%;
  }
  49% {
    border-radius: 50%;
    box-shadow: inset 0.1em 0px 0px 0.08em #888888;
    background: transparent;
  }
  50% {
    border-radius: 0%;
    width: 0.175em;
    background: #888888;
  }
  51% {
    border-radius: 50%;
    box-shadow: inset -0.1em 0px 0px 0.08em #888888;
    background: transparent;
  }
  100% {
    border-radius: 50%;
    box-shadow: inset -0.1em 0px 0px 0.08em #888888;
    width: 100%;
  }
}
@keyframes world {
  50% {
    transform: rotate(15deg);
  }
}
.h-content-menu a {
  transition: opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  color: #fff;
  opacity: 0.3;
}
.h-content-menu a:hover {
  opacity: 1;
}

#article a {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #0a0a0a;
  font-weight: 500;
}
#article a::before, #article a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0em;
  left: 0;
  right: 0;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scaleX(1);
  transform-origin: right;
  border-bottom: 2px solid #c3ff00;
}
#article a::after, #article a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0em;
  left: 0;
  right: 0;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scaleX(0);
  transform-origin: right;
  border-bottom: 2px solid #0a0a0a;
}
#article a:hover::after, #article a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
#article h1,
#article h2,
#article h3,
#article h4,
#article h5,
#article h6 {
  color: #0a0a0a;
  font-weight: 500;
  margin-bottom: 1rem;
}
#article h1 {
  font-size: 4rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #article h1 {
    font-size: 4.4rem;
  }
}
#article h2 {
  font-size: 3.75rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #article h2 {
    font-size: 4.125rem;
  }
}
#article h3 {
  font-size: 2.5rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #article h3 {
    font-size: 2.75rem;
  }
}
#article h4 {
  font-size: 2.2rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #article h4 {
    font-size: 2.42rem;
  }
}
#article h5 {
  font-size: 1.9rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #article h5 {
    font-size: 2.09rem;
  }
}
#article h6 {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #article h6 {
    font-size: 1.76rem;
  }
}
#article p {
  margin: 2rem 0;
  line-height: 1.7;
  font-size: 1.562rem;
}
@media (max-width: 768px) {
  #article p {
    font-size: 1.3rem;
  }
}
#article blockquote {
  font-style: italic;
  color: #0a0a0a;
  border-left: 2px solid #0a0a0a;
  padding-left: 2rem;
  margin: 4rem 0;
  font-size: 13rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  #article blockquote {
    font-size: 2.3rem;
  }
}
#article blockquote p {
  color: #0a0a0a;
  font-size: 3.5rem;
  line-height: 120%;
  font-style: normal;
}
@media (max-width: 768px) {
  #article blockquote p {
    font-size: 2.3rem;
  }
}
#article blockquote p em {
  font-size: 1rem;
  font-weight: 400;
}
#article ul,
#article ol {
  margin-left: 0rem;
  margin-bottom: 1.5rem;
  padding-left: 1.7rem;
}
#article ul li,
#article ol li {
  margin-bottom: 0.75rem;
  list-style-type: circle;
  color: #181818;
}
#article img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
#article iframe,
#article video {
  max-width: 100%;
  margin-bottom: 2rem;
}
#article .comments-section {
  margin-top: 3rem;
  border-top: 1px solid #e0e0e0;
  padding-top: 2rem;
}
#article .comments-section .comment {
  margin-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
}
#article .comments-section .comment .comment-author {
  font-weight: 500;
  color: #c3ff00;
}
#article .comments-section .comment .comment-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.title-row .split-t .line {
  display: flex !important;
}

form {
  --gf-form-gap-x: 24px;
  --gf-field-gap-x: 24px;
  padding-top: 2rem !important;
}
form .gfield_required {
  color: #888;
  font-size: 2rem;
}
form .gform_field, form .gform-grid-row {
  row-gap: 2rem !important;
}
@media (max-width: 768px) {
  form .gform_field, form .gform-grid-row {
    row-gap: 1rem !important;
  }
}
form .gsection_description {
  margin-bottom: 2rem !important;
  font-size: 1.5rem !important;
}
@media (max-width: 768px) {
  form .gsection_description {
    font-size: 1.2rem !important;
  }
}
form .gsection_title {
  color: #0a0a0a !important;
  margin-bottom: 0.5rem !important;
  font-weight: 500;
}
form .gform-field-label, form .gfield_label {
  font-size: 1.7rem !important;
  color: #0a0a0a !important;
  font-weight: 500 !important;
  padding-bottom: 0.6rem;
}
@media (max-width: 768px) {
  form .gform-field-label, form .gfield_label {
    font-size: 1.3rem !important;
    padding-bottom: 0.2rem;
    margin-top: 1rem !important;
  }
}
form textarea {
  padding: 0.4rem 0.4rem !important;
}
form textarea:focus {
  outline: 2px solid #1e1e1e;
}
form input:not([type=checkbox]):not([type=submit]) {
  padding: 2.2rem 1rem !important;
}
form input:not([type=checkbox]):not([type=submit]):focus {
  outline: 2px solid #1e1e1e;
}
form input:not([type=checkbox]):not([type=submit]), form textarea {
  border: none !important;
  border: 1px solid #d2d5db !important;
  box-shadow: none !important;
  border-radius: 7px !important;
  font-size: 1.5rem !important;
  color: #0a0a0a !important;
  background: transparent !important;
}
form input::placeholder, form textarea::placeholder {
  color: #cacaca !important;
}
form input[type=submit] {
  padding: 2rem !important;
  font-size: 1.5rem !important;
  margin-top: 2rem !important;
  display: flex;
  align-items: center;
  border-radius: 200px !important;
  min-width: 24rem !important;
  margin-bottom: 4rem !important;
  background-color: #181818 !important;
}
form input[type=submit]:hover {
  transform: scale(0.95);
}
@media (max-width: 768px) {
  form input[type=submit] {
    min-width: 16rem !important;
    padding: 1.5rem !important;
  }
}
form .gfield--type-choice:last-child {
  transform: translateY(-1rem);
}
form .gchoice, form .ginput_container_consent {
  display: flex;
  align-items: center;
}
form .gchoice input, form .ginput_container_consent input {
  border: 1px solid #cacaca !important;
  box-shadow: none !important;
  border-radius: 50% !important;
  padding: 1rem !important;
}

.i-slide:not(:first-child) {
  box-shadow: -40px -40px 40px rgba(0, 0, 0, 0.018);
}

#d-page h1 {
  font-size: 5rem;
  font-weight: 500;
  margin: 1rem 0;
  line-height: 120%;
}
#d-page h2 {
  font-size: 4rem;
  font-weight: 500;
  margin: 1rem 0;
  line-height: 120%;
}
#d-page h3 {
  font-size: 3.5rem;
  font-weight: 500;
  margin: 1rem 0;
  line-height: 120%;
}
#d-page h4 {
  font-size: 3rem;
  font-weight: 500;
  margin: 1rem 0;
  line-height: 120%;
}
#d-page h5 {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 1rem 0;
  line-height: 120%;
}
#d-page h6 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1rem 0;
  line-height: 120%;
}

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
  margin-bottom: 0px !important;
  padding-bottom: 1rem !important;
}
@media (min-width: 1024px) {
  .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
    padding: 0 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
    padding: 0 1.25rem;
  }
}

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer > ul {
  text-align: left !important;
}
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer > ul a:first-child {
  padding-left: 0px !important;
}

.schema-faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.schema-faq .schema-faq-section {
  border-bottom: 1px solid #e2e8f0;
  padding: 0rem 0rem 2rem 0rem;
  font-size: 1.56rem;
}
@media (max-width: 768px) {
  .schema-faq .schema-faq-section {
    font-size: 1.25rem;
  }
}
.schema-faq .schema-faq-section.open .schema-faq-question::before {
  transform: rotate(90deg);
  height: 0px;
}
.schema-faq .schema-faq-section.open .schema-faq-question::after {
  transform: rotate(180deg);
}
.schema-faq .schema-faq-section.open .schema-faq-answer {
  padding-top: 1rem;
  max-height: 800px;
}
.schema-faq .schema-faq-section .schema-faq-question {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schema-faq .schema-faq-section .schema-faq-question::after {
  content: "";
  width: 16px;
  min-width: 16px;
  height: 2px;
  background-color: #181818;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.schema-faq .schema-faq-section .schema-faq-question::before {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #181818;
  position: absolute;
  right: 7px;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.schema-faq .schema-faq-section .schema-faq-answer {
  color: #888a8b;
  font-size: 0.8em;
  padding-top: 0rem;
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .schema-faq .schema-faq-section .schema-faq-answer {
    font-size: 0.9em;
  }
}
.schema-faq .schema-faq-section .schema-faq-answer a {
  text-decoration: underline;
  color: #181818;
  text-decoration-color: #888a8b;
  text-underline-offset: 5px;
}

html * ::selection {
  color: #0e0e0e;
  background: #c3ff00;
}

html.lenis,
html.lenis body {
  height: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.s-space-50 {
  height: 50vh;
}

img, video {
  user-select: none;
  pointer-events: none;
}

.single-faq a {
  text-decoration: underline;
}

.wp-block-image img {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
