/* Root
--------------------------------------------- */
:root,
body {
  /* Font Families */
  --family-body: futura-pt, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --family-headline: futura-pt, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;

  /* Font Weights */
  --weight-book: 400;
  --weight-medium: 500;
  --weight-demi: 600;

  /* Line Heights */
  --line-body: 1.15;
  --line-headline: 0.9;

  /* Border Widths */
  --b-width-xl: 10px;
  --b-width-lg: 4px;
  --b-width-reg: 3px;

  /* Border Radius */
  --b-radius-xxl: 50px;
  --b-radius-xl: 15px;
  --b-radius-lg: 10px;
  --b-radius-reg: 5px;

  /* Additional font sizes ------------------ */
  --h-sm: clamp(1.1rem, 2.1vw, 1.3rem);

  --f-sm: 16px;
}

/* Font Sizes
--------------------------------------------- */
.f-3xl,
.f-2xl,
.f-xl,
.f-lg,
.f-sm,
.f-reg {
  transition: 0.3s all ease;
}

.f-3xl {
  font-size: clamp(var(--f-3xl-min), var(--f-3xl-ideal), var(--f-3xl-max));
}

.f-2xl {
  font-size: clamp(var(--f-2xl-min), var(--f-2xl-ideal), var(--f-2xl-max));
}

.f-xl {
  font-size: clamp(var(--f-xl-min), var(--f-xl-ideal), var(--f-xl-max));
}

.f-lg {
  font-size: clamp(var(--f-lg-min), var(--f-lg-ideal), var(--f-lg-max));
}

.f-small-lg {
  font-size: var(--h-sm);
}

.f-reg {
  font-size: var(--f-reg);
}

.f-sm {
  font-size: var(--f-sm);
}

/* Font Weights
--------------------------------------------- */
.fw-demi {
  font-weight: var(--weight-demi);
}

.fw-medium {
  font-weight: var(--weight-medium);
}

.fw-book {
  font-weight: var(--weight-book);
}

/* Headlines
--------------------------------------------- */
.is-style-h-3xl,
.h-3xl,
.is-style-h-2xl,
.h-2xl,
.is-style-h-xl,
.h-xl,
.is-style-h-lg,
.h-lg,
.is-style-h-sm,
.h-sm {
  margin-bottom: 1.5rem;
}

:is(
    .is-style-h-3xl,
    .h-3xl,
    .is-style-h-2xl,
    .h-2xl,
    .is-style-h-xl,
    .h-xl,
    .is-style-h-lg,
    .h-lg,
    .is-style-h-sm,
    .h-sm
  )
  mark {
  padding: 0;
}

.is-style-h-3xl,
.h-3xl {
  font-family: var(--family-headline);
  font-size: clamp(var(--f-3xl-min), var(--f-3xl-ideal), var(--f-3xl-max));
  font-weight: var(--weight-demi);
  line-height: 1;
  font-style: normal;
}

.is-style-h-2xl,
.h-2xl {
  font-family: var(--family-headline);
  font-size: clamp(var(--f-2xl-min), var(--f-2xl-ideal), var(--f-2xl-max));
  font-weight: var(--weight-demi);
  line-height: 1;
  font-style: normal;
}

.is-style-h-xl,
.h-xl {
  font-family: var(--family-headline);
  font-size: clamp(var(--f-xl-min), var(--f-xl-ideal), var(--f-xl-max));
  font-weight: var(--weight-demi);
  line-height: 1;
  font-style: normal;
}

.is-style-h-lg,
.h-lg {
  font-family: var(--family-headline);
  font-size: clamp(var(--f-lg-min), var(--f-lg-ideal), var(--f-lg-max));
  font-weight: var(--weight-demi);
  line-height: 1.1;
  font-style: normal;
}

.is-style-h-sm,
.h-sm {
  font-family: var(--family-headline);
  font-size: var(--h-sm);
  font-weight: var(--weight-medium);
  line-height: 1.1;
  font-style: normal;
}

@media (max-width: 768px) {
  .is-style-h-3xl,
  .h-3xl,
  .is-style-h-2xl,
  .h-2xl,
  .is-style-h-xl,
  .h-xl,
  .is-style-h-lg,
  .h-lg,
  .is-style-h-sm,
  .h-sm {
    hyphens: auto;
  }
}

/* Section Indicator
--------------------------------------------- */
:is(
    .is-style-secInd,
    .is-style-secInd__dark,
    .is-style-secInd__grey,
    .is-style-secInd__blue
  ) {
  font-size: 20px;
  font-weight: var(--weight-demi);
  border-radius: var(--b-radius-lg);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.5rem;
  width: fit-content;
}

