/***
    style file that is linked in the markup.
    it's for combining all the different styles and for adding
    custom styles only for this specific site. 
***/
/***
    any variables that are relevant overall as utilities
    but also for the template.

    these are the defaults. they can be overwritten in 
    scss files that are imported after this one into styles.scss.
***/
/*** media breakpoints ***/
/*** spacing variables ***/
/*** custom padding ***/
/*** colors ***/
/*** layout sizes ***/
/*** shadows ***/
/*** fonts ***/
@import url("https://fonts.googleapis.com/css2?family=IM+Fell+DW+Pica&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;900&display=swap");
/*** scroll bar ***/
/*** transitions ***/
/*** nav ***/
/***
    any variables that are relevant overall as utilities
    but also for the template.

    these are the defaults. they can be overwritten in 
    scss files that are imported after this one into styles.scss.
***/
/*** media breakpoints ***/
/*** spacing variables ***/
/*** custom padding ***/
/*** colors ***/
/*** layout sizes ***/
/*** shadows ***/
/*** fonts ***/
@import url("https://fonts.googleapis.com/css2?family=IM+Fell+DW+Pica&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;900&display=swap");
/*** scroll bar ***/
/*** transitions ***/
/*** nav ***/
/*** MATERIAL ICONS ***/
@import url("https://fonts.googleapis.com/css2?family=Grand+Hotel&family=Inconsolata&family=Josefin+Sans:wght@100;300;400;500;600;700&family=Lato:wght@100;300;400;700&family=Roboto+Slab:wght@100;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IM+Fell+DW+Pica&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IM+Fell+DW+Pica&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;900&display=swap");
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

