/* Styles enqueued on all pages */
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::after, blockquote::before, q::after, q::before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

:root {
  --f-normal: "Hanken Grotesk", "Hanken Grotesk fallback", sans-serif;
  --font-size: 20px;
  --line-height: 1.25;
  --h1-size: 40px;
  --h2-size: 24px;
  --h3-size: 22px;
  --h4-size: 18px;
  --font-size-form-buttons: 24px;
}
@media (max-width: 1024px) {
  :root {
    --h1-size: 24px;
    --h2-size: 20px;
    --h3-size: 18px;
    --font-size-form-buttons: 18px;
  }
}
@media (max-width: 539px) {
  :root {
    --font-size: 18px;
    --font-size-form-buttons: 17px;
  }
}
@media (max-width: 413px) {
  :root {
    --font-size: 16px;
    --font-size-form-buttons: 16px;
  }
}
@media (max-width: 379px) {
  :root {
    --font-size: 16px;
    --font-size-form-buttons: 15px;
  }
}
@media (max-width: 349px) {
  :root {
    --font-size: 16px;
    --font-size-form-buttons: 14px;
  }
}

body {
  font-family: var(--f-normal);
  font-size: var(--font-size);
  font-weight: 500;
}

h1, .h1 {
  font-size: var(--h1-size);
  font-weight: 700;
}

h2, .h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

h3, .h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

.uppercase {
  text-transform: uppercase;
}

strong {
  font-weight: 700;
}

.page-content {
  line-height: 1.5;
}

.front-page {
  --h1-size: 40px;
  --h2-size: 40px;
  --h3-size: 24px;
}
@media (max-width: 1024px) {
  .front-page {
    --h1-size: 24px;
    --h2-size: 24px;
    --h3-size: 18px;
  }
}
@media (max-width: 350px) {
  .front-page {
    --h1-size: 20px;
    --h2-size: 20px;
  }
}

:root {
  --c-normal: #000;
  --c-white: #fff;
  --c-primary: #B70342;
  --c-primary-light: #FFE3EC;
}

.site-main,
.site-footer {
  color: var(--c-white);
}

a {
  color: inherit;
}

:root {
  --site-height: 100dvh;
  --site-width: 100vw;
  --site-v-padding: 30px;
  --site-h-padding: 50px;
  --box-max-width: 1390px;
  --box-width: min(calc(100% - var(--site-h-padding) * 2), var(--box-max-width));
  --section-padding: 60px;
  --inner-padding: 60px;
  --button-size: 50px;
  --w-small: 40.8%;
  --w-large: 59.2%;
  --column-gap: 21px;
  --small-column: 40%;
  --large-column: calc(100% - var(--small-column) - var(--column-gap));
  --header-height: 108px;
  --main-hero-height: 512px;
  --main-content-padding: calc(var(--main-hero-height) - var(--header-height));
  --main-content-padding-bottom: 178px;
  --content-max-width: 912px;
  --form-max-width: var(--content-max-width);
}
@media (max-width: 1137px) {
  :root {
    --site-h-padding: 40px;
    --site-v-padding: 24px;
    --inner-padding: 90px;
    --section-padding: 60px;
  }
}
@media (max-width: 1023px) {
  :root {
    --header-height: 52px;
    --main-hero-height: 400px;
    --main-content-padding-bottom: 128px;
  }
}
@media (max-width: 844px) {
  :root {
    --main-content-padding: 264px;
    --site-h-padding: 30px;
    --button-size: 40px;
    --inner-padding: 60px;
  }
}
@media (max-width: 539px) {
  :root {
    --site-h-padding: 24px;
    --inner-padding: 24px;
  }
}
@media (max-width: 413px) {
  :root {
    --site-h-padding: 15px;
    --inner-padding: 20px;
  }
}
@media (max-width: 379px) {
  :root {
    --site-h-padding: 15px;
    --inner-padding: 18px;
  }
}

