/* breakpoints */
:root {
  --PrimaryColor: #DE0442;
  --SecondaryColor: #A89D91;
  --BackgroundColor: #fff;
  --H1Size: 3.75rem;
  --H1LineHeight: 1.2;
  --H2Size: 2.5rem;
  --H2LineHeight: 1.2;
  --H3Size: 2.0rem;
  --H3LineHeight: 1.25;
  --H4Size: 1.875rem;
  --H4LineHeight: 1.8rem;
  --H5Size: 1.5rem;
  --H5LineHeight: 1.5rem;
  --H6Size: 1.25rem;
  --H6LineHeight: 1.3;
  --PSize: 1rem;
  --PLineHeight: 1.5rem;
  --PrimaryFont: "Inter", sans-serif;
  --SecondaryFont: "Inter", sans-serif;
  --TertiaryFont: "Inter", sans-serif;
  --White: #FFF;
  --Black: #212529;
  --Grey: #E6ECEF;
  --DarkGrey: #3c3c3c;
  --BorderRadius: 0px;
  --DefaultTransition: all ease 0.3s;
  --MiddleTransition: all ease 0.5s;
  --LongTransition: all ease 1s;
  /*COLORS*/
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --black: #000;
  --black-rgb: 0, 0, 0;
  --primary: #0C4568;
  --secondary: #75B696;
  --tertiary: #D5FF76;
  --nav-toggler-icon-bg: #0C4568;
  --light-blue: #E5ECEF;
  --grey: #E6ECEF;
  --border-color: #DAE3E8;
  --clr-bg: var(--clr-primary);
  --clr-bg-rgb: var(--clr-primary-rgb);
  /*FONT*/
  --font-primary: "Inter", sans-serif;
  --font-style-normal: normal;
  --font-style-italic: italic;
  --headline-clr: var(--black);
  /*SPACER*/
  --spaceBetweenElements: 5rem;
  /*DECORATION*/
  --border-radius-xxs: 0.3rem;
  /* 6px */
  --border-radius-xs: 0.4rem;
  /* 8px */
  --border-radius-sm: 0.6rem;
  /* 12px */
  --border-radius-md: 0.8rem;
  /* 16px */
  --border-radius-lg: 1.2rem;
  /* 24px */
  --border-radius-xl: 1.6rem;
  /* 32px */
  --border-radius-full: 99rem;
  /*TRANSITIONS*/
  --transition-default-duration: .3s;
  --transition-5s-duration: .5s;
  --transition: all var(--transition-default-duration) ease-in-out;
  --transition-fast: all .1s ease-in-out;
  --transition-slow: all .5s ease-in-out;
}
@media (max-width: 1199.98px) {
  :root {
    --spaceBetweenElements: 5rem;
  }
}
@media (max-width: 991.98px) {
  :root {
    --spaceBetweenElements: 4rem;
  }
}
@media (max-width: 767.98px) {
  :root {
    --spaceBetweenElements: 3rem;
  }
}
:root {
  --space: 10rem;
  --paddingY: calc(var(--spaceBetweenElements) / 2);
  font-size: 20px;
  line-height: 1.4;
  --primary-color: #d5ff76;
  --secondary-color: #084827;
  --secondary-color-rgb: 8, 72, 39;
  --tertiary-color: #8dc73f;
  --font-color: #084827;
  --light-color: #d5ff76;
  --dark-color: #8dc73f;
}
.future-lab-schema {
  --primary-color: #D5FF76;
  --secondary-color: #0C4568;
  --secondary-color-rgb: 12, 69, 104;
  --tertiary-color: #75B696;
  --font-color: #0C4568;
  --light-color: #D5FF76;
  --dark-color: #75B696;
}
.community-circle-schema {
  --primary-color: #d4f593;
  --secondary-color: #1c3a30;
  --secondary-color-rgb: 28, 58, 48;
  --tertiary-color: #94AD61;
  --font-color: #1c3a30;
  --light-color: #d4f593;
  --dark-color: #94AD61;
}
.tourism-camp-schema {
  --primary-color: #acb478;
  --secondary-color: #27452e;
  --secondary-color-rgb: 39, 69, 46;
  --tertiary-color: #aa333e;
  --font-color: #666666;
  --light-color: #acb478;
  --dark-color: #27452e;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
:root {
  --transition: 0.6s ease-in-out;
}
body {
  font: 18px/1.4 var(--PrimaryFont);
  transition: background-color 1s ease;
  position: relative;
}
body * {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.scrolled .apple {
  padding: 0;
}
.pointer {
  cursor: pointer;
}
*:focus {
  outline: none;
}
.apple {
  position: absolute;
  width: 100%;
  min-height: 101vh;
  padding: 20px;
  transition: var(--transition);
}
@media (max-width: 1199.98px) {
  .apple {
    padding: 12px;
  }
}
@media (max-width: 991.98px) {
  .apple {
    padding: 6px;
  }
}
@media (max-width: 767.98px) {
  .apple {
    overflow-x: hidden;
  }
  @supports (overflow-x: clip) {
    .apple {
      overflow-x: clip;
    }
  }
}
.img__sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 6rem !important;
}
.element__sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 6rem !important;
}
@media (max-width: 991.98px) {
  .element__sticky {
    position: unset;
  }
}
.rounded {
  border-radius: var(--border-radius) !important;
}
.rounded-md {
  border-radius: calc(var(--border-radius) / 2) !important;
}
.border-radius-xxs {
  border-radius: 0.3rem;
}
.border-radius-xs {
  border-radius: 0.4rem;
}
.border-radius-sm {
  border-radius: 0.6rem;
}
.border-radius-md {
  border-radius: 0.8rem;
}
.border-radius-lg {
  border-radius: 1.2rem;
}
.border-radius-xl {
  border-radius: 1.6rem;
}
.greensign-rounded {
  border-radius: 8px 8px 0 8px;
}
.center__vertical {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.img__overlay {
  background: rgba(5, 30, 45, 0.1);
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.border-bottom, .border-top {
  border-color: var(--border-color) !important;
  opacity: 1;
}
.loadingscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 25000;
  pointer-events: none;
  user-select: none;
}
.loadingscreen img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 50vw;
  width: 150px;
  pointer-events: none;
}
.color-white {
  background-color: var(--White);
}
.color-petrol {
  background-color: var(--secondary-color);
}
.color-petrol * {
  color: var(--White);
}
.color-petrol .element__with--tiles .tile {
  border-bottom: 2px solid var(--White);
}
.dividing__line hr {
  height: 1px;
  background-color: #32333C;
  opacity: 1;
}
.alert {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  background-color: var(--button-background-color);
  color: var(--button-font-color);
  margin-bottom: 2rem;
}
.alert * {
  color: inherit;
}
.alert a {
  color: var(--dark-color) !important;
}
.alert p:last-child {
  margin-bottom: 0 !important;
}
.alert.alert-warning {
  background-color: #FFD700;
  color: #000;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--white);
  border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb {
  background: #CCCCCC;
  border-radius: var(--border-radius-full);
  border: 2px solid var(--white);
}
::-webkit-scrollbar-thumb:hover {
  background: #BFBFBF;
  border-radius: var(--border-radius-full);
}
.alert {
  padding: 1rem;
  border-radius: 8px 8px 0 8px;
  background-color: var(--light-color);
  border: 0;
  color: var(--font-color);
  margin-bottom: 2rem;
}
.c-sst-box {
  padding: 0;
  border-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: var(--sst-box-box-shadow);
  box-shadow: none;
  background: var(--black-secondary);
  width: 100%;
}
.c-sst-heading--h3 {
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--font-color);
}
.l-sst-form input[type=email], .l-sst-form input[type=password], .l-sst-form input[type=text] {
  border: 1px solid var(--border-color) !important;
  transition: var(--transition-default-duration);
  border-radius: var(--border-radius-xxxs);
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-top: 0;
}
.l-sst-form input[type=email]:focus, .l-sst-form input[type=password]:focus, .l-sst-form input[type=text]:focus {
  box-shadow: none;
  border-color: var(--font-color) !important;
}
.c-sst-label {
  font-weight: normal;
  font-size: 1rem;
  font-family: var(--font-primary);
  margin-bottom: 0.5rem;
  color: var(--font-color);
}
.c-sst-checkbox__indicator {
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  height: 24px;
  width: 24px;
  background: var(--sst-checkbox-accent);
  color: var(--sst-checkbox-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xs);
}
.c-sst-checkbox__description {
  padding-left: 24px;
}
.c-sst-checkbox__description span {
  font-size: 0.8rem;
  color: var(--font-color);
}
.c-sst-checkbox input:focus ~ .c-sst-checkbox__indicator {
  --sst-checkbox-border-color: var(--sst-checkbox-border-color-active);
  outline: none;
  box-shadow: none;
}
#MemberLoginForm_LoginForm_action_doLogin {
  margin-bottom: 1rem;
  width: 100%;
  border-radius: var(--border-radius-xs) var(--border-radius-xs) 0 var(--border-radius-xs);
  border: 0;
  text-align: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  transition: var(--transition);
  padding: 0.7rem 1rem;
}
#MemberLoginForm_LoginForm_action_doLogin:hover {
  background: color-mix(in srgb, var(--secondary-color) 90%, white);
}
#MemberLoginForm_LoginForm_action_doLogin:focus {
  box-shadow: none;
}
#ForgotPassword a {
  color: var(--font-color);
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  transition: var(--transition);
}
#ForgotPassword a:hover {
  color: var(--dark-color);
}
#ForgotPassword p:last-child {
  margin-bottom: 0;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-tertiary {
  background-color: var(--tertiary-color) !important;
}
.bg-white {
  background-color: var(--White) !important;
}
.fully {
  min-height: 100vh;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22%2Fthemes%2Fgreensignevents%2Fscss%2Fsettings%2F_settings.scss%22%2C%22%2Fthemes%2Fgreensignevents%2Fscss%2Fsettings%2F_variables.scss%22%2C%22%2Fthemes%2Fgreensignevents%2Fscss%2Fsettings%2F..%2Fsettings%2Fbreakpoints.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAAA%3BACEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACsCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFtCJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAExCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFyDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAExEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFqFJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAaE%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%22%7D */