@charset "UTF-8";
/*=============================================
=            BEMIT - SETTINGS            =
=============================================*/
@import url("/assets/fonts/Gotham-Bold.woff2");
@import url("/assets/fonts/Gotham-Medium.woff2");
@import url("/assets/fonts/Gotham-Book.woff2");
@view-transition {
  navigation: auto;
}
::view-transition-group(*) {
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

::view-transition-old(root) {
  animation: slide-out-to-left 0.5s ease-in-out forwards;
  -webkit-animation: slide-out-to-left 0.5s ease-in-out forwards;
}

::view-transition-new(root) {
  animation: slide-in-from-right 0.5s ease-in-out forwards;
  -webkit-animation: slide-in-from-right 0.5s ease-in-out forwards;
}

@keyframes slide-out-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide-in-from-right {
  from {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
  }
  to {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
/*=====  End of BEMIT - SETTINGS  ======*/
/*=============================================
=            Section BEMIT - TOOLS            =
=============================================*/
/*=====  End of Section BEMIT - TOOLS  ======*/
/*=============================================
=            Section BEMIT - GENERIC            =
=============================================*/
:root {
  font-size: 100%;
  font-family: system-ui, sans-serif;
  scroll-behavior: smooth;
  /* (Opcional) Aquí definimos las custom properties */
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before, *::after {
  display: block;
}

img, picture, video, iframe, figure, canvas {
  max-width: 100%;
  width: 100%;
  display: block;
  height: initial;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
}

li, menu, summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em, mark, del, pre, code {
  font: inherit;
  line-height: 1em;
  color: inherit;
  text-decoration: none;
  text-wrap: pretty;
}

mark {
  background-color: transparent;
}

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

form, input, textarea, select, button, label {
  font: inherit;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
}

textarea {
  white-space: pre-wrap;
}

::placeholder {
  color: unset;
}

button, label {
  cursor: pointer;
}

table, tr, td, th, thead, tbody, tfoot {
  border-collapse: collapse;
  border-spacing: 0;
  font: inherit;
}

svg {
  width: 100%;
  display: block;
  height: initial;
  fill: currentColor;
}

p svg {
  display: inline;
  width: initial;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

body {
  min-height: 100vh;
  color: inherit;
  line-height: 1.5em;
  hyphens: auto;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*=====  End of Section BEMIT - GENERIC  ======*/
/*=============================================
=            Section BEMIT - OBJECTS            =
=============================================*/
/*------------------------------------*\
  #OBJECTS
  Patrones de diseño ára estructurar el layout
\*------------------------------------*/
.o-w-100 {
  width: 100%;
}

.o-h-100 {
  height: 100%;
}

.o-h-90 {
  height: 90% !important;
}

.o-vh-100 {
  height: 100vh;
}

/* Display none */
.o-display-none {
  display: none;
}

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

/* Sistema Grid */
.container {
  width: 80%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media (max-width: 576px) {
  .container {
    width: 90%;
  }
  .o-vh-sm-auto {
    height: auto !important;
  }
  .o-h-90 {
    height: auto;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .o-vh-md-auto {
    height: auto !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1340px;
  }
}
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Columnas */
[class*=col-] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Grid para móviles (por defecto) */
@media (max-width: 767px) {
  .col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* Display none */
  .o-display-none-sm {
    display: none !important;
  }
  /* Display block */
  .o-display-block-sm {
    display: block !important;
  }
  /*  */
}
/* Grid para tablets (md) */
@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* Display none */
  .o-display-none-md {
    display: none !important;
  }
  /* Display block */
  .o-display-block-md {
    display: block !important;
  }
}
/* Grid para escritorio (lg) */
@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* Display none */
  .o-display-none-lg {
    display: none !important;
  }
  /* Display block */
  .o-display-block-lg {
    display: block !important;
  }
}
/*=====  End of Grid  ======*/
/*=============================================
=            Utilidades Flexbox            =
=============================================*/
/* Display Flex */
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

/* Flex Direction */
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

/* Justify Content */
.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

/* Align Items */
.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

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

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

/* Flex Wrap */
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

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

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

/* Align Content */
.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

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

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

/* Flex Grow */
.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

/* Flex Shrink */
.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

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

/* Responsive Flexbox Utilities */
@media (min-width: 576px) {
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-column-lg-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
}
/* Gap */
.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;
}

/*=====  End of Flexbox  ======*/
/* Fuentes */
body {
  font-family: "Gotham Book", sans-serif;
  background-color: black;
}

/*=====  End of Section BEMIT - OBJECTS  ======*/
/*=============================================
=            Section BEMIT - COMPONENT            =
=============================================*/
.c-header {
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(35, 35, 35, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  position: fixed;
  z-index: 1103;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  /* prevent body scroll when menu open (mobile) */
}
.c-header-open-menu {
  display: none;
  cursor: pointer;
}
.c-header-close-menu {
  display: none;
}
.c-header-navbar {
  max-width: 1320px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.c-header-img {
  height: 60px;
}
.c-header-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 0 !important;
  margin: 0;
}
.c-header-menu-item {
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.c-header-menu-item ::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s;
  margin-bottom: 4px;
  margin: 10px 0;
}
.c-header-menu-item:hover {
  color: #FFD700;
}
.c-header-menu-item:hover ::after {
  width: 100%;
}
.c-header .active {
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.c-header .active ::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s;
  margin-bottom: 4px;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .c-header body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .c-header .c-header-open-menu {
    display: block;
  }
  .c-header .c-header-close-menu {
    display: block;
    position: fixed;
    top: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1003;
  }
  .c-header .c-header-menu {
    /* off-screen by default for smooth slide-in */
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
    will-change: transform;
    flex-direction: column;
    align-items: first baseline;
    background: rgba(35, 35, 35, 0.45);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 230px;
    text-align: center;
    z-index: 1002;
    /* above overlay */
    overflow-y: auto;
    padding-top: 100px !important;
    pointer-events: none;
  }
  .c-header .c-header-menu-item {
    padding: 10px 30px;
    font-size: 20px;
  }
  .c-header .c-header-menu.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
}

/* overlay element (applies to the div inserted into <body>) */
@media (max-width: 768px) {
  .c-header-navbar {
    padding: 10px;
  }
  .c-header-img {
    height: 50px;
  }
  .c-header-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* slightly reduced to make blur visible */
    z-index: 1001; /* above page content, below menu (menu z-index:1002) */
    opacity: 0;
    transition: opacity 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
    pointer-events: none;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    will-change: opacity, backdrop-filter;
  }
  .c-header-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}
.c-hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
.c-hero::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-color: rgba(29, 29, 29, 0.55);
  z-index: 100;
}
.c-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}
.c-hero-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  z-index: 101;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}
/* === EFECTO DE ROTACIÓN 3D CON FULLPAGE.JS === */
.rotating-card {
  opacity: 0;
  transform: perspective(1000px) rotateY(-45deg) rotateX(10deg);
  transition: all 0.5s ease-out;
  /* Evitar que las transformaciones afecten el layout */
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  /* Contener el efecto dentro del elemento */
  overflow: hidden;
}

.rotating-card.active {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  background: linear-gradient(181deg, rgba(55, 56, 56, 0.18) 48.76%, rgba(152, 152, 152, 0.16) 99.28%);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(20px);
  -moz-backdrop-filter: blur(50px); /* Firefox */
  will-change: opacity, backdrop-filter;
  position: relative;
  z-index: 10; /* Aumentado para estar sobre background animado */
  /* Evitar que el backdrop-filter afecte el scroll */
  transform: translateZ(0); /* Forzar hardware acceleration sin afectar layout */
  /* Fallback para Firefox - mayor opacidad del gradiente */
}
@supports not (backdrop-filter: blur(20px)) {
  .rotating-card.active {
    background: linear-gradient(181deg, rgba(55, 56, 56, 0.38) 48.76%, rgba(152, 152, 152, 0.32) 99.28%);
  }
}

/* === FIN EFECTO DE ROTACIÓN 3D === */
.btn-container {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

button {
  position: relative;
  color: white;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

button:active {
  transform: scale(1);
}

.layer1 {
  isolation: isolate;
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  filter: url(#glass-distortion);
  transition: backdrop-filter 0.2s ease, opacity 0.2s ease;
}

button:hover .layer1 {
  opacity: 0.9;
}

.layer2 {
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  border-radius: 99px;
  box-shadow: inset 1px 1px 0px 0 rgba(192, 228, 233, 0.7), inset -3px 0px 10px 0 rgba(192, 228, 233, 0.7), inset 3px 2px 3px 0 rgba(192, 228, 233, 0.7), inset -1px -1px 3px 1px rgba(255, 255, 255, 0.5), inset -1px -5px 10px -1px rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.18s ease;
}

button:hover .layer2 {
  box-shadow: inset 1px 1px 20px 0 rgba(192, 228, 233, 0.85), inset -3px 0 12px 0 rgba(192, 228, 233, 0.85), inset 4px 3px 4px 0 rgba(192, 228, 233, 0.8), inset -1px -2px 4px 1px rgba(255, 255, 255, 0.65), inset -2px -7px 12px -1px rgba(255, 255, 255, 0.6);
}

.span-text {
  position: relative;
}

.tabs-header {
  display: flex;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
}

.tab-button {
  flex: 1;
  background: transparent;
  border: none;
  color: #F4F4F4;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
  text-align: center;
}

.tab-button.active {
  background-color: rgba(255, 255, 255, 0.062745098);
  color: #F4F4F4;
  border-bottom: 3px solid #0EF7EA;
}

.tab-button:hover:not(.active) {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  text-align: center;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.car-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.car-info {
  color: #333;
  text-align: center;
}

.car-name {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.car-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.car-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.spec-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.spec-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .tabs-header {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tabs-header::-webkit-scrollbar {
    display: none;
  }
  .tab-button {
    font-size: 14px;
    padding: 12px 20px;
    white-space: nowrap;
    min-width: 120px;
  }
  .car-image {
    height: 200px;
    margin-bottom: 20px;
  }
  .car-name {
    font-size: 24px;
  }
  .car-description {
    font-size: 14px;
    padding: 0 10px;
  }
  .car-specs {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }
  .spec-item {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .tab-button {
    font-size: 12px;
    padding: 10px 15px;
    min-width: 100px;
  }
  .car-name {
    font-size: 20px;
  }
  .car-description {
    font-size: 13px;
  }
  .spec-value {
    font-size: 16px;
  }
}
.table {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  overflow-x: auto;
}
.table__table {
  width: 100%;
  max-width: 900px;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}
.table__col {
  vertical-align: top;
  padding: 10px;
  font-size: 1rem;
  color: #222;
  min-width: 180px;
  line-height: 1.6;
}
.table__row:nth-child(odd) {
  background: rgba(217, 217, 217, 0.2);
}
@media (max-width: 991px) {
  .table__table {
    max-width: 100%;
  }
  .table__col {
    min-width: 140px;
    font-size: 0.95rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .table__table, .table__col {
    width: 100%;
    min-width: unset;
    padding-right: 0;
  }
  .table__row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .table__col {
    margin-bottom: 0.5rem;
  }
}

/*=====  End of Section BEMIT - COMPONENT  ======*/
/*=============================================
=            Section BEMIT - UTILITIES - HELPERS            =
=============================================*/
/*------------------------------------*\
  #UTILITIES
  Clases de utilidad y helpers
\*------------------------------------*/
/* Utilidades de listas  */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/*  */
.u-overflow-hidden {
  overflow: hidden !important;
}

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

/* Utilidades de Texto */
.u-text-left {
  text-align: left !important;
}

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

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

.u-text-bold {
  font-weight: bold !important;
}

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

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

/* Utilidades de Color */
.u-text-primary {
  color: #F9AE00 !important;
}

.u-text-neutro {
  color: #F4F4F4 !important;
}

.u-text-grey-ligth {
  color: #B3B3B3 !important;
}

/* Utilidades de Fondo */
.bg-primary {
  background-color: #F9AE00 !important;
}

.bg-secondary {
  background-color: #207FA4 !important;
}

.bg-tertiary {
  background-color: #0EF7EA !important;
}

.bg-neutral {
  background-color: #F4F4F4 !important;
}

@media screen and (max-width: 768px) {
  .bg-img-header_col {
    background-image: url("/img/header-img-col_sm.webp") !important;
  }
}
/* Utilidades Tipográficas */
.text-base {
  font-size: clamp(16px, 1.5vw + 0.5rem, 20px);
  line-height: 1.25;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
}

.text-small {
  font-size: clamp(12px, 1vw + 0.5rem, 16px);
  line-height: 1.4;
}

.text-xs {
  font-size: clamp(10px, 0.8vw + 0.5rem, 12px);
  line-height: 1.4;
}

/* Utilidades adicionales de texto */
.font-weight-light {
  font-weight: 300 !important;
}

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

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

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

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

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

/* Line Heights */
.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;
}

/* Utilidades de Imagen */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.img-ratio::before {
  content: "";
  display: block;
  padding-top: 100%; /* 1:1 Aspect Ratio */
}

.ico-lg {
  width: 3.5rem;
  height: 3.5rem;
}

/* Tamaños de texto */
.u-h1 {
  font-family: "Gotham", sans-serif;
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  line-height: 1.1;
}

.u-h2 {
  font-family: "Gotham", sans-serif;
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  line-height: 1.15;
}

.u-h3 {
  font-family: "Gotham", sans-serif;
  font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
  line-height: 1.2;
}

.u-h4 {
  font-family: "Gotham", sans-serif;
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);
  line-height: 1.25;
}

.u-h5 {
  font-family: "Gotham", sans-serif;
  font-size: clamp(1.25rem, 2vw + 1rem, 1.5rem);
  line-height: 1.3;
}

.u-h6 {
  font-size: clamp(1rem, 1.5vw + 1rem, 1.25rem);
  line-height: 1.35;
}

/* Utilidades de border */
.u-border-radius-1 {
  border-radius: 1rem !important;
  -webkit-border-radius: 1rem !important;
  -moz-border-radius: 1rem !important;
  -ms-border-radius: 1rem !important;
  -o-border-radius: 1rem !important;
}

.u-border-radius-2 {
  border-radius: 2rem !important;
  -webkit-border-radius: 2rem !important;
  -moz-border-radius: 2rem !important;
  -ms-border-radius: 2rem !important;
  -o-border-radius: 2rem !important;
}

/* Posiciones */
.u-position-relative {
  position: relative !important;
}

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

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

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

/* Utilidades de background */
.u-bg-01 {
  position: relative;
  overflow: hidden;
}
.u-bg-01 > * {
  position: relative;
  z-index: 20;
}
.u-bg-01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/img/bg-content-01.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: bg-zoom 10s ease-in-out infinite alternate;
  z-index: 0;
}

.u-bg-02 {
  background: url(/assets/img/bg-content-02.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.u-bg-03 {
  background: url(/assets/img/bg-content-03.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@keyframes bg-zoom {
  from {
    background-size: cover;
    transform: scale(1);
  }
  to {
    background-size: cover;
    transform: scale(1.1);
  }
}
/* Decoraciones con CSS transitions - Sin position fixed */
#decorations {
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

#decorations.show {
  opacity: 1;
}

/* Las imágenes individuales mantienen sus clases de posicionamiento */
#decorations img {
  /* Heredar posicionamiento de las clases u-decorate-XX existentes */
  position: absolute;
}

.u-p-heading {
  padding-top: 150px;
}

/* Tamaño de logos */
.u-logo-size {
  width: 150px;
}

/* Tamaño de íconos */
.u-icon-lg {
  width: 100%;
}

/* Decoraciones */
.u-decorate-01 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 262px;
  opacity: 1;
  z-index: 100;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
  will-change: transform, opacity;
  -webkit-transform: translateY(12px) scale(0.96);
  -moz-transform: translateY(12px) scale(0.96);
  -ms-transform: translateY(12px) scale(0.96);
  -o-transform: translateY(12px) scale(0.96);
  animation: float01 3.6s alternate ease-in-out infinite;
}

.u-decorate-02 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 262px;
  opacity: 1;
  z-index: 100;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
  will-change: transform, opacity;
  -webkit-transform: translateY(12px) scale(0.96);
  -moz-transform: translateY(12px) scale(0.96);
  -ms-transform: translateY(12px) scale(0.96);
  -o-transform: translateY(12px) scale(0.96);
  animation: float02 3.6s alternate ease-in-out infinite;
}

.u-decorate-03 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 320px;
  opacity: 1;
  z-index: 100;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
  will-change: transform, opacity;
  -webkit-transform: translateY(12px) scale(0.96);
  -moz-transform: translateY(12px) scale(0.96);
  -ms-transform: translateY(12px) scale(0.96);
  -o-transform: translateY(12px) scale(0.96);
  animation: float03 3.6s alternate ease-in-out infinite;
}

.u-decorate-04 {
  position: absolute;
  top: 0;
  right: -5%;
  width: 262px;
  opacity: 1;
  z-index: 100;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
  will-change: transform, opacity;
  -webkit-transform: translateY(12px) scale(0.96);
  -moz-transform: translateY(12px) scale(0.96);
  -ms-transform: translateY(12px) scale(0.96);
  -o-transform: translateY(12px) scale(0.96);
  animation: float04 3.6s alternate ease-in-out infinite;
}

.u-decorate-contact {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 262px;
  opacity: 1;
  z-index: 100;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
  will-change: transform, opacity;
  -webkit-transform: translateY(12px) scale(0.96);
  -moz-transform: translateY(12px) scale(0.96);
  -ms-transform: translateY(12px) scale(0.96);
  -o-transform: translateY(12px) scale(0.96);
}

/*===Keyframes===*/
@keyframes float01 {
  0% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 10%);
  }
}
@keyframes float03 {
  0% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 5%);
  }
}
@keyframes float02 {
  0% {
    transform: translate(0, 10%);
  }
  100% {
    transform: translate(0, 5%);
  }
}
@keyframes float04 {
  0% {
    transform: translate(0, 10%);
  }
  100% {
    transform: translate(0, 0%);
  }
}
@media screen and (max-width: 576px) {
  .u-logo-size {
    width: 100px;
  }
  .u-icon-lg {
    width: 50%;
  }
  .u-p-heading {
    padding-top: 100px;
    padding-bottom: 64px;
  }
  /* Background */
  .u-bg-01 {
    background-size: cover;
    animation: none;
  }
  /* Decoraciones */
  .u-decorate-01 {
    position: absolute;
    top: -5%;
    left: -25%;
    width: 162px;
    opacity: 1;
    z-index: 100;
    transform: translateY(12px) scale(0.96);
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
    will-change: transform, opacity;
    -webkit-transform: translateY(12px) scale(0.96);
    -moz-transform: translateY(12px) scale(0.96);
    -ms-transform: translateY(12px) scale(0.96);
    -o-transform: translateY(12px) scale(0.96);
  }
  .u-decorate-02 {
    position: absolute;
    bottom: -10%;
    left: -25%;
    width: 162px;
    opacity: 1;
    z-index: 100;
    transform: translateY(12px) scale(0.96);
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
    will-change: transform, opacity;
    -webkit-transform: translateY(12px) scale(0.96);
    -moz-transform: translateY(12px) scale(0.96);
    -ms-transform: translateY(12px) scale(0.96);
    -o-transform: translateY(12px) scale(0.96);
  }
  .u-decorate-03 {
    position: absolute;
    bottom: -10%;
    right: -30%;
    width: 220px;
    opacity: 1;
    z-index: 100;
    transform: translateY(12px) scale(0.96);
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
    will-change: transform, opacity;
    -webkit-transform: translateY(12px) scale(0.96);
    -moz-transform: translateY(12px) scale(0.96);
    -ms-transform: translateY(12px) scale(0.96);
    -o-transform: translateY(12px) scale(0.96);
  }
  .u-decorate-04 {
    position: absolute;
    top: 0;
    right: -15%;
    width: 162px;
    opacity: 1;
    z-index: 100;
    transform: translateY(12px) scale(0.96);
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
    will-change: transform, opacity;
    -webkit-transform: translateY(12px) scale(0.96);
    -moz-transform: translateY(12px) scale(0.96);
    -ms-transform: translateY(12px) scale(0.96);
    -o-transform: translateY(12px) scale(0.96);
  }
  .u-decorate-contact {
    bottom: -20%;
    left: 10%;
    width: 262px;
    opacity: 1;
    z-index: 100;
    transform: translateY(12px) scale(0.96);
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s ease;
    will-change: transform, opacity;
    -webkit-transform: translateY(12px) scale(0.96);
    -moz-transform: translateY(12px) scale(0.96);
    -ms-transform: translateY(12px) scale(0.96);
    -o-transform: translateY(12px) scale(0.96);
  }
}
/* Elimina marca de agua de Fulpage.js */
.fp-watermark {
  display: none !important;
}

/* Controlar overflow de fullPage.js para evitar scroll manual */
.fp-is-overflow {
  overflow: hidden !important;
}

.fp-is-overflow .fp-scroller {
  overflow: hidden !important;
}

.fp-is-overflow .fp-slide,
.fp-is-overflow .fp-section {
  overflow: hidden !important;
}

/* Asegurar que las rotating-card no causen overflow */
.rotating-card {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* En desktop, evitar scroll en rotating-card */
@media (min-width: 992px) {
  .rotating-card {
    max-height: none;
    overflow: hidden;
  }
}
/* Controlar contenido de servicios para evitar overflow */
#section4 .rotating-card {
  max-height: 80vh;
  overflow-y: auto;
}

@media (min-width: 992px) {
  #section4 .rotating-card {
    max-height: none;
    overflow: hidden;
  }
}
/*------------------------------------*\
  #UTILITIES - SPACING
  Utilities para márgenes y paddings (m, p) centralizadas.
  Uso: .m-1 .mt-2 .px-3 .p-0 .m-sm-2 .p-lg-4
\*------------------------------------*/
.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

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

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

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

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

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

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

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

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

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

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

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

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

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

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

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

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

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

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

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

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

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

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

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

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

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

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

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

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

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

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

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

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

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

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

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

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

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

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

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

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

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

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

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

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

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

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

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

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

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

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

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .mx-sm-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .px-sm-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .mx-sm-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .px-sm-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .mx-sm-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .px-sm-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .mx-sm-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .px-sm-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
}
@media (min-width: 576px) {
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
  .ml-sm-5 {
    margin-left: 3rem !important;
  }
  .mr-sm-5 {
    margin-right: 3rem !important;
  }
  .pl-sm-5 {
    padding-left: 3rem !important;
  }
  .pr-sm-5 {
    padding-right: 3rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .mx-md-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .px-md-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .mx-md-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .px-md-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
}
@media (min-width: 768px) {
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .mr-md-3 {
    margin-right: 1rem !important;
  }
  .pl-md-3 {
    padding-left: 1rem !important;
  }
  .pr-md-3 {
    padding-right: 1rem !important;
  }
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
  .mr-md-4 {
    margin-right: 1.5rem !important;
  }
  .pl-md-4 {
    padding-left: 1.5rem !important;
  }
  .pr-md-4 {
    padding-right: 1.5rem !important;
  }
  .ml-md-5 {
    margin-left: 3rem !important;
  }
  .mr-md-5 {
    margin-right: 3rem !important;
  }
  .pl-md-5 {
    padding-left: 3rem !important;
  }
  .pr-md-5 {
    padding-right: 3rem !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .px-lg-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .mx-lg-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .px-lg-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .mx-lg-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .px-lg-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .mx-lg-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .px-lg-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .mx-lg-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .px-lg-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .mx-lg-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
}
@media (min-width: 992px) {
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }
  .ml-lg-5 {
    margin-left: 3rem !important;
  }
  .mr-lg-5 {
    margin-right: 3rem !important;
  }
  .pl-lg-5 {
    padding-left: 3rem !important;
  }
  .pr-lg-5 {
    padding-right: 3rem !important;
  }
}
/* Fin _spacing.scss */
/*=====  End of Section BEMIT - COMPONENT  ======*/
/*=============================================
=            Section BEMIT - KEY FRAMES            =
=============================================*/
/* @import "keyframes"; */
/*=====  End of Section BEMIT - KEY FRAMES  ======*/

/*# sourceMappingURL=style.css.map */
