@charset "UTF-8";

:root {
  /* Colors */
  --color: #007bdf;
  --color-alt: #006dc6;
  --accent-color: #ff5f52;
  --alert-color: #ff0a0d;
  --border-color: #d0d0d6;
  --bg-color: #f0f0f0;

  --first-color: #086fa1;
  --first-light-color: #539dd2;
  --first-dark-color: #004472;
  --second-color: #455a64;
  --second-light-color: #718792;
  --second-dark-color: #1c313a;
  --third-color: #8a1212;
  --third-light-color: #bf4739;
  --third-dark-color: #560000;
  --fourth-color: #29ab69;
  --fourth-light-color: #29db69;
  --fourth-dark-color: #0b9447;
  --first-text-color: #ffffff;
  --first-text-dark-color: #151515;
  --second-text-color: #757575;
  --text-icons-color: #ffffff;
  --divider-color: #bdbdbf;
  --second-divider-color: #f0f0f2;
  --border-color: #cccccc;
  --border-dark-color: #404040;
  --body-bg-color: #f6f6f6;
  --body-alt-bg-color: #bababa;
  --mark-color: #ffff00;
  --develop-color: #ff5700;
  --develop-alt-color: rgba(170, 170, 148, 0.3);
  --black-color: #000;
  --white-color: #fff;

  /* Spaces */
  --border-radius: 0.25rem;
  --vertical-block-space: 1rem;
  --vertical-content-space: 1rem;
  --gap: 1rem;
  --max-width: 1200px;

  /* Typography */

  --font-main: sans-serif;
  --heading-font: roboto_slab_bold, sans-serif;
  --second-heading-font: roboto_slab_regular, sans-serif;
  --body-font: open_sans_regular, sans-serif;
  --monospace-font: roboto_mono_regular, monospace;

  /* font sizes */
  --scale: 1.25;
  --h1-scale: calc(var(--scale) * var(--scale) * var(--scale));
  --h2-scale: calc(var(--scale) * var(--scale));
  --h3-scale: var(--scale);
  --custom-font-size: 16px;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --h4-font-size: 1rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  --heading-line-height: 1.2;
  --body-line-height: 1.6;

  /* Header */
  --header-height: 4rem;

  /* Section */
  --margin-bottom: 2rem;

  /* Logos */
  --main-logo-height: 2rem;
  --logo-height: 2rem;

  /* z-index */
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

@media screen and (min-width: 768px) {
  :root {
    --vertical-content-space: 1.5rem;
    --vertical-block-space: 1.5rem;
    --gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --vertical-content-space: 2rem;
    --vertical-block-space: 2rem;
    --gap: 2rem;
  }
}

/* general styles */

html {
  box-sizing: border-box;
  font-family: sans-serif;
  height: 100vh;
  line-height: 1.15;
  background-color: #fff;
  color: #000;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  overflow-x: hidden;
  font-size: 1rem;
  height: 100vh;
  min-height: 100vh;
  min-width: 320px;
  margin: 0;
  /* scrollbar-width: none;
  width: 100%; */
}

/* ::-webkit-scrollbar { 
  display: none; 
} */


h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.75rem;
}

p {
  font-size: inherit;
}

