@font-face {
  font-family: Krona One;
  src: url('../fonts/KronaOne-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --color--text-black: #14161d;
  --font--secondary-font: "Krona One", "Palatino Linotype", sans-serif;
  --color--transparent: transparent;
  --radius--circle: 9999px;
  --button-color--primary-button: var(--brand--primary);
  --brand--primary-400: #548a3e;
  --button-color--primary-button-hover: #38beff;
  --color--white: white;
  --button-color--dark-button: #1d1d1f;
  --button-color--light-button: #f5f5f7;
  --button-color--dark-button-hover: #2f2f31;
  --button-color--light-button-hover: white;
  --button-color--grey-button: #f5f5f7;
  --button-color--grey-button-hover: #d2d2d7;
  --brand--primary: #477a32;
  --brand--primary-300: #85d7ff;
  --brand--primary-600: #1ca4e6;
  --brand--primary-700: #1992cc;
  --brand--secondary: #a1ff00;
  --brand--secondary-400: #8b6bf1;
  --brand--secondary-300: #987cf2;
  --brand--secondary-600: #7152d7;
  --brand--secondary-700: #6549bf;
  --grey--grey-100: whitesmoke;
  --grey--grey-200: #e5e5e5;
  --grey--grey-300: #d4d4d4;
  --grey--grey-400: #a3a3a3;
  --grey--grey-500: #737373;
  --grey--grey-600: #525252;
  --grey--grey-700: #404040;
  --grey--grey-800: #262626;
  --grey--grey-900: #171717;
  --color--ui-blue: #1fb6ff;
  --color--ui-green: #13ce66;
  --color--ui-red: #ff4949;
  --color--ui-yellow: #ffc82c;
  --brand--tertiary: #0b652c;
  --brand--tertiary-600: #e11d48;
  --brand--tertiary-700: #be123c;
  --brand--tertiary-400: #fb7185;
  --brand--tertiary-300: #fda4af;
  --brand--quaternary: #eab308;
  --brand--quaternary-400: #facc15;
  --brand--quaternary-300: #fde047;
  --brand--quaternary-600: #ca8a04;
  --brand--quaternary-700: #a16207;
  --radius--radius-6-px: 6px;
  --radius--radius-sg: 0px;
  --radius--radius-20-px: 20px;
  --radius--radius-12-px: 12px;
  --color--footer-grey: #7c7c7c;
  --radius--radius-24-px: 24px;
  --radius--radius-16-px: 16px;
  --radius--radius-2-px: 2px;
  --custom-variable: 0px;
  --color--black: black;
  --font--primary-font: Poppins, Arial, sans-serif;
  --font--nav-font: Verdana, Geneva, sans-serif;
  --radius--radius-0-px: 0px;
  --radius--radius-4-px: 4px;
  --radius--radius-8-px: 8px;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--color--text-black);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

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

ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 20px;
  line-height: 1.55;
}

ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 20px;
  line-height: 1.5;
}

li {
  padding-left: 4px;
}

img {
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: 600;
}

.section {
  margin-bottom: 12rem;
  position: relative;
}

.section.offset {
  margin-top: 5rem;
}

.section._8-rem {
  margin-bottom: 8rem;
}

.section.bottom {
  margin-bottom: -8rem;
}

.section.no-margin {
  margin-bottom: 0;
}

.section.header.home {
  flex-flow: column;
}

.section.small-margin {
  margin-bottom: 8rem;
}

.section.link-cards {
  margin-bottom: 0;
  padding: 8rem 2rem 4rem;
}

.section.half-margin {
  margin-bottom: 6rem;
}

