/* -------------------------------------------

  Copyright 2020. All Rights Reserved.
  Name: Griddle
  Author: Dave Berning
  Website: www.daveberning.io
  Licence: MIT
  Version: 0.3.0

  In association with Oodle.io

------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import '../../node_modules/normalize.css/normalize.css';
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Note:
** These must be in the same order
----------------------------------------- */
/* Needed for Loops - Add to this if you add color variables
----------------------------------------------------------------- */
body.has-breakpoint-tag:after {
  content: "XS";
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  font-weight: normal;
  position: fixed;
  top: 165px;
  right: 0;
  padding: 7px 10px;
  background-color: #EB8A5E;
  color: #fff;
  z-index: 9999;
  border-radius: 5px 0 0 5px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 575.5px) {
  body.has-breakpoint-tag:after {
    content: "xs";
    background-color: #EB8A5E;
    text-transform: uppercase;
  }
}
@media (min-width: 576px) {
  body.has-breakpoint-tag:after {
    content: "sm";
    background-color: #EB8A5E;
    text-transform: uppercase;
  }
}
@media (min-width: 768px) {
  body.has-breakpoint-tag:after {
    content: "md";
    background-color: #EB8A5E;
    text-transform: uppercase;
  }
}
@media (min-width: 992px) {
  body.has-breakpoint-tag:after {
    content: "lg";
    background-color: #EB8A5E;
    text-transform: uppercase;
  }
}
@media (min-width: 1200px) {
  body.has-breakpoint-tag:after {
    content: "xl";
    background-color: #EB8A5E;
    text-transform: uppercase;
  }
}
@media (min-width: 1400px) {
  body.has-breakpoint-tag:after {
    content: "xxl";
    background-color: #EB8A5E;
    text-transform: uppercase;
  }
}

/* Note:
** These must be in the same order
----------------------------------------- */
/* Needed for Loops - Add to this if you add color variables
----------------------------------------------------------------- */
/* CSS Variables
----------------------------------------- */
:root {
  /* Colors */
  --primary: #016575;
  --secondary: #03414b;
  --tertiary: #003242;
  --cta: #EB8A5E;
  --white: #ffffff;
  --black: #000000;
  --grey: #ececec;
  --success: #48C774;
  --warning: #FFDD57;
  --danger: #F14668;
  --info: #3298DC;
  /* Typography */
  --h1: 4rem;
  --h2: 3.5rem;
  --h3: 3rem;
  --h4: 2.5rem;
  --h5: 2rem;
  --h6: 1.5rem;
  --root-font-size: 16px; /* REM values are based on this */
  --root-line-height: 2rem;
  /* Misc */
  --container-width: 1400px;
  --border-radius: .25rem;
  --border-radius-md: .5rem;
  --border-radius-lg: .75rem;
  --spacing: 1rem; /* Used for .has-m and .has-p classes */
  --spacing-md: 1.5rem; /* Used for .has-m-md and .has-p-md classes */
  --spacing-lg: 2rem; /* Used for .has-m-lg and .has-p-lg classes */
  /* Grid Gaps */
  --col-gap: 1rem;
  --col-gap-md: 1.5rem;
  --col-gap-lg: 2rem;
  --row-gap: 1rem;
  --row-gap-md: 1.5rem;
  --row-gap-lg: 2rem;
}

/* Utils
------------------ */
/* General
----------------------------- */
html {
  font-size: var(--root-font-size);
}

body {
  line-height: var(--root-line-height);
  background: #f4f4f4;
}

* {
  color: var(--black);
  box-sizing: border-box;
}

p {
  margin-bottom: 1.5rem;
}

.has-text-primary,
.is-text-primary {
  color: var(--primary);
}

.has-text-secondary,
.is-text-secondary {
  color: var(--secondary);
}

.has-text-tertiary,
.is-text-tertiary {
  color: var(--tertiary);
}

.has-text-cta,
.is-text-cta {
  color: var(--cta);
}

.has-text-white,
.is-text-white {
  color: var(--white);
}

.has-text-black,
.is-text-black {
  color: var(--black);
}

.has-text-grey,
.is-text-grey {
  color: var(--grey);
}

.has-text-danger,
.is-text-danger {
  color: var(--danger);
}

.has-text-warning,
.is-text-warning {
  color: var(--warning);
}

.has-text-info,
.is-text-info {
  color: var(--info);
}

.has-text-success,
.is-text-success {
  color: var(--success);
}

/* Headings
----------------------------- */
h1,
.is-h1 {
  font-size: var(--h1);
  line-height: var(--h1);
  font-weight: 700;
}

h2,
.is-h2 {
  font-size: var(--h2);
  line-height: var(--h2);
  font-weight: 700;
}

h3,
.is-h3 {
  font-size: var(--h3);
  line-height: var(--h3);
  font-weight: 700;
}

h4,
.is-h4 {
  font-size: var(--h4);
  line-height: var(--h4);
  font-weight: 700;
}

h5,
.is-h5 {
  font-size: var(--h5);
  line-height: var(--h5);
  font-weight: 700;
}

h6,
.is-h6 {
  font-size: var(--h6);
  line-height: var(--h6);
  font-weight: 700;
}

.is-bold {
  font-weight: bold;
}

.is-strike {
  text-decoration: line-through;
}

.is-italic {
  font-style: italic;
}

.is-capitalized {
  text-transform: capitalize;
}

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

.is-underline {
  text-decoration: underline;
}

.is-aligned-left {
  text-align: left;
}

.is-aligned-center {
  text-align: center;
}

.is-aligned-right {
  text-align: right;
}

/* Note:
** These must be in the same order
----------------------------------------- */
/* Needed for Loops - Add to this if you add color variables
----------------------------------------------------------------- */
/* Containers
------------------------------ */
.has-container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
}

/* Spacing
------------------------------ */
.has-m {
  margin: var(--spacing);
}

.has-m-top {
  margin-top: var(--spacing);
}

.has-m-right {
  margin-right: var(--spacing);
}

.has-m-bottom {
  margin-bottom: var(--spacing);
}

.has-m-left {
  margin-left: var(--spacing);
}

.has-m-md {
  margin: var(--spacing-md);
}

.has-m-top-md {
  margin-top: var(--spacing-md);
}

.has-m-right-md {
  margin-right: var(--spacing-md);
}

.has-m-bottom-md {
  margin-bottom: var(--spacing-md);
}

.has-m-left-md {
  margin-left: var(--spacing-md);
}

.has-m-lg {
  margin: var(--spacing-lg);
}

.has-m-top-lg {
  margin-top: var(--spacing-lg);
}

.has-m-right-lg {
  margin-right: var(--spacing-lg);
}

.has-m-bottom-lg {
  margin-bottom: var(--spacing-lg);
}

.has-m-left-lg {
  margin-left: var(--spacing-lg);
}

.has-no-m {
  margin: 0;
}

.has-no-top-m {
  margin-top: 0;
}

.has-no-right-m {
  margin-right: 0;
}

.has-no-bottom-m {
  margin-bottom: 0;
}

.has-no-left-m {
  margin-left: 0;
}

.has-p {
  padding: var(--spacing);
}

.has-p-top {
  padding-top: var(--spacing);
}

.has-p-right {
  padding-right: var(--spacing);
}

.has-p-bottom {
  padding-bottom: var(--spacing);
}

.has-p-left {
  padding-left: var(--spacing);
}

.has-p-md {
  padding: var(--spacing-md);
}

.has-p-top-md {
  padding-top: var(--spacing-md);
}

.has-p-right-md {
  padding-right: var(--spacing-md);
}

.has-p-bottom-md {
  padding-bottom: var(--spacing-md);
}

.has-p-left-md {
  padding-left: var(--spacing-md);
}

.has-p-lg {
  padding: var(--spacing-lg);
}

.has-p-top-lg {
  padding-top: var(--spacing-lg);
}

.has-p-right-lg {
  padding-right: var(--spacing-lg);
}

.has-p-bottom-lg {
  padding-bottom: var(--spacing-lg);
}

.has-p-left-lg {
  padding-left: var(--spacing-lg);
}

.has-no-p {
  margin: 0;
}

.has-no-top-p {
  padding-top: 0;
}

.has-no-right-p {
  padding-right: 0;
}

.has-no-bottom-p {
  padding-bottom: 0;
}

.has-no-left-p {
  padding-left: 0;
}

/* Positioning
------------------------------ */
.is-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-centered-horizontally {
  display: flex;
  justify-content: center;
}

.is-centered-vertically {
  display: flex;
  align-items: center;
}

/* Display
------------------------------ */
.is-block {
  display: block;
}

@media screen and (min-width: 575.5px) {
  .is-block-xs {
    display: block;
  }
}