p:empty {
  margin-bottom: 0;
  display: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Font family */

@font-face {
  font-family: 'open_sans_light';
  src: url('../fonts/opensans-light-webfont.woff2') format('woff2'),
    url('../fonts/opensans-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_light_italic';
  src: url('../fonts/opensans-lightitalic-webfont.woff2') format('woff2'),
    url('../fonts/opensans-lightitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_regular';
  src: url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
    url('../fonts/opensans-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_italic';
  src: url('../fonts/opensans-italic-webfont.woff2') format('woff2'),
    url('../fonts/opensans-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_semibold';
  src: url('../fonts/opensans-semibold-webfont.woff2') format('woff2'),
    url('../fonts/opensans-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_semibold_italic';
  src: url('../fonts/opensans-semibolditalic-webfont.woff2') format('woff2'),
    url('../fonts/opensans-semibolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_bold';
  src: url('../fonts/opensans-bold-webfont.woff2') format('woff2'),
    url('../fonts/opensans-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_bold_italic';
  src: url('../fonts/opensans-bolditalic-webfont.woff2') format('woff2'),
    url('../fonts/opensans-bolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_slab_bold';
  src: url('../fonts/robotoslab-bold-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_slab_regular';
  src: url('../fonts/robotoslab-regular-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_mono_regular';
  src: url('../fonts/robotomono-regular-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_light';
  src: url('../fonts/roboto-light-webfont.woff2') format('woff2'),
    url('../fonts/roboto-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_light_italic';
  src: url('../fonts/roboto-lightitalic-webfont.woff2') format('woff2'),
    url('../fonts/roboto-lightitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_regular';
  src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
    url('../fonts/roboto-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_italic';
  src: url('../fonts/roboto-italic-webfont.woff2') format('woff2'),
    url('../fonts/roboto-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_medium';
  src: url('../fonts/roboto-medium-webfont.woff2') format('woff2'),
    url('../fonts/roboto-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_medium_italic';
  src: url('../fonts/roboto-mediumitalic-webfont.woff2') format('woff2'),
    url('../fonts/roboto-mediumitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_bold';
  src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
    url('../fonts/roboto-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto_bold_italic';
  src: url('../fonts/roboto-bolditalic-webfont.woff2') format('woff2'),
    url('../fonts/roboto-bolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Font Icons - Material Icons */

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/MaterialIcons-Regular.eot');
  /* For IE6-8 */
  src: local('Material Icons'), local('MaterialIcons-Regular'),
    url('../fonts/MaterialIcons-Regular.woff2') format('woff2'),
    url('../fonts/MaterialIcons-Regular.woff') format('woff'),
    url('../fonts/MaterialIcons-Regular.ttf') format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}

/* Rules for sizing the icon. */
.material-icons.md-16 {
  font-size: 16px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-32 {
  font-size: 32px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: rgba(255, 255, 255, 1);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/* Custom icon colors*/
.material-icons.orange600 {
  color: #fb8c00;
}

.material-icons.accent-color {
  color: var(--accent-color);
}


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: rgba(0, 0, 0, 0.87);
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
 ::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textarea.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers:
 */
.hidden {
  display: none !important;
}

/*
 * Make html take up the entire screen
 * Then set touch-action to avoid touch delay on mobile IE
 */
 html {
  width: 100%;
  height: 100vh;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*
* Make body take up the entire screen
* Remove body margin so layout containers don't cause extra overflow.
*/
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
}

/*
 * Main display reset for IE support.
 * Source: http://weblog.west-wind.com/posts/2015/Jan/12/main-HTML5-Tag-not-working-in-Internet-Explorer-91011
 */
main {
  display: block;
}

/*
* Apply no display to elements with the hidden attribute.
* IE 9 and 10 support.
*/
*[hidden] {
  display: none !important;
}

/* Typography */
/* Shadows */
/* Animations */
/* Dialog */
html, body {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

/**
  * Styles for HTML elements
  */
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  opacity: 0.54;
  font-size: 0.6em;
}

h1 {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 24px;
}

h2 {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  margin-top: 24px;
  margin-bottom: 24px; }

h3 {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  margin-top: 24px;
  margin-bottom: 24px;
}

h4 {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 24px;
  margin-bottom: 16px;
}

h5 {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 24px;
  margin-bottom: 16px;
}

h6 {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.04em;
  margin-top: 24px;
  margin-bottom: 16px;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 16px;
}

a {
  font-weight: 500;
}

blockquote {
  font-family: "Helvetica", "Arial", sans-serif;
  position: relative;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.08em; 
}
blockquote:before {
  position: absolute;
  left: -0.5em;
  content: '“';
}
blockquote:after {
  content: '”';
  margin-left: -0.05em;
}

mark {
  background-color: #f4ff81;
}

dt {
  font-weight: 700;
}

address {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-style: normal;
}

ul, ol {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

/* Cambiamos algunos valores en función del tamaño de la pantalla*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: var(--vertical-content-space);
  margin-bottom: var(--vertical-content-space);
}

h1 {
  margin-top: calc(var(--vertical-content-space) * 1.5);
  margin-bottom: calc(var(--vertical-content-space) * 1.5);
}

p,
video,
blockquote,
article,
section,
form,
figure,
iframe,
ul,
ol,
pre,
hr,
dl,
address,
table {
  margin-top: 0;
  margin-bottom: calc(var(--vertical-content-space) * 1);
}

p + h2,
video + h2,
blockquote + h2,
article + h2,
section + h2,
form + h2,
figure + h2,
iframe + h2,
ul + h2,
ol + h2,
pre + h2,
hr + h2,
dl + h2,
address + h2,
table + h2 {
  padding-top: calc(var(--vertical-content-space) * 1.25);
}

p + h3,
video + h3,
blockquote + h3,
article + h3,
section + h3,
form + h3,
figure + h3,
iframe + h3,
ul + h3,
ol + h3,
pre + h3,
hr + h3,
dl + h3,
address + h3,
table + h3 {
  padding-top: var(--vertical-content-space);
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

/* Layout */

.container,
.container-fluid {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: var(--max-width);
}

.container.px-1,
.container-fluid.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.wrapper {
  display: block;
  width: 90%;
  max-width: var(--max-width);
  margin: 1rem auto;
}

.wrapper.full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.item {
  display: block;
  width: 100%;
  padding: 0.25rem;
  font-size: 1rem;
}

.l-section {
  margin-bottom: var(--margin-bottom);
}

.l-section--diagonal {
  position: relative;
}

.l-section--diagonal::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fafafa;
  z-index: var(--z-back);
  transform: skewY(-1deg) scaleY(1.025);
}

/* Flex layout */

.flex-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--max-width);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.flex-container.full {
  max-width: 100%;
}

.flex-item {
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.flex-item {
  width: 100%;
}

.flex-item.flex-container {
  padding-left: 0;
  padding-right: 0;
}

.l-container {
  max-width: var(--max-width);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}

/* Grid layout */

.grid-container {
  display: grid;
  grid-template-columns: 100%;
  column-gap: var(--gap);
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
  max-width: var(--max-width);
}

.grid-item {
  display: grid;
}

.grid-container.gap-0 {
  --gap: 0rem;
}

.grid-container.gap-1 {
  --gap: 0.5rem;
}

.grid-container.gap-2 {
  --gap: 1rem;
}

.grid-container.gap-3 {
  --gap: 1.5rem;
}

.grid-container.gap-4 {
  --gap: 2rem;
}

@media screen and (min-width: 1200px) {
  .grid-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.grid-container.row-gap,
.grid-container.rows-gap {
  row-gap: var(--gap);
}

.grid-container .grid-container,
.grid-container.full {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.block {
  display: block;
  margin-bottom: var(--vertical-block-space);
}

.cancel-block {
  margin-top: calc(var(--vertical-block-space) * -1);
}

.section {
  margin-bottom: calc(var(--vertical-block-space) * 2);
}

.cancel-section {
  margin-top: calc(var(--vertical-block-space) * -2);
}

.big-section {
  margin-bottom: calc(var(--vertical-block-space) * 4);
}

.cancel-big-section {
  margin-top: calc(var(--vertical-block-space) * -4);
}

.center-block {
  margin-left: auto;
  margin-right: auto;
}

.center-content {
  text-align: center;
}

/* Font sizes */
/* ($px / 16px) * 1rem; */

body {
  font-size: 0.875rem;
  font-size: var(--small-font-size);
  line-height: var(--body-line-height);
}

p {
  font-size: 0.875rem;
  font-size: var(--small-font-size);
  line-height: var(--body-line-height);
}

ul, ol {
  font-size: 0.875rem;
  font-size: var(--small-font-size);
  line-height: var(--body-line-height);  
}

.title1,
.title2,
.title3 {
  line-height: var(--heading-line-height);
}

.title1 {
  font-size: 1.5rem;
}

.title2 {
  font-size: 1.25rem;
}

.title3 {
  font-size: 1rem;
}

.title4 {
  font-size: 0.875rem;
}

.title5,
.title6 {
  font-size: 0.75rem;
}

.normal {
  font-size: 0.875rem;
  font-size: var(--small-font-size);
  line-height: var(--body-line-height);
}

.material-icons.md-fluid {
  font-size: 0.875rem;
  font-size: var(--small-font-size);
  line-height: var(--body-line-height);
}

/* font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width]))); */
@media screen and (min-width: 20rem) {
  body, p, ul, ol {
    /* font-size: calc((14px + (18 - 14) * ((100vw - 320px) / (1600 - 320))); */
    font-size: calc(0.875rem + 0.25 * ((100vw - 32rem) / 80));
  }

  form input, form textarea {
    font-size: calc(0.75rem + 0.25 * ((100vw - 32rem) / 80)); 
  }

  .title1 {
    /* font-size: calc((24px + (32 - 20) * ((100vw - 320px) / (1600 - 320)) * var(--h1-scale)); */
    font-size: calc(1.5rem + 0.75 * ((100vw - 32rem) / 80) * var(--h1-scale));
  }

  .title2 {
    /* font-size: calc((20px + (28 - 20) * ((100vw - 320px) / (1600 - 320)) * var(--h2-scale)); */
    font-size: calc(1.25rem + 0.5 * ((100vw - 32rem) / 80) * var(--h2-scale));
  }

  .title3 {
    /* font-size: calc((16px + (24 - 16) * ((100vw - 320px) / (1600 - 320)) * var(--h3-scale)); */
    font-size: calc(1rem + 0.5 * ((100vw - 32rem) / 80) * var(--h3-scale));
  }

  .title4 {
    /* font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1600 - 320))); */
    font-size: calc(0.875rem + 0.375 * ((100vw - 32rem) / 80));
  }

  .title5,
  .title6 {
    /* font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1600 - 320))); */
    font-size: calc(0.75rem + 0.375 * ((100vw - 32rem) / 80));
  }

  .normal {
    /* font-size: calc((14px + (20 - 14) * ((100vw - 320px) / (1600 - 320)) * var(--h1-scale)); */
    font-size: calc(0.875rem + 0.375 * ((100vw - 32rem) / 80));
  }

  .material-icons.md-fluid {
    font-size: calc(0.875rem + 0.375 * ((100vw - 32rem) / 80));
  }
}

@media screen and (min-width: 100rem) {
  body, p ,ul, ol {
    font-size: 1.125rem;
  }

  form input {
    font-size: 1rem; 
  }

  .title1 {
    font-size: 3rem;
  }

  .title2 {
    font-size: 2rem;
  }

  .title3 {
    font-size: 1.75rem;
  }

  .title4 {
    font-size: 1.25rem;
  }

  .title5,
  .title6 {
    font-size: 1.125rem;
  }

  .normal {
    font-size: 1.125rem;
  }

  .material-icons.md-fluid {
    font-size: 1.125rem;
  }
}

/* Imágenes y videos */

.img-container {
  position: relative;
}

.img-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.video {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.video > iframe,
.video > video,
.video > .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 
* Grid
* sm: small (hasta 768px)
* md: medium (hasta 1024px)
* lg: large (hasta 1440px)
* xl: extra large (desde 1440px en adelante)
*/

.sm-5 {
  width: 5%;
}

.sm-10 {
  width: 10%;
}

.sm-15 {
  width: 15%;
}

.sm-20 {
  width: 20%;
}

.sm-25 {
  width: 25%;
}

.sm-30 {
  width: 30%;
}

.sm-35 {
  width: 35%;
}

.sm-40 {
  width: 40%;
}

.sm-45 {
  width: 45%;
}

.sm-50 {
  width: 50%;
}

.sm-55 {
  width: 55%;
}

.sm-60 {
  width: 60%;
}

.sm-65 {
  width: 65%;
}

.sm-70 {
  width: 70%;
}

.sm-75 {
  width: 75%;
}

.sm-80 {
  width: 80%;
}

.sm-85 {
  width: 85%;
}

.sm-90 {
  width: 90%;
}

.sm-95 {
  width: 95%;
}

.sm-100 {
  width: 100%;
}

/* Technique 1 float left/right; */
.floatl {
  float: left;
}

.floatr {
  float: right;
}

.nofloat {
  float: none;
}

.clear,
.clear::after,
.clear::before {
  clear: both;
}

.clear::after,
.clear::before {
  content: '';
  display: block;
}

/* Technique 2 display:inline-block; */
.i-b {
  display: inline-block;
}

/* Technique 3 display:table; */
.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

/* Technique 4 display:flex; */
/* flexbox parent elements   */
.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.jc-flex-start {
  justify-content: flex-start;
}

.jc-flex-end {
  justify-content: flex-end;
}

.jc-center {
  justify-content: center;
}

.jc-space-between {
  justify-content: space-between;
}

.jc-space-around {
  justify-content: space-around;
}

.ai-flex-start {
  align-items: flex-start;
}

.ai-flex-end {
  align-items: flex-end;
}

.ai-center {
  align-items: center;
}

.ai-baseline {
  align-items: baseline;
}

.ai-stretch {
  align-items: stretch;
}

.ac-flex-start {
  align-content: flex-start;
}

.ac-flex-end {
  align-content: flex-end;
}

.ac-center {
  align-content: center;
}

.ac-space-between {
  align-content: space-between;
}

.ac-space-around {
  align-content: space-around;
}

.ac-stretch {
  align-content: stretch;
}

/* flexbox children elements   */
.flex-none {
  flex: none;
}

.flex-auto {
  flex: auto;
}

.as-flex-start {
  align-self: flex-start;
}

.as-flex-end {
  align-self: flex-end;
}

.as-center {
  align-self: center;
}

.as-baseline {
  align-self: baseline;
}

.as-stretch {
  align-self: stretch;
}

.as-auto {
  align-self: auto;
}

/* font sizes */
.f0 {
  font-size: 0;
}

.f_25 {
  font-size: 0.25rem;
}

.f_5 {
  font-size: 0.5rem;
}

.f_75 {
  font-size: 0.75rem;
}

.f1 {
  font-size: 1rem;
}

.f1_5 {
  font-size: 1.5rem;
}

.f2 {
  font-size: 2rem;
}

.f2_5 {
  font-size: 2.5rem;
}

.f3 {
  font-size: 3rem;
}

/* margins & paddings */
.m-auto {
  margin: auto;
}

.m0-auto {
  margin: 0 auto;
}

.m0 {
  margin: 0;
}

.m_25 {
  margin: 0.25rem;
}

.m_5 {
  margin: 0.5rem;
}

.m_75 {
  margin: 0.75rem;
}

.m1 {
  margin: 1rem;
}

.m1_25 {
  margin: 1.25rem;
}

.m1_5 {
  margin: 1.5rem;
}

.m1_75 {
  margin: 1.75rem;
}

.m2 {
  margin: 2rem;
}

.m-t0 {
  margin-top: 0;
}

.m-t1 {
  margin-top: 1rem;
}

.m-t2 {
  margin-top: 2rem;
}

.m-b0 {
  margin-bottom: 0;
}

.m-b_25 {
  margin-bottom: 0.25rem;
}

.m-b_5 {
  margin-bottom: 0.5rem;
}

.m-b_75 {
  margin-bottom: 0.75rem;
}

.m-b1 {
  margin-bottom: 1rem;
}

.m-b1_25 {
  margin-bottom: 1.25rem;
}

.m-b1_5 {
  margin-bottom: 1.5rem;
}

.m-b1_75 {
  margin-bottom: 1.75rem;
}

.m-b2 {
  margin-bottom: 2rem;
}

.m-b2_5 {
  margin-bottom: 2.5rem;
}

.m-b3 {
  margin-bottom: 3rem;
}

.m-b4 {
  margin-bottom: 4rem;
}

.p-auto {
  padding: auto;
}

.p0-auto {
  padding: 0 auto;
}

.p0 {
  padding: 0;
}

.p_25 {
  padding: 0.25rem;
}

.p_5 {
  padding: 0.5rem;
}

.p_75 {
  padding: 0.75rem;
}

.p1 {
  padding: 1rem;
}

.p1_25 {
  padding: 1.25rem;
}

.p1_5 {
  padding: 1.5rem;
}

.p1_75 {
  padding: 1.75rem;
}

.p2 {
  padding: 2rem;
}

@media screen and (min-width: 768px) {
  :root {
    --margin-bottom: 3rem;
  }

  .l-section {
    margin-bottom: var(--margin-bottom);
  }

  .l-section--diagonal::before {
    transform: skewY(-1.2deg) scaleY(1.05);
  }

  .md-5 {
    width: 5%;
  }

  .md-10 {
    width: 10%;
  }

  .md-15 {
    width: 15%;
  }

  .md-20 {
    width: 20%;
  }

  .md-25 {
    width: 25%;
  }

  .md-30 {
    width: 30%;
  }

  .md-35 {
    width: 35%;
  }

  .md-40 {
    width: 40%;
  }

  .md-45 {
    width: 45%;
  }

  .md-50 {
    width: 50%;
  }

  .md-55 {
    width: 55%;
  }

  .md-60 {
    width: 60%;
  }

  .md-65 {
    width: 65%;
  }

  .md-70 {
    width: 70%;
  }

  .md-75 {
    width: 75%;
  }

  .md-80 {
    width: 80%;
  }

  .md-85 {
    width: 85%;
  }

  .md-90 {
    width: 90%;
  }

  .md-95 {
    width: 55%;
  }

  .md-100 {
    width: 100%;
  }

  /* Horizontal center */
  .md-center-block {
    margin-left: auto;
    margin-right: auto;
  }

  .md-center-content {
    text-align: center;
  }

  /* Technique 1 float left/right; */
  .md-floatl {
    float: left;
  }

  .md-floatr {
    float: right;
  }

  .md-nofloat {
    float: none;
  }

  .md-clear,
  .md-clear::after,
  .md-clear::before {
    clear: both;
  }

  .md-clear::after,
  .md-clear::before {
    content: '';
    display: block;
  }

  /* Technique 2 display:inline-block; */
  .md-i-b {
    display: inline-block;
  }

  /* Technique 3 display:table; */
  .md-table {
    display: table;
  }

  .md-table-cell {
    display: table-cell;
  }

  /* Technique 4 display:flex; */
  /* flexbox parent elements   */
  .md-flex {
    display: flex;
  }

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

  .md-flex-row {
    flex-direction: row;
  }

  .md-flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md-flex-column {
    flex-direction: column;
  }

  .md-flex-column-reverse {
    flex-direction: column-reverse;
  }

  .md-flex-nowrap {
    flex-wrap: nowrap;
  }

  .md-flex-wrap {
    flex-wrap: wrap;
  }

  .md-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .md-jc-flex-start {
    justify-content: flex-start;
  }

  .md-jc-flex-end {
    justify-content: flex-end;
  }

  .md-jc-center {
    justify-content: center;
  }

  .md-jc-space-between {
    justify-content: space-between;
  }

  .md-jc-space-around {
    justify-content: space-around;
  }

  .md-ai-flex-start {
    align-items: flex-start;
  }

  .md-ai-flex-end {
    align-items: flex-end;
  }

  .md-ai-center {
    align-items: center;
  }

  .md-ai-baseline {
    align-items: baseline;
  }

  .md-ai-stretch {
    align-items: stretch;
  }

  .md-ac-flex-start {
    align-content: flex-start;
  }

  .md-ac-flex-end {
    align-content: flex-end;
  }

  .md-ac-center {
    align-content: center;
  }

  .md-ac-space-between {
    align-content: space-between;
  }

  .md-ac-space-around {
    align-content: space-around;
  }

  .md-ac-stretch {
    align-content: stretch;
  }

  /* flexbox children elements   */
  .md-flex-none {
    flex: none;
  }

  .md-flex-auto {
    flex: auto;
  }

  .md-as-flex-start {
    align-self: flex-start;
  }

  .md-as-flex-end {
    align-self: flex-end;
  }

  .md-as-center {
    align-self: center;
  }

  .md-as-baseline {
    align-self: baseline;
  }

  .md-as-stretch {
    align-self: stretch;
  }

  .md-as-auto {
    align-self: auto;
  }

  /* font sizes */
  .md-f0 {
    font-size: 0;
  }

  .md-f_25 {
    font-size: 0.25rem;
  }

  .md-f_5 {
    font-size: 0.5rem;
  }

  .md-f_75 {
    font-size: 0.75rem;
  }

  .md-f1 {
    font-size: 1rem;
  }

  .md-f1_5 {
    font-size: 1.5rem;
  }

  .md-f2 {
    font-size: 2rem;
  }

  .md-f2_5 {
    font-size: 2.5rem;
  }

  .md-f3 {
    font-size: 3rem;
  }

  /* margins & paddings */
  .md-m-auto {
    margin: auto;
  }

  .md-m0-auto {
    margin: 0 auto;
  }

  .md-m0 {
    margin: 0;
  }

  .md-m_25 {
    margin: 0.25rem;
  }

  .md-m_5 {
    margin: 0.5rem;
  }

  .md-m_75 {
    margin: 0.75rem;
  }

  .md-m1 {
    margin: 1rem;
  }

  .md-m1_25 {
    margin: 1.25rem;
  }

  .md-m1_5 {
    margin: 1.5rem;
  }

  .md-m1_75 {
    margin: 1.75rem;
  }

  .md-m2 {
    margin: 2rem;
  }

  .md-m-t0 {
    margin-top: 0;
  }

  .md-m-t1 {
    margin-top: 1rem;
  }

  .md-m-t2 {
    margin-top: 2rem;
  }

  .md-m-b0 {
    margin-bottom: 0;
  }

  .md-m-b_25 {
    margin-bottom: 0.25rem;
  }

  .md-m-b_5 {
    margin-bottom: 0.5rem;
  }

  .md-m-b_75 {
    margin-bottom: 0.75rem;
  }

  .md-m-b1 {
    margin-bottom: 1rem;
  }

  .md-m-b1_25 {
    margin-bottom: 1.25rem;
  }

  .md-m-b1_5 {
    margin-bottom: 1.5rem;
  }

  .md-m-b1_75 {
    margin-bottom: 1.75rem;
  }

  .md-m-b2 {
    margin-bottom: 2rem;
  }

  .md-m-b2_5 {
    margin-bottom: 2.5rem;
  }

  .md-m-b3 {
    margin-bottom: 3rem;
  }

  .md-m-b4 {
    margin-bottom: 4rem;
  }

  .md-p-auto {
    padding: auto;
  }

  .md-p0-auto {
    padding: 0 auto;
  }

  .md-p0 {
    padding: 0;
  }

  .md-p_25 {
    padding: 0.25rem;
  }

  .md-p_5 {
    padding: 0.5rem;
  }

  .md-p_75 {
    padding: 0.75rem;
  }

  .md-p1 {
    padding: 1rem;
  }

  .md-p1_25 {
    padding: 1.25rem;
  }

  .md-p1_5 {
    padding: 1.5rem;
  }

  .md-p1_75 {
    padding: 1.75rem;
  }

  .md-p2 {
    padding: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --margin-bottom: 4rem;
  }

  .l-section {
    margin-bottom: var(--margin-bottom);
  }

  .l-section--diagonal::before {
    transform: skewY(-1.4deg) scaleY(1.075);
  }
  .lg-5 {
    width: 5%;
  }

  .lg-10 {
    width: 10%;
  }

  .lg-15 {
    width: 15%;
  }

  .lg-20 {
    width: 20%;
  }

  .lg-25 {
    width: 25%;
  }

  .lg-30 {
    width: 30%;
  }

  .lg-35 {
    width: 35%;
  }

  .lg-40 {
    width: 40%;
  }

  .lg-45 {
    width: 45%;
  }

  .lg-50 {
    width: 50%;
  }

  .lg-55 {
    width: 55%;
  }

  .lg-60 {
    width: 60%;
  }

  .lg-65 {
    width: 65%;
  }

  .lg-70 {
    width: 70%;
  }

  .lg-75 {
    width: 75%;
  }

  .lg-80 {
    width: 80%;
  }

  .lg-85 {
    width: 85%;
  }

  .lg-90 {
    width: 90%;
  }

  .lg-95 {
    width: 55%;
  }

  .lg-100 {
    width: 100%;
  }

  .lg-center-block {
    margin-left: auto;
    margin-right: auto;
  }

  .lg-center-content {
    text-align: center;
  }

  /* Technique 1 float left/right; */
  .lg-floatl {
    float: left;
  }

  .lg-floatr {
    float: right;
  }

  .lg-nofloat {
    float: none;
  }

  .lg-clear,
  .lg-clear::after,
  .lg-clear::before {
    clear: both;
  }

  .lg-clear::after,
  .lg-clear::before {
    content: '';
    display: block;
  }

  /* Technique 2 display:inline-block; */
  .lg-i-b {
    display: inline-block;
  }

  /* Technique 3 display:table; */
  .lg-table {
    display: table;
  }

  .lg-table-cell {
    display: table-cell;
  }

  /* Technique 4 display:flex; */
  /* flexbox parent elements   */
  .lg-flex {
    display: flex;
  }

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

  .lg-flex-row {
    flex-direction: row;
  }

  .lg-flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg-flex-column {
    flex-direction: column;
  }

  .lg-flex-column-reverse {
    flex-direction: column-reverse;
  }

  .lg-flex-nowrap {
    flex-wrap: nowrap;
  }

  .lg-flex-wrap {
    flex-wrap: wrap;
  }

  .lg-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .lg-jc-flex-start {
    justify-content: flex-start;
  }

  .lg-jc-flex-end {
    justify-content: flex-end;
  }

  .lg-jc-center {
    justify-content: center;
  }

  .lg-jc-space-between {
    justify-content: space-between;
  }

  .lg-jc-space-around {
    justify-content: space-around;
  }

  .lg-ai-flex-start {
    align-items: flex-start;
  }

  .lg-ai-flex-end {
    align-items: flex-end;
  }

  .lg-ai-center {
    align-items: center;
  }

  .lg-ai-baseline {
    align-items: baseline;
  }

  .lg-ai-stretch {
    align-items: stretch;
  }

  .lg-ac-flex-start {
    align-content: flex-start;
  }

  .lg-ac-flex-end {
    align-content: flex-end;
  }

  .lg-ac-center {
    align-content: center;
  }

  .lg-ac-space-between {
    align-content: space-between;
  }

  .lg-ac-space-around {
    align-content: space-around;
  }

  .lg-ac-stretch {
    align-content: stretch;
  }

  /* flexbox children elements   */
  .lg-flex-none {
    flex: none;
  }

  .lg-flex-auto {
    flex: auto;
  }

  .lg-as-flex-start {
    align-self: flex-start;
  }

  .lg-as-flex-end {
    align-self: flex-end;
  }

  .lg-as-center {
    align-self: center;
  }

  .lg-as-baseline {
    align-self: baseline;
  }

  .lg-as-stretch {
    align-self: stretch;
  }

  .lg-as-auto {
    align-self: auto;
  }

  /* font sizes */
  .lg-f0 {
    font-size: 0;
  }

  .lg-f_25 {
    font-size: 0.25rem;
  }

  .lg-f_5 {
    font-size: 0.5rem;
  }

  .lg-f_75 {
    font-size: 0.75rem;
  }

  .lg-f1 {
    font-size: 1rem;
  }

  .lg-f1_5 {
    font-size: 1.5rem;
  }

  .lg-f2 {
    font-size: 2rem;
  }

  .lg-f2_5 {
    font-size: 2.5rem;
  }

  .lg-f3 {
    font-size: 3rem;
  }

  /* margins & paddings */
  .lg-m-auto {
    margin: auto;
  }

  .lg-m0-auto {
    margin: 0 auto;
  }

  .lg-m0 {
    margin: 0;
  }

  .lg-m_25 {
    margin: 0.25rem;
  }

  .lg-m_5 {
    margin: 0.5rem;
  }

  .lg-m_75 {
    margin: 0.75rem;
  }

  .lg-m1 {
    margin: 1rem;
  }

  .lg-m1_25 {
    margin: 1.25rem;
  }

  .lg-m1_5 {
    margin: 1.5rem;
  }

  .lg-m1_75 {
    margin: 1.75rem;
  }

  .lg-m2 {
    margin: 2rem;
  }

  .lg-m-t0 {
    margin-top: 0;
  }

  .lg-m-t1 {
    margin-top: 1rem;
  }

  .lg-m-t2 {
    margin-top: 2rem;
  }

  .lg-m-b0 {
    margin-bottom: 0;
  }

  .lg-m-b_25 {
    margin-bottom: 0.25rem;
  }

  .lg-m-b_5 {
    margin-bottom: 0.5rem;
  }

  .lg-m-b_75 {
    margin-bottom: 0.75rem;
  }

  .lg-m-b1 {
    margin-bottom: 1rem;
  }

  .lg-m-b1_25 {
    margin-bottom: 1.25rem;
  }

  .lg-m-b1_5 {
    margin-bottom: 1.5rem;
  }

  .lg-m-b1_75 {
    margin-bottom: 1.75rem;
  }

  .lg-m-b2 {
    margin-bottom: 2rem;
  }

  .lg-m-b2_5 {
    margin-bottom: 2.5rem;
  }

  .lg-m-b3 {
    margin-bottom: 3rem;
  }

  .lg-m-b4 {
    margin-bottom: 4rem;
  }

  .lg-p-auto {
    padding: auto;
  }

  .lg-p0-auto {
    padding: 0 auto;
  }

  .lg-p0 {
    padding: 0;
  }

  .lg-p_25 {
    padding: 0.25rem;
  }

  .lg-p_5 {
    padding: 0.5rem;
  }

  .lg-p_75 {
    padding: 0.75rem;
  }

  .lg-p1 {
    padding: 1rem;
  }

  .lg-p1_25 {
    padding: 1.25rem;
  }

  .lg-p1_5 {
    padding: 1.5rem;
  }

  .lg-p1_75 {
    padding: 1.75rem;
  }

  .lg-p2 {
    padding: 2rem;
  }
}

@media screen and (min-width: 1440px) {
  :root {
    --margin-bottom: 5rem;
  }

  .l-section {
    margin-bottom: var(--margin-bottom);
  }

  .l-section--diagonal::before {
    transform: skewY(-1.4deg) scaleY(1.075);
  }
  .xl-5 {
    width: 5%;
  }

  .xl-10 {
    width: 10%;
  }

  .xl-15 {
    width: 15%;
  }

  .xl-20 {
    width: 20%;
  }

  .xl-25 {
    width: 25%;
  }

  .xl-30 {
    width: 30%;
  }

  .xl-35 {
    width: 35%;
  }

  .xl-40 {
    width: 40%;
  }

  .xl-45 {
    width: 45%;
  }

  .xl-50 {
    width: 50%;
  }

  .xl-55 {
    width: 55%;
  }

  .xl-60 {
    width: 60%;
  }

  .xl-65 {
    width: 65%;
  }

  .xl-70 {
    width: 70%;
  }

  .xl-75 {
    width: 75%;
  }

  .xl-80 {
    width: 80%;
  }

  .xl-85 {
    width: 85%;
  }

  .xl-90 {
    width: 90%;
  }

  .xl-95 {
    width: 55%;
  }

  .xl-100 {
    width: 100%;
  }

  .xl-center-block {
    margin-left: auto;
    margin-right: auto;
  }

  .xl-center-content {
    text-align: center;
  }

  /* Technique 1 float left/right; */
  .xl-floatl {
    float: left;
  }

  .xl-floatr {
    float: right;
  }

  .xl-nofloat {
    float: none;
  }

  .xl-clear,
  .xl-clear::after,
  .xl-clear::before {
    clear: both;
  }

  .xl-clear::after,
  .xl-clear::before {
    content: '';
    display: block;
  }

  /* Technique 2 display:inline-block; */
  .xl-i-b {
    display: inline-block;
  }

  /* Technique 3 display:table; */
  .xl-table {
    display: table;
  }

  .xl-table-cell {
    display: table-cell;
  }

  /* Technique 4 display:flex; */
  /* flexbox parent elements   */
  .xl-flex {
    display: flex;
  }

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

  .xl-flex-row {
    flex-direction: row;
  }

  .xl-flex-row-reverse {
    flex-direction: row-reverse;
  }

  .xl-flex-column {
    flex-direction: column;
  }

  .xl-flex-column-reverse {
    flex-direction: column-reverse;
  }

  .xl-flex-nowrap {
    flex-wrap: nowrap;
  }

  .xl-flex-wrap {
    flex-wrap: wrap;
  }

  .xl-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .xl-jc-flex-start {
    justify-content: flex-start;
  }

  .xl-jc-flex-end {
    justify-content: flex-end;
  }

  .xl-jc-center {
    justify-content: center;
  }

  .xl-jc-space-between {
    justify-content: space-between;
  }

  .xl-jc-space-around {
    justify-content: space-around;
  }

  .xl-ai-flex-start {
    align-items: flex-start;
  }

  .xl-ai-flex-end {
    align-items: flex-end;
  }

  .xl-ai-center {
    align-items: center;
  }

  .xl-ai-baseline {
    align-items: baseline;
  }

  .xl-ai-stretch {
    align-items: stretch;
  }

  .xl-ac-flex-start {
    align-content: flex-start;
  }

  .xl-ac-flex-end {
    align-content: flex-end;
  }

  .xl-ac-center {
    align-content: center;
  }

  .xl-ac-space-between {
    align-content: space-between;
  }

  .xl-ac-space-around {
    align-content: space-around;
  }

  .xl-ac-stretch {
    align-content: stretch;
  }

  /* flexbox children elements   */
  .xl-flex-none {
    flex: none;
  }

  .xl-flex-auto {
    flex: auto;
  }

  .xl-as-flex-start {
    align-self: flex-start;
  }

  .xl-as-flex-end {
    align-self: flex-end;
  }

  .xl-as-center {
    align-self: center;
  }

  .xl-as-baseline {
    align-self: baseline;
  }

  .xl-as-stretch {
    align-self: stretch;
  }

  .xl-as-auto {
    align-self: auto;
  }

  /* font sizes */
  .xl-f0 {
    font-size: 0;
  }

  .xl-f_25 {
    font-size: 0.25rem;
  }

  .xl-f_5 {
    font-size: 0.5rem;
  }

  .xl-f_75 {
    font-size: 0.75rem;
  }

  .xl-f1 {
    font-size: 1rem;
  }

  .xl-f1_5 {
    font-size: 1.5rem;
  }

  .xl-f2 {
    font-size: 2rem;
  }

  .xl-f2_5 {
    font-size: 2.5rem;
  }

  .xl-f3 {
    font-size: 3rem;
  }

  /* margins & paddings */
  .xl-m-auto {
    margin: auto;
  }

  .xl-m0-auto {
    margin: 0 auto;
  }

  .xl-m0 {
    margin: 0;
  }

  .xl-m_25 {
    margin: 0.25rem;
  }

  .xl-m_5 {
    margin: 0.5rem;
  }

  .xl-m_75 {
    margin: 0.75rem;
  }

  .xl-m1 {
    margin: 1rem;
  }

  .xl-m1_25 {
    margin: 1.25rem;
  }

  .xl-m1_5 {
    margin: 1.5rem;
  }

  .xl-m1_75 {
    margin: 1.75rem;
  }

  .xl-m2 {
    margin: 2rem;
  }

  .xl-m-t0 {
    margin-top: 0;
  }

  .xl-m-t1 {
    margin-top: 1rem;
  }

  .xl-m-t2 {
    margin-top: 2rem;
  }

  .xl-m-b0 {
    margin-bottom: 0;
  }

  .xl-m-b_25 {
    margin-bottom: 0.25rem;
  }

  .xl-m-b_5 {
    margin-bottom: 0.5rem;
  }

  .xl-m-b_75 {
    margin-bottom: 0.75rem;
  }

  .xl-m-b1 {
    margin-bottom: 1rem;
  }

  .xl-m-b1_25 {
    margin-bottom: 1.25rem;
  }

  .xl-m-b1_5 {
    margin-bottom: 1.5rem;
  }

  .xl-m-b1_75 {
    margin-bottom: 1.75rem;
  }

  .xl-m-b2 {
    margin-bottom: 2rem;
  }

  .xl-m-b2_5 {
    margin-bottom: 2.5rem;
  }

  .xl-m-b3 {
    margin-bottom: 3rem;
  }

  .xl-m-b4 {
    margin-bottom: 4rem;
  }

  .xl-p-auto {
    padding: auto;
  }

  .xl-p0-auto {
    padding: 0 auto;
  }

  .xl-p0 {
    padding: 0;
  }

  .xl-p_25 {
    padding: 0.25rem;
  }

  .xl-p_5 {
    padding: 0.5rem;
  }

  .xl-p_75 {
    padding: 0.75rem;
  }

  .xl-p1 {
    padding: 1rem;
  }

  .xl-p1_25 {
    padding: 1.25rem;
  }

  .xl-p1_5 {
    padding: 1.5rem;
  }

  .xl-p1_75 {
    padding: 1.75rem;
  }

  .xl-p2 {
    padding: 2rem;
  }
}

