@charset "UTF-8";
/*
 * Theme Name: IQFresh
 * 
 * ANAGRAMA 2024
 */
/* ===== [ IMPORTANT NOTE ] ======
 * Please do not edit the compiled style.min.css file
 * (Those changes are going to be overwritten when compiled again).
 */
/* ===== [ HOW TO COMPILE ] ======
 * Prerequisites: Sass
 * 
 * [RUN COMMAND INSIDE _root_ FOLDER]
 * The following command will compile scss assets to css
 *
 → sass --watch assets/scss/style.scss:style.min.css --style compressed
 */
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: inherit;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend {
  line-height: inherit;
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 720px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 900px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 720px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 900px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 720px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 900px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 720px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 900px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(29.7, 33.3, 36.9);
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #000;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: black;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: flex;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
  .navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 720px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-top,
  .navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 900px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
  .navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
  .navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
  .navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  overflow-anchor: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed)::after {
  transform: rotateZ(-180deg) rotateY(0deg) rotateX(0deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
@media (min-width: 900px) {
  .accordion-button::after {
    background-size: 16px;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
}

.accordion-header {
  margin-bottom: 0;
  margin-top: 0;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: rgb(10.4, 88, 202.4);
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: rgb(86.4, 93.6, 100);
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: rgb(20, 108, 67.2);
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: rgb(61.4, 212.6, 243);
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: rgb(255, 205.4, 56.6);
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: rgb(176, 42.4, 55.2);
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: rgb(249.4, 250.2, 251);
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: rgb(26.4, 29.6, 32.8);
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 720px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 900px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

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

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

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

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

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

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

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

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

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 720px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 900px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/**
 * Swiper 4.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 31, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 27px;
  height: 44px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.bg-avocado {
  background-color: #096349;
}

.c-cucumber {
  color: #1b9a55;
}

.c-white {
  color: #ffffff;
}

.num-display {
  font-family: "Apta Medium", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.04em;
}
@media (min-width: 720px) {
  .num-display {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 900px) {
  .num-display {
    font-size: 60px;
    line-height: 58px;
  }
}

.display {
  font-family: "Apta Medium", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  font-size: 31px;
  line-height: 32px;
  letter-spacing: -0.02em;
}
@media (min-width: 720px) {
  .display {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (min-width: 900px) {
  .display {
    font-size: 60px;
    line-height: 58px;
  }
}

.h1 {
  font-family: "Apta Medium", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.04em;
}
@media (min-width: 720px) {
  .h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 900px) {
  .h1 {
    font-size: 40px;
    line-height: 46px;
  }
}

.h2 {
  font-family: "Apta Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: none;
}
@media (min-width: 720px) {
  .h2 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 900px) {
  .h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.detalle {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .detalle {
    font-size: 14px;
    line-height: 17px;
  }
}

.body-text {
  font-family: "Apta Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-transform: none;
}

.unstyled-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

strong {
  color: #1b9a55;
  font-weight: 400;
}

.bg-avocado strong {
  color: #9fe870;
}

@media (min-width: 720px) and (max-width: 899.98px) {
  .pt-mdo-0 {
    padding-top: 0 !important;
  }
}

.pt-10 {
  padding-top: 10px;
}

.pt-15-10 {
  padding-top: 15px;
}

@media (min-width: 720px) and (max-width: 899.98px) {
  .pt-md-only-15 {
    padding-top: 15px;
  }
}

@media (min-width: 720px) {
  .pt-md-28 {
    padding-top: 28px;
  }
}

.pt-30 {
  padding-top: 30px;
}

@media (min-width: 720px) and (max-width: 899.98px) {
  .pt-mdo-40 {
    padding-top: 40px;
  }
}

.pt-green {
  padding-top: 80px;
}
@media (min-width: 720px) {
  .pt-green {
    padding-top: 100px;
  }
}
@media (min-width: 900px) {
  .pt-green {
    padding-top: 120px;
  }
}

.pt-clients {
  padding-top: 132px;
}
@media (min-width: 720px) {
  .pt-clients {
    padding-top: 162px;
  }
}
@media (min-width: 900px) {
  .pt-clients {
    padding-top: 180px;
  }
}

.pb-green {
  padding-bottom: 80px;
}
@media (min-width: 720px) {
  .pb-green {
    padding-bottom: 100px;
  }
}
@media (min-width: 900px) {
  .pb-green {
    padding-bottom: 120px;
  }
}

.pt-blue {
  padding-top: 60px;
}
@media (min-width: 720px) {
  .pt-blue {
    padding-top: 80px;
  }
}

@media (min-width: 900px) {
  .pt-lg-blue {
    padding-top: 80px;
  }
}

.pt-pink {
  padding-top: 30px;
}
@media (min-width: 720px) {
  .pt-pink {
    padding-top: 40px;
  }
}
@media (min-width: 900px) {
  .pt-pink {
    padding-top: 50px;
  }
}

@media (min-width: 720px) and (max-width: 899.98px) {
  .pt-md-pink {
    padding-top: 40px !important;
  }
}

.pt-yellow {
  padding-top: 15px;
}
@media (min-width: 720px) {
  .pt-yellow {
    padding-top: 20px;
  }
}

.pt-red {
  padding-top: 20px;
}
@media (min-width: 720px) {
  .pt-red {
    padding-top: 30px;
  }
}

.pb-red {
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .pb-red {
    padding-bottom: 30px;
  }
}

@media (max-width: 719.98px) {
  .pt-sm-red {
    padding-top: 20px;
  }
}

@media (min-width: 720px) {
  .pt-md-red {
    padding-top: 30px;
  }
}

@media (min-width: 900px) {
  .pt-lg-red {
    padding-top: 30px;
  }
}

.py-red {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .py-red {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.py-pink {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 720px) {
  .py-pink {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 900px) {
  .py-pink {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (min-width: 900px) {
  .py-lg-pink {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.px-pink {
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 720px) {
  .px-pink {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 900px) {
  .px-pink {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (min-width: 900px) {
  .px-lg-pink {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.px-red {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 720px) {
  .px-red {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.py-red-pink {
  padding-top: 20px;
  padding-bottom: 30px;
}
@media (min-width: 720px) {
  .py-red-pink {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
@media (min-width: 900px) {
  .py-red-pink {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

@media (max-width: 719.98px) {
  .pt-sm-pink {
    padding-top: 30px;
  }
}

@media (min-width: 720px) and (max-width: 899.98px) {
  .pb-only-md-pink {
    padding-bottom: 40px;
  }
}

.mt-error {
  margin-top: 28px;
}
@media (min-width: 720px) {
  .mt-error {
    margin-top: 30px;
  }
}
@media (min-width: 900px) {
  .mt-error {
    margin-top: 20px;
  }
}

@media (max-width: 899.98px) {
  .mt-sm-red {
    margin-top: 20px;
  }
}

@media (min-width: 900px) {
  .pt-lg-pink {
    padding-top: 50px;
  }
}

@media (min-width: 900px) {
  .pt-lg-0 {
    padding-top: 0px !important;
  }
}

.mt-30 {
  margin-top: 30px;
}

.mb-red {
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .mb-red {
    margin-bottom: 30px;
  }
}

.ml-0 {
  margin-left: 0 !important;
}

@media (min-width: 720px) and (max-width: 899.98px) {
  .ml-md-0 {
    margin-left: 0 !important;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (min-width: 900px) {
  .mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.ml-auto {
  margin-left: auto;
}

.mt-auto {
  margin-top: auto;
}

@media (max-width: 899.98px) {
  .mx-md-auto {
    margin: auto;
  }
}

@media (min-width: 720px) {
  .mx-md-0 {
    margin: 0;
  }
}

.mt-lh {
  margin-top: 1lh;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pl-0 {
  padding-left: 0;
}

.pl-30 {
  padding-left: 30px;
}

@media (min-width: 720px) {
  .pl-md-40 {
    padding-left: 40px;
  }
}

@media (min-width: 900px) {
  .pl-lg-50 {
    padding-left: 50px;
  }
}

.pr-30 {
  padding-right: 30px;
}

@media (min-width: 720px) {
  .pr-md-40 {
    padding-right: 40px;
  }
}

@media (min-width: 900px) {
  .pr-lg-50 {
    padding-right: 50px;
  }
}

@media (min-width: 720px) {
  .pr-md-0 {
    padding-right: 0;
  }
}

@media (min-width: 720px) {
  .pt-md-0 {
    padding-top: 0;
  }
}

.pt-map {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 720px) {
  .pt-map {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 900px) {
  .pt-map {
    padding-top: 91px;
    padding-bottom: 87px;
  }
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

@media (min-width: 900px) {
  .gap-lg-30 {
    gap: 30px;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .ml-lg-auto {
    margin-left: auto;
  }
}

@media (min-width: 720px) and (max-width: 899.98px) {
  .mx-only-md-auto {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 720px) and (max-width: 899.98px) {
  .py-only-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.top-120 {
  top: 120px;
}

.top-80 {
  top: 80px;
}

@font-face {
  font-family: "Apta Medium";
  src: url("./assets/fonts/Apta-Medium.woff2") format("woff2"), url("./assets/fonts/Apta-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Apta Regular";
  src: url("./assets/fonts/Apta-Regular.woff2") format("woff2"), url("./assets/fonts/Apta-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Azeret Mono Regular";
  src: url("./assets/fonts/AzeretMono-Regular.woff2") format("woff2"), url("./assets/fonts/AzeretMono-Regular.woff") format("woff");
  font-display: swap;
}
/* 
 * Anagrama [root] 2021
 * https://www.anagrama.com/
 */
/* ===== [ I.NDEX ] ======
 * i. 1. Normalize
 * i. 2. General
 * i. 3. Pages
 *    -- 3.1 Page Home
 *    -- 3.2 Page Clients
 *    -- 3.3 Page Contact
 *    -- 3.4 Page Why
 *    -- 3.5 Page Vacancies
 *    -- 3.6 Page Error
 */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: #ffffff;
  margin-top: 0 !important;
  /* For Chrome, Safari, and Opera */
}
html ::-webkit-scrollbar {
  display: none;
}
html {
  /* For IE, Edge, and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

body {
  background: #ffffff;
  color: #096349;
  font-family: "Apta Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-transform: none;
}

main {
  opacity: 0;
  min-height: 100vh;
}

.body-no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover:not(.active) {
    color: inherit;
  }
}

a:not([href]):not([tabindex]) {
  cursor: pointer;
}

button {
  border: 0;
  background-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container-sm {
  grid-column: span 12;
}
@media (min-width: 900px) {
  .container-sm {
    grid-column: span 8;
  }
}

@media (min-width: 900px) {
  .position-lg-absolute {
    position: absolute;
  }
}

input {
  appearance: none;
  background-color: transparent;
  outline: none;
  border: none;
}

.overflow-x-hidden {
  overflow-x: clip;
}

.overflow-clip {
  overflow: clip;
}

.d-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media (min-width: 720px) {
  .d-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
.d-grid .info {
  padding: 0;
  grid-column: span 5;
}
.d-grid .cards {
  padding: 0;
  grid-column: span 6;
}

.light-green-tag {
  background-color: #e1f2e8;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  padding: 5px 10px;
  margin-bottom: 10px;
  transition: all 300ms;
}

.section-tag {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px 15px 5px 15px;
  margin-bottom: 10px;
  width: fit-content;
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .section-tag {
    font-size: 14px;
    line-height: 17px;
  }
}
.section-tag {
  color: #096349;
  border-style: solid;
  border-width: 1px;
  border-radius: 20px;
  border-color: rgba(9, 99, 73, 0.2);
  background-color: transparent;
  gap: 10px;
}
.section-tag.white {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}
.section-tag.blured {
  background-color: rgba(246, 246, 246, 0.5);
  backdrop-filter: blur(5px);
}
.section-tag .green-dot {
  height: 6px;
  width: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='7' viewBox='0 0 6 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3.5' r='3' fill='%239FE870'/%3E%3C/svg%3E%0A");
}
@media (min-width: 900px) {
  .section-tag {
    padding: 8px 14px 7px 14px;
  }
}

.service-about .content {
  padding-top: 30px;
}
@media (min-width: 720px) {
  .service-about .content {
    padding-top: 40px;
  }
}
@media (min-width: 900px) {
  .service-about .content {
    padding-top: 0;
  }
}
.service-about .img {
  margin-top: 19px;
}
@media (min-width: 720px) {
  .service-about .img {
    margin-top: 29px;
  }
}
@media (min-width: 900px) {
  .service-about .img {
    margin-top: 0;
  }
}

@media (max-width: 899.98px) {
  .numerals {
    gap: 10px;
  }
}
@media (min-width: 900px) {
  .numerals {
    row-gap: 30px;
  }
}

.clients-grid a {
  overflow: hidden;
}
.clients-grid .item:not(:last-of-type) {
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  .clients-grid .item:not(:last-of-type) {
    padding-bottom: 30px;
  }
}
@media (min-width: 900px) {
  .clients-grid .item:nth-of-type(even) .d-lg-flex {
    flex-direction: row-reverse;
  }
  .clients-grid .item:nth-of-type(even) .d-lg-flex .image .irregular-img.left {
    transform: scaleX(-1);
  }
  .clients-grid .item:nth-of-type(even) .d-lg-flex .image .irregular-img.left .img-contain {
    transform: scaleX(-1);
  }
  .clients-grid .item:nth-of-type(even) .d-lg-flex .right {
    border-radius: 30px 0 0 30px;
  }
}
@media (min-width: 900px) and (min-width: 900px) {
  .clients-grid .item:nth-of-type(even) .d-lg-flex .right {
    border-right: none;
    border-left: 1px solid rgba(9, 99, 73, 0.2);
  }
}
.clients-grid .item .right {
  width: 100%;
}
@media (min-width: 900px) {
  .clients-grid .item .right {
    width: 50%;
  }
}
.clients-grid .item .right .text-link {
  padding-top: 21px;
}
@media (min-width: 720px) {
  .clients-grid .item .right .text-link {
    padding-top: 31px;
  }
}
@media (min-width: 900px) {
  .clients-grid .item .right .text-link {
    padding-top: 28px;
  }
}
.clients-grid .item .image {
  width: 100%;
}
@media (min-width: 900px) {
  .clients-grid .item .image {
    width: 50%;
  }
}
.clients-grid .img-contain {
  z-index: 100;
  padding: 20px;
}
@media (min-width: 720px) {
  .clients-grid .img-contain {
    padding: 90px;
  }
}
@media (min-width: 900px) {
  .clients-grid .img-contain {
    padding: 61px;
  }
}

.contact form,
.vacancy form {
  background-color: #f6f6f6;
  border: 1px solid rgba(9, 99, 73, 0.2);
  padding: 19px 34px 18px;
  border-radius: 30px;
}
@media (min-width: 720px) {
  .contact form,
  .vacancy form {
    padding: 29px 34px;
  }
}
.contact form .col-6,
.contact form .col-12,
.contact form .col-md-6,
.vacancy form .col-6,
.vacancy form .col-12,
.vacancy form .col-md-6 {
  padding: 0 0;
}
@media (min-width: 720px) {
  .contact form .col-6,
  .contact form .col-12,
  .contact form .col-md-6,
  .vacancy form .col-6,
  .vacancy form .col-12,
  .vacancy form .col-md-6 {
    padding: 0 11px;
  }
}
.contact form button,
.vacancy form button {
  margin-top: 16px;
}
@media (min-width: 720px) {
  .contact form button,
  .vacancy form button {
    margin-top: 25px;
  }
}

.why-team .content {
  padding-top: 9px;
}
@media (min-width: 720px) {
  .why-team .content {
    padding-top: 19px;
  }
}
@media (min-width: 900px) {
  .why-team .content {
    padding-top: 0;
  }
}
@media (min-width: 720px) and (max-width: 899.98px) {
  .why-team .img {
    aspect-ratio: 1.37/1 !important;
  }
}
.why-list li:not(:last-of-type) {
  padding-bottom: 8px;
}
@media (min-width: 720px) {
  .why-list li:not(:last-of-type) {
    padding-bottom: 18px;
  }
}
@media (min-width: 900px) {
  .why-list li:not(:last-of-type) {
    padding-bottom: 15px;
  }
}
.why-process {
  padding: 30px 33px;
}
@media (min-width: 720px) {
  .why-process {
    padding: 40px 46px;
  }
}
@media (min-width: 900px) {
  .why-process {
    padding: 49px 46px;
  }
}
.why-process .navigation {
  gap: 10px;
}
.why-process .navigation .button span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e1f2e8;
  color: #096349;
  width: 32px;
  height: 32px;
}
@media (min-width: 720px) {
  .why-process .navigation .button span {
    width: 37px;
    height: 37px;
  }
}
@media (min-width: 900px) {
  .why-process .navigation .button span {
    width: 40px;
    height: 40px;
  }
  .why-process .navigation .button span svg {
    width: 16px;
    transform: translateY(1px);
  }
}
.why-process .proceso-item {
  display: none;
  -webkit-animation: fadeOut 1.2s;
  animation: fadeOut 1.2s;
}
.why-process .proceso-item.active {
  display: block;
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
}
.why-process .proceso-dot .status-widget-button {
  color: #ffffff;
  width: 30px;
  height: 30px;
  background-color: #096349;
  border: 2px solid #e1f2e8;
  transition: all 0.3s ease-in-out;
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .why-process .proceso-dot .status-widget-button {
    font-size: 14px;
    line-height: 17px;
  }
}
.why-process .proceso-dot .status-widget-button:hover {
  background-color: #1b9a55;
}
.why-process .proceso-dot .status-widget-button.active {
  transition: all 0.3s ease-in-out;
}
.why-process .proceso-dot .status-widget-button.active span {
  padding: 8px 10px;
  background-color: #9fe870;
  color: #096349;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 720px) {
  .why-process .proceso-dot .status-widget-button.active span {
    padding: 5px 10px;
  }
}
@media (min-width: 900px) {
  .why-process .proceso-dot .status-widget-button.active span {
    padding: 6px 10px;
  }
}
.why-process .proceso-dot .status-widget-button.active span:hover {
  background-color: #9fe870;
}
.why-process .proceso-dot .status-widget-button span:hover {
  padding: 8px 10px;
  background-color: #1b9a55;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 899.98px) {
  .why-process .proceso-dot .status-widget-button span:hover {
    padding: 6px 5px;
  }
}
@media (max-width: 719.98px) {
  .why-process .proceso-dot .status-widget-button span:hover {
    padding: 5px 5px;
  }
}
.why-process .proceso-dot .status-widget-button.completed {
  color: #9fe870;
  background-color: #9fe870;
  border-color: #9fe870;
  transition: all 0.3s ease-in-out;
}
.why-process .proceso-content {
  padding-top: 63px;
}
.why-process .label-left {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
  transition: all 0.3s ease-in-out;
}
.why-process .label-left.active {
  margin-left: 5px;
}
.why-process .label-top {
  top: 100%;
  transform: translateX(-50%);
  left: 50%;
  margin-top: 16px;
  transition: all 0.3s ease-in-out;
}
.why-process .label-top.active {
  margin-top: 6px;
}
.why-process .label-right {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}
.why-process .label-right.active {
  margin-right: 5px;
}
.why-process .label-bottom {
  bottom: 100%;
  transform: translateX(-50%);
  left: 50%;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.why-process .label-bottom.active {
  margin-bottom: 6px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#dot-container {
  position: relative;
  width: 100%;
  height: fit-content;
  aspect-ratio: 1/1;
  margin: 75px auto auto auto;
}
@media (min-width: 1200px) {
  #dot-container {
    margin: 15px 17.5px;
  }
}

.vacancies-cta {
  border-radius: 20px;
  background-color: #096349;
  color: #ffffff;
  padding: 15px;
}
.vacancies-cta:hover {
  color: #ffffff;
}
@media (hover: hover) {
  .vacancies-cta:hover:not(.current) {
    color: #ffffff;
  }
}

.vacancies-cta {
  transition: all 300ms ease-in-out;
}
.vacancies-cta .button {
  min-width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) {
  .vacancies-cta .button {
    width: 40px;
    height: 40px;
  }
}
.vacancies-cta .button svg {
  transition: transform 0.1s ease-in-out;
}
@media (hover: hover) {
  .vacancies-cta:hover svg {
    transform: rotate(-45deg);
  }
  .vacancies-cta:hover {
    background-color: #1b9a55;
    transition: all 300ms ease-in-out;
  }
}

.vacancies-cta .button.white svg,
.collab .button.white svg {
  width: 13px;
}
@media (min-width: 900px) {
  .vacancies-cta .button.white svg,
  .collab .button.white svg {
    width: 16px;
  }
}

@media (min-width: 720px) {
  #vacancies-grid .detalle.c-cucumber {
    margin-bottom: 3px;
  }
}
@media (min-width: 900px) {
  #vacancies-grid .detalle.c-cucumber {
    margin-bottom: 5px;
  }
}

.page-404 {
  padding: 15px 0;
  color: #ffffff;
}
.page-404 .error-404 {
  border-radius: 30px;
  padding: 30px;
}
@media (min-width: 720px) {
  .page-404 .error-404 {
    padding: 40px;
  }
}
@media (min-width: 900px) {
  .page-404 .error-404 {
    padding: 50px;
  }
}
@media (min-width: 720px) {
  .page-404 {
    padding: 30px 0;
  }
}
@media (min-width: 900px) {
  .page-404 {
    padding: 46px 0 54px 0;
  }
}
@media (max-width: 719.98px) {
  .page-404 svg {
    max-width: 190px;
  }
}

#dot-container .proceso-arco {
  transition: stroke 0.3s ease;
}
#dot-container .proceso-arco.is-active {
  stroke: #9fe870;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.address a {
  transition: all 300ms;
}
.address a:hover {
  color: #1b9a55;
  transition: all 300ms;
}

.sticky-top {
  position: sticky;
  top: 15px;
  z-index: 50;
  transition: all 300ms ease-in-out;
}
@media (min-width: 720px) {
  .sticky-top {
    top: 20px;
  }
}
@media (min-width: 900px) {
  .sticky-top {
    top: 30px;
  }
}

.position-sticky {
  transition: all 300ms ease-in-out;
}

.header-pinned {
  top: 80px;
  z-index: 50;
  transition: all 300ms ease-in-out;
}
@media (min-width: 720px) {
  .header-pinned {
    top: 90px;
  }
}
@media (min-width: 900px) {
  .header-pinned {
    top: 120px;
  }
}

.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}
.headroom .col-12 {
  transition: all 300ms ease-in-out;
}

.headroom--pinned {
  transform: translateY(-20px);
  transition: all 300ms ease-in-out;
}
@media (min-width: 720px) {
  .headroom--pinned {
    transform: translateY(-25px);
  }
}
@media (min-width: 900px) {
  .headroom--pinned {
    transform: translateY(-20px);
  }
}
@media (min-width: 1200px) {
  .headroom--pinned {
    transform: translateY(-15px);
  }
}
.headroom--pinned .col-12 {
  padding-left: 0;
  padding-right: 0;
  transition: all 300ms ease-in-out;
}

.headroom--unpinned {
  transform: translateY(-100px);
  transition: all 300ms ease-in-out;
}
@media (min-width: 900px) {
  .headroom--unpinned {
    transform: translateY(-150px);
  }
}
@media (min-width: 1200px) {
  .headroom--unpinned {
    transform: translateY(-150px);
  }
}
.headroom--unpinned .col-12 {
  transition: all 300ms ease-in-out;
}

.single-vacancy .headroom .col-12,
.page-template-page-clients .headroom .col-12,
.page-template-page-contact .headroom .col-12,
.page-template-page-legals .headroom .col-12 {
  padding-left: 0;
  padding-right: 0;
}
.single-vacancy .headroom--unpinned,
.page-template-page-clients .headroom--unpinned,
.page-template-page-contact .headroom--unpinned,
.page-template-page-legals .headroom--unpinned {
  transform: translateY(-100px);
  transition: all 300ms ease-in-out;
}
@media (min-width: 900px) {
  .single-vacancy .headroom--unpinned,
  .page-template-page-clients .headroom--unpinned,
  .page-template-page-contact .headroom--unpinned,
  .page-template-page-legals .headroom--unpinned {
    transform: translateY(-15px);
  }
}
@media (min-width: 1200px) {
  .single-vacancy .headroom--unpinned,
  .page-template-page-clients .headroom--unpinned,
  .page-template-page-contact .headroom--unpinned,
  .page-template-page-legals .headroom--unpinned {
    transform: translateY(-150px);
  }
}
.single-vacancy .headroom--unpinned .col-12,
.page-template-page-clients .headroom--unpinned .col-12,
.page-template-page-contact .headroom--unpinned .col-12,
.page-template-page-legals .headroom--unpinned .col-12 {
  padding-left: 0;
  padding-right: 0;
  transition: all 300ms ease-in-out;
}
.single-vacancy .headroom--pinned,
.page-template-page-clients .headroom--pinned,
.page-template-page-contact .headroom--pinned,
.page-template-page-legals .headroom--pinned {
  transform: translateY(-5px);
  transition: all 300ms ease-in-out;
}
@media (min-width: 720px) {
  .single-vacancy .headroom--pinned,
  .page-template-page-clients .headroom--pinned,
  .page-template-page-contact .headroom--pinned,
  .page-template-page-legals .headroom--pinned {
    transform: translateY(-10px);
  }
}
.single-vacancy .headroom--pinned .col-12,
.page-template-page-clients .headroom--pinned .col-12,
.page-template-page-contact .headroom--pinned .col-12,
.page-template-page-legals .headroom--pinned .col-12 {
  padding-left: 0;
  padding-right: 0;
  transition: all 300ms ease-in-out;
}

.fade-on-scroll,
.animate-on-scroll {
  opacity: 0;
  will-change: scroll-position;
}

.stagger-on-scroll .stagger-child {
  opacity: 0;
  transform: translateY(20px);
  will-change: scroll-position;
}
.stagger-on-scroll.animate .stagger-child {
  animation-name: d;
  animation-fill-mode: forwards;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-duration: 1s;
}
@media (max-width: 899.98px) {
  .stagger-on-scroll.animate .stagger-child {
    animation-duration: 0.8s;
  }
}

.fade-on-scroll.animate {
  animation-name: d;
  animation-fill-mode: forwards;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-duration: 1s;
}
@media (max-width: 899.98px) {
  .fade-on-scroll.animate {
    animation-duration: 0.8s;
  }
}

.animate-on-scroll.animate {
  animation-name: a;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 899.98px) {
  .animate-on-scroll.animate {
    animation-duration: 0.8s;
  }
}

.line-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: start;
  display: none;
}
.line-container .overflow-wrapper {
  overflow: hidden;
  display: inline-block;
}
.line-container .overflow-wrapper .line {
  display: inline-flex;
  white-space: nowrap;
  color: #000;
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 899.98px) {
  .line-container .overflow-wrapper .line {
    transition-duration: 0.8s;
  }
}

.text-up {
  display: inline-block;
  position: relative;
  width: 100%;
  color: transparent;
  opacity: 0;
  will-change: transform;
}
.text-up .line-container {
  display: flex;
}
.text-up.animate {
  opacity: 1;
}
.text-up.animate .line {
  transform: translateY(0);
}

@keyframes a {
  0% {
    opacity: 0;
    -webkit-backface-visibility: hidden;
  }
  to {
    opacity: 1;
    -webkit-backface-visibility: hidden;
  }
}
@keyframes d {
  0% {
    opacity: 0;
    transform: translateY(20px);
    -webkit-backface-visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-backface-visibility: hidden;
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes scroll-up {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes scroll-down {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
svg:not(:root) {
  overflow: hidden;
}

svg[role=icon] {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: middle;
}

.icon-caret {
  width: 11px;
  height: 6px;
}

.icon-play {
  width: 16px;
  height: 15px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='15' viewBox='0 0 13 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4835 6.58678C13.1722 6.99265 13.1722 8.00735 12.4835 8.41322L1.54954 14.8572C0.860857 15.263 3.08683e-07 14.7557 3.44166e-07 13.9439L9.07512e-07 1.05607C9.42995e-07 0.244318 0.860856 -0.263028 1.54954 0.142849L12.4835 6.58678Z' fill='white'/%3E%3C/svg%3E%0A");
}

.playing .icon-play {
  background-image: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.91667 0H1.375C0.822715 0 0.375 0.447715 0.375 1V14C0.375 14.5523 0.822715 15 1.375 15H4.91667C5.46895 15 5.91667 14.5523 5.91667 14V1C5.91667 0.447715 5.46895 0 4.91667 0Z" fill="white"/><path d="M13.6252 0H10.0835C9.53121 0 9.0835 0.447715 9.0835 1V14C9.0835 14.5523 9.53121 15 10.0835 15H13.6252C14.1774 15 14.6252 14.5523 14.6252 14V1C14.6252 0.447715 14.1774 0 13.6252 0Z" fill="white"/></svg>');
}

.arrow-icon {
  width: 10px;
  height: 10px;
  scale: 1.05;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='10' viewBox='0 0 11 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.67827 -6.28916e-05L4.76393 0.914272L8.1921 4.34243L-1.401e-05 4.34243L-1.4119e-05 5.63536L8.1921 5.63536L4.76393 9.06352L5.67827 9.97786L10.6672 4.9889L5.67827 -6.28916e-05Z' fill='white'/%3E%3C/svg%3E%0A");
}
@media (min-width: 900px) {
  .arrow-icon {
    width: 14px;
    height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.18186 0.000171361L6.24158 0.94045L10.932 5.63083L-1.06124e-05 5.63082L-1.07245e-05 6.96044L10.932 6.96044L6.24158 11.6508L7.18186 12.5911L13.4773 6.29563L7.18186 0.000171361Z' fill='white'/%3E%3C/svg%3E%0A");
  }
}
.arrow-icon.green {
  width: 11px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.67827 0.000181249L4.76393 0.914516L8.1921 4.34268L-1.401e-05 4.34268L-1.4119e-05 5.63561L8.1921 5.63561L4.76393 9.06377L5.67827 9.9781L10.6672 4.98914L5.67827 0.000181249Z' fill='%23096349'/%3E%3C/svg%3E%0A");
  scale: 1.05;
}
@media (min-width: 900px) {
  .arrow-icon.green {
    width: 15px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='18' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.18186 0.0001711L6.24158 0.94045L10.932 5.63083L-1.05741e-05 5.63082L-1.09812e-05 6.96044L10.932 6.96044L6.24158 11.6508L7.18186 12.5911L13.4773 6.29563L7.18186 0.0001711Z' fill='%23096349'/%3E%3C/svg%3E%0A");
  }
}

.icon-863 {
  height: 74px;
  width: 74px;
  background-image: url("data:image/svg+xml,%3Csvg width='74' height='74' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M74 36.7041C74 57.2878 57.5531 74.0001 37.2964 74.0001C37.2964 53.4164 53.7433 36.7041 74 36.7041Z' fill='%239FE870'/%3E%3Cpath d='M37.2957 73.9963C16.7122 73.9963 6.10352e-05 57.284 6.10352e-05 36.7003C20.5835 36.7003 37.2957 53.4127 37.2957 73.9963Z' fill='%239FE870'/%3E%3Cpath d='M74 36.7041C53.7433 36.7041 37.2964 20.257 37.2964 0.000102997C57.5531 0.000102997 74 16.4472 74 36.7041Z' fill='%239FE870'/%3E%3Cpath d='M0 36.7041C0 16.4472 16.7122 0.000102997 37.2956 0.000102997C37.2956 20.257 20.5835 36.7041 0 36.7041Z' fill='%239FE870'/%3E%3Cpath d='M37.0011 49.7259C43.7036 49.7259 49.137 44.1599 49.137 37.2939C49.137 30.4279 43.7036 24.8619 37.0011 24.8619C30.2987 24.8619 24.8652 30.4279 24.8652 37.2939C24.8652 44.1599 30.2987 49.7259 37.0011 49.7259Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
}
@media (min-width: 720px) {
  .icon-863 {
    height: 84px;
    width: 84px;
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='84' viewBox='0 0 84 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M84 41.6641C84 65.0293 65.3305 84.0001 42.3364 84.0001C42.3364 60.6348 61.0059 41.6641 84 41.6641Z' fill='%239FE870'/%3E%3Cpath d='M42.3357 83.9957C18.9707 83.9957 0.000114441 65.025 0.000114441 41.6597C23.3651 41.6597 42.3357 60.6305 42.3357 83.9957Z' fill='%239FE870'/%3E%3Cpath d='M84 41.6641C61.0059 41.6641 42.3364 22.9944 42.3364 6.48499e-05C65.3305 6.48499e-05 84 18.6697 84 41.6641Z' fill='%239FE870'/%3E%3Cpath d='M0 41.6641C0 18.6697 18.9706 6.48499e-05 42.3356 6.48499e-05C42.3356 22.9944 23.365 41.6641 0 41.6641Z' fill='%239FE870'/%3E%3Cpath d='M42.0013 56.4454C49.6095 56.4454 55.7771 50.1273 55.7771 42.3334C55.7771 34.5396 49.6095 28.2214 42.0013 28.2214C34.3931 28.2214 28.2254 34.5396 28.2254 42.3334C28.2254 50.1273 34.3931 56.4454 42.0013 56.4454Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
  }
}
@media (min-width: 900px) {
  .icon-863 {
    height: 90px;
    width: 90px;
    background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M90.0005 44.6401C90.0005 69.6743 69.9973 90.0001 45.3605 90.0001C45.3605 64.966 65.3637 44.6401 90.0005 44.6401Z' fill='%239FE870'/%3E%3Cpath d='M45.3604 90.0002C20.3262 90.0002 0.000350952 69.6744 0.000350952 44.6402C25.0345 44.6402 45.3604 64.9661 45.3604 90.0002Z' fill='%239FE870'/%3E%3Cpath d='M90.0005 44.6401C65.3637 44.6401 45.3605 24.637 45.3605 0.000137329C69.9973 0.000137329 90.0005 20.0033 90.0005 44.6401Z' fill='%239FE870'/%3E%3Cpath d='M0 44.6401C0 20.0033 20.3258 0.000137329 45.36 0.000137329C45.36 24.637 25.0342 44.6401 0 44.6401Z' fill='%239FE870'/%3E%3Cpath d='M45.0002 60.4805C53.152 60.4805 59.7602 53.711 59.7602 45.3605C59.7602 37.0099 53.152 30.2405 45.0002 30.2405C36.8485 30.2405 30.2402 37.0099 30.2402 45.3605C30.2402 53.711 36.8485 60.4805 45.0002 60.4805Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
  }
}

.icon-662 {
  height: 74px;
  width: 74px;
  background-image: url("data:image/svg+xml,%3Csvg width='74' height='74' viewBox='0 0 74 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M37.2962 36.7041L0.000175476 36.7041L0.000175476 9.91821e-05C20.5838 9.91821e-05 37.2962 16.4472 37.2962 36.7041Z' fill='%239FE870'/%3E%3Cpath d='M37.296 36.7041V74.0001H0C0 53.4164 16.7123 36.7041 37.296 36.7041Z' fill='%239FE870'/%3E%3Cpath d='M37.2962 36.7041H74.0002V74.0001C53.7432 74.0001 37.2962 57.2878 37.2962 36.7041Z' fill='%239FE870'/%3E%3Cpath d='M37.296 36.7041L37.296 9.91821e-05L74 9.91821e-05C74 20.257 57.5529 36.7041 37.296 36.7041Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
}
@media (min-width: 720px) {
  .icon-662 {
    height: 84px;
    width: 84px;
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='84' viewBox='0 0 84 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.3362 41.6641L0.000183105 41.6641L0.000183105 6.10352e-05C23.3654 6.10352e-05 42.3362 18.6697 42.3362 41.6641Z' fill='%239FE870'/%3E%3Cpath d='M42.336 41.6641V84.0001H0C0 60.6348 18.9708 41.6641 42.336 41.6641Z' fill='%239FE870'/%3E%3Cpath d='M42.3362 41.6641H84.0002V84.0001C61.0058 84.0001 42.3362 65.0293 42.3362 41.6641Z' fill='%239FE870'/%3E%3Cpath d='M42.336 41.6641L42.336 6.10352e-05L84 6.10352e-05C84 22.9944 65.3304 41.6641 42.336 41.6641Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
  }
}
@media (min-width: 900px) {
  .icon-662 {
    height: 90px;
    width: 90px;
    background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M45.3599 44.6399L0.000106812 44.6399L0.000106812 -2.28882e-05C25.0342 -2.28882e-05 45.3599 20.0031 45.3599 44.6399Z' fill='%239FE870'/%3E%3Cpath d='M45.3598 44.6399V89.9998H0C0 64.9657 20.3257 44.6399 45.3598 44.6399Z' fill='%239FE870'/%3E%3Cpath d='M45.3599 44.6399H89.9996V89.9998C65.3629 89.9998 45.3599 69.674 45.3599 44.6399Z' fill='%239FE870'/%3E%3Cpath d='M45.3597 44.6399L45.3597 -2.28882e-05L89.9995 -2.28882e-05C89.9995 24.6367 69.9964 44.6399 45.3597 44.6399Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
  }
}

.icon-658 {
  height: 69px;
  width: 74px;
  background-image: url("data:image/svg+xml,%3Csvg width='74' height='69' viewBox='0 0 74 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M37.296 69C16.7123 69 0 52.3297 0 31.7977C20.5836 31.7977 37.296 48.4681 37.296 69Z' fill='%239FE870'/%3E%3Cpath d='M37.296 69C37.296 48.4681 53.7431 31.7977 74 31.7977C74 52.3297 57.5529 69 37.296 69Z' fill='%239FE870'/%3E%3Cpath d='M74.0001 0C74.0001 20.2097 57.553 36.6118 37.2961 36.6118C37.2961 16.4057 53.7432 0 74.0001 0Z' fill='%239FE870'/%3E%3Cpath d='M37.296 36.6121C16.7086 36.6121 0 20.2063 0 0.000293732C20.5836 0.000293732 37.296 16.406 37.296 36.6121Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
}
@media (min-width: 720px) {
  .icon-658 {
    height: 79px;
    width: 84px;
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='79' viewBox='0 0 84 79' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.3362 79C18.971 79 0.00018692 59.9137 0.00018692 36.4061C23.3654 36.4061 42.3362 55.4924 42.3362 79Z' fill='%239FE870'/%3E%3Cpath d='M42.3362 79C42.3362 55.4924 61.0058 36.4061 84.0002 36.4061C84.0002 59.9137 65.3305 79 42.3362 79Z' fill='%239FE870'/%3E%3Cpath d='M84 0C84 23.1386 65.3304 41.9178 42.336 41.9178C42.336 18.7834 61.0056 0 84 0Z' fill='%239FE870'/%3E%3Cpath d='M42.3362 41.9182C18.9667 41.9182 0.00018692 23.1349 0.00018692 0.00043869C23.3654 0.00043869 42.3362 18.7838 42.3362 41.9182Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
  }
}
@media (min-width: 900px) {
  .icon-658 {
    height: 84px;
    width: 90px;
    background-image: url("data:image/svg+xml,%3Csvg width='90' height='84' viewBox='0 0 90 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M45.3599 83.9998C20.3257 83.9998 -5.72205e-05 63.7056 -5.72205e-05 38.7105C25.0341 38.7105 45.3599 59.0046 45.3599 83.9998Z' fill='%239FE870'/%3E%3Cpath d='M45.3599 83.9998C45.3599 59.0046 65.363 38.7105 89.9998 38.7105C89.9998 63.7056 69.9966 83.9998 45.3599 83.9998Z' fill='%239FE870'/%3E%3Cpath d='M90 0C90 24.6029 69.9969 44.5704 45.3601 44.5704C45.3601 19.972 65.3632 0 90 0Z' fill='%239FE870'/%3E%3Cpath d='M45.3599 44.5703C20.3212 44.5703 -5.72205e-05 24.5983 -5.72205e-05 -8.7738e-05C25.0341 -8.7738e-05 45.3599 19.9719 45.3599 44.5703Z' fill='%239FE870'/%3E%3C/svg%3E%0A");
  }
}

.large-card-icon {
  margin-top: 30px;
  width: 95px;
  height: 95px;
  background-image: url("data:image/svg+xml,%3Csvg width='95' height='95' viewBox='0 0 95 95' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.88681e-05 47.8506C26.2148 47.8506 47.5 26.4088 47.5 2.6329e-06L15.8301 8.77454e-07C15.8331 0.126519 15.835 0.253612 15.835 0.38086C15.8349 8.98001 8.91493 15.951 0.378936 15.9512C0.252348 15.9512 0.12589 15.9493 2.99679e-05 15.9463L2.88681e-05 47.8506Z' fill='%231B9A55'/%3E%3Cpath d='M0.00219892 94.9998C26.217 94.9998 47.5022 73.558 47.5022 47.1492L15.8313 47.1492C15.8343 47.2758 15.8362 47.4027 15.8362 47.53C15.8362 56.1294 8.91629 63.1013 0.380128 63.1013C0.253784 63.1013 0.127816 63.0985 0.00219782 63.0955L0.00219892 94.9998Z' fill='%231B9A55'/%3E%3Cpath d='M47.5009 94.9998C73.7157 94.9998 94.9999 73.558 94.9999 47.1492L63.33 47.1492C63.333 47.2757 63.3348 47.4028 63.3348 47.53C63.3348 56.1293 56.4149 63.1003 47.8788 63.1003C47.7524 63.1003 47.6265 63.0985 47.5009 63.0955L47.5009 94.9998Z' fill='%231B9A55'/%3E%3Cpath d='M47.4987 47.8506C73.7135 47.8506 94.9987 26.4088 94.9987 -2.6329e-06L63.3278 -8.77398e-07C63.3308 0.126521 63.3327 0.253606 63.3327 0.380858C63.3326 8.98009 56.4128 15.9512 47.8767 15.9512C47.7503 15.9512 47.6243 15.9493 47.4987 15.9463L47.4987 47.8506Z' fill='%231B9A55'/%3E%3C/svg%3E%0A");
}
@media (min-width: 720px) {
  .large-card-icon {
    width: 114px;
    height: 114px;
    background-image: url("data:image/svg+xml,%3Csvg width='114' height='114' viewBox='0 0 114 114' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-2.13974e-06 56.999C31.4576 56.999 56.999 31.4576 56.999 2.9011e-06L18.9941 9.66753e-07C18.9978 0.150613 19.001 0.301645 19.001 0.453126C19.001 10.6964 10.6965 19.001 0.453124 19.001C0.301644 19.001 0.150611 18.9978 -7.13039e-07 18.9941L-2.13974e-06 56.999Z' fill='%231B9A55'/%3E%3Cpath d='M0.00290131 113.162C31.4605 113.162 57.0019 87.6202 57.0019 56.1626L18.997 56.1626C19.0007 56.3135 19.0029 56.4649 19.0029 56.6167C19.0029 66.8599 10.6991 75.1633 0.456025 75.1636C0.304708 75.1636 0.15335 75.1613 0.00289988 75.1577L0.00290131 113.162Z' fill='%231B9A55'/%3E%3Cpath d='M57.002 113.162C88.4596 113.162 114.001 87.6202 114.001 56.1626L75.9951 56.1626C75.9987 56.3132 76.002 56.4642 76.002 56.6157C76.002 66.859 67.6974 75.1636 57.4541 75.1636C57.3029 75.1636 57.1522 75.1603 57.002 75.1567L57.002 113.162Z' fill='%231B9A55'/%3E%3Cpath d='M56.999 56.999C88.4566 56.999 113.998 31.4576 113.998 -2.9011e-06L75.9932 -9.66752e-07C75.9968 0.150612 76 0.301643 76 0.453124C76 10.6964 67.6955 19.001 57.4521 19.001C57.3007 19.001 57.1496 18.9978 56.999 18.9941L56.999 56.999Z' fill='%231B9A55'/%3E%3C/svg%3E%0A");
  }
}
@media (min-width: 900px) {
  .large-card-icon {
    margin-top: 40px;
    margin-right: 40px;
  }
}
@media (min-width: 1200px) {
  .large-card-icon {
    padding-top: 0;
    margin-top: 21px;
    margin-right: 21px;
    width: 181px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg width='181' height='180' viewBox='0 0 181 180' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-3.91944e-06 90.2803C49.8258 90.2803 90.2803 49.8258 90.2803 3.9733e-06L30.0859 1.3241e-06C30.0917 0.23857 30.0947 0.47783 30.0947 0.717775C30.0947 16.9422 16.9422 30.0947 0.717772 30.0947C0.477828 30.0947 0.238566 30.0917 -1.30615e-06 30.0859L-3.91944e-06 90.2803Z' fill='%231B9A55'/%3E%3Cpath d='M0.00391017 179.655C49.8296 179.655 90.2842 139.201 90.2842 89.375L30.0879 89.375C30.0936 89.6141 30.0977 89.8543 30.0977 90.0947C30.0974 106.319 16.945 119.471 0.720704 119.471C0.481086 119.471 0.242154 119.468 0.00390756 119.462L0.00391017 179.655Z' fill='%231B9A55'/%3E%3Cpath d='M89.9038 179.655C139.73 179.655 180.184 139.201 180.184 89.375L119.989 89.375C119.994 89.6136 119.999 89.8528 119.999 90.0928C119.999 106.317 106.846 119.47 90.6216 119.47C90.3817 119.47 90.1423 119.467 89.9038 119.461L89.9038 179.655Z' fill='%231B9A55'/%3E%3Cpath d='M89.9038 90.2803C139.73 90.2802 180.184 49.8257 180.184 -3.9733e-06L119.989 -1.32406e-06C119.994 0.23857 119.999 0.477825 119.999 0.717772C119.999 16.9421 106.846 30.0946 90.6216 30.0947C90.3817 30.0947 90.1423 30.0917 89.9038 30.0859L89.9038 90.2803Z' fill='%231B9A55'/%3E%3C/svg%3E%0A");
  }
}

.visibility-hidden {
  visibility: hidden;
  position: absolute;
}

.pleca-v {
  width: 1px;
  height: 100%;
  background-color: #096349;
  opacity: 0.3;
  display: block;
}

.pleca-h {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #096349;
  opacity: 0.3;
}

.flex-sm-1 {
  flex: 1;
}
@media (min-width: 720px) {
  .flex-sm-1 {
    flex: auto;
  }
}
@media (min-width: 900px) {
  .flex-sm-1 {
    flex: 1;
  }
}

.max-w-fit {
  max-width: fit-content;
}

.bottom-m-30 {
  bottom: -30px;
}

@media (min-width: 900px) {
  .position-lg-absolute {
    position: absolute !important;
  }
}

footer {
  padding-bottom: 20px;
}
@media (min-width: 720px) {
  footer {
    padding-bottom: 30px;
  }
}
footer .container-footer {
  background-color: #096349;
  border-radius: 30px;
  color: #ffffff;
  padding: 20px;
}
@media (min-width: 720px) {
  footer .container-footer {
    padding: 30px;
  }
}
footer .container-footer .logo {
  width: 58px;
}
@media (min-width: 720px) {
  footer .container-footer .logo {
    width: 68px;
  }
}
@media (min-width: 900px) {
  footer .container-footer .logo {
    width: 81px;
  }
}
footer .container-footer .collab {
  justify-content: space-between;
  border-radius: 20px;
  padding: 10px;
  background-color: rgba(27, 154, 85, 0.3);
  transition: all 300ms ease-in-out;
}
footer .container-footer .collab:hover {
  background-color: #1b9a55;
  transition: all 300ms ease-in-out;
}
@media (min-width: 720px) {
  footer .container-footer .collab {
    padding: 17px;
  }
}
@media (min-width: 900px) {
  footer .container-footer .collab {
    padding: 15px;
    border-radius: 25px;
  }
}
footer .container-footer .collab .button {
  min-width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) {
  footer .container-footer .collab .button {
    width: 40px;
    height: 40px;
  }
}
footer .container-footer .collab .button svg {
  transition: transform 0.1s ease-in-out;
  height: 12px;
  width: 11px;
}
@media (min-width: 720px) {
  footer .container-footer .collab .button svg {
    width: 13px;
    height: 12px;
  }
}
@media (min-width: 900px) {
  footer .container-footer .collab .button svg {
    width: 16px;
    height: 16px;
  }
}
@media (hover: hover) {
  footer .container-footer .collab:hover svg {
    transform: rotate(-45deg);
  }
}
footer .container-footer .detalle {
  cursor: default;
}
footer .container-footer .socials {
  padding: 31px 0 0 0;
}
@media (min-width: 720px) {
  footer .container-footer .socials {
    padding: 0 3px 0 0;
  }
}
@media (min-width: 900px) {
  footer .container-footer .socials {
    padding: 0 0 0 10px;
  }
}
footer .container-footer .socials ul {
  gap: 10px;
  margin-top: 15px;
}
@media (min-width: 720px) {
  footer .container-footer .socials ul {
    margin-top: 20.5px;
  }
}
@media (min-width: 900px) {
  footer .container-footer .socials ul {
    margin-top: 20px;
  }
}
footer .container-footer .socials ul li a {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #096349;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 900px) {
  footer .container-footer .socials ul li a {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }
}
@media (hover: hover) {
  footer .container-footer .socials ul li a:hover {
    background-color: #9fe870;
  }
}
footer .container-footer .sitemap {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  footer .container-footer .sitemap {
    font-size: 14px;
    line-height: 17px;
  }
}
footer .container-footer .sitemap ul {
  margin-top: 15px;
}
footer .container-footer .sitemap a {
  transition: all 200ms ease-in-out;
}
@media (hover: hover) {
  footer .container-footer .sitemap a:hover {
    color: #9fe870;
    transition: all 200ms ease-in-out;
  }
}
@media (min-width: 720px) {
  footer .container-footer .sitemap {
    padding: 0 5px 0 25px;
  }
}
@media (min-width: 900px) {
  footer .container-footer .sitemap {
    padding: 0 5px 0 20px;
  }
}
footer .container-footer .legals {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  footer .container-footer .legals {
    font-size: 14px;
    line-height: 17px;
  }
}
footer .container-footer .legals ul {
  margin-top: 15px;
}
footer .container-footer .legals a {
  transition: all 200ms ease-in-out;
}
@media (hover: hover) {
  footer .container-footer .legals a:hover {
    color: #9fe870;
    transition: all 200ms ease-in-out;
  }
}
@media (min-width: 720px) {
  footer .container-footer .legals {
    padding: 0 5px;
  }
}
footer .container-footer .tagline {
  padding-top: 31px;
}
@media (min-width: 720px) {
  footer .container-footer .tagline {
    padding-left: 25px;
    padding-top: 0;
  }
}
@media (min-width: 900px) {
  footer .container-footer .tagline {
    padding-left: 20px;
  }
}

header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 35px;
  left: 0;
}
@media (min-width: 720px) {
  header {
    top: 45px;
  }
}
header.header-normal {
  top: 20px;
}
@media (min-width: 720px) {
  header.header-normal {
    top: 30px;
  }
}
header .container-header {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  header .container-header {
    font-size: 14px;
    line-height: 17px;
  }
}
header .container-header {
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(229, 229, 229, 0.5);
  border-radius: 20px;
  position: relative;
  backdrop-filter: blur(5px);
  z-index: 2;
}
@media (min-width: 1200px) {
  header .container-header {
    height: 70px;
    padding: 15px 5px 15px 15px;
  }
}
header .container-header .buttons {
  height: 32px;
  gap: 10px;
}
@media (min-width: 900px) {
  header .container-header .buttons {
    height: 40px;
  }
}
@media (max-width: 1199.98px) {
  header .nav-header {
    display: none;
  }
}
header .nav-header ul {
  list-style: none;
  display: flex;
  row-gap: 5px;
  align-items: center;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
header .nav-header ul:has(li a:hover) li a.active {
  cursor: pointer;
  background-color: transparent;
}
header .nav-header ul:has(li a:hover) li a.active:hover {
  background-color: rgba(246, 246, 246, 0.7);
  padding: 12px 10px;
  border-radius: 10px;
}
header .nav-header ul li a {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  header .nav-header ul li a {
    font-size: 14px;
    line-height: 17px;
  }
}
header .nav-header ul li a {
  text-decoration: none;
  padding: 12px 10px;
  transition: all 0.2s ease-in-out;
}
header .nav-header ul li a.active {
  pointer-events: none;
  color: #fb5a43;
  cursor: auto;
}
@media (hover: hover) {
  header .nav-header ul li a:hover:not(.active) {
    color: #1b9a55;
  }
}
@media (min-width: 900px) and (max-width: 1199.98px) {
  header .nav-header ul {
    justify-content: center;
  }
}
header .logo {
  width: 128px;
  height: auto;
}
@media (min-width: 900px) {
  header .logo {
    width: 165px;
  }
}

.single-vacancy header,
.page-template-page-clients header,
.page-template-page-contact header,
.page-template-page-legals header {
  top: 20px;
}
@media (min-width: 720px) {
  .single-vacancy header,
  .page-template-page-clients header,
  .page-template-page-contact header,
  .page-template-page-legals header {
    top: 30px;
  }
}

.burger-container {
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 10px 7px;
  transition: background-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 720px) {
  .burger-container {
    padding: 9px 9px 10.5px;
    background-color: #096349;
  }
}
@media (min-width: 900px) {
  .burger-container {
    height: 100%;
    width: 40px;
    padding: 12px;
  }
}
@media (min-width: 1200px) {
  .burger-container {
    display: none;
  }
}
.burger-container .burger {
  width: 100%;
  height: 100%;
  position: relative;
}
.burger-container .burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #096349;
  transition: background-color 0.3s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 720px) {
  .burger-container .burger span {
    background-color: #ffffff;
  }
}
.burger-container .burger span:nth-of-type(1) {
  top: 0;
}
@media (min-width: 900px) {
  .burger-container .burger span:nth-of-type(1) {
    top: 8%;
  }
}
.burger-container .burger span:nth-of-type(4) {
  top: 100%;
}
@media (min-width: 720px) {
  .burger-container .burger span:nth-of-type(4) {
    top: 98%;
  }
}
@media (min-width: 900px) {
  .burger-container .burger span:nth-of-type(4) {
    top: 96%;
  }
}
.burger-container .burger span:nth-of-type(2), .burger-container .burger span:nth-of-type(3) {
  top: 50%;
}
.burger-container.show {
  background-color: #096349;
}
.burger-container.show span {
  background-color: #f6f6f6;
}
.burger-container.show span:nth-of-type(1), .burger-container.show span:nth-of-type(4) {
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
}
.burger-container.show span:nth-of-type(2) {
  transform: rotate(-45deg);
  -webkit-transform: scaleX(-45deg);
}
.burger-container.show span:nth-of-type(3) {
  transform: rotate(45deg);
  -webkit-transform: scaleX(45deg);
}

.header-menu {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.735s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.header-menu .header-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 62px 10px 0px;
}
@media (min-width: 720px) {
  .header-menu .header-container {
    padding: 70px 10px 0px;
  }
}
.header-menu .header-container .header-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.header-menu .header-container .header-nav li a {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px 0 9px;
  border: 0;
  border-top: 1px solid rgba(9, 99, 73, 0.2);
}
@media (min-width: 720px) {
  .header-menu .header-container .header-nav li a {
    padding: 10.5px 0 9px;
  }
}
.header-menu .header-container .header-nav li a {
  font-family: "Apta Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-transform: none;
}
@media (hover: hover) {
  .header-menu .header-container .header-nav li a:hover:not(.active) {
    color: #1b9a55;
  }
}
.header-menu .header-container .header-nav li a.active {
  pointer-events: none;
  color: #fb5a43;
  cursor: auto;
}
.header-menu .header-container .header-nav .collapse-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 26px;
}
@media (min-width: 720px) {
  .header-menu .header-container .header-nav .collapse-menu {
    padding-bottom: 33px;
    padding-top: 6px;
  }
}
.header-menu .header-container .header-nav .collapse-menu a {
  padding: 0;
}
.header-menu.show {
  opacity: 1;
}
.header-menu.show .header-container {
  pointer-events: all;
}

.header-toggle {
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.735s cubic-bezier(0.19, 1, 0.22, 1);
}
.header-toggle.show {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 900px) {
  .header-toggle {
    display: none;
  }
}

.loader-component {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  left: 0;
  top: 0;
  z-index: 2090;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.form-control {
  width: 100%;
  border: 1px solid rgba(9, 99, 73, 0.2);
  background-color: #f6f6f6;
  padding: 19px;
  border-radius: 20px;
  color: #096349;
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .form-control {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 719.98px) {
  .form-control {
    font-size: 16px;
    width: 127.3885350318%;
    transform: scale(0.785);
    transform-origin: left center;
    padding: 24.2038216561px !important;
    padding-bottom: 27px;
    margin-bottom: 8px;
  }
  .form-control:is(textarea) {
    position: relative;
    top: -26px;
  }
}
.form-control:not(textarea) {
  margin-bottom: 8px;
}
@media (min-width: 720px) {
  .form-control:not(textarea) {
    margin-bottom: 20px;
  }
}
.form-select {
  margin-bottom: 8px;
}
@media (min-width: 720px) {
  .form-select {
    margin-bottom: 20px;
  }
}

textarea {
  min-height: 230px;
  transition: all 300ms;
  -webkit-appearance: none;
}
@media (min-width: 900px) {
  textarea {
    min-height: 163px;
  }
}
textarea.wpcf7-textarea {
  height: 143px;
}
@media (min-width: 720px) {
  textarea.wpcf7-textarea {
    height: 163px;
  }
}
textarea:focus-visible {
  outline: none;
  border: 1px solid #1b9a55;
  transition: all 300ms;
}
textarea:hover::placeholder {
  opacity: 75%;
  transition: all 300ms;
}

input {
  transition: all 300ms;
  -webkit-appearance: none;
}
input:focus-visible {
  outline: none;
  border: 1px solid #1b9a55;
  transition: all 300ms;
}
input:hover::placeholder {
  opacity: 75%;
  transition: all 300ms;
}
input#subject-selectized:focus-visible {
  outline: none;
  border: none;
}
input#subject-selectized:hover::placeholder {
  opacity: 75%;
  transition: all 300ms;
}

.selectize-control {
  width: 100%;
  position: relative;
  margin-bottom: 8px;
  cursor: pointer;
}
@media (min-width: 720px) {
  .selectize-control {
    margin-bottom: 20px;
  }
}
.selectize-control .selectize-input {
  position: relative;
  color: #096349;
  display: flex;
  align-items: center;
  border: 1px solid rgba(9, 99, 73, 0.2);
  border-radius: 20px;
  padding: 17px 15px 18px 20px;
  background-color: #f6f6f6;
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .selectize-control .selectize-input {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 719.98px) {
  .selectize-control .selectize-input {
    font-size: 16px !important;
    width: 127.3885350318%;
    transform: scale(0.785);
    transform-origin: left center;
    padding: 24.2038216561px !important;
    padding-bottom: 27px;
    margin-bottom: 8px;
  }
  .selectize-control .selectize-input input {
    scale: 1.3;
    transform-origin: left;
  }
}
@media (min-width: 720px) {
  .selectize-control .selectize-input {
    padding: 19px 15px;
  }
}
.selectize-control .selectize-input input {
  margin: 0px;
  padding: 0;
  color: #096349;
  pointer-events: none;
  caret-color: transparent;
  position: relative !important;
}
.selectize-control .selectize-input input::placeholder {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .selectize-control .selectize-input input::placeholder {
    font-size: 14px;
    line-height: 17px;
  }
}
.selectize-control .selectize-input input::placeholder {
  opacity: 1;
}
.selectize-control .selectize-input.dropdown-active::after {
  background-image: url('data:image/svg+xml,<svg width="17" height="10" viewBox="0 0 17 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.530273 8.56055L8.03027 1.06055L15.5303 8.56055" stroke="%23096349" stroke-width="1.5"/></svg>');
}
.selectize-control .selectize-input::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="17" height="10" viewBox="0 0 17 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.530273 0.530273L8.03027 8.03027L15.5303 0.530273" stroke="%23096349" stroke-width="1.5"/></svg>');
}
.selectize-control .selectize-dropdown {
  padding: 16px 15px 20px;
  top: 15px;
  z-index: 100;
  left: unset;
  top: 40px !important;
  right: 0;
  width: 100%;
  position: absolute;
  background-color: #f6f6f6;
  border-left: 1px solid rgba(9, 99, 73, 0.2);
  border-right: 1px solid rgba(9, 99, 73, 0.2);
  border-bottom: 1px solid rgba(9, 99, 73, 0.2);
  border-radius: 0 0 20px 20px;
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .selectize-control .selectize-dropdown {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 719.98px) {
  .selectize-control .selectize-dropdown {
    max-width: 100%;
  }
}
.selectize-control .selectize-dropdown .option {
  color: #096349;
}
.selectize-control .selectize-dropdown .option:not(:last-of-type) {
  padding-bottom: 11px;
}
.selectize-control .selectize-dropdown .option.selected span::after {
  opacity: 1;
}
@media (hover: hover) {
  .selectize-control .selectize-dropdown .option:hover {
    color: #fb5a43;
  }
}

#form-submitted {
  position: fixed;
  z-index: 1051;
  left: 15px;
  right: 15px;
  bottom: 20px;
  padding: 13px 30px 14px 30px;
  border-radius: 50px;
  background-color: #fb5a43;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (min-width: 720px) {
  #form-submitted {
    bottom: 40px;
    left: 5%;
    right: auto;
  }
}
#form-submitted.show {
  opacity: 1;
}

span .wpcf7-not-valid-tip {
  padding-left: 20px;
  color: #fb5a43 !important;
  transform: translateY(-5px);
}
@media (min-width: 720px) {
  span .wpcf7-not-valid-tip {
    transform: translateY(-15px);
  }
}

.wpcf7-response-output {
  font-family: "Apta Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-transform: none;
  border-radius: 100px;
  background-color: transparent;
  border-color: #fb5a43 !important;
  border: 1px solid !important;
  color: #fb5a43;
  width: fit-content;
  padding: 15px 30px 13px 30px !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
  font-family: "Apta Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-transform: none;
  background-color: transparent !important;
  border-radius: 100px;
  color: #fb5a43;
  border-color: #fb5a43;
  border: 1px solid !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em auto 1em !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /* Use a large inset box-shadow to cover the blue background */
  -webkit-box-shadow: 0 0 0 1000px #f6f6f6 inset !important;
  /* Change the text color if needed, also with !important */
  -webkit-text-fill-color: #096349 !important; /* e.g., black text */
  /* Add a transition delay to prevent the color from instantly changing back */
  transition: background-color 5000s ease-in-out 0s;
}

.button {
  color: #ffffff;
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .button {
    font-size: 14px;
    line-height: 17px;
  }
}
.button {
  border-style: none;
  border-radius: 12px;
  height: 32px;
  padding: 9px 14px 7px 14px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 900px) {
  .button {
    height: 40px;
    border-radius: 15px;
    padding: 12px 18px 12px 18px;
  }
}
.button.orange {
  background-color: #fb5a43;
  color: #ffffff;
}
@media (hover: hover) {
  .button.orange:hover:not(.active) {
    background-color: #1b9a55;
    color: #ffffff;
  }
}
.button.avocado {
  background-color: #096349;
  color: #ffffff;
}
@media (hover: hover) {
  .button.avocado:hover:not(.active) {
    background-color: #1b9a55;
    color: #ffffff;
  }
}
.button.white {
  background-color: #ffffff;
  color: #096349;
  transition: all 0.3s;
}
.button.arrows {
  background-color: transparent;
  gap: 10px;
  height: fit-content;
  padding: 0;
}
.button.arrows.hover-arrow {
  top: 20px;
  right: 20px;
  z-index: 100;
  transition: all 200ms ease-out;
  opacity: 0;
}
.button.arrows span {
  background-color: #fb5a43;
  color: #ffffff;
  border-radius: 12px;
  padding: 8.5px 14px 8px 14px;
  transition: all 300ms ease-in-out;
}
@media (min-width: 900px) {
  .button.arrows span {
    border-radius: 15px;
    padding: 11px 18px 10px 18px;
  }
}
.button.arrows span.icon {
  padding: 9px 9px 7px 9px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .button.arrows span.icon {
    padding: 12px 12px 11px;
  }
}
.button.arrows span.icon svg {
  transform: translateY(-1px);
  max-width: 14px;
}
@media (min-width: 900px) {
  .button.arrows span.icon svg {
    max-width: 16px;
  }
}
@media (hover: hover) {
  .button.arrows:hover:not(.active) span {
    transform: translateX(12px);
    border-radius: 15px 0px 0px 15px;
    transition: all 200ms ease-in;
  }
  .button.arrows:hover:not(.active) span.icon {
    transform: translateX(-12px);
    border-radius: 0px 15px 15px 0px;
  }
  .button.arrows:hover:not(.active).white span {
    transform: none;
    border-radius: 15px;
  }
}

.play {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .play {
    font-size: 14px;
    line-height: 17px;
  }
}
.play {
  display: flex;
  padding: 12px 18px;
  color: #ffffff;
  border-style: none;
  border-radius: 12px;
  background-color: rgba(229, 229, 229, 0.5);
  backdrop-filter: blur(5px);
  position: absolute;
  bottom: 30px;
  left: 30px;
  gap: 10px;
  transition: 0.2s ease-in-out;
}
@media (hover: hover) {
  .play:hover {
    background-color: rgba(229, 229, 229, 0.8);
  }
}
@media (min-width: 720px) {
  .play {
    padding: 14px 18px;
    left: auto;
    bottom: 40px;
    right: 40px;
  }
}
@media (min-width: 900px) {
  .play {
    border-radius: 15px;
    bottom: 50px;
    right: 50px;
  }
}

.arrow-left {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='15' fill='%23FB5A43'/%3E%3Cpath d='M27.0711 19.9289L12.9289 19.9289M12.9289 19.9289L19.5 26.5M12.9289 19.9289L19.5 13.3579' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}

.arrow-left-white {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='15' fill='white'/%3E%3Cpath d='M27.0711 19.9289L12.9289 19.9289M12.9289 19.9289L19.5 26.5M12.9289 19.9289L19.5 13.3579' stroke='%23096349' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}

.arrow {
  width: 32px;
  height: 32px;
}
@media (min-width: 900px) {
  .arrow {
    width: 40px;
    height: 40px;
  }
}

.arrow-right-white {
  height: 32px;
  width: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='12' fill='white'/%3E%3Cpath d='M9.34315 16.3431L20.6569 16.3431M20.6569 16.3431L15.4 21.6M20.6569 16.3431L15.4 11.0863' stroke='%23096349' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.arrow-right-white:hover {
  cursor: pointer;
}
@media (min-width: 900px) {
  .arrow-right-white {
    height: 40px;
    width: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='15' fill='white'/%3E%3Cpath d='M11.9289 19.9289L26.0711 19.9289M26.0711 19.9289L19.5 26.5M26.0711 19.9289L19.5 13.3579' stroke='%23096349' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  }
}

.arrow-up {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='19.5' stroke='%23096349' stroke-opacity='0.2'/%3E%3Cpath d='M20.2149 27.2149V12.7851M20.2149 12.7851L13 20M20.2149 12.7851L27.4298 20' stroke='%23096349' stroke-width='1.5'/%3E%3C/svg%3E ");
}

.arrow-down {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='19.5' transform='matrix(1 0 0 -1 0 40)' stroke='%23096349' stroke-opacity='0.2'/%3E%3Cpath d='M20.2149 12.7851V27.2149M20.2149 27.2149L13 20M20.2149 27.2149L27.4298 20' stroke='%23096349' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}

.text-link {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .text-link {
    font-size: 14px;
    line-height: 17px;
  }
}
.text-link {
  display: flex;
  padding-bottom: 5px;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1.5px solid;
  gap: 10px;
  height: auto;
  width: fit-content;
  transition: all 0.2s ease-in-out;
}
.text-link.white {
  color: #ffffff;
}
.text-link.avocado {
  color: #096349;
}
.text-link .arrow-icon {
  transition: transform 0.1s ease-in-out;
}
@media (hover: hover) {
  .text-link:hover .arrow-icon {
    transform: rotate(-45deg);
  }
}

#proceso-next svg {
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  #proceso-next:hover svg {
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
  }
}

#proceso-prev svg {
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  #proceso-prev:hover svg {
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
  }
}