@media screen and (min-width: 576px) {
  .is-block-sm {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .is-block-md {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .is-block-lg {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .is-block-xl {
    display: block;
  }
}

@media screen and (min-width: 1400px) {
  .is-block-xxl {
    display: block;
  }
}

.is-inline-block {
  display: inline-block;
}

@media screen and (min-width: 575.5px) {
  .is-inline-block-xs {
    display: inline-block;
  }
}

@media screen and (min-width: 576px) {
  .is-inline-block-sm {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .is-inline-block-md {
    display: inline-block;
  }
}

@media screen and (min-width: 992px) {
  .is-inline-block-lg {
    display: inline-block;
  }
}

@media screen and (min-width: 1200px) {
  .is-inline-block-xl {
    display: inline-block;
  }
}

@media screen and (min-width: 1400px) {
  .is-inline-block-xxl {
    display: inline-block;
  }
}

.is-flex {
  display: flex;
}

@media screen and (min-width: 575.5px) {
  .is-flex-xs {
    display: flex;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-sm {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-md {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-lg {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-xl {
    display: flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-xxl {
    display: flex;
  }
}

.is-inline-flex {
  display: inline-flex;
}

@media screen and (min-width: 575.5px) {
  .is-inline-flex-xs {
    display: inline-flex;
  }
}

@media screen and (min-width: 576px) {
  .is-inline-flex-sm {
    display: inline-flex;
  }
}

@media screen and (min-width: 768px) {
  .is-inline-flex-md {
    display: inline-flex;
  }
}

@media screen and (min-width: 992px) {
  .is-inline-flex-lg {
    display: inline-flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-inline-flex-xl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-inline-flex-xxl {
    display: inline-flex;
  }
}

.is-grid {
  display: grid;
}

@media screen and (min-width: 575.5px) {
  .is-grid-xs {
    display: grid;
  }
}

@media screen and (min-width: 576px) {
  .is-grid-sm {
    display: grid;
  }
}

@media screen and (min-width: 768px) {
  .is-grid-md {
    display: grid;
  }
}

@media screen and (min-width: 992px) {
  .is-grid-lg {
    display: grid;
  }
}

@media screen and (min-width: 1200px) {
  .is-grid-xl {
    display: grid;
  }
}

@media screen and (min-width: 1400px) {
  .is-grid-xxl {
    display: grid;
  }
}

.is-inline-grid {
  display: inline-grid;
}

@media screen and (min-width: 575.5px) {
  .is-inline-grid-xs {
    display: inline-grid;
  }
}

@media screen and (min-width: 576px) {
  .is-inline-grid-sm {
    display: inline-grid;
  }
}

@media screen and (min-width: 768px) {
  .is-inline-grid-md {
    display: inline-grid;
  }
}

@media screen and (min-width: 992px) {
  .is-inline-grid-lg {
    display: inline-grid;
  }
}

@media screen and (min-width: 1200px) {
  .is-inline-grid-xl {
    display: inline-grid;
  }
}

@media screen and (min-width: 1400px) {
  .is-inline-grid-xxl {
    display: inline-grid;
  }
}

/* Images
------------------------------ */
img.is-responsive {
  height: auto;
  width: 100%;
}
img.is-rounded {
  border-radius: 50%;
}

/* Color Classes
----------------------------- */
.has-bkg-primary {
  background: var(--primary);
}

.has-bkg-secondary {
  background: var(--secondary);
}

.has-bkg-tertiary {
  background: var(--tertiary);
}

.has-bkg-cta {
  background: var(--cta);
}

.has-bkg-white {
  background: var(--white);
}

.has-bkg-black {
  background: var(--black);
}

.has-bkg-grey {
  background: var(--grey);
}

.has-bkg-danger {
  background: var(--danger);
}

.has-bkg-warning {
  background: var(--warning);
}

.has-bkg-info {
  background: var(--info);
}

.has-bkg-success {
  background: var(--success);
}

/* Lists
------------------------- */
.is-unstyled {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

/* Misc
------------------------------ */
.is-box {
  padding: 1.5rem;
  border-radius: 2px;
  border: 2px solid var(--grey);
}
.is-box.has-shadow {
  border: none;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
}

/* Display Helpers
------------------------------------ */
.is-device {
  display: none;
}

.is-screen {
  display: block;
}

@media only screen and (min-device-width: 1px) and (-webkit-min-device-pixel-ratio: 2) {
  .is-device {
    display: block;
  }
  .is-screen {
    display: none;
  }
}
/* Light/Dark Mode
------------------------------------ */
.has-rounded-corners {
  border-radius: var(--border-radius);
}

.has-rounded-corners-md {
  border-radius: var(--border-radius-md);
}

.has-rounded-corners-lg {
  border-radius: var(--border-radius-lg);
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-primary,
a.is-button.is-primary {
  background: var(--primary);
  color: var(--white);
}
button.is-primary.is-outline,
a.is-button.is-primary.is-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
button.is-primary.is-link,
a.is-button.is-primary.is-link {
  background: none;
  color: var(--primary);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-secondary,
a.is-button.is-secondary {
  background: var(--secondary);
  color: var(--white);
}
button.is-secondary.is-outline,
a.is-button.is-secondary.is-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
button.is-secondary.is-link,
a.is-button.is-secondary.is-link {
  background: none;
  color: var(--secondary);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-tertiary,
a.is-button.is-tertiary {
  background: var(--tertiary);
  color: var(--white);
}
button.is-tertiary.is-outline,
a.is-button.is-tertiary.is-outline {
  background: transparent;
  border: 2px solid var(--tertiary);
  color: var(--tertiary);
}
button.is-tertiary.is-link,
a.is-button.is-tertiary.is-link {
  background: none;
  color: var(--tertiary);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-cta,
a.is-button.is-cta {
  background: var(--cta);
  color: var(--white);
}
button.is-cta.is-outline,
a.is-button.is-cta.is-outline {
  background: transparent;
  border: 2px solid var(--cta);
  color: var(--cta);
}
button.is-cta.is-link,
a.is-button.is-cta.is-link {
  background: none;
  color: var(--cta);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-white,
a.is-button.is-white {
  background: var(--white);
  color: var(--white);
}
button.is-white.is-outline,
a.is-button.is-white.is-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
button.is-white.is-link,
a.is-button.is-white.is-link {
  background: none;
  color: var(--white);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-black,
a.is-button.is-black {
  background: var(--black);
  color: var(--white);
}
button.is-black.is-outline,
a.is-button.is-black.is-outline {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
}
button.is-black.is-link,
a.is-button.is-black.is-link {
  background: none;
  color: var(--black);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-grey,
a.is-button.is-grey {
  background: var(--grey);
  color: var(--white);
}
button.is-grey.is-outline,
a.is-button.is-grey.is-outline {
  background: transparent;
  border: 2px solid var(--grey);
  color: var(--grey);
}
button.is-grey.is-link,
a.is-button.is-grey.is-link {
  background: none;
  color: var(--grey);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-danger,
a.is-button.is-danger {
  background: var(--danger);
  color: var(--white);
}
button.is-danger.is-outline,
a.is-button.is-danger.is-outline {
  background: transparent;
  border: 2px solid var(--danger);
  color: var(--danger);
}
button.is-danger.is-link,
a.is-button.is-danger.is-link {
  background: none;
  color: var(--danger);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-warning,
a.is-button.is-warning {
  background: var(--warning);
  color: var(--white);
}
button.is-warning.is-outline,
a.is-button.is-warning.is-outline {
  background: transparent;
  border: 2px solid var(--warning);
  color: var(--warning);
}
button.is-warning.is-link,
a.is-button.is-warning.is-link {
  background: none;
  color: var(--warning);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-info,
a.is-button.is-info {
  background: var(--info);
  color: var(--white);
}
button.is-info.is-outline,
a.is-button.is-info.is-outline {
  background: transparent;
  border: 2px solid var(--info);
  color: var(--info);
}
button.is-info.is-link,
a.is-button.is-info.is-link {
  background: none;
  color: var(--info);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

button,
a.is-button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
}
button.has-rounded-corners,
a.is-button.has-rounded-corners {
  border-radius: 10rem;
}
button.is-success,
a.is-button.is-success {
  background: var(--success);
  color: var(--white);
}
button.is-success.is-outline,
a.is-button.is-success.is-outline {
  background: transparent;
  border: 2px solid var(--success);
  color: var(--success);
}
button.is-success.is-link,
a.is-button.is-success.is-link {
  background: none;
  color: var(--success);
  text-decoration: underline;
}
button.is-small,
a.is-button.is-small {
  padding: 0.5rem 2rem;
}
button.is-large,
a.is-button.is-large {
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
}

/* Note:
** These must be in the same order
----------------------------------------- */
/* Needed for Loops - Add to this if you add color variables
----------------------------------------------------------------- */
.is-alert {
  padding: var(--spacing);
}
.is-alert.is-primary {
  background: var(--primary);
  color: var(--white);
}
.is-alert.is-primary.is-outline {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-secondary {
  background: var(--secondary);
  color: var(--white);
}
.is-alert.is-secondary.is-outline {
  background: none;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-tertiary {
  background: var(--tertiary);
  color: var(--white);
}
.is-alert.is-tertiary.is-outline {
  background: none;
  border: 2px solid var(--tertiary);
  color: var(--tertiary);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-cta {
  background: var(--cta);
  color: var(--white);
}
.is-alert.is-cta.is-outline {
  background: none;
  border: 2px solid var(--cta);
  color: var(--cta);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-white {
  background: var(--white);
  color: var(--white);
}
.is-alert.is-white.is-outline {
  background: none;
  border: 2px solid var(--white);
  color: var(--white);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-black {
  background: var(--black);
  color: var(--white);
}
.is-alert.is-black.is-outline {
  background: none;
  border: 2px solid var(--black);
  color: var(--black);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-grey {
  background: var(--grey);
  color: var(--white);
}
.is-alert.is-grey.is-outline {
  background: none;
  border: 2px solid var(--grey);
  color: var(--grey);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-danger {
  background: var(--danger);
  color: var(--white);
}
.is-alert.is-danger.is-outline {
  background: none;
  border: 2px solid var(--danger);
  color: var(--danger);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-warning {
  background: var(--warning);
  color: var(--white);
}
.is-alert.is-warning.is-outline {
  background: none;
  border: 2px solid var(--warning);
  color: var(--warning);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-info {
  background: var(--info);
  color: var(--white);
}
.is-alert.is-info.is-outline {
  background: none;
  border: 2px solid var(--info);
  color: var(--info);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-alert {
  padding: var(--spacing);
}
.is-alert.is-success {
  background: var(--success);
  color: var(--white);
}
.is-alert.is-success.is-outline {
  background: none;
  border: 2px solid var(--success);
  color: var(--success);
}

.is-alert.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-primary {
  background: var(--primary);
  color: var(--white);
}
.is-tag.is-primary.is-outline {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-secondary {
  background: var(--secondary);
  color: var(--white);
}
.is-tag.is-secondary.is-outline {
  background: none;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-tertiary {
  background: var(--tertiary);
  color: var(--white);
}
.is-tag.is-tertiary.is-outline {
  background: none;
  border: 2px solid var(--tertiary);
  color: var(--tertiary);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-cta {
  background: var(--cta);
  color: var(--white);
}
.is-tag.is-cta.is-outline {
  background: none;
  border: 2px solid var(--cta);
  color: var(--cta);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-white {
  background: var(--white);
  color: var(--white);
}
.is-tag.is-white.is-outline {
  background: none;
  border: 2px solid var(--white);
  color: var(--white);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-black {
  background: var(--black);
  color: var(--white);
}
.is-tag.is-black.is-outline {
  background: none;
  border: 2px solid var(--black);
  color: var(--black);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-grey {
  background: var(--grey);
  color: var(--white);
}
.is-tag.is-grey.is-outline {
  background: none;
  border: 2px solid var(--grey);
  color: var(--grey);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-danger {
  background: var(--danger);
  color: var(--white);
}
.is-tag.is-danger.is-outline {
  background: none;
  border: 2px solid var(--danger);
  color: var(--danger);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-warning {
  background: var(--warning);
  color: var(--white);
}
.is-tag.is-warning.is-outline {
  background: none;
  border: 2px solid var(--warning);
  color: var(--warning);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-info {
  background: var(--info);
  color: var(--white);
}
.is-tag.is-info.is-outline {
  background: none;
  border: 2px solid var(--info);
  color: var(--info);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-tag {
  padding: 0 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.is-tag.is-success {
  background: var(--success);
  color: var(--white);
}
.is-tag.is-success.is-outline {
  background: none;
  border: 2px solid var(--success);
  color: var(--success);
}

.is-tag.is-rounded {
  border-radius: 10rem;
}

.is-input-group {
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.is-input-group .is-input,
.is-input-group .is-label,
.is-input-group .is-textarea,
.is-input-group .is-select-option {
  display: flex;
  width: 100%;
}

.is-label {
  margin-bottom: 0.5rem;
}

.is-input,
.is-textarea,
.is-select-option {
  background: var(--grey);
  padding: 1rem;
  border-radius: 2px;
  border: 0;
}

.is-input-group:hover .is-checkbox ~ .is-checkbox::after {
  background-color: #ccc;
}

.is-table {
  border: 1px solid var(--grey);
}
.is-table td,
.is-table th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey);
}
.is-table th {
  background: var(--grey);
}

.is-table.is-primary {
  color: var(--primary);
}
.is-table.is-primary td,
.is-table.is-primary th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--primary);
}
.is-table.is-primary th {
  background: var(--primary);
  color: var(--white);
  border-left: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
}
.is-table.is-primary tr th:first-child {
  border-left: none;
}
.is-table.is-primary tr th:last-child {
  border-right: none;
}

.is-table.is-secondary {
  color: var(--secondary);
}
.is-table.is-secondary td,
.is-table.is-secondary th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--secondary);
}
.is-table.is-secondary th {
  background: var(--secondary);
  color: var(--white);
  border-left: 1px solid var(--secondary);
  border-right: 1px solid var(--secondary);
}
.is-table.is-secondary tr th:first-child {
  border-left: none;
}
.is-table.is-secondary tr th:last-child {
  border-right: none;
}

.is-table.is-tertiary {
  color: var(--tertiary);
}
.is-table.is-tertiary td,
.is-table.is-tertiary th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--tertiary);
}
.is-table.is-tertiary th {
  background: var(--tertiary);
  color: var(--white);
  border-left: 1px solid var(--tertiary);
  border-right: 1px solid var(--tertiary);
}
.is-table.is-tertiary tr th:first-child {
  border-left: none;
}
.is-table.is-tertiary tr th:last-child {
  border-right: none;
}

.is-table.is-cta {
  color: var(--cta);
}
.is-table.is-cta td,
.is-table.is-cta th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cta);
}
.is-table.is-cta th {
  background: var(--cta);
  color: var(--white);
  border-left: 1px solid var(--cta);
  border-right: 1px solid var(--cta);
}
.is-table.is-cta tr th:first-child {
  border-left: none;
}
.is-table.is-cta tr th:last-child {
  border-right: none;
}

.is-table.is-white {
  color: var(--white);
}
.is-table.is-white td,
.is-table.is-white th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--white);
}
.is-table.is-white th {
  background: var(--white);
  color: var(--white);
  border-left: 1px solid var(--white);
  border-right: 1px solid var(--white);
}
.is-table.is-white tr th:first-child {
  border-left: none;
}
.is-table.is-white tr th:last-child {
  border-right: none;
}

.is-table.is-black {
  color: var(--black);
}
.is-table.is-black td,
.is-table.is-black th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--black);
}
.is-table.is-black th {
  background: var(--black);
  color: var(--white);
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
}
.is-table.is-black tr th:first-child {
  border-left: none;
}
.is-table.is-black tr th:last-child {
  border-right: none;
}

.is-table.is-grey {
  color: var(--grey);
}
.is-table.is-grey td,
.is-table.is-grey th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey);
}
.is-table.is-grey th {
  background: var(--grey);
  color: var(--white);
  border-left: 1px solid var(--grey);
  border-right: 1px solid var(--grey);
}
.is-table.is-grey tr th:first-child {
  border-left: none;
}
.is-table.is-grey tr th:last-child {
  border-right: none;
}

.is-table.is-danger {
  color: var(--danger);
}
.is-table.is-danger td,
.is-table.is-danger th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--danger);
}
.is-table.is-danger th {
  background: var(--danger);
  color: var(--white);
  border-left: 1px solid var(--danger);
  border-right: 1px solid var(--danger);
}
.is-table.is-danger tr th:first-child {
  border-left: none;
}
.is-table.is-danger tr th:last-child {
  border-right: none;
}

.is-table.is-warning {
  color: var(--warning);
}
.is-table.is-warning td,
.is-table.is-warning th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--warning);
}
.is-table.is-warning th {
  background: var(--warning);
  color: var(--white);
  border-left: 1px solid var(--warning);
  border-right: 1px solid var(--warning);
}
.is-table.is-warning tr th:first-child {
  border-left: none;
}
.is-table.is-warning tr th:last-child {
  border-right: none;
}

.is-table.is-info {
  color: var(--info);
}
.is-table.is-info td,
.is-table.is-info th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--info);
}
.is-table.is-info th {
  background: var(--info);
  color: var(--white);
  border-left: 1px solid var(--info);
  border-right: 1px solid var(--info);
}
.is-table.is-info tr th:first-child {
  border-left: none;
}
.is-table.is-info tr th:last-child {
  border-right: none;
}

.is-table.is-success {
  color: var(--success);
}
.is-table.is-success td,
.is-table.is-success th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--success);
}
.is-table.is-success th {
  background: var(--success);
  color: var(--white);
  border-left: 1px solid var(--success);
  border-right: 1px solid var(--success);
}
.is-table.is-success tr th:first-child {
  border-left: none;
}
.is-table.is-success tr th:last-child {
  border-right: none;
}

/* Grid
------------------ */
/* Note:
** These must be in the same order
----------------------------------------- */
/* Needed for Loops - Add to this if you add color variables
----------------------------------------------------------------- */
/* Note:
** These must be in the same order
----------------------------------------- */
/* Needed for Loops - Add to this if you add color variables
----------------------------------------------------------------- */
/* Class Generation
------------------------- */
/* Grid
------------------------ */
.is-grid,
.is-grid-inline {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(12, 1fr);
  direction: ltr;
  grid-column-gap: var(--col-gap);
  grid-row-gap: var(--row-gap);
}
.is-grid > *,
.is-grid-inline > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .is-grid > *,
.is-grid-inline > * {
    grid-column: span 1;
  }
}
.is-grid.is-dense,
.is-grid-inline.is-dense {
  grid-auto-flow: dense;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-template-columns: repeat(12, 1fr);
}
.is-grid.has-wrapped-row,
.is-grid-inline.has-wrapped-row {
  grid-auto-flow: row;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-template-columns: repeat(12, 1fr);
}
.is-grid.has-wrapped-row.is-dense,
.is-grid-inline.has-wrapped-row.is-dense {
  grid-auto-flow: row dense;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-template-columns: repeat(12, 1fr);
}
.is-grid.has-wrapped-col,
.is-grid-inline.has-wrapped-col {
  grid-auto-flow: column;
}
.is-grid.has-wrapped-col.is-dense,
.is-grid-inline.has-wrapped-col.is-dense {
  grid-auto-flow: column dense;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-template-columns: repeat(12, 1fr);
}

.is-grid-inline {
  display: inline-grid !important;
}

.has-row-1 {
  grid-template-rows: repeat(1, 1fr);
}
.has-row-1 > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-row-1 > * {
    grid-column: span 1;
  }
}

.has-row-1-xs > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-row-1-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-1-xs {
    grid-template-rows: repeat(1, 1fr) !important;
  }
}

.has-row-1-sm > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-row-1-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-1-sm {
    grid-template-rows: repeat(1, 1fr) !important;
  }
}

.has-row-1-md > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-row-1-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-1-md {
    grid-template-rows: repeat(1, 1fr) !important;
  }
}

.has-row-1-lg > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-row-1-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-1-lg {
    grid-template-rows: repeat(1, 1fr) !important;
  }
}

.has-row-1-xl > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-row-1-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-1-xl {
    grid-template-rows: repeat(1, 1fr) !important;
  }
}

.has-row-1-xxl > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-row-1-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-1-xxl {
    grid-template-rows: repeat(1, 1fr) !important;
  }
}

.has-row-2 {
  grid-template-rows: repeat(2, 1fr);
}
.has-row-2 > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-row-2 > * {
    grid-column: span 1;
  }
}

.has-row-2-xs > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-row-2-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-2-xs {
    grid-template-rows: repeat(2, 1fr) !important;
  }
}

.has-row-2-sm > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-row-2-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-2-sm {
    grid-template-rows: repeat(2, 1fr) !important;
  }
}

.has-row-2-md > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-row-2-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-2-md {
    grid-template-rows: repeat(2, 1fr) !important;
  }
}

.has-row-2-lg > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-row-2-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-2-lg {
    grid-template-rows: repeat(2, 1fr) !important;
  }
}

.has-row-2-xl > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-row-2-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-2-xl {
    grid-template-rows: repeat(2, 1fr) !important;
  }
}

.has-row-2-xxl > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-row-2-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-2-xxl {
    grid-template-rows: repeat(2, 1fr) !important;
  }
}

.has-row-3 {
  grid-template-rows: repeat(3, 1fr);
}
.has-row-3 > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-row-3 > * {
    grid-column: span 1;
  }
}

.has-row-3-xs > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-row-3-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-3-xs {
    grid-template-rows: repeat(3, 1fr) !important;
  }
}

.has-row-3-sm > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-row-3-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-3-sm {
    grid-template-rows: repeat(3, 1fr) !important;
  }
}

.has-row-3-md > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-row-3-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-3-md {
    grid-template-rows: repeat(3, 1fr) !important;
  }
}