.container {
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container.footer {
  max-width: 700px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.container.slogan {
  width: 1440px;
}

.container.no-margin {
  padding-left: 0;
  padding-right: 0;
}

.main-heading {
  font-family: var(--font--secondary-font);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 14rem;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
}

.main-heading.with-subheading {
  padding-bottom: 1rem;
}

.stipulations-container {
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.stipulation {
  margin-bottom: 3rem;
}

.stipulation-paragraph {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.stipulation-heading {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.link:hover {
  text-decoration: underline;
}

.stipulation-list-title {
  margin-bottom: 2px;
  line-height: 1.5;
}

.stipulation-list {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 20px;
  line-height: 1.5;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100svh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button {
  border: 1px solid var(--color--transparent);
  border-radius: var(--radius--circle);
  background-color: var(--button-color--primary-button);
  letter-spacing: .5px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
}

.button:hover {
  background-color: var(--brand--primary-400);
}

.button:active {
  background-color: var(--button-color--primary-button);
}

.button.full-width {
  width: 100%;
}

.button.secondary {
  border-color: var(--button-color--primary-button);
  background-color: var(--color--transparent);
  color: var(--button-color--primary-button);
}

.button.secondary:hover {
  border-color: var(--button-color--primary-button-hover);
  background-color: var(--button-color--primary-button-hover);
  color: var(--color--white);
}

.button.secondary:active {
  border-color: var(--button-color--primary-button);
  background-color: var(--button-color--primary-button);
}

.button.small {
  padding: 8px 16px;
  font-size: 14px;
}

.button.tertiary {
  border-color: var(--color--transparent);
  background-color: var(--color--transparent);
  color: var(--button-color--primary-button);
}

.button.tertiary:hover {
  border-color: var(--button-color--primary-button-hover);
}

.button.tertiary:active {
  border-color: var(--button-color--primary-button);
  background-color: var(--button-color--primary-button);
  color: var(--color--white);
}

.button.big {
  padding: 16px 32px;
  font-size: 17px;
}

.button.dark {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--button-color--dark-button);
  color: var(--button-color--light-button);
  justify-content: center;
  align-items: center;
  display: flex;
}

.button.dark:hover {
  background-color: var(--button-color--dark-button-hover);
}

.button.dark:active {
  background-color: var(--button-color--dark-button);
}

.button.secondary-dark {
  border-color: var(--button-color--dark-button);
  background-color: var(--color--transparent);
  color: var(--color--text-black);
}

.button.secondary-dark:hover {
  border-color: var(--button-color--dark-button-hover);
  background-color: var(--button-color--dark-button-hover);
  color: var(--color--white);
}

.button.secondary-dark:active {
  border-color: var(--button-color--dark-button);
  background-color: var(--button-color--dark-button);
}

.button.light {
  background-color: var(--button-color--light-button);
  color: var(--color--text-black);
}

.button.light:hover {
  background-color: var(--button-color--light-button-hover);
}

.button.light:active {
  background-color: var(--button-color--light-button);
}

.button.secondary-light {
  border-color: var(--button-color--light-button);
  background-color: var(--color--transparent);
}

.button.secondary-light:hover {
  border-color: var(--button-color--light-button-hover);
  background-color: var(--button-color--light-button-hover);
  color: var(--color--text-black);
}

.button.secondary-light:active {
  border-color: var(--button-color--light-button);
  background-color: var(--button-color--light-button);
}

.button.extra-small {
  letter-spacing: .25px;
  padding: 4px 10px;
  font-size: 12px;
}

.button.tertiary-dark {
  background-color: var(--color--transparent);
  color: var(--color--text-black);
}

.button.tertiary-dark:hover {
  border-color: var(--button-color--dark-button-hover);
}

.button.tertiary-dark:active {
  border-color: var(--button-color--dark-button);
  background-color: var(--button-color--dark-button);
  color: var(--color--white);
}

.button.tertiary-light {
  background-color: var(--color--transparent);
}

.button.tertiary-light:hover {
  border-color: var(--button-color--light-button-hover);
  background-color: var(--button-color--light-button-hover);
  color: var(--color--text-black);
}

.button.tertiary-light:active {
  border-color: var(--button-color--light-button);
  background-color: var(--button-color--light-button);
}

.button.secondary-alt-dark {
  border-color: var(--button-color--dark-button);
  background-color: var(--color--transparent);
  color: var(--color--text-black);
}

.button.secondary-alt-dark:hover {
  border-color: var(--button-color--dark-button);
  outline-color: var(--button-color--dark-button);
  outline-offset: -2px;
  outline-width: 1px;
  outline-style: solid;
}

.button.secondary-alt-dark:active {
  border-color: var(--button-color--dark-button);
  background-color: var(--button-color--dark-button);
  color: var(--color--white);
}

.button.grey {
  background-color: var(--button-color--grey-button);
  color: var(--color--text-black);
}

.button.grey:hover {
  background-color: var(--button-color--grey-button-hover);
}

.button.absolute-sg {
  position: absolute;
}

.category-sg {
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 16rem;
  font-size: 44px;
  font-weight: 600;
  display: flex;
}

.secondary-heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 36px;
  line-height: 1.2;
}

.secondary-heading.home {
  margin-top: 0;
  margin-bottom: 8rem;
}

.subheading {
  text-align: center;
  margin-bottom: 6rem;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.paragraph {
  max-width: 600px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.paragraph.team-building {
  max-width: none;
  margin-bottom: 0;
  font-weight: 500;
}

.paragraph.z-section {
  max-width: none;
  margin-bottom: 0;
}

.item-name-sg {
  letter-spacing: 1px;
  margin-top: 8rem;
  margin-bottom: 1.5rem;
  font-size: 20px;
  font-weight: 600;
}

.item-name-sg.no-top-margin {
  margin-top: 0;
}

.item-name-sg.buttons {
  margin-top: 1rem;
  margin-bottom: 10px;
}

.color-container-sg {
  border-radius: 6px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: flex;
  overflow: hidden;
}

.color-container-sg.gap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.color-container-sg.column {
  flex-flow: column;
  width: 100%;
}

.color-sg {
  background-color: #eee;
  width: 100%;
  height: 5rem;
  position: relative;
}

.color-sg.primary {
  background-color: var(--brand--primary);
}

.color-sg.primary._400 {
  background-color: var(--brand--primary-400);
}

.color-sg.primary._300 {
  background-color: var(--brand--primary-300);
}

.color-sg.primary._600 {
  background-color: var(--brand--primary-600);
}

.color-sg.primary._700 {
  background-color: var(--brand--primary-700);
}

.color-sg.secondary {
  background-color: var(--brand--secondary);
}

.color-sg.secondary._400 {
  background-color: var(--brand--secondary-400);
}

.color-sg.secondary._300 {
  background-color: var(--brand--secondary-300);
}

.color-sg.secondary._600 {
  background-color: var(--brand--secondary-600);
}

.color-sg.secondary._700 {
  background-color: var(--brand--secondary-700);
}

.color-sg.grey {
  background-color: #171717;
}

.color-sg.grey._100 {
  background-color: var(--grey--grey-100);
}

.color-sg.grey._200 {
  background-color: var(--grey--grey-200);
}

.color-sg.grey._300 {
  background-color: var(--grey--grey-300);
}

.color-sg.grey._400 {
  background-color: var(--grey--grey-400);
}

.color-sg.grey._500 {
  background-color: var(--grey--grey-500);
}

.color-sg.grey._600 {
  background-color: var(--grey--grey-600);
}

.color-sg.grey._700 {
  background-color: var(--grey--grey-700);
}

.color-sg.grey._800 {
  background-color: var(--grey--grey-800);
}

.color-sg.grey._900 {
  background-color: var(--grey--grey-900);
}

.color-sg.ui-color {
  border-radius: 6px;
}

.color-sg.ui-color.blue {
  background-color: var(--color--ui-blue);
}

.color-sg.ui-color.positive {
  background-color: var(--color--ui-green);
}

.color-sg.ui-color.negative {
  background-color: var(--color--ui-red);
}

.color-sg.ui-color.warning {
  background-color: var(--color--ui-yellow);
}

.color-sg.tertiary {
  background-color: var(--brand--tertiary);
}

.color-sg.tertiary._600 {
  background-color: var(--brand--tertiary-600);
}

.color-sg.tertiary._700 {
  background-color: var(--brand--tertiary-700);
}

.color-sg.tertiary._400 {
  background-color: var(--brand--tertiary-400);
}

.color-sg.tertiary._300 {
  background-color: var(--brand--tertiary-300);
}

.color-sg.quaternary {
  background-color: var(--brand--quaternary);
}

.color-sg.quaternary._400 {
  background-color: var(--brand--quaternary-400);
}

.color-sg.quaternary._300 {
  background-color: var(--brand--quaternary-300);
}

.color-sg.quaternary._600 {
  background-color: var(--brand--quaternary-600);
}

.color-sg.quaternary._700 {
  background-color: var(--brand--quaternary-700);
}

.color-name-sg {
  color: #fff;
  letter-spacing: .5px;
  border-radius: 4px;
  font-size: 14px;
  position: absolute;
  inset: 14px auto auto 20px;
}

.color-name-sg.dark {
  color: #1b1b1b;
}

.color-category-sg {
  flex-flow: column;
  margin-bottom: 6rem;
  display: flex;
}

.eyebrow {
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.flex-sg {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-sg.horizontal {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
}

.flex-sg.horizontal.light-buttons {
  background-color: #000;
  border-radius: 4px;
  padding: 6px 4px;
}

.brand-colors-sg {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  display: flex;
}

.no-link {
  pointer-events: none;
}

.utility-heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.footer {
  color: var(--color--white);
  background-color: #111;
  background-image: linear-gradient(#000000bf, #000000bf), url('../images/pattern.svg');
  background-position: 0 0, 0 0;
  background-size: auto, 300px;
  padding-top: 12rem;
}

.footer.small-margin-top {
  padding-top: 4rem;
}

.footer-content {
  color: #525252;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  display: flex;
}

.copyright-text {
  margin-right: 3rem;
}

.footer-legal-links {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-legal-link:hover {
  text-decoration: underline;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 20px 12px 28px;
  display: flex;
}

.navbar {
  z-index: 999;
  border-radius: var(--radius--circle);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #fff;
  background-image: none;
  width: 100%;
  max-width: 1000px;
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 0 15px #00000026;
}

.logo {
  width: auto;
  height: auto;
  max-height: 25px;
}

.brand {
  order: -1;
  transition: opacity .1s;
}

.brand:hover {
  opacity: .8;
}

.nav-link {
  color: var(--grey--grey-600);
  letter-spacing: .5px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity .1s;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--brand--primary);
}

.nav-link.cta {
  border-radius: var(--radius--circle);
  background-color: var(--brand--primary);
  color: #fff;
  margin-left: 20px;
  margin-right: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.nav-link.cta:hover {
  opacity: .85;
}

.nav-link.lang {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.nav-menu {
  order: 1;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #ddd;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  inset: 1rem 1rem auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-manager_component {
  z-index: 9999;
  position: fixed;
  inset: auto auto 1.25rem 1.25rem;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-prefs_title {
  color: #222;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_text {
  color: #222;
  font-size: 14px;
}

.fs-cc-prefs_text.fs-cc-essential_label {
  letter-spacing: .5px;
  font-size: 12px;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-banner_button {
  color: #fff;
  text-align: center;
  background-color: #151414;
  border: 1px solid #151414;
  border-radius: 6px;
  min-width: 8.75rem;
  padding: .625rem 1.25rem;
  font-size: 15px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  color: #222;
  background-color: #f9f9f9;
  border-color: #eee;
}

.fs-cc-banner_text {
  margin-right: 1.5rem;
  line-height: 1.5;
}

.fs-cc-prefs_close-icon {
  color: #333;
  width: 1rem;
  height: 1rem;
}

.fs-cc-prefs_toggle_on {
  color: #fff;
  width: 1rem;
  height: 1rem;
  position: absolute;
  inset: 50% auto auto 4px;
  transform: translate(0, -50%);
}

.fs-cc-manager_button {
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  flex-direction: column;
  padding: .5rem;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_toggle-wrapper {
  color: #222;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.fs-cc-banner_component {
  z-index: 998;
  color: #222;
  background-color: #fff;
  width: 100vw;
  padding: 1.5rem 2rem;
  font-size: 14px;
  display: block;
  position: fixed;
  inset: auto 0% 0%;
  box-shadow: 0 2px 5px #0003;
}

.fs-cc-banner_component.fs-cc-middle_banner {
  border-radius: 6px;
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  display: none;
  inset: auto 0% 1rem;
}

.fs-cc-prefs_space-small {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_buttons-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  margin-top: 2rem;
  display: flex;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex: none;
  align-items: center;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs_option.fs-cc-no_border {
  border-bottom-style: none;
}

.fs-cc-prefs_label {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-banner_buttons-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-banner_text-link {
  color: #222;
  font-weight: 400;
  text-decoration: underline;
}

.fs-cc-banner_text-link:hover {
  text-decoration: none;
}

.fs-cc-prefs_component {
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-manager_icon {
  width: 2rem;
  height: 2rem;
}

.fs-cc-prefs_toggle_off {
  color: #fff;
  width: 1rem;
  height: 1rem;
  display: none;
  position: absolute;
  inset: 50% 5px auto auto;
  transform: translate(0, -50%);
}

.fs-cc-prefs_content {
  color: #333;
  height: 100%;
  padding: 2.5rem;
  overflow: auto;
}

.fs-cc-prefs_button {
  color: #fff;
  text-align: center;
  background-color: #151414;
  border: 1px solid #151414;
  border-radius: 6px;
  flex: 1;
  min-width: 9rem;
  padding: .625rem 1.25rem;
  font-size: 15px;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #222;
  background-color: #f9f9f9;
  border-color: #eee;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 40rem;
  position: relative;
  overflow: hidden;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  border-radius: 999px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_trigger {
  display: none;
}

.utility-lock-icon {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.utility-subheading {
  margin-bottom: 2rem;
  font-size: 36px;
}

.interaction-div-sg {
  background-color: var(--grey--grey-200);
  border-radius: 12px;
  width: 100%;
  max-width: 324px;
  height: 200px;
}

.interaction-div-sg.keyframes {
  animation-name: fadeIn;
  animation-duration: .15s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
}

.interaction-div-sg.no-overflow {
  overflow: hidden;
}

.interaction-div-sg.shrinking-image-container {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.interaction-div-sg.shrinking-image-sg {
  transform-origin: 50% 0;
  max-width: 1200px;
  height: 80svh;
  margin-left: auto;
  margin-right: auto;
}

.interaction-div-sg.expanding-video-sg {
  transform-origin: 50% 0;
  max-width: 1728px;
  height: 100svh;
  max-height: 900px;
  margin-left: auto;
  margin-right: auto;
}

.interaction-div-sg.expanding-video-sg.radius-sg {
  border-radius: var(--radius--radius-sg);
}

.interaction-paragraph-sg {
  max-width: 600px;
  line-height: 1.5;
}

.interaction-heading-sg {
  text-align: left;
  max-width: 700px;
  margin-top: 0;
  font-size: 48px;
}

.interaction-heading-sg.center-animation-sg {
  display: inline-flex;
}

.interactions-sg {
  flex-flow: column;
  display: flex;
}

.horizontal-rule-sg {
  background-color: #ddd;
  width: 100%;
  height: 1px;
  margin-top: 8rem;
}

.code-embed {
  display: none;
}

.link-underline {
  text-decoration: underline;
}

.link-underline:hover {
  color: var(--brand--primary-400);
}

.link-color {
  color: var(--brand--primary);
}

.link-color:hover {
  text-decoration: underline;
}

.link-color-underline {
  color: var(--brand--primary);
  text-decoration: underline;
}

.div-overlay-sg {
  background-color: #0000004d;
  width: 100%;
  height: 100%;
}

.div-overlay-sg.relative {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.image-sg {
  width: 100%;
}

.image-container-sg {
  overflow: hidden;
}

.badge {
  color: var(--brand--secondary);
  font-size: 13px;
  font-weight: 600;
}

.spacing-container-sg {
  margin-bottom: 10rem;
}

.spacing-item-sg {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--grey--grey-100);
  grid-template-rows: auto;
  grid-template-columns: 50px 70px 50px 1fr;
  grid-auto-columns: 1fr;
  max-width: max-content;
  padding-top: 4px;
  padding-bottom: 4px;
  display: grid;
}

.spacing-item-sg.header {
  border-bottom-color: var(--grey--grey-300);
}

.spacing-value-sg {
  color: #333;
  font-size: 12px;
}

.spacing-size-sg {
  border: 1px none var(--grey--grey-600);
  background-color: var(--grey--grey-200);
  width: 100px;
  margin-top: 1px;
  margin-bottom: 1px;
  padding-bottom: 0;
  padding-right: 0;
}

.brand-text {
  box-sizing: border-box;
  color: var(--button-color--primary-button);
  font-size: 24px;
  font-weight: 600;
}

.video-container {
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  display: flex;
  position: relative;
}

.video {
  aspect-ratio: 2.2;
  border-radius: var(--radius--radius-20-px);
  cursor: pointer;
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  padding-right: 0;
  display: block;
}

.play-icon {
  z-index: 99;
  pointer-events: none;
  color: #ffffffe6;
  width: 20%;
  max-width: 10rem;
  line-height: 0;
  display: block;
  position: absolute;
  transform: none;
}

.mute-button {
  cursor: pointer;
  background-color: #0000;
  width: 40px;
  height: 40px;
  padding: 0;
  position: absolute;
  inset: auto 0% 0% auto;
}

.sound-icon {
  color: #fff;
  background-color: #0006;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  padding: 8px;
  line-height: 0;
  transition: background-color .2s;
  position: absolute;
  inset: 0% auto auto 0%;
}

.sound-icon.sound-off {
  opacity: 0;
}

.html-embed {
  display: none;
}

.info-container {
  max-width: 500px;
}

.info-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.info-item.extra-margin {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.info-grid {
  grid-column-gap: 30px;
  padding: 0;
}

.info-grid.contact {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.info-details {
  color: #222;
  text-decoration: none;
}

.info-details.underline:hover {
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius--radius-12-px);
  max-width: 600px;
}

.info-name {
  font-family: var(--font--secondary-font);
  color: var(--brand--primary);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 12px;
  display: flex;
}

.contact-map-container {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: grid;
}

.footer-icon {
  color: var(--color--footer-grey);
  width: 18px;
  height: 18px;
  margin-right: 10px;
  line-height: 0;
  display: block;
  inset: 0% 0% 0% auto;
}

.footer-container {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 3rem 10rem;
  display: flex;
}

.footer-container.center {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: center;
}

.copyright-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--color--footer-grey);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.footer-link-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-link-wrapper {
  display: flex;
}

.footer-link-wrapper.footer-link {
  align-self: flex-start;
  align-items: center;
  line-height: 1;
}

.footer-link-wrapper.footer-link.line-height {
  line-height: 1.5;
}

.footer-link {
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
  transition: color .1s;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link.copyright-link {
  font-size: inherit;
}

.highlighted-text {
  font-family: var(--font--secondary-font);
  color: var(--brand--primary);
  font-size: 13px;
  font-weight: 400;
}

.tertiary-heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 5rem;
  font-size: 32px;
  font-weight: 500;
}

.tertiary-heading.no-margin {
  color: var(--color--text-black);
  margin-bottom: 0;
}

.jumbo-heading {
  font-family: var(--font--secondary-font);
  color: var(--color--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 84px;
  font-weight: 400;
}

.jumbo-heading.black {
  color: var(--color--text-black);
}

.header {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  display: flex;
  position: relative;
}

.header.z-centar {
  background-image: linear-gradient(#0006, #0006), url('../images/zcentar_5.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.header.funtana {
  background-image: linear-gradient(#0006, #0006), url('../images/funtanta_3.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.header.edukacija {
  background-image: linear-gradient(#0006, #0006), url('../images/bogdan.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.features-icon {
  stroke-width: 8px;
  width: 20px;
  line-height: 0;
}

.features-icon.golf-icon {
  width: 19px;
  margin-top: -5px;
}

.feature {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature-text {
  font-weight: 600;
}

.features-container {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.reviews {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: var(--radius--radius-20-px);
  color: var(--color--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.reviews.z-centar {
  background-image: linear-gradient(#000c, #0000), url('../images/zcentar_8.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.reviews.funtana {
  background-image: linear-gradient(#000c, #0003), url('../images/funtanta_6.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.review-text {
  text-align: center;
  max-width: 900px;
  font-size: 42px;
  line-height: 1.3;
}

.stars-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: none;
}

.star-icon {
  width: 18px;
  line-height: 0;
}

.review-person {
  font-family: var(--font--secondary-font);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

.scroll-down {
  z-index: 10;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--color--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.scroll-down-text {
  font-family: var(--font--secondary-font);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
}

.down-arrow-icon {
  stroke-width: 10px;
  width: 13px;
  line-height: 0;
}

.faq-arrow {
  flex: none;
  width: 24px;
  height: 24px;
}

.question {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  transition: color .1s;
  display: flex;
}

.answer-container {
  border-bottom: 1px solid #ccc;
  padding-right: 1rem;
  display: block;
}

.question-title {
  font-size: 20px;
  font-weight: 600;
}

.faq-questions {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.question-answer {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

.testimonial-slider-nav {
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  font-size: 8px;
  position: static;
}

.testimonial-slider {
  pointer-events: none;
  background-color: #0000;
  height: min-content;
}

.testimonial-arrow {
  opacity: .4;
  color: #222;
  transition: opacity .2s;
}

.testimonial-arrow:hover {
  opacity: .8;
}

.testimonial-slide {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
}

.arrow-icon {
  font-size: 16px;
}

.contact-section {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: var(--radius--radius-20-px);
  background-color: var(--color--text-black);
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 1.5rem;
  display: grid;
}

.contact-item-title {
  font-family: var(--font--secondary-font);
  color: var(--grey--grey-400);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
}

.contact-item-text {
  color: var(--color--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-text.address {
  font-style: italic;
}

.contact-item-text.hours {
  font-size: 20px;
}

.contact-item-text.link.address.center {
  text-align: center;
}

.contact-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.price {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--grey--grey-700);
  border-radius: var(--radius--radius-12-px);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem 1rem;
  display: flex;
}

.price-number {
  color: var(--color--white);
  font-size: 24px;
  font-weight: 500;
}

.price-text {
  color: var(--grey--grey-400);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.pricing {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  display: flex;
}

.main-map {
  border-radius: var(--radius--radius-12-px);
  width: 100%;
  height: 500px;
}

.main-map.funtana {
  background-image: url('../images/funtana_lokacija_co.jpg');
  background-position: 50%;
  background-size: cover;
}

.main-map.z-centar {
  background-image: url('../images/z_centar_lokacija_c.jpg');
  background-position: 50%;
  background-size: cover;
}

.address-container {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-text-container {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.contact-text-container.contact-us {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.small-price-text {
  text-transform: none;
  font-size: 13px;
}

.small-contact-title-text {
  text-transform: none;
  font-size: 12px;
}

.mini-golf-rules-container {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.rule {
  grid-template-rows: auto;
  grid-template-columns: 1fr 10fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  display: grid;
}

.rule-number {
  font-family: var(--font--secondary-font);
  color: var(--button-color--primary-button);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.rule-text {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
}

.bottom-gallery-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.bottom-lightbox-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  display: grid;
}

.lightbox-image {
  width: 100%;
  height: 20rem;
}

.lightbox-image.big {
  width: 100vw;
  height: 85svh;
}

.slogan-container {
  justify-content: flex-start;
  align-items: center;
  min-height: 100svh;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slogan {
  font-family: var(--font--secondary-font);
  color: var(--button-color--primary-button);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 114px;
  font-weight: 400;
  line-height: .9;
}

.slogan-background {
  z-index: -1;
  border-radius: var(--radius--radius-24-px);
  background-image: linear-gradient(0deg, #fff, #0000 50%), linear-gradient(#fff, #0000 50%), linear-gradient(90deg, #fff, #0000), url('../images/pattern.svg');
  background-position: 0 0, 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat, repeat;
  background-size: auto, auto, auto, 300px;
  background-attachment: scroll, scroll, scroll, scroll;
  width: 100%;
  height: 100%;
  position: absolute;
}

.small-slogan-text {
  font-family: Krona One, Palatino Linotype, sans-serif;
  font-size: 48px;
  font-weight: 900;
}

.golf-ball-container {
  color: var(--color--transparent);
  background-image: url('../images/golfer_loptica_big.png');
  background-position: 55% 0;
  background-repeat: no-repeat;
  background-size: 240px;
}

.kerning-fix {
  letter-spacing: -16px;
}

.footer-slogan {
  font-family: var(--font--secondary-font);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 4rem;
  font-size: 48px;
  font-weight: 400;
}

.footer-links-title {
  font-family: var(--font--secondary-font);
  color: var(--color--footer-grey);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

.footer-links-container {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  display: flex;
}

.footer-slogan-container {
  flex: none;
}

.team-building-container {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-building-image {
  border-radius: var(--radius--radius-16-px);
  width: 100%;
  height: 600px;
}

.team-building-text {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  margin-left: 8rem;
  display: flex;
}

.button-arrow-icon {
  stroke-width: 10px;
  width: 18px;
  line-height: 0;
}

.jumbo-location {
  text-transform: uppercase;
  font-size: 38px;
}

.link-card {
  border-radius: var(--radius--radius-6-px);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-card-text {
  z-index: 10;
  font-family: var(--font--secondary-font);
  color: var(--color--white);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  position: absolute;
}

.link-card-image {
  width: 100%;
  height: 100%;
}

.link-card-overlay {
  background-image: linear-gradient(#0006, #0006);
  position: absolute;
  inset: 0%;
}

.link-card-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Area"
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.quick-stack {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.link-card-text-small {
  font-size: 16px;
}

.slider {
  pointer-events: none;
  min-height: 100svh;
}

.slide-2 {
  background-image: url('../images/xclay_4.webp');
  background-position: 50%;
  background-size: cover;
}

.slide-3 {
  background-image: url('../images/SLIKA-2-NA-GOLF.jpeg');
  background-position: 50%;
  background-size: cover;
}

.slide-4 {
  background-image: url('../images/football.jpeg');
  background-position: 50%;
  background-size: cover;
}

.slide-5 {
  background-image: url('../images/slider_design.webp');
  background-position: 0%;
  background-size: cover;
}

.slide-6 {
  background-image: url('../images/davis.jpeg');
  background-position: 50%;
  background-size: cover;
}

.hero-overlay {
  z-index: 5;
  background-image: linear-gradient(#0000004d, #0000004d);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.hero-link {
  opacity: 1;
  text-decoration: none;
}

.home-heading {
  font-family: var(--font--secondary-font);
  color: var(--color--white);
  text-align: center;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 60px;
  font-weight: 400;
}

.home-heading.hero {
  z-index: 2;
  font-family: var(--font--secondary-font);
  color: #fff;
  padding: 0 2rem;
  font-size: 48px;
  font-weight: 400;
}

.home-heading.caps {
  text-transform: uppercase;
  font-size: 52px;
}

.slider-image {
  width: 100%;
  height: 100%;
}

.legal-heading {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 6rem;
}

.z-section-container {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 8rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
}

.z-section-image {
  border-radius: var(--radius--radius-12-px);
  width: 100%;
  height: 600px;
}

.z-section-text {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
}

.accordion-title-text {
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

.faq-list {
  margin-bottom: 1.5rem;
  padding-left: 30px;
  font-size: 16px;
}

.secondary-heading-2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 6rem;
  font-size: 40px;
  line-height: 1.2;
}

.accordion-text-block {
  display: inline;
}

.faq-list-title {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.5;
  display: block;
}

.accordion-title {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: pointer;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  transition: color .1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.accordion-title.round {
  padding: 16px 20px;
}

.accordion-content {
  padding-right: 40px;
}

.accordion-content.round {
  padding-left: 24px;
  padding-right: 40px;
}

.accordion-item {
  border-bottom: 1px solid #d4d4d4;
}

.accordion-item.round {
  background-color: #fafafa;
  border: 1px #000;
  border-radius: 12px;
  margin-bottom: 6px;
}

.accordion {
  background-color: #fff;
  border-radius: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container-2 {
  max-width: 1360px;
  margin-bottom: 8rem;
  padding: 4rem 1rem;
}

.accordion-content-text {
  padding-bottom: 30px;
  font-weight: 500;
  line-height: 1.5;
}

.accordion-link {
  cursor: pointer;
  text-decoration: underline;
}

.accordion-link:hover {
  color: #146ef5;
}

.accordion-list-title {
  margin-bottom: 10px;
}

.accordion-list {
  margin-bottom: 0;
  line-height: 1.8;
}

.contact-item-title-small {
  text-transform: none;
  margin-top: 4px;
  display: inline-block;
}

.language-switch {
  padding: 0;
}

.globe-logo {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  line-height: 1;
  display: flex;
}

.en-flag-icon {
  border: 1px solid var(--grey--grey-600);
  border-radius: var(--radius--radius-2-px);
  background-image: url('../images/english_flag.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 12px;
  margin-right: 5px;
  line-height: 1;
  display: flex;
  overflow: hidden;
}

.flag-icon-wrapper {
  border-radius: 0;
  overflow: hidden;
}

.hr-flag-icon {
  border: 1px solid var(--grey--grey-600);
  border-radius: var(--radius--radius-2-px);
  background-image: url('../images/Flag_of_Croatia.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 12px;
  margin-right: 5px;
  line-height: 1;
  display: flex;
  overflow: hidden;
}

.image {
  height: 10px;
}

.hero-slide-1 {
  background-image: url('../images/funtanta_3.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.stipulations-container-2, .stipulations-container-3 {
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin-bottom: 8rem;
  margin-left: auto;
  margin-right: auto;
}

.link-underline-2, .link-underline-3, .link-underline-4 {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .section.link-cards {
    padding-top: 6rem;
  }

  .main-heading {
    font-size: 48px;
  }

  .utility-page-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .secondary-heading {
    font-size: 32px;
  }

  .secondary-heading.home {
    margin-bottom: 6rem;
  }

  .subheading {
    font-size: 28px;
  }

  .color-sg {
    height: 4rem;
  }

  .menu-button {
    color: #f8f8f8;
  }

  .nav-menu {
    flex: none;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_button {
    width: 100%;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-banner_component.fs-cc-middle_banner {
    max-width: 30rem;
  }

  .fs-cc-banner_buttons-wrapper {
    width: 100%;
    margin-top: 1rem;
  }

  .video-container {
    margin-top: 4rem;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-container {
    max-width: 100%;
  }

  .jumbo-heading {
    font-size: 72px;
  }

  .review-text {
    font-size: 36px;
  }

  .testimonial-arrow {
    display: none;
  }

  .lightbox-image {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .footer-slogan-container {
    flex: 0 auto;
  }

  .link-card-text {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-overlay {
    align-items: center;
    display: flex;
  }

  .home-heading.hero {
    letter-spacing: 2px;
    font-size: 48px;
  }

  .legal-heading {
    font-size: 48px;
  }

  .z-section-image {
    height: 500px;
  }

  .z-section-text {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .secondary-heading-2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 6rem;
  }

  .section.bottom {
    margin-bottom: -11rem;
  }

  .main-heading {
    font-size: 40px;
  }

  .stipulation-heading {
    font-size: 20px;
  }

  .category-sg {
    font-size: 36px;
  }

  .secondary-heading {
    font-size: 28px;
  }

  .subheading {
    font-size: 24px;
  }

  .color-container-sg {
    grid-template-columns: 1fr 1fr;
  }

  .utility-heading {
    font-size: 36px;
  }

  .footer-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
  }

  .copyright-text {
    order: 1;
    margin-right: 0;
  }

  .nav-container {
    justify-content: center;
    align-items: center;
    height: 4rem;
    padding-right: 1rem;
  }

  .navbar {
    border-radius: var(--radius--radius-6-px);
    width: auto;
    margin-top: 6px;
    margin-left: 6px;
    margin-right: 6px;
  }

  .menu-button {
    flex-flow: row;
    order: 9999;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    inset: auto 8px auto auto;
  }

  .menu-button.w--open {
    background-color: #0000;
    border-radius: 10px;
  }

  .nav-link {
    text-align: center;
    order: 1;
  }

  .nav-link.w--current {
    background-color: #0000;
  }

  .nav-link.cta {
    width: 8rem;
    margin: 8px auto;
  }

  .nav-link.cta.w--current {
    background-color: #0870b8;
  }

  .nav-menu {
    border-radius: var(--radius--radius-6-px);
    background-color: #fff;
    margin-top: 6px;
    padding-top: 16px;
    padding-bottom: 16px;
    box-shadow: 0 0 10px #0000001a;
  }

  .fs-cc-prefs_title {
    font-size: 1.5rem;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_button {
    min-width: 8rem;
  }

  .fs-cc-prefs_buttons-wrapper {
    flex-direction: column;
  }

  .spacing-size-sg {
    display: none;
  }

  .video-container {
    margin-top: 4rem;
  }

  .info-grid {
    grid-column-gap: 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .footer-link-block {
    justify-content: center;
    align-items: center;
  }

  .footer-link-wrapper.footer-link {
    margin-left: auto;
    margin-right: auto;
  }

  .tertiary-heading {
    margin-bottom: 2rem;
    font-size: 28px;
  }

  .jumbo-heading {
    font-size: 48px;
  }

  .features-container {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: wrap;
  }

  .review-text {
    font-size: 28px;
  }

  .question {
    align-items: flex-start;
  }

  .question-title {
    font-size: 18px;
    line-height: 1.5;
  }

  .question-answer {
    font-size: 16px;
  }

  .testimonial-slide {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    height: 400px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .main-map {
    height: 300px;
  }

  .bottom-lightbox-container {
    grid-template-columns: 1fr;
  }

  .lightbox-image {
    aspect-ratio: auto;
    height: 20rem;
  }

  .footer-slogan {
    text-align: center;
  }

  .jumbo-location {
    font-size: 32px;
  }

  .link-card-container {
    grid-template-columns: 1fr;
  }

  .home-heading {
    font-size: 36px;
  }

  .home-heading.hero {
    letter-spacing: 1px;
    font-size: 40px;
  }

  .home-heading.caps {
    font-size: 36px;
    line-height: 1.3;
  }

  .legal-heading {
    font-size: 38px;
  }

  .z-section-container {
    grid-template-columns: 1fr;
    margin-bottom: 6rem;
  }

  .z-section-text {
    padding-bottom: 3rem;
    padding-left: 8px;
    padding-right: 8px;
  }

  .accordion-title-text {
    font-size: 18px;
    line-height: 1.5;
  }

  .secondary-heading-2 {
    font-size: 28px;
  }

  .faq-list-title, .accordion-content-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .section.link-cards {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .secondary-heading.home {
    margin-bottom: 4rem;
    line-height: 1.3;
  }

  .color-container-sg {
    flex-flow: column;
  }

  .color-container-sg.gap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .brand-colors-sg {
    flex-flow: column;
  }

  .footer.small-margin-top {
    padding-top: 0;
  }

  .copyright-text {
    text-align: center;
  }

  .footer-legal-links {
    flex-flow: wrap;
  }

  .nav-container {
    padding-left: 0;
    padding-right: 6px;
  }

  .fs-cc-manager_component {
    bottom: 1rem;
    left: 1rem;
  }

  .fs-cc-prefs_text.fs-cc-essential_label {
    white-space: nowrap;
  }

  .fs-cc-banner_button {
    width: 100%;
  }

  .fs-cc-banner_component {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .fs-cc-banner_component.fs-cc-middle_banner {
    border-radius: 12px 12px 0 0;
    width: auto;
    padding-top: 2rem;
    bottom: 0%;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
  }

  .fs-cc-prefs_component {
    justify-content: flex-end;
    padding: 0;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-prefs_form {
    border-radius: 18px 18px 0 0;
    margin-top: 4rem;
    display: block;
  }

  .footer-container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .copyright-container {
    flex-flow: wrap;
  }

  .footer-link-wrapper.footer-link {
    line-height: 1.3;
  }

  .review-text {
    font-size: 24px;
  }

  .question {
    align-items: flex-start;
  }

  .answer-container {
    padding-right: 1rem;
  }

  .contact-text-container {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-slogan {
    font-size: 36px;
  }

  .jumbo-location {
    font-size: 24px;
  }

  .hero-overlay {
    overflow: hidden;
  }

  .home-heading.hero {
    font-size: 34px;
    line-height: 1.3;
  }

  .home-heading.caps {
    font-size: 9vw;
  }

  .z-section-image {
    height: 60svh;
  }

  .accordion-title {
    align-items: flex-start;
  }

  .accordion-title.round {
    padding: 16px;
  }

  .accordion-content {
    padding-right: 0;
  }

  .accordion-content.round {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-block {
    order: 9999;
    font-size: 12px;
  }

  .copyright {
    order: 9999;
  }
}

#w-node-_01bf9b43-ca53-f493-eaa9-5a15f5af1eff-597a2f76 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_301a7abe-0ec1-d9bb-dfe3-a9a482cfcb50-597a2f76 {
  grid-column: span 2 / span 2;
}

#w-node-_6082c8a7-5888-539c-60e8-3239d05ebeb5-2f4f54f2 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: auto 1fr;
  justify-self: start;
}

#w-node-_01bf9b43-ca53-f493-eaa9-5a15f5af1eff-eac937c0 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_301a7abe-0ec1-d9bb-dfe3-a9a482cfcb50-eac937c0 {
  grid-column: span 2 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-_54dda4b3-105e-6c12-883b-d59a9f1a678a-ab74581b, #w-node-a81f1731-14d9-37a1-5b54-7c0d5766e00c-ab74581b, #w-node-_54dda4b3-105e-6c12-883b-d59a9f1a678a-17a1cc36, #w-node-a81f1731-14d9-37a1-5b54-7c0d5766e00c-17a1cc36 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Krona One';
  src: url('../fonts/KronaOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}