html {
  height: var(--site-height);
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  scroll-padding: 50px 0;
}
html.menu-open {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  padding: var(--header-height) 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  max-width: 100%;
  background-color: var(--c-primary);
}
.menu-open body {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.site-header,
.site-content,
.site-footer {
  width: 100%;
  flex: 0 0 auto;
}

.site-content {
  flex: 1 1 auto;
  padding-top: var(--main-content-padding);
  padding-bottom: var(--main-content-padding-bottom);
}

.hero-full .hero-content-inner,
.flex-section {
  padding: var(--section-padding) 0;
}
.hero-full .hero-content-inner.no-padding,
.flex-section.no-padding {
  padding: 0;
}

.inner {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.box {
  width: var(--box-width);
  max-width: calc(100% - 2 * var(--site-h-padding));
  margin: 0 auto;
  position: relative;
}
.site-main .box {
  width: var(--content-max-width);
}

@media (max-width: 599px) {
  html.has-admin-bar {
    --wp-admin--admin-bar--height: 0;
    margin-top: 0 !important;
  }
  #wpadminbar {
    display: none;
  }
}
body.page-secondary {
  --main-content-padding: 204px;
}
@media (max-width: 844px) {
  body.page-secondary {
    --main-content-padding: 154px;
  }
}
@media (max-width: 349px) {
  body.page-secondary {
    --main-content-padding: 124px;
  }
}

.site-title {
  position: relative;
}
.site-title h1 {
  width: 100%;
  text-align: center;
  color: #fff;
}
@media (min-width: 846px) {
  .site-title h1 {
    position: absolute;
    bottom: calc(100% + 104px);
    left: 0;
  }
}

.col2img {
  display: flex;
  gap: 1em;
}
.col2img a {
  display: block;
  flex: 1 0 0;
}
.col2img img {
  aspect-ratio: 12/9;
}
@media (max-width: 845px) {
  .col2img {
    flex-direction: column;
  }
  .col2img a {
    width: 100%;
  }
}

.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 88, 136, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.lity-loading .lity-content, .lity-closed .lity-content {
  transform: scale(0.8);
}
.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

.header-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: var(--main-hero-height);
  background: url(../../assets/img/bg-top.webp) center/cover no-repeat;
  z-index: 0;
  overflow: hidden;
  clip-path: border-box;
}
.header-bg::before, .header-bg::after {
  content: "";
  display: block;
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  background: linear-gradient(180deg, rgb(183, 3, 66) 0%, rgba(183, 3, 66, 0) 100%);
}
.header-bg::before {
  top: 0;
  background: linear-gradient(180deg, rgb(54, 28, 37) 0%, rgba(54, 28, 37, 0) 100%);
}
.header-bg::after {
  transform: scaleY(-1);
  transform-origin: center;
  bottom: 0;
}
.site-header {
  position: relative;
  z-index: 10;
}
.site-header .main-navigation {
  position: absolute;
  top: calc(var(--header-height) * -1);
  left: calc(50vw - var(--box-width) / 2);
  width: var(--box-width);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.site-header .site-branding {
  flex: 0 0 auto;
  width: 222px;
  height: 332px;
}
.site-header .site-branding img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}
@media (max-width: 1510px) {
  .site-header .site-branding {
    width: 174px;
    height: 260px;
  }
}
@media (max-width: 1024px) {
  .site-header .site-branding {
    width: 110px;
    height: 165px;
  }
}
@media (max-width: 845px) {
  .site-header .site-branding {
    width: 98px;
    height: 145px;
  }
}
.site-header .header-menu {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 32px;
}
.site-header .header-menu a {
  display: block;
  color: #fff;
}
.site-header .header-menu .wpml-ls-item a {
  opacity: 0.5;
  padding: 16px;
}
.site-header .header-menu .wpml-ls-item:hover a, .site-header .header-menu .wpml-ls-item.wpml-ls-current-language a {
  opacity: 1;
}
.site-header .header-menu .menu-item-object-page {
  margin-right: 16px;
}
.site-header .header-menu .menu-item-object-page a {
  padding: 16px 24px;
  border-radius: 100px;
}
.site-header .header-menu .menu-item-object-page.current-menu-item a {
  background: #fff;
  color: var(--c-primary);
}
.site-header .header-menu .menu-item-object-page + .wpml-ls-item {
  margin-left: 26px;
  position: relative;
}
.site-header .header-menu .menu-item-object-page + .wpml-ls-item::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -26px;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background: #fff;
}
.site-header .mobile-nav-trigger {
  display: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .site-header .site-branding {
    z-index: 10;
  }
  .site-header .header-menu {
    display: none;
    padding: 192px var(--site-h-padding) var(--site-h-padding);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    top: 0;
    bottom: 100%;
    z-index: 9;
    left: calc(50% - 50vw);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--c-primary);
    margin: 0;
  }
  .site-header .header-menu .menu-item {
    max-width: 408px;
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    text-align: center;
  }
  .site-header .mobile-nav-trigger {
    display: block;
    position: absolute;
    top: var(--site-h-padding);
    z-index: 10;
    right: 0;
    width: 56px;
    height: 56px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23B70342' viewBox='0 0 24 18'%3E%3Cpath d='M6 1.8C6 1.1 6.5.6 7.2.6h15.6a1.2 1.2 0 0 1 0 2.4H7.2C6.5 3 6 2.5 6 1.8Zm16.8 6H1.2a1.2 1.2 0 0 0 0 2.4h21.6a1.2 1.2 0 0 0 0-2.4Zm0 7.2H12a1.2 1.2 0 0 0 0 2.4h10.8a1.2 1.2 0 0 0 0-2.4Z'/%3E%3C/svg%3E") center/24px 17px no-repeat;
    border-radius: 100px;
  }
}