/*** FLEX ***/
.flex {
  display: flex;
}
.flex.column {
  flex-flow: column;
}
.flex.hc {
  justify-content: center;
}
.flex.hsb {
  justify-content: space-between;
}
.flex.vc {
  align-items: center;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.wrap.reverse {
  flex-wrap: wrap-reverse;
}
.flex.gap-xs {
  gap: 4px;
}
.flex.gap-s {
  gap: 6px;
}
.flex.gap-m {
  gap: 8px;
}
.flex.gap-ml {
  gap: 10px;
}
.flex.gap-l {
  gap: 16px;
}
.flex.gap-xl {
  gap: 24px;
}
.flex.gap-xxl {
  gap: 32px;
}
.flex .as-fs {
  align-self: flex-start;
}
.flex .as-c {
  align-self: center;
}

/*** SHADOWS ***/
.shadow-regular {
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}

/*** GRID ***/
.grid {
  display: grid;
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid.cols-r-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid.vc {
  align-items: center;
}
.grid > .span-all-cols {
  grid-column: 1/-1;
}
.grid.gap-l {
  gap: 16px;
}
.grid.gap-xl {
  gap: 24px;
}
.grid.gap-xxl {
  gap: 32px;
}
.grid.gap-xxxl {
  gap: 64px;
}
.grid.col-gap-l {
  column-gap: 16px;
}
.grid.row-gap-l {
  row-gap: 16px;
}
.grid.col-gap-xl {
  column-gap: 24px;
}
.grid.row-gap-xl {
  row-gap: 24px;
}
.grid.col-gap-xxl {
  column-gap: 32px;
}
.grid.row-gap-xxl {
  row-gap: 32px;
}

/*** SIZES ***/
.w100vw {
  width: 100vw;
}

.w100 {
  width: 100%;
}

.w100.margin-lr-l {
  width: calc(100% - 32px);
}

.h100vh {
  height: 100vh;
}

.h100 {
  height: 100%;
}

/*** SPACING ***/
.margin-xs {
  margin: 4px;
}

.margin-s {
  margin: 6px;
}

.margin-m {
  margin: 8px;
}

.margin-l {
  margin: 16px;
}

.margin-lr-l {
  margin-left: 16px;
  margin-right: 16px;
}

.margin-xl {
  margin: 24px;
}

.margin-xxl {
  margin: 32px;
}

.margin-hc {
  margin: 0 auto;
}

.padding-xs {
  padding: 4px;
}

.padding-s {
  padding: 6px;
}

.padding-m {
  padding: 8px;
}

.padding-lr-m {
  padding-left: 8px;
  padding-right: 8px;
}

.padding-tb-m {
  padding-top: 8px;
  padding-bottom: 8px;
}

.padding-ml {
  padding: 10px;
}

.padding-lr-ml {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-tb-ml {
  padding-top: 10px;
  padding-bottom: 10px;
}
.padding-tb-ml.comp {
  padding-bottom: 12px;
}

.padding-tb-mll {
  padding-top: 12px;
  padding-bottom: 12px;
}

.padding-l {
  padding: 16px;
}

.padding-lr-l {
  padding-left: 16px;
  padding-right: 16px;
}

.padding-tb-l {
  padding-top: 16px;
  padding-bottom: 16px;
}

.padding-b-l {
  padding-bottom: 16px;
}

.padding-xl {
  padding: 24px;
}

.padding-lr-xl {
  padding-left: 24px;
  padding-right: 24px;
}

.padding-tb-xl {
  padding-top: 24px;
  padding-bottom: 24px;
}

.padding-xxl {
  padding: 32px;
}

.padding-xxxl {
  padding: 64px;
}

.padding-lr-xxl {
  padding-left: 32px;
  padding-right: 32px;
}

.padding-lr-xxxl {
  padding-left: 64px;
  padding-right: 64px;
}

.padding-tb-xxl {
  padding-top: 32px;
  padding-bottom: 32px;
}

.padding-tb-xxxl {
  padding-top: 64px;
  padding-bottom: 64px;
}

/*** HEADINGS & TYPO DEFAULTS ***/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-weight: 300;
}
h1 ~ p,
h2 ~ p,
h3 ~ p,
h4 ~ p,
h5 ~ p,
h6 ~ p {
  margin-top: 0;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.7rem;
}

h2 {
  margin-top: 1.3rem;
  margin-bottom: 1rem;
}

h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.15rem;
  line-height: 2rem;
}
p.small {
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.sans {
  font-family: "Open Sans", sans-serif;
}

/*** FONT WEIGHTS ***/
.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/*** FONT COLOR ***/
.fc-light {
  color: white;
}

/*** TEXT MISC ***/
.ws-nowrap {
  white-space: nowrap;
}

.lh-1 {
  line-height: 1;
}

/*** POSITIONING ***/
.pos-sticky {
  position: sticky;
  top: 0;
}

.pos-abs {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.tl-0 {
  top: 0;
  left: 0;
}

/*** BORDERS ***/
.rounded-xs {
  border-radius: 4px;
}

.rounded-s {
  border-radius: 6px;
}

.rounded-m {
  border-radius: 8px;
}

.rounded-ml {
  border-radius: 10px;
}

.rounded-l {
  border-radius: 16px;
}

.rounded-xl {
  border-radius: 24px;
}

.rounded-xxl {
  border-radius: 32px;
}

/*** BACKGROUNDS ***/
.bg-p {
  background-color: #EB42EB;
}
.bg-p._-2 {
  background-color: #fce3fc;
}
.bg-p._-1 {
  background-color: #f287f2;
}
.bg-p._1 {
  background-color: #cb15cb;
}
.bg-p._2 {
  background-color: #6f0c6f;
}

.bg-s {
  background-color: #00EBEB;
}
.bg-s._-2 {
  background-color: #9fffff;
}
.bg-s._-1 {
  background-color: #39ffff;
}
.bg-s._1 {
  background-color: #009f9f;
}
.bg-s._2 {
  background-color: #003939;
}

/*** SCROLL BAR ***/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  width: 8px;
  border: 3px solid white;
  border-radius: 4px;
  background: #bfbfbf;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  border: 2px solid white;
  transition: all 0.3s ease;
  background: #949494;
}

/*** BUTTONS ***/
.button {
  text-decoration: none;
  text-align: center;
  font-family: "Quicksand", "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
}
.button.fw-300 {
  font-weight: 300;
}
.button.fw-400 {
  font-weight: 400;
}
.button.fw-600 {
  font-weight: 600;
}
.button.fw-700 {
  font-weight: 700;
}
.button.size-s {
  padding: 6px 10px;
}
.button.size-m {
  padding: 10px 16px;
}
.button.size-l {
  padding: 16px 24px;
}
.button.neutral-light {
  background-color: white;
  color: #003939;
}
.button.neutral-light:hover:not(.floating) {
  color: #009f9f;
}
.button.neutral-light.inverse {
  box-shadow: 0 0 65px 5px rgba(0, 0, 0, 0.15);
}
.button.neutral-light.bg-hover-dark:hover {
  color: white;
  background-color: #003939;
}
.button.neutral-light.bordered:not(.bg-hover-dark) {
  border: 1px solid #003939;
}
.button.neutral-light.bordered:not(.bg-hover-dark):hover:not(.floating) {
  border: 1px solid #009f9f;
}
.button.primary, .button.primary-1, .button.secondary, .button.secondary-2, .button.accent {
  color: white;
}
.button.primary {
  background-color: #EB42EB;
}
.button.primary:hover:not(.floating) {
  background-color: #e92be9;
}
.button.primary.bordered {
  border: 1px solid #EB42EB;
  background-color: white;
  color: #EB42EB;
}
.button.primary.bordered:hover:not(.floating) {
  background-color: #b413b4;
  color: white;
}
.button.primary-1 {
  background-color: #cb15cb;
}
.button.primary-1:hover:not(.floating) {
  background-color: #b413b4;
}
.button.primary-1.bordered {
  border: 1px solid #cb15cb;
  background-color: white;
  color: #cb15cb;
}
.button.primary-1.bordered:hover:not(.floating) {
  background-color: #b413b4;
  color: white;
}
.button.secondary {
  background-color: #00EBEB;
}
.button.secondary:hover:not(.floating) {
  background-color: #00d2d2;
}
.button.secondary.bordered {
  border: 1px solid #00EBEB;
  background-color: white;
  color: #00EBEB;
}
.button.secondary.bordered:hover:not(.floating) {
  background-color: #00d2d2;
  color: white;
}
.button.secondary-2 {
  background-color: #003939;
}
.button.secondary-2:hover:not(.floating) {
  background-color: #005252;
}
.button.secondary-2.bordered {
  border: 1px solid #003939;
  background-color: white;
  color: #003939;
}
.button.secondary-2.bordered:hover:not(.floating) {
  background-color: #005252;
  color: white;
}
.button.accent {
  background-color: #EBEB2D;
}
.button.accent:hover:not(.floating) {
  background-color: #e8e816;
}
.button.accent.bordered {
  border: 1px solid #EBEB2D;
  background-color: white;
  color: #EBEB2D;
}
.button.accent.bordered:hover:not(.floating) {
  background-color: #e8e816;
  color: white;
}
.button.rounded {
  border-radius: 6px;
}
.button.floating {
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
.button.floating:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.07);
}
.button.floating.inverse {
  box-shadow: 0 0 65px 5px rgba(0, 0, 0, 0.15);
}
.button.floating.inverse:hover {
  transform: scale(0.98);
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.15);
}