.has-row-3-lg > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-row-3-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-3-lg {
    grid-template-rows: repeat(3, 1fr) !important;
  }
}

.has-row-3-xl > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-row-3-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-3-xl {
    grid-template-rows: repeat(3, 1fr) !important;
  }
}

.has-row-3-xxl > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-row-3-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-3-xxl {
    grid-template-rows: repeat(3, 1fr) !important;
  }
}

.has-row-4 {
  grid-template-rows: repeat(4, 1fr);
}
.has-row-4 > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-row-4 > * {
    grid-column: span 1;
  }
}

.has-row-4-xs > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-row-4-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-4-xs {
    grid-template-rows: repeat(4, 1fr) !important;
  }
}

.has-row-4-sm > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-row-4-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-4-sm {
    grid-template-rows: repeat(4, 1fr) !important;
  }
}

.has-row-4-md > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-row-4-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-4-md {
    grid-template-rows: repeat(4, 1fr) !important;
  }
}

.has-row-4-lg > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-row-4-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-4-lg {
    grid-template-rows: repeat(4, 1fr) !important;
  }
}

.has-row-4-xl > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-row-4-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-4-xl {
    grid-template-rows: repeat(4, 1fr) !important;
  }
}

.has-row-4-xxl > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-row-4-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-4-xxl {
    grid-template-rows: repeat(4, 1fr) !important;
  }
}

.has-row-5 {
  grid-template-rows: repeat(5, 1fr);
}
.has-row-5 > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-row-5 > * {
    grid-column: span 1;
  }
}

.has-row-5-xs > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-row-5-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-5-xs {
    grid-template-rows: repeat(5, 1fr) !important;
  }
}

.has-row-5-sm > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-row-5-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-5-sm {
    grid-template-rows: repeat(5, 1fr) !important;
  }
}

.has-row-5-md > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-row-5-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-5-md {
    grid-template-rows: repeat(5, 1fr) !important;
  }
}

.has-row-5-lg > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-row-5-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-5-lg {
    grid-template-rows: repeat(5, 1fr) !important;
  }
}

.has-row-5-xl > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-row-5-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-5-xl {
    grid-template-rows: repeat(5, 1fr) !important;
  }
}

.has-row-5-xxl > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-row-5-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-5-xxl {
    grid-template-rows: repeat(5, 1fr) !important;
  }
}

.has-row-6 {
  grid-template-rows: repeat(6, 1fr);
}
.has-row-6 > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-row-6 > * {
    grid-column: span 1;
  }
}

.has-row-6-xs > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-row-6-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-6-xs {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}

.has-row-6-sm > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-row-6-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-6-sm {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}

.has-row-6-md > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-row-6-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-6-md {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}

.has-row-6-lg > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-row-6-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-6-lg {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}

.has-row-6-xl > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-row-6-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-6-xl {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}

.has-row-6-xxl > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-row-6-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-6-xxl {
    grid-template-rows: repeat(6, 1fr) !important;
  }
}

.has-row-7 {
  grid-template-rows: repeat(7, 1fr);
}
.has-row-7 > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-row-7 > * {
    grid-column: span 1;
  }
}

.has-row-7-xs > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-row-7-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-7-xs {
    grid-template-rows: repeat(7, 1fr) !important;
  }
}

.has-row-7-sm > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-row-7-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-7-sm {
    grid-template-rows: repeat(7, 1fr) !important;
  }
}

.has-row-7-md > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-row-7-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-7-md {
    grid-template-rows: repeat(7, 1fr) !important;
  }
}

.has-row-7-lg > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-row-7-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-7-lg {
    grid-template-rows: repeat(7, 1fr) !important;
  }
}

.has-row-7-xl > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-row-7-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-7-xl {
    grid-template-rows: repeat(7, 1fr) !important;
  }
}

.has-row-7-xxl > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-row-7-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-7-xxl {
    grid-template-rows: repeat(7, 1fr) !important;
  }
}

.has-row-8 {
  grid-template-rows: repeat(8, 1fr);
}
.has-row-8 > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-row-8 > * {
    grid-column: span 1;
  }
}

.has-row-8-xs > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-row-8-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-8-xs {
    grid-template-rows: repeat(8, 1fr) !important;
  }
}

.has-row-8-sm > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-row-8-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-8-sm {
    grid-template-rows: repeat(8, 1fr) !important;
  }
}

.has-row-8-md > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-row-8-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-8-md {
    grid-template-rows: repeat(8, 1fr) !important;
  }
}

.has-row-8-lg > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-row-8-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-8-lg {
    grid-template-rows: repeat(8, 1fr) !important;
  }
}

.has-row-8-xl > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-row-8-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-8-xl {
    grid-template-rows: repeat(8, 1fr) !important;
  }
}

.has-row-8-xxl > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-row-8-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-8-xxl {
    grid-template-rows: repeat(8, 1fr) !important;
  }
}

.has-row-9 {
  grid-template-rows: repeat(9, 1fr);
}
.has-row-9 > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-row-9 > * {
    grid-column: span 1;
  }
}

.has-row-9-xs > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-row-9-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-9-xs {
    grid-template-rows: repeat(9, 1fr) !important;
  }
}

.has-row-9-sm > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-row-9-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-9-sm {
    grid-template-rows: repeat(9, 1fr) !important;
  }
}

.has-row-9-md > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-row-9-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-9-md {
    grid-template-rows: repeat(9, 1fr) !important;
  }
}

.has-row-9-lg > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-row-9-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-9-lg {
    grid-template-rows: repeat(9, 1fr) !important;
  }
}

.has-row-9-xl > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-row-9-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-9-xl {
    grid-template-rows: repeat(9, 1fr) !important;
  }
}

.has-row-9-xxl > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-row-9-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-9-xxl {
    grid-template-rows: repeat(9, 1fr) !important;
  }
}

.has-row-10 {
  grid-template-rows: repeat(10, 1fr);
}
.has-row-10 > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-row-10 > * {
    grid-column: span 1;
  }
}

.has-row-10-xs > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-row-10-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-10-xs {
    grid-template-rows: repeat(10, 1fr) !important;
  }
}

.has-row-10-sm > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-row-10-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-10-sm {
    grid-template-rows: repeat(10, 1fr) !important;
  }
}

.has-row-10-md > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-row-10-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-10-md {
    grid-template-rows: repeat(10, 1fr) !important;
  }
}

.has-row-10-lg > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-row-10-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-10-lg {
    grid-template-rows: repeat(10, 1fr) !important;
  }
}

.has-row-10-xl > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-row-10-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-10-xl {
    grid-template-rows: repeat(10, 1fr) !important;
  }
}

.has-row-10-xxl > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-row-10-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-10-xxl {
    grid-template-rows: repeat(10, 1fr) !important;
  }
}

.has-row-11 {
  grid-template-rows: repeat(11, 1fr);
}
.has-row-11 > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-row-11 > * {
    grid-column: span 1;
  }
}

.has-row-11-xs > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-row-11-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-11-xs {
    grid-template-rows: repeat(11, 1fr) !important;
  }
}

.has-row-11-sm > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-row-11-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-11-sm {
    grid-template-rows: repeat(11, 1fr) !important;
  }
}

.has-row-11-md > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-row-11-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-11-md {
    grid-template-rows: repeat(11, 1fr) !important;
  }
}

.has-row-11-lg > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-row-11-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-11-lg {
    grid-template-rows: repeat(11, 1fr) !important;
  }
}

.has-row-11-xl > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-row-11-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-11-xl {
    grid-template-rows: repeat(11, 1fr) !important;
  }
}

.has-row-11-xxl > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-row-11-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-11-xxl {
    grid-template-rows: repeat(11, 1fr) !important;
  }
}

.has-row-12 {
  grid-template-rows: repeat(12, 1fr);
}
.has-row-12 > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-row-12 > * {
    grid-column: span 1;
  }
}

.has-row-12-xs > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-row-12-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-row-12-xs {
    grid-template-rows: repeat(12, 1fr) !important;
  }
}

.has-row-12-sm > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-row-12-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-row-12-sm {
    grid-template-rows: repeat(12, 1fr) !important;
  }
}

.has-row-12-md > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-row-12-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-row-12-md {
    grid-template-rows: repeat(12, 1fr) !important;
  }
}

.has-row-12-lg > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-row-12-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-row-12-lg {
    grid-template-rows: repeat(12, 1fr) !important;
  }
}

