@charset "UTF-8";
.--global {
  min-height: 100vh;
  width: auto;
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  height: -moz-min-content;
  height: min-content;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  position: relative;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* ************************************
 * Generales / Dispersos / Sin categoría
 * ******************************************* */
a {
  color: var(--a__color);
  -webkit-text-decoration: var(--none);
          text-decoration: var(--none);
}

.--centered-x-y {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

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

.--overflow-x-yes {
  overflow-x: auto;
  scrollbar-width: none;
}

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

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

.--w-max-1200 {
  max-width: 1200px;
}

.--z-10 {
  z-index: 10;
}

.--z-index-100 {
  z-index: 100;
}

.--z-index-1000 {
  z-index: 1000;
}

.opacity0to1 {
  animation: opacity-0-1 1s forwards;
}

.opacity0to1-2s {
  animation: opacity-0-1 2s forwards;
}

@keyframes opacity-0-1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.opacity-hover-0to1 {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  transform: scale(0.9);
}

.opacity-hover-0to1:hover {
  opacity: 1;
  transform: scale(1);
}

.--overlay-bg {
  position: relative;
}

.--overlay-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0;
  pointer-events: none;
  border-radius: var(--overlay-bg__border-radius);
  background: var(--overlay-bg__background);
}

[object-fit=cover] {
  -o-object-fit: cover;
     object-fit: cover;
}

[object-position=center] {
  -o-object-fit: center;
     object-fit: center;
}

[grayscale]:hover {
  filter: grayscale(0) !important;
}

[blur]:hover {
  filter: blur(0px) !important;
}

.--x-opacity-0to1 .--x {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.--x-opacity-0to1:hover .--x {
  opacity: 1;
}

.--x-scale-09-10 .--x {
  transition: transform 0.3s ease-in-out;
  transform: scale(0.9);
}

.--x-scale-09-10:hover .--x {
  transform: scale(1);
}

.--x-scale-09-11 .--x {
  transition: transform 0.3s ease-in-out;
  transform: scale(0.9);
}

.--x-scale-09-11:hover .--x {
  transform: scale(1.1);
}

.--x-scale-09-12 .--x {
  transition: transform 0.3s ease-in-out;
  transform: scale(0.9);
}

.--x-scale-09-12:hover .--x {
  transform: scale(1.2);
}

.form-control:focus {
  color: gainsboro;
  background-color: transparent;
  border-color: rgba(30, 30, 30, 0.8549019608);
  box-shadow: 0 0 0 6px rgba(33, 33, 33, 0.14);
}

/* ************************************
 * Colores
 * ******************************************* */
.--bg-gray-light {
  background-color: var(--bg-gray-light) !important;
}

.--bg-transparent {
  background: transparent !important;
}

/* ************************************
 * Semánticos y otros
 * ******************************************* */
section {
  width: 100%;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1.1;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1.1;
}

p {
  font-size: 16px;
  letter-spacing: -0.05px;
  line-height: 1.5;
  color: var(--p-color);
}

.--small {
  font-size: 12px;
}

/* ************************************
 * Botones
 * ******************************************* */
.--buttons {
  display: flex;
  gap: 12px;
  font-weight: 600;
}

.--btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  font-size: 14px;
  padding: 12px 16px;
  font-weight: 600;
}
.--btn svg {
  color: inherit;
  width: 12px;
}

.--btn-medium {
  padding: 20px 14px;
  position: relative;
  text-decoration: none;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-content: center;
  align-items: center;
  height: 0;
  line-height: 1;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 575.9px) {
  .--btn {
    font-size: 14px;
    padding: 14px 16px;
  }
}
/* ************************************
 * Circle Multiple
 * ******************************************* */
.--circle-multiple {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.--circle-multiple .--content {
  position: relative;
  left: 0;
  transition: left 0.3s;
}
.--circle-multiple .--content .--div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  border: 3px solid;
  border-color: var(--circle-multiple-border-color);
  position: relative;
  top: 0px;
  left: -2px;
  box-shadow: var(--circle-multiple-box-shadow);
}
.--circle-multiple .--content .--div img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  transition: scale 0.3s;
  position: relative;
  left: -3px;
  top: -2px;
}
.--circle-multiple .--content .--div:hover img {
  scale: 1.2;
  image-rendering: auto;
  cursor: pointer;
}
.--circle-multiple .--content:nth-child(2) {
  left: -16px;
}
.--circle-multiple .--content:nth-child(3) {
  left: -32px;
}
.--circle-multiple .--content:nth-child(4) {
  left: -48px;
}
.--circle-multiple .--content:nth-child(5) {
  left: -64px;
}
.--circle-multiple .--content:nth-child(6) {
  left: -80px;
}
.--circle-multiple .--content:nth-child(7) {
  left: -96px;
}
.--circle-multiple .--content:nth-child(8) {
  left: -112px;
}
.--circle-multiple .--content:nth-child(9) {
  left: -128px;
}
.--circle-multiple .--content:nth-child(10) {
  left: -144px;
}

.--circle-multiple:hover .--content:nth-child(1) {
  left: 0px;
}
.--circle-multiple:hover .--content:nth-child(2) {
  left: -8px;
}
.--circle-multiple:hover .--content:nth-child(3) {
  left: -16px;
}
.--circle-multiple:hover .--content:nth-child(4) {
  left: -24px;
}
.--circle-multiple:hover .--content:nth-child(5) {
  left: -32px;
}
.--circle-multiple:hover .--content:nth-child(6) {
  left: -40px;
}
.--circle-multiple:hover .--content:nth-child(7) {
  left: -48px;
}
.--circle-multiple:hover .--content:nth-child(8) {
  left: -56px;
}
.--circle-multiple:hover .--content:nth-child(9) {
  left: -64px;
}
.--circle-multiple:hover .--content:nth-child(10) {
  left: -72px;
}