/*** OTHER ***/
.box-bb {
  box-sizing: border-box;
}

/*** RESPONSIVE ***/
@media screen and (min-width: 769px) {
  .grid.cols-s-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .grid.cols-l-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
/***
    use to overwrite variables and classes from
    _variables and _utilities for the current
    instance of the site.

    can also be used to add additional 
***/
/*** instance-specific ***/
/*** template overrides ***/
/*** fonts ***/
/***
    any styles that belong to the site "template"
    rather than the specific instance of the site.
***/
/***
    any variables that are relevant overall as utilities
    but also for the template.

    these are the defaults. they can be overwritten in 
    scss files that are imported after this one into styles.scss.
***/
/*** media breakpoints ***/
/*** spacing variables ***/
/*** custom padding ***/
/*** colors ***/
/*** layout sizes ***/
/*** shadows ***/
/*** fonts ***/
/*** scroll bar ***/
/*** transitions ***/
/*** nav ***/
/***
    any variables that are relevant overall as utilities
    but also for the template.

    these are the defaults. they can be overwritten in 
    scss files that are imported after this one into styles.scss.
***/
/*** media breakpoints ***/
/*** spacing variables ***/
/*** custom padding ***/
/*** colors ***/
/*** layout sizes ***/
/*** shadows ***/
/*** fonts ***/
/*** scroll bar ***/
/*** transitions ***/
/*** nav ***/
/*** MATERIAL ICONS ***/
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

/*** FLEX ***/
.flex {
  display: flex;
}
.flex.column {
  flex-flow: column;
}
.flex.hc {
  justify-content: center;
}
.flex.hsb {
  justify-content: space-between;
}
.flex.vc {
  align-items: center;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.wrap.reverse {
  flex-wrap: wrap-reverse;
}
.flex.gap-xs {
  gap: 4px;
}
.flex.gap-s {
  gap: 6px;
}
.flex.gap-m {
  gap: 8px;
}
.flex.gap-ml {
  gap: 10px;
}
.flex.gap-l {
  gap: 16px;
}
.flex.gap-xl {
  gap: 24px;
}
.flex.gap-xxl {
  gap: 32px;
}
.flex .as-fs {
  align-self: flex-start;
}
.flex .as-c {
  align-self: center;
}

/*** SHADOWS ***/
.shadow-regular {
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}

/*** GRID ***/
.grid {
  display: grid;
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid.cols-r-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid.vc {
  align-items: center;
}
.grid > .span-all-cols {
  grid-column: 1/-1;
}
.grid.gap-l {
  gap: 16px;
}
.grid.gap-xl {
  gap: 24px;
}
.grid.gap-xxl {
  gap: 32px;
}
.grid.gap-xxxl {
  gap: 64px;
}
.grid.col-gap-l {
  column-gap: 16px;
}
.grid.row-gap-l {
  row-gap: 16px;
}
.grid.col-gap-xl {
  column-gap: 24px;
}
.grid.row-gap-xl {
  row-gap: 24px;
}
.grid.col-gap-xxl {
  column-gap: 32px;
}
.grid.row-gap-xxl {
  row-gap: 32px;
}

/*** SIZES ***/
.w100vw {
  width: 100vw;
}

.w100 {
  width: 100%;
}

.w100.margin-lr-l {
  width: calc(100% - 32px);
}

.h100vh {
  height: 100vh;
}

.h100 {
  height: 100%;
}

/*** SPACING ***/
.margin-xs {
  margin: 4px;
}

.margin-s {
  margin: 6px;
}

.margin-m {
  margin: 8px;
}

.margin-l {
  margin: 16px;
}

.margin-lr-l {
  margin-left: 16px;
  margin-right: 16px;
}

.margin-xl {
  margin: 24px;
}

.margin-xxl {
  margin: 32px;
}

.margin-hc {
  margin: 0 auto;
}

.padding-xs {
  padding: 4px;
}

.padding-s {
  padding: 6px;
}

.padding-m {
  padding: 8px;
}

.padding-lr-m {
  padding-left: 8px;
  padding-right: 8px;
}

.padding-tb-m {
  padding-top: 8px;
  padding-bottom: 8px;
}

.padding-ml {
  padding: 10px;
}

.padding-lr-ml {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-tb-ml {
  padding-top: 10px;
  padding-bottom: 10px;
}
.padding-tb-ml.comp {
  padding-bottom: 12px;
}

.padding-tb-mll {
  padding-top: 12px;
  padding-bottom: 12px;
}

.padding-l {
  padding: 16px;
}

.padding-lr-l {
  padding-left: 16px;
  padding-right: 16px;
}

.padding-tb-l {
  padding-top: 16px;
  padding-bottom: 16px;
}

.padding-b-l {
  padding-bottom: 16px;
}

.padding-xl {
  padding: 24px;
}

.padding-lr-xl {
  padding-left: 24px;
  padding-right: 24px;
}

.padding-tb-xl {
  padding-top: 24px;
  padding-bottom: 24px;
}

.padding-xxl {
  padding: 32px;
}

.padding-xxxl {
  padding: 64px;
}

.padding-lr-xxl {
  padding-left: 32px;
  padding-right: 32px;
}

.padding-lr-xxxl {
  padding-left: 64px;
  padding-right: 64px;
}

.padding-tb-xxl {
  padding-top: 32px;
  padding-bottom: 32px;
}

.padding-tb-xxxl {
  padding-top: 64px;
  padding-bottom: 64px;
}

/*** HEADINGS & TYPO DEFAULTS ***/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}
h1 ~ p,
h2 ~ p,
h3 ~ p,
h4 ~ p,
h5 ~ p,
h6 ~ p {
  margin-top: 0;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.7rem;
}

h2 {
  margin-top: 1.3rem;
  margin-bottom: 1rem;
}

h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  line-height: 2rem;
}
p.small {
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.sans {
  font-family: "Lato", sans-serif;
}

/*** FONT WEIGHTS ***/
.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/*** FONT COLOR ***/
.fc-light {
  color: white;
}

/*** TEXT MISC ***/
.ws-nowrap {
  white-space: nowrap;
}

.lh-1 {
  line-height: 1;
}

/*** POSITIONING ***/
.pos-sticky {
  position: sticky;
  top: 0;
}

.pos-abs {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.tl-0 {
  top: 0;
  left: 0;
}

/*** BORDERS ***/
.rounded-xs {
  border-radius: 4px;
}

.rounded-s {
  border-radius: 6px;
}

.rounded-m {
  border-radius: 8px;
}

.rounded-ml {
  border-radius: 10px;
}

.rounded-l {
  border-radius: 16px;
}

.rounded-xl {
  border-radius: 24px;
}

.rounded-xxl {
  border-radius: 32px;
}

/*** BACKGROUNDS ***/
.bg-p {
  background-color: #419CFF;
}
.bg-p._-2 {
  background-color: #D1E7FF;
}
.bg-p._-1 {
  background-color: #94C7FF;
}
.bg-p._1 {
  background-color: #135BAA;
}
.bg-p._2 {
  background-color: #002752;
}

.bg-s {
  background-color: #00F3B1;
}
.bg-s._-2 {
  background-color: #CCFFF1;
}
.bg-s._-1 {
  background-color: #ACFCE6;
}
.bg-s._1 {
  background-color: #008F68;
}
.bg-s._2 {
  background-color: #005841;
}

/*** SCROLL BAR ***/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  width: 8px;
  border: 3px solid white;
  border-radius: 4px;
  background: #bfbfbf;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  border: 2px solid white;
  transition: all 0.3s ease;
  background: #949494;
}

/*** BUTTONS ***/
.button {
  text-decoration: none;
  text-align: center;
  font-family: "Lato", "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.button.fw-300 {
  font-weight: 300;
}
.button.fw-400 {
  font-weight: 400;
}
.button.fw-600 {
  font-weight: 600;
}
.button.fw-700 {
  font-weight: 700;
}
.button.size-s {
  padding: 6px 10px;
}
.button.size-m {
  padding: 10px 16px;
}
.button.size-l {
  padding: 16px 24px;
}
.button.neutral-light {
  background-color: white;
  color: #001429;
}
.button.neutral-light:hover:not(.floating) {
  color: #00468f;
}
.button.neutral-light.inverse {
  box-shadow: 0 0 65px 5px rgba(0, 0, 0, 0.15);
}
.button.neutral-light.bg-hover-dark:hover {
  color: white;
  background-color: #005841;
}
.button.neutral-light.bordered:not(.bg-hover-dark) {
  border: 1px solid #001429;
}
.button.neutral-light.bordered:not(.bg-hover-dark):hover:not(.floating) {
  border: 1px solid #00468f;
}
.button.primary, .button.primary-1, .button.secondary, .button.secondary-2, .button.accent {
  color: white;
}
.button.primary {
  background-color: #419CFF;
}
.button.primary:hover:not(.floating) {
  background-color: #288fff;
}
.button.primary.bordered {
  border: 1px solid #419CFF;
  background-color: white;
  color: #419CFF;
}
.button.primary.bordered:hover:not(.floating) {
  background-color: #0068da;
  color: white;
}
.button.primary-1 {
  background-color: #135BAA;
}
.button.primary-1:hover:not(.floating) {
  background-color: #104f93;
}
.button.primary-1.bordered {
  border: 1px solid #135BAA;
  background-color: white;
  color: #135BAA;
}
.button.primary-1.bordered:hover:not(.floating) {
  background-color: #104f93;
  color: white;
}
.button.secondary {
  background-color: #00F3B1;
}
.button.secondary:hover:not(.floating) {
  background-color: #00da9e;
}
.button.secondary.bordered {
  border: 1px solid #00F3B1;
  background-color: white;
  color: #00F3B1;
}
.button.secondary.bordered:hover:not(.floating) {
  background-color: #00da9e;
  color: white;
}
.button.secondary-2 {
  background-color: #005841;
}
.button.secondary-2:hover:not(.floating) {
  background-color: #007254;
}
.button.secondary-2.bordered {
  border: 1px solid #005841;
  background-color: white;
  color: #005841;
}
.button.secondary-2.bordered:hover:not(.floating) {
  background-color: #007254;
  color: white;
}
.button.accent {
  background-color: #AF8BFF;
}
.button.accent:hover:not(.floating) {
  background-color: #9d72ff;
}
.button.accent.bordered {
  border: 1px solid #AF8BFF;
  background-color: white;
  color: #AF8BFF;
}
.button.accent.bordered:hover:not(.floating) {
  background-color: #9d72ff;
  color: white;
}
.button.rounded {
  border-radius: 6px;
}
.button.floating {
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
.button.floating:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.07);
}
.button.floating.inverse {
  box-shadow: 0 0 65px 5px rgba(0, 0, 0, 0.15);
}
.button.floating.inverse:hover {
  transform: scale(0.98);
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.15);
}

/*** OTHER ***/
.box-bb {
  box-sizing: border-box;
}

/*** RESPONSIVE ***/
@media screen and (min-width: 769px) {
  .grid.cols-s-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .grid.cols-l-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
/*** HEADER & NAV ***/
#header {
  background-color: hsl(0deg, 23%, 94%);
  height: 40px;
  z-index: 1000;
  transition: all 0.3s ease;
}
#header #nagivation {
  background: hsl(0deg, 23%, 94%);
}
#header.scrolled {
  background-color: white;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}