.hero {
  margin: 0 auto;
  object-fit: cover;
  max-height: 92vh;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}
@media (min-width: 720px) {
  .hero {
    height: 650px;
  }
}
@media (min-width: 900px) {
  .hero {
    height: 700px;
  }
}
.hero-content {
  width: 100%;
  padding: 0 30px;
  position: absolute;
  bottom: 91px;
  color: white;
  transform: none;
}
.hero-content hr {
  background-color: #ffffff;
  width: 100%;
  margin: 1rem 0;
}
@media (min-width: 720px) {
  .hero-content hr {
    margin-top: 1rem;
    margin-bottom: 15px;
  }
}
@media (min-width: 900px) {
  .hero-content hr {
    margin-top: 1rem;
    margin-bottom: 14px;
  }
}
@media (min-width: 720px) {
  .hero-content {
    padding: 0 40px;
    bottom: 40px;
  }
}
@media (min-width: 900px) {
  .hero-content {
    padding: 0 50px;
    bottom: 50px;
  }
}
.hero-content.pages {
  bottom: 30px;
}
@media (min-width: 720px) {
  .hero-content.pages {
    bottom: 40px;
  }
}
@media (min-width: 900px) {
  .hero-content.pages {
    bottom: 50px;
  }
}
@media (min-width: 720px) and (max-width: 899.98px) {
  .hero-content hr {
    margin-bottom: 12px;
  }
}
@media (min-width: 720px) and (max-width: 899.98px) {
  .hero-content .hero-thumb {
    position: absolute;
    width: 88.5%;
  }
}
.hero-video {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  transition: opacity 0.2s ease-in-out;
}
.hero-video.active {
  display: block;
  opacity: 1;
}
.hero .play-btn {
  z-index: 2;
}
.hero .thumb {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .hero .thumb {
    font-size: 14px;
    line-height: 17px;
  }
}
.hero .thumb {
  padding: 10px 10px;
  color: #ffffff;
  border-radius: 10px;
  background-color: rgba(229, 229, 229, 0.5);
  backdrop-filter: blur(20px);
  transition: all 0.15s ease-in-out;
  width: 100%;
  height: fit-content;
  margin-top: 30px;
}
@media (min-width: 720px) {
  .hero .thumb {
    width: 130px;
    margin-top: 0;
  }
}
@media (min-width: 900px) {
  .hero .thumb {
    width: 160px;
  }
}
.hero .thumb .arrow-icon {
  transition: all 200ms ease-in-out;
}
@media (hover: hover) {
  .hero .thumb:hover {
    background-color: rgba(229, 229, 229, 0.8);
    transition: all 200ms ease-in-out;
  }
  .hero .thumb:hover .arrow-icon {
    transform: rotate(-45deg);
    transition: all 200ms ease-in-out;
  }
}
.hero .thumb-img {
  aspect-ratio: 1.43/1;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.hero .thumb-icon {
  border-radius: 12px;
  background-color: rgba(229, 229, 229, 0.5);
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .hero .thumb-icon {
    min-width: 40px;
    min-height: 40px;
    border-radius: 15px;
  }
}

.irregular-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 1.225/1;
  border-radius: 0 30px 0 0;
  overflow: hidden;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%22343%22%20height%3D%22280%22%20viewBox%3D%220%200%20343%20280%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%20280H343V30C343%2013.4315%20329.569%200%20313%200H58.6512C51.7611%200%2045.081%202.37173%2039.7334%206.71658L11.0822%2029.9957C4.07092%2035.6924%200%2044.2453%200%2053.2791V280Z%22%20fill%3D%22black%22/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg%20width%3D%22343%22%20height%3D%22280%22%20viewBox%3D%220%200%20343%20280%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%20280H343V30C343%2013.4315%20329.569%200%20313%200H58.6512C51.7611%200%2045.081%202.37173%2039.7334%206.71658L11.0822%2029.9957C4.07092%2035.6924%200%2044.2453%200%2053.2791V280Z%22%20fill%3D%22black%22/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
}
.irregular-img img {
  object-fit: cover;
}
@media (min-width: 720px) {
  .irregular-img {
    aspect-ratio: 1.03/1;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="303" height="332" viewBox="0 0 303 332"><path d="M0 0.5H272C288.569 0.5 302 13.9315 302 30.5V277.317C302 286.296 297.978 294.803 291.039 300.501L261.59 324.684C256.224 329.091 249.495 331.5 242.551 331.5H0Z" fill="black"/></svg>') no-repeat center/contain;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="303" height="332" viewBox="0 0 303 332"><path d="M0 0.5H272C288.569 0.5 302 13.9315 302 30.5V277.317C302 286.296 297.978 294.803 291.039 300.501L261.59 324.684C256.224 329.091 249.495 331.5 242.551 331.5H0Z" fill="black"/></svg>') no-repeat center/contain;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: right bottom;
    mask-position: right bottom;
    min-height: 332px;
  }
}
@media (min-width: 900px) {
  .irregular-img {
    aspect-ratio: 1/1.5;
    min-height: 50px;
  }
}
@media (min-width: 1200px) {
  .irregular-img {
    aspect-ratio: 0.8/1;
    min-height: 332px;
  }
}
@media (min-width: 1400px) {
  .irregular-img {
    aspect-ratio: 0.915/1;
  }
}
.irregular-img.horizontal {
  aspect-ratio: 1.65/1;
  border-radius: 30px 30px 30px 0;
  mask: url('data:image/svg+xml,<svg width="746" height="450" viewBox="0 0 746 450" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H746V450H60.3442C52.4364 450 44.8483 446.878 39.2305 441.312L8.88629 411.251C3.1994 405.617 0 397.944 0 389.938V0Z" fill="%23F6F6F6"/></svg>') no-repeat center/contain;
  -webkit-mask: url('data:image/svg+xml,<svg width="746" height="450" viewBox="0 0 746 450" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H746V450H60.3442C52.4364 450 44.8483 446.878 39.2305 441.312L8.88629 411.251C3.1994 405.617 0 397.944 0 389.938V0Z" fill="%23F6F6F6"/></svg>') no-repeat center/contain;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left bottom;
  mask-position: left bottom;
}
@media (min-width: 720px) {
  .irregular-img.horizontal {
    aspect-ratio: 1.66/1;
  }
}
@media (min-width: 900px) {
  .irregular-img.horizontal {
    min-height: 450px;
  }
}
.irregular-img.left {
  aspect-ratio: 1.24/1;
  border-radius: 0 30px 0px 0;
  mask: url('data:image/svg+xml,<svg width="585" height="350" viewBox="0 0 585 350" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 350H585V0H47.4449C40.5605 0 33.8855 2.36783 28.54 6.70615L11.0951 20.8641C4.07611 26.5606 0 35.1183 0 44.158V350Z" fill="%23F6F6F6"/></svg>') no-repeat center/contain;
  -webkit-mask: url('data:image/svg+xml,<svg width="585" height="350" viewBox="0 0 585 350" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 350H585V0H47.4449C40.5605 0 33.8855 2.36783 28.54 6.70615L11.0951 20.8641C4.07611 26.5606 0 35.1183 0 44.158V350Z" fill="%23F6F6F6"/></svg>') no-repeat center/contain;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left bottom;
  mask-position: left bottom;
}
@media (min-width: 720px) {
  .irregular-img.left {
    aspect-ratio: 1.67/1;
  }
}
@media (min-width: 900px) {
  .irregular-img.left {
    aspect-ratio: 1.12/1;
    border-radius: 30px 0px 0px 0;
    mask: url('data:image/svg+xml,<svg width="746" height="450" viewBox="0 0 746 450" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H746V450H60.3442C52.4364 450 44.8483 446.878 39.2305 441.312L8.88629 411.251C3.1994 405.617 0 397.944 0 389.938V0Z" fill="%23F6F6F6"/></svg>') no-repeat center/contain;
    -webkit-mask: url('data:image/svg+xml,<svg width="746" height="450" viewBox="0 0 746 450" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H746V450H60.3442C52.4364 450 44.8483 446.878 39.2305 441.312L8.88629 411.251C3.1994 405.617 0 397.944 0 389.938V0Z" fill="%23F6F6F6"/></svg>') no-repeat center/contain;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left bottom;
    mask-position: left bottom;
    min-height: 350px;
  }
}
@media (min-width: 1200px) {
  .irregular-img.left {
    aspect-ratio: 1.18/1;
    min-height: 457px;
  }
}