/* ************************************
 * Position
 * ******************************************* */
.--absolute {
  position: absolute;
}

.--relative {
  position: relative;
}

.--fixed {
  position: fixed;
}

/* ************************************
 * Badge
 * ******************************************* */
.--badge-size-1, .--badge-size-2, .--badge-size-3, .--badge-size-4 {
  border-radius: var(--badge-border-radius);
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.--badge-size-1 {
  padding: 4px 6px;
  font-size: 11px;
}
.--badge-size-1 svg {
  width: 11px;
  margin-right: 6px;
  color: inherit;
}

.--badge-size-2 {
  padding: 5px 8px;
  font-size: 12px;
}
.--badge-size-2 svg {
  width: 12px;
  margin-right: 6px;
  color: inherit;
}

.--badge-size-3 {
  padding: 6px 11px;
  font-size: 13px;
}
.--badge-size-3 svg {
  width: 13px;
  margin-right: 6px;
  color: inherit;
}

.--badge-size-4 {
  padding: 8px 12px;
  font-size: 14px;
}
.--badge-size-4 svg {
  width: 14px;
  margin-right: 6px;
  color: inherit;
}

.--badge-size-1.--pill {
  padding: 4px 10px;
  border-radius: 36px;
}

.--badge-size-2.--pill {
  padding: 5px 12px;
  border-radius: 36px;
}

.--badge-size-3.--pill {
  padding: 6px 15px;
  border-radius: 36px;
}

.--badge-size-4.--pill {
  padding: 8px 18px;
  border-radius: 36px;
}

/* ************************************
 * Banner
 * ******************************************* */
.--banner-type-1 {
  border-radius: 0;
  padding: 12px 0;
  border-width: var(--banner-type-1-border-width);
  border-style: var(--banner-type-1-border-style);
  border-color: var(--banner-type-1-border-color);
  background-color: var(--banner-type-1__bg);
}
.--banner-type-1 .--cta {
  font-size: 12px;
  letter-spacing: -0.05px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  font-weight: 600;
  padding: 5px 8px;
  text-decoration: none;
  color: var(--banner-type-1__color);
}
.--banner-type-1 .--cta .---d2 svg {
  width: 11px;
  rotate: 180deg;
  margin-left: 2px;
  position: relative;
  top: -1px;
}

/* ************************************
 * Cards
 * ******************************************* */
.--cards-type-1 a {
  text-decoration: none;
}
.--cards-type-1 .--card-col {
  margin-bottom: 20px;
}
.--cards-type-1 .--card-col .--card {
  text-decoration: none;
  cursor: pointer;
}
.--cards-type-1 .--card-col .--card .--c-general .--c-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.--cards-type-1 .--card-col .--card .--c-general .--c-img img {
  width: 100%;
  transition: scale 0.3s;
}
.--cards-type-1 .--card-col .--card .--c-general .--g .--e {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  padding: 24px 16px 16px 16px;
  transition: all 0.3s ease-in-out;
}
.--cards-type-1 .--card-col .--card .--c-general .--g .--e .--title {
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1.1;
  font-size: 18px;
  color: var(--cards-type-1-boxed-2-title__color);
}
.--cards-type-1 .--card-col .--card .--c-general .--g .--e .--p {
  font-size: 16px;
  margin-bottom: 16px;
}
.--cards-type-1 .--card-col .--card .--c-general .--g .--e .--btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.05px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
}
.--cards-type-1 .--card-col .--card .--c-general .--g .--e .--btn.--btn-type-1 {
  width: -moz-max-content;
  width: max-content;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: unset;
  letter-spacing: -0.05px;
  line-height: 1.5;
  font-weight: 500;
}
.--cards-type-1 .--card-col .--card .--c-general .--g .--e .--btn.--btn-type-2 {
  width: -moz-max-content;
  width: max-content;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: unset;
  letter-spacing: -0.05px;
  line-height: 1.5;
  font-weight: 500;
}
.--cards-type-1 .--card-col .--card .--c-general .--g .--e .--btn.--btn-type-2 svg {
  rotate: none;
  height: 24px;
  width: 24px;
  margin: auto;
}
.--cards-type-1 .--card-col .--card .--c-general.--boxed-1 {
  padding: 16px 16px;
  border: var(--cards-type-1-boxed-1__border);
  border-radius: var(--cards-type-1-boxed-1__border-radius);
  height: var(--cards-type-1-boxed-1__height);
}
.--cards-type-1 .--card-col .--card .--c-general.--boxed-2 {
  padding: 0;
  overflow: hidden;
  border: var(--cards-type-1-boxed-2__border);
  border-radius: var(--cards-type-1-boxed-2__border-radius);
  height: var(--cards-type-1-boxed-2__height);
}
.--cards-type-1 .--card-col .--card .--c-general.--boxed-2 .--c-img {
  border-radius: 0;
}
.--cards-type-1 .--card-col .--card .--c-general.--options-below-image {
  overflow: unset;
}
.--cards-type-1 .--card-col .--card .--c-general.--options-below-image .--box-options {
  height: 0;
  position: relative;
}
.--cards-type-1 .--card-col .--card .--c-general.--options-below-image .--box-options .--options {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 0;
  gap: 6px;
  height: 48px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #fbfbfb;
  filter: blur(2px);
  opacity: 0.05;
}
.--cards-type-1 .--card-col .--card .--c-general.--options-below-image .--box-options .--options .--item {
  font-size: 12px;
  letter-spacing: -0.05px;
  line-height: 1;
  font-weight: 500;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--p-color);
}
.--cards-type-1 .--card-col .--card .--c-general.--options-below-image .--box-options .--options .--item svg {
  width: 12px;
  margin-right: 3px;
}
.--cards-type-1 .--card-col .--card .--c-general.--options-below-image .--box-options .--options .--item:hover {
  background: transparent;
  color: #000;
}
.--cards-type-1 .--card-col .--card .--c-general.--options-below-image:hover .--c-img {
  top: -32px;
}
.--cards-type-1 .--card-col .--card .--c-general.--options-below-image:hover .--options {
  filter: blur(0);
  opacity: 1;
  top: -34px;
  width: calc(100% - 16px);
  margin: auto;
}
.--cards-type-1 .--card:hover .--c-general .--c-img img {
  scale: 1.075;
}
.--cards-type-1 .--card:hover .--c-general.--options-below-image .--c-img img {
  scale: 1;
}
.--cards-type-1 .--card:hover .--c-general.--options-below-image .--g .--e {
  padding-top: 32px;
}