#header.scrolled #nagivation {
  background: white;
}
#header #header-items {
  width: 100%;
}
#header #nav-trigger-input {
  display: none;
}
#header #logo {
  float: left;
}
#header #logo img {
  height: 36px;
}
#header #header-wrapper {
  padding: 16px;
}
#header #header-wrapper:has(> #nav-trigger-input:checked) {
  background: white;
}
#header #nav-trigger-input:checked ~ #navigation {
  max-height: 100%;
  transition: max-height 0.3s ease-out;
}
#header #nav-trigger-input:checked ~ #header-items #nav-trigger #line {
  background: transparent;
}
#header #nav-trigger-input:checked ~ #header-items #nav-trigger #line::before {
  transform: rotate(-45deg);
  top: 0;
}
#header #nav-trigger-input:checked ~ #header-items #nav-trigger #line::after {
  transform: rotate(45deg);
  top: 0;
}
#header #nav-trigger {
  cursor: pointer;
  float: right;
  padding: 18.5px 0;
}
#header #nav-trigger #line {
  background: #001429;
  display: block;
  height: 3px;
  position: relative;
  width: 20px;
  border-radius: 1.5px;
}
#header #nav-trigger #line::before {
  display: block;
  background: #001429;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  border-radius: 1.5px;
  top: 5px;
}
#header #nav-trigger #line::after {
  display: block;
  background: #001429;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  border-radius: 1.5px;
  top: -5px;
}
#header #navigation {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  background: white;
  overflow: hidden;
  max-height: 0;
}
#header #navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
#header #navigation ul li:not(:last-child) a {
  border-bottom: 0px solid #94C7FF;
}
#header #navigation ul a {
  font-weight: 400;
  color: #001429;
  text-decoration: none;
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
  transition: all 0.3s ease;
}
#header #navigation ul a:hover {
  background: #00F3B1;
  color: #001429;
}
#header #navigation ul a.cta {
  background: #419CFF;
  color: white;
}
#header #navigation ul a.cta:hover {
  background: #104f93;
}
#header #navigation ul a.cta #cta-icon {
  font-size: 16px;
}
#header #navigation ul #cta-group {
  margin-top: 24px;
}