.img-responsive {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.img-contain {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
}
.img-rounded {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.img-rounded.map {
  height: 100%;
  aspect-ratio: 1.24/1;
}
@media (min-width: 720px) {
  .img-rounded.map {
    aspect-ratio: auto;
  }
}
@media (min-width: 900px) {
  .img-rounded.map {
    transform: translateX(9px);
    aspect-ratio: 1.4/1;
    height: auto;
  }
}
.img-icon {
  aspect-ratio: 1/1;
  width: 74px;
}
@media (min-width: 720px) {
  .img-icon {
    width: 84px;
  }
}
@media (min-width: 900px) {
  .img-icon {
    width: 90px;
  }
}

.scroll-images {
  gap: 20px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .scroll-images {
    gap: 20px;
    padding: 0 23px 0 23px;
  }
}
@media (min-width: 1200px) {
  .scroll-images {
    gap: 30px;
    padding: 0 53px 0 23px;
  }
}
.scroll-images .scroll-image {
  overflow: hidden;
  aspect-ratio: 1/1.205;
  width: 100%;
  border-radius: 20px;
  min-width: 200px;
}
@media (min-width: 720px) {
  .scroll-images .scroll-image {
    min-width: 274px;
  }
}
@media (min-width: 900px) {
  .scroll-images .scroll-image {
    margin-top: 20px;
    min-width: auto;
  }
}
@media (min-width: 1200px) {
  .scroll-images .scroll-image {
    margin-top: 30px;
    min-width: auto;
  }
}

.clients-grid .item img {
  transition: scale 300ms ease-in-out;
}
.clients-grid .item:hover .image .parallax-img {
  scale: 1.15;
  transition: scale 300ms ease-in-out;
}

.parallax-img {
  scale: 1.1;
  will-change: transform;
}

.swiper {
  overflow: hidden;
}
.swiper-pagination {
  background-color: #e1f2e8;
  padding: 6px 9px 7px;
  border-radius: 20px;
  margin: 20px auto 0;
  position: relative;
  width: fit-content;
}
@media (min-width: 720px) {
  .swiper-pagination {
    margin: 30px auto 0;
  }
}
@media (min-width: 900px) {
  .swiper-pagination {
    margin: 31px 0 0;
    padding: 8px 9px 11px;
  }
}
.swiper-pagination-bullet {
  background-color: #096349;
  margin: 0 4px;
  opacity: 0.3;
  width: 9px;
  height: 9px;
}
.swiper-pagination-bullet-active {
  background-color: #096349;
  opacity: 1;
}
.swiper-button-next {
  top: 30.7%;
  right: 30px;
  background-color: #fb5a43;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background-size: 13px;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.928933 7.92893L15.0711 7.92893M15.0711 7.92893L8.5 14.5M15.0711 7.92893L8.5 1.35786" stroke="white" stroke-width="1.5"/></svg>');
}
@media (min-width: 720px) {
  .swiper-button-next {
    top: 33.5%;
    transform: translateY(-50%);
    width: 37px;
    height: 37px;
    background-size: 15px;
    right: 15px;
  }
}
@media (min-width: 900px) {
  .swiper-button-next {
    top: 34.4%;
    border-radius: 15px;
  }
}
.swiper-button-prev {
  top: 30.7%;
  left: 30px;
  background-color: #fb5a43;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background-size: 13px;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.0711 7.92893L1.92893 7.92893M1.92893 7.92893L8.5 14.5M1.92893 7.92893L8.5 1.35786" stroke="white" stroke-width="1.5"/></svg>');
}
@media (min-width: 720px) {
  .swiper-button-prev {
    top: 33.5%;
    transform: translateY(-50%);
    width: 37px;
    height: 37px;
    background-size: 15px;
    left: 15px;
  }
}
@media (min-width: 900px) {
  .swiper-button-prev {
    top: 34.4%;
    border-radius: 15px;
  }
}
.swiper.home-transport img {
  transition: all 200ms ease-in-out;
}
.swiper.home-transport .swiper-slide {
  height: auto;
}
.swiper.home-transport .swiper-slide .content {
  background-color: #f6f6f6;
  border: 1px solid rgba(9, 99, 73, 0.2);
  border-radius: 0 0 30px 30px;
  padding: 19px;
}
.swiper.home-transport .swiper-slide .content .h2 {
  padding-bottom: 40px;
}
@media (max-width: 719.98px) {
  .swiper.home-transport .swiper-slide .content {
    height: 100%;
  }
}
@media (min-width: 720px) {
  .swiper.home-transport .swiper-slide .content {
    border-radius: 30px 0 0 30px;
    padding: 30px;
  }
}
.swiper.home-transport .swiper-slide:hover .hover-arrow {
  opacity: 1;
  transition: all 200ms ease-in-out;
}
.swiper.home-transport .swiper-slide:hover .hover-arrow span {
  border-radius: 15px;
  transform: translateX(0px);
}
.swiper.home-transport .swiper-slide:hover img {
  scale: 1.05;
  transition: all 200ms ease-in-out;
}
.swiper.service-industries {
  padding: 0 8.9%;
  position: static;
}
@media (min-width: 720px) {
  .swiper.service-industries {
    padding: 0 8.64%;
  }
}
@media (min-width: 900px) {
  .swiper.service-industries {
    padding: 0 5.2%;
  }
}
.swiper.service-industries img {
  aspect-ratio: 1/1.215;
}
@media (min-width: 720px) {
  .swiper.service-industries img {
    aspect-ratio: 1/1.26;
  }
}
@media (min-width: 900px) {
  .swiper.service-industries img {
    aspect-ratio: 1/1.16;
  }
}
.swiper.service-industries .detalle {
  padding-top: 16px;
}
@media (min-width: 720px) {
  .swiper.service-industries .detalle {
    padding-top: 20px;
  }
}
.swiper.service-industries .h2 {
  padding-top: 15px;
}
@media (min-width: 720px) {
  .swiper.service-industries .h2 {
    padding-top: 12px;
  }
}
.swiper.service-industries::before {
  content: "";
  height: 100%;
  width: 8.64%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: #ffffff;
}
@media (min-width: 900px) {
  .swiper.service-industries::before {
    width: 5.2%;
  }
}
.swiper.service-industries::after {
  content: "";
  height: 100%;
  width: 8.64%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: #ffffff;
}
@media (min-width: 900px) {
  .swiper.service-industries::after {
    width: 5.2%;
  }
}
@media (min-width: 900px) and (max-width: 1199.98px) {
  .swiper-slide {
    min-height: 100%;
  }
}

video {
  object-fit: cover !important;
}

.video-js {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.vjs-svg-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  fill: currentColor;
  height: 1.8em;
  width: 1.8em;
}

.vjs-svg-icon:before {
  content: none !important;
}

.vjs-svg-icon:hover,
.vjs-control:focus .vjs-svg-icon {
  filter: drop-shadow(0 0 0.25em #fff);
}

.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABTsAAsAAAAAIpAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV32Y21hcAAAAYQAAAEJAAAD5p42+VxnbHlmAAACkAAADtIAABckI4l972hlYWQAABFkAAAAKwAAADYsvIjpaGhlYQAAEZAAAAAdAAAAJA+RCL1obXR4AAARsAAAABcAAAC8Q2YAAGxvY2EAABHIAAAAYAAAAGB7CIGGbWF4cAAAEigAAAAfAAAAIAFAAI9uYW1lAAASSAAAASUAAAIK1cf1oHBvc3QAABNwAAABfAAAAnXdFqh1eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGR7yDiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGPHcRdyA4RZgQRADaGCyYAAHic7dPXbcMwAEXRK1vuvffem749XAbKV3bjBA6fXsaIgMMLEWoQJaAEFKNnlELyQ4K27zib5PNF6vl8yld+TKr5kH0+cUw0xv00Hwvx2DResUyFKrV4XoMmLdp06NKjz4AhI8ZMmDJjzoIlK9Zs2LJjz4EjJ85cuHLjziPe/0UWL17mf2tqKLz/9jK9f8tXpGCoRdPKhtS0RqFkWvVQNtSKoVYNtWaoddPXEBqG2jQ9XWgZattQO4baNdSeofYNdWCoQ0MdGerYUCeGOjXUmaHODXVhqEtDXRnq2lA3hro11J2h7g31YKhHQz0Z6tlQL4Z6NdSbod4N9WGoT9MfHF6GmhnZLxyDcRMAAAB4nJ1YC1hU17U+a5/HMA4iA3NmVBDmoQwP5TFnHlFeA4gYiUFRQINoSCBAyK3G2yi+0aipYtFcHYo2xsb4NiY3+VrNxSaX5uvt495ozNdoYoxmem2/L8HGpLc+InB279pnhlGr5mvL4eyz99nrrL32eu1/DQcc/okdYgdHOA6MQKp4r9gx0EcMHMezOalVasW5BM7NcXoSb9fFgE6KtSSBxWz1FYDPG+vMBGcKb9cebu2VS5s2aaTkCvRSf6C7Y+Ppibm5E09v7IDs2/3uZQtbD0zIyppwoHXh/93ukmyYgdePNRp65p5v+3v/9otQl2O7wP34cT88p8Md2YxpYLQZoRcy6FlSBRnwnGAe6BPMSCZo+7NJVqS0cE4uHendzhSnbPH6TDqL1+Nme5LZXkCHnGyoH0kne30WH+gswhm3q+pt/mTas9NLS64GnjmSlTPw0wVQT/ewRaBgxtydy3cuUB9/6SW+vb5yRvr+t0eOfPKJZ/9t3+4tL7xj32Xd3thCxi+ge6ifdsAN+l5+wi5HQ/cCoeull1AszS7CUfEcJzK7sKWJAdJhCd0sPM4+EY7QDm5ov08hXRQXE5bf6PV5Q5+IjW7X7Nku92Ask4l2hCRRD6TPqISiCJeQna3SCFwrhrNzXHzo4yFevBwxpzxk8WCIIfkvVEKVy32SbT8n68gzgaslpaiO2zIGIyuSb7RNf9HSuN26y/7OC1tgEmpiyA6aD4qcgTOiLThwGG0eB694FI8NHLLN6OBlRVaMxNAFS4JdXUG6mW8PwpKuYLCLXKGbu8iwYNdgO06Sn3Th+/vyZAxs8Ro30DjHe9gy8Fywi24OMm7Qyzh3MTZVOMYhLBnoC+J79lpTUyQmorjhnMwlcQ5uPEYGpDjsOkkH49BjQLQBqs3jFtFdJNlksYmoQFDArLh8Xh+Qd6Ghcsb6FUuehDi+U/lqD71K/qiegeV1imcwjl7ExwiSrf4BZyCujV6cVcFo6VX+G9IcPyFjJnUufbU/jzrL1X99as36reXl8K32nFaOr+E8jWJEcJ55DpMVfSMe95/AJaOsGBH2GJCNpiRQbK4C8BjdmQA22QY2j03Em13i2YHqtNLU1NI04Yj2HJgA6fQc6VPNpA/D+Ryks554NnVy2mB72uRUfPLsqR4N0LOBQKArwJYO+5W2fgZX8oC1HR6HjNaQTVIG2FPwnTcXXGZZfNB7TE6pTKZUwaw91XWLAoFFGcnB5PHjsckgBjbWutrL+0h5Y1xw3DRGDumsnXb3MJwXrJIN5U7m0rgJ3yG5w4he5ckFG4pmNEkOm0/xOO4r4yL87wqtQM+hiJIVp+6iG2wPBKD35ElGkDx+UfC2v1mFG1o+M3AjNFty8biKMXwzyxnZLds8wYD2BxmCPHAldPOeLsy/0BugftYhVYFAhO8SqQ0j3oK7dHJZnI/jxmUS4onlxskSF8thmvNZjIrRZwEPxr0lBuLRuz3oy/FOHCsxwOPYh2M+e9u3J5pgPYz9gp6G7C9m0A11F9ddqKMfV+4sbq45/YspOysXvT+3pdFdYNg2fHbW8Dz301MqDVuGrz0Fuh0YMW8mddrpqzST7rV9BcvqPoNvadRndWp0p8HvbiqrFj5yFQ/vNFSXDpxpLEFWp+DcrF3FT1afWshFcmCfeAMjEvO65i0Y6XijQfSRPWx3TV/Df7Km3E1l+kLt56s/rwVzuRusNMhudznkwdLaS+QNdeal2jDPP4l9qHc98vTYZOSkxzD+njBWVWjFPKgipx6DkWvXQiW8OYcewVHE5yukinDMcfGgc0opDltYKDxIGBedkzc6jSfE7tlvESCDFUw0Hx0opS+U0lHCxNottbNWSxX9zZVvEhKWUSyBpaXwBc2a98M6UqPeXAs/GDon8Ax7hsthO8cM5HU7Ad0UvRR9lHmtyQKZ4MAe814X5h9MSUkQmhf96eVJ6p90OjIiqSIjvykvr2l5U55O/fPQKD+jIomYpNyGJQ25uQ2kIikRfAmuBHCPsWqkSDEqgZ5KDI2sifS/R43MbZg0idFHbCPNxXxZws1ACVE6hAhOdJwRkJLFBLPZpRGYJ50pko6XzMkgmSx40ljik6AQcKhFnLcQE6rF7PXFe1Ocoj0T3AXgSgJTDIhHRfHlYZKuSzc6uievOJGXY+i5GJkkTp7UM3y0LqATDbtFcbdBxO7o4T25JYlEjoH0uynUh8rapkxp62QN70svSF+hT4gGPlovlmcm/ComLi7mV4kTykV9NFWjE/QrwgQ4uIcAP0rQF4VZYRP2o3PhHHzfPMJj9Ir+uzKUlrH49ntT18AVvj1sc3YGjUT/Mt2Dxawa8ArcA7bCQIpvfwAYu22vEG/No/5RvPdA7g+AelLrPwzy+LtkLPhnpIxH14m4EYq8eeMHbPEPNm6G7Nv9B4jcFPZ8bJj0SEjP3MPgQdKTqqEoy2v6G32P/Y6dxOv04AxnoAeq+GILvUavtYCBXm+BaIhuodcfrN5B/V2EYMCPh+SxavjGyPwV0x4CJgUPGT0mQaODGBACIJZGsMXwAD0LGXx7l3CdAcKMIKI+f5CepWeD0BvyU/GcdBxPF8SwejC6LGZmAURFdsSWKR5HyHld2kbdIZO1Ixx+bnnzU7n5+blPNV9jnUDWhP2tC68tbN3PVIldsQPxSAcSpjOav7Q05uXn5zW2LLvDXn9B6syscPy9iDLEMmSrJz6nYuWMipukjM0AH8JkGS+XFyMRkzSCH7KD/hwm172SAyZYumHlefr5AddrtA0O0TnwaVZxcRY9Bfukn9Gf05N1r9DV9MoBsJ1f+ZrqUvtPHizJAntWybv7hmqLt6QLuK6ZS9Fqi1jO5rDoWPZXXII5Tgajg53cIXCjDCGIcYrRIY2n6+mXOa/W0bdhau3ryiEYe2FV/5oeaIYK/5w5frCyll6/cYO8DiNhw6t1MBWmznt91QX62UF1N7l0eHBZTRGpKaqpKVIPF9UcIzmReud9TSY75+K899GHbBu6wjoR7RKKZVYiYxSPf5/2wJT5e3NAhmUbVn5KLx1Ujg0+BGvpAIh0DezInTkzF37KVocxrKU3r1+XLtAe2lO3l66kfQfB/unKY+q8N375Ru8bc4pJXfEcESU95q+p8ZNZRTWH1d9FzvUdYXk5rLkcdkEisoKKVHQW/b3GEx6tPaYcoJfOr9wAbSBnv1IHpep0OExr4LPMkpJM+j7sly7UHkOzXjoAZljHCGiyegtNlwljM0v+c19ET9Pvst09a2Mtgcf5/ZSzYO5h1156+eyydfAsxGa9XAuF6vzjh6CssLq6ECysperXX0sX5h5ZdpZe3guxsGIPEtHk/aqXX1hVqP5HYVVVISkrrNqvXorIc+5Ou91Hnr/LcD2afi6eX7UBloOcs7cOpqgGaNfs1g7bNbs9z6wASaylN69d0/TFTIz6Ws8+oGV3mE2612wRTHKcVUbhjKadebloMc+dyXgMVtVK6BwMB/+mVW09igdRBWaRtNQX59d/VD//xdQ0TCiYNj1KT9sq6Wdu5WTbqk3qDXyDaLa1fv621LS01G3z61sD6lH8lAxDLicV921s6Bf92JOYvzNYCL1khbqBXEFUzC521N5NyzNaQIWhjyFyDoBIVrAjmv2UEaLlI+c6zw1jmVIPLLLZZUTj6GxGHW+mq1tgHXR2D85p4Q934+jLbtjVLcyCdS10NVzpHqxp4Q/hK7WopY/NRGx9HGsPGdFjOjcpjBnGYMVqY/4eqT5khWEHWUup2A/pTw7pdWgsWft7ETUERL96nRg0HNFPmCYba6pylECaExX89A9WLUOVB4oKLu/o1oqSYHCgLzBUlAz8hNFDRpeSU1XT+LRmDUgPaKbYdHDn9suF/tu13nHJij0N97LfS0QmqONuyONk7zvUI6Qa0pF9f2+oABL92AT6e0U//z9YqAiWtJLU1JK0gS+1aacwamiNqK067u9ZQ8f1d4qLodMzz3uL89Z68V/Hnr++hXWUuHgw8dfi972PeTyPefu3aNNucemQ74qFuIaJnVkOu4Q+yjuwmmC1FqZpl1i4uzoPxjkpPf3Xv545tl26Rr+dOvUd+omqJzch9dOeU7f10Y64nMcKK137DccIZq2WdXtdZjbEoLSzHwiMtrjYLDxpHQW8gjMX6XFYAE2zSWVD04EGYSs9MbO6sEo20BMEAB4mpvSypsKjZ4Stgzb+c3A9/MQT2+vrBy+qvyFxLUtLlSRF/Ri2wjfZ2dus2Q8lXx4608/jnqK5OOap6NY2PSjYYnECCjiEeLJll/pbmqfeIK+ps3+MxrlEhqmTPipVP7kqlF4VhpEb6r+Q7YOJg38kJ9SHBf3NBl6+9YchfbUjb5ahLSzUM3kPHmwFAsZ5rpai0S7E5xWzZ1j+fW7zsUWP2g5NXTw52ySCTrgG0+lbw60l2Y/CB185CoA8NK+tbRKxfjy6pm5hzQRRR+cMqv1Jbiw6STivtEvt3DRcy0QEh92JlUGo2PG4tSKHl00YD6xc8CK+YPYyy3io2lN8BcSjKRzrIV6ypOAobqxViJPaT9M9Hy5szY33mp7OX/Zu89L/7Ww5vqY2Y8b0pKgoiUhG5cPDPzq8qTV/WkzUOIvXVVA96kmjcBrr3HrYC/Wn+fYP6Z7T1rqy3zknbvqma/FvVk96fNXGkuaXrdHW5JGSxZT/2I/O73v+yNWafMdzc5NdxYurHs6h86e01sLKLz9EBrg+x36rxAaED7hRnAMx7Vzu+9wabh3zG8XLQjx0ablUJzmxdErxYT3kzQSd0SSafVqF5PXgpp0OyYJ1EyNHpGUZmvK575ySzd85JSqF7IBzSAbMM04+MbE58xF3/njXOGecSaermlw2y9PsSQdytLJVr8t+wg+rR8cZYoeNxVIzNdk3Bngi8U5LAlgTFoQnzJCa5EsCgYhCaGL+qPj7TdhG31p9tej3R04N//PXxNwJvyUqwaJqRPJY98TJ5TPndmflRAkAhBfe46sfKW5wizSge08Xb7Ca/GUVs55trngkKkrUS2WPzKttaaqq+idmahugkY+W6fN0I6i3gPt/x88U4wAAeJxjYGRgYADiGU9YXsXz23xl4GZnAIFH7fO+IdMc/WBxDgYmEAUASbMKwAB4nGNgZGBgZwABjj4Ghv//OfoZGBlQgT4ARicDZAAAAHicY2BgYGAfxJijD8Fmu4EqBwCSpgKpAAAAAAAADgBoAH4AzADgAQIBQgFsAZgB7gIuAooC0AL8A2IDjAOoA+AEMASwBNoFCAVaBcAGCAYuBnAGrAb2B04HigfSCCoIcAiGCJwIyAkkCVYJiAmsCfIKIApWCsQLknicY2BkYGDQZ2hmYGcAASYg5gJCBob/YD4DABqrAdAAeJxdkE1qg0AYhl8Tk9AIoVDaVSmzahcF87PMARLIMoFAl0ZHY1BHdBJIT9AT9AQ9RQ9Qeqy+yteNMzDzfM+88w0K4BY/cNAMB6N2bUaPPBLukybCLvleeAAPj8JD+hfhMV7hC3u4wxs7OO4NzQSZcI/8Ltwnfwi75E/hAR7wJTyk/xYeY49fYQ/PztM+jbTZ7LY6OWdBJdX/pqs6NYWa+zMxa13oKrA6Uoerqi/JwtpYxZXJ1coUVmeZUWVlTjq0/tHacjmdxuL90OR8O0UEDYMNdtiSEpz5XQGqzlm30kzUdAYFFOb8R7NOZk0q2lwAyz1i7oAr1xoXvrOgtYhZx8wY5KRV269JZ5yGpmzPTjQhvY9je6vEElPOuJP3mWKnP5M3V+YAAAB4nG2ReVPbMBDF/ULi2EkDBFqO3gdHLxUzDB9IkdexBllydRD49ihO3Ckz7B/a31utZnafkkGyiXnyclxhgB0MMUKKMTLkmGCKV5hhF3vYxxwHOMRrvMERjnGCU7zFO7zHB3zEJ3zGF3zFN5zhHBe4xHf8wE/8wm8w/MEVimTYKv44XR9MSCsUjVoeHE3vjQoNsSZ4mmxZmVWPjSz7jlou6/0qKOWEJdKMtCe793/hQfqxa6XWZHMXFl56RS4TvPXSaDeoy0zUUZB109KstDK8lHo5q6Qi1hcOnqkImubPS6aqRq7mlnaEWabub4iYblba3SRmgldS0+FWdhNtt04F14JUaqkl7tcpOpJtErvNt3Bd9HRT5JWxK25Ldjvp6br4hzfFiIdSmlzTg2fSUzNrLd1LE1ynxq4OVaVoKLjzJ60UPtj1RKzHzsbjly6inVnFBS2MucviPncU7Rr7lfTxRepDs1A2j3ZHRc7PuzFYSfE3ZOd4kjwBy227hA==) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-spinner:before {
  content: "\f10a";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10b";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-hd:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-downloading {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-downloading:before {
  content: "\f10f";
}

.vjs-icon-file-download {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download:before {
  content: "\f110";
}

.vjs-icon-file-download-done {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download-done:before {
  content: "\f111";
}

.vjs-icon-file-download-off {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download-off:before {
  content: "\f112";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-share:before {
  content: "\f113";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cog:before {
  content: "\f114";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-square:before {
  content: "\f115";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f116";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-outline:before {
  content: "\f117";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f118";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f119";
}

.vjs-icon-repeat {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-repeat:before {
  content: "\f11a";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f11b";
}

.vjs-icon-replay-5, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-5:before, .video-js .vjs-skip-backward-5 .vjs-icon-placeholder:before {
  content: "\f11c";
}

.vjs-icon-replay-10, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-10:before, .video-js .vjs-skip-backward-10 .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-replay-30, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-30:before, .video-js .vjs-skip-backward-30 .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-forward-5, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-5:before, .video-js .vjs-skip-forward-5 .vjs-icon-placeholder:before {
  content: "\f11f";
}

.vjs-icon-forward-10, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-10:before, .video-js .vjs-skip-forward-10 .vjs-icon-placeholder:before {
  content: "\f120";
}

.vjs-icon-forward-30, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-30:before, .video-js .vjs-skip-forward-30 .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f122";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-next-item:before {
  content: "\f123";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-previous-item:before {
  content: "\f124";
}

.vjs-icon-shuffle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-shuffle:before {
  content: "\f125";
}

.vjs-icon-cast {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cast:before {
  content: "\f126";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f127";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f128";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-facebook:before {
  content: "\f129";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-linkedin:before {
  content: "\f12a";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-twitter:before {
  content: "\f12b";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-tumblr:before {
  content: "\f12c";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pinterest:before {
  content: "\f12d";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f12e";
}

.video-js {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

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

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  width: 100%;
  height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}

body.vjs-full-window,
body.vjs-pip-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen,
body.vjs-pip-window .video-js {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs),
body.vjs-pip-window .video-js {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
  display: block;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-pip-container .vjs-pip-text {
  position: absolute;
  bottom: 10%;
  font-size: 2em;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5em;
  text-align: center;
  width: 100%;
}

.vjs-layout-tiny.vjs-pip-container .vjs-pip-text,
.vjs-layout-x-small.vjs-pip-container .vjs-pip-text,
.vjs-layout-small.vjs-pip-container .vjs-pip-text {
  bottom: 0;
  font-size: 1.4em;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin-top: -0.81666em;
  margin-left: -1.5em;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}

.vjs-big-play-button .vjs-svg-icon {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause:not(.vjs-seeking, .vjs-scrubbing, .vjs-error) .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: #212529;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.video-js.vjs-spatial-navigation-enabled .vjs-button:focus {
  outline: 0.0625em solid white;
  box-shadow: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.vjs-menu li.vjs-selected .vjs-svg-icon,
.vjs-menu li.vjs-selected:focus .vjs-svg-icon,
.vjs-menu li.vjs-selected:hover .vjs-svg-icon,
.js-focus-visible .vjs-menu li.vjs-selected:hover .vjs-svg-icon {
  fill: #000000;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-pip-window .vjs-menu-button-popup .vjs-menu {
  left: unset;
  right: 1em;
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  width: 96%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  margin: 20px auto;
  border-radius: 30px;
}

.video-js.vjs-spatial-navigation-enabled .vjs-control-bar {
  gap: 1px;
}

.video-js:not(.vjs-controls-disabled, .vjs-using-native-controls, .vjs-error) .vjs-control-bar.vjs-lock-showing {
  display: flex !important;
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.vjs-button > .vjs-svg-icon {
  display: inline-block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder,
.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  line-height: 0.35em;
  z-index: 1;
}

.vjs-svg-icons-enabled .vjs-play-progress:before {
  content: none !important;
}

.vjs-play-progress .vjs-svg-icon {
  position: absolute;
  top: -0.35em;
  right: -0.4em;
  width: 0.9em;
  height: 0.9em;
  pointer-events: none;
  line-height: 0.15em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-scrubbing.vjs-touch-enabled .vjs-progress-control .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display,
.video-js.vjs-touch-enabled:not(.vjs-scrubbing) .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari, and Chrome 53 */
  -webkit-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  -moz-user-select: none;
  user-select: none;
  background-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  background-color: rgba(114.9141509434, 132.7028301887, 159.3858490566, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js.vjs-spatial-navigation-enabled .vjs-slider:focus {
  outline: 0.0625em solid white;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-svg-icons-enabled .vjs-volume-level:before {
  content: none;
}

.vjs-volume-level .vjs-svg-icon {
  position: absolute;
  width: 0.9em;
  height: 0.9em;
  pointer-events: none;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  line-height: 0.35em;
  right: -0.5em;
}

.vjs-slider-horizontal .vjs-volume-level .vjs-svg-icon {
  right: -0.3em;
  transform: translateY(-50%);
}

.vjs-slider-vertical .vjs-volume-level .vjs-svg-icon {
  top: -0.55em;
  transform: translateX(-50%);
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster,
.vjs-pip-container.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-svg-icons-enabled .vjs-seek-to-live-control {
  line-height: 0;
}

.vjs-seek-to-live-control .vjs-svg-icon {
  width: 1em;
  height: 1em;
  pointer-events: none;
  fill: #888888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-svg-icon {
  fill: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control,
.vjs-live .vjs-time-divider,
.video-js .vjs-current-time,
.video-js .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-normalise-time-controls:not(.vjs-live) .vjs-time-control {
  display: flex;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.vjs-error .vjs-text-track-display {
  display: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js.vjs-force-center-align-cues .vjs-text-track-cue {
  text-align: center !important;
  width: 80% !important;
}

@supports not (inset: 10px) {
  .video-js .vjs-text-track-display > div {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control,
.vjs-pip-window .vjs-picture-in-picture-control {
  display: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-fullscreen-control,
.vjs-pip-window .vjs-fullscreen-control {
  display: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  text-align: left;
  border: 0.6em solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-error .vjs-loading-spinner {
  display: none;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: rgb(255, 255, 255);
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: rgb(255, 255, 255);
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  }
  20% {
    border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  }
  100% {
    border-top-color: rgb(114.9141509434, 132.7028301887, 159.3858490566);
  }
}
.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}

.vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-svg-icon {
  width: 1.5em;
  height: 1.5em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10c";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-descriptions-menu-item .vjs-menu-item-text .vjs-icon-placeholder,
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-descriptions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before,
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f12e";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}

.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}

.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-spatial-navigation-enabled .vjs-modal-dialog.vjs-text-track-settings {
  height: 80%;
}

.vjs-error .vjs-text-track-settings {
  display: none;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-text-track-settings select {
  font-size: inherit;
}

.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 10px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
  padding: 0 0.6em 0.8em;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
}

.vjs-text-track-settings .vjs-label {
  margin: 0 0.5em 0.5em 0;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, rgb(114.9141509434, 132.7028301887, 159.3858490566) 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, rgb(114.9141509434, 132.7028301887, 159.3858490566) 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

.vjs-title-bar {
  background: rgba(0, 0, 0, 0.9);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
  font-size: 1.2em;
  line-height: 1.5;
  transition: opacity 0.1s;
  padding: 0.666em 1.333em 4em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.vjs-error .vjs-title-bar {
  display: none;
}

.vjs-title-bar-title,
.vjs-title-bar-description {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vjs-title-bar-title {
  font-weight: bold;
  margin-bottom: 0.333em;
}

.vjs-playing.vjs-user-inactive .vjs-title-bar {
  opacity: 0;
  transition: opacity 1s;
}

.video-js .vjs-skip-forward-5 {
  cursor: pointer;
}

.video-js .vjs-skip-forward-10 {
  cursor: pointer;
}

.video-js .vjs-skip-forward-30 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-5 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-10 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-30 {
  cursor: pointer;
}

.video-js .vjs-transient-button {
  position: absolute;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(50, 50, 50, 0.5);
  cursor: pointer;
  opacity: 1;
  transition: opacity 1s;
}

.video-js:not(.vjs-has-started) .vjs-transient-button {
  display: none;
}

.video-js.not-hover .vjs-transient-button:not(.force-display),
.video-js.vjs-user-inactive .vjs-transient-button:not(.force-display) {
  opacity: 0;
}

.video-js .vjs-transient-button span {
  padding: 0 0.5em;
}

.video-js .vjs-transient-button.vjs-left {
  left: 1em;
}

.video-js .vjs-transient-button.vjs-right {
  right: 1em;
}

.video-js .vjs-transient-button.vjs-top {
  top: 1em;
}

.video-js .vjs-transient-button.vjs-near-top {
  top: 4em;
}

.video-js .vjs-transient-button.vjs-bottom {
  bottom: 4em;
}

.video-js .vjs-transient-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}

.green-cards {
  color: #e1f2e8;
  background-color: #096349;
  border-radius: 30px;
}
.green-cards.small-card {
  min-height: 170px;
  padding: 20px;
}
@media (min-width: 720px) {
  .green-cards.small-card {
    min-height: 196px;
    padding: 30px;
  }
}
@media (min-width: 900px) {
  .green-cards.small-card {
    min-height: 186px;
  }
}
.green-cards.medium-card {
  padding: 20px;
  width: 100%;
}
@media (min-width: 720px) {
  .green-cards.medium-card {
    padding: 30px;
  }
}
.green-cards.medium-card.mb-red:last-child {
  margin-bottom: 0;
}
.green-cards.why:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .green-cards.why:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media (min-width: 900px) {
  .green-cards.history:not(:first-of-type) {
    margin-top: 30px;
  }
}
.green-cards strong {
  color: #9fe870;
}

.white-cards {
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-radius: 30px;
  border-color: rgba(9, 99, 73, 0.2);
}
.white-cards.brand-card {
  width: 220px;
  height: 132px;
  padding: 30px;
}
@media (min-width: 900px) {
  .white-cards.brand-card {
    width: 303px;
    height: 154px;
    padding: 30px 52px;
  }
}
.white-cards.numbers {
  width: 100%;
  height: auto;
  padding: 19px 20px;
}
@media (min-width: 720px) {
  .white-cards.numbers {
    padding: 29px 30px 27px;
    margin-top: 0;
  }
  .white-cards.numbers .num-display {
    padding-top: 6px;
  }
}
@media (min-width: 900px) {
  .white-cards.numbers {
    padding: 30px 30px 28px;
    --bs-gutter-x: 0;
  }
  .white-cards.numbers .num-display {
    padding-top: 0px;
  }
}
.white-cards.numbers p {
  padding-top: 10px;
}
@media (min-width: 720px) {
  .white-cards.numbers p {
    padding-top: 0px;
    padding-left: 13px;
  }
}
@media (min-width: 900px) {
  .white-cards.numbers p {
    padding-top: 10px;
    padding-left: unset;
    --bs-gutter-x: 0;
  }
}

.vacancy-cards {
  row-gap: 20px;
}
@media (min-width: 720px) {
  .vacancy-cards {
    row-gap: 30px;
  }
}

.gray-cards {
  background-color: #f6f6f6;
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(9, 99, 73, 0.2);
}
.gray-cards.medium {
  padding: 20px;
  transition: all 300ms;
}
@media (min-width: 720px) {
  .gray-cards.medium {
    padding: 30px;
  }
}
.gray-cards.medium:hover {
  background-color: #e1f2e8;
  transition: all 300ms;
}
.gray-cards.medium:hover .light-green-tag {
  background-color: rgba(9, 99, 73, 0.1);
  transition: all 300ms;
}
.gray-cards.right {
  border-radius: 0 0 30px 30px;
  padding: 19px;
  padding-top: 20px;
  border-top: none;
}
.gray-cards.right h3 {
  margin-bottom: 30px;
}
@media (min-width: 720px) {
  .gray-cards.right h3 {
    margin-bottom: 40px;
  }
}
@media (min-width: 720px) {
  .gray-cards.right {
    aspect-ratio: 0;
    padding: 30px;
    padding-bottom: 29px;
  }
}
@media (min-width: 900px) {
  .gray-cards.right {
    border-radius: 0 30px 30px 0;
    border-top: 1px solid rgba(9, 99, 73, 0.2);
    border-left: none;
    border-right: 1px solid rgba(9, 99, 73, 0.2);
  }
}
.gray-cards.maplist {
  padding: 14.5px 19px 19px;
  height: 100%;
}
@media (max-width: 899.98px) {
  .gray-cards.maplist {
    background-color: #096349;
    color: #f6f6f6;
    aspect-ratio: 0;
  }
}
.gray-cards.maplist li {
  padding-bottom: 7px;
  padding-top: 4px;
}
.gray-cards.maplist li:first-of-type {
  padding-bottom: 10px;
}
.gray-cards.maplist li:not(:first-of-type) {
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.gray-cards.maplist li:not(:first-of-type) div:first-of-type {
  text-align: left;
}
.gray-cards.maplist li:not(:first-of-type) div:nth-child(3) {
  text-align: right;
}
@media (hover: hover) {
  .gray-cards.maplist li:not(:first-of-type):not(.active):hover {
    color: #1b9a55;
  }
}
.gray-cards.maplist li:not(:last-of-type) {
  border: 0;
  border-bottom: 1px solid rgba(9, 99, 73, 0.2);
}
@media (max-width: 899.98px) {
  .gray-cards.maplist li:not(:last-of-type) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.gray-cards.maplist li svg {
  transform: translateY(-3px);
}
.gray-cards.maplist li.active {
  color: #fb5a43;
  pointer-events: none;
  cursor: auto;
}
.gray-cards.maplist .description {
  padding-top: 15px;
  text-align: left;
}
@media (max-width: 719.98px) {
  .gray-cards.maplist {
    margin-bottom: 20px;
  }
}
@media (min-width: 900px) {
  .gray-cards.maplist {
    transform: translateX(9px);
  }
}
.gray-cards.vacancies {
  min-height: 262px;
}
@media (min-width: 720px) {
  .gray-cards.vacancies {
    min-height: 315px;
  }
}
@media (min-width: 900px) {
  .gray-cards.vacancies {
    min-height: 320px;
  }
}
.gray-cards.vacancies .arrow-icon {
  transition: transform 0.1s ease-in-out;
}
@media (hover: hover) {
  .gray-cards.vacancies:hover .arrow-icon {
    transform: rotate(-45deg);
  }
}

.image-card {
  border-radius: 30px;
  color: #ffffff;
  overflow: hidden;
  aspect-ratio: 1/1.71;
}
.image-card .inner-card {
  color: #e1f2e8;
  line-height: 23px;
  background-color: #096349;
  padding: 20px;
  border-radius: 20px 20px 0 20px;
  overflow: hidden;
  -webkit-mask: url('data:image/svg+xml,<svg width="584" height="294" viewBox="0 0 584 294" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M584 1.50259L0 0V294H527.645C532.991 294 538.115 291.86 541.872 288.056L578.227 251.259C581.926 247.516 584 242.465 584 237.203V1.50259Z" fill="%23F6F6F6"/></svg>') no-repeat center/contain;
  mask: url('data:image/svg+xml,<svg width="584" height="294" viewBox="0 0 584 294" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M584 1.50259L0 0V294H527.645C532.991 294 538.115 291.86 541.872 288.056L578.227 251.259C581.926 247.516 584 242.465 584 237.203V1.50259Z" fill="%23F6F6F6"/></svg>');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right bottom;
  mask-position: right bottom;
}
.image-card .inner-card p {
  padding-top: 15px;
}
.image-card .inner-card h2 p {
  padding-top: 0;
}
.image-card .inner-card .h1 strong {
  color: #9fe870;
}
@media (min-width: 720px) {
  .image-card .inner-card {
    padding: 30px;
  }
  .image-card .inner-card p {
    padding-top: 29px;
  }
}
@media (min-width: 720px) {
  .image-card {
    aspect-ratio: 1/1.246;
  }
}
@media (min-width: 900px) {
  .image-card {
    aspect-ratio: 1.4/1;
  }
}
@media (min-width: 1200px) {
  .image-card {
    aspect-ratio: 1.95/1;
  }
}
@media (max-width: 899.98px) {
  .image-card.connect {
    aspect-ratio: auto;
  }
  .image-card.connect img {
    border-radius: 30px;
    overflow: hidden;
  }
}
@media (max-width: 899.98px) and (max-width: 719.98px) {
  .image-card.connect img {
    aspect-ratio: 1/1.16;
  }
}
@media (max-width: 899.98px) and (min-width: 720px) and (max-width: 899.98px) {
  .image-card.connect img {
    aspect-ratio: 1.3/1;
  }
}
@media (max-width: 899.98px) {
  .image-card.connect figcaption {
    padding-top: 10px;
  }
}

figure.image-card img {
  transition: scale 500ms ease-in-out, filter 500ms ease-in-out !important;
}
@media (min-width: 900px) {
  figure.image-card:hover img {
    scale: 1.05 !important;
    transition: scale 500ms ease-in-out, filter 500ms ease-in-out;
  }
}
figure.image-card:hover img.blur {
  scale: 1.05 !important;
  transition: scale 500ms ease-in-out, filter 500ms ease-in-out;
  filter: blur(5px);
}

.marquee-container {
  width: 100%;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 10%, hsl(0, 0%, 0%) 90%, hsla(0, 0%, 0%, 0));
}
.marquee-container .marquee-content {
  animation: marquee-scroll 20s infinite linear;
  gap: 30px;
  padding-right: 30px;
}

.vertical-marquee-text {
  padding: 0 22px 0px 45px;
}
@media (min-width: 720px) {
  .vertical-marquee-text {
    padding: 0 15px 40px 54px;
  }
}
@media (min-width: 900px) {
  .vertical-marquee-text {
    padding: 0 0 50px 0;
  }
}
.vertical-marquee-text .large-card-icon {
  margin-right: 7px;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .vertical-marquee-text .large-card-icon {
    margin-right: 24px;
    margin-bottom: 0;
  }
}
@media (min-width: 900px) {
  .vertical-marquee-text .large-card-icon {
    margin-right: 0;
  }
}
.vertical-marquee-container {
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  padding: 30px 0 59px;
  gap: 15px;
}
@media (min-width: 720px) {
  .vertical-marquee-container {
    padding: 40px 0 80px;
    gap: 20px;
  }
}
@media (min-width: 900px) {
  .vertical-marquee-container {
    display: block;
    padding: 0;
  }
}
.vertical-marquee-content {
  display: flex;
  flex-wrap: nowrap;
  animation: marquee-scroll 30s infinite linear;
  -webkit-animation: marquee-scroll 30s linear infinite;
  will-change: transform;
  gap: 15px;
}
@media (min-width: 720px) {
  .vertical-marquee-content {
    gap: 20px;
  }
}
@media (min-width: 900px) {
  .vertical-marquee-content {
    flex-direction: column;
    gap: 0;
    animation: scroll-up 60s infinite linear;
    -webkit-animation: scroll-up 60s linear infinite;
  }
}
.vertical-marquee-content.reversed {
  animation: scroll-down 60s infinite linear;
  -webkit-animation: scroll-down 60s linear infinite;
}

.nav-pills {
  gap: 8px;
}
.nav-pills .nav-link {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .nav-pills .nav-link {
    font-size: 14px;
    line-height: 17px;
  }
}
.nav-pills .nav-link {
  padding: 6px 12px 4.5px;
  border-radius: 20px;
  border: 1px solid #096349;
  color: #096349;
  background-color: #ffffff;
}
.nav-pills .nav-link.active {
  background-color: #096349;
  color: #ffffff;
}
@media (min-width: 900px) {
  .nav-pills .nav-link {
    padding: 6px 12px;
  }
}
@media (hover: hover) {
  .nav-pills .nav-link:hover:not(.active) {
    background-color: #9fe870;
    border-color: #9fe870;
  }
}

.map-container {
  border-radius: 30px;
  overflow: clip;
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .map-container {
    margin-bottom: 30px;
  }
}
@media (min-width: 900px) {
  .map-container {
    margin-bottom: 0;
  }
}
.map-container:focus-visible {
  outline: none;
}

.mapboxgl-ctrl-logo {
  display: none !important;
}

.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
  display: none;
}

.mapboxgl-map {
  aspect-ratio: 1/1.273;
  border-radius: 0;
}
@media (min-width: 720px) {
  .mapboxgl-map {
    aspect-ratio: 1.015/1;
  }
}
@media (min-width: 900px) {
  .mapboxgl-map {
    aspect-ratio: 1.382/1;
  }
}
.mapboxgl-map:focus-visible {
  outline: none;
}

.marker-m {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #096349;
  position: relative;
}
.marker-m::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  display: block;
  border-radius: 100%;
}
.marker-arrow {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='-10 -10 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-6-6L0 0L-6 6' stroke='%23096349' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform-origin: center center;
}
.marker-popup-label {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .marker-popup-label {
    font-size: 14px;
    line-height: 17px;
  }
}
.marker-popup-label {
  color: #ffffff;
  background-color: #096349;
  border-radius: 25px;
  padding: 2px 5px;
}

.mapboxgl-popup-tip {
  display: none !important;
}
.mapboxgl-popup-content {
  background-color: transparent !important;
  box-shadow: 0 0 0 !important;
  padding: 0 !important;
}

.accordion-item {
  position: relative;
  padding: 19px 19px 18px;
  background-color: #f6f6f6;
  border-radius: 30px;
  border: 1px solid rgba(9, 99, 73, 0.2);
  transition: all 300ms ease-in-out;
}
.accordion-item:not(:last-of-type) {
  margin-bottom: 10px;
}
@media (min-width: 720px) {
  .accordion-item {
    padding: 19px 22px 19px 16px;
  }
}
@media (min-width: 900px) {
  .accordion-item {
    padding: 19px;
    padding-bottom: 19px;
  }
}
.accordion-item:hover {
  background-color: #e1f2e8;
  transition: all 300ms ease-in-out;
}
.accordion-item:hover button::after {
  transition: all 300ms ease-in-out;
}
.accordion-button {
  font-family: "Azeret Mono Regular", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 900px) {
  .accordion-button {
    font-size: 14px;
    line-height: 17px;
  }
}
.accordion-button {
  position: static;
  color: #096349;
  background-color: transparent;
  gap: 10px;
  padding: 0;
}
.accordion-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.accordion-button:focus {
  outline: 0;
  border: 0;
}
.accordion-button::after {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 1px solid rgba(9, 99, 73, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.21489 0.785114V15.2149M8.21489 15.2149L1 8M8.21489 15.2149L15.4298 8" stroke="%23096349" stroke-width="1.5"/></svg>');
  background-color: #f6f6f6;
}
@media (min-width: 900px) {
  .accordion-button::after {
    width: 40px;
    height: 40px;
  }
}
.accordion-body {
  position: relative;
  z-index: 2;
  padding-top: 8px;
  padding-bottom: 0px;
}
@media (min-width: 720px) {
  .accordion-body {
    padding-bottom: 0px;
  }
}
@media (min-width: 900px) {
  .accordion-body {
    padding-top: 3px;
    padding-bottom: 0px;
  }
}
.accordion-body .row {
  padding: 0;
}

.accordion-item:not(:has(.accordion-collapse.show)) {
  border-radius: 50px;
}

.accordion-item:has(.collapsing) {
  border-radius: 30px !important;
}

.pagination {
  gap: 10px;
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .pagination {
    gap: 5px;
  }
}
.pagination .page-numbers {
  background-color: transparent;
  border: 1px solid rgba(9, 99, 73, 0.2);
  border-radius: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
}
@media (min-width: 900px) {
  .pagination .page-numbers {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }
}
.pagination .page-numbers.current {
  background-color: #096349;
  color: #ffffff;
}
@media (hover: hover) {
  .pagination .page-numbers:hover:not(.current) {
    background-color: transparent;
    border-color: rgba(9, 99, 73, 0.8);
    transition: all 200ms;
  }
  .pagination .page-numbers:hover:not(.current).next {
    background-color: #096349;
  }
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  background-color: #fb5a43;
  border-color: #fb5a43;
}
.pagination .page-numbers.next svg, .pagination .page-numbers.prev svg {
  transform: translateY(-1px);
}

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mx-reset {
  margin: 0;
}

.btn,
button:focus {
  outline: 0;
  appearance: none;
}

.ul-reset {
  list-style: none;
  padding: 0;
}
.ul-reset * {
  text-decoration: none !important;
}

input.text,
input[type=text],
input[type=date],
input[type=tel],
input[type=email],
input[type=button],
input[type=submit],
.input-checkbox,
textarea {
  -webkit-appearance: none;
}

[class^=col] img {
  max-width: 100%;
}

::placeholder {
  color: #096349;
}

.h1,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin-bottom: 0;
}

#__bs_notify__ {
  top: 95% !important;
  right: 10px !important;
  border-radius: 15px !important;
  height: 60px !important;
}

a {
  color: inherit;
}

/*# sourceMappingURL=style.css.map */