/* ************************************
 * Footer Type 1
 * ******************************************* */
.--footer-type-1 .--logo {
  margin-bottom: 20px;
}
.--footer-type-1 .--logo img {
  height: 32px;
  position: relative;
  width: auto;
  opacity: 1;
}
.--footer-type-1 p {
  font-size: 15px;
}
.--footer-type-1 .--social-icons {
  margin-bottom: 48px;
}
.--footer-type-1 .--social-icons ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  gap: 15px;
}
.--footer-type-1 .--social-icons ul li .--rrss-icon {
  display: block;
  color: var(--footer-type-1--rrss-icon__color);
}
.--footer-type-1 .--social-icons ul li .--rrss-icon svg {
  height: 24px;
  position: relative;
  width: 24px;
}
.--footer-type-1 .--enlaces {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.--footer-type-1 .--enlaces .--columna-1, .--footer-type-1 .--enlaces .--columna-2 {
  width: 50%;
}
.--footer-type-1 .--enlaces .--columna-1 .--title, .--footer-type-1 .--enlaces .--columna-2 .--title {
  font-size: 16px;
  letter-spacing: -0.05px;
  line-height: 1.5;
  text-decoration: none;
  margin-bottom: 20px;
  color: var(--footer-type-1--enlaces-title__color);
}
.--footer-type-1 .--enlaces .--columna-1 ul, .--footer-type-1 .--enlaces .--columna-2 ul {
  padding: 0;
  list-style: none;
}
.--footer-type-1 .--enlaces .--columna-1 ul li, .--footer-type-1 .--enlaces .--columna-2 ul li {
  width: 100%;
}
.--footer-type-1 .--enlaces .--columna-1 ul li a, .--footer-type-1 .--enlaces .--columna-2 ul li a {
  font-size: 14px;
  letter-spacing: -0.05px;
  line-height: 1.5;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  width: calc(100% - 16px);
  color: var(--p-color);
}
.--footer-type-1 .--newsletter .--title {
  font-size: 16px;
  letter-spacing: -0.05px;
  line-height: 1.5;
  text-decoration: none;
  margin-bottom: 20px;
  color: var(--footer-type-1--enlaces-title__color);
}
.--footer-type-1 .--newsletter input {
  border-radius: 4px;
  padding: 13px 12px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.05px;
  background: var(--footer-type-1--enlaces-title__background);
  border: var(--footer-type-1--enlaces-title__border);
  color: var(--p-color);
}
.--footer-type-1 .--newsletter .--subtext {
  margin-top: 16px;
  font-size: 12px;
}
.--footer-type-1 .--newsletter .--subtext a {
  color: var(--footer-type-1--enlaces-title__color);
  text-decoration: none;
  padding: 8px 0;
}
.--footer-type-1 .--copy {
  font-size: 13px;
  letter-spacing: -0.05px;
  line-height: 1.5;
  color: var(--p-color);
}

/* ************************************
 * Slides Type 1 (infinito) → Horizontal
 * ******************************************* */
@keyframes slides_type_1_left_x_right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slides_type_1_right_x_left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.--slides-type-1 {
  overflow: hidden;
  padding: 0px 0px;
  white-space: nowrap;
  position: relative;
}

.--slides-type-1 a {
  display: inline-flex;
  border-radius: 8px;
}

.--slides-type-1 a:hover img {
  scale: 1.2;
}

.--slides-type-1:before, .--slides-type-1:after {
  position: absolute;
  z-index: 2;
  content: "";
  top: 0;
  width: 10%;
  height: 100%;
}

.--slides-type-1:before {
  left: 0;
  background: var(--slides-type-1--before__background);
}

.--slides-type-1:after {
  right: 0;
  background: var(--slides-type-1--after__background);
}

.--slides-type-1--items {
  display: inline-flex;
  animation: 35s slides_type_1_left_x_right infinite linear;
}

.--slides-type-1:hover .--slides-type-1--items {
  animation-play-state: paused !important;
}

.--slides-type-1--items img {
  height: 50px;
}

/* ************************************
 * Slides Type 2 (infinito) → Vertical
 * ******************************************* */
@keyframes slides_type_2_top_x_bottom {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slides_type_2_bottom_x_top {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.--slides-type-2 {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.--slides-type-2 a {
  display: inline-flex;
  overflow: hidden;
}

.--slides-type-2:before {
  position: absolute;
  z-index: 2;
  content: "";
  top: 0;
  width: 100%;
  height: 44px;
}

.--slides-type-2:after {
  position: absolute;
  z-index: 2;
  content: "";
  bottom: 0;
  width: 100%;
  height: 44px;
}

.--slides-type-2:before {
  left: 0;
  background: var(--slides-type-2--before__background);
}

.--slides-type-2:after {
  right: 0;
  background: var(--slides-type-2--after__background);
}

.--slides-type-2--items {
  display: flex;
  flex-wrap: wrap;
  animation: 35s slides_type_2_bottom_x_top infinite linear;
}

.--slides-type-2:hover .--slides-type-2--items {
  animation-play-state: paused !important;
}

.--slides-type-2--items img {
  width: 100%;
}

/* ************************************
 * Responsive
 * ******************************************* */
@media (min-width: 575.9px) {
  h1 {
    font-size: 2.8rem;
  }
  .--cards-type-1 .--card-col .--card .--c-general .--g .--e .--title {
    font-size: 16px;
    width: 100%;
  }
  .--cards-type-1 .--card-col .--card .--c-general .--g .--e .--p {
    font-size: 14px;
    width: 100%;
  }
  .--cards-type-1 .--card-col .--card .--c-general .--g .--e .--btn {
    font-size: 14px;
  }
  .--cards-type-1 .--card-col .--card .--c-general .--g .--e .--btn svg {
    width: 12px;
  }
}
@media (max-width: 575.9px) {
  .--px-xs-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .--px-xs-1 {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
  .--px-xs-2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
  .--px-xs-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  .--px-xs-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .--px-xs-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .--px-xs-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  .--px-xs-7 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
  .--px-xs-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .--px-xs-9 {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
  .--px-xs-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .--px-xs-11 {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
  .--px-xs-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .--px-xs-13 {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
  .--px-xs-14 {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .--px-xs-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .--px-xs-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .--border-0-xs {
    border: 0 !important;
  }
  .--text-left-xs {
    text-align: left !important;
  }
  p {
    font-size: 16px;
    line-height: 1.3;
  }
  .--buttons .--btn-accent {
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 8px;
  }
  .--buttons .--btn-accent svg {
    width: 14px;
  }
  .--buttons .--btn-secondary {
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 8px;
  }
  .--buttons .--btn-secondary svg {
    width: 14px;
  }
  .--w-max-mobile {
    width: -moz-max-content;
    width: max-content;
  }
  .--cards-type-1 .--card-col .--card .--c-general.--boxed-1 .--g .--e {
    padding: 24px 4px 16px 4px;
  }
  .--cards-type-1 .--card-col .--card .--c-general.--boxed-2 .--g .--e {
    padding: 24px 16px 24px 16px;
  }
  .--cards-type-1 .--card-col .--card .--c-general .--g .--e .--title {
    font-size: 16px;
  }
  .--cards-type-1 .--card-col .--card .--c-general .--g .--e .--p {
    font-size: 14px;
  }
  .--cards-type-1 .--card-col .--card .--c-general .--g .--e .--btn {
    font-size: 14px;
  }
  .--cards-type-1 .--card-col .--card .--c-general .--g .--e .--btn svg {
    width: 12px;
  }
  .--footer-type-1 .--enlaces .--columna-1 .--title,
  .--footer-type-1 .--enlaces .--columna-2 .--title {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .--footer-type-1 .--copy {
    padding-top: 24px;
    border-top: 1px solid rgba(38, 38, 52, 0.4117647059);
  }
}
.--section-error {
  height: 100vh;
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
  background: var(--error-page__background);
}
.--section-error .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: auto auto !important;
}
.--section-error .container .--col-content {
  max-width: 326px;
  margin: auto;
}
.--section-error .container .--col-content .--imagen {
  max-width: 326px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.--section-error .container .--col-content .--404 {
  font-size: 110px;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0;
  color: var(--bs-heading-color);
}
.--section-error .container .--col-content .--title {
  color: var(--bs-heading-color);
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin: 6px auto 12px auto;
  font-size: 28px;
}
.--section-error .container .--col-content .--p {
  color: var(--p-color);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.4px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* XL */
@media (min-width: 1199.9px) {
  .--btn-size-2 {
    font-size: 15px;
    padding: 15px 19px;
  }
}
/* LG */
@media (min-width: 992px) and (max-width: 1199.9px) {
  .--btn-size-2 {
    font-size: 15px;
    padding: 15px 19px;
  }
}
/* MD */
@media (min-width: 768px) and (max-width: 991.9px) {
  .container, .container-sm {
    max-width: none;
  }
}
/* SM */
@media (min-width: 576px) and (max-width: 767.9px) {
  .container, .container-sm {
    max-width: none;
  }
}
.pt-0 {
  padding-top: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-240 {
  padding-bottom: 240px;
}

@media (min-width: 991.9px) {
  .pt-desk-0 {
    padding-top: 0px;
  }
  .pt-desk-10 {
    padding-top: 10px;
  }
  .pt-desk-20 {
    padding-top: 20px;
  }
  .pt-desk-30 {
    padding-top: 30px;
  }
  .pt-desk-40 {
    padding-top: 40px;
  }
  .pt-desk-50 {
    padding-top: 50px;
  }
  .pt-desk-60 {
    padding-top: 60px;
  }
  .pt-desk-70 {
    padding-top: 70px;
  }
  .pt-desk-80 {
    padding-top: 80px;
  }
  .pt-desk-90 {
    padding-top: 90px;
  }
  .pt-desk-100 {
    padding-top: 100px;
  }
  .pt-desk-110 {
    padding-top: 110px;
  }
  .pt-desk-120 {
    padding-top: 120px;
  }
  .pt-desk-130 {
    padding-top: 130px;
  }
  .pt-desk-140 {
    padding-top: 140px;
  }
  .pt-desk-150 {
    padding-top: 150px;
  }
  .pt-desk-160 {
    padding-top: 160px;
  }
  .pt-desk-170 {
    padding-top: 170px;
  }
  .pt-desk-180 {
    padding-top: 180px;
  }
  .pt-desk-190 {
    padding-top: 190px;
  }
  .pt-desk-200 {
    padding-top: 200px;
  }
  .pt-desk-210 {
    padding-top: 210px;
  }
  .pt-desk-220 {
    padding-top: 220px;
  }
  .pt-desk-230 {
    padding-top: 230px;
  }
  .pt-desk-240 {
    padding-top: 240px;
  }
  .pb-desk-0 {
    padding-bottom: 0px;
  }
  .pb-desk-10 {
    padding-bottom: 10px;
  }
  .pb-desk-20 {
    padding-bottom: 20px;
  }
  .pb-desk-30 {
    padding-bottom: 30px;
  }
  .pb-desk-40 {
    padding-bottom: 40px;
  }
  .pb-desk-50 {
    padding-bottom: 50px;
  }
  .pb-desk-60 {
    padding-bottom: 60px;
  }
  .pb-desk-70 {
    padding-bottom: 70px;
  }
  .pb-desk-80 {
    padding-bottom: 80px;
  }
  .pb-desk-90 {
    padding-bottom: 90px;
  }
  .pb-desk-100 {
    padding-bottom: 100px;
  }
  .pb-desk-110 {
    padding-bottom: 110px;
  }
  .pb-desk-120 {
    padding-bottom: 120px;
  }
  .pb-desk-130 {
    padding-bottom: 130px;
  }
  .pb-desk-140 {
    padding-bottom: 140px;
  }
  .pb-desk-150 {
    padding-bottom: 150px;
  }
  .pb-desk-160 {
    padding-bottom: 160px;
  }
  .pb-desk-170 {
    padding-bottom: 170px;
  }
  .pb-desk-180 {
    padding-bottom: 180px;
  }
  .pb-desk-190 {
    padding-bottom: 190px;
  }
  .pb-desk-200 {
    padding-bottom: 200px;
  }
  .pb-desk-210 {
    padding-bottom: 210px;
  }
  .pb-desk-220 {
    padding-bottom: 220px;
  }
  .pb-desk-230 {
    padding-bottom: 230px;
  }
  .pb-desk-240 {
    padding-bottom: 240px;
  }
}
.mt-0px {
  margin-top: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-0px {
  margin-bottom: 0px;
}

.mb-1px {
  margin-bottom: 1px;
}

.mb-2px {
  margin-bottom: 2px;
}

.mb-3px {
  margin-bottom: 3px;
}

.mb-4px {
  margin-bottom: 4px;
}

.mb-5px {
  margin-bottom: 5px;
}

.mb-6px {
  margin-bottom: 6px;
}

.mb-7px {
  margin-bottom: 7px;
}

.mb-8px {
  margin-bottom: 8px;
}

.mb-9px {
  margin-bottom: 9px;
}

.mb-10px {
  margin-bottom: 10px;
}

.mb-11px {
  margin-bottom: 11px;
}

.mb-12px {
  margin-bottom: 12px;
}

.mb-13px {
  margin-bottom: 13px;
}

.mb-14px {
  margin-bottom: 14px;
}

.mb-15px {
  margin-bottom: 15px;
}

.mb-16px {
  margin-bottom: 16px;
}

.mb-17px {
  margin-bottom: 17px;
}

.mb-18px {
  margin-bottom: 18px;
}

.mb-19px {
  margin-bottom: 19px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-21px {
  margin-bottom: 21px;
}

.mb-22px {
  margin-bottom: 22px;
}

.mb-23px {
  margin-bottom: 23px;
}

.mb-24px {
  margin-bottom: 24px;
}

.mb-25px {
  margin-bottom: 25px;
}

.mb-26px {
  margin-bottom: 26px;
}

.mb-27px {
  margin-bottom: 27px;
}

.mb-28px {
  margin-bottom: 28px;
}

.mb-29px {
  margin-bottom: 29px;
}

.mb-30px {
  margin-bottom: 30px;
}

.mb-31px {
  margin-bottom: 31px;
}

.mb-32px {
  margin-bottom: 32px;
}

.mb-33px {
  margin-bottom: 33px;
}

.mb-34px {
  margin-bottom: 34px;
}

.mb-35px {
  margin-bottom: 35px;
}

.mb-36px {
  margin-bottom: 36px;
}

.mb-37px {
  margin-bottom: 37px;
}

.mb-38px {
  margin-bottom: 38px;
}

.mb-39px {
  margin-bottom: 39px;
}

.mb-40px {
  margin-bottom: 40px;
}

.mb-41px {
  margin-bottom: 41px;
}

.mb-42px {
  margin-bottom: 42px;
}

.mb-43px {
  margin-bottom: 43px;
}

.mb-44px {
  margin-bottom: 44px;
}

.mb-45px {
  margin-bottom: 45px;
}

.mb-46px {
  margin-bottom: 46px;
}

.mb-47px {
  margin-bottom: 47px;
}

.mb-48px {
  margin-bottom: 48px;
}

.ml-0px {
  margin-left: 0px;
}

.ml-1px {
  margin-left: 1px;
}

.ml-2px {
  margin-left: 2px;
}

.ml-3px {
  margin-left: 3px;
}

.ml-4px {
  margin-left: 4px;
}

.ml-5px {
  margin-left: 5px;
}

.ml-6px {
  margin-left: 6px;
}

.ml-7px {
  margin-left: 7px;
}

.ml-8px {
  margin-left: 8px;
}

.ml-9px {
  margin-left: 9px;
}

.ml-10px {
  margin-left: 10px;
}

.ml-11px {
  margin-left: 11px;
}

.ml-12px {
  margin-left: 12px;
}

.ml-13px {
  margin-left: 13px;
}

.ml-14px {
  margin-left: 14px;
}

.ml-15px {
  margin-left: 15px;
}

.ml-16px {
  margin-left: 16px;
}

.ml-17px {
  margin-left: 17px;
}

.ml-18px {
  margin-left: 18px;
}

.ml-19px {
  margin-left: 19px;
}

.ml-20px {
  margin-left: 20px;
}

.ml-21px {
  margin-left: 21px;
}

.ml-22px {
  margin-left: 22px;
}

.ml-23px {
  margin-left: 23px;
}

.ml-24px {
  margin-left: 24px;
}

.ml-25px {
  margin-left: 25px;
}

.ml-26px {
  margin-left: 26px;
}

.ml-27px {
  margin-left: 27px;
}

.ml-28px {
  margin-left: 28px;
}

.ml-29px {
  margin-left: 29px;
}

.ml-30px {
  margin-left: 30px;
}

.ml-31px {
  margin-left: 31px;
}

.ml-32px {
  margin-left: 32px;
}

.ml-33px {
  margin-left: 33px;
}

.ml-34px {
  margin-left: 34px;
}

.ml-35px {
  margin-left: 35px;
}

.ml-36px {
  margin-left: 36px;
}

.ml-37px {
  margin-left: 37px;
}

.ml-38px {
  margin-left: 38px;
}

.ml-39px {
  margin-left: 39px;
}

.ml-40px {
  margin-left: 40px;
}

.ml-41px {
  margin-left: 41px;
}

.ml-42px {
  margin-left: 42px;
}

.ml-43px {
  margin-left: 43px;
}

.ml-44px {
  margin-left: 44px;
}

.ml-45px {
  margin-left: 45px;
}

.ml-46px {
  margin-left: 46px;
}

.ml-47px {
  margin-left: 47px;
}

.ml-48px {
  margin-left: 48px;
}

.mr-0px {
  margin-right: 0px;
}

.mr-1px {
  margin-right: 1px;
}

.mr-2px {
  margin-right: 2px;
}

.mr-3px {
  margin-right: 3px;
}

.mr-4px {
  margin-right: 4px;
}

.mr-5px {
  margin-right: 5px;
}

.mr-6px {
  margin-right: 6px;
}

.mr-7px {
  margin-right: 7px;
}

.mr-8px {
  margin-right: 8px;
}

.mr-9px {
  margin-right: 9px;
}

.mr-10px {
  margin-right: 10px;
}

.mr-11px {
  margin-right: 11px;
}

.mr-12px {
  margin-right: 12px;
}

.mr-13px {
  margin-right: 13px;
}

.mr-14px {
  margin-right: 14px;
}

.mr-15px {
  margin-right: 15px;
}

.mr-16px {
  margin-right: 16px;
}

.mr-17px {
  margin-right: 17px;
}

.mr-18px {
  margin-right: 18px;
}

.mr-19px {
  margin-right: 19px;
}

.mr-20px {
  margin-right: 20px;
}

.mr-21px {
  margin-right: 21px;
}

.mr-22px {
  margin-right: 22px;
}

.mr-23px {
  margin-right: 23px;
}

.mr-24px {
  margin-right: 24px;
}

.mr-25px {
  margin-right: 25px;
}

.mr-26px {
  margin-right: 26px;
}

.mr-27px {
  margin-right: 27px;
}

.mr-28px {
  margin-right: 28px;
}

.mr-29px {
  margin-right: 29px;
}

.mr-30px {
  margin-right: 30px;
}

.mr-31px {
  margin-right: 31px;
}

.mr-32px {
  margin-right: 32px;
}

.mr-33px {
  margin-right: 33px;
}

.mr-34px {
  margin-right: 34px;
}

.mr-35px {
  margin-right: 35px;
}

.mr-36px {
  margin-right: 36px;
}

.mr-37px {
  margin-right: 37px;
}

.mr-38px {
  margin-right: 38px;
}

.mr-39px {
  margin-right: 39px;
}

.mr-40px {
  margin-right: 40px;
}

.mr-41px {
  margin-right: 41px;
}

.mr-42px {
  margin-right: 42px;
}

.mr-43px {
  margin-right: 43px;
}

.mr-44px {
  margin-right: 44px;
}

.mr-45px {
  margin-right: 45px;
}

.mr-46px {
  margin-right: 46px;
}

.mr-47px {
  margin-right: 47px;
}

.mr-48px {
  margin-right: 48px;
}

.ml-0px {
  margin-left: 0;
}

.ml-1px {
  margin-left: 1px;
}

.ml-2px {
  margin-left: 2px;
}

.ml-3px {
  margin-left: 3px;
}

.ml-4px {
  margin-left: 4px;
}

.ml-5px {
  margin-left: 5px;
}

.ml-6px {
  margin-left: 6px;
}

.ml-7px {
  margin-left: 7px;
}

.ml-8px {
  margin-left: 8px;
}

.ml-9px {
  margin-left: 9px;
}

.ml-10px {
  margin-left: 10px;
}

.ml-11px {
  margin-left: 11px;
}

.ml-12px {
  margin-left: 12px;
}

.ml-13px {
  margin-left: 13px;
}

.ml-14px {
  margin-left: 14px;
}

.ml-15px {
  margin-left: 15px;
}

.ml-16px {
  margin-left: 16px;
}

.ml-17px {
  margin-left: 17px;
}

.ml-18px {
  margin-left: 18px;
}

.ml-19px {
  margin-left: 19px;
}

.ml-20px {
  margin-left: 20px;
}

.ml-21px {
  margin-left: 21px;
}

.ml-22px {
  margin-left: 22px;
}

.ml-23px {
  margin-left: 23px;
}

.ml-24px {
  margin-left: 24px;
}

.ml-25px {
  margin-left: 25px;
}

.ml-26px {
  margin-left: 26px;
}

.ml-27px {
  margin-left: 27px;
}

.ml-28px {
  margin-left: 28px;
}

.ml-29px {
  margin-left: 29px;
}

.ml-30px {
  margin-left: 30px;
}

.ml-31px {
  margin-left: 31px;
}

.ml-32px {
  margin-left: 32px;
}

.ml-33px {
  margin-left: 33px;
}

.ml-34px {
  margin-left: 34px;
}

.ml-35px {
  margin-left: 35px;
}

.ml-36px {
  margin-left: 36px;
}

.ml-37px {
  margin-left: 37px;
}

.ml-38px {
  margin-left: 38px;
}

.ml-39px {
  margin-left: 39px;
}

.ml-40px {
  margin-left: 40px;
}

.ml-41px {
  margin-left: 41px;
}

.ml-42px {
  margin-left: 42px;
}

.ml-43px {
  margin-left: 43px;
}

.ml-44px {
  margin-left: 44px;
}

.ml-45px {
  margin-left: 45px;
}

.ml-46px {
  margin-left: 46px;
}

.ml-47px {
  margin-left: 47px;
}

.ml-48px {
  margin-left: 48px;
}

.mr-0px {
  margin-right: 0;
}

.mr-1px {
  margin-right: 1px;
}

.mr-2px {
  margin-right: 2px;
}

.mr-3px {
  margin-right: 3px;
}

.mr-4px {
  margin-right: 4px;
}

.mr-5px {
  margin-right: 5px;
}

.mr-6px {
  margin-right: 6px;
}

.mr-7px {
  margin-right: 7px;
}

.mr-8px {
  margin-right: 8px;
}

.mr-9px {
  margin-right: 9px;
}

.mr-10px {
  margin-right: 10px;
}

.mr-11px {
  margin-right: 11px;
}

.mr-12px {
  margin-right: 12px;
}

.mr-13px {
  margin-right: 13px;
}

.mr-14px {
  margin-right: 14px;
}

.mr-15px {
  margin-right: 15px;
}

.mr-16px {
  margin-right: 16px;
}

.mr-17px {
  margin-right: 17px;
}

.mr-18px {
  margin-right: 18px;
}

.mr-19px {
  margin-right: 19px;
}

.mr-20px {
  margin-right: 20px;
}

.mr-21px {
  margin-right: 21px;
}

.mr-22px {
  margin-right: 22px;
}

.mr-23px {
  margin-right: 23px;
}

.mr-24px {
  margin-right: 24px;
}

.mr-25px {
  margin-right: 25px;
}

.mr-26px {
  margin-right: 26px;
}

.mr-27px {
  margin-right: 27px;
}

.mr-28px {
  margin-right: 28px;
}

.mr-29px {
  margin-right: 29px;
}

.mr-30px {
  margin-right: 30px;
}

.mr-31px {
  margin-right: 31px;
}

.mr-32px {
  margin-right: 32px;
}

.mr-33px {
  margin-right: 33px;
}

.mr-34px {
  margin-right: 34px;
}

.mr-35px {
  margin-right: 35px;
}

.mr-36px {
  margin-right: 36px;
}

.mr-37px {
  margin-right: 37px;
}

.mr-38px {
  margin-right: 38px;
}

.mr-39px {
  margin-right: 39px;
}

.mr-40px {
  margin-right: 40px;
}

.mr-41px {
  margin-right: 41px;
}

.mr-42px {
  margin-right: 42px;
}

.mr-43px {
  margin-right: 43px;
}

.mr-44px {
  margin-right: 44px;
}

.mr-45px {
  margin-right: 45px;
}

.mr-46px {
  margin-right: 46px;
}

.mr-47px {
  margin-right: 47px;
}

.mr-48px {
  margin-right: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-240 {
  padding-bottom: 240px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

@media (min-width: 991.9px) {
  .pt-desk-0 {
    padding-top: 0;
  }
  .pt-desk-130 {
    padding-top: 130px;
  }
  .pt-desk-140 {
    padding-top: 140px;
  }
  .pt-desk-150 {
    padding-top: 150px;
  }
  .pt-desk-160 {
    padding-top: 160px;
  }
  .pt-desk-170 {
    padding-top: 170px;
  }
  .pt-desk-180 {
    padding-top: 180px;
  }
  .pt-desk-190 {
    padding-top: 190px;
  }
  .pt-desk-200 {
    padding-top: 200px;
  }
  .pt-desk-210 {
    padding-top: 210px;
  }
  .pt-desk-220 {
    padding-top: 220px;
  }
  .pt-desk-230 {
    padding-top: 230px;
  }
  .pt-desk-240 {
    padding-top: 240px;
  }
  .pb-desk-0 {
    padding-bottom: 0;
  }
  .pb-desk-130 {
    padding-bottom: 130px;
  }
  .pb-desk-140 {
    padding-bottom: 140px;
  }
  .pb-desk-150 {
    padding-bottom: 150px;
  }
  .pb-desk-160 {
    padding-bottom: 160px;
  }
  .pb-desk-170 {
    padding-bottom: 170px;
  }
  .pb-desk-180 {
    padding-bottom: 180px;
  }
  .pb-desk-190 {
    padding-bottom: 190px;
  }
  .pb-desk-200 {
    padding-bottom: 200px;
  }
  .pb-desk-210 {
    padding-bottom: 210px;
  }
  .pb-desk-220 {
    padding-bottom: 220px;
  }
  .pb-desk-230 {
    padding-bottom: 230px;
  }
  .pb-desk-240 {
    padding-bottom: 240px;
  }
  .pt-desk-10 {
    padding-top: 10px;
  }
  .pt-desk-20 {
    padding-top: 20px;
  }
  .pt-desk-30 {
    padding-top: 30px;
  }
  .pt-desk-40 {
    padding-top: 40px;
  }
  .pt-desk-50 {
    padding-top: 50px;
  }
  .pt-desk-60 {
    padding-top: 60px;
  }
  .pt-desk-70 {
    padding-top: 70px;
  }
  .pt-desk-80 {
    padding-top: 80px;
  }
  .pt-desk-90 {
    padding-top: 90px;
  }
  .pt-desk-100 {
    padding-top: 100px;
  }
  .pt-desk-110 {
    padding-top: 110px;
  }
  .pt-desk-120 {
    padding-top: 120px;
  }
  .pb-desk-10 {
    padding-bottom: 10px;
  }
  .pb-desk-20 {
    padding-bottom: 20px;
  }
  .pb-desk-30 {
    padding-bottom: 30px;
  }
  .pb-desk-40 {
    padding-bottom: 40px;
  }
  .pb-desk-50 {
    padding-bottom: 50px;
  }
  .pb-desk-60 {
    padding-bottom: 60px;
  }
  .pb-desk-70 {
    padding-bottom: 70px;
  }
  .pb-desk-80 {
    padding-bottom: 80px;
  }
  .pb-desk-90 {
    padding-bottom: 90px;
  }
  .pb-desk-100 {
    padding-bottom: 100px;
  }
  .pb-desk-110 {
    padding-bottom: 110px;
  }
  .pb-desk-120 {
    padding-bottom: 120px;
  }
}
.mt-0px {
  margin-top: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-0px {
  margin-bottom: 0;
}

.mb-1px {
  margin-bottom: 1px;
}

.mb-2px {
  margin-bottom: 2px;
}

.mb-3px {
  margin-bottom: 3px;
}

.mb-4px {
  margin-bottom: 4px;
}

.mb-5px {
  margin-bottom: 5px;
}

.mb-6px {
  margin-bottom: 6px;
}

.mb-7px {
  margin-bottom: 7px;
}

.mb-8px {
  margin-bottom: 8px;
}

.mb-9px {
  margin-bottom: 9px;
}

.mb-10px {
  margin-bottom: 10px;
}

.mb-11px {
  margin-bottom: 11px;
}

.mb-12px {
  margin-bottom: 12px;
}

.mb-13px {
  margin-bottom: 13px;
}

.mb-14px {
  margin-bottom: 14px;
}

.mb-15px {
  margin-bottom: 15px;
}

.mb-16px {
  margin-bottom: 16px;
}

.mb-17px {
  margin-bottom: 17px;
}

.mb-18px {
  margin-bottom: 18px;
}

.mb-19px {
  margin-bottom: 19px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-21px {
  margin-bottom: 21px;
}

.mb-22px {
  margin-bottom: 22px;
}

.mb-23px {
  margin-bottom: 23px;
}

.mb-24px {
  margin-bottom: 24px;
}

.mb-25px {
  margin-bottom: 25px;
}

.mb-26px {
  margin-bottom: 26px;
}

.mb-27px {
  margin-bottom: 27px;
}

.mb-28px {
  margin-bottom: 28px;
}

.mb-29px {
  margin-bottom: 29px;
}

.mb-30px {
  margin-bottom: 30px;
}

.mb-31px {
  margin-bottom: 31px;
}

.mb-32px {
  margin-bottom: 32px;
}

.mb-33px {
  margin-bottom: 33px;
}

.mb-34px {
  margin-bottom: 34px;
}

.mb-35px {
  margin-bottom: 35px;
}

.mb-36px {
  margin-bottom: 36px;
}

.mb-37px {
  margin-bottom: 37px;
}

.mb-38px {
  margin-bottom: 38px;
}

.mb-39px {
  margin-bottom: 39px;
}

.mb-40px {
  margin-bottom: 40px;
}

.mb-41px {
  margin-bottom: 41px;
}

.mb-42px {
  margin-bottom: 42px;
}

.mb-43px {
  margin-bottom: 43px;
}

.mb-44px {
  margin-bottom: 44px;
}

.mb-45px {
  margin-bottom: 45px;
}

.mb-46px {
  margin-bottom: 46px;
}

.mb-47px {
  margin-bottom: 47px;
}

.mb-48px {
  margin-bottom: 48px;
}/*# sourceMappingURL=--base.css.map */