/*** FOOTER ***/
#footer {
  margin-top: 64px;
}
#footer .background {
  background: #D1E7FF;
}

/*** SECTIONS ***/
footer.full-width .background,
section.full-width .background {
  box-sizing: border-box;
  width: 100vw;
}

/*** MISC ***/
p, h1, h2, h3, h4, h5, h6 {
  color: #001429;
}

#grid-wrapper {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 32px;
}

#scroll-container {
  width: 100vw;
  height: calc(100vh - 40px);
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.padding-lr {
  padding: 0 16px;
}

.padding-scroll-adjusted {
  padding: 16px;
  padding-right: 6px;
}

.padding-lr-scroll-adjusted {
  padding-left: 16px;
  padding-right: 6px;
}

.padding-wrapper {
  padding-left: 16px;
  padding-right: 6px;
}

.full-height {
  min-height: calc(100vh - 48px);
}
.full-height:first-child {
  min-height: calc(100vh - 40px);
}
.full-height:first-child.blend-in {
  height: 100vh;
  margin-top: -60px;
}

a:link {
  color: #135BAA;
}
a:visited {
  color: #135BAA;
}
a:hover {
  color: #002752;
}
a:active {
  color: #002752;
}

/*** RESPONSIVE ***/
@media screen and (min-width: 769px) {
  /*** HEADER & NAV***/
  #header {
    height: 60px;
    display: flex;
  }
  #header #header-wrapper {
    padding: 0 16px;
  }
  #header #header-items {
    width: auto;
  }
  #header #navigation {
    background: none;
  }
  #header.scrolled {
    height: 48px;
  }
  #header.scrolled #header-items #logo img {
    height: 43.2px;
  }
  #header.scrolled #navigation ul a {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 6px;
    margin-right: 6px;
  }
  #header.scrolled #navigation ul a:last-child {
    margin-right: 0px;
  }
  #header #header-items #logo img {
    height: 54px;
    transition: height 0.3s ease;
  }
  #header #header-items #nav-trigger {
    display: none;
  }
  #header #navigation {
    max-height: unset;
    position: unset;
    top: unset;
    height: unset;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  #header #navigation ul {
    flex-direction: row;
    gap: 6px;
    padding: 0;
  }
  #header #navigation ul li:not(:last-child) a {
    border: none;
  }
  #header #navigation ul a {
    padding-left: 16px;
    padding-right: 16px;
    margin: 0;
    width: 100%;
  }
  #header #navigation ul #cta-group {
    margin-top: unset;
  }
  /*** MAIN GRID ***/
  #grid-wrapper {
    grid-template-columns: 2fr 1fr;
    row-gap: 32px;
  }
  /*** MISC ***/
  #scroll-container {
    width: 100vw;
    height: calc(100vh - 60px);
  }
  #scroll-container.scrolled {
    height: calc(100vh - 48px);
  }
  .padding-lr {
    padding: 0 16px;
  }
  .padding-scroll-adjusted {
    padding: 16px;
    padding-right: 6px;
  }
  .padding-lr-scroll-adjusted {
    padding-left: 16px;
    padding-right: 6px;
  }
  .padding-wrapper {
    padding-left: 16px;
    padding-right: 6px;
  }
  .full-height {
    height: calc(100vh - 48px);
  }
  .full-height:first-child {
    height: calc(100vh - 60px);
  }
  .full-height:first-child.blend-in {
    height: 100vh;
    margin-top: -60px;
  }
}
@media screen and (min-width: 1281px) {
  /*** MAIN-GRID ***/
  #grid-wrapper,
#header-wrapper {
    max-width: 1280px;
  }
  #header #header-wrapper {
    padding: 0 11px;
  }
  /*** SECTIONS ***/
  footer.full-width .background,
