/*
Theme Name: K2bus
Author: Piotr Fokt

Version: 0.9

*/

/******************************************/
/*** VARIABLES ***/
/******************************************/

:root {
  /*** colors ***/
  --bg-color: #001d3b;
  --sec-bg-color: #094b92;
  --text-color: #7a7c7f;

  /*** space / margins / paddings ***/

  --space: 2rem;
  --sm-space: 1rem;
  --lg-space: 3.5rem;
}

/*** variables ***/

/******************************************/
/*** NORMALIZE ***/
/******************************************/

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

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;
}

/******************************************/
/*** GRID ***/
/******************************************/

.container-fluid,
.fluid-container,
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

/******************************************/
/*** SLIDER ***/
/******************************************/

.swiffy-slider {
  position: relative;
  display: block;
  width: 100%;
  --swiffy-slider-snap-align: center;
  --swiffy-slider-item-width: 100%;
  --swiffy-slider-item-gap: 1rem;
  --swiffy-slider-item-reveal: 0rem;
  --swiffy-slider-item-ratio: 2/1;
  --swiffy-slider-item-count: 1;
  --swiffy-slider-nav-light: #fff;
  --swiffy-slider-nav-dark: #333;
  --swiffy-slider-nav-zoom: 1;
  --swiffy-slider-track-opacity: 0.1;
  --swiffy-slider-track-height: 0;
  --swiffy-slider-nav-outside-size: 3.5rem;
  --swiffy-slider-indicator-outside-size: 1.5rem;
  --swiffy-slider-animation-duration: 0.75s;
  --swiffy-slider-animation-delay: 0s;
  --swiffy-slider-animation-timing: ease-in-out;
}
.swiffy-slider,
.swiffy-slider::after,
.swiffy-slider::before {
  box-sizing: border-box;
}
.swiffy-slider ::-webkit-scrollbar {
  height: var(--swiffy-slider-track-height);
}
.swiffy-slider ::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, var(--swiffy-slider-track-opacity));
}
.swiffy-slider ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
}
.swiffy-slider ::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.6);
}
.slider-container {
  --swiffy-slider-item-gap-totalwidth: calc(var(--swiffy-slider-item-gap) * (var(--swiffy-slider-item-count) - 1));
  --swiffy-slider-item-width: calc(
    (100% - var(--swiffy-slider-item-reveal) - var(--swiffy-slider-item-gap-totalwidth)) /
      var(--swiffy-slider-item-count)
  );
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: grid;
  align-items: center;
  height: 100%;
  grid: auto/auto-flow -webkit-max-content;
  grid: auto/auto-flow max-content;
  grid-auto-rows: 100%;
  grid-auto-columns: var(--swiffy-slider-item-width);
  grid-auto-flow: column;
  grid-gap: var(--swiffy-slider-item-gap);
  list-style: none;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  scrollbar-color: rgba(0, 0, 0, 0.4) rgba(0, 0, 0, var(--swiffy-slider-track-opacity));
  background-clip: padding-box;
}
.slider-container > * {
  scroll-snap-align: var(--swiffy-slider-snap-align);
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-item-helper .slider-container > * {
  background-size: cover;
  background-color: #e1e1e1;
  background-position: 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-item-helper:not(.slider-item-ratio) .slider-container > * {
  min-height: 20rem;
}
.slider-item-ratio .slider-container > * > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.slider-item-ratio-contain .slider-container > * > * {
  -o-object-fit: contain;
  object-fit: contain;
}
.slider-item-ratio .slider-container > ::after {
  display: block;
  padding-top: calc(100% / (var(--swiffy-slider-item-ratio)));
  content: "";
}
.slider-item-ratio-32x9 {
  --swiffy-slider-item-ratio: 32/9;
}
.slider-item-ratio-21x9 {
  --swiffy-slider-item-ratio: 21/9;
}
.slider-item-ratio-16x9 {
  --swiffy-slider-item-ratio: 16/9;
}
.slider-item-ratio-4x3 {
  --swiffy-slider-item-ratio: 4/3;
}
.slider-item-ratio-2x1 {
  --swiffy-slider-item-ratio: 2/1;
}
.slider-item-ratio-1x1 {
  --swiffy-slider-item-ratio: 1/1;
}
.slider-item-ratio-3x4 {
  --swiffy-slider-item-ratio: 3/4;
}
.slider-nav-scrollbar {
  --swiffy-slider-track-height: 0.5rem;
}
.slider-nav-scrollbar .slider-container {
  scrollbar-width: thin;
}
.slider-nav-nodelay .slider-container {
  scroll-behavior: auto;
}
.slider-indicators {
  position: absolute;
  right: 2rem;
  bottom: 0;
  left: 2rem;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 1rem;
  list-style: none;
}
.slider-nav-scrollbar .slider-indicators {
  margin-bottom: calc(1rem + var(--swiffy-slider-track-height));
}
.slider-indicators > .active {
  opacity: 1;
}
.swiffy-slider.slider-indicators-outside .slider-nav {
  margin-bottom: var(--swiffy-slider-indicator-outside-size);
}
.swiffy-slider.slider-indicators-outside {
  padding-bottom: var(--swiffy-slider-indicator-outside-size);
}
.swiffy-slider.slider-indicators-outside .slider-indicators,
.swiffy-slider.slider-indicators-outside.slider-indicators {
  margin-bottom: 0;
}
.slider-indicators > * {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 2rem;
  height: 0.2rem;
  padding: 0;
  border: 0.4rem solid transparent;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.slider-indicators-square .slider-indicators > *,
.slider-indicators-square.slider-indicators > * {
  width: 0.5rem;
  height: 0.5rem;
  border: 0.4rem solid transparent;
}
.slider-indicators-round .slider-indicators > *,
.slider-indicators-round.slider-indicators > * {
  width: 0.5rem;
  height: 0.5rem;
  border: 0.4rem solid transparent;
  border-radius: 50%;
}
.slider-indicators-highlight .slider-indicators > .active,
.slider-indicators-highlight.slider-indicators > .active {
  border: 0.33rem solid transparent;
  padding: 0.07rem;
}
.slider-nav {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  visibility: hidden;
  opacity: 0.8;
  transition:
    visibility 0.1s,
    opacity 0.2s linear;
  margin-bottom: var(--swiffy-slider-track-height);
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  -webkit-filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
  transform: scale(var(--swiffy-slider-nav-zoom));
}
.slider-nav::before {
  position: absolute;
  content: "";
  padding: 0.5rem;
  width: 3rem;
  height: 3rem;
}
.slider-nav::after {
  content: "";
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'></path></svg>");
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'></path></svg>");
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--swiffy-slider-nav-light);
  background-origin: content-box;
  width: 3rem;
  height: 3rem;
}
.slider-nav-arrow .slider-nav::after {
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z'></path></svg>");
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z'></path></svg>");
}
.slider-nav-chevron .slider-nav::after {
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M9.224 1.553a.5.5 0 0 1 .223.67L6.56 8l2.888 5.776a.5.5 0 1 1-.894.448l-3-6a.5.5 0 0 1 0-.448l3-6a.5.5 0 0 1 .67-.223z'></path></svg>");
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M9.224 1.553a.5.5 0 0 1 .223.67L6.56 8l2.888 5.776a.5.5 0 1 1-.894.448l-3-6a.5.5 0 0 1 0-.448l3-6a.5.5 0 0 1 .67-.223z'></path></svg>");
}
.slider-nav-caret .slider-nav::after {
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path d='M10 12.796V3.204L4.519 8 10 12.796zm-.659.753-5.48-4.796a1 1 0 0 1 0-1.506l5.48-4.796A1 1 0 0 1 11 3.204v9.592a1 1 0 0 1-1.659.753z'></path></svg>");
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path d='M10 12.796V3.204L4.519 8 10 12.796zm-.659.753-5.48-4.796a1 1 0 0 1 0-1.506l5.48-4.796A1 1 0 0 1 11 3.204v9.592a1 1 0 0 1-1.659.753z'></path></svg>");
}
.slider-nav-caretfill .slider-nav::after {
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path d='m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z'></path></svg>");
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path d='m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z'></path></svg>");
}
.swiffy-slider:hover .slider-nav {
  visibility: visible;
}
.swiffy-slider.slider-nav-autohide.slider-item-first-visible .slider-nav:not(.slider-nav-next) {
  visibility: hidden;
}
.swiffy-slider.slider-nav-autohide.slider-item-last-visible .slider-nav.slider-nav-next {
  visibility: hidden;
}
.slider-nav-outside .slider-container {
  margin: 0 var(--swiffy-slider-nav-outside-size);
}
.slider-nav-outside .slider-nav {
  padding: 0;
}
.swiffy-slider .slider-nav:hover {
  opacity: 1;
}
.slider-nav-square .slider-nav {
  padding: 0;
}
.slider-nav-round .slider-nav::before,
.slider-nav-square .slider-nav::before {
  background-color: var(--swiffy-slider-nav-light);
}
.slider-nav-round .slider-nav::after,
.slider-nav-square .slider-nav::after {
  background-color: var(--swiffy-slider-nav-dark);
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
}
.slider-nav-round .slider-nav::before {
  border-radius: 50%;
}
.slider-nav-round .slider-nav::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' %3E%3Cpath fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z'%3E%3C/path%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' %3E%3Cpath fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z'%3E%3C/path%3E%3C/svg%3E");
}
.slider-nav-dark .slider-nav::after {
  background-color: var(--swiffy-slider-nav-dark);
}
.slider-nav-dark.slider-nav-round .slider-nav::before,
.slider-nav-dark.slider-nav-square .slider-nav::before {
  background-color: var(--swiffy-slider-nav-dark);
}
.slider-nav-dark.slider-nav-round .slider-nav::after,
.slider-nav-dark.slider-nav-square .slider-nav::after {
  background-color: var(--swiffy-slider-nav-light);
}
.slider-nav-sm {
  --swiffy-slider-nav-zoom: 0.75;
  --swiffy-slider-nav-outside-size: 2.5rem;
}
.slider-nav.slider-nav-next::after {
  transform: rotate(180deg);
}
.slider-nav.slider-nav-next {
  right: 0;
  left: unset;
}
.slider-nav-visible .slider-nav {
  visibility: visible;
}
.slider-nav-dark .slider-nav {
  opacity: 0.6;
}
.slider-indicators-dark .slider-indicators > *,
.slider-indicators-dark.slider-indicators > * {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.slider-item-snapstart {
  --swiffy-slider-snap-align: start;
}
.slider-item-nosnap {
  --swiffy-slider-snap-align: unset;
}
.slider-item-nogap {
  --swiffy-slider-item-gap: 0rem;
}
.slider-item-reveal {
  --swiffy-slider-item-reveal: 8rem;
}
.slider-item-snapstart.slider-item-reveal {
  --swiffy-slider-item-reveal: 4rem;
}
.slider-item-show2 {
  --swiffy-slider-item-count: 2;
}
.slider-item-show3 {
  --swiffy-slider-item-count: 3;
}
.slider-item-show4 {
  --swiffy-slider-item-count: 4;
}
.slider-item-show5 {
  --swiffy-slider-item-count: 5;
}
.slider-item-show6 {
  --swiffy-slider-item-count: 6;
}
.slider-nav-mousedrag .slider-container {
  cursor: -webkit-grab;
  cursor: grab;
}
.slider-nav-mousedrag.dragging .slider-container {
  -ms-scroll-snap-type: unset;
  scroll-snap-type: unset;
  scroll-behavior: unset;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slider-nav-mousedrag.dragging .slider-nav {
  visibility: hidden;
}
@media (hover: hover) {
  .slider-nav-mousedrag .slider-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .slider-nav-animation.slider-nav-animation-fast {
    --swiffy-slider-animation-duration: 0.25s;
  }
  .slider-nav-animation.slider-nav-animation-slow {
    --swiffy-slider-animation-duration: 1.25s;
  }
  .slider-nav-animation .slider-container > * > * {
    transition:
      opacity var(--swiffy-slider-animation-duration) var(--swiffy-slider-animation-timing),
      transform var(--swiffy-slider-animation-duration) var(--swiffy-slider-animation-timing);
    transition-delay: var(--swiffy-slider-animation-delay);
  }
  .slider-nav-animation .slider-container .slide-visible > * {
    transition:
      opacity var(--swiffy-slider-animation-duration) var(--swiffy-slider-animation-timing),
      transform var(--swiffy-slider-animation-duration) var(--swiffy-slider-animation-timing);
    transition-delay: var(--swiffy-slider-animation-delay);
  }
  .slider-nav-animation.slider-nav-animation-fadein .slider-container > * > * {
    opacity: 0.5;
  }
  .slider-nav-animation.slider-nav-animation-scale .slider-container > * > * {
    transform: scale(0.9);
  }
  .slider-nav-animation.slider-nav-animation-appear .slider-container > * > * {
    opacity: 0.3;
    transform: scale(0.9);
  }
  .slider-nav-animation.slider-nav-animation-scaleup .slider-container > * > * {
    transform: scale(0.25);
  }
  .slider-nav-animation.slider-nav-animation-zoomout .slider-container > * {
    overflow: hidden;
  }
  .slider-nav-animation.slider-nav-animation-zoomout .slider-container > * > * {
    transform: scale(1.3);
  }
  .slider-nav-animation.slider-nav-animation-turn .slider-container > * > * {
    transform: rotateY(70deg);
  }
  .slider-nav-animation.slider-nav-animation-slideup .slider-container > * > * {
    transform: translateY(60%) scale(0.99);
  }
  .slider-nav-animation.slider-nav-animation-slideup .slider-container {
    overflow-y: hidden;
  }
  .slider-nav-animation .slider-container > .slide-visible > * {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 62rem) {
  .slider-item-show2:not(.slider-item-snapstart) .slider-container > *,
  .slider-item-show4:not(.slider-item-snapstart) .slider-container > *,
  .slider-item-show6:not(.slider-item-snapstart) .slider-container > * {
    scroll-snap-align: unset;
  }
  .slider-item-show2:not(.slider-item-snapstart) .slider-container > ::before,
  .slider-item-show4:not(.slider-item-snapstart) .slider-container > ::before,
  .slider-item-show6:not(.slider-item-snapstart) .slider-container > ::before {
    content: " ";
    display: block;
    position: absolute;
    left: calc((var(--swiffy-slider-item-gap) / 2) * -1);
    top: 0;
    width: 1px;
    height: 1px;
    scroll-snap-align: var(--swiffy-slider-snap-align);
  }
  .slider-nav-outside-expand .slider-nav {
    margin-left: -4rem;
  }
  .slider-nav-outside-expand .slider-nav.slider-nav-next {
    margin-right: -4rem;
  }
  .slider-nav-sm.slider-nav-outside-expand .slider-nav {
    margin-left: -3.5rem;
  }
  .slider-nav-sm.slider-nav-outside-expand .slider-nav.slider-nav-next {
    margin-right: -3.5rem;
  }
  .slider-indicators-sm.slider-indicators {
    display: none;
  }
}
@media (max-width: 62rem) {
  .swiffy-slider {
    --swiffy-slider-track-height: 0rem;
    --swiffy-slider-item-reveal: 0rem;
    --swiffy-slider-item-count: 1;
    --swiffy-slider-nav-zoom: 0.875;
  }
  .swiffy-slider .slider-item-show2-sm {
    --swiffy-slider-item-count: 2;
  }
  .slider-item-reveal {
    --swiffy-slider-item-reveal: 4rem;
  }
  .slider-item-snapstart.slider-item-reveal {
    --swiffy-slider-item-reveal: 2rem;
  }
  .slider-item-show6 .slider-container {
    grid-auto-columns: calc(25% - (var(--swiffy-slider-item-gap) / 4 * 3));
  }
  .slider-item-show6.slider-item-reveal .slider-container {
    grid-auto-columns: calc(25% - (var(--swiffy-slider-item-gap) / 4 * 3) - 0.5rem);
  }
  .slider-item-show6.slider-item-reveal .slider-container > * {
    scroll-snap-align: unset;
  }
  .slider-item-show6.slider-item-reveal .slider-container > ::before {
    content: " ";
    display: block;
    position: absolute;
    left: calc((var(--swiffy-slider-item-gap) / 2) * -1);
    top: 0;
    width: 1px;
    height: 1px;
    scroll-snap-align: center;
  }
  .slider-nav::after,
  .slider-nav::before {
    width: 2rem;
    height: 2rem;
    padding: 0.3rem;
  }
  .slider-nav-round .slider-nav::after,
  .slider-nav-square .slider-nav::after {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0.125rem;
  }
  .slider-nav-outside .slider-container,
  .slider-nav-outside-expand .slider-container {
    margin: 0 2rem;
  }
  .slider-nav-outside-expand .slider-container {
    margin: 0 var(--swiffy-slider-nav-outside-size);
  }
  .slider-nav-outside-expand .slider-nav {
    padding: 0;
  }
  .slider-indicators-round .slider-indicators > *,
  .slider-indicators-round.slider-indicators > *,
  .slider-indicators-square .slider-indicators > *,
  .slider-indicators-square.slider-indicators > * {
    width: 0.3rem;
    height: 0.3rem;
  }
  .slider-indicators {
    margin-bottom: 0.5rem;
    display: none;
  }
  .slider-nav-scrollbar .slider-indicators {
    margin-bottom: 0;
  }
  .slider-indicators > * {
    width: 1rem;
    height: 0.125rem;
    border-width: 0.25rem;
  }
  .slider-indicators-sm .slider-indicators,
  .slider-indicators-sm.slider-indicators {
    display: flex;
  }
}
@media (max-width: 48rem) {
  .slider-item-show6 .slider-container {
    grid-auto-columns: calc(50% - (var(--swiffy-slider-item-gap) / 2));
  }
  .slider-item-show6.slider-item-reveal .slider-container {
    grid-auto-columns: calc(50% - (var(--swiffy-slider-item-gap) / 2) - 1.5rem);
  }
}
@media (hover: none) {
  .swiffy-slider.slider-nav-touch .slider-nav {
    visibility: visible;
  }
  .swiffy-slider:not(.slider-nav-touch).slider-nav-outside .slider-container,
  .swiffy-slider:not(.slider-nav-touch).slider-nav-outside-expand .slider-container {
    margin: 0 0;
  }
  .slider-item-nosnap-touch {
    --swiffy-slider-snap-align: unset;
  }
}
/*# sourceMappingURL=swiffy-slider.min.css.map */

.slider-container li div {
  background-color: #000;
  height: 10rem;
}

.slider-container {
  margin-top: 1rem;
}

/* LIGHTBOX STYLING */
.lightbox-overlay {
  position: fixed;
  z-index: 100;
  padding: 2% 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000e7; /* Black w/ opacity */
}

.lightbox-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.lightbox-content img {
  position: relative;
  z-index: 6;
  transition: 5s;
  max-height: 85vh;
  max-width: 100vh;
  padding: 1px;
  margin: auto;
  min-width: 1px;
  min-height: 1px;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}

/*Tablet*/
@media screen and (max-width: 768px) {
  .lightbox-content img {
    max-width: 70vh;
  }
}

/*Mobile*/
@media screen and (max-width: 425px) {
  .lightbox-content img {
    max-width: 50vh;
  }
}

/* The Close Button */
.close {
  background-color: transparent;
  border: none;
  color: white;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 40px;
  font-weight: bold;
  transition: 0.5s;
  text-decoration: none;
  cursor: pointer;
}
.close:after {
  display: none;
}

.close:hover,
.close:focus {
  opacity: 0.7;
}

.index-counter {
  position: absolute;
  color: white;
  top: 10px;
  z-index: 103;
  left: 50%;
  transform: translate(-50%);
  padding: 5px;
  margin: auto;
  font-size: 16px;
  transition: 0.5s;
}

.desc {
  position: absolute;
  color: white;
  bottom: 20px;
  padding: 5px;
  margin: auto;
  font-size: 16px;
  text-align: center;
  transition: 0.5s;
}

.lightbox-content .image-loader {
  position: absolute;
  z-index: 7;
  width: 3rem;
  height: 3rem;
  margin: auto;
  border-radius: 50%;
  border: 0.4rem solid #616336;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/*Tablet*/
@media screen and (max-width: 768px) {
  .index-counter {
    font-size: 18px;
  }

  .lightbox-content img {
    max-height: 80vh;
  }
}

/*Mobile*/
@media screen and (max-width: 425px) {
  .lightbox-content img {
    max-height: 75vh;
  }
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  z-index: 7;
  transition: 0.6s ease;
  user-select: none;
  -webkit-user-select: none;
  filter: drop-shadow(-1px 6px 12px rgba(0, 0, 0, 0.7));
}

/* Position the "next button" to the right */

.next:before {
  content: url(assets/lightbox-arrow.svg);
  position: absolute;
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
}

.prev:before {
  content: url(assets/lightbox-arrow.svg);
  position: absolute;
  width: 40px;
  height: 40px;
}

.next {
  right: 6rem;
}

.prev {
  left: 4rem;
}

/*Tablet*/
@media screen and (max-width: 768px) {
  .prev,
  .next {
    font-size: 25px;
  }
}

/*Mobile*/
@media screen and (max-width: 425px) {
  .prev,
  .next {
    font-size: 20px;
  }
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  opacity: 0.7;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-padding-top {
  padding-top: 0;
}

/******************************************/
/*** Main ***/
/******************************************/

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-family: "Roboto", sans-serif;
}

#logo {
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
}

h1 {
  font-size: 1.7rem;
  justify-content: flex-start;
}

h1 a {
  text-decoration: none;
}

h2 {
  font-size: 2rem;
}

header {
  position: relative;
}

p {
  color: var(--text-color);
  line-height: 1.5;
}

header .lead {
  width: 24rem;
  max-width: 100%;
}
.button {
  margin: 1rem 0;
  display: inline-block;
  color: #fff;
  padding: 1rem 2rem;
  background-color: var(--sec-bg-color);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.all-cars {
      text-align: center;
    margin: auto;
    display: block;
    width: 20rem;
    margin-top: 5rem;
}

.button:hover {
  opacity: 0.9;
}

#burger-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

#main-menu {
  position: absolute;
  top: 4rem;
  right: 2rem;
  display: none;
  background-color: var(--sec-bg-color);
  padding: 1.5rem;
}

#main-menu ul {
  margin: 0;
  padding: 0;
}

#main-menu li {
  list-style: none;
  padding: 0.5rem;
}

#main-menu a {
  color: #fff;
  text-decoration: none;
}

#main-menu a:hover {
  opacity: 0.7;
}

