/* Atomic Styles */

/* ///////////////////// */

/* ***** Font Colors */

/* --- Default */

.fcolor--dark {
  color: var(--color__dark);
}

.fcolor--light {
  color: var(--color__light);
}

/* --- Corporate */

.fcolor--primary {
  color: var(--color__primary);
}

.fcolor--secondary {
  color: var(--color__secondary);
}

.fcolor--accent {
  color: var(--color__accent);
}

/* --- System */

.fcolor--success {
  color: var(--color__success);
}

.fcolor--warning {
  color: var(--color__warning);
}

.fcolor--error {
  color: var(--color__error);
}

/* --- Text Styles */

.fstyle--uppercase {
  text-transform: uppercase;
}

.textshadow {
  text-shadow: 0px 5px 16px rgba(11, 23, 124, 0.4);
}

/* ***** Background Colors*/

/* --- Default */

.bg--dark {
  background-color: var(--color__dark);
}

.bg--light {
  background-color: var(--color__light);
}

/* --- Corporate */

.bg--primary {
  background-color: var(--color__primary);
}

.bg--primaryDark {
  background-color: var(--color__primaryDark);
}

.bg--primaryLight {
  background-color: var(--color__primaryLight);
}

.bg--secondary {
  background-color: var(--color__secondary);
}

.bg--accent {
  background-color: var(--color__accent);
}

/* --- System */

.bg--success {
  background-color: var(--color__success);
}

.bg--warning {
  background-color: var(--color__warning);
}

.bg--error {
  background-color: var(--color__error);
}

/* ***** Borders */

.radius--small {
  border-radius: var(--radius__small);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.radius--regular {
  border-radius: var(--radius__regular);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.radius--large {
  border-radius: var(--radius__large);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.radius--round {
  border-radius: var(--radius__round);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}

/* ***** Overflows */

.overflow--hidden {
  overflow: hidden;
}

/* ***** Height */

.height--full {
  height: 100%;
}

/* ***** Offset */

.offset--top {
  margin-top: -12rem;
}

/* Image gradients */

.overlayGrad--primary::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 10em;
  background: linear-gradient(20deg, var(--color__primary) 0%, rgba(244, 208, 28, 0) 77.86%);
}

.overlayGradHero--primary::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 10em;
  background: linear-gradient(20deg, var(--color__primary) 0%, rgba(244, 208, 28, 0) 77.86%);
}

.overlayGrad--secondary::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 10em;
  background: linear-gradient(20deg, var(--color__secondary) 0%, rgba(244, 208, 28, 0) 77.86%);
}

.overlayGradHero--secondary::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 10em;
  background: linear-gradient(20deg, var(--color__secondary) 0%, rgba(244, 208, 28, 0) 77.86%);
}

.overlayGrad--accent::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 10em;
  background: linear-gradient(20deg, var(--color__accent) 0%, rgba(244, 208, 28, 0) 77.86%);
}

.overlayGradHero--accent::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 10em;
  background: linear-gradient(20deg, var(--color__accent) 0%, rgba(244, 208, 28, 0) 77.86%);
}

/* ***** Image Filters */

.filter--primary {
  filter: grayscale(100%) sepia(100%) hue-rotate(205deg) brightness(0.8) contrast(1.2);
}

/* ***** Fixed Ratios */

[class*="ratio--"] {
  position: relative;
  height: auto;
}

[class*="ratio--"]::before {
  display: block;
  content: "";
  width: 100%;
}

[class*="ratio--"]>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio--1_1::before {
  padding-top: calc(1 / 1 * 100%);
}

.ratio--custom::before {
  padding-top: calc((1 / 3 * 100%) + -0.6vw);
}

.ratio--3_2::before {
  padding-top: calc(2 / 3 * 100%);
}

.ratio--4_3::before {
  padding-top: calc(3 / 4 * 100%);
}

.ratio--6_4::before {
  padding-top: calc(4 / 6 * 100%);
}

.ratio--5_2::before {
  padding-top: calc(2 / 5 * 100%);
}

.ratio--16_9::before {
  padding-top: calc(9 / 16 * 100%);
}

@media only screen and (max-width: 55em) {
  /* ***** Offset */

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

@media only screen and (max-width: 36em) {
  /* ***** Offset */

  .offset--top:nth-child(3) {
    margin-top: 0;
  }

  .ratio--custom::before {
    padding-top: calc(2 / 3 * 100%);
  }
}