section.full-width .background {
    margin-left: calc((100vw - 1280px) / -2);
    width: 100vw;
  }
  footer.full-width .background .content,
section.full-width .background .content {
    max-width: 1280px;
  }
}
html,
body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Roboto Slab", serif;
}

/*** PAGE: EXAMPLE ***/
#hero {
  position: relative;
}
#hero #cta-wrapper {
  z-index: 200;
}

#example-grid #gradient-grid > * {
  height: 150px;
  border-radius: 10px;
  background-image: linear-gradient(45deg, #135BAA 0%, #419CFF 33%, #00F3B1 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
#example-grid #gradient-grid > *:hover {
  background: #AF8BFF;
}

@keyframes bobbing-shadow-there {
  0% {
    width: 240px;
    left: calc(20vw + 30px);
    filter: blur(4px);
  }
  50% {
    width: 220px;
    left: calc(20vw + 30px + 10px);
    filter: blur(6px);
  }
}
@keyframes bobbing-shadow-back {
  50% {
    width: 220px;
    left: calc(20vw + 30px + 10px);
    filter: blur(6px);
  }
  100% {
    width: 240px;
    left: calc(20vw + 30px);
    filter: blur(4px);
  }
}
#bobbing-test #background-wrapper {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, hsl(0deg, 0%, 100%) 0%, hsl(0deg, 20%, 97%) 50%, hsl(0deg, 22%, 95%) 58%, hsl(0deg, 23%, 94%) 100%);
}
#bobbing-test #background-wrapper video {
  top: 10vh;
  left: 20vw;
  height: 300px;
}
#bobbing-test #background-wrapper #shadow {
  width: 240px;
  height: 10px;
  border-radius: 50%;
  top: calc(10vh + 300px + 20px);
  left: calc(20vw + 30px);
  background: rgba(61, 125, 194, 0.25);
  filter: blur(4px);
  animation-name: bobbing-shadow-there, bobbing-shadow-back;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: -4.1s;
}
#bobbing-test #background-wrapper #image {
  height: 300px;
  top: 10vh;
  left: calc(20vw + 300px);
}