.is-style-secInd {
  background: var(--cYellow);
  color: var(--cDef);
}

.is-style-secInd__dark {
  background: var(--cDef);
  color: var(--cYellow) !important;
}

.is-style-secInd__grey {
  background: var(--cGrey);
  color: var(--cDef) !important;
}

.is-style-secInd__blue {
  background: var(--cBlue);
  color: var(--cDef) !important;
}

/* Position Shortcuts
--------------------------------------------- */
.absStretch {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0 0 0 0;
}

.absCenter {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fixStretch {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0 0 0 0;
}

/* Aspect Ratios
--------------------------------------------- */
/* 16:9 */
.ar16-9 {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.ar16-9 iframe,
.ar16-9 video {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

/* 9:16 */
.ar9-16 {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.ar9-16 iframe,
.ar9-16 video {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

/* 4:3 */
.ar4-3 {
  width: 100%;
  height: 0;
  padding-top: 75%;
}

.ar4-3 iframe,
.ar4-3 video {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

/* 3:2 */
.ar3-2 {
  width: 100%;
  height: 0;
  padding-top: 66.66%;
}

.ar3-2 iframe,
.ar3-2 video {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

/* 1:1 */
.ar1-1 {
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.ar1-1 iframe,
.ar1-1 video {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

/* Margins
--------------------------------------------- */
.my-auto {
  margin-block: auto;
}

/* Borders
--------------------------------------------- */
/* Width */
.b-width-xl {
  border-width: var(--b-width-xl);
}

.b-width-lg {
  border-width: var(--b-width-lg);
}

.b-width-reg {
  border-width: var(--b-width-reg);
}

/* Radius */
.b-radius-xl {
  border-radius: var(--b-radius-xl);
}

.b-radius-lg {
  border-radius: var(--b-radius-lg);
}

.b-radius-reg {
  border-radius: var(--b-radius-reg);
}

/* Flex
--------------------------------------------- */
.fCenter {
  display: flex;
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
  -ms-flex-pack: center;
  /* IE 10 */
  align-items: center;
  -ms-flex-align: center;
  /* IE 10 */
}

.fxCenter {
  display: flex;
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
  -ms-flex-pack: center;
  /* IE 10 */
}

.fyCenter {
  display: flex;
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  -ms-flex-align: center;
  /* IE 10 */
}

.fyEnd {
  display: flex;
  display: -ms-fleox;
  /* IE 10 */
  align-items: flex-end;
  -ms-flex-align: flex-end;
  /* IE 10 */
}

.fxEnd {
  display: flex;
  justify-content: flex-end;
}

/* Heights
--------------------------------------------- */
/* vh */
.h-50vh {
  height: 50vh;
}

.h-60vh {
  height: 60vh;
}

.h-70vh {
  height: 70vh;
}

.h-80vh {
  height: 80vh;
}

.h-90vh {
  height: 90vh;
}

.h-100vh {
  height: 100vh;
}

/* min */
.min-h-100 {
  min-height: 100px;
}

.min-h-200 {
  min-height: 200px;
}

.min-h-300 {
  min-height: 300px;
}

.min-h-400 {
  min-height: 400px;
}

.min-h-500 {
  min-height: 500px;
}

/* Widths
--------------------------------------------- */
/* max */
.mw-xxxl {
  max-width: 1920px;
}

.mw-xxl {
  max-width: 1400px;
}

.mw-xl {
  max-width: 1200px;
}

.mw-lg {
  max-width: 992px;
}

.mw-md {
  max-width: 768px;
}

.mw-sm {
  max-width: 578px;
}

.w-fit {
  width: fit-content;
}

/* Transitions
--------------------------------------------- */
.trans2 {
  transition: 0.2s all ease;
}

.trans3 {
  transition: 0.3s all ease;
}

.trans4 {
  transition: 0.4s all ease;
}

.trans5 {
  transition: 0.5s all ease;
}

.trans6 {
  transition: 0.6s all ease;
}

/* Preview Mode
--------------------------------------------- */
.isPrev {
  display: none !important;
}

/* # Z Index
--------------------------------------------- */
.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.zm-1 {
  z-index: -1;
}

.zm-2 {
  z-index: -2;
}

/* # Breaks
--------------------------------------------- */
@media (min-width: 577px) {
  .br-sm br,
  br.br-sm {
    display: none;
  }
}