.has-row-12-xl > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-row-12-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-row-12-xl {
    grid-template-rows: repeat(12, 1fr) !important;
  }
}

.has-row-12-xxl > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-row-12-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-row-12-xxl {
    grid-template-rows: repeat(12, 1fr) !important;
  }
}

.has-col-1 {
  grid-template-columns: repeat(1, 1fr);
}
.has-col-1 > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-col-1 > * {
    grid-column: span 1;
  }
}

.has-col-1-xs > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-col-1-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-1-xs {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.has-col-1-sm > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-col-1-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-1-sm {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.has-col-1-md > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-col-1-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-1-md {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.has-col-1-lg > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-col-1-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-1-lg {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.has-col-1-xl > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-col-1-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-1-xl {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.has-col-1-xxl > * {
  grid-column: span 1;
}
@media screen and (min-width: 992px) {
  .has-col-1-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-1-xxl {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.has-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.has-col-2 > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-col-2 > * {
    grid-column: span 1;
  }
}

.has-col-2-xs > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-col-2-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-2-xs {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.has-col-2-sm > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-col-2-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-2-sm {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.has-col-2-md > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-col-2-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-2-md {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.has-col-2-lg > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-col-2-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-2-lg {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.has-col-2-xl > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-col-2-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-2-xl {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.has-col-2-xxl > * {
  grid-column: span 2;
}
@media screen and (min-width: 992px) {
  .has-col-2-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-2-xxl {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.has-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.has-col-3 > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-col-3 > * {
    grid-column: span 1;
  }
}

.has-col-3-xs > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-col-3-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-3-xs {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.has-col-3-sm > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-col-3-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-3-sm {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.has-col-3-md > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-col-3-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-3-md {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.has-col-3-lg > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-col-3-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-3-lg {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.has-col-3-xl > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-col-3-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-3-xl {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.has-col-3-xxl > * {
  grid-column: span 3;
}
@media screen and (min-width: 992px) {
  .has-col-3-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-3-xxl {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.has-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.has-col-4 > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-col-4 > * {
    grid-column: span 1;
  }
}

.has-col-4-xs > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-col-4-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-4-xs {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.has-col-4-sm > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-col-4-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-4-sm {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.has-col-4-md > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-col-4-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-4-md {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.has-col-4-lg > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-col-4-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-4-lg {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.has-col-4-xl > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-col-4-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-4-xl {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.has-col-4-xxl > * {
  grid-column: span 4;
}
@media screen and (min-width: 992px) {
  .has-col-4-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-4-xxl {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.has-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.has-col-5 > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-col-5 > * {
    grid-column: span 1;
  }
}

.has-col-5-xs > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-col-5-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-5-xs {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

.has-col-5-sm > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-col-5-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-5-sm {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

.has-col-5-md > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-col-5-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-5-md {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

.has-col-5-lg > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-col-5-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-5-lg {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

.has-col-5-xl > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-col-5-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-5-xl {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

.has-col-5-xxl > * {
  grid-column: span 5;
}
@media screen and (min-width: 992px) {
  .has-col-5-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-5-xxl {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

.has-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.has-col-6 > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-col-6 > * {
    grid-column: span 1;
  }
}

.has-col-6-xs > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-col-6-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-6-xs {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

.has-col-6-sm > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-col-6-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-6-sm {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

.has-col-6-md > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-col-6-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-6-md {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

.has-col-6-lg > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-col-6-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-6-lg {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

.has-col-6-xl > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-col-6-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-6-xl {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

.has-col-6-xxl > * {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .has-col-6-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-6-xxl {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

.has-col-7 {
  grid-template-columns: repeat(7, 1fr);
}
.has-col-7 > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-col-7 > * {
    grid-column: span 1;
  }
}

.has-col-7-xs > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-col-7-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-7-xs {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}

.has-col-7-sm > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-col-7-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-7-sm {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}

.has-col-7-md > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-col-7-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-7-md {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}

.has-col-7-lg > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-col-7-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-7-lg {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}

.has-col-7-xl > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-col-7-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-7-xl {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}

.has-col-7-xxl > * {
  grid-column: span 7;
}
@media screen and (min-width: 992px) {
  .has-col-7-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-7-xxl {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}

.has-col-8 {
  grid-template-columns: repeat(8, 1fr);
}
.has-col-8 > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-col-8 > * {
    grid-column: span 1;
  }
}

.has-col-8-xs > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-col-8-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-8-xs {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}

.has-col-8-sm > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-col-8-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-8-sm {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}

.has-col-8-md > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-col-8-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-8-md {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}

.has-col-8-lg > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-col-8-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-8-lg {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}

.has-col-8-xl > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-col-8-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-8-xl {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}

.has-col-8-xxl > * {
  grid-column: span 8;
}
@media screen and (min-width: 992px) {
  .has-col-8-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-8-xxl {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}

.has-col-9 {
  grid-template-columns: repeat(9, 1fr);
}
.has-col-9 > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-col-9 > * {
    grid-column: span 1;
  }
}

.has-col-9-xs > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-col-9-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-9-xs {
    grid-template-columns: repeat(9, 1fr) !important;
  }
}

.has-col-9-sm > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-col-9-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-9-sm {
    grid-template-columns: repeat(9, 1fr) !important;
  }
}

.has-col-9-md > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-col-9-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-9-md {
    grid-template-columns: repeat(9, 1fr) !important;
  }
}

.has-col-9-lg > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-col-9-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-9-lg {
    grid-template-columns: repeat(9, 1fr) !important;
  }
}

.has-col-9-xl > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-col-9-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-9-xl {
    grid-template-columns: repeat(9, 1fr) !important;
  }
}

.has-col-9-xxl > * {
  grid-column: span 9;
}
@media screen and (min-width: 992px) {
  .has-col-9-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-9-xxl {
    grid-template-columns: repeat(9, 1fr) !important;
  }
}

.has-col-10 {
  grid-template-columns: repeat(10, 1fr);
}
.has-col-10 > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-col-10 > * {
    grid-column: span 1;
  }
}

.has-col-10-xs > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-col-10-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-10-xs {
    grid-template-columns: repeat(10, 1fr) !important;
  }
}

.has-col-10-sm > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-col-10-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-10-sm {
    grid-template-columns: repeat(10, 1fr) !important;
  }
}

.has-col-10-md > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-col-10-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-10-md {
    grid-template-columns: repeat(10, 1fr) !important;
  }
}

.has-col-10-lg > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-col-10-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-10-lg {
    grid-template-columns: repeat(10, 1fr) !important;
  }
}

.has-col-10-xl > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-col-10-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-10-xl {
    grid-template-columns: repeat(10, 1fr) !important;
  }
}

.has-col-10-xxl > * {
  grid-column: span 10;
}
@media screen and (min-width: 992px) {
  .has-col-10-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-10-xxl {
    grid-template-columns: repeat(10, 1fr) !important;
  }
}

.has-col-11 {
  grid-template-columns: repeat(11, 1fr);
}
.has-col-11 > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-col-11 > * {
    grid-column: span 1;
  }
}

.has-col-11-xs > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-col-11-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-11-xs {
    grid-template-columns: repeat(11, 1fr) !important;
  }
}

.has-col-11-sm > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-col-11-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-11-sm {
    grid-template-columns: repeat(11, 1fr) !important;
  }
}

.has-col-11-md > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-col-11-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-11-md {
    grid-template-columns: repeat(11, 1fr) !important;
  }
}

.has-col-11-lg > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-col-11-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-11-lg {
    grid-template-columns: repeat(11, 1fr) !important;
  }
}

.has-col-11-xl > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-col-11-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-11-xl {
    grid-template-columns: repeat(11, 1fr) !important;
  }
}

.has-col-11-xxl > * {
  grid-column: span 11;
}
@media screen and (min-width: 992px) {
  .has-col-11-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-11-xxl {
    grid-template-columns: repeat(11, 1fr) !important;
  }
}

.has-col-12 {
  grid-template-columns: repeat(12, 1fr);
}
.has-col-12 > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-col-12 > * {
    grid-column: span 1;
  }
}

.has-col-12-xs > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-col-12-xs > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 575.5px) {
  .has-col-12-xs {
    grid-template-columns: repeat(12, 1fr) !important;
  }
}

.has-col-12-sm > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-col-12-sm > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 576px) {
  .has-col-12-sm {
    grid-template-columns: repeat(12, 1fr) !important;
  }
}

.has-col-12-md > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-col-12-md > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  .has-col-12-md {
    grid-template-columns: repeat(12, 1fr) !important;
  }
}

.has-col-12-lg > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-col-12-lg > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .has-col-12-lg {
    grid-template-columns: repeat(12, 1fr) !important;
  }
}

.has-col-12-xl > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-col-12-xl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1200px) {
  .has-col-12-xl {
    grid-template-columns: repeat(12, 1fr) !important;
  }
}

.has-col-12-xxl > * {
  grid-column: span 12;
}
@media screen and (min-width: 992px) {
  .has-col-12-xxl > * {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1400px) {
  .has-col-12-xxl {
    grid-template-columns: repeat(12, 1fr) !important;
  }
}

.is-row-1 {
  grid-row: span 1;
}

@media screen and (min-width: 575.5px) {
  .is-row-1-xs {
    grid-row: span 1 !important;
  }
}
.is-row-2 {
  grid-row: span 2;
}

@media screen and (min-width: 575.5px) {
  .is-row-2-xs {
    grid-row: span 2 !important;
  }
}
.is-row-3 {
  grid-row: span 3;
}

@media screen and (min-width: 575.5px) {
  .is-row-3-xs {
    grid-row: span 3 !important;
  }
}
.is-row-4 {
  grid-row: span 4;
}

@media screen and (min-width: 575.5px) {
  .is-row-4-xs {
    grid-row: span 4 !important;
  }
}
.is-row-5 {
  grid-row: span 5;
}

@media screen and (min-width: 575.5px) {
  .is-row-5-xs {
    grid-row: span 5 !important;
  }
}
.is-row-6 {
  grid-row: span 6;
}

@media screen and (min-width: 575.5px) {
  .is-row-6-xs {
    grid-row: span 6 !important;
  }
}
.is-row-7 {
  grid-row: span 7;
}

@media screen and (min-width: 575.5px) {
  .is-row-7-xs {
    grid-row: span 7 !important;
  }
}
.is-row-8 {
  grid-row: span 8;
}

@media screen and (min-width: 575.5px) {
  .is-row-8-xs {
    grid-row: span 8 !important;
  }
}
.is-row-9 {
  grid-row: span 9;
}

@media screen and (min-width: 575.5px) {
  .is-row-9-xs {
    grid-row: span 9 !important;
  }
}
.is-row-10 {
  grid-row: span 10;
}

@media screen and (min-width: 575.5px) {
  .is-row-10-xs {
    grid-row: span 10 !important;
  }
}
.is-row-11 {
  grid-row: span 11;
}

@media screen and (min-width: 575.5px) {
  .is-row-11-xs {
    grid-row: span 11 !important;
  }
}
.is-row-12 {
  grid-row: span 12;
}

@media screen and (min-width: 575.5px) {
  .is-row-12-xs {
    grid-row: span 12 !important;
  }
}
.is-row-1 {
  grid-row: span 1;
}

@media screen and (min-width: 576px) {
  .is-row-1-sm {
    grid-row: span 1 !important;
  }
}
.is-row-2 {
  grid-row: span 2;
}

@media screen and (min-width: 576px) {
  .is-row-2-sm {
    grid-row: span 2 !important;
  }
}
.is-row-3 {
  grid-row: span 3;
}

@media screen and (min-width: 576px) {
  .is-row-3-sm {
    grid-row: span 3 !important;
  }
}
.is-row-4 {
  grid-row: span 4;
}

@media screen and (min-width: 576px) {
  .is-row-4-sm {
    grid-row: span 4 !important;
  }
}
.is-row-5 {
  grid-row: span 5;
}

@media screen and (min-width: 576px) {
  .is-row-5-sm {
    grid-row: span 5 !important;
  }
}
.is-row-6 {
  grid-row: span 6;
}

@media screen and (min-width: 576px) {
  .is-row-6-sm {
    grid-row: span 6 !important;
  }
}
.is-row-7 {
  grid-row: span 7;
}

@media screen and (min-width: 576px) {
  .is-row-7-sm {
    grid-row: span 7 !important;
  }
}
.is-row-8 {
  grid-row: span 8;
}

@media screen and (min-width: 576px) {
  .is-row-8-sm {
    grid-row: span 8 !important;
  }
}
.is-row-9 {
  grid-row: span 9;
}

@media screen and (min-width: 576px) {
  .is-row-9-sm {
    grid-row: span 9 !important;
  }
}
.is-row-10 {
  grid-row: span 10;
}

@media screen and (min-width: 576px) {
  .is-row-10-sm {
    grid-row: span 10 !important;
  }
}
.is-row-11 {
  grid-row: span 11;
}

@media screen and (min-width: 576px) {
  .is-row-11-sm {
    grid-row: span 11 !important;
  }
}
.is-row-12 {
  grid-row: span 12;
}

@media screen and (min-width: 576px) {
  .is-row-12-sm {
    grid-row: span 12 !important;
  }
}
.is-row-1 {
  grid-row: span 1;
}

@media screen and (min-width: 768px) {
  .is-row-1-md {
    grid-row: span 1 !important;
  }
}
.is-row-2 {
  grid-row: span 2;
}

@media screen and (min-width: 768px) {
  .is-row-2-md {
    grid-row: span 2 !important;
  }
}
.is-row-3 {
  grid-row: span 3;
}

@media screen and (min-width: 768px) {
  .is-row-3-md {
    grid-row: span 3 !important;
  }
}
.is-row-4 {
  grid-row: span 4;
}

@media screen and (min-width: 768px) {
  .is-row-4-md {
    grid-row: span 4 !important;
  }
}
.is-row-5 {
  grid-row: span 5;
}

@media screen and (min-width: 768px) {
  .is-row-5-md {
    grid-row: span 5 !important;
  }
}
.is-row-6 {
  grid-row: span 6;
}

@media screen and (min-width: 768px) {
  .is-row-6-md {
    grid-row: span 6 !important;
  }
}
.is-row-7 {
  grid-row: span 7;
}

@media screen and (min-width: 768px) {
  .is-row-7-md {
    grid-row: span 7 !important;
  }
}
.is-row-8 {
  grid-row: span 8;
}

@media screen and (min-width: 768px) {
  .is-row-8-md {
    grid-row: span 8 !important;
  }
}
.is-row-9 {
  grid-row: span 9;
}

@media screen and (min-width: 768px) {
  .is-row-9-md {
    grid-row: span 9 !important;
  }
}
.is-row-10 {
  grid-row: span 10;
}

@media screen and (min-width: 768px) {
  .is-row-10-md {
    grid-row: span 10 !important;
  }
}
.is-row-11 {
  grid-row: span 11;
}

@media screen and (min-width: 768px) {
  .is-row-11-md {
    grid-row: span 11 !important;
  }
}
.is-row-12 {
  grid-row: span 12;
}

@media screen and (min-width: 768px) {
  .is-row-12-md {
    grid-row: span 12 !important;
  }
}
.is-row-1 {
  grid-row: span 1;
}

@media screen and (min-width: 992px) {
  .is-row-1-lg {
    grid-row: span 1 !important;
  }
}
.is-row-2 {
  grid-row: span 2;
}

@media screen and (min-width: 992px) {
  .is-row-2-lg {
    grid-row: span 2 !important;
  }
}
.is-row-3 {
  grid-row: span 3;
}

@media screen and (min-width: 992px) {
  .is-row-3-lg {
    grid-row: span 3 !important;
  }
}
.is-row-4 {
  grid-row: span 4;
}

@media screen and (min-width: 992px) {
  .is-row-4-lg {
    grid-row: span 4 !important;
  }
}
.is-row-5 {
  grid-row: span 5;
}

@media screen and (min-width: 992px) {
  .is-row-5-lg {
    grid-row: span 5 !important;
  }
}
.is-row-6 {
  grid-row: span 6;
}

@media screen and (min-width: 992px) {
  .is-row-6-lg {
    grid-row: span 6 !important;
  }
}
.is-row-7 {
  grid-row: span 7;
}

@media screen and (min-width: 992px) {
  .is-row-7-lg {
    grid-row: span 7 !important;
  }
}
.is-row-8 {
  grid-row: span 8;
}

@media screen and (min-width: 992px) {
  .is-row-8-lg {
    grid-row: span 8 !important;
  }
}
.is-row-9 {
  grid-row: span 9;
}

@media screen and (min-width: 992px) {
  .is-row-9-lg {
    grid-row: span 9 !important;
  }
}
.is-row-10 {
  grid-row: span 10;
}

@media screen and (min-width: 992px) {
  .is-row-10-lg {
    grid-row: span 10 !important;
  }
}
.is-row-11 {
  grid-row: span 11;
}

@media screen and (min-width: 992px) {
  .is-row-11-lg {
    grid-row: span 11 !important;
  }
}
.is-row-12 {
  grid-row: span 12;
}

@media screen and (min-width: 992px) {
  .is-row-12-lg {
    grid-row: span 12 !important;
  }
}
.is-row-1 {
  grid-row: span 1;
}

@media screen and (min-width: 1200px) {
  .is-row-1-xl {
    grid-row: span 1 !important;
  }
}
.is-row-2 {
  grid-row: span 2;
}

@media screen and (min-width: 1200px) {
  .is-row-2-xl {
    grid-row: span 2 !important;
  }
}
.is-row-3 {
  grid-row: span 3;
}

@media screen and (min-width: 1200px) {
  .is-row-3-xl {
    grid-row: span 3 !important;
  }
}
.is-row-4 {
  grid-row: span 4;
}

@media screen and (min-width: 1200px) {
  .is-row-4-xl {
    grid-row: span 4 !important;
  }
}
.is-row-5 {
  grid-row: span 5;
}

@media screen and (min-width: 1200px) {
  .is-row-5-xl {
    grid-row: span 5 !important;
  }
}
.is-row-6 {
  grid-row: span 6;
}

@media screen and (min-width: 1200px) {
  .is-row-6-xl {
    grid-row: span 6 !important;
  }
}
.is-row-7 {
  grid-row: span 7;
}

@media screen and (min-width: 1200px) {
  .is-row-7-xl {
    grid-row: span 7 !important;
  }
}
.is-row-8 {
  grid-row: span 8;
}

@media screen and (min-width: 1200px) {
  .is-row-8-xl {
    grid-row: span 8 !important;
  }
}
.is-row-9 {
  grid-row: span 9;
}

@media screen and (min-width: 1200px) {
  .is-row-9-xl {
    grid-row: span 9 !important;
  }
}
.is-row-10 {
  grid-row: span 10;
}

@media screen and (min-width: 1200px) {
  .is-row-10-xl {
    grid-row: span 10 !important;
  }
}
.is-row-11 {
  grid-row: span 11;
}

@media screen and (min-width: 1200px) {
  .is-row-11-xl {
    grid-row: span 11 !important;
  }
}
.is-row-12 {
  grid-row: span 12;
}

@media screen and (min-width: 1200px) {
  .is-row-12-xl {
    grid-row: span 12 !important;
  }
}
.is-row-1 {
  grid-row: span 1;
}

@media screen and (min-width: 1400px) {
  .is-row-1-xxl {
    grid-row: span 1 !important;
  }
}
.is-row-2 {
  grid-row: span 2;
}

@media screen and (min-width: 1400px) {
  .is-row-2-xxl {
    grid-row: span 2 !important;
  }
}
.is-row-3 {
  grid-row: span 3;
}

@media screen and (min-width: 1400px) {
  .is-row-3-xxl {
    grid-row: span 3 !important;
  }
}
.is-row-4 {
  grid-row: span 4;
}

@media screen and (min-width: 1400px) {
  .is-row-4-xxl {
    grid-row: span 4 !important;
  }
}
.is-row-5 {
  grid-row: span 5;
}

@media screen and (min-width: 1400px) {
  .is-row-5-xxl {
    grid-row: span 5 !important;
  }
}
.is-row-6 {
  grid-row: span 6;
}

@media screen and (min-width: 1400px) {
  .is-row-6-xxl {
    grid-row: span 6 !important;
  }
}
.is-row-7 {
  grid-row: span 7;
}

@media screen and (min-width: 1400px) {
  .is-row-7-xxl {
    grid-row: span 7 !important;
  }
}
.is-row-8 {
  grid-row: span 8;
}

@media screen and (min-width: 1400px) {
  .is-row-8-xxl {
    grid-row: span 8 !important;
  }
}
.is-row-9 {
  grid-row: span 9;
}

@media screen and (min-width: 1400px) {
  .is-row-9-xxl {
    grid-row: span 9 !important;
  }
}
.is-row-10 {
  grid-row: span 10;
}

@media screen and (min-width: 1400px) {
  .is-row-10-xxl {
    grid-row: span 10 !important;
  }
}
.is-row-11 {
  grid-row: span 11;
}

@media screen and (min-width: 1400px) {
  .is-row-11-xxl {
    grid-row: span 11 !important;
  }
}
.is-row-12 {
  grid-row: span 12;
}

@media screen and (min-width: 1400px) {
  .is-row-12-xxl {
    grid-row: span 12 !important;
  }
}
.is-col-1 {
  grid-column: span 1;
}

@media screen and (min-width: 575.5px) {
  .is-col-1-xs {
    grid-column: span 1 !important;
  }
}
.is-col-2 {
  grid-column: span 2;
}

@media screen and (min-width: 575.5px) {
  .is-col-2-xs {
    grid-column: span 2 !important;
  }
}
.is-col-3 {
  grid-column: span 3;
}

@media screen and (min-width: 575.5px) {
  .is-col-3-xs {
    grid-column: span 3 !important;
  }
}
.is-col-4 {
  grid-column: span 4;
}

@media screen and (min-width: 575.5px) {
  .is-col-4-xs {
    grid-column: span 4 !important;
  }
}
.is-col-5 {
  grid-column: span 5;
}

@media screen and (min-width: 575.5px) {
  .is-col-5-xs {
    grid-column: span 5 !important;
  }
}
.is-col-6 {
  grid-column: span 6;
}

@media screen and (min-width: 575.5px) {
  .is-col-6-xs {
    grid-column: span 6 !important;
  }
}
.is-col-7 {
  grid-column: span 7;
}

@media screen and (min-width: 575.5px) {
  .is-col-7-xs {
    grid-column: span 7 !important;
  }
}
.is-col-8 {
  grid-column: span 8;
}

@media screen and (min-width: 575.5px) {
  .is-col-8-xs {
    grid-column: span 8 !important;
  }
}
.is-col-9 {
  grid-column: span 9;
}

@media screen and (min-width: 575.5px) {
  .is-col-9-xs {
    grid-column: span 9 !important;
  }
}
.is-col-10 {
  grid-column: span 10;
}

@media screen and (min-width: 575.5px) {
  .is-col-10-xs {
    grid-column: span 10 !important;
  }
}
.is-col-11 {
  grid-column: span 11;
}

@media screen and (min-width: 575.5px) {
  .is-col-11-xs {
    grid-column: span 11 !important;
  }
}
.is-col-12 {
  grid-column: span 12;
}

@media screen and (min-width: 575.5px) {
  .is-col-12-xs {
    grid-column: span 12 !important;
  }
}
.is-col-1 {
  grid-column: span 1;
}

@media screen and (min-width: 576px) {
  .is-col-1-sm {
    grid-column: span 1 !important;
  }
}
.is-col-2 {
  grid-column: span 2;
}

@media screen and (min-width: 576px) {
  .is-col-2-sm {
    grid-column: span 2 !important;
  }
}
.is-col-3 {
  grid-column: span 3;
}

@media screen and (min-width: 576px) {
  .is-col-3-sm {
    grid-column: span 3 !important;
  }
}
.is-col-4 {
  grid-column: span 4;
}

@media screen and (min-width: 576px) {
  .is-col-4-sm {
    grid-column: span 4 !important;
  }
}
.is-col-5 {
  grid-column: span 5;
}

@media screen and (min-width: 576px) {
  .is-col-5-sm {
    grid-column: span 5 !important;
  }
}
.is-col-6 {
  grid-column: span 6;
}

@media screen and (min-width: 576px) {
  .is-col-6-sm {
    grid-column: span 6 !important;
  }
}
.is-col-7 {
  grid-column: span 7;
}

@media screen and (min-width: 576px) {
  .is-col-7-sm {
    grid-column: span 7 !important;
  }
}
.is-col-8 {
  grid-column: span 8;
}

@media screen and (min-width: 576px) {
  .is-col-8-sm {
    grid-column: span 8 !important;
  }
}
.is-col-9 {
  grid-column: span 9;
}

@media screen and (min-width: 576px) {
  .is-col-9-sm {
    grid-column: span 9 !important;
  }
}
.is-col-10 {
  grid-column: span 10;
}

@media screen and (min-width: 576px) {
  .is-col-10-sm {
    grid-column: span 10 !important;
  }
}
.is-col-11 {
  grid-column: span 11;
}

@media screen and (min-width: 576px) {
  .is-col-11-sm {
    grid-column: span 11 !important;
  }
}
.is-col-12 {
  grid-column: span 12;
}

@media screen and (min-width: 576px) {
  .is-col-12-sm {
    grid-column: span 12 !important;
  }
}
.is-col-1 {
  grid-column: span 1;
}

@media screen and (min-width: 768px) {
  .is-col-1-md {
    grid-column: span 1 !important;
  }
}
.is-col-2 {
  grid-column: span 2;
}

@media screen and (min-width: 768px) {
  .is-col-2-md {
    grid-column: span 2 !important;
  }
}
.is-col-3 {
  grid-column: span 3;
}

@media screen and (min-width: 768px) {
  .is-col-3-md {
    grid-column: span 3 !important;
  }
}
.is-col-4 {
  grid-column: span 4;
}

@media screen and (min-width: 768px) {
  .is-col-4-md {
    grid-column: span 4 !important;
  }
}
.is-col-5 {
  grid-column: span 5;
}

@media screen and (min-width: 768px) {
  .is-col-5-md {
    grid-column: span 5 !important;
  }
}
.is-col-6 {
  grid-column: span 6;
}

@media screen and (min-width: 768px) {
  .is-col-6-md {
    grid-column: span 6 !important;
  }
}
.is-col-7 {
  grid-column: span 7;
}

@media screen and (min-width: 768px) {
  .is-col-7-md {
    grid-column: span 7 !important;
  }
}
.is-col-8 {
  grid-column: span 8;
}

@media screen and (min-width: 768px) {
  .is-col-8-md {
    grid-column: span 8 !important;
  }
}
.is-col-9 {
  grid-column: span 9;
}

@media screen and (min-width: 768px) {
  .is-col-9-md {
    grid-column: span 9 !important;
  }
}
.is-col-10 {
  grid-column: span 10;
}

@media screen and (min-width: 768px) {
  .is-col-10-md {
    grid-column: span 10 !important;
  }
}
.is-col-11 {
  grid-column: span 11;
}

@media screen and (min-width: 768px) {
  .is-col-11-md {
    grid-column: span 11 !important;
  }
}
.is-col-12 {
  grid-column: span 12;
}

@media screen and (min-width: 768px) {
  .is-col-12-md {
    grid-column: span 12 !important;
  }
}
.is-col-1 {
  grid-column: span 1;
}

@media screen and (min-width: 992px) {
  .is-col-1-lg {
    grid-column: span 1 !important;
  }
}
.is-col-2 {
  grid-column: span 2;
}

@media screen and (min-width: 992px) {
  .is-col-2-lg {
    grid-column: span 2 !important;
  }
}
.is-col-3 {
  grid-column: span 3;
}

@media screen and (min-width: 992px) {
  .is-col-3-lg {
    grid-column: span 3 !important;
  }
}
.is-col-4 {
  grid-column: span 4;
}

@media screen and (min-width: 992px) {
  .is-col-4-lg {
    grid-column: span 4 !important;
  }
}
.is-col-5 {
  grid-column: span 5;
}

@media screen and (min-width: 992px) {
  .is-col-5-lg {
    grid-column: span 5 !important;
  }
}
.is-col-6 {
  grid-column: span 6;
}

@media screen and (min-width: 992px) {
  .is-col-6-lg {
    grid-column: span 6 !important;
  }
}
.is-col-7 {
  grid-column: span 7;
}

@media screen and (min-width: 992px) {
  .is-col-7-lg {
    grid-column: span 7 !important;
  }
}
.is-col-8 {
  grid-column: span 8;
}

@media screen and (min-width: 992px) {
  .is-col-8-lg {
    grid-column: span 8 !important;
  }
}
.is-col-9 {
  grid-column: span 9;
}

@media screen and (min-width: 992px) {
  .is-col-9-lg {
    grid-column: span 9 !important;
  }
}
.is-col-10 {
  grid-column: span 10;
}

@media screen and (min-width: 992px) {
  .is-col-10-lg {
    grid-column: span 10 !important;
  }
}
.is-col-11 {
  grid-column: span 11;
}

@media screen and (min-width: 992px) {
  .is-col-11-lg {
    grid-column: span 11 !important;
  }
}
.is-col-12 {
  grid-column: span 12;
}

@media screen and (min-width: 992px) {
  .is-col-12-lg {
    grid-column: span 12 !important;
  }
}
.is-col-1 {
  grid-column: span 1;
}

@media screen and (min-width: 1200px) {
  .is-col-1-xl {
    grid-column: span 1 !important;
  }
}
.is-col-2 {
  grid-column: span 2;
}

@media screen and (min-width: 1200px) {
  .is-col-2-xl {
    grid-column: span 2 !important;
  }
}
.is-col-3 {
  grid-column: span 3;
}

@media screen and (min-width: 1200px) {
  .is-col-3-xl {
    grid-column: span 3 !important;
  }
}
.is-col-4 {
  grid-column: span 4;
}

@media screen and (min-width: 1200px) {
  .is-col-4-xl {
    grid-column: span 4 !important;
  }
}
.is-col-5 {
  grid-column: span 5;
}

@media screen and (min-width: 1200px) {
  .is-col-5-xl {
    grid-column: span 5 !important;
  }
}
.is-col-6 {
  grid-column: span 6;
}

@media screen and (min-width: 1200px) {
  .is-col-6-xl {
    grid-column: span 6 !important;
  }
}
.is-col-7 {
  grid-column: span 7;
}

@media screen and (min-width: 1200px) {
  .is-col-7-xl {
    grid-column: span 7 !important;
  }
}
.is-col-8 {
  grid-column: span 8;
}

@media screen and (min-width: 1200px) {
  .is-col-8-xl {
    grid-column: span 8 !important;
  }
}
.is-col-9 {
  grid-column: span 9;
}

@media screen and (min-width: 1200px) {
  .is-col-9-xl {
    grid-column: span 9 !important;
  }
}
.is-col-10 {
  grid-column: span 10;
}

@media screen and (min-width: 1200px) {
  .is-col-10-xl {
    grid-column: span 10 !important;
  }
}
.is-col-11 {
  grid-column: span 11;
}

@media screen and (min-width: 1200px) {
  .is-col-11-xl {
    grid-column: span 11 !important;
  }
}
.is-col-12 {
  grid-column: span 12;
}

@media screen and (min-width: 1200px) {
  .is-col-12-xl {
    grid-column: span 12 !important;
  }
}
.is-col-1 {
  grid-column: span 1;
}

@media screen and (min-width: 1400px) {
  .is-col-1-xxl {
    grid-column: span 1 !important;
  }
}
.is-col-2 {
  grid-column: span 2;
}

@media screen and (min-width: 1400px) {
  .is-col-2-xxl {
    grid-column: span 2 !important;
  }
}
.is-col-3 {
  grid-column: span 3;
}

@media screen and (min-width: 1400px) {
  .is-col-3-xxl {
    grid-column: span 3 !important;
  }
}
.is-col-4 {
  grid-column: span 4;
}

@media screen and (min-width: 1400px) {
  .is-col-4-xxl {
    grid-column: span 4 !important;
  }
}
.is-col-5 {
  grid-column: span 5;
}

@media screen and (min-width: 1400px) {
  .is-col-5-xxl {
    grid-column: span 5 !important;
  }
}
.is-col-6 {
  grid-column: span 6;
}

@media screen and (min-width: 1400px) {
  .is-col-6-xxl {
    grid-column: span 6 !important;
  }
}
.is-col-7 {
  grid-column: span 7;
}

@media screen and (min-width: 1400px) {
  .is-col-7-xxl {
    grid-column: span 7 !important;
  }
}
.is-col-8 {
  grid-column: span 8;
}

@media screen and (min-width: 1400px) {
  .is-col-8-xxl {
    grid-column: span 8 !important;
  }
}
.is-col-9 {
  grid-column: span 9;
}

@media screen and (min-width: 1400px) {
  .is-col-9-xxl {
    grid-column: span 9 !important;
  }
}
.is-col-10 {
  grid-column: span 10;
}

@media screen and (min-width: 1400px) {
  .is-col-10-xxl {
    grid-column: span 10 !important;
  }
}
.is-col-11 {
  grid-column: span 11;
}

@media screen and (min-width: 1400px) {
  .is-col-11-xxl {
    grid-column: span 11 !important;
  }
}
.is-col-12 {
  grid-column: span 12;
}

@media screen and (min-width: 1400px) {
  .is-col-12-xxl {
    grid-column: span 12 !important;
  }
}
/* Class Generation
------------------------- */
.has-row-gap {
  grid-row-gap: var(--spacing);
}

.has-row-gap-md {
  grid-row-gap: var(--spacing-md);
}

.has-row-gap-lg {
  grid-row-gap: var(--spacing-lg);
}

.has-no-row-gap {
  grid-row-gap: 0;
}

.has-col-gap {
  grid-column-gap: var(--spacing);
}

.has-col-gap-md {
  grid-column-gap: var(--spacing-md);
}

.has-col-gap-lg {
  grid-column-gap: var(--spacing-lg);
}

.has-no-col-gap {
  grid-column-gap: 0;
}

.is-ltr {
  direction: ltr;
}

@media screen and (min-width: 575.5px) {
  .is-ltr-xs {
    direction: ltr;
  }
}

.is-ltr {
  direction: ltr;
}

@media screen and (min-width: 576px) {
  .is-ltr-sm {
    direction: ltr;
  }
}

.is-ltr {
  direction: ltr;
}

@media screen and (min-width: 768px) {
  .is-ltr-md {
    direction: ltr;
  }
}

.is-ltr {
  direction: ltr;
}

@media screen and (min-width: 992px) {
  .is-ltr-lg {
    direction: ltr;
  }
}

.is-ltr {
  direction: ltr;
}

@media screen and (min-width: 1200px) {
  .is-ltr-xl {
    direction: ltr;
  }
}

.is-ltr {
  direction: ltr;
}

@media screen and (min-width: 1400px) {
  .is-ltr-xxl {
    direction: ltr;
  }
}

.is-rtl {
  direction: rtl;
}

@media screen and (min-width: 575.5px) {
  .is-rtl-xs {
    direction: rtl;
  }
}

.is-rtl {
  direction: rtl;
}

@media screen and (min-width: 576px) {
  .is-rtl-sm {
    direction: rtl;
  }
}

.is-rtl {
  direction: rtl;
}

@media screen and (min-width: 768px) {
  .is-rtl-md {
    direction: rtl;
  }
}

.is-rtl {
  direction: rtl;
}

@media screen and (min-width: 992px) {
  .is-rtl-lg {
    direction: rtl;
  }
}

.is-rtl {
  direction: rtl;
}

@media screen and (min-width: 1200px) {
  .is-rtl-xl {
    direction: rtl;
  }
}

.is-rtl {
  direction: rtl;
}

@media screen and (min-width: 1400px) {
  .is-rtl-xxl {
    direction: rtl;
  }
}

.is-placed-left {
  place-self: left;
}

.is-placed-right {
  place-self: right;
}

.is-placed-center {
  place-self: center;
}

.is-placed-start {
  place-self: start;
}

.is-placed-normal {
  place-self: normal;
}

.is-order-1 {
  order: 1;
}

@media screen and (min-width: 575.5px) {
  .is-order-1-xs {
    order: 1;
  }
}

@media screen and (min-width: 576px) {
  .is-order-1-sm {
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .is-order-1-md {
    order: 1;
  }
}

@media screen and (min-width: 992px) {
  .is-order-1-lg {
    order: 1;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-1-xl {
    order: 1;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-1-xxl {
    order: 1;
  }
}

.is-order-2 {
  order: 2;
}

@media screen and (min-width: 575.5px) {
  .is-order-2-xs {
    order: 2;
  }
}

@media screen and (min-width: 576px) {
  .is-order-2-sm {
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .is-order-2-md {
    order: 2;
  }
}

@media screen and (min-width: 992px) {
  .is-order-2-lg {
    order: 2;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-2-xl {
    order: 2;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-2-xxl {
    order: 2;
  }
}

.is-order-3 {
  order: 3;
}

@media screen and (min-width: 575.5px) {
  .is-order-3-xs {
    order: 3;
  }
}

@media screen and (min-width: 576px) {
  .is-order-3-sm {
    order: 3;
  }
}

@media screen and (min-width: 768px) {
  .is-order-3-md {
    order: 3;
  }
}

@media screen and (min-width: 992px) {
  .is-order-3-lg {
    order: 3;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-3-xl {
    order: 3;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-3-xxl {
    order: 3;
  }
}

.is-order-4 {
  order: 4;
}

@media screen and (min-width: 575.5px) {
  .is-order-4-xs {
    order: 4;
  }
}

@media screen and (min-width: 576px) {
  .is-order-4-sm {
    order: 4;
  }
}

@media screen and (min-width: 768px) {
  .is-order-4-md {
    order: 4;
  }
}

@media screen and (min-width: 992px) {
  .is-order-4-lg {
    order: 4;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-4-xl {
    order: 4;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-4-xxl {
    order: 4;
  }
}

.is-order-5 {
  order: 5;
}

@media screen and (min-width: 575.5px) {
  .is-order-5-xs {
    order: 5;
  }
}

@media screen and (min-width: 576px) {
  .is-order-5-sm {
    order: 5;
  }
}

@media screen and (min-width: 768px) {
  .is-order-5-md {
    order: 5;
  }
}

@media screen and (min-width: 992px) {
  .is-order-5-lg {
    order: 5;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-5-xl {
    order: 5;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-5-xxl {
    order: 5;
  }
}

.is-order-6 {
  order: 6;
}

@media screen and (min-width: 575.5px) {
  .is-order-6-xs {
    order: 6;
  }
}

@media screen and (min-width: 576px) {
  .is-order-6-sm {
    order: 6;
  }
}

@media screen and (min-width: 768px) {
  .is-order-6-md {
    order: 6;
  }
}

@media screen and (min-width: 992px) {
  .is-order-6-lg {
    order: 6;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-6-xl {
    order: 6;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-6-xxl {
    order: 6;
  }
}

.is-order-7 {
  order: 7;
}

@media screen and (min-width: 575.5px) {
  .is-order-7-xs {
    order: 7;
  }
}

@media screen and (min-width: 576px) {
  .is-order-7-sm {
    order: 7;
  }
}

@media screen and (min-width: 768px) {
  .is-order-7-md {
    order: 7;
  }
}

@media screen and (min-width: 992px) {
  .is-order-7-lg {
    order: 7;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-7-xl {
    order: 7;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-7-xxl {
    order: 7;
  }
}

.is-order-8 {
  order: 8;
}

@media screen and (min-width: 575.5px) {
  .is-order-8-xs {
    order: 8;
  }
}

@media screen and (min-width: 576px) {
  .is-order-8-sm {
    order: 8;
  }
}

@media screen and (min-width: 768px) {
  .is-order-8-md {
    order: 8;
  }
}

@media screen and (min-width: 992px) {
  .is-order-8-lg {
    order: 8;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-8-xl {
    order: 8;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-8-xxl {
    order: 8;
  }
}

.is-order-9 {
  order: 9;
}

@media screen and (min-width: 575.5px) {
  .is-order-9-xs {
    order: 9;
  }
}

@media screen and (min-width: 576px) {
  .is-order-9-sm {
    order: 9;
  }
}

@media screen and (min-width: 768px) {
  .is-order-9-md {
    order: 9;
  }
}

@media screen and (min-width: 992px) {
  .is-order-9-lg {
    order: 9;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-9-xl {
    order: 9;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-9-xxl {
    order: 9;
  }
}

.is-order-10 {
  order: 10;
}

@media screen and (min-width: 575.5px) {
  .is-order-10-xs {
    order: 10;
  }
}

@media screen and (min-width: 576px) {
  .is-order-10-sm {
    order: 10;
  }
}

@media screen and (min-width: 768px) {
  .is-order-10-md {
    order: 10;
  }
}

@media screen and (min-width: 992px) {
  .is-order-10-lg {
    order: 10;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-10-xl {
    order: 10;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-10-xxl {
    order: 10;
  }
}

.is-order-11 {
  order: 11;
}

@media screen and (min-width: 575.5px) {
  .is-order-11-xs {
    order: 11;
  }
}

@media screen and (min-width: 576px) {
  .is-order-11-sm {
    order: 11;
  }
}

@media screen and (min-width: 768px) {
  .is-order-11-md {
    order: 11;
  }
}

@media screen and (min-width: 992px) {
  .is-order-11-lg {
    order: 11;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-11-xl {
    order: 11;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-11-xxl {
    order: 11;
  }
}

.is-order-12 {
  order: 12;
}

@media screen and (min-width: 575.5px) {
  .is-order-12-xs {
    order: 12;
  }
}

@media screen and (min-width: 576px) {
  .is-order-12-sm {
    order: 12;
  }
}

@media screen and (min-width: 768px) {
  .is-order-12-md {
    order: 12;
  }
}

@media screen and (min-width: 992px) {
  .is-order-12-lg {
    order: 12;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-12-xl {
    order: 12;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-12-xxl {
    order: 12;
  }
}

.is-order-1 {
  order: 1;
}

@media screen and (min-width: 575.5px) {
  .is-order-1-xs {
    order: 1;
  }
}

@media screen and (min-width: 576px) {
  .is-order-1-sm {
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .is-order-1-md {
    order: 1;
  }
}

@media screen and (min-width: 992px) {
  .is-order-1-lg {
    order: 1;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-1-xl {
    order: 1;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-1-xxl {
    order: 1;
  }
}

.is-order-2 {
  order: 2;
}

@media screen and (min-width: 575.5px) {
  .is-order-2-xs {
    order: 2;
  }
}

@media screen and (min-width: 576px) {
  .is-order-2-sm {
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .is-order-2-md {
    order: 2;
  }
}

@media screen and (min-width: 992px) {
  .is-order-2-lg {
    order: 2;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-2-xl {
    order: 2;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-2-xxl {
    order: 2;
  }
}

.is-order-3 {
  order: 3;
}

@media screen and (min-width: 575.5px) {
  .is-order-3-xs {
    order: 3;
  }
}

@media screen and (min-width: 576px) {
  .is-order-3-sm {
    order: 3;
  }
}

@media screen and (min-width: 768px) {
  .is-order-3-md {
    order: 3;
  }
}

@media screen and (min-width: 992px) {
  .is-order-3-lg {
    order: 3;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-3-xl {
    order: 3;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-3-xxl {
    order: 3;
  }
}

.is-order-4 {
  order: 4;
}

@media screen and (min-width: 575.5px) {
  .is-order-4-xs {
    order: 4;
  }
}

@media screen and (min-width: 576px) {
  .is-order-4-sm {
    order: 4;
  }
}

@media screen and (min-width: 768px) {
  .is-order-4-md {
    order: 4;
  }
}

@media screen and (min-width: 992px) {
  .is-order-4-lg {
    order: 4;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-4-xl {
    order: 4;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-4-xxl {
    order: 4;
  }
}

.is-order-5 {
  order: 5;
}

@media screen and (min-width: 575.5px) {
  .is-order-5-xs {
    order: 5;
  }
}

@media screen and (min-width: 576px) {
  .is-order-5-sm {
    order: 5;
  }
}

@media screen and (min-width: 768px) {
  .is-order-5-md {
    order: 5;
  }
}

@media screen and (min-width: 992px) {
  .is-order-5-lg {
    order: 5;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-5-xl {
    order: 5;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-5-xxl {
    order: 5;
  }
}

.is-order-6 {
  order: 6;
}

@media screen and (min-width: 575.5px) {
  .is-order-6-xs {
    order: 6;
  }
}

@media screen and (min-width: 576px) {
  .is-order-6-sm {
    order: 6;
  }
}

@media screen and (min-width: 768px) {
  .is-order-6-md {
    order: 6;
  }
}

@media screen and (min-width: 992px) {
  .is-order-6-lg {
    order: 6;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-6-xl {
    order: 6;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-6-xxl {
    order: 6;
  }
}

.is-order-7 {
  order: 7;
}

@media screen and (min-width: 575.5px) {
  .is-order-7-xs {
    order: 7;
  }
}

@media screen and (min-width: 576px) {
  .is-order-7-sm {
    order: 7;
  }
}

@media screen and (min-width: 768px) {
  .is-order-7-md {
    order: 7;
  }
}

@media screen and (min-width: 992px) {
  .is-order-7-lg {
    order: 7;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-7-xl {
    order: 7;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-7-xxl {
    order: 7;
  }
}

.is-order-8 {
  order: 8;
}

@media screen and (min-width: 575.5px) {
  .is-order-8-xs {
    order: 8;
  }
}

@media screen and (min-width: 576px) {
  .is-order-8-sm {
    order: 8;
  }
}

@media screen and (min-width: 768px) {
  .is-order-8-md {
    order: 8;
  }
}

@media screen and (min-width: 992px) {
  .is-order-8-lg {
    order: 8;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-8-xl {
    order: 8;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-8-xxl {
    order: 8;
  }
}

.is-order-9 {
  order: 9;
}

@media screen and (min-width: 575.5px) {
  .is-order-9-xs {
    order: 9;
  }
}

@media screen and (min-width: 576px) {
  .is-order-9-sm {
    order: 9;
  }
}

@media screen and (min-width: 768px) {
  .is-order-9-md {
    order: 9;
  }
}

@media screen and (min-width: 992px) {
  .is-order-9-lg {
    order: 9;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-9-xl {
    order: 9;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-9-xxl {
    order: 9;
  }
}

.is-order-10 {
  order: 10;
}

@media screen and (min-width: 575.5px) {
  .is-order-10-xs {
    order: 10;
  }
}

@media screen and (min-width: 576px) {
  .is-order-10-sm {
    order: 10;
  }
}

@media screen and (min-width: 768px) {
  .is-order-10-md {
    order: 10;
  }
}

@media screen and (min-width: 992px) {
  .is-order-10-lg {
    order: 10;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-10-xl {
    order: 10;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-10-xxl {
    order: 10;
  }
}

.is-order-11 {
  order: 11;
}

@media screen and (min-width: 575.5px) {
  .is-order-11-xs {
    order: 11;
  }
}

@media screen and (min-width: 576px) {
  .is-order-11-sm {
    order: 11;
  }
}

@media screen and (min-width: 768px) {
  .is-order-11-md {
    order: 11;
  }
}

@media screen and (min-width: 992px) {
  .is-order-11-lg {
    order: 11;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-11-xl {
    order: 11;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-11-xxl {
    order: 11;
  }
}

.is-order-12 {
  order: 12;
}

@media screen and (min-width: 575.5px) {
  .is-order-12-xs {
    order: 12;
  }
}

@media screen and (min-width: 576px) {
  .is-order-12-sm {
    order: 12;
  }
}

@media screen and (min-width: 768px) {
  .is-order-12-md {
    order: 12;
  }
}

@media screen and (min-width: 992px) {
  .is-order-12-lg {
    order: 12;
  }
}

@media screen and (min-width: 1200px) {
  .is-order-12-xl {
    order: 12;
  }
}

@media screen and (min-width: 1400px) {
  .is-order-12-xxl {
    order: 12;
  }
}

.is-aligned-stretch {
  align-self: stretch;
}

.is-flex {
  display: flex;
}

.is-flex-inline {
  display: inline-flex;
}

.is-stretched {
  align-self: stretch;
  justify-self: stretch;
}

@media screen and (min-width: 575.5px) {
  .is-aligned-stretch-xs {
    align-self: stretch;
  }
}

@media screen and (min-width: 575.5px) {
  .is-flex-xs {
    display: flex;
  }
}

@media screen and (min-width: 575.5px) {
  .is-flex-inline-xs {
    display: inline-flex;
  }
}

@media screen and (min-width: 575.5px) {
  .is-stretched-xs {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 576px) {
  .is-aligned-stretch-sm {
    align-self: stretch;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-sm {
    display: flex;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-inline-sm {
    display: inline-flex;
  }
}

@media screen and (min-width: 576px) {
  .is-stretched-sm {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 768px) {
  .is-aligned-stretch-md {
    align-self: stretch;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-md {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-inline-md {
    display: inline-flex;
  }
}

@media screen and (min-width: 768px) {
  .is-stretched-md {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 992px) {
  .is-aligned-stretch-lg {
    align-self: stretch;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-lg {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-inline-lg {
    display: inline-flex;
  }
}

@media screen and (min-width: 992px) {
  .is-stretched-lg {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 1200px) {
  .is-aligned-stretch-xl {
    align-self: stretch;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-xl {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-inline-xl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-stretched-xl {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 1400px) {
  .is-aligned-stretch-xxl {
    align-self: stretch;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-xxl {
    display: flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-inline-xxl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-stretched-xxl {
    align-self: stretch;
    justify-self: stretch;
  }
}

.is-aligned-start {
  align-self: start;
}

.is-flex {
  display: flex;
}

.is-flex-inline {
  display: inline-flex;
}

.is-stretched {
  align-self: stretch;
  justify-self: stretch;
}

@media screen and (min-width: 575.5px) {
  .is-aligned-start-xs {
    align-self: start;
  }
}

@media screen and (min-width: 575.5px) {
  .is-flex-xs {
    display: flex;
  }
}

@media screen and (min-width: 575.5px) {
  .is-flex-inline-xs {
    display: inline-flex;
  }
}

@media screen and (min-width: 575.5px) {
  .is-stretched-xs {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 576px) {
  .is-aligned-start-sm {
    align-self: start;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-sm {
    display: flex;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-inline-sm {
    display: inline-flex;
  }
}

@media screen and (min-width: 576px) {
  .is-stretched-sm {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 768px) {
  .is-aligned-start-md {
    align-self: start;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-md {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-inline-md {
    display: inline-flex;
  }
}

@media screen and (min-width: 768px) {
  .is-stretched-md {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 992px) {
  .is-aligned-start-lg {
    align-self: start;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-lg {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-inline-lg {
    display: inline-flex;
  }
}

@media screen and (min-width: 992px) {
  .is-stretched-lg {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 1200px) {
  .is-aligned-start-xl {
    align-self: start;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-xl {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-inline-xl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-stretched-xl {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 1400px) {
  .is-aligned-start-xxl {
    align-self: start;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-xxl {
    display: flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-inline-xxl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-stretched-xxl {
    align-self: stretch;
    justify-self: stretch;
  }
}

.is-aligned-end {
  align-self: end;
}

.is-flex {
  display: flex;
}

.is-flex-inline {
  display: inline-flex;
}

.is-stretched {
  align-self: stretch;
  justify-self: stretch;
}

@media screen and (min-width: 575.5px) {
  .is-aligned-end-xs {
    align-self: end;
  }
}

@media screen and (min-width: 575.5px) {
  .is-flex-xs {
    display: flex;
  }
}

@media screen and (min-width: 575.5px) {
  .is-flex-inline-xs {
    display: inline-flex;
  }
}

@media screen and (min-width: 575.5px) {
  .is-stretched-xs {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 576px) {
  .is-aligned-end-sm {
    align-self: end;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-sm {
    display: flex;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-inline-sm {
    display: inline-flex;
  }
}

@media screen and (min-width: 576px) {
  .is-stretched-sm {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 768px) {
  .is-aligned-end-md {
    align-self: end;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-md {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-inline-md {
    display: inline-flex;
  }
}

@media screen and (min-width: 768px) {
  .is-stretched-md {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 992px) {
  .is-aligned-end-lg {
    align-self: end;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-lg {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-inline-lg {
    display: inline-flex;
  }
}

@media screen and (min-width: 992px) {
  .is-stretched-lg {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 1200px) {
  .is-aligned-end-xl {
    align-self: end;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-xl {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-inline-xl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-stretched-xl {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 1400px) {
  .is-aligned-end-xxl {
    align-self: end;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-xxl {
    display: flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-inline-xxl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-stretched-xxl {
    align-self: stretch;
    justify-self: stretch;
  }
}

.is-aligned-center {
  align-self: center;
}

.is-flex {
  display: flex;
}

.is-flex-inline {
  display: inline-flex;
}

.is-stretched {
  align-self: stretch;
  justify-self: stretch;
}

@media screen and (min-width: 575.5px) {
  .is-aligned-center-xs {
    align-self: center;
  }
}

@media screen and (min-width: 575.5px) {
  .is-flex-xs {
    display: flex;
  }
}

@media screen and (min-width: 575.5px) {
  .is-flex-inline-xs {
    display: inline-flex;
  }
}

@media screen and (min-width: 575.5px) {
  .is-stretched-xs {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 576px) {
  .is-aligned-center-sm {
    align-self: center;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-sm {
    display: flex;
  }
}

@media screen and (min-width: 576px) {
  .is-flex-inline-sm {
    display: inline-flex;
  }
}

@media screen and (min-width: 576px) {
  .is-stretched-sm {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 768px) {
  .is-aligned-center-md {
    align-self: center;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-md {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .is-flex-inline-md {
    display: inline-flex;
  }
}

@media screen and (min-width: 768px) {
  .is-stretched-md {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 992px) {
  .is-aligned-center-lg {
    align-self: center;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-lg {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  .is-flex-inline-lg {
    display: inline-flex;
  }
}

@media screen and (min-width: 992px) {
  .is-stretched-lg {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 1200px) {
  .is-aligned-center-xl {
    align-self: center;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-xl {
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-flex-inline-xl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1200px) {
  .is-stretched-xl {
    align-self: stretch;
    justify-self: stretch;
  }
}

@media screen and (min-width: 1400px) {
  .is-aligned-center-xxl {
    align-self: center;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-xxl {
    display: flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-flex-inline-xxl {
    display: inline-flex;
  }
}

@media screen and (min-width: 1400px) {
  .is-stretched-xxl {
    align-self: stretch;
    justify-self: stretch;
  }
}

body {
  line-height: 1.5;
  color: white;
  background-color: transparent;
}

.on-sec-1 {
  background: transparent url("/img/Background-1.jpg") no-repeat center center;
  background-size: cover;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.welcome-logo {
  width: 100%;
  height: auto;
  margin-top: 40vh;
}

.welcome-title {
  color: #f9b021;
  font-size: 2.5rem;
  text-align: center;
  font-style: italic;
}

@media (max-width: 767px) {
  .hide-on-small {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide-on-large {
    display: none;
  }
}

#welcome {
  height: 100vh;
}

#donor_letter {
  margin-bottom: 30vh;
}

#worship {
  margin-bottom: 30vh;
}

#community {
  margin-bottom: 30vh;
}

#mission {
  margin-bottom: 30vh;
}

#financial {
  margin-bottom: 30vh;
}

#compassionInitiative {
  margin-bottom: 30vh;
}

#closing {
  height: 100vh;
}

ul li:not([class]) {
  margin: 0.5rem 0;
}

.responsive-img {
  width: 100%;
  height: auto;
}

.vert-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.has-m-top-xl {
  margin-top: 8rem;
}

.section-dark {
  color: white;
}

.button {
  border: solid 1px white;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
}

.data-table {
  border: 1px solid #e5e5e5;
  width: 100%;
}
.data-table__header-cell {
  border: 1px solid #e5e5e5;
  padding: 1rem 1rem;
  text-align: center;
  font-weight: 600;
}
.data-table__header-cell--teal {
  background-color: #0fa9b4;
  color: white;
}
.data-table__cell {
  border: 1px solid #e5e5e5;
  padding: 1rem 1rem;
  text-align: center;
}
.data-table__cell--shaded {
  background-color: #f7f8f8;
}
.data-table__cell--bold {
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
}

.light {
  color: white;
}

.muted {
  color: #8a8c8f;
}
.muted--white {
  color: rgba(255, 255, 255, 0.6);
}

h2 {
  font-family: Lato;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
}
h2 .em {
  color: #1eaeb9;
  font-family: "Playfair Display", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  display: block;
}
h2 .em--lower {
  text-transform: lowercase;
}

h3 {
  font-family: "Playfair Display";
  font-weight: 700;
  font-size: 2rem;
}
h3 .em {
  color: #1eaeb9;
  font-family: "Playfair Display", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  display: block;
}
h3 .em--lower {
  text-transform: lowercase;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-family: "Playfair Display";
  font-style: italic;
}

h2.narrow-text {
  width: 25rem;
  display: inline-block;
}

.centered {
  text-align: center;
}

body {
  color: white;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  min-height: 100%;
  color: white;
}

p {
  font-weight: 300;
}

.cc {
  opacity: 0.6;
  margin-top: 8rem;
  color: white;
}

em {
  font-style: italic;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  z-index: -1;
  background-size: cover;
  background-repeat: none;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.background--active {
  opacity: 1;
  transition: all 0.3 ease-in;
}
.background--manayunk-welcome {
  background-image: url("/img/manayunk-lead.webp");
  backdrop-filter: brightness(1);
  min-height: 125vh;
}
.background--manayunk-welcome::after {
  content: "";
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(30deg, rgba(0, 0, 0, 0.534331) 0, rgba(0, 0, 0, 0.267945) 51%, transparent 100%);
}
.background--delco-welcome {
  background-image: url("/img/Citylight-Delco-6.jpg");
  backdrop-filter: brightness(1);
  min-height: 125vh;
}
.background--delco-welcome::after {
  content: "";
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(30deg, rgba(0, 0, 0, 0.534331) 0, rgba(0, 0, 0, 0.267945) 51%, transparent 100%);
}
.background--donor-letter {
  background-image: none;
  background-color: #f7f7f1;
  color: #222222;
}
.background--worship {
  background-image: none;
  background-image: url("/img/Background-2.jpg");
}
.background--delco-worship {
  background-image: none;
  background-image: url("/img/delco-dark-bg-2.jpg");
}
.background--community {
  background-image: url("/img/delco-light-bg-1.jpg");
}
.background--mission {
  background-image: url("/img/Background-mission.jpg");
  background-color: white;
}
.background--financial {
  background-image: none;
  background-color: white;
}
.background--compassionInitiative {
  background-image: url("/img/Background-Compassion.jpg");
}
.background--future {
  background-color: #f7f7f1;
}
.background--closing {
  background-image: url("/img/Background-Welcome.jpg");
}
.background--closing-delco {
  background-image: url("/img/delco-dark-bg-1.jpg");
}

.stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: solid 1px #222222;
  padding: 1rem 0;
}
.stat-row__img {
  flex-basis: 64px;
  width: 64px;
  height: 64px;
}
.stat-row__big-text {
  font-family: "Playfair Display", sans-serif;
  font-size: 2.5rem;
  margin: 0 1rem;
  line-height: 1;
  position: relative;
  margin-top: -1rem;
  text-transform: uppercase;
  font-weight: 600;
}
.stat-row__big-text--light {
  color: white;
}
@media (max-width: 767px) {
  .stat-row__big-text {
    font-size: 1.1rem;
    margin: 0 0.75rem;
  }
}
.stat-row__small-text {
  text-transform: uppercase;
  margin-bottom: 0;
}
.stat-row__small-text--light {
  color: white;
}
@media (max-width: 767px) {
  .stat-row__small-text {
    font-size: 0.85rem;
  }
}

.tab-row {
  display: flex;
  justify-content: space-between;
}
.tab-row__tab {
  flex-basis: 30%;
  padding: 1rem;
  border: solid 1px #222222;
  text-align: center;
  font-weight: 400;
  transition: all 0.2 ease-out;
  cursor: pointer;
  text-transform: uppercase;
}
.tab-row__tab--active {
  background-color: #222222;
  color: white;
  transition: all 0.2 ease-out;
}
.tab-row__tab--active .tab-row__label {
  color: white;
}
.tab-row__tab:hover {
  background-color: #222222;
  color: white;
  transition: all 0.2 ease-out;
}
.tab-row__tab:hover .tab-row__label {
  color: white;
}

.progress-bar__bar-wrapper {
  width: 100%;
  border: solid 1px rgba(255, 255, 255, 0.6);
  min-height: 24px;
}
.progress-bar__progress {
  background-color: #58A597;
  min-height: 24px;
}
.progress-bar__label {
  font-weight: 400;
  margin-top: 8px;
}
.progress-bar--light .progress-bar__label {
  color: white;
}
.split-selector {
  display: flex;
  height: 100vh;
}
@media (max-width: 767px) {
  .split-selector {
    flex-direction: column;
  }
}
.split-selector__item {
  position: relative;
  background-size: cover;
  background-position: center center;
  display: block;
  text-decoration: none;
  flex-basis: 50%;
}
@media (max-width: 767px) {
  .split-selector__item {
    height: 50vh;
  }
}
.split-selector__item-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.667945);
  z-index: 1;
  transition: all 0.5s ease-in;
  backdrop-filter: grayscale(100%);
  -webkit-backdrop-filter: grayscale(100%);
}
.split-selector__item-gradient-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(30deg, rgba(0, 0, 0, 0.734331) 0, rgba(0, 0, 0, 0.467945) 51%, transparent 100%);
  z-index: 1;
  transition: all 0.5s ease-in;
  opacity: 0;
}
.split-selector__item:hover > .split-selector__item-overlay {
  background-color: rgba(0, 0, 0, 0.67945);
  transition: all 0.5s ease-in;
  opacity: 0.4;
  backdrop-filter: grayscale(0%);
  -webkit-backdrop-filter: grayscale(0%);
}
.split-selector__item:hover > .split-selector__item-gradient-overlay {
  opacity: 1;
}
.split-selector__item-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px 10%;
  z-index: 2;
}
.split-selector__item-title {
  color: white;
  z-index: 3;
  font-family: "Playfair Display";
  text-transform: none;
  font-size: 3rem;
  line-height: 1.1;
  text-decoration: none !important;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .split-selector__item-title {
    font-size: 2rem;
  }
}
.split-selector__item-description {
  color: white;
  z-index: 3;
}
@media (max-width: 767px) {
  .split-selector__item-description {
    display: none;
  }
}
.split-selector__button {
  z-index: 3;
  border: solid 2px white;
  display: inline-block;
  margin-top: 32px;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .split-selector__button {
    margin-top: 32px;
  }
}
.split-selector__button:hover {
  background-color: white;
  color: #111111;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

:root {
  /* Colors */
  --primary: #016575;
  --secondary: #03414b;
  --tertiary: #003242;
  --cta: #EB8A5E;
  --white: #ffffff;
  --black: #000000;
  --grey: #ececec;
  --success: #48C774;
  --warning: #FFDD57;
  --danger: #F14668;
  --info: #3298DC;
  /* Typography */
  --h1: 4rem;
  --h2: 2.5rem;
  --h3: 3rem;
  --h4: 2.5rem;
  --h5: 2rem;
  --h6: 1.5rem;
  --root-font-size: 17px; /* REM values are based on this */
  --root-line-height: 1.5;
  /* Misc */
  --container-width: 1000px;
  --border-radius: .25rem;
  --border-radius-md: .5rem;
  --border-radius-lg: .75rem;
  --spacing: 1rem; /* Used for .has-m and .has-p classes */
  --spacing-md: 1.5rem; /* Used for .has-m-md and .has-p-md classes */
  --spacing-lg: 2rem; /* Used for .has-m-lg and .has-p-lg classes */
  /* Grid Gaps */
  --col-gap: 1rem;
  --col-gap-md: 1.5rem;
  --col-gap-lg: 2rem;
  --row-gap: 1rem;
  --row-gap-md: 1.5rem;
  --row-gap-lg: 2rem;
}

.mynk {
  color: #58A597 !important;
}

.delco {
  color: #f79670 !important;
}

.responsive-img {
  max-width: 100%;
}