.page-secondary .header-bg {
  filter: blur(5px);
}
.page-secondary .header-bg .effect {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(183, 3, 66, 0.1);
}

@media (max-width: 1024px) {
  .menu-open .site-header .header-menu {
    --menu-gap: 24px;
    display: flex;
    gap: var(--menu-gap);
  }
  .menu-open .site-header .header-menu .menu-item {
    margin: 0;
  }
  .menu-open .site-header .header-menu .menu-item a {
    text-transform: uppercase;
  }
  .menu-open .site-header .header-menu .wpml-ls-item {
    width: 50%;
    margin: 0;
    padding: 0 8px;
    align-self: flex-start;
    text-align: right;
    position: relative;
    max-width: 50%;
  }
  .menu-open .site-header .header-menu .wpml-ls-item::before {
    display: none;
  }
  .menu-open .site-header .header-menu .wpml-ls-item::after {
    display: block;
    content: "";
    position: absolute;
    right: -1px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #FFFFFF;
    opacity: 0.25;
  }
  .menu-open .site-header .header-menu .wpml-ls-item:last-child {
    align-self: flex-end;
    transform: translateY(calc((100% + var(--menu-gap)) * -1));
    text-align: left;
  }
  .menu-open .site-header .header-menu .wpml-ls-item:last-child::after {
    display: none;
  }
  .menu-open .mobile-nav-trigger {
    right: var(--site-h-padding);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23B70342' viewBox='0 0 16 16'%3E%3Cpath d='m9.7 8 5.1-5.2a1.2 1.2 0 1 0-1.6-1.6L8 6.3 2.8 1.2a1.2 1.2 0 1 0-1.6 1.6L6.3 8l-5.1 5.2a1.2 1.2 0 1 0 1.6 1.6L8 9.7l5.2 5.1a1.2 1.2 0 0 0 1.6 0c.5-.4.5-1.2 0-1.6L9.7 8Z'/%3E%3C/svg%3E");
    background-size: 15px 15px;
  }
  .menu-open .main-navigation {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 var(--site-h-padding);
  }
}
.site-footer {
  --footer-size: 392px;
}
@media (max-width: 1023px) {
  .site-footer {
    --footer-size: 322px;
  }
}
@media (max-width: 844px) {
  .site-footer {
    --footer-size: 280px;
  }
}
@media (max-width: 413px) {
  .site-footer {
    --footer-size: 240px;
  }
}
@media (max-width: 379px) {
  .site-footer {
    --footer-size: 220px;
  }
}
@media (max-width: 379px) {
  .site-footer {
    --footer-size: 200px;
  }
}
.site-footer .footer-decorations {
  height: var(--footer-size);
  background: url("../../assets/img/bg-footer-white.svg") center top/auto var(--footer-size) repeat-x;
}
.site-footer .container {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 60px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.04em;
}
.site-footer .container .footer-menu {
  flex: 0 1 auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer .container .footer-menu a {
  display: block;
  padding: 20px 0;
  text-transform: uppercase;
}
.site-footer .container .footer-copyright {
  flex: 0 0 auto;
  text-transform: uppercase;
}
@media (max-width: 844px) {
  .site-footer .container {
    gap: 24px;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .site-footer .container .footer-menu {
    row-gap: 0;
    justify-content: center;
  }
  .site-footer .container .footer-menu a {
    padding: 16px 0;
  }
}
.site-footer .footer-logos {
  --footer-logos-gap: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  gap: var(--footer-logos-gap);
}
.site-footer .footer-logos .footer-logo {
  width: auto;
  height: 60px;
}
@media (max-width: 844px) {
  .site-footer .footer-logos {
    --footer-logos-gap: 40px;
  }
  .site-footer .footer-logos .footer-logo {
    height: 30px;
  }
}
@media (max-width: 379px) {
  .site-footer .footer-logos {
    --footer-logos-gap: 0;
  }
}

:root {
  --gf-ctrl-desc-color-error: var(--c-primary) !important;
  --button-h-padding: 40px;
  --button-v-padding: 24px;
  --input-padding: 18px;
}
@media (max-width: 844px) {
  :root {
    --button-h-padding: 24px;
    --button-v-padding: 20px;
  }
}
@media (max-width: 379px) {
  :root {
    --input-padding: 8px;
    --button-h-padding: 18px;
    --button-v-padding: 16px;
  }
}

.gform_wrapper {
  max-width: var(--form-max-width);
  margin: 0 auto;
  position: relative;
  line-height: 1.25;
  color: #000;
}
.gform_wrapper .gform_fields {
  --gf-form-gap-y: 24px;
}
@media (max-width: 349px) {
  .gform_wrapper .gform_fields {
    --gf-form-gap-y: 16px;
  }
}
.gform_wrapper .gform_validation_errors {
  display: none !important;
}
.gform_wrapper .gform_title {
  text-align: center;
}
.gform_wrapper .gf_page_steps {
  justify-content: center;
  margin-bottom: 60px !important;
}
@media (max-width: 844px) {
  .gform_wrapper .gf_page_steps {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 379px) {
  .gform_wrapper .gf_page_steps {
    --gf-field-pg-steps-gap-x: 16px;
  }
}
.gform_wrapper .gsection_title {
  display: none;
}
.gform_wrapper .gsection_description {
  text-align: center;
  font-size: var(--h3-size);
  font-weight: 500;
  letter-spacing: 0.03125em;
}
.gform_wrapper.initial-slide .gform_title {
  margin-top: 48px;
}
.gform_wrapper .special-selection-buttons .gchoice {
  display: block !important;
}
.gform_wrapper .special-selection-buttons .gchoice input {
  display: none;
}
.gform_wrapper .special-selection-buttons .gchoice label {
  display: block;
  font: inherit;
  color: var(--c-primary);
  text-align: center;
  width: 100%;
  padding: var(--button-v-padding) var(--button-h-padding);
  border-radius: 100px;
  background-color: var(--c-primary-light);
  cursor: pointer;
  user-select: none;
  margin: 0 !important;
}
.gform_wrapper .special-selection-buttons .gchoice:last-child label {
  border: 2px solid var(--c-primary-light);
  background-color: #FFF;
}
.gform_wrapper .special-selection-buttons .gchoice input:checked + label {
  background-color: var(--c-primary);
  color: var(--c-primary-light);
}
.gform_wrapper .gform_heading {
  color: #fff;
  text-align: center;
}
.gform_wrapper .gform-page-footer {
  justify-content: flex-end;
}
.gform_wrapper.secondary-slide .gform_heading, .gform_wrapper.last-slide .gform_heading {
  position: absolute;
  bottom: calc(100% + 132px);
  transform: translateY(50%);
  left: 0;
  width: 100%;
}
@media (max-width: 1023px) {
  .gform_wrapper.secondary-slide .gform_heading, .gform_wrapper.last-slide .gform_heading {
    bottom: calc(100% + 102px);
  }
}
@media (max-width: 844px) {
  .gform_wrapper.secondary-slide .gform_heading, .gform_wrapper.last-slide .gform_heading {
    position: static;
    margin-bottom: 80px;
    transform: none;
  }
}
@media (max-width: 349px) {
  .gform_wrapper.secondary-slide .gform_heading, .gform_wrapper.last-slide .gform_heading {
    position: static;
    margin-bottom: 30px;
    transform: none;
  }
}
.gform_wrapper.secondary-slide .gform_heading .gform_title, .gform_wrapper.last-slide .gform_heading .gform_title {
  margin: 0;
}
.gform_wrapper.initial-slide .gform-page-footer {
  margin-top: 56px;
  justify-content: center;
}
.gform_wrapper.initial-slide .gf_page_steps {
  display: none;
}
@media (min-width: 1024px) {
  .gform_wrapper.initial-slide .gsection_description {
    font-size: calc(var(--h3-size) * 0.85);
  }
}
.gform_wrapper.initial-slide .gfield--type-section,
.gform_wrapper.initial-slide .first-page-field {
  min-width: min(100%, 580px);
  max-width: 580px !important;
  margin: auto !important;
}
.gform_wrapper.initial-slide .first-page-field {
  display: flex;
  flex-direction: column;
}
.gform_wrapper.initial-slide .first-page-field .gform-field-label {
  color: #fff;
  order: -1;
}
.gform_wrapper.initial-slide .first-page-field .gfield_description {
  order: 0;
  color: #fff;
  font-size: 0.9em;
  margin-bottom: 1em;
}
.gform_wrapper.initial-slide .first-page-field .ginput_container {
  order: 1;
}
.gform_wrapper.last-slide .gform_page_fields,
.gform_wrapper.last-slide .gform-page-footer {
  justify-content: center;
}
.gform_wrapper.last-slide .gform_page_fields button[type=submit],
.gform_wrapper.last-slide .gform_page_fields input[type=submit],
.gform_wrapper.last-slide .gform-page-footer button[type=submit],
.gform_wrapper.last-slide .gform-page-footer input[type=submit] {
  flex: 1 1 auto;
  width: 100% !important;
}
.gform_wrapper .gfield--type-section {
  border-block-end: solid 0 transparent !important;
}
.gform_wrapper .gform_confirmation_message {
  padding: calc(var(--inner-padding) * 0.8) var(--inner-padding);
  position: relative;
  margin-bottom: var(--main-content-padding-bottom);
  font-size: 24px;
  background-color: #FFF;
}
.gform_wrapper .gform_confirmation_message h2 {
  position: absolute;
  bottom: calc(100% + 132px);
  transform: translateY(50%);
  left: 0;
  width: 100%;
  color: #fff;
  font-size: var(--h2-size);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1023px) {
  .gform_wrapper .gform_confirmation_message h2 {
    bottom: calc(100% + 102px);
  }
}
@media (max-width: 844px) {
  .gform_wrapper .gform_confirmation_message h2 {
    bottom: calc(100% + 82px);
  }
}
@media (max-width: 539px) {
  .gform_wrapper .gform_confirmation_message h2 {
    bottom: calc(100% + 72px);
  }
}
@media (max-width: 413px) {
  .gform_wrapper .gform_confirmation_message h2 {
    bottom: calc(100% + 62px);
  }
}
@media (max-width: 379px) {
  .gform_wrapper .gform_confirmation_message h2 {
    bottom: calc(100% + 48px);
  }
}
@media (max-width: 379px) {
  .gform_wrapper .gform_confirmation_message h2 {
    bottom: calc(100% + 32px);
  }
}
@media (max-width: 844px) {
  .gform_wrapper .gform_confirmation_message {
    margin-top: 120px;
    transform: none;
  }
}
.gform_wrapper .gform_confirmation_message .confirmation-main {
  text-align: center;
  font-size: var(--h3-size);
  font-weight: 500;
}
.gform_wrapper .gform_confirmation_message .confirmation-main::before {
  display: block;
  content: "";
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' fill='none'%3E%3Cpath fill='%23B80442' d='M325 28 290.5 4.2c-6.9 7.5-18.5 9-27.1 3L90.6 256.8c8.6 6 11.3 17.3 6.7 26.5l34.5 23.8a20.8 20.8 0 0 1 33.8 23.5l34.5 23.8c6.9-7.5 18.5-9 27.1-3L400 101.8a20.8 20.8 0 0 1-6.7-26.5l-34.5-23.8A20.8 20.8 0 0 1 325 28Z'/%3E%3Cpath fill='%23C3B6AB' d='m221 318.6 118-170.4-97.6-67.5-118 170.3 97.7 67.6Z'/%3E%3Cpath fill='%23000' d='M192.8 349.4 258 70.8 237.7 66l1.8-18-3.7-1L90.6 256.9c8.6 6 11.3 17.3 6.7 26.5l34.5 23.8a20.8 20.8 0 0 1 33.8 23.5l27.2 18.8Z' opacity='.1'/%3E%3Cpath fill='%23B80442' d='m134.3 46.4-40.8-9.6a20.8 20.8 0 0 1-24.2 12.8L0 345c10.2 2.4 17 12 16 22.2l40.8 9.6a20.8 20.8 0 0 1 40 9.4l40.9 9.5a20.8 20.8 0 0 1 24-12.7l69.4-295.6c-10.2-2.4-16.9-12-15.9-22.1l-40.8-9.6a20.8 20.8 0 0 1-40-9.4Z'/%3E%3Cpath fill='%23C3B6AB' d='m72.4 102.4-1.6-.1-13.1-3.1a6.7 6.7 0 1 1 3-13.1L74 89a6.7 6.7 0 0 1-1.5 13.3ZM180.8 127.9c-.5 0-1 0-1.5-.2l-27.1-6.4a6.7 6.7 0 1 1 3-13l27.1 6.3a6.7 6.7 0 0 1-1.5 13.3Zm-54.2-12.7-1.5-.2-27.2-6.4a6.7 6.7 0 1 1 3.1-13.1l27.1 6.4a6.7 6.7 0 0 1-1.5 13.3ZM221 137.3c-.5 0-1 0-1.5-.2l-13.1-3a6.7 6.7 0 1 1 3-13.2l13.2 3.1a6.7 6.7 0 0 1-1.6 13.3ZM144 354.8l47.4-201.7L75.8 126 28.5 327.7 144 354.8ZM249.3 58c-1.3 0-2.7-.4-3.9-1.2l-11-7.7a6.7 6.7 0 1 1 7.6-11l11.1 7.6a6.7 6.7 0 0 1-3.8 12.3ZM340.9 121.4c-1.4 0-2.7-.4-3.9-1.2l-22.9-15.9a6.7 6.7 0 1 1 7.7-11l22.9 15.8a6.7 6.7 0 0 1-3.8 12.3ZM295 89.7c-1.4 0-2.7-.4-3.9-1.2l-22.9-15.9a6.7 6.7 0 1 1 7.7-11l23 15.8a6.7 6.7 0 0 1-4 12.3ZM374.8 144.9c-1.3 0-2.6-.4-3.8-1.2l-11-7.7a6.7 6.7 0 1 1 7.6-11l11 7.6a6.7 6.7 0 0 1-3.8 12.3Z'/%3E%3C/svg%3E") center/contain no-repeat;
  width: 400px;
  aspect-ratio: 1;
  max-width: 100%;
  margin: 0 auto 80px;
}
.gform_wrapper .gform_confirmation_message .confirmation-notice {
  background-color: var(--c-primary-light);
  color: #5D6980;
  padding: 40px;
  font-size: var(--font-size);
  text-align: center;
}
@media (max-width: 539px) {
  .gform_wrapper .gform_confirmation_message .confirmation-notice {
    padding: var(--inner-padding);
  }
}
.gform_wrapper .loader-wrapper {
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.gform_wrapper .loader-wrapper .loader-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  justify-content: center;
  align-items: center;
  background-color: rgba(183, 3, 66, 0.2);
  pointer-events: none;
  display: none;
}
.gform_wrapper .loader-wrapper .spinner-target {
  display: none;
}
.gform_wrapper .loader-wrapper .gform-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.gform_wrapper .loader-wrapper .gform-loader + .loader-background {
  display: block;
  pointer-events: all;
  cursor: wait;
}
.gform_wrapper.gform-theme--foundation .ginput_address_city,
.gform_wrapper.gform-theme--foundation .ginput_address_country,
.gform_wrapper.gform-theme--foundation .ginput_address_state,
.gform_wrapper.gform-theme--foundation .ginput_address_zip {
  inline-size: 100%;
}

.gform_required_legend {
  display: none;
}

form.main-form {
  --gf-local-outline-width: 0;
  padding: calc(var(--inner-padding) * 0.8) var(--inner-padding);
  color: #fff;
  position: relative;
  font-size: 24px;
}
@media (max-width: 844px) {
  form.main-form {
    font-size: 16px;
  }
}
.secondary-page form.main-form {
  box-shadow: 0px 22px 70px 4px rgba(0, 0, 0, 0.1019607843);
}
form.main-form .gform-body {
  padding: 0;
}
.initial-slide form.main-form {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
.initial-slide form.main-form .gform-body {
  padding: 0;
}
form.main-form .address_country > label,
form.main-form .gfield > label,
form.main-form .gfield--input-type-radio > legend {
  font-size: 0.6667em !important;
  text-transform: uppercase;
  font-weight: 700;
  color: inherit;
}
form.main-form textarea:focus, form.main-form textarea:active,
form.main-form select:focus,
form.main-form select:active,
form.main-form input:focus,
form.main-form input:active,
form.main-form button:focus,
form.main-form button:active {
  outline: none !important;
  border: 0 solid transparent !important;
}
form.main-form input.gform-button--width-full,
form.main-form button.gform-button--width-full {
  width: 100% !important;
}
form.main-form select,
form.main-form textarea,
form.main-form input[type=text],
form.main-form input[type=email] {
  font-size: inherit !important;
  padding: var(--input-padding);
  background: var(--c-primary-light) !important;
  border: none !important;
  border-radius: 8px !important;
  line-height: inherit !important;
}
form.main-form select:focus, form.main-form select:active,
form.main-form textarea:focus,
form.main-form textarea:active,
form.main-form input[type=text]:focus,
form.main-form input[type=text]:active,
form.main-form input[type=email]:focus,
form.main-form input[type=email]:active {
  outline: none !important;
  border: 0 solid transparent !important;
}
form.main-form select {
  line-height: 1.1 !important;
}
form.main-form .gfield_error select,
form.main-form .gfield_error textarea,
form.main-form .gfield_error input[type=text],
form.main-form .gfield_error input[type=email] {
  border: 2px solid var(--c-primary) !important;
}
form.main-form select,
form.main-form input[type=text],
form.main-form input[type=email] {
  height: auto !important;
}
form.main-form .gf_step {
  position: relative;
  --step-bg-color: var(--c-primary-light);
}
form.main-form .gf_step::before {
  display: block;
  content: "";
  width: 24px;
  height: 4px;
  background: var(--step-bg-color) !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  right: 100%;
}
form.main-form .gf_step:first-child::before {
  display: none;
}
form.main-form .gf_step:last-child {
  display: none;
}
form.main-form .gf_step.gf_step_completed {
  --step-bg-color: var(--c-primary);
}
form.main-form .gf_step_number {
  background: var(--step-bg-color) !important;
  color: var(--step-bg-color) !important;
  border-radius: 0 0 100px 100px !important;
  position: relative;
  z-index: 1;
  border: 0 solid transparent;
}
form.main-form .gf_step_number::after {
  display: none !important;
}
form.main-form .gf_step_label {
  display: none;
}
form.main-form button,
form.main-form input.button {
  font-size: var(--font-size-form-buttons) !important;
  font-weight: 600 !important;
}
@media (max-width: 1024px) {
  form.main-form button,
  form.main-form input.button {
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
  }
}
form.main-form button.gform-theme-button--secondary, form.main-form button.gform-theme-button.gform_next_button,
form.main-form input.button.gform-theme-button--secondary,
form.main-form input.button.gform-theme-button.gform_next_button {
  border-radius: 200px !important;
  padding: var(--button-v-padding) calc(var(--button-h-padding) * 1.5 + 23px) var(--button-v-padding) var(--button-h-padding) !important;
  background: var(--c-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 17'%3E%3Cpath fill='%23fff' d='m22.43 7.3-7-7a1 1 0 0 0-1.41 1.4l5.3 5.3H1.71a1 1 0 0 0 0 2h17.6l-5.3 5.3a1 1 0 1 0 1.41 1.4l7-7a1 1 0 0 0 0-1.4Z'/%3E%3C/svg%3E") right var(--button-h-padding) center/23px 17px no-repeat !important;
  transition: background-position 0.1s ease-in !important;
}
form.main-form button.gform-theme-button--secondary:active, form.main-form button.gform-theme-button--secondary:focus, form.main-form button.gform-theme-button.gform_next_button:active, form.main-form button.gform-theme-button.gform_next_button:focus,
form.main-form input.button.gform-theme-button--secondary:active,
form.main-form input.button.gform-theme-button--secondary:focus,
form.main-form input.button.gform-theme-button.gform_next_button:active,
form.main-form input.button.gform-theme-button.gform_next_button:focus {
  outline: none !important;
}
@media (pointer: fine) {
  form.main-form button.gform-theme-button--secondary:hover, form.main-form button.gform-theme-button.gform_next_button:hover,
  form.main-form input.button.gform-theme-button--secondary:hover,
  form.main-form input.button.gform-theme-button.gform_next_button:hover {
    background-position: right calc(var(--button-h-padding) - 10px) center !important;
    outline: none !important;
  }
}
form.main-form button.gform-theme-button.gform_next_button,
form.main-form input.button.gform-theme-button.gform_next_button {
  box-shadow: 0px -3px 5px 0px rgba(8, 17, 54, 0.0901960784), 0px 12px 13px 0px rgba(8, 17, 54, 0.168627451), 0px 4px 6px 0px rgba(8, 17, 54, 0.1215686275), 0px -12px 30px 0px rgba(8, 17, 54, 0.1215686275), 0px 54px 55px 0px rgba(8, 17, 54, 0.2509803922) !important;
  border: 0 solid transparent !important;
}
form.main-form button.gform_previous_button.gform-theme-button.gform-theme-button--secondary,
form.main-form input.button.gform_previous_button.gform-theme-button.gform-theme-button--secondary {
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 17'%3E%3Cpath fill='%23fff' d='m1.02 7.3 7-7a1 1 0 0 1 1.41 1.4L4.13 7h17.6a1 1 0 1 1 0 2H4.12l5.3 5.3a1 1 0 1 1-1.41 1.4l-7-7a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E") var(--button-v-padding) 50%/23px 17px no-repeat !important;
  padding-left: calc(var(--button-h-padding) * 1.5 + 23px) !important;
  border: 0 solid transparent !important;
  outline: none !important;
  color: #fff !important;
  box-shadow: none !important;
  transition: background-position 0.1s ease-in !important;
}
form.main-form button.gform_previous_button.gform-theme-button.gform-theme-button--secondary:active, form.main-form button.gform_previous_button.gform-theme-button.gform-theme-button--secondary:focus,
form.main-form input.button.gform_previous_button.gform-theme-button.gform-theme-button--secondary:active,
form.main-form input.button.gform_previous_button.gform-theme-button.gform-theme-button--secondary:focus {
  outline: none !important;
}
@media (pointer: fine) {
  form.main-form button.gform_previous_button.gform-theme-button.gform-theme-button--secondary:hover,
  form.main-form input.button.gform_previous_button.gform-theme-button.gform-theme-button--secondary:hover {
    background-position: calc(var(--button-v-padding) - 10px) 50% !important;
    outline: none !important;
  }
}
form.main-form button.gform-theme-button--secondary,
form.main-form input.button.gform-theme-button--secondary {
  background: transparent !important;
  border: 2px solid #DDE7FC !important;
  white-space: wrap;
  font-size: var(--font-size-form-buttons) !important;
  color: var(--c-primary) !important;
}
form.main-form input[type=submit],
form.main-form button {
  border-radius: 200px !important;
  padding: var(--button-v-padding) var(--button-h-padding) !important;
  background: var(--c-primary) !important;
  font-size: var(--font-size-form-buttons) !important;
}
.initial-slide form.main-form input.button.gform-theme-button.gform_next_button {
  color: var(--c-primary);
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 17'%3E%3Cpath fill='%23B70342' d='m22.43 7.3-7-7a1 1 0 0 0-1.41 1.4l5.3 5.3H1.71a1 1 0 0 0 0 2h17.6l-5.3 5.3a1 1 0 1 0 1.41 1.4l7-7a1 1 0 0 0 0-1.4Z'/%3E%3C/svg%3E") !important;
}
.last-slide form.main-form, .secondary-slide form.main-form {
  color: #000;
  background-color: #fff;
}
form.main-form .horizontal-radios .gfield_radio {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 60px;
  padding: var(--input-padding) 0;
}
form.main-form .horizontal-radios .gfield_radio input {
  display: none;
}
form.main-form .horizontal-radios .gfield_radio label {
  font: inherit;
  letter-spacing: 1px;
  line-height: inherit !important;
  padding-left: 1.6em;
  position: relative;
  --gf-local-margin-x: 0 0;
  cursor: pointer;
}
form.main-form .horizontal-radios .gfield_radio label::before {
  display: block;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  content: "";
  height: 1em;
  width: 1em;
  border: 2.5px solid;
  border-radius: 100px;
  border-color: var(--c-primary);
}
form.main-form .horizontal-radios .gfield_radio input:checked + label::after {
  display: block;
  content: "";
  position: absolute;
  left: 0.25em;
  top: 50%;
  margin-top: -0.25em;
  height: 0.5em;
  width: 0.5em;
  border-radius: 100px;
  background: var(--c-primary);
}
form.main-form .rejection-page input[type=submit] {
  position: absolute;
  opacity: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  width: 0 !important;
  max-width: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
}
form.main-form .rejection-page .gform_page_fields input.gform_previous_button_in-form {
  width: 100% !important;
  padding: var(--button-v-padding) var(--button-h-padding) !important;
}
form.main-form option[selected] {
  font-weight: 700;
}

@media (max-width: 380px) {
  body .gform-theme--foundation .gfield textarea.medium {
    min-block-size: 8rem;
  }
}
.otgs-development-site-front-end {
  display: none;
}

.box.page-content p.whitespace-pre-wrap {
  margin-bottom: 1.5rem;
}
.box.page-content ul.list-disc {
  margin-left: 1.5rem;
}
.box.page-content ul.list-disc li.whitespace-normal {
  display: list-item;
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 0.75rem;
}
.box.page-content a {
  text-decoration: underline;
}
.box.page-content a:hover {
  text-decoration: none;
}

.main-content h2 {
  margin-bottom: 0;
  margin-top: 2em;
  font-size: 1.1em;
}
.main-content p {
  margin-bottom: 1em;
}
.main-content .btn {
  text-decoration: none !important;
  color: var(--c-primary);
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 -3px 5px 0 rgba(8, 17, 54, 0.0901960784), 0 12px 13px 0 rgba(8, 17, 54, 0.168627451), 0 4px 6px 0 rgba(8, 17, 54, 0.1215686275), 0 -12px 30px 0 rgba(8, 17, 54, 0.1215686275), 0 54px 55px 0 rgba(8, 17, 54, 0.2509803922);
  border: 0 solid transparent;
  border-radius: 200px;
  padding: 0.75rem calc(3rem + 23px) 0.75rem 2rem;
  background: var(--c-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 17'%3E%3Cpath fill='%23B70342' d='m22.43 7.3-7-7a1 1 0 0 0-1.41 1.4l5.3 5.3H1.71a1 1 0 0 0 0 2h17.6l-5.3 5.3a1 1 0 1 0 1.41 1.4l7-7a1 1 0 0 0 0-1.4Z'/%3E%3C/svg%3E") right 2rem center/23px 17px no-repeat;
  transition: background-position 0.1s ease-in;
}
.main-content img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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