/*
! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Mark, sans-serif; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

/*
Removes the default spacing and border for appropriate elements.
*/


dl,
h1,
h2,
h3,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::-webkit-backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-auto {
  height: auto;
}
.w-full {
  width: 100%;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize {
  resize: both;
}
.border {
  border-width: 1px;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@font-face {
  font-family: "Mark";
  src: url("fonts/MarkW1G-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mark";
  src: url("fonts/MarkW1G-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mark";
  src: url("fonts/MarkW1G-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mark";
  src: url("fonts/MarkW1G-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mark";
  src: url("fonts/MarkW1G-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mark";
  src: url("fonts/MarkW1G-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
body {
  background: #ffffff;
  color: #000000;
  font-family: "Mark";
  overflow-x: hidden;
}
body.page-template-page-thankyou .site-footer {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  position: absolute;
  background: transparent;
  transform: translateY(-100%);
}
.site-header {
  z-index: 4;
  position: absolute;
  top: 0px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 640px) {

  .site-header {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px) {

  .site-header {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.site-header {
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.site-header .logo {
  width: 10rem;
}
@media (min-width: 768px) {
  .site-header .logo {
    width: 13rem;
  }
}
.site-header .logo img {
  width: 100%;
}
.main .heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  padding-left: 2rem;
  padding-right: 2rem;
  opacity: 0;
}
@media (min-width: 768px) {

  .main .heading {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.main .heading {
  background-position: center 20%;
  background-image: url(./images/main-bg2.jpg);
  height: 100dvh;
  transition: all 300ms ease-in-out;
}
.main .heading::before {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  z-index: 1;
}
.main .heading video {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .heading .play {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 2rem;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  color: #db4d00;
  z-index: 9;
}
@media (min-width: 1024px) {
  .main .heading .play {
    font-size: 2vw;
  }
}
.main .heading .play svg {
  max-width: 3rem;
}
@media (min-width: 1280px) {
  .main .heading .play svg {
    max-width: 6rem;
  }
}
.main .heading .arrow {
  cursor: pointer;
  position: absolute;
  width: 8rem;
  height: auto;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.main .heading .text > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}
.main .heading .text {
  padding-top: 0px;
  font-size: 2rem;
  line-height: 1.125;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  max-width: inherit;
}
body.page-template-page-thankyou .main .heading .text {
  font-size: 1rem;
  max-width: 20rem;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .main .heading .text {
    font-size: 2.8vw;
  }
  body.page-template-page-thankyou .main .heading .text {
    font-size: 1.75rem;
  }
}
.main .heading .button {
  display: inline-block;
  margin-top: 2rem;
  background: #FF5A00;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.625rem 1.375rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 300ms ease-in-out;
}
@media (min-width: 768px) {
  .main .heading .button {
    padding: 0.875rem 1.625rem;
  }
}
.main .heading .button:hover {
  background: #db4d00;
}
.main h1 {
  font-size: 3.8rem;
  line-height: 0.875;
  font-weight: bold;
  letter-spacing: -0.1rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .main h1 {
    font-size: 7rem;
    letter-spacing: -0.14rem;
  }
}
.main h2 {
  padding-bottom: 2rem;
  padding-top: 2rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.1rem;
  margin: 0 auto;
  color: #FF5A00;
}
@media (min-width: 640px) {
  .main h2 {
    padding-bottom: 2rem;
    padding-top: 6rem;
    font-size: 3.1rem;
    letter-spacing: -0.14rem;
    line-height: 0.875;
  }
}
.main h3 {
  padding-bottom: 2rem;
  padding-top: 2rem;
  font-size: 4.3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.1rem;
  margin: 0 auto;
  color: #FF5A00;
}
@media (min-width: 640px) {
  .main h3 {
    font-size: 4.3vw;
    letter-spacing: -0.14rem;
    line-height: 0.875;
  }
}
@media (min-width: 1280px) {
  .main h3 {
    font-size: 5vw;
    max-width: 80vw;
  }
}
.main .text-holder {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
.main .text > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.main .text {
  padding-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: normal;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .main .text {
    font-size: 1.75rem;
  }
}
.main .text.font-bold {
  font-weight: bold;
}
.main .form {
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}
.main .form .gform_wrapper {
  padding-top: 8rem;
  text-align: left;
  max-width: 50rem;
  margin: 0 auto;
}
.main .form .legal {
  padding-bottom: 8rem;
  text-align: left;
  max-width: 50rem;
  margin: 0 auto;
  font-size: 0.92rem;
  font-weight: normal;
}
.main .form .legal a {
  color: #FF5A00;
}
.main .footer {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 9;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  padding-left: 2rem;
  padding-right: 2rem;
  opacity: 0;
}
@media (min-width: 768px) {

  .main .footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.main .footer {
  transition: all 300ms ease-in-out;
}
.main .footer::before {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 25%;
  z-index: 1;
}
.main .footer video {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .logo-holder {
  max-width: 200px;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .main .logo-holder {
    max-width: 290px;
    margin: 0 auto;
    margin-bottom: 4rem;
  }
}
.cuadricula {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.cuadricula .image {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 300ms ease-in-out;
}
.wpml-ls-legacy-list-horizontal {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .wpml-ls-legacy-list-horizontal {
    font-size: 1rem;
  }
}
.wpml-ls-legacy-list-horizontal ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wpml-ls-legacy-list-horizontal ul .wpml-ls-link {
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0.6;
  color: #fff;
}
.wpml-ls-legacy-list-horizontal ul .wpml-ls-current-language .wpml-ls-link {
  opacity: 1;
}
.gform_wrapper.gravity-theme .gform_body {
  position: relative;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields {
  grid-row-gap: 0.7rem;
}
@media (min-width: 1300px) {
  .gform_wrapper.gravity-theme .gform_body .gform_fields {
    grid-row-gap: 1rem;
  }
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_select {
  opacity: 0;
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  top: 0;
  left: 0;
  padding: 0;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields input,  .gform_wrapper.gravity-theme .gform_body .gform_fields textarea {
  font-family: Mark, sans-serif;
  font-weight: 700;
}
.main .text.gform_wrapper.gravity-theme .gform_body .gform_fields input, .main .text .gform_wrapper.gravity-theme .gform_body .gform_fields textarea {
  font-weight: bold;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields input, .gform_wrapper.gravity-theme .gform_body .gform_fields textarea {
  font-size: 0.92rem;
  line-height: 1.25;
  cursor: text;
  outline: 0;
  color: #000;
  padding: 0.8rem;
  resize: none;
  border: 1px solid #000;
  border-radius: 0;
  background: transparent;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields input::-moz-placeholder, .gform_wrapper.gravity-theme .gform_body .gform_fields textarea::-moz-placeholder {
  color: #000;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields input::placeholder, .gform_wrapper.gravity-theme .gform_body .gform_fields textarea::placeholder {
  color: #000;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields textarea {
  display: block;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields textarea.large {
  height: 150px;
}
@media (min-width: 1024px) {
  .gform_wrapper.gravity-theme .gform_body .gform_fields textarea.large {
    height: 130px;
  }
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .ginput_complex {
  gap: 0.7rem;
}
@media (min-width: 1300px) {
  .gform_wrapper.gravity-theme .gform_body .gform_fields .ginput_complex {
    gap: 1rem;
  }
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .ginput_complex span {
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-bottom: 0;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_required_text {
  display: none;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_consent_label, .gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_checkbox > .gchoice > label {
  position: relative;
  cursor: pointer;
  padding-left: 2.175rem;
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: bold;
  display: block;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_consent_label::before, .gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_checkbox > .gchoice > label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #000;
  transition: background 150ms ease-in-out;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_consent_label::after, .gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_checkbox > .gchoice > label::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.292' height='12.822' viewBox='0 0 16.292 12.822'%3E%3Cpath id='Trazado_105' data-name='Trazado 105' d='M480.785 1646.992l4.884 4.885 8.579-8.579' transform='translate(-479.371 -1641.883)' fill='none' stroke='%23fff' stroke-width='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_consent_label a, .gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_checkbox > .gchoice > label a {
  color: #FF5A00;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields input[type=checkbox] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields input[type=checkbox]:checked + .gfield_consent_label::before, .gform_wrapper.gravity-theme .gform_body .gform_fields input[type=checkbox]:checked + label::before {
  background: #FF5A00;
  border: 0;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_error .gfield_consent_label {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: #c02b0a;
          text-decoration-color: #c02b0a;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_error .gfield_consent_label::before {
  border: 1px solid #c02b0a;
}
.gform_wrapper.gravity-theme .gform_body .gform_fields .gfield_error .validation_message {
  background: #c02b0a;
  color: #fff;
  border: 0;
}
.gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}
.whatsapp {
  position: relative;
}
@media (min-width: 640px) {

  .whatsapp {
    position: absolute;
  }
}
.whatsapp {
  font-size: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-weight: bold;
  padding-left: 2.625rem;
  cursor: pointer;
}
@media (min-width: 640px) {
  .whatsapp {
    bottom: -3.8rem;
    right: 0;
  }
}
.whatsapp::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35.917' height='36.067' viewBox='0 0 35.917 36.067'%3E%3Cg id='Grupo_79' data-name='Grupo 79' transform='translate(-704 -2078)'%3E%3Cpath id='Trazado_61' data-name='Trazado 61' d='M0 36.067c.175-.645.34-1.255.507-1.865q.874-3.189 1.748-6.377c.078-.284.167-.564.23-.851a.476.476 0 0 0-.045-.307 17.684 17.684 0 0 1-2.1-6.158 17.884 17.884 0 0 1 .138-6.023 17.536 17.536 0 0 1 4.39-8.681A17.833 17.833 0 0 1 22.076.474a17.649 17.649 0 0 1 10.4 6.881 17.091 17.091 0 0 1 3.176 7.491 17.537 17.537 0 0 1-1.708 11.173 17.7 17.7 0 0 1-8.709 8.233 17.289 17.289 0 0 1-6.358 1.507 17.735 17.735 0 0 1-8.335-1.627c-.295-.135-.577-.3-.875-.429a.675.675 0 0 0-.4-.043Q4.723 34.842.183 36.039c-.045.012-.092.015-.183.028' transform='translate(704 2078)' fill='%2345c755'/%3E%3Cpath id='Trazado_62' data-name='Trazado 62' d='M18.026 2.864a15.325 15.325 0 0 1 8.3 2.488A15.607 15.607 0 0 1 30.18 9.066a14.291 14.291 0 0 1 2.648 6.25 15.432 15.432 0 0 1 .065 4.833A14.733 14.733 0 0 1 31.4 24.706a15.2 15.2 0 0 1-3.054 4.1 15.382 15.382 0 0 1-4.283 2.829A14.488 14.488 0 0 1 18.75 32.9c-.24.01-.482.016-.72.016a14.9 14.9 0 0 1-6.288-1.383c-.072-.033-.168-.083-.269-.135-.186-.1-.418-.215-.682-.328a3.6 3.6 0 0 0-1.4-.287 3.347 3.347 0 0 0-.843.106c-1.489.387-2.994.781-4.484 1.171l.954-3.478c.019-.069.04-.144.063-.224.065-.226.138-.482.2-.772a3.339 3.339 0 0 0-.344-2.318A14.925 14.925 0 0 1 3.175 20.1 14.987 14.987 0 0 1 14.867 3.21a14.823 14.823 0 0 1 3.159-.345m0-2.864A17.925 17.925 0 0 0 4.868 5.805 17.528 17.528 0 0 0 .479 14.487 17.884 17.884 0 0 0 .34 20.509a17.67 17.67 0 0 0 2.1 6.158.476.476 0 0 1 .044.307c-.063.287-.152.567-.229.851Q1.381 31.013.508 34.2C.34 34.812.176 35.423 0 36.067c.091-.013.138-.016.184-.028q4.542-1.191 9.085-2.378a.5.5 0 0 1 .122-.014.737.737 0 0 1 .278.057c.3.127.58.293.875.429a17.684 17.684 0 0 0 7.487 1.646q.422 0 .849-.019a17.289 17.289 0 0 0 6.358-1.507 17.7 17.7 0 0 0 8.709-8.233 17.532 17.532 0 0 0 1.708-11.173 17.082 17.082 0 0 0-3.176-7.491A17.976 17.976 0 0 0 18.026 0' transform='translate(704 2078)' fill='%23fcfcfc'/%3E%3Cpath id='Trazado_63' data-name='Trazado 63' d='M15.212 12.954a1.814 1.814 0 0 0-1.744.661 5 5 0 0 0-1.449 3.64 6.618 6.618 0 0 0 .694 2.723A17.423 17.423 0 0 0 14.7 23.052 18.43 18.43 0 0 0 18.911 27.2a16.606 16.606 0 0 0 5.943 2.459 4.524 4.524 0 0 0 2.895-.235 5.122 5.122 0 0 0 1.62-1.112 3.563 3.563 0 0 0 .794-2.218A.846.846 0 0 0 29.6 25.1c-.782-.348-1.54-.751-2.314-1.117-.429-.2-.865-.4-1.311-.558a.583.583 0 0 0-.762.26c-.458.579-.919 1.155-1.392 1.722a.646.646 0 0 1-.924.2c-.066-.028-.13-.06-.2-.087a12.01 12.01 0 0 1-5.878-5.11c-.3-.5-.264-.674.124-1.093a8.6 8.6 0 0 0 .831-1.009 1.183 1.183 0 0 0 .266-1.193c-.478-1.123-.939-2.254-1.408-3.382a1.071 1.071 0 0 0-1.163-.782 2.366 2.366 0 0 1-.262 0' transform='translate(bold.927 2074.69)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.125rem;
  height: 2.125rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.gform_wrapper.gravity-theme .gform_footer.top_label {
  margin-top: 1rem;
  display: block;
}
.gform_wrapper.gravity-theme .gform_footer.top_label .gform_button {
  cursor: pointer;
  width: 8.875rem;
}
.gform_wrapper.gravity-theme .gform_footer.top_label .gform_ajax_spinner {
  display: none;
}
.site-footer {
  z-index: 1;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  flex-direction: column-reverse;
  justify-content: space-between;
  row-gap: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 640px) {

  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px) {

  .site-footer {
    flex-direction: row;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.site-footer .copy {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
}
.site-footer .legal {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
}
.site-footer .legal a {
  display: inline-block;
}
.site-footer .legal a:first-child {
  margin-right: 1rem;
}
.thankyou-page {
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.thankyou {
  display: flex;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  height: 100%;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 5px;
  background: rgba(100, 100, 100, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  flex: 0 1 auto;
  padding: 2rem;
}
.thankyou h2 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}
.thankyou p {
  font-size: 1.125rem;
  max-width: 32rem;
}
.thankyou .button {
  display: inline-block;
  margin-top: 2rem;
  background: #FF5A00;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.625rem 1.375rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 300ms ease-in-out;
}
@media (min-width: 768px) {
  .thankyou .button {
    padding: 0.875rem 1.625rem;
  }
}
.thankyou .button:hover {
  background: #db4d00;
}
.grecaptcha-badge {
  z-index: 1;
}
.CookieDeclaration {
  display: none;
}