@keyframes bobbing-shadow-there {
  0% {
    width: 240px;
    left: calc(20vw + 30px);
    filter: blur(4px);
  }
  50% {
    width: 220px;
    left: calc(20vw + 30px + 10px);
    filter: blur(6px);
  }
}
@keyframes bobbing-shadow-back {
  50% {
    width: 220px;
    left: calc(20vw + 30px + 10px);
    filter: blur(6px);
  }
  100% {
    width: 240px;
    left: calc(20vw + 30px);
    filter: blur(4px);
  }
}
#bobbing-test #background-wrapper {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, hsl(0deg, 0%, 100%) 0%, hsl(0deg, 20%, 97%) 50%, hsl(0deg, 22%, 95%) 58%, hsl(0deg, 23%, 94%) 100%);
}
#bobbing-test #background-wrapper video {
  top: 10vh;
  left: 20vw;
  height: 300px;
}
#bobbing-test #background-wrapper #shadow {
  width: 240px;
  height: 10px;
  border-radius: 50%;
  top: calc(10vh + 300px + 20px);
  left: calc(20vw + 30px);
  background: rgba(61, 125, 194, 0.25);
  filter: blur(4px);
  animation-name: bobbing-shadow-there, bobbing-shadow-back;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: -4.1s;
}
#bobbing-test #background-wrapper #image {
  height: 300px;
  top: 10vh;
  left: calc(20vw + 300px);
}

/*** RESPONSIVE ***/
@media screen and (min-width: 769px) {
  /*** PAGE: EXAMPLE ***/
  #button-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  #example-grid #gradient-grid > *#grid-item-1 {
    grid-column: 1/span 2;
  }
  #example-grid #gradient-grid > *#grid-item-5 {
    grid-column: 2/span 3;
  }
  #example-grid #gradient-grid > *#grid-item-6 {
    grid-row: 3/span 2;
  }
}

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