.bg {
  background-color: var(--sec-bg-color);
}

.dark-bg {
  background-color: var(--bg-color);
}

.dark-bg p {
  color: #d8d9e1;
}

.dark-bg a {
  text-decoration: none;
  color: #fff;
}

.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
header h1 {
  color: #fff;
}

.hero-dark {
  width: 100%;
  position: relative;
  flex-direction: column;
  display: flex;
  padding: 2rem;
}

section,
header {
  margin-bottom: 8rem;
}

.title-bar {
  margin-bottom: 5rem;
}

.title-bar h1 {
  color: var(--bg-color);
}

#about {
  display: flex;
  flex-direction: column;
}

footer {
  color: var(--text-color);
}

.footer-text {
  padding: 4rem 2rem;
}

footer h2 {
  color: #fff;
}

.img-gallery img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  --f: 1.2;
  clip-path: inset(0);
  transition: 0.4s;
}

.slider-container li div {
  height: auto;
  position: relative;
}

.slider-container li div span {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 1rem;
  display: inline-block;
  color: #fff;
  z-index: 2;
  width: 100%;
  font-weight: 600;
  font-size: 0.9rem;
}

.slider-container li div img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  --f: 1.2;
  clip-path: inset(0);
  transition: 0.4s;
}

@media (min-width: 54rem) {
  .hero-dark {
    flex-direction: row;
    height: 45rem;
    width: 60%;
    align-items: center;
    padding-left: 4rem;
  }
  header {
    display: flex;
    flex-direction: row;
  }
  header h1 {
    position: absolute;
    top: 2rem;
    left: 4rem;
    z-index: 2;
    font-size: 2rem;
  }
  header #logo {
    width: 400px;
    height: 400px;
    margin-right: -200px;
    top: 0;
    bottom: 0;
    box-shadow:
      0 8px 12px rgba(0, 0, 0, 0.065),
      0 12px 20px rgba(0, 0, 0, 0.065),
      0 20px 36px rgba(0, 0, 0, 0.065),
      0 36px 68px rgba(0, 0, 0, 0.065);
  }
  .hero-content {
    width: calc(100% - 200px);
    margin-right: 2rem;
  }
  h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
  }

  #cars h2,
  #cars .lead {
    text-align: center;
  }
  #about {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--sec-bg-color);
    padding: 8rem 4rem;
    justify-content: center;
    flex-direction: row;
  }
  #about img {
    width: 60%;
    margin-right: -4rem;
    max-width: 100%;
    object-fit: cover;
  }
  #about .about-text-container {
    width: 50%;
    padding: 3rem;
    background-color: #fff;
    margin: 4rem;
    margin-left: -4rem;
    z-index: 2;
  }
}

@media (min-width: 62rem) {
  .hero-dark {
    height: 50rem;
    padding-left: 4rem;
  }
  header #logo {
    width: 450px;
    height: 450px;
    margin-right: -225px;
  }
  header h1 {
    left: 4rem;
    padding-right: 4rem;
    font-size: 1.8rem;
  }
  .hero-content {
    width: calc(100% - 225px);
    margin-right: 3rem;
  }
  h2 {
    text-transform: uppercase;
    font-size: 2.4rem;
  }
}

@media (min-width: 90rem) {
  .hero-dark {
    height: 50rem;
    padding-left: 6rem;
  }
  header #logo {
    width: 550px;
    height: 550px;
    margin-right: -325px;
  }
  header h1 {
    left: 6rem;
  }
  .hero-content {
    width: calc(100% - 275px);
    margin-right: 3rem;
  }
  h2 {
    text-transform: uppercase;
    font-size: 2.8rem;
  }
  #about img {
    width: 40%;
  }
  #about .about-text-container {
    width: 30%;
  }
}
