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

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

.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-reg {
  font-size: var(--f-reg);
}

.f-sm {
  font-size: 16px;
}

/* Font Weights
--------------------------------------------- */
body .fw-light {
  font-weight: var(--fw-light) !important;
}

body .fw-regular {
  font-weight: var(--fw-regular) !important;
}

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

body .fw-semibold {
  font-weight: var(--fw-semibold) !important;
}

body .fw-bold {
  font-weight: var(--fw-bold) !important;
}

body .fw-black {
  font-weight: var(--fw-black) !important;
}

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

.is-style-h-4xl,
.h-4xl {
  font-family: var(--family-headline);
  font-size: clamp(var(--f-4xl-min), var(--f-4xl-ideal), var(--f-4xl-max));
  line-height: var(--l-height-headline);
  margin-bottom: 0.5rem;
}

.is-style-h-4xl strong,
.h-4xl strong {
  font-size: clamp(var(--f-3xl-min), var(--f-3xl-ideal), var(--f-3xl-max));
}

.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));
  line-height: var(--l-height-headline);
  margin-bottom: 0.5rem;
}

.is-style-h-2xl,
.h-2xl {
  font-family: var(--family-body);
  font-size: clamp(var(--f-2xl-min), var(--f-2xl-ideal), var(--f-2xl-max));
  font-weight: var(--fw-medium);
}

.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));
  margin-bottom: 0.5rem;
}

.is-style-h-lg,
.h-lg {
  font-family: var(--family-body);
  font-size: clamp(var(--f-lg-min), var(--f-lg-ideal), var(--f-lg-max));
  font-weight: var(--fw-medium);
}

/** Font Families */
.ff-body {
  font-family: var(--family-body);
}
.ff-headline,
.is-style-ff-headline {
  font-family: var(--family-headline);
}
.ff-alt,
.is-style-ff-alt {
  font-style: italic;
  font-family: var(--family-alternative);
}

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

/* Section Indicator
--------------------------------------------- */
.is-style-secInd,
.secInd {
  font-size: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  width: fit-content;
  font-family: var(--family-body);
  font-weight: var(--fw-regular);
  display: block;
  margin-inline: auto;
  color: var(--cTeal);
}

.is-style-secInd.cWhite,
.secInd.cWhite {
  color: var(--cWhite);
}

/* 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 */
.ratio-16-9 {
  aspect-ratio: 16/9;
  position: relative;
}

/* 16:7 */
.ratio-16-7 {
  aspect-ratio: 16/7;
  position: relative;
}

/* 9:16 */
.ratio-9-16 {
  aspect-ratio: 16/7;
  position: relative;
}

/* 4:3 */
.ratio-4-3 {
  aspect-ratio: 4/3;
  position: relative;
}

/* 3:2 */
.ratio-3-2 {
  aspect-ratio: 3/2;
  position: relative;
}

/* 1:1 */
.ratio-1-1 {
  aspect-ratio: 1/1;
  position: relative;
}

/* Paddings
--------------------------------------------- */
body .p-4-5 {
  padding: 2.25rem !important;
}

body .px-4-5 {
  padding-inline: 2.25rem !important;
}

body .py-4-5 {
  padding-block: 2.25rem !important;
}

body .pt-4-5 {
  padding-block-start: 2.25rem !important;
}

body .pb-4-5 {
  padding-block-end: 2.25rem !important;
}

body .ps-4-5 {
  padding-inline-start: 2.25rem !important;
}

body .pe-4-5 {
  padding-inline-end: 2.25rem !important;
}

@media (min-width: 577px) {
  body .p-sm-4-5 {
    padding: 2.25rem !important;
  }

  body .px-sm-4-5 {
    padding-inline: 2.25rem !important;
  }

  body .py-sm-4-5 {
    padding-block: 2.25rem !important;
  }

  body .pt-sm-4-5 {
    padding-block-start: 2.25rem !important;
  }

  body .pb-sm-4-5 {
    padding-block-end: 2.25rem !important;
  }

  body .ps-sm-4-5 {
    padding-inline-start: 2.25rem !important;
  }

  body .pe-sm-4-5 {
    padding-inline-end: 2.25rem !important;
  }
}

@media (min-width: 769px) {
  body .p-md-4-5 {
    padding: 2.25rem !important;
  }

  body .px-md-4-5 {
    padding-inline: 2.25rem !important;
  }

  body .py-md-4-5 {
    padding-block: 2.25rem !important;
  }

  body .pt-md-4-5 {
    padding-block-start: 2.25rem !important;
  }

  body .pb-md-4-5 {
    padding-block-end: 2.25rem !important;
  }

  body .ps-md-4-5 {
    padding-inline-start: 2.25rem !important;
  }

  body .pe-md-4-5 {
    padding-inline-end: 2.25rem !important;
  }
}

@media (min-width: 993px) {
  body .p-lg-4-5 {
    padding: 2.25rem !important;
  }

  body .px-lg-4-5 {
    padding-inline: 2.25rem !important;
  }

  body .py-lg-4-5 {
    padding-block: 2.25rem !important;
  }

  body .pt-lg-4-5 {
    padding-block-start: 2.25rem !important;
  }

  body .pb-lg-4-5 {
    padding-block-end: 2.25rem !important;
  }

  body .ps-lg-4-5 {
    padding-inline-start: 2.25rem !important;
  }

  body .pe-lg-4-5 {
    padding-inline-end: 2.25rem !important;
  }
}

@media (min-width: 1201px) {
  body .p-xl-4-5 {
    padding: 2.25rem !important;
  }

  body .px-xl-4-5 {
    padding-inline: 2.25rem !important;
  }

  body .py-xl-4-5 {
    padding-block: 2.25rem !important;
  }

  body .pt-xl-4-5 {
    padding-block-start: 2.25rem !important;
  }

  body .pb-xl-4-5 {
    padding-block-end: 2.25rem !important;
  }

  body .ps-xl-4-5 {
    padding-inline-start: 2.25rem !important;
  }

  body .pe-xl-4-5 {
    padding-inline-end: 2.25rem !important;
  }
}

@media (min-width: 1401px) {
  body .p-xxl-4-5 {
    padding: 2.25rem !important;
  }

  body .px-xxl-4-5 {
    padding-inline: 2.25rem !important;
  }

  body .py-xxl-4-5 {
    padding-block: 2.25rem !important;
  }

  body .pt-xxl-4-5 {
    padding-block-start: 2.25rem !important;
  }

  body .pb-xxl-4-5 {
    padding-block-end: 2.25rem !important;
  }

  body .ps-xxl-4-5 {
    padding-inline-start: 2.25rem !important;
  }

  body .pe-xxl-4-5 {
    padding-inline-end: 2.25rem !important;
  }
}

/* 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;
}

.fxBetween {
  display: flex;
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: space-between;
}

/* 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;
}

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

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

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

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

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

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

/* General */
.w-fit {
  width: fit-content;
}

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

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