@charset "UTF-8";
/* ========================================
   IMPORTS
======================================== */
/* DM Sans - Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* ========================================
   LAYOUT & CONTAINER SYSTEM
======================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem; 
}

body.no-scroll {
  overflow: hidden;
}

/* Variables para breakpoints de containers */
:root {
  --container-sm: 540px;
  --container-md: 700px;
  --container-lg: 900px;
  --container-xl: 1000px;
  --container-xxl: 1190px;
  --container-xxxl: 1200px;
}

/* Container base - similar a Bootstrap */
.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

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

/* Breakpoints responsive - Bootstrap style */
@media (min-width: 576px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 992px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-xl);
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: var(--container-xxl);
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: var(--container-xxxl);
  }
}
/* Container fluid siempre ocupa el 100% */
.container-fluid {
  max-width: none;
  box-sizing: border-box;
}

/* ========================================
   SECTION TITLES
======================================== */
.section-title {
  font-weight: 700;
  color: var(--text-primary-title);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-bg);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 4rem;
  }
  .section-title::after {
    width: 80px;
    height: 4px;
    bottom: -10px;
  }
}
@media (min-width: 992px) {
  .section-title::after {
    width: 100px;
  }
}
/* ========================================
   CONTAINER ALIGNMENT UTILITIES
======================================== */
/* Container alineado a la izquierda */
.container-left {
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  position: relative;
}

/* Container alineado a la derecha */
.container-right {
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  position: relative;
}

/* Breakpoints para containers alineados */
@media (min-width: 768px) {
  .container-left {
    max-width: calc(var(--container-md) + (100vw - var(--container-md)) / 2);
    margin: 0;
    margin-right: auto;
  }
  .container-right {
    max-width: calc(var(--container-md) + (100vw - var(--container-md)) / 2);
    margin: 0;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .container-left {
    max-width: calc(var(--container-lg) + (100vw - var(--container-lg)) / 2);
  }
  .container-right {
    max-width: calc(var(--container-lg) + (100vw - var(--container-lg)) / 2);
  }
}
@media (min-width: 1200px) {
  .container-left {
    max-width: calc(var(--container-xl) + (100vw - var(--container-xl)) / 2);
  }
  .container-right {
    max-width: calc(var(--container-xl) + (100vw - var(--container-xl)) / 2);
  }
}
@media (min-width: 1400px) {
  .container-left {
    max-width: calc(var(--container-xxl) + (100vw - var(--container-xxl)) / 2);
  }
  .container-right {
    max-width: calc(var(--container-xxl) + (100vw - var(--container-xxl)) / 2);
  }
}
@media (min-width: 1600px) {
  .container-left {
    max-width: calc(var(--container-xxxl) + (100vw - var(--container-xxxl)) / 2);
  }
  .container-right {
    max-width: calc(var(--container-xxxl) + (100vw - var(--container-xxxl)) / 2);
  }
}
/* Difuminado entre secciones */
.section-blur {
  position: relative;
}

.section-blur::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.08) 70%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.section-blur-top {
  position: relative;
}

.section-blur-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.08) 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(241, 245, 249, 0.98);
  padding: 10px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-container nav {
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 0.8;
}

.logo .logo-dot {
  color: var(--accent-bg);
}

nav {
  background: none;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li {
  margin: 0;
  position: relative;
}

nav ul li a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
}

nav ul li a:hover {
  color: var(--text-primary-title);
  background: rgba(37, 99, 235, 0.1);
}

nav ul li.active a {
  color: var(--text-primary-title);
  background: rgba(37, 99, 235, 0.15);
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.lang-switch .lang-btn {
  appearance: none;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-tertiary);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch .lang-btn:hover {
  background: rgba(37, 99, 235, 0.08);
}

.lang-switch .lang-btn.active,
.lang-switch .lang-btn[aria-pressed=true] {
  background: rgba(37, 99, 235, 0.15);
  color: var(--text-primary-title);
  border-color: var(--accent-bg);
}

@media (max-width: 768px) {
  .lang-switch {
    margin-left: 0;
  }
}
/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    display: block;
    padding: 15px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
  }
  nav ul li:last-child a {
    border-bottom: none;
  }
}
/* ========================================
   HERO SECTION
======================================== */
#hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, rgba(255, 107, 107, 0.1) 100%);
  overflow: hidden;
  padding-top: 80px;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: var(--text-primary);
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

@media (max-width: 992px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.hero-text {
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-text {
    max-width: none;
    order: 1;
  }
}
.hero-title {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-title .hero-title-tupla {
  color: var(--text-primary);
}

.hero-title .hero-title-io {
  color: var(--accent-bg);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: normal;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 2rem;
  }
}
.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 90%;
}

@media (max-width: 768px) {
  .hero-description {
    max-width: 100%;
    font-size: 1rem;
  }
}
.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero-cta {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  #hero {
    align-items: flex-start;
    padding-top: 96px;
  }
  .hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    min-height: calc(100vh - 96px);
    min-height: calc(100dvh - 96px);
  }
  .hero-text {
    display: contents;
  }
  .hero-subtitle {
    order: 1;
    text-align: center;
    margin: 45px auto 5px;
    max-width: 20ch;
    font-size: 2rem;
  }
  .hero-visual {
    order: 2;
    width: 100%;
    max-width: min(480px, 90vw);
    min-height: 55vh;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #animacion-figma .visualization-container-mobile {
    min-height: 55vh;
    width: 100%;
    height: 100%;
  }
  .hero-scroll-indicator {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--accent-bg);
    opacity: 1;
    margin-top: auto;
    padding-bottom: 16px;
  }
  .hero-scroll-indicator__label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }
  .hero-benefits {
    order: 4;
    margin-top: 48px;
    padding-top: 16px;
    width: 100%;
    text-align: left;
  }
  .hero-cta {
    order: 5;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }
}
.hero-cta .btn-primary, .hero-cta .btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta .btn-primary {
  background: var(--accent-bg);
  color: white;
}

.hero-cta .btn-primary:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.hero-cta .btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.hero-cta .btn-secondary:hover {
  border-color: var(--accent-bg);
  color: var(--accent-bg);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scroll-indicator {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-scroll-indicator--hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.hero-scroll-indicator__label {
  font-size: 0.85rem;
  color: currentColor;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-scroll-indicator__arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  display: inline-block;
  transform: translateY(0) rotate(45deg);
  animation: hero-scroll-indicator-bounce 1.8s ease-in-out infinite;
}

@media (min-width: 769px) {
  .hero-scroll-indicator {
    display: none;
  }
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--card-gradient);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ========================================
   FLOATING CARDS MOBILE ANIMATION
======================================== */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 1400px) {
  .floating-card {
    padding: 10px 15px;
  }
}
.floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
}

.floating-card .card-content .card-icon {
  font-size: 1.5rem;
}

.floating-card.card-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

@media (max-width: 1400px) {
  .floating-card.card-1 {
    top: 18%;
  }
}
.floating-card.card-2 {
  top: 27%;
  right: 8%;
  animation-delay: 2s;
}

.floating-card.card-3 {
  bottom: 55%;
  left: 10%;
  animation-delay: 4s;
}

.floating-card.card-4 {
  top: 8%;
  right: 13%;
  animation-delay: 2s;
}

@media (max-width: 1400px) {
  .floating-card.card-4 {
    top: 5%;
  }
}
.floating-card.card-5 {
  bottom: 15%;
  right: 4%;
  animation-delay: 3s;
}

.floating-card.card-6 {
  top: 57%;
  left: 10%;
  right: unset;
  animation-delay: 5s;
}

@media (max-width: 1400px) {
  .floating-card.card-6 {
    top: 62%;
  }
}
.floating-card.card-7 {
  top: 45%;
  left: 49%;
  animation-delay: 2.5s;
}

@media (max-width: 1400px) {
  .floating-card.card-7 {
    top: 50%;
    left: 45%;
  }
}
.floating-card.card-8 {
  bottom: 8%;
  right: 45%;
  animation-delay: 3.5s;
}

@media (max-width: 1400px) {
  .floating-card.card-8 {
    bottom: 2%;
  }
}
@media (max-width: 768px) {
  .floating-card {
    padding: 12px 16px;
    border-radius: 8px;
    width: fit-content;
    max-width: 180px;
    height: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  .floating-card .card-content {
    gap: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .floating-card .card-content .card-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .floating-card.card-1 {
    top: 12%;
    left: 5%;
    animation: mobileCardSequence 15s ease-in-out infinite;
    animation-delay: 0s;
  }
  .floating-card.card-2 {
    top: 12%;
    right: 5%;
    animation: mobileCardSequence 15s ease-in-out infinite;
    animation-delay: 0.8s;
  }
  .floating-card.card-3 {
    top: 50%;
    left: 8%;
    animation: mobileCardSequence 15s ease-in-out infinite;
    animation-delay: 1.5s;
  }
  .floating-card.card-4 {
    top: 52%;
    right: 8%;
    animation: mobileCardSequence 15s ease-in-out infinite;
    animation-delay: 5s;
  }
  .floating-card.card-5 {
    top: 12%;
    left: 5%;
    animation: mobileCardSequence 15s ease-in-out infinite;
    animation-delay: 5.8s;
  }
  .floating-card.card-6 {
    top: 50%;
    left: 5%;
    right: unset;
    animation: mobileCardSequence 15s ease-in-out infinite;
    animation-delay: 6.5s;
  }
  .floating-card.card-7 {
    top: 20%;
    right: 8%;
    animation: mobileCardSequence 15s ease-in-out infinite;
    animation-delay: 10s;
  }
  .floating-card.card-8 {
    top: 52%;
    left: 8%;
    animation: mobileCardSequence 15s ease-in-out infinite;
    animation-delay: 10.8s;
  }
}
@keyframes hero-scroll-indicator-bounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(45deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@media (max-width: 768px) {
  @keyframes mobileCardSequence {
    0% {
      opacity: 0;
      transform: translateY(30px) scale(0.85);
    }
    8% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    25% {
      opacity: 1;
      transform: translateY(-8px) scale(1);
    }
    33% {
      opacity: 0;
      transform: translateY(-25px) scale(0.9);
    }
    100% {
      opacity: 0;
      transform: translateY(30px) scale(0.85);
    }
  }
  @keyframes mobileCardSequenceAlt {
    0% {
      opacity: 0;
      transform: translateX(-20px) translateY(15px) scale(0.9);
    }
    10% {
      opacity: 1;
      transform: translateX(0) translateY(0) scale(1);
    }
    20% {
      transform: translateX(0) translateY(-5px) scale(1);
    }
    30% {
      opacity: 0;
      transform: translateX(20px) translateY(-20px) scale(0.85);
    }
    100% {
      opacity: 0;
      transform: translateX(-20px) translateY(15px) scale(0.9);
    }
  }
  .floating-card.card-2, .floating-card.card-5, .floating-card.card-7 {
    animation-name: mobileCardSequenceAlt !important;
  }
}
@media (max-width: 576px) {
  .floating-card {
    padding: 10px 14px;
    max-width: 160px;
    min-height: 36px;
  }
  .floating-card .card-content {
    font-size: 0.8rem;
    gap: 6px;
  }
  .floating-card .card-content .card-icon {
    font-size: 1.1rem;
  }
  .floating-card.card-1, .floating-card.card-5 {
    left: 3%;
  }
  .floating-card.card-2 {
    right: 3%;
  }
  .floating-card.card-3, .floating-card.card-8 {
    left: 6%;
  }
  .floating-card.card-4, .floating-card.card-7 {
    right: 6%;
  }
}
.social-links {
  position: absolute;
  bottom: 10px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .social-links {
    position: static;
    margin-top: 40px;
    justify-content: center;
  }
}
.social-links span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.social-links a {
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-bg);
}

.hero-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  z-index: 2;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  bottom: calc((100vw - 48px) / 2 * 1.5384615385 * -1 - (100vw - 48px) / 2 * 1.5384615385 / 2);
  box-sizing: border-box;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .hero-cards {
    padding: 0;
    gap: 25px;
    margin-top: 11.5vh;
    position: relative;
    bottom: unset;
    left: unset;
  }
}
.hero-cards .card {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 195/300;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  cursor: pointer;
  padding: 40px 20px;
  box-sizing: border-box;
  width: calc(50% - 9px);
}

@media (min-width: 768px) {
  .hero-cards .card {
    width: auto;
    flex: 1;
    aspect-ratio: 299.75/391;
  }
}
.hero-cards .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(179.96deg, rgba(33, 33, 33, 0) 0.04%, #212121 90.62%);
  z-index: 1;
  pointer-events: none;
}

.hero-cards .card:hover {
  transform: translateY(-3px);
}

.hero-cards .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-cards .card p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: white;
  z-index: 2;
}

/* ========================================
   HERO BENEFITS - 
======================================== */
.hero-benefits {
  margin-bottom: 40px;
}

.hero-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.hero-benefits .benefit-item .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  color: var(--text-primary, #fff);
}

.hero-benefits .benefit-item .benefit-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.hero-benefits .benefit-item .benefit-icon svg .icon {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefits .benefit-item .benefit-icon svg .icon-accent {
  fill: var(--accent-bg, #FF6B6B);
  stroke: none;
}

.hero-benefits .benefit-item .benefit-text {
  flex: 1;
}

.hero-benefits .benefit-item .benefit-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.hero-benefits .benefit-item .benefit-text p {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-benefits .benefit-item .benefit-text h3 {
    text-align: left;
    font-size: 1.3rem; 
  }
  .hero-benefits .benefit-item .benefit-text p {
    text-align: left;
    font-size: 1.2rem; 
  }
}
/* Estilos específicos para iconos de letras */
.letter-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.letter-icon text {
  font-family: "Space Grotesk", Inter, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  fill: currentColor;
  dominant-baseline: middle;
}

.letter-icon .icon-accent {
  fill: var(--accent-bg, #FF6B6B);
}

/* ========================================
   SOBRE NOSOTROS SECTION
======================================== */
#sobre-nosotros {
  background-color: var(--secondary-bg);
  color: var(--text-primary);
  padding: 80px 0;
  position: relative;
}

#sobre-nosotros h2 {
  font-size: 2rem;
  margin: 0;
}

.sobre-nosotros-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 992px) {
  .sobre-nosotros-content {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}
.sobre-nosotros-text {
  flex: 1;
}

.sobre-nosotros-text p {
  font-size: 1.4rem;
  line-height: normal;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .sobre-nosotros-text p {
    font-size: 1.3rem;
  }
}
.sobre-nosotros-text p:first-child {
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .sobre-nosotros-text p:first-child {
    font-size: 1.5rem;
  }
}
.sobre-nosotros-text p:last-child {
  margin-bottom: 0;
}

.sobre-nosotros-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex-shrink: 0;
  justify-content: center;
}

@media (max-width: 767px) {
  .sobre-nosotros-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 768px) {
  .sobre-nosotros-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .sobre-nosotros-stats {
    grid-template-columns: 1fr;
    gap: 30px;
    min-width: 200px;
  }
}
.stat {
  text-align: center;
  padding: 15px 15px;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 767px) {
  .stat {
    padding: 12px 8px;
    min-width: 0;
    overflow: hidden;
  }
}
.stat:hover {
  transform: translateY(-5px);
  border-color: var(--accent-bg);
}

@media (min-width: 768px) {
  .stat {
    padding: 30px 20px;
  }
}
@media (min-width: 992px) {
  .stat {
    text-align: left;
    padding: 25px;
  }
}
.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary-title);
  margin: 0 0 8px 0;
  line-height: normal;
}

@media (max-width: 767px) {
  .stat h3 {
    font-size: 2rem;
    line-height: 1.1;
    word-wrap: break-word;
  }
}
@media (min-width: 768px) {
  .stat h3 {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .stat h3 {
    font-size: 3.5rem;
  }
}
.stat p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .stat p {
    font-size: 0.85rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
}
@media (min-width: 768px) {
  .stat p {
    font-size: 1.2rem;
  }
}
/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sobre-nosotros-content {
  animation: fadeInUp 0.8s ease-out;
}

.stat {
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.stat:nth-child(2) {
  animation-delay: 0.4s;
}

.stat:nth-child(3) {
  animation-delay: 0.6s;
}

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

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

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

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

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

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

.m-0 {
  margin: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-6 {
  margin: 6rem !important;
}

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

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

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

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

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

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

.m-7 {
  margin: 7rem !important;
}

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

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

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

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

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

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

.m-8 {
  margin: 8rem !important;
}

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

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

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

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

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

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

.m-9 {
  margin: 9rem !important;
}

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

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

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

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

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

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

.m-10 {
  margin: 10rem !important;
}

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

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

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

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

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

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

.m-11 {
  margin: 11rem !important;
}

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

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

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

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

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

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

.m-12 {
  margin: 12rem !important;
}

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

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

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

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

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

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

.m-13 {
  margin: 13rem !important;
}

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

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

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

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

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

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

.m-14 {
  margin: 14rem !important;
}

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

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

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

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

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

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

.m-15 {
  margin: 15rem !important;
}

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

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

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

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

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

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

.m-16 {
  margin: 16rem !important;
}

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

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

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

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

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

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

.m-17 {
  margin: 17rem !important;
}

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

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

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

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

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

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

.m-18 {
  margin: 18rem !important;
}

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

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

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

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

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

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

.m-19 {
  margin: 19rem !important;
}

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

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

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

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

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

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

.m-20 {
  margin: 20rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-6 {
  padding: 6rem !important;
}

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

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

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

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

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

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

.p-7 {
  padding: 7rem !important;
}

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

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

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

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

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

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

.p-8 {
  padding: 8rem !important;
}

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

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

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

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

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

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

.p-9 {
  padding: 9rem !important;
}

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

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

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

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

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

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

.p-10 {
  padding: 10rem !important;
}

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

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

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

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

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

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

.p-11 {
  padding: 11rem !important;
}

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

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

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

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

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

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

.p-12 {
  padding: 12rem !important;
}

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

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

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

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

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

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

.p-13 {
  padding: 13rem !important;
}

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

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

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

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

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

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

.p-14 {
  padding: 14rem !important;
}

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

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

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

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

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

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

.p-15 {
  padding: 15rem !important;
}

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

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

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

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

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

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

.p-16 {
  padding: 16rem !important;
}

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

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

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

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

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

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

.p-17 {
  padding: 17rem !important;
}

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

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

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

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

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

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

.p-18 {
  padding: 18rem !important;
}

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

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

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

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

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

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

.p-19 {
  padding: 19rem !important;
}

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

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

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

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

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

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

.p-20 {
  padding: 20rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .mt-sm-0 {
    margin-top: 0rem !important;
  }
  .mt-sm-1 {
    margin-top: 1rem !important;
  }
  .mt-sm-2 {
    margin-top: 2rem !important;
  }
  .mt-sm-3 {
    margin-top: 3rem !important;
  }
  .mt-sm-4 {
    margin-top: 4rem !important;
  }
  .mt-sm-5 {
    margin-top: 5rem !important;
  }
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  .mt-sm-7 {
    margin-top: 7rem !important;
  }
  .mt-sm-8 {
    margin-top: 8rem !important;
  }
  .mt-sm-9 {
    margin-top: 9rem !important;
  }
  .mt-sm-10 {
    margin-top: 10rem !important;
  }
  .mt-sm-11 {
    margin-top: 11rem !important;
  }
  .mt-sm-12 {
    margin-top: 12rem !important;
  }
  .mt-sm-13 {
    margin-top: 13rem !important;
  }
  .mt-sm-14 {
    margin-top: 14rem !important;
  }
  .mt-sm-15 {
    margin-top: 15rem !important;
  }
  .mt-sm-16 {
    margin-top: 16rem !important;
  }
  .mt-sm-17 {
    margin-top: 17rem !important;
  }
  .mt-sm-18 {
    margin-top: 18rem !important;
  }
  .mt-sm-19 {
    margin-top: 19rem !important;
  }
  .mt-sm-20 {
    margin-top: 20rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 768px) {
  .mt-md-0 {
    margin-top: 0rem !important;
  }
  .mt-md-1 {
    margin-top: 1rem !important;
  }
  .mt-md-2 {
    margin-top: 2rem !important;
  }
  .mt-md-3 {
    margin-top: 3rem !important;
  }
  .mt-md-4 {
    margin-top: 4rem !important;
  }
  .mt-md-5 {
    margin-top: 5rem !important;
  }
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  .mt-md-7 {
    margin-top: 7rem !important;
  }
  .mt-md-8 {
    margin-top: 8rem !important;
  }
  .mt-md-9 {
    margin-top: 9rem !important;
  }
  .mt-md-10 {
    margin-top: 10rem !important;
  }
  .mt-md-11 {
    margin-top: 11rem !important;
  }
  .mt-md-12 {
    margin-top: 12rem !important;
  }
  .mt-md-13 {
    margin-top: 13rem !important;
  }
  .mt-md-14 {
    margin-top: 14rem !important;
  }
  .mt-md-15 {
    margin-top: 15rem !important;
  }
  .mt-md-16 {
    margin-top: 16rem !important;
  }
  .mt-md-17 {
    margin-top: 17rem !important;
  }
  .mt-md-18 {
    margin-top: 18rem !important;
  }
  .mt-md-19 {
    margin-top: 19rem !important;
  }
  .mt-md-20 {
    margin-top: 20rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0rem !important;
  }
  .mt-lg-1 {
    margin-top: 1rem !important;
  }
  .mt-lg-2 {
    margin-top: 2rem !important;
  }
  .mt-lg-3 {
    margin-top: 3rem !important;
  }
  .mt-lg-4 {
    margin-top: 4rem !important;
  }
  .mt-lg-5 {
    margin-top: 5rem !important;
  }
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  .mt-lg-7 {
    margin-top: 7rem !important;
  }
  .mt-lg-8 {
    margin-top: 8rem !important;
  }
  .mt-lg-9 {
    margin-top: 9rem !important;
  }
  .mt-lg-10 {
    margin-top: 10rem !important;
  }
  .mt-lg-11 {
    margin-top: 11rem !important;
  }
  .mt-lg-12 {
    margin-top: 12rem !important;
  }
  .mt-lg-13 {
    margin-top: 13rem !important;
  }
  .mt-lg-14 {
    margin-top: 14rem !important;
  }
  .mt-lg-15 {
    margin-top: 15rem !important;
  }
  .mt-lg-16 {
    margin-top: 16rem !important;
  }
  .mt-lg-17 {
    margin-top: 17rem !important;
  }
  .mt-lg-18 {
    margin-top: 18rem !important;
  }
  .mt-lg-19 {
    margin-top: 19rem !important;
  }
  .mt-lg-20 {
    margin-top: 20rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 1200px) {
  .mt-xl-0 {
    margin-top: 0rem !important;
  }
  .mt-xl-1 {
    margin-top: 1rem !important;
  }
  .mt-xl-2 {
    margin-top: 2rem !important;
  }
  .mt-xl-3 {
    margin-top: 3rem !important;
  }
  .mt-xl-4 {
    margin-top: 4rem !important;
  }
  .mt-xl-5 {
    margin-top: 5rem !important;
  }
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  .mt-xl-7 {
    margin-top: 7rem !important;
  }
  .mt-xl-8 {
    margin-top: 8rem !important;
  }
  .mt-xl-9 {
    margin-top: 9rem !important;
  }
  .mt-xl-10 {
    margin-top: 10rem !important;
  }
  .mt-xl-11 {
    margin-top: 11rem !important;
  }
  .mt-xl-12 {
    margin-top: 12rem !important;
  }
  .mt-xl-13 {
    margin-top: 13rem !important;
  }
  .mt-xl-14 {
    margin-top: 14rem !important;
  }
  .mt-xl-15 {
    margin-top: 15rem !important;
  }
  .mt-xl-16 {
    margin-top: 16rem !important;
  }
  .mt-xl-17 {
    margin-top: 17rem !important;
  }
  .mt-xl-18 {
    margin-top: 18rem !important;
  }
  .mt-xl-19 {
    margin-top: 19rem !important;
  }
  .mt-xl-20 {
    margin-top: 20rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 1400px) {
  .mt-xxl-0 {
    margin-top: 0rem !important;
  }
  .mt-xxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxl-11 {
    margin-top: 11rem !important;
  }
  .mt-xxl-12 {
    margin-top: 12rem !important;
  }
  .mt-xxl-13 {
    margin-top: 13rem !important;
  }
  .mt-xxl-14 {
    margin-top: 14rem !important;
  }
  .mt-xxl-15 {
    margin-top: 15rem !important;
  }
  .mt-xxl-16 {
    margin-top: 16rem !important;
  }
  .mt-xxl-17 {
    margin-top: 17rem !important;
  }
  .mt-xxl-18 {
    margin-top: 18rem !important;
  }
  .mt-xxl-19 {
    margin-top: 19rem !important;
  }
  .mt-xxl-20 {
    margin-top: 20rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 1600px) {
  .mt-xxxl-0 {
    margin-top: 0rem !important;
  }
  .mt-xxxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxxl-11 {
    margin-top: 11rem !important;
  }
  .mt-xxxl-12 {
    margin-top: 12rem !important;
  }
  .mt-xxxl-13 {
    margin-top: 13rem !important;
  }
  .mt-xxxl-14 {
    margin-top: 14rem !important;
  }
  .mt-xxxl-15 {
    margin-top: 15rem !important;
  }
  .mt-xxxl-16 {
    margin-top: 16rem !important;
  }
  .mt-xxxl-17 {
    margin-top: 17rem !important;
  }
  .mt-xxxl-18 {
    margin-top: 18rem !important;
  }
  .mt-xxxl-19 {
    margin-top: 19rem !important;
  }
  .mt-xxxl-20 {
    margin-top: 20rem !important;
  }
  .mt-xxxl-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 576px) {
  .mr-sm-0 {
    margin-right: 0rem !important;
  }
  .mr-sm-1 {
    margin-right: 1rem !important;
  }
  .mr-sm-2 {
    margin-right: 2rem !important;
  }
  .mr-sm-3 {
    margin-right: 3rem !important;
  }
  .mr-sm-4 {
    margin-right: 4rem !important;
  }
  .mr-sm-5 {
    margin-right: 5rem !important;
  }
  .mr-sm-6 {
    margin-right: 6rem !important;
  }
  .mr-sm-7 {
    margin-right: 7rem !important;
  }
  .mr-sm-8 {
    margin-right: 8rem !important;
  }
  .mr-sm-9 {
    margin-right: 9rem !important;
  }
  .mr-sm-10 {
    margin-right: 10rem !important;
  }
  .mr-sm-11 {
    margin-right: 11rem !important;
  }
  .mr-sm-12 {
    margin-right: 12rem !important;
  }
  .mr-sm-13 {
    margin-right: 13rem !important;
  }
  .mr-sm-14 {
    margin-right: 14rem !important;
  }
  .mr-sm-15 {
    margin-right: 15rem !important;
  }
  .mr-sm-16 {
    margin-right: 16rem !important;
  }
  .mr-sm-17 {
    margin-right: 17rem !important;
  }
  .mr-sm-18 {
    margin-right: 18rem !important;
  }
  .mr-sm-19 {
    margin-right: 19rem !important;
  }
  .mr-sm-20 {
    margin-right: 20rem !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 768px) {
  .mr-md-0 {
    margin-right: 0rem !important;
  }
  .mr-md-1 {
    margin-right: 1rem !important;
  }
  .mr-md-2 {
    margin-right: 2rem !important;
  }
  .mr-md-3 {
    margin-right: 3rem !important;
  }
  .mr-md-4 {
    margin-right: 4rem !important;
  }
  .mr-md-5 {
    margin-right: 5rem !important;
  }
  .mr-md-6 {
    margin-right: 6rem !important;
  }
  .mr-md-7 {
    margin-right: 7rem !important;
  }
  .mr-md-8 {
    margin-right: 8rem !important;
  }
  .mr-md-9 {
    margin-right: 9rem !important;
  }
  .mr-md-10 {
    margin-right: 10rem !important;
  }
  .mr-md-11 {
    margin-right: 11rem !important;
  }
  .mr-md-12 {
    margin-right: 12rem !important;
  }
  .mr-md-13 {
    margin-right: 13rem !important;
  }
  .mr-md-14 {
    margin-right: 14rem !important;
  }
  .mr-md-15 {
    margin-right: 15rem !important;
  }
  .mr-md-16 {
    margin-right: 16rem !important;
  }
  .mr-md-17 {
    margin-right: 17rem !important;
  }
  .mr-md-18 {
    margin-right: 18rem !important;
  }
  .mr-md-19 {
    margin-right: 19rem !important;
  }
  .mr-md-20 {
    margin-right: 20rem !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 992px) {
  .mr-lg-0 {
    margin-right: 0rem !important;
  }
  .mr-lg-1 {
    margin-right: 1rem !important;
  }
  .mr-lg-2 {
    margin-right: 2rem !important;
  }
  .mr-lg-3 {
    margin-right: 3rem !important;
  }
  .mr-lg-4 {
    margin-right: 4rem !important;
  }
  .mr-lg-5 {
    margin-right: 5rem !important;
  }
  .mr-lg-6 {
    margin-right: 6rem !important;
  }
  .mr-lg-7 {
    margin-right: 7rem !important;
  }
  .mr-lg-8 {
    margin-right: 8rem !important;
  }
  .mr-lg-9 {
    margin-right: 9rem !important;
  }
  .mr-lg-10 {
    margin-right: 10rem !important;
  }
  .mr-lg-11 {
    margin-right: 11rem !important;
  }
  .mr-lg-12 {
    margin-right: 12rem !important;
  }
  .mr-lg-13 {
    margin-right: 13rem !important;
  }
  .mr-lg-14 {
    margin-right: 14rem !important;
  }
  .mr-lg-15 {
    margin-right: 15rem !important;
  }
  .mr-lg-16 {
    margin-right: 16rem !important;
  }
  .mr-lg-17 {
    margin-right: 17rem !important;
  }
  .mr-lg-18 {
    margin-right: 18rem !important;
  }
  .mr-lg-19 {
    margin-right: 19rem !important;
  }
  .mr-lg-20 {
    margin-right: 20rem !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1200px) {
  .mr-xl-0 {
    margin-right: 0rem !important;
  }
  .mr-xl-1 {
    margin-right: 1rem !important;
  }
  .mr-xl-2 {
    margin-right: 2rem !important;
  }
  .mr-xl-3 {
    margin-right: 3rem !important;
  }
  .mr-xl-4 {
    margin-right: 4rem !important;
  }
  .mr-xl-5 {
    margin-right: 5rem !important;
  }
  .mr-xl-6 {
    margin-right: 6rem !important;
  }
  .mr-xl-7 {
    margin-right: 7rem !important;
  }
  .mr-xl-8 {
    margin-right: 8rem !important;
  }
  .mr-xl-9 {
    margin-right: 9rem !important;
  }
  .mr-xl-10 {
    margin-right: 10rem !important;
  }
  .mr-xl-11 {
    margin-right: 11rem !important;
  }
  .mr-xl-12 {
    margin-right: 12rem !important;
  }
  .mr-xl-13 {
    margin-right: 13rem !important;
  }
  .mr-xl-14 {
    margin-right: 14rem !important;
  }
  .mr-xl-15 {
    margin-right: 15rem !important;
  }
  .mr-xl-16 {
    margin-right: 16rem !important;
  }
  .mr-xl-17 {
    margin-right: 17rem !important;
  }
  .mr-xl-18 {
    margin-right: 18rem !important;
  }
  .mr-xl-19 {
    margin-right: 19rem !important;
  }
  .mr-xl-20 {
    margin-right: 20rem !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1400px) {
  .mr-xxl-0 {
    margin-right: 0rem !important;
  }
  .mr-xxl-1 {
    margin-right: 1rem !important;
  }
  .mr-xxl-2 {
    margin-right: 2rem !important;
  }
  .mr-xxl-3 {
    margin-right: 3rem !important;
  }
  .mr-xxl-4 {
    margin-right: 4rem !important;
  }
  .mr-xxl-5 {
    margin-right: 5rem !important;
  }
  .mr-xxl-6 {
    margin-right: 6rem !important;
  }
  .mr-xxl-7 {
    margin-right: 7rem !important;
  }
  .mr-xxl-8 {
    margin-right: 8rem !important;
  }
  .mr-xxl-9 {
    margin-right: 9rem !important;
  }
  .mr-xxl-10 {
    margin-right: 10rem !important;
  }
  .mr-xxl-11 {
    margin-right: 11rem !important;
  }
  .mr-xxl-12 {
    margin-right: 12rem !important;
  }
  .mr-xxl-13 {
    margin-right: 13rem !important;
  }
  .mr-xxl-14 {
    margin-right: 14rem !important;
  }
  .mr-xxl-15 {
    margin-right: 15rem !important;
  }
  .mr-xxl-16 {
    margin-right: 16rem !important;
  }
  .mr-xxl-17 {
    margin-right: 17rem !important;
  }
  .mr-xxl-18 {
    margin-right: 18rem !important;
  }
  .mr-xxl-19 {
    margin-right: 19rem !important;
  }
  .mr-xxl-20 {
    margin-right: 20rem !important;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1600px) {
  .mr-xxxl-0 {
    margin-right: 0rem !important;
  }
  .mr-xxxl-1 {
    margin-right: 1rem !important;
  }
  .mr-xxxl-2 {
    margin-right: 2rem !important;
  }
  .mr-xxxl-3 {
    margin-right: 3rem !important;
  }
  .mr-xxxl-4 {
    margin-right: 4rem !important;
  }
  .mr-xxxl-5 {
    margin-right: 5rem !important;
  }
  .mr-xxxl-6 {
    margin-right: 6rem !important;
  }
  .mr-xxxl-7 {
    margin-right: 7rem !important;
  }
  .mr-xxxl-8 {
    margin-right: 8rem !important;
  }
  .mr-xxxl-9 {
    margin-right: 9rem !important;
  }
  .mr-xxxl-10 {
    margin-right: 10rem !important;
  }
  .mr-xxxl-11 {
    margin-right: 11rem !important;
  }
  .mr-xxxl-12 {
    margin-right: 12rem !important;
  }
  .mr-xxxl-13 {
    margin-right: 13rem !important;
  }
  .mr-xxxl-14 {
    margin-right: 14rem !important;
  }
  .mr-xxxl-15 {
    margin-right: 15rem !important;
  }
  .mr-xxxl-16 {
    margin-right: 16rem !important;
  }
  .mr-xxxl-17 {
    margin-right: 17rem !important;
  }
  .mr-xxxl-18 {
    margin-right: 18rem !important;
  }
  .mr-xxxl-19 {
    margin-right: 19rem !important;
  }
  .mr-xxxl-20 {
    margin-right: 20rem !important;
  }
  .mr-xxxl-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 576px) {
  .mb-sm-0 {
    margin-bottom: 0rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 11rem !important;
  }
  .mb-sm-12 {
    margin-bottom: 12rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 13rem !important;
  }
  .mb-sm-14 {
    margin-bottom: 14rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 15rem !important;
  }
  .mb-sm-16 {
    margin-bottom: 16rem !important;
  }
  .mb-sm-17 {
    margin-bottom: 17rem !important;
  }
  .mb-sm-18 {
    margin-bottom: 18rem !important;
  }
  .mb-sm-19 {
    margin-bottom: 19rem !important;
  }
  .mb-sm-20 {
    margin-bottom: 20rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .mb-md-0 {
    margin-bottom: 0rem !important;
  }
  .mb-md-1 {
    margin-bottom: 1rem !important;
  }
  .mb-md-2 {
    margin-bottom: 2rem !important;
  }
  .mb-md-3 {
    margin-bottom: 3rem !important;
  }
  .mb-md-4 {
    margin-bottom: 4rem !important;
  }
  .mb-md-5 {
    margin-bottom: 5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 7rem !important;
  }
  .mb-md-8 {
    margin-bottom: 8rem !important;
  }
  .mb-md-9 {
    margin-bottom: 9rem !important;
  }
  .mb-md-10 {
    margin-bottom: 10rem !important;
  }
  .mb-md-11 {
    margin-bottom: 11rem !important;
  }
  .mb-md-12 {
    margin-bottom: 12rem !important;
  }
  .mb-md-13 {
    margin-bottom: 13rem !important;
  }
  .mb-md-14 {
    margin-bottom: 14rem !important;
  }
  .mb-md-15 {
    margin-bottom: 15rem !important;
  }
  .mb-md-16 {
    margin-bottom: 16rem !important;
  }
  .mb-md-17 {
    margin-bottom: 17rem !important;
  }
  .mb-md-18 {
    margin-bottom: 18rem !important;
  }
  .mb-md-19 {
    margin-bottom: 19rem !important;
  }
  .mb-md-20 {
    margin-bottom: 20rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 11rem !important;
  }
  .mb-lg-12 {
    margin-bottom: 12rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 13rem !important;
  }
  .mb-lg-14 {
    margin-bottom: 14rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 15rem !important;
  }
  .mb-lg-16 {
    margin-bottom: 16rem !important;
  }
  .mb-lg-17 {
    margin-bottom: 17rem !important;
  }
  .mb-lg-18 {
    margin-bottom: 18rem !important;
  }
  .mb-lg-19 {
    margin-bottom: 19rem !important;
  }
  .mb-lg-20 {
    margin-bottom: 20rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-0 {
    margin-bottom: 0rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 11rem !important;
  }
  .mb-xl-12 {
    margin-bottom: 12rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xl-14 {
    margin-bottom: 14rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xl-16 {
    margin-bottom: 16rem !important;
  }
  .mb-xl-17 {
    margin-bottom: 17rem !important;
  }
  .mb-xl-18 {
    margin-bottom: 18rem !important;
  }
  .mb-xl-19 {
    margin-bottom: 19rem !important;
  }
  .mb-xl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 1400px) {
  .mb-xxl-0 {
    margin-bottom: 0rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-11 {
    margin-bottom: 11rem !important;
  }
  .mb-xxl-12 {
    margin-bottom: 12rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xxl-14 {
    margin-bottom: 14rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xxl-16 {
    margin-bottom: 16rem !important;
  }
  .mb-xxl-17 {
    margin-bottom: 17rem !important;
  }
  .mb-xxl-18 {
    margin-bottom: 18rem !important;
  }
  .mb-xxl-19 {
    margin-bottom: 19rem !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 1600px) {
  .mb-xxxl-0 {
    margin-bottom: 0rem !important;
  }
  .mb-xxxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxxl-11 {
    margin-bottom: 11rem !important;
  }
  .mb-xxxl-12 {
    margin-bottom: 12rem !important;
  }
  .mb-xxxl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xxxl-14 {
    margin-bottom: 14rem !important;
  }
  .mb-xxxl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xxxl-16 {
    margin-bottom: 16rem !important;
  }
  .mb-xxxl-17 {
    margin-bottom: 17rem !important;
  }
  .mb-xxxl-18 {
    margin-bottom: 18rem !important;
  }
  .mb-xxxl-19 {
    margin-bottom: 19rem !important;
  }
  .mb-xxxl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 576px) {
  .ml-sm-0 {
    margin-left: 0rem !important;
  }
  .ml-sm-1 {
    margin-left: 1rem !important;
  }
  .ml-sm-2 {
    margin-left: 2rem !important;
  }
  .ml-sm-3 {
    margin-left: 3rem !important;
  }
  .ml-sm-4 {
    margin-left: 4rem !important;
  }
  .ml-sm-5 {
    margin-left: 5rem !important;
  }
  .ml-sm-6 {
    margin-left: 6rem !important;
  }
  .ml-sm-7 {
    margin-left: 7rem !important;
  }
  .ml-sm-8 {
    margin-left: 8rem !important;
  }
  .ml-sm-9 {
    margin-left: 9rem !important;
  }
  .ml-sm-10 {
    margin-left: 10rem !important;
  }
  .ml-sm-11 {
    margin-left: 11rem !important;
  }
  .ml-sm-12 {
    margin-left: 12rem !important;
  }
  .ml-sm-13 {
    margin-left: 13rem !important;
  }
  .ml-sm-14 {
    margin-left: 14rem !important;
  }
  .ml-sm-15 {
    margin-left: 15rem !important;
  }
  .ml-sm-16 {
    margin-left: 16rem !important;
  }
  .ml-sm-17 {
    margin-left: 17rem !important;
  }
  .ml-sm-18 {
    margin-left: 18rem !important;
  }
  .ml-sm-19 {
    margin-left: 19rem !important;
  }
  .ml-sm-20 {
    margin-left: 20rem !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .ml-md-0 {
    margin-left: 0rem !important;
  }
  .ml-md-1 {
    margin-left: 1rem !important;
  }
  .ml-md-2 {
    margin-left: 2rem !important;
  }
  .ml-md-3 {
    margin-left: 3rem !important;
  }
  .ml-md-4 {
    margin-left: 4rem !important;
  }
  .ml-md-5 {
    margin-left: 5rem !important;
  }
  .ml-md-6 {
    margin-left: 6rem !important;
  }
  .ml-md-7 {
    margin-left: 7rem !important;
  }
  .ml-md-8 {
    margin-left: 8rem !important;
  }
  .ml-md-9 {
    margin-left: 9rem !important;
  }
  .ml-md-10 {
    margin-left: 10rem !important;
  }
  .ml-md-11 {
    margin-left: 11rem !important;
  }
  .ml-md-12 {
    margin-left: 12rem !important;
  }
  .ml-md-13 {
    margin-left: 13rem !important;
  }
  .ml-md-14 {
    margin-left: 14rem !important;
  }
  .ml-md-15 {
    margin-left: 15rem !important;
  }
  .ml-md-16 {
    margin-left: 16rem !important;
  }
  .ml-md-17 {
    margin-left: 17rem !important;
  }
  .ml-md-18 {
    margin-left: 18rem !important;
  }
  .ml-md-19 {
    margin-left: 19rem !important;
  }
  .ml-md-20 {
    margin-left: 20rem !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .ml-lg-0 {
    margin-left: 0rem !important;
  }
  .ml-lg-1 {
    margin-left: 1rem !important;
  }
  .ml-lg-2 {
    margin-left: 2rem !important;
  }
  .ml-lg-3 {
    margin-left: 3rem !important;
  }
  .ml-lg-4 {
    margin-left: 4rem !important;
  }
  .ml-lg-5 {
    margin-left: 5rem !important;
  }
  .ml-lg-6 {
    margin-left: 6rem !important;
  }
  .ml-lg-7 {
    margin-left: 7rem !important;
  }
  .ml-lg-8 {
    margin-left: 8rem !important;
  }
  .ml-lg-9 {
    margin-left: 9rem !important;
  }
  .ml-lg-10 {
    margin-left: 10rem !important;
  }
  .ml-lg-11 {
    margin-left: 11rem !important;
  }
  .ml-lg-12 {
    margin-left: 12rem !important;
  }
  .ml-lg-13 {
    margin-left: 13rem !important;
  }
  .ml-lg-14 {
    margin-left: 14rem !important;
  }
  .ml-lg-15 {
    margin-left: 15rem !important;
  }
  .ml-lg-16 {
    margin-left: 16rem !important;
  }
  .ml-lg-17 {
    margin-left: 17rem !important;
  }
  .ml-lg-18 {
    margin-left: 18rem !important;
  }
  .ml-lg-19 {
    margin-left: 19rem !important;
  }
  .ml-lg-20 {
    margin-left: 20rem !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .ml-xl-0 {
    margin-left: 0rem !important;
  }
  .ml-xl-1 {
    margin-left: 1rem !important;
  }
  .ml-xl-2 {
    margin-left: 2rem !important;
  }
  .ml-xl-3 {
    margin-left: 3rem !important;
  }
  .ml-xl-4 {
    margin-left: 4rem !important;
  }
  .ml-xl-5 {
    margin-left: 5rem !important;
  }
  .ml-xl-6 {
    margin-left: 6rem !important;
  }
  .ml-xl-7 {
    margin-left: 7rem !important;
  }
  .ml-xl-8 {
    margin-left: 8rem !important;
  }
  .ml-xl-9 {
    margin-left: 9rem !important;
  }
  .ml-xl-10 {
    margin-left: 10rem !important;
  }
  .ml-xl-11 {
    margin-left: 11rem !important;
  }
  .ml-xl-12 {
    margin-left: 12rem !important;
  }
  .ml-xl-13 {
    margin-left: 13rem !important;
  }
  .ml-xl-14 {
    margin-left: 14rem !important;
  }
  .ml-xl-15 {
    margin-left: 15rem !important;
  }
  .ml-xl-16 {
    margin-left: 16rem !important;
  }
  .ml-xl-17 {
    margin-left: 17rem !important;
  }
  .ml-xl-18 {
    margin-left: 18rem !important;
  }
  .ml-xl-19 {
    margin-left: 19rem !important;
  }
  .ml-xl-20 {
    margin-left: 20rem !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .ml-xxl-0 {
    margin-left: 0rem !important;
  }
  .ml-xxl-1 {
    margin-left: 1rem !important;
  }
  .ml-xxl-2 {
    margin-left: 2rem !important;
  }
  .ml-xxl-3 {
    margin-left: 3rem !important;
  }
  .ml-xxl-4 {
    margin-left: 4rem !important;
  }
  .ml-xxl-5 {
    margin-left: 5rem !important;
  }
  .ml-xxl-6 {
    margin-left: 6rem !important;
  }
  .ml-xxl-7 {
    margin-left: 7rem !important;
  }
  .ml-xxl-8 {
    margin-left: 8rem !important;
  }
  .ml-xxl-9 {
    margin-left: 9rem !important;
  }
  .ml-xxl-10 {
    margin-left: 10rem !important;
  }
  .ml-xxl-11 {
    margin-left: 11rem !important;
  }
  .ml-xxl-12 {
    margin-left: 12rem !important;
  }
  .ml-xxl-13 {
    margin-left: 13rem !important;
  }
  .ml-xxl-14 {
    margin-left: 14rem !important;
  }
  .ml-xxl-15 {
    margin-left: 15rem !important;
  }
  .ml-xxl-16 {
    margin-left: 16rem !important;
  }
  .ml-xxl-17 {
    margin-left: 17rem !important;
  }
  .ml-xxl-18 {
    margin-left: 18rem !important;
  }
  .ml-xxl-19 {
    margin-left: 19rem !important;
  }
  .ml-xxl-20 {
    margin-left: 20rem !important;
  }
  .ml-xxl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1600px) {
  .ml-xxxl-0 {
    margin-left: 0rem !important;
  }
  .ml-xxxl-1 {
    margin-left: 1rem !important;
  }
  .ml-xxxl-2 {
    margin-left: 2rem !important;
  }
  .ml-xxxl-3 {
    margin-left: 3rem !important;
  }
  .ml-xxxl-4 {
    margin-left: 4rem !important;
  }
  .ml-xxxl-5 {
    margin-left: 5rem !important;
  }
  .ml-xxxl-6 {
    margin-left: 6rem !important;
  }
  .ml-xxxl-7 {
    margin-left: 7rem !important;
  }
  .ml-xxxl-8 {
    margin-left: 8rem !important;
  }
  .ml-xxxl-9 {
    margin-left: 9rem !important;
  }
  .ml-xxxl-10 {
    margin-left: 10rem !important;
  }
  .ml-xxxl-11 {
    margin-left: 11rem !important;
  }
  .ml-xxxl-12 {
    margin-left: 12rem !important;
  }
  .ml-xxxl-13 {
    margin-left: 13rem !important;
  }
  .ml-xxxl-14 {
    margin-left: 14rem !important;
  }
  .ml-xxxl-15 {
    margin-left: 15rem !important;
  }
  .ml-xxxl-16 {
    margin-left: 16rem !important;
  }
  .ml-xxxl-17 {
    margin-left: 17rem !important;
  }
  .ml-xxxl-18 {
    margin-left: 18rem !important;
  }
  .ml-xxxl-19 {
    margin-left: 19rem !important;
  }
  .ml-xxxl-20 {
    margin-left: 20rem !important;
  }
  .ml-xxxl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 576px) {
  .mx-sm-0 {
    margin-left: 0rem !important;
  }
  .mx-sm-1 {
    margin-left: 1rem !important;
  }
  .mx-sm-2 {
    margin-left: 2rem !important;
  }
  .mx-sm-3 {
    margin-left: 3rem !important;
  }
  .mx-sm-4 {
    margin-left: 4rem !important;
  }
  .mx-sm-5 {
    margin-left: 5rem !important;
  }
  .mx-sm-6 {
    margin-left: 6rem !important;
  }
  .mx-sm-7 {
    margin-left: 7rem !important;
  }
  .mx-sm-8 {
    margin-left: 8rem !important;
  }
  .mx-sm-9 {
    margin-left: 9rem !important;
  }
  .mx-sm-10 {
    margin-left: 10rem !important;
  }
  .mx-sm-11 {
    margin-left: 11rem !important;
  }
  .mx-sm-12 {
    margin-left: 12rem !important;
  }
  .mx-sm-13 {
    margin-left: 13rem !important;
  }
  .mx-sm-14 {
    margin-left: 14rem !important;
  }
  .mx-sm-15 {
    margin-left: 15rem !important;
  }
  .mx-sm-16 {
    margin-left: 16rem !important;
  }
  .mx-sm-17 {
    margin-left: 17rem !important;
  }
  .mx-sm-18 {
    margin-left: 18rem !important;
  }
  .mx-sm-19 {
    margin-left: 19rem !important;
  }
  .mx-sm-20 {
    margin-left: 20rem !important;
  }
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .mx-md-0 {
    margin-left: 0rem !important;
  }
  .mx-md-1 {
    margin-left: 1rem !important;
  }
  .mx-md-2 {
    margin-left: 2rem !important;
  }
  .mx-md-3 {
    margin-left: 3rem !important;
  }
  .mx-md-4 {
    margin-left: 4rem !important;
  }
  .mx-md-5 {
    margin-left: 5rem !important;
  }
  .mx-md-6 {
    margin-left: 6rem !important;
  }
  .mx-md-7 {
    margin-left: 7rem !important;
  }
  .mx-md-8 {
    margin-left: 8rem !important;
  }
  .mx-md-9 {
    margin-left: 9rem !important;
  }
  .mx-md-10 {
    margin-left: 10rem !important;
  }
  .mx-md-11 {
    margin-left: 11rem !important;
  }
  .mx-md-12 {
    margin-left: 12rem !important;
  }
  .mx-md-13 {
    margin-left: 13rem !important;
  }
  .mx-md-14 {
    margin-left: 14rem !important;
  }
  .mx-md-15 {
    margin-left: 15rem !important;
  }
  .mx-md-16 {
    margin-left: 16rem !important;
  }
  .mx-md-17 {
    margin-left: 17rem !important;
  }
  .mx-md-18 {
    margin-left: 18rem !important;
  }
  .mx-md-19 {
    margin-left: 19rem !important;
  }
  .mx-md-20 {
    margin-left: 20rem !important;
  }
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .mx-lg-0 {
    margin-left: 0rem !important;
  }
  .mx-lg-1 {
    margin-left: 1rem !important;
  }
  .mx-lg-2 {
    margin-left: 2rem !important;
  }
  .mx-lg-3 {
    margin-left: 3rem !important;
  }
  .mx-lg-4 {
    margin-left: 4rem !important;
  }
  .mx-lg-5 {
    margin-left: 5rem !important;
  }
  .mx-lg-6 {
    margin-left: 6rem !important;
  }
  .mx-lg-7 {
    margin-left: 7rem !important;
  }
  .mx-lg-8 {
    margin-left: 8rem !important;
  }
  .mx-lg-9 {
    margin-left: 9rem !important;
  }
  .mx-lg-10 {
    margin-left: 10rem !important;
  }
  .mx-lg-11 {
    margin-left: 11rem !important;
  }
  .mx-lg-12 {
    margin-left: 12rem !important;
  }
  .mx-lg-13 {
    margin-left: 13rem !important;
  }
  .mx-lg-14 {
    margin-left: 14rem !important;
  }
  .mx-lg-15 {
    margin-left: 15rem !important;
  }
  .mx-lg-16 {
    margin-left: 16rem !important;
  }
  .mx-lg-17 {
    margin-left: 17rem !important;
  }
  .mx-lg-18 {
    margin-left: 18rem !important;
  }
  .mx-lg-19 {
    margin-left: 19rem !important;
  }
  .mx-lg-20 {
    margin-left: 20rem !important;
  }
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .mx-xl-0 {
    margin-left: 0rem !important;
  }
  .mx-xl-1 {
    margin-left: 1rem !important;
  }
  .mx-xl-2 {
    margin-left: 2rem !important;
  }
  .mx-xl-3 {
    margin-left: 3rem !important;
  }
  .mx-xl-4 {
    margin-left: 4rem !important;
  }
  .mx-xl-5 {
    margin-left: 5rem !important;
  }
  .mx-xl-6 {
    margin-left: 6rem !important;
  }
  .mx-xl-7 {
    margin-left: 7rem !important;
  }
  .mx-xl-8 {
    margin-left: 8rem !important;
  }
  .mx-xl-9 {
    margin-left: 9rem !important;
  }
  .mx-xl-10 {
    margin-left: 10rem !important;
  }
  .mx-xl-11 {
    margin-left: 11rem !important;
  }
  .mx-xl-12 {
    margin-left: 12rem !important;
  }
  .mx-xl-13 {
    margin-left: 13rem !important;
  }
  .mx-xl-14 {
    margin-left: 14rem !important;
  }
  .mx-xl-15 {
    margin-left: 15rem !important;
  }
  .mx-xl-16 {
    margin-left: 16rem !important;
  }
  .mx-xl-17 {
    margin-left: 17rem !important;
  }
  .mx-xl-18 {
    margin-left: 18rem !important;
  }
  .mx-xl-19 {
    margin-left: 19rem !important;
  }
  .mx-xl-20 {
    margin-left: 20rem !important;
  }
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .mx-xxl-0 {
    margin-left: 0rem !important;
  }
  .mx-xxl-1 {
    margin-left: 1rem !important;
  }
  .mx-xxl-2 {
    margin-left: 2rem !important;
  }
  .mx-xxl-3 {
    margin-left: 3rem !important;
  }
  .mx-xxl-4 {
    margin-left: 4rem !important;
  }
  .mx-xxl-5 {
    margin-left: 5rem !important;
  }
  .mx-xxl-6 {
    margin-left: 6rem !important;
  }
  .mx-xxl-7 {
    margin-left: 7rem !important;
  }
  .mx-xxl-8 {
    margin-left: 8rem !important;
  }
  .mx-xxl-9 {
    margin-left: 9rem !important;
  }
  .mx-xxl-10 {
    margin-left: 10rem !important;
  }
  .mx-xxl-11 {
    margin-left: 11rem !important;
  }
  .mx-xxl-12 {
    margin-left: 12rem !important;
  }
  .mx-xxl-13 {
    margin-left: 13rem !important;
  }
  .mx-xxl-14 {
    margin-left: 14rem !important;
  }
  .mx-xxl-15 {
    margin-left: 15rem !important;
  }
  .mx-xxl-16 {
    margin-left: 16rem !important;
  }
  .mx-xxl-17 {
    margin-left: 17rem !important;
  }
  .mx-xxl-18 {
    margin-left: 18rem !important;
  }
  .mx-xxl-19 {
    margin-left: 19rem !important;
  }
  .mx-xxl-20 {
    margin-left: 20rem !important;
  }
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1600px) {
  .mx-xxxl-0 {
    margin-left: 0rem !important;
  }
  .mx-xxxl-1 {
    margin-left: 1rem !important;
  }
  .mx-xxxl-2 {
    margin-left: 2rem !important;
  }
  .mx-xxxl-3 {
    margin-left: 3rem !important;
  }
  .mx-xxxl-4 {
    margin-left: 4rem !important;
  }
  .mx-xxxl-5 {
    margin-left: 5rem !important;
  }
  .mx-xxxl-6 {
    margin-left: 6rem !important;
  }
  .mx-xxxl-7 {
    margin-left: 7rem !important;
  }
  .mx-xxxl-8 {
    margin-left: 8rem !important;
  }
  .mx-xxxl-9 {
    margin-left: 9rem !important;
  }
  .mx-xxxl-10 {
    margin-left: 10rem !important;
  }
  .mx-xxxl-11 {
    margin-left: 11rem !important;
  }
  .mx-xxxl-12 {
    margin-left: 12rem !important;
  }
  .mx-xxxl-13 {
    margin-left: 13rem !important;
  }
  .mx-xxxl-14 {
    margin-left: 14rem !important;
  }
  .mx-xxxl-15 {
    margin-left: 15rem !important;
  }
  .mx-xxxl-16 {
    margin-left: 16rem !important;
  }
  .mx-xxxl-17 {
    margin-left: 17rem !important;
  }
  .mx-xxxl-18 {
    margin-left: 18rem !important;
  }
  .mx-xxxl-19 {
    margin-left: 19rem !important;
  }
  .mx-xxxl-20 {
    margin-left: 20rem !important;
  }
  .mx-xxxl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 576px) {
  .mx-sm-0 {
    margin-right: 0rem !important;
  }
  .mx-sm-1 {
    margin-right: 1rem !important;
  }
  .mx-sm-2 {
    margin-right: 2rem !important;
  }
  .mx-sm-3 {
    margin-right: 3rem !important;
  }
  .mx-sm-4 {
    margin-right: 4rem !important;
  }
  .mx-sm-5 {
    margin-right: 5rem !important;
  }
  .mx-sm-6 {
    margin-right: 6rem !important;
  }
  .mx-sm-7 {
    margin-right: 7rem !important;
  }
  .mx-sm-8 {
    margin-right: 8rem !important;
  }
  .mx-sm-9 {
    margin-right: 9rem !important;
  }
  .mx-sm-10 {
    margin-right: 10rem !important;
  }
  .mx-sm-11 {
    margin-right: 11rem !important;
  }
  .mx-sm-12 {
    margin-right: 12rem !important;
  }
  .mx-sm-13 {
    margin-right: 13rem !important;
  }
  .mx-sm-14 {
    margin-right: 14rem !important;
  }
  .mx-sm-15 {
    margin-right: 15rem !important;
  }
  .mx-sm-16 {
    margin-right: 16rem !important;
  }
  .mx-sm-17 {
    margin-right: 17rem !important;
  }
  .mx-sm-18 {
    margin-right: 18rem !important;
  }
  .mx-sm-19 {
    margin-right: 19rem !important;
  }
  .mx-sm-20 {
    margin-right: 20rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 768px) {
  .mx-md-0 {
    margin-right: 0rem !important;
  }
  .mx-md-1 {
    margin-right: 1rem !important;
  }
  .mx-md-2 {
    margin-right: 2rem !important;
  }
  .mx-md-3 {
    margin-right: 3rem !important;
  }
  .mx-md-4 {
    margin-right: 4rem !important;
  }
  .mx-md-5 {
    margin-right: 5rem !important;
  }
  .mx-md-6 {
    margin-right: 6rem !important;
  }
  .mx-md-7 {
    margin-right: 7rem !important;
  }
  .mx-md-8 {
    margin-right: 8rem !important;
  }
  .mx-md-9 {
    margin-right: 9rem !important;
  }
  .mx-md-10 {
    margin-right: 10rem !important;
  }
  .mx-md-11 {
    margin-right: 11rem !important;
  }
  .mx-md-12 {
    margin-right: 12rem !important;
  }
  .mx-md-13 {
    margin-right: 13rem !important;
  }
  .mx-md-14 {
    margin-right: 14rem !important;
  }
  .mx-md-15 {
    margin-right: 15rem !important;
  }
  .mx-md-16 {
    margin-right: 16rem !important;
  }
  .mx-md-17 {
    margin-right: 17rem !important;
  }
  .mx-md-18 {
    margin-right: 18rem !important;
  }
  .mx-md-19 {
    margin-right: 19rem !important;
  }
  .mx-md-20 {
    margin-right: 20rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 992px) {
  .mx-lg-0 {
    margin-right: 0rem !important;
  }
  .mx-lg-1 {
    margin-right: 1rem !important;
  }
  .mx-lg-2 {
    margin-right: 2rem !important;
  }
  .mx-lg-3 {
    margin-right: 3rem !important;
  }
  .mx-lg-4 {
    margin-right: 4rem !important;
  }
  .mx-lg-5 {
    margin-right: 5rem !important;
  }
  .mx-lg-6 {
    margin-right: 6rem !important;
  }
  .mx-lg-7 {
    margin-right: 7rem !important;
  }
  .mx-lg-8 {
    margin-right: 8rem !important;
  }
  .mx-lg-9 {
    margin-right: 9rem !important;
  }
  .mx-lg-10 {
    margin-right: 10rem !important;
  }
  .mx-lg-11 {
    margin-right: 11rem !important;
  }
  .mx-lg-12 {
    margin-right: 12rem !important;
  }
  .mx-lg-13 {
    margin-right: 13rem !important;
  }
  .mx-lg-14 {
    margin-right: 14rem !important;
  }
  .mx-lg-15 {
    margin-right: 15rem !important;
  }
  .mx-lg-16 {
    margin-right: 16rem !important;
  }
  .mx-lg-17 {
    margin-right: 17rem !important;
  }
  .mx-lg-18 {
    margin-right: 18rem !important;
  }
  .mx-lg-19 {
    margin-right: 19rem !important;
  }
  .mx-lg-20 {
    margin-right: 20rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1200px) {
  .mx-xl-0 {
    margin-right: 0rem !important;
  }
  .mx-xl-1 {
    margin-right: 1rem !important;
  }
  .mx-xl-2 {
    margin-right: 2rem !important;
  }
  .mx-xl-3 {
    margin-right: 3rem !important;
  }
  .mx-xl-4 {
    margin-right: 4rem !important;
  }
  .mx-xl-5 {
    margin-right: 5rem !important;
  }
  .mx-xl-6 {
    margin-right: 6rem !important;
  }
  .mx-xl-7 {
    margin-right: 7rem !important;
  }
  .mx-xl-8 {
    margin-right: 8rem !important;
  }
  .mx-xl-9 {
    margin-right: 9rem !important;
  }
  .mx-xl-10 {
    margin-right: 10rem !important;
  }
  .mx-xl-11 {
    margin-right: 11rem !important;
  }
  .mx-xl-12 {
    margin-right: 12rem !important;
  }
  .mx-xl-13 {
    margin-right: 13rem !important;
  }
  .mx-xl-14 {
    margin-right: 14rem !important;
  }
  .mx-xl-15 {
    margin-right: 15rem !important;
  }
  .mx-xl-16 {
    margin-right: 16rem !important;
  }
  .mx-xl-17 {
    margin-right: 17rem !important;
  }
  .mx-xl-18 {
    margin-right: 18rem !important;
  }
  .mx-xl-19 {
    margin-right: 19rem !important;
  }
  .mx-xl-20 {
    margin-right: 20rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1400px) {
  .mx-xxl-0 {
    margin-right: 0rem !important;
  }
  .mx-xxl-1 {
    margin-right: 1rem !important;
  }
  .mx-xxl-2 {
    margin-right: 2rem !important;
  }
  .mx-xxl-3 {
    margin-right: 3rem !important;
  }
  .mx-xxl-4 {
    margin-right: 4rem !important;
  }
  .mx-xxl-5 {
    margin-right: 5rem !important;
  }
  .mx-xxl-6 {
    margin-right: 6rem !important;
  }
  .mx-xxl-7 {
    margin-right: 7rem !important;
  }
  .mx-xxl-8 {
    margin-right: 8rem !important;
  }
  .mx-xxl-9 {
    margin-right: 9rem !important;
  }
  .mx-xxl-10 {
    margin-right: 10rem !important;
  }
  .mx-xxl-11 {
    margin-right: 11rem !important;
  }
  .mx-xxl-12 {
    margin-right: 12rem !important;
  }
  .mx-xxl-13 {
    margin-right: 13rem !important;
  }
  .mx-xxl-14 {
    margin-right: 14rem !important;
  }
  .mx-xxl-15 {
    margin-right: 15rem !important;
  }
  .mx-xxl-16 {
    margin-right: 16rem !important;
  }
  .mx-xxl-17 {
    margin-right: 17rem !important;
  }
  .mx-xxl-18 {
    margin-right: 18rem !important;
  }
  .mx-xxl-19 {
    margin-right: 19rem !important;
  }
  .mx-xxl-20 {
    margin-right: 20rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 1600px) {
  .mx-xxxl-0 {
    margin-right: 0rem !important;
  }
  .mx-xxxl-1 {
    margin-right: 1rem !important;
  }
  .mx-xxxl-2 {
    margin-right: 2rem !important;
  }
  .mx-xxxl-3 {
    margin-right: 3rem !important;
  }
  .mx-xxxl-4 {
    margin-right: 4rem !important;
  }
  .mx-xxxl-5 {
    margin-right: 5rem !important;
  }
  .mx-xxxl-6 {
    margin-right: 6rem !important;
  }
  .mx-xxxl-7 {
    margin-right: 7rem !important;
  }
  .mx-xxxl-8 {
    margin-right: 8rem !important;
  }
  .mx-xxxl-9 {
    margin-right: 9rem !important;
  }
  .mx-xxxl-10 {
    margin-right: 10rem !important;
  }
  .mx-xxxl-11 {
    margin-right: 11rem !important;
  }
  .mx-xxxl-12 {
    margin-right: 12rem !important;
  }
  .mx-xxxl-13 {
    margin-right: 13rem !important;
  }
  .mx-xxxl-14 {
    margin-right: 14rem !important;
  }
  .mx-xxxl-15 {
    margin-right: 15rem !important;
  }
  .mx-xxxl-16 {
    margin-right: 16rem !important;
  }
  .mx-xxxl-17 {
    margin-right: 17rem !important;
  }
  .mx-xxxl-18 {
    margin-right: 18rem !important;
  }
  .mx-xxxl-19 {
    margin-right: 19rem !important;
  }
  .mx-xxxl-20 {
    margin-right: 20rem !important;
  }
  .mx-xxxl-auto {
    margin-right: auto !important;
  }
}
@media (min-width: 576px) {
  .my-sm-0 {
    margin-top: 0rem !important;
  }
  .my-sm-1 {
    margin-top: 1rem !important;
  }
  .my-sm-2 {
    margin-top: 2rem !important;
  }
  .my-sm-3 {
    margin-top: 3rem !important;
  }
  .my-sm-4 {
    margin-top: 4rem !important;
  }
  .my-sm-5 {
    margin-top: 5rem !important;
  }
  .my-sm-6 {
    margin-top: 6rem !important;
  }
  .my-sm-7 {
    margin-top: 7rem !important;
  }
  .my-sm-8 {
    margin-top: 8rem !important;
  }
  .my-sm-9 {
    margin-top: 9rem !important;
  }
  .my-sm-10 {
    margin-top: 10rem !important;
  }
  .my-sm-11 {
    margin-top: 11rem !important;
  }
  .my-sm-12 {
    margin-top: 12rem !important;
  }
  .my-sm-13 {
    margin-top: 13rem !important;
  }
  .my-sm-14 {
    margin-top: 14rem !important;
  }
  .my-sm-15 {
    margin-top: 15rem !important;
  }
  .my-sm-16 {
    margin-top: 16rem !important;
  }
  .my-sm-17 {
    margin-top: 17rem !important;
  }
  .my-sm-18 {
    margin-top: 18rem !important;
  }
  .my-sm-19 {
    margin-top: 19rem !important;
  }
  .my-sm-20 {
    margin-top: 20rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 768px) {
  .my-md-0 {
    margin-top: 0rem !important;
  }
  .my-md-1 {
    margin-top: 1rem !important;
  }
  .my-md-2 {
    margin-top: 2rem !important;
  }
  .my-md-3 {
    margin-top: 3rem !important;
  }
  .my-md-4 {
    margin-top: 4rem !important;
  }
  .my-md-5 {
    margin-top: 5rem !important;
  }
  .my-md-6 {
    margin-top: 6rem !important;
  }
  .my-md-7 {
    margin-top: 7rem !important;
  }
  .my-md-8 {
    margin-top: 8rem !important;
  }
  .my-md-9 {
    margin-top: 9rem !important;
  }
  .my-md-10 {
    margin-top: 10rem !important;
  }
  .my-md-11 {
    margin-top: 11rem !important;
  }
  .my-md-12 {
    margin-top: 12rem !important;
  }
  .my-md-13 {
    margin-top: 13rem !important;
  }
  .my-md-14 {
    margin-top: 14rem !important;
  }
  .my-md-15 {
    margin-top: 15rem !important;
  }
  .my-md-16 {
    margin-top: 16rem !important;
  }
  .my-md-17 {
    margin-top: 17rem !important;
  }
  .my-md-18 {
    margin-top: 18rem !important;
  }
  .my-md-19 {
    margin-top: 19rem !important;
  }
  .my-md-20 {
    margin-top: 20rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 992px) {
  .my-lg-0 {
    margin-top: 0rem !important;
  }
  .my-lg-1 {
    margin-top: 1rem !important;
  }
  .my-lg-2 {
    margin-top: 2rem !important;
  }
  .my-lg-3 {
    margin-top: 3rem !important;
  }
  .my-lg-4 {
    margin-top: 4rem !important;
  }
  .my-lg-5 {
    margin-top: 5rem !important;
  }
  .my-lg-6 {
    margin-top: 6rem !important;
  }
  .my-lg-7 {
    margin-top: 7rem !important;
  }
  .my-lg-8 {
    margin-top: 8rem !important;
  }
  .my-lg-9 {
    margin-top: 9rem !important;
  }
  .my-lg-10 {
    margin-top: 10rem !important;
  }
  .my-lg-11 {
    margin-top: 11rem !important;
  }
  .my-lg-12 {
    margin-top: 12rem !important;
  }
  .my-lg-13 {
    margin-top: 13rem !important;
  }
  .my-lg-14 {
    margin-top: 14rem !important;
  }
  .my-lg-15 {
    margin-top: 15rem !important;
  }
  .my-lg-16 {
    margin-top: 16rem !important;
  }
  .my-lg-17 {
    margin-top: 17rem !important;
  }
  .my-lg-18 {
    margin-top: 18rem !important;
  }
  .my-lg-19 {
    margin-top: 19rem !important;
  }
  .my-lg-20 {
    margin-top: 20rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 1200px) {
  .my-xl-0 {
    margin-top: 0rem !important;
  }
  .my-xl-1 {
    margin-top: 1rem !important;
  }
  .my-xl-2 {
    margin-top: 2rem !important;
  }
  .my-xl-3 {
    margin-top: 3rem !important;
  }
  .my-xl-4 {
    margin-top: 4rem !important;
  }
  .my-xl-5 {
    margin-top: 5rem !important;
  }
  .my-xl-6 {
    margin-top: 6rem !important;
  }
  .my-xl-7 {
    margin-top: 7rem !important;
  }
  .my-xl-8 {
    margin-top: 8rem !important;
  }
  .my-xl-9 {
    margin-top: 9rem !important;
  }
  .my-xl-10 {
    margin-top: 10rem !important;
  }
  .my-xl-11 {
    margin-top: 11rem !important;
  }
  .my-xl-12 {
    margin-top: 12rem !important;
  }
  .my-xl-13 {
    margin-top: 13rem !important;
  }
  .my-xl-14 {
    margin-top: 14rem !important;
  }
  .my-xl-15 {
    margin-top: 15rem !important;
  }
  .my-xl-16 {
    margin-top: 16rem !important;
  }
  .my-xl-17 {
    margin-top: 17rem !important;
  }
  .my-xl-18 {
    margin-top: 18rem !important;
  }
  .my-xl-19 {
    margin-top: 19rem !important;
  }
  .my-xl-20 {
    margin-top: 20rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 1400px) {
  .my-xxl-0 {
    margin-top: 0rem !important;
  }
  .my-xxl-1 {
    margin-top: 1rem !important;
  }
  .my-xxl-2 {
    margin-top: 2rem !important;
  }
  .my-xxl-3 {
    margin-top: 3rem !important;
  }
  .my-xxl-4 {
    margin-top: 4rem !important;
  }
  .my-xxl-5 {
    margin-top: 5rem !important;
  }
  .my-xxl-6 {
    margin-top: 6rem !important;
  }
  .my-xxl-7 {
    margin-top: 7rem !important;
  }
  .my-xxl-8 {
    margin-top: 8rem !important;
  }
  .my-xxl-9 {
    margin-top: 9rem !important;
  }
  .my-xxl-10 {
    margin-top: 10rem !important;
  }
  .my-xxl-11 {
    margin-top: 11rem !important;
  }
  .my-xxl-12 {
    margin-top: 12rem !important;
  }
  .my-xxl-13 {
    margin-top: 13rem !important;
  }
  .my-xxl-14 {
    margin-top: 14rem !important;
  }
  .my-xxl-15 {
    margin-top: 15rem !important;
  }
  .my-xxl-16 {
    margin-top: 16rem !important;
  }
  .my-xxl-17 {
    margin-top: 17rem !important;
  }
  .my-xxl-18 {
    margin-top: 18rem !important;
  }
  .my-xxl-19 {
    margin-top: 19rem !important;
  }
  .my-xxl-20 {
    margin-top: 20rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 1600px) {
  .my-xxxl-0 {
    margin-top: 0rem !important;
  }
  .my-xxxl-1 {
    margin-top: 1rem !important;
  }
  .my-xxxl-2 {
    margin-top: 2rem !important;
  }
  .my-xxxl-3 {
    margin-top: 3rem !important;
  }
  .my-xxxl-4 {
    margin-top: 4rem !important;
  }
  .my-xxxl-5 {
    margin-top: 5rem !important;
  }
  .my-xxxl-6 {
    margin-top: 6rem !important;
  }
  .my-xxxl-7 {
    margin-top: 7rem !important;
  }
  .my-xxxl-8 {
    margin-top: 8rem !important;
  }
  .my-xxxl-9 {
    margin-top: 9rem !important;
  }
  .my-xxxl-10 {
    margin-top: 10rem !important;
  }
  .my-xxxl-11 {
    margin-top: 11rem !important;
  }
  .my-xxxl-12 {
    margin-top: 12rem !important;
  }
  .my-xxxl-13 {
    margin-top: 13rem !important;
  }
  .my-xxxl-14 {
    margin-top: 14rem !important;
  }
  .my-xxxl-15 {
    margin-top: 15rem !important;
  }
  .my-xxxl-16 {
    margin-top: 16rem !important;
  }
  .my-xxxl-17 {
    margin-top: 17rem !important;
  }
  .my-xxxl-18 {
    margin-top: 18rem !important;
  }
  .my-xxxl-19 {
    margin-top: 19rem !important;
  }
  .my-xxxl-20 {
    margin-top: 20rem !important;
  }
  .my-xxxl-auto {
    margin-top: auto !important;
  }
}
@media (min-width: 576px) {
  .my-sm-0 {
    margin-bottom: 0rem !important;
  }
  .my-sm-1 {
    margin-bottom: 1rem !important;
  }
  .my-sm-2 {
    margin-bottom: 2rem !important;
  }
  .my-sm-3 {
    margin-bottom: 3rem !important;
  }
  .my-sm-4 {
    margin-bottom: 4rem !important;
  }
  .my-sm-5 {
    margin-bottom: 5rem !important;
  }
  .my-sm-6 {
    margin-bottom: 6rem !important;
  }
  .my-sm-7 {
    margin-bottom: 7rem !important;
  }
  .my-sm-8 {
    margin-bottom: 8rem !important;
  }
  .my-sm-9 {
    margin-bottom: 9rem !important;
  }
  .my-sm-10 {
    margin-bottom: 10rem !important;
  }
  .my-sm-11 {
    margin-bottom: 11rem !important;
  }
  .my-sm-12 {
    margin-bottom: 12rem !important;
  }
  .my-sm-13 {
    margin-bottom: 13rem !important;
  }
  .my-sm-14 {
    margin-bottom: 14rem !important;
  }
  .my-sm-15 {
    margin-bottom: 15rem !important;
  }
  .my-sm-16 {
    margin-bottom: 16rem !important;
  }
  .my-sm-17 {
    margin-bottom: 17rem !important;
  }
  .my-sm-18 {
    margin-bottom: 18rem !important;
  }
  .my-sm-19 {
    margin-bottom: 19rem !important;
  }
  .my-sm-20 {
    margin-bottom: 20rem !important;
  }
  .my-sm-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .my-md-0 {
    margin-bottom: 0rem !important;
  }
  .my-md-1 {
    margin-bottom: 1rem !important;
  }
  .my-md-2 {
    margin-bottom: 2rem !important;
  }
  .my-md-3 {
    margin-bottom: 3rem !important;
  }
  .my-md-4 {
    margin-bottom: 4rem !important;
  }
  .my-md-5 {
    margin-bottom: 5rem !important;
  }
  .my-md-6 {
    margin-bottom: 6rem !important;
  }
  .my-md-7 {
    margin-bottom: 7rem !important;
  }
  .my-md-8 {
    margin-bottom: 8rem !important;
  }
  .my-md-9 {
    margin-bottom: 9rem !important;
  }
  .my-md-10 {
    margin-bottom: 10rem !important;
  }
  .my-md-11 {
    margin-bottom: 11rem !important;
  }
  .my-md-12 {
    margin-bottom: 12rem !important;
  }
  .my-md-13 {
    margin-bottom: 13rem !important;
  }
  .my-md-14 {
    margin-bottom: 14rem !important;
  }
  .my-md-15 {
    margin-bottom: 15rem !important;
  }
  .my-md-16 {
    margin-bottom: 16rem !important;
  }
  .my-md-17 {
    margin-bottom: 17rem !important;
  }
  .my-md-18 {
    margin-bottom: 18rem !important;
  }
  .my-md-19 {
    margin-bottom: 19rem !important;
  }
  .my-md-20 {
    margin-bottom: 20rem !important;
  }
  .my-md-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 992px) {
  .my-lg-0 {
    margin-bottom: 0rem !important;
  }
  .my-lg-1 {
    margin-bottom: 1rem !important;
  }
  .my-lg-2 {
    margin-bottom: 2rem !important;
  }
  .my-lg-3 {
    margin-bottom: 3rem !important;
  }
  .my-lg-4 {
    margin-bottom: 4rem !important;
  }
  .my-lg-5 {
    margin-bottom: 5rem !important;
  }
  .my-lg-6 {
    margin-bottom: 6rem !important;
  }
  .my-lg-7 {
    margin-bottom: 7rem !important;
  }
  .my-lg-8 {
    margin-bottom: 8rem !important;
  }
  .my-lg-9 {
    margin-bottom: 9rem !important;
  }
  .my-lg-10 {
    margin-bottom: 10rem !important;
  }
  .my-lg-11 {
    margin-bottom: 11rem !important;
  }
  .my-lg-12 {
    margin-bottom: 12rem !important;
  }
  .my-lg-13 {
    margin-bottom: 13rem !important;
  }
  .my-lg-14 {
    margin-bottom: 14rem !important;
  }
  .my-lg-15 {
    margin-bottom: 15rem !important;
  }
  .my-lg-16 {
    margin-bottom: 16rem !important;
  }
  .my-lg-17 {
    margin-bottom: 17rem !important;
  }
  .my-lg-18 {
    margin-bottom: 18rem !important;
  }
  .my-lg-19 {
    margin-bottom: 19rem !important;
  }
  .my-lg-20 {
    margin-bottom: 20rem !important;
  }
  .my-lg-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 1200px) {
  .my-xl-0 {
    margin-bottom: 0rem !important;
  }
  .my-xl-1 {
    margin-bottom: 1rem !important;
  }
  .my-xl-2 {
    margin-bottom: 2rem !important;
  }
  .my-xl-3 {
    margin-bottom: 3rem !important;
  }
  .my-xl-4 {
    margin-bottom: 4rem !important;
  }
  .my-xl-5 {
    margin-bottom: 5rem !important;
  }
  .my-xl-6 {
    margin-bottom: 6rem !important;
  }
  .my-xl-7 {
    margin-bottom: 7rem !important;
  }
  .my-xl-8 {
    margin-bottom: 8rem !important;
  }
  .my-xl-9 {
    margin-bottom: 9rem !important;
  }
  .my-xl-10 {
    margin-bottom: 10rem !important;
  }
  .my-xl-11 {
    margin-bottom: 11rem !important;
  }
  .my-xl-12 {
    margin-bottom: 12rem !important;
  }
  .my-xl-13 {
    margin-bottom: 13rem !important;
  }
  .my-xl-14 {
    margin-bottom: 14rem !important;
  }
  .my-xl-15 {
    margin-bottom: 15rem !important;
  }
  .my-xl-16 {
    margin-bottom: 16rem !important;
  }
  .my-xl-17 {
    margin-bottom: 17rem !important;
  }
  .my-xl-18 {
    margin-bottom: 18rem !important;
  }
  .my-xl-19 {
    margin-bottom: 19rem !important;
  }
  .my-xl-20 {
    margin-bottom: 20rem !important;
  }
  .my-xl-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 1400px) {
  .my-xxl-0 {
    margin-bottom: 0rem !important;
  }
  .my-xxl-1 {
    margin-bottom: 1rem !important;
  }
  .my-xxl-2 {
    margin-bottom: 2rem !important;
  }
  .my-xxl-3 {
    margin-bottom: 3rem !important;
  }
  .my-xxl-4 {
    margin-bottom: 4rem !important;
  }
  .my-xxl-5 {
    margin-bottom: 5rem !important;
  }
  .my-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .my-xxl-7 {
    margin-bottom: 7rem !important;
  }
  .my-xxl-8 {
    margin-bottom: 8rem !important;
  }
  .my-xxl-9 {
    margin-bottom: 9rem !important;
  }
  .my-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .my-xxl-11 {
    margin-bottom: 11rem !important;
  }
  .my-xxl-12 {
    margin-bottom: 12rem !important;
  }
  .my-xxl-13 {
    margin-bottom: 13rem !important;
  }
  .my-xxl-14 {
    margin-bottom: 14rem !important;
  }
  .my-xxl-15 {
    margin-bottom: 15rem !important;
  }
  .my-xxl-16 {
    margin-bottom: 16rem !important;
  }
  .my-xxl-17 {
    margin-bottom: 17rem !important;
  }
  .my-xxl-18 {
    margin-bottom: 18rem !important;
  }
  .my-xxl-19 {
    margin-bottom: 19rem !important;
  }
  .my-xxl-20 {
    margin-bottom: 20rem !important;
  }
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 1600px) {
  .my-xxxl-0 {
    margin-bottom: 0rem !important;
  }
  .my-xxxl-1 {
    margin-bottom: 1rem !important;
  }
  .my-xxxl-2 {
    margin-bottom: 2rem !important;
  }
  .my-xxxl-3 {
    margin-bottom: 3rem !important;
  }
  .my-xxxl-4 {
    margin-bottom: 4rem !important;
  }
  .my-xxxl-5 {
    margin-bottom: 5rem !important;
  }
  .my-xxxl-6 {
    margin-bottom: 6rem !important;
  }
  .my-xxxl-7 {
    margin-bottom: 7rem !important;
  }
  .my-xxxl-8 {
    margin-bottom: 8rem !important;
  }
  .my-xxxl-9 {
    margin-bottom: 9rem !important;
  }
  .my-xxxl-10 {
    margin-bottom: 10rem !important;
  }
  .my-xxxl-11 {
    margin-bottom: 11rem !important;
  }
  .my-xxxl-12 {
    margin-bottom: 12rem !important;
  }
  .my-xxxl-13 {
    margin-bottom: 13rem !important;
  }
  .my-xxxl-14 {
    margin-bottom: 14rem !important;
  }
  .my-xxxl-15 {
    margin-bottom: 15rem !important;
  }
  .my-xxxl-16 {
    margin-bottom: 16rem !important;
  }
  .my-xxxl-17 {
    margin-bottom: 17rem !important;
  }
  .my-xxxl-18 {
    margin-bottom: 18rem !important;
  }
  .my-xxxl-19 {
    margin-bottom: 19rem !important;
  }
  .my-xxxl-20 {
    margin-bottom: 20rem !important;
  }
  .my-xxxl-auto {
    margin-bottom: auto !important;
  }
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0rem !important;
  }
  .m-sm-1 {
    margin: 1rem !important;
  }
  .m-sm-2 {
    margin: 2rem !important;
  }
  .m-sm-3 {
    margin: 3rem !important;
  }
  .m-sm-4 {
    margin: 4rem !important;
  }
  .m-sm-5 {
    margin: 5rem !important;
  }
  .m-sm-6 {
    margin: 6rem !important;
  }
  .m-sm-7 {
    margin: 7rem !important;
  }
  .m-sm-8 {
    margin: 8rem !important;
  }
  .m-sm-9 {
    margin: 9rem !important;
  }
  .m-sm-10 {
    margin: 10rem !important;
  }
  .m-sm-11 {
    margin: 11rem !important;
  }
  .m-sm-12 {
    margin: 12rem !important;
  }
  .m-sm-13 {
    margin: 13rem !important;
  }
  .m-sm-14 {
    margin: 14rem !important;
  }
  .m-sm-15 {
    margin: 15rem !important;
  }
  .m-sm-16 {
    margin: 16rem !important;
  }
  .m-sm-17 {
    margin: 17rem !important;
  }
  .m-sm-18 {
    margin: 18rem !important;
  }
  .m-sm-19 {
    margin: 19rem !important;
  }
  .m-sm-20 {
    margin: 20rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0rem !important;
  }
  .m-md-1 {
    margin: 1rem !important;
  }
  .m-md-2 {
    margin: 2rem !important;
  }
  .m-md-3 {
    margin: 3rem !important;
  }
  .m-md-4 {
    margin: 4rem !important;
  }
  .m-md-5 {
    margin: 5rem !important;
  }
  .m-md-6 {
    margin: 6rem !important;
  }
  .m-md-7 {
    margin: 7rem !important;
  }
  .m-md-8 {
    margin: 8rem !important;
  }
  .m-md-9 {
    margin: 9rem !important;
  }
  .m-md-10 {
    margin: 10rem !important;
  }
  .m-md-11 {
    margin: 11rem !important;
  }
  .m-md-12 {
    margin: 12rem !important;
  }
  .m-md-13 {
    margin: 13rem !important;
  }
  .m-md-14 {
    margin: 14rem !important;
  }
  .m-md-15 {
    margin: 15rem !important;
  }
  .m-md-16 {
    margin: 16rem !important;
  }
  .m-md-17 {
    margin: 17rem !important;
  }
  .m-md-18 {
    margin: 18rem !important;
  }
  .m-md-19 {
    margin: 19rem !important;
  }
  .m-md-20 {
    margin: 20rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0rem !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .m-lg-7 {
    margin: 7rem !important;
  }
  .m-lg-8 {
    margin: 8rem !important;
  }
  .m-lg-9 {
    margin: 9rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .m-lg-11 {
    margin: 11rem !important;
  }
  .m-lg-12 {
    margin: 12rem !important;
  }
  .m-lg-13 {
    margin: 13rem !important;
  }
  .m-lg-14 {
    margin: 14rem !important;
  }
  .m-lg-15 {
    margin: 15rem !important;
  }
  .m-lg-16 {
    margin: 16rem !important;
  }
  .m-lg-17 {
    margin: 17rem !important;
  }
  .m-lg-18 {
    margin: 18rem !important;
  }
  .m-lg-19 {
    margin: 19rem !important;
  }
  .m-lg-20 {
    margin: 20rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0rem !important;
  }
  .m-xl-1 {
    margin: 1rem !important;
  }
  .m-xl-2 {
    margin: 2rem !important;
  }
  .m-xl-3 {
    margin: 3rem !important;
  }
  .m-xl-4 {
    margin: 4rem !important;
  }
  .m-xl-5 {
    margin: 5rem !important;
  }
  .m-xl-6 {
    margin: 6rem !important;
  }
  .m-xl-7 {
    margin: 7rem !important;
  }
  .m-xl-8 {
    margin: 8rem !important;
  }
  .m-xl-9 {
    margin: 9rem !important;
  }
  .m-xl-10 {
    margin: 10rem !important;
  }
  .m-xl-11 {
    margin: 11rem !important;
  }
  .m-xl-12 {
    margin: 12rem !important;
  }
  .m-xl-13 {
    margin: 13rem !important;
  }
  .m-xl-14 {
    margin: 14rem !important;
  }
  .m-xl-15 {
    margin: 15rem !important;
  }
  .m-xl-16 {
    margin: 16rem !important;
  }
  .m-xl-17 {
    margin: 17rem !important;
  }
  .m-xl-18 {
    margin: 18rem !important;
  }
  .m-xl-19 {
    margin: 19rem !important;
  }
  .m-xl-20 {
    margin: 20rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0rem !important;
  }
  .m-xxl-1 {
    margin: 1rem !important;
  }
  .m-xxl-2 {
    margin: 2rem !important;
  }
  .m-xxl-3 {
    margin: 3rem !important;
  }
  .m-xxl-4 {
    margin: 4rem !important;
  }
  .m-xxl-5 {
    margin: 5rem !important;
  }
  .m-xxl-6 {
    margin: 6rem !important;
  }
  .m-xxl-7 {
    margin: 7rem !important;
  }
  .m-xxl-8 {
    margin: 8rem !important;
  }
  .m-xxl-9 {
    margin: 9rem !important;
  }
  .m-xxl-10 {
    margin: 10rem !important;
  }
  .m-xxl-11 {
    margin: 11rem !important;
  }
  .m-xxl-12 {
    margin: 12rem !important;
  }
  .m-xxl-13 {
    margin: 13rem !important;
  }
  .m-xxl-14 {
    margin: 14rem !important;
  }
  .m-xxl-15 {
    margin: 15rem !important;
  }
  .m-xxl-16 {
    margin: 16rem !important;
  }
  .m-xxl-17 {
    margin: 17rem !important;
  }
  .m-xxl-18 {
    margin: 18rem !important;
  }
  .m-xxl-19 {
    margin: 19rem !important;
  }
  .m-xxl-20 {
    margin: 20rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
}
@media (min-width: 1600px) {
  .m-xxxl-0 {
    margin: 0rem !important;
  }
  .m-xxxl-1 {
    margin: 1rem !important;
  }
  .m-xxxl-2 {
    margin: 2rem !important;
  }
  .m-xxxl-3 {
    margin: 3rem !important;
  }
  .m-xxxl-4 {
    margin: 4rem !important;
  }
  .m-xxxl-5 {
    margin: 5rem !important;
  }
  .m-xxxl-6 {
    margin: 6rem !important;
  }
  .m-xxxl-7 {
    margin: 7rem !important;
  }
  .m-xxxl-8 {
    margin: 8rem !important;
  }
  .m-xxxl-9 {
    margin: 9rem !important;
  }
  .m-xxxl-10 {
    margin: 10rem !important;
  }
  .m-xxxl-11 {
    margin: 11rem !important;
  }
  .m-xxxl-12 {
    margin: 12rem !important;
  }
  .m-xxxl-13 {
    margin: 13rem !important;
  }
  .m-xxxl-14 {
    margin: 14rem !important;
  }
  .m-xxxl-15 {
    margin: 15rem !important;
  }
  .m-xxxl-16 {
    margin: 16rem !important;
  }
  .m-xxxl-17 {
    margin: 17rem !important;
  }
  .m-xxxl-18 {
    margin: 18rem !important;
  }
  .m-xxxl-19 {
    margin: 19rem !important;
  }
  .m-xxxl-20 {
    margin: 20rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
}
@media (min-width: 576px) {
  .pt-sm-0 {
    padding-top: 0rem !important;
  }
  .pt-sm-1 {
    padding-top: 1rem !important;
  }
  .pt-sm-2 {
    padding-top: 2rem !important;
  }
  .pt-sm-3 {
    padding-top: 3rem !important;
  }
  .pt-sm-4 {
    padding-top: 4rem !important;
  }
  .pt-sm-5 {
    padding-top: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  .pt-sm-7 {
    padding-top: 7rem !important;
  }
  .pt-sm-8 {
    padding-top: 8rem !important;
  }
  .pt-sm-9 {
    padding-top: 9rem !important;
  }
  .pt-sm-10 {
    padding-top: 10rem !important;
  }
  .pt-sm-11 {
    padding-top: 11rem !important;
  }
  .pt-sm-12 {
    padding-top: 12rem !important;
  }
  .pt-sm-13 {
    padding-top: 13rem !important;
  }
  .pt-sm-14 {
    padding-top: 14rem !important;
  }
  .pt-sm-15 {
    padding-top: 15rem !important;
  }
  .pt-sm-16 {
    padding-top: 16rem !important;
  }
  .pt-sm-17 {
    padding-top: 17rem !important;
  }
  .pt-sm-18 {
    padding-top: 18rem !important;
  }
  .pt-sm-19 {
    padding-top: 19rem !important;
  }
  .pt-sm-20 {
    padding-top: 20rem !important;
  }
  .pt-sm-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 768px) {
  .pt-md-0 {
    padding-top: 0rem !important;
  }
  .pt-md-1 {
    padding-top: 1rem !important;
  }
  .pt-md-2 {
    padding-top: 2rem !important;
  }
  .pt-md-3 {
    padding-top: 3rem !important;
  }
  .pt-md-4 {
    padding-top: 4rem !important;
  }
  .pt-md-5 {
    padding-top: 5rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .pt-md-7 {
    padding-top: 7rem !important;
  }
  .pt-md-8 {
    padding-top: 8rem !important;
  }
  .pt-md-9 {
    padding-top: 9rem !important;
  }
  .pt-md-10 {
    padding-top: 10rem !important;
  }
  .pt-md-11 {
    padding-top: 11rem !important;
  }
  .pt-md-12 {
    padding-top: 12rem !important;
  }
  .pt-md-13 {
    padding-top: 13rem !important;
  }
  .pt-md-14 {
    padding-top: 14rem !important;
  }
  .pt-md-15 {
    padding-top: 15rem !important;
  }
  .pt-md-16 {
    padding-top: 16rem !important;
  }
  .pt-md-17 {
    padding-top: 17rem !important;
  }
  .pt-md-18 {
    padding-top: 18rem !important;
  }
  .pt-md-19 {
    padding-top: 19rem !important;
  }
  .pt-md-20 {
    padding-top: 20rem !important;
  }
  .pt-md-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 992px) {
  .pt-lg-0 {
    padding-top: 0rem !important;
  }
  .pt-lg-1 {
    padding-top: 1rem !important;
  }
  .pt-lg-2 {
    padding-top: 2rem !important;
  }
  .pt-lg-3 {
    padding-top: 3rem !important;
  }
  .pt-lg-4 {
    padding-top: 4rem !important;
  }
  .pt-lg-5 {
    padding-top: 5rem !important;
  }
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  .pt-lg-7 {
    padding-top: 7rem !important;
  }
  .pt-lg-8 {
    padding-top: 8rem !important;
  }
  .pt-lg-9 {
    padding-top: 9rem !important;
  }
  .pt-lg-10 {
    padding-top: 10rem !important;
  }
  .pt-lg-11 {
    padding-top: 11rem !important;
  }
  .pt-lg-12 {
    padding-top: 12rem !important;
  }
  .pt-lg-13 {
    padding-top: 13rem !important;
  }
  .pt-lg-14 {
    padding-top: 14rem !important;
  }
  .pt-lg-15 {
    padding-top: 15rem !important;
  }
  .pt-lg-16 {
    padding-top: 16rem !important;
  }
  .pt-lg-17 {
    padding-top: 17rem !important;
  }
  .pt-lg-18 {
    padding-top: 18rem !important;
  }
  .pt-lg-19 {
    padding-top: 19rem !important;
  }
  .pt-lg-20 {
    padding-top: 20rem !important;
  }
  .pt-lg-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 1200px) {
  .pt-xl-0 {
    padding-top: 0rem !important;
  }
  .pt-xl-1 {
    padding-top: 1rem !important;
  }
  .pt-xl-2 {
    padding-top: 2rem !important;
  }
  .pt-xl-3 {
    padding-top: 3rem !important;
  }
  .pt-xl-4 {
    padding-top: 4rem !important;
  }
  .pt-xl-5 {
    padding-top: 5rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .pt-xl-7 {
    padding-top: 7rem !important;
  }
  .pt-xl-8 {
    padding-top: 8rem !important;
  }
  .pt-xl-9 {
    padding-top: 9rem !important;
  }
  .pt-xl-10 {
    padding-top: 10rem !important;
  }
  .pt-xl-11 {
    padding-top: 11rem !important;
  }
  .pt-xl-12 {
    padding-top: 12rem !important;
  }
  .pt-xl-13 {
    padding-top: 13rem !important;
  }
  .pt-xl-14 {
    padding-top: 14rem !important;
  }
  .pt-xl-15 {
    padding-top: 15rem !important;
  }
  .pt-xl-16 {
    padding-top: 16rem !important;
  }
  .pt-xl-17 {
    padding-top: 17rem !important;
  }
  .pt-xl-18 {
    padding-top: 18rem !important;
  }
  .pt-xl-19 {
    padding-top: 19rem !important;
  }
  .pt-xl-20 {
    padding-top: 20rem !important;
  }
  .pt-xl-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 1400px) {
  .pt-xxl-0 {
    padding-top: 0rem !important;
  }
  .pt-xxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxl-10 {
    padding-top: 10rem !important;
  }
  .pt-xxl-11 {
    padding-top: 11rem !important;
  }
  .pt-xxl-12 {
    padding-top: 12rem !important;
  }
  .pt-xxl-13 {
    padding-top: 13rem !important;
  }
  .pt-xxl-14 {
    padding-top: 14rem !important;
  }
  .pt-xxl-15 {
    padding-top: 15rem !important;
  }
  .pt-xxl-16 {
    padding-top: 16rem !important;
  }
  .pt-xxl-17 {
    padding-top: 17rem !important;
  }
  .pt-xxl-18 {
    padding-top: 18rem !important;
  }
  .pt-xxl-19 {
    padding-top: 19rem !important;
  }
  .pt-xxl-20 {
    padding-top: 20rem !important;
  }
  .pt-xxl-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 1600px) {
  .pt-xxxl-0 {
    padding-top: 0rem !important;
  }
  .pt-xxxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxxl-10 {
    padding-top: 10rem !important;
  }
  .pt-xxxl-11 {
    padding-top: 11rem !important;
  }
  .pt-xxxl-12 {
    padding-top: 12rem !important;
  }
  .pt-xxxl-13 {
    padding-top: 13rem !important;
  }
  .pt-xxxl-14 {
    padding-top: 14rem !important;
  }
  .pt-xxxl-15 {
    padding-top: 15rem !important;
  }
  .pt-xxxl-16 {
    padding-top: 16rem !important;
  }
  .pt-xxxl-17 {
    padding-top: 17rem !important;
  }
  .pt-xxxl-18 {
    padding-top: 18rem !important;
  }
  .pt-xxxl-19 {
    padding-top: 19rem !important;
  }
  .pt-xxxl-20 {
    padding-top: 20rem !important;
  }
  .pt-xxxl-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 576px) {
  .pr-sm-0 {
    padding-right: 0rem !important;
  }
  .pr-sm-1 {
    padding-right: 1rem !important;
  }
  .pr-sm-2 {
    padding-right: 2rem !important;
  }
  .pr-sm-3 {
    padding-right: 3rem !important;
  }
  .pr-sm-4 {
    padding-right: 4rem !important;
  }
  .pr-sm-5 {
    padding-right: 5rem !important;
  }
  .pr-sm-6 {
    padding-right: 6rem !important;
  }
  .pr-sm-7 {
    padding-right: 7rem !important;
  }
  .pr-sm-8 {
    padding-right: 8rem !important;
  }
  .pr-sm-9 {
    padding-right: 9rem !important;
  }
  .pr-sm-10 {
    padding-right: 10rem !important;
  }
  .pr-sm-11 {
    padding-right: 11rem !important;
  }
  .pr-sm-12 {
    padding-right: 12rem !important;
  }
  .pr-sm-13 {
    padding-right: 13rem !important;
  }
  .pr-sm-14 {
    padding-right: 14rem !important;
  }
  .pr-sm-15 {
    padding-right: 15rem !important;
  }
  .pr-sm-16 {
    padding-right: 16rem !important;
  }
  .pr-sm-17 {
    padding-right: 17rem !important;
  }
  .pr-sm-18 {
    padding-right: 18rem !important;
  }
  .pr-sm-19 {
    padding-right: 19rem !important;
  }
  .pr-sm-20 {
    padding-right: 20rem !important;
  }
  .pr-sm-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 768px) {
  .pr-md-0 {
    padding-right: 0rem !important;
  }
  .pr-md-1 {
    padding-right: 1rem !important;
  }
  .pr-md-2 {
    padding-right: 2rem !important;
  }
  .pr-md-3 {
    padding-right: 3rem !important;
  }
  .pr-md-4 {
    padding-right: 4rem !important;
  }
  .pr-md-5 {
    padding-right: 5rem !important;
  }
  .pr-md-6 {
    padding-right: 6rem !important;
  }
  .pr-md-7 {
    padding-right: 7rem !important;
  }
  .pr-md-8 {
    padding-right: 8rem !important;
  }
  .pr-md-9 {
    padding-right: 9rem !important;
  }
  .pr-md-10 {
    padding-right: 10rem !important;
  }
  .pr-md-11 {
    padding-right: 11rem !important;
  }
  .pr-md-12 {
    padding-right: 12rem !important;
  }
  .pr-md-13 {
    padding-right: 13rem !important;
  }
  .pr-md-14 {
    padding-right: 14rem !important;
  }
  .pr-md-15 {
    padding-right: 15rem !important;
  }
  .pr-md-16 {
    padding-right: 16rem !important;
  }
  .pr-md-17 {
    padding-right: 17rem !important;
  }
  .pr-md-18 {
    padding-right: 18rem !important;
  }
  .pr-md-19 {
    padding-right: 19rem !important;
  }
  .pr-md-20 {
    padding-right: 20rem !important;
  }
  .pr-md-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 992px) {
  .pr-lg-0 {
    padding-right: 0rem !important;
  }
  .pr-lg-1 {
    padding-right: 1rem !important;
  }
  .pr-lg-2 {
    padding-right: 2rem !important;
  }
  .pr-lg-3 {
    padding-right: 3rem !important;
  }
  .pr-lg-4 {
    padding-right: 4rem !important;
  }
  .pr-lg-5 {
    padding-right: 5rem !important;
  }
  .pr-lg-6 {
    padding-right: 6rem !important;
  }
  .pr-lg-7 {
    padding-right: 7rem !important;
  }
  .pr-lg-8 {
    padding-right: 8rem !important;
  }
  .pr-lg-9 {
    padding-right: 9rem !important;
  }
  .pr-lg-10 {
    padding-right: 10rem !important;
  }
  .pr-lg-11 {
    padding-right: 11rem !important;
  }
  .pr-lg-12 {
    padding-right: 12rem !important;
  }
  .pr-lg-13 {
    padding-right: 13rem !important;
  }
  .pr-lg-14 {
    padding-right: 14rem !important;
  }
  .pr-lg-15 {
    padding-right: 15rem !important;
  }
  .pr-lg-16 {
    padding-right: 16rem !important;
  }
  .pr-lg-17 {
    padding-right: 17rem !important;
  }
  .pr-lg-18 {
    padding-right: 18rem !important;
  }
  .pr-lg-19 {
    padding-right: 19rem !important;
  }
  .pr-lg-20 {
    padding-right: 20rem !important;
  }
  .pr-lg-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 1200px) {
  .pr-xl-0 {
    padding-right: 0rem !important;
  }
  .pr-xl-1 {
    padding-right: 1rem !important;
  }
  .pr-xl-2 {
    padding-right: 2rem !important;
  }
  .pr-xl-3 {
    padding-right: 3rem !important;
  }
  .pr-xl-4 {
    padding-right: 4rem !important;
  }
  .pr-xl-5 {
    padding-right: 5rem !important;
  }
  .pr-xl-6 {
    padding-right: 6rem !important;
  }
  .pr-xl-7 {
    padding-right: 7rem !important;
  }
  .pr-xl-8 {
    padding-right: 8rem !important;
  }
  .pr-xl-9 {
    padding-right: 9rem !important;
  }
  .pr-xl-10 {
    padding-right: 10rem !important;
  }
  .pr-xl-11 {
    padding-right: 11rem !important;
  }
  .pr-xl-12 {
    padding-right: 12rem !important;
  }
  .pr-xl-13 {
    padding-right: 13rem !important;
  }
  .pr-xl-14 {
    padding-right: 14rem !important;
  }
  .pr-xl-15 {
    padding-right: 15rem !important;
  }
  .pr-xl-16 {
    padding-right: 16rem !important;
  }
  .pr-xl-17 {
    padding-right: 17rem !important;
  }
  .pr-xl-18 {
    padding-right: 18rem !important;
  }
  .pr-xl-19 {
    padding-right: 19rem !important;
  }
  .pr-xl-20 {
    padding-right: 20rem !important;
  }
  .pr-xl-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 1400px) {
  .pr-xxl-0 {
    padding-right: 0rem !important;
  }
  .pr-xxl-1 {
    padding-right: 1rem !important;
  }
  .pr-xxl-2 {
    padding-right: 2rem !important;
  }
  .pr-xxl-3 {
    padding-right: 3rem !important;
  }
  .pr-xxl-4 {
    padding-right: 4rem !important;
  }
  .pr-xxl-5 {
    padding-right: 5rem !important;
  }
  .pr-xxl-6 {
    padding-right: 6rem !important;
  }
  .pr-xxl-7 {
    padding-right: 7rem !important;
  }
  .pr-xxl-8 {
    padding-right: 8rem !important;
  }
  .pr-xxl-9 {
    padding-right: 9rem !important;
  }
  .pr-xxl-10 {
    padding-right: 10rem !important;
  }
  .pr-xxl-11 {
    padding-right: 11rem !important;
  }
  .pr-xxl-12 {
    padding-right: 12rem !important;
  }
  .pr-xxl-13 {
    padding-right: 13rem !important;
  }
  .pr-xxl-14 {
    padding-right: 14rem !important;
  }
  .pr-xxl-15 {
    padding-right: 15rem !important;
  }
  .pr-xxl-16 {
    padding-right: 16rem !important;
  }
  .pr-xxl-17 {
    padding-right: 17rem !important;
  }
  .pr-xxl-18 {
    padding-right: 18rem !important;
  }
  .pr-xxl-19 {
    padding-right: 19rem !important;
  }
  .pr-xxl-20 {
    padding-right: 20rem !important;
  }
  .pr-xxl-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 1600px) {
  .pr-xxxl-0 {
    padding-right: 0rem !important;
  }
  .pr-xxxl-1 {
    padding-right: 1rem !important;
  }
  .pr-xxxl-2 {
    padding-right: 2rem !important;
  }
  .pr-xxxl-3 {
    padding-right: 3rem !important;
  }
  .pr-xxxl-4 {
    padding-right: 4rem !important;
  }
  .pr-xxxl-5 {
    padding-right: 5rem !important;
  }
  .pr-xxxl-6 {
    padding-right: 6rem !important;
  }
  .pr-xxxl-7 {
    padding-right: 7rem !important;
  }
  .pr-xxxl-8 {
    padding-right: 8rem !important;
  }
  .pr-xxxl-9 {
    padding-right: 9rem !important;
  }
  .pr-xxxl-10 {
    padding-right: 10rem !important;
  }
  .pr-xxxl-11 {
    padding-right: 11rem !important;
  }
  .pr-xxxl-12 {
    padding-right: 12rem !important;
  }
  .pr-xxxl-13 {
    padding-right: 13rem !important;
  }
  .pr-xxxl-14 {
    padding-right: 14rem !important;
  }
  .pr-xxxl-15 {
    padding-right: 15rem !important;
  }
  .pr-xxxl-16 {
    padding-right: 16rem !important;
  }
  .pr-xxxl-17 {
    padding-right: 17rem !important;
  }
  .pr-xxxl-18 {
    padding-right: 18rem !important;
  }
  .pr-xxxl-19 {
    padding-right: 19rem !important;
  }
  .pr-xxxl-20 {
    padding-right: 20rem !important;
  }
  .pr-xxxl-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 576px) {
  .pb-sm-0 {
    padding-bottom: 0rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 10rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 11rem !important;
  }
  .pb-sm-12 {
    padding-bottom: 12rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 13rem !important;
  }
  .pb-sm-14 {
    padding-bottom: 14rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 15rem !important;
  }
  .pb-sm-16 {
    padding-bottom: 16rem !important;
  }
  .pb-sm-17 {
    padding-bottom: 17rem !important;
  }
  .pb-sm-18 {
    padding-bottom: 18rem !important;
  }
  .pb-sm-19 {
    padding-bottom: 19rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 20rem !important;
  }
  .pb-sm-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .pb-md-0 {
    padding-bottom: 0rem !important;
  }
  .pb-md-1 {
    padding-bottom: 1rem !important;
  }
  .pb-md-2 {
    padding-bottom: 2rem !important;
  }
  .pb-md-3 {
    padding-bottom: 3rem !important;
  }
  .pb-md-4 {
    padding-bottom: 4rem !important;
  }
  .pb-md-5 {
    padding-bottom: 5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  .pb-md-7 {
    padding-bottom: 7rem !important;
  }
  .pb-md-8 {
    padding-bottom: 8rem !important;
  }
  .pb-md-9 {
    padding-bottom: 9rem !important;
  }
  .pb-md-10 {
    padding-bottom: 10rem !important;
  }
  .pb-md-11 {
    padding-bottom: 11rem !important;
  }
  .pb-md-12 {
    padding-bottom: 12rem !important;
  }
  .pb-md-13 {
    padding-bottom: 13rem !important;
  }
  .pb-md-14 {
    padding-bottom: 14rem !important;
  }
  .pb-md-15 {
    padding-bottom: 15rem !important;
  }
  .pb-md-16 {
    padding-bottom: 16rem !important;
  }
  .pb-md-17 {
    padding-bottom: 17rem !important;
  }
  .pb-md-18 {
    padding-bottom: 18rem !important;
  }
  .pb-md-19 {
    padding-bottom: 19rem !important;
  }
  .pb-md-20 {
    padding-bottom: 20rem !important;
  }
  .pb-md-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 992px) {
  .pb-lg-0 {
    padding-bottom: 0rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 11rem !important;
  }
  .pb-lg-12 {
    padding-bottom: 12rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 13rem !important;
  }
  .pb-lg-14 {
    padding-bottom: 14rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 15rem !important;
  }
  .pb-lg-16 {
    padding-bottom: 16rem !important;
  }
  .pb-lg-17 {
    padding-bottom: 17rem !important;
  }
  .pb-lg-18 {
    padding-bottom: 18rem !important;
  }
  .pb-lg-19 {
    padding-bottom: 19rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 20rem !important;
  }
  .pb-lg-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 1200px) {
  .pb-xl-0 {
    padding-bottom: 0rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 11rem !important;
  }
  .pb-xl-12 {
    padding-bottom: 12rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xl-14 {
    padding-bottom: 14rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xl-16 {
    padding-bottom: 16rem !important;
  }
  .pb-xl-17 {
    padding-bottom: 17rem !important;
  }
  .pb-xl-18 {
    padding-bottom: 18rem !important;
  }
  .pb-xl-19 {
    padding-bottom: 19rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xl-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 1400px) {
  .pb-xxl-0 {
    padding-bottom: 0rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xxl-11 {
    padding-bottom: 11rem !important;
  }
  .pb-xxl-12 {
    padding-bottom: 12rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xxl-14 {
    padding-bottom: 14rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xxl-16 {
    padding-bottom: 16rem !important;
  }
  .pb-xxl-17 {
    padding-bottom: 17rem !important;
  }
  .pb-xxl-18 {
    padding-bottom: 18rem !important;
  }
  .pb-xxl-19 {
    padding-bottom: 19rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xxl-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 1600px) {
  .pb-xxxl-0 {
    padding-bottom: 0rem !important;
  }
  .pb-xxxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxxl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xxxl-11 {
    padding-bottom: 11rem !important;
  }
  .pb-xxxl-12 {
    padding-bottom: 12rem !important;
  }
  .pb-xxxl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xxxl-14 {
    padding-bottom: 14rem !important;
  }
  .pb-xxxl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xxxl-16 {
    padding-bottom: 16rem !important;
  }
  .pb-xxxl-17 {
    padding-bottom: 17rem !important;
  }
  .pb-xxxl-18 {
    padding-bottom: 18rem !important;
  }
  .pb-xxxl-19 {
    padding-bottom: 19rem !important;
  }
  .pb-xxxl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xxxl-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 576px) {
  .pl-sm-0 {
    padding-left: 0rem !important;
  }
  .pl-sm-1 {
    padding-left: 1rem !important;
  }
  .pl-sm-2 {
    padding-left: 2rem !important;
  }
  .pl-sm-3 {
    padding-left: 3rem !important;
  }
  .pl-sm-4 {
    padding-left: 4rem !important;
  }
  .pl-sm-5 {
    padding-left: 5rem !important;
  }
  .pl-sm-6 {
    padding-left: 6rem !important;
  }
  .pl-sm-7 {
    padding-left: 7rem !important;
  }
  .pl-sm-8 {
    padding-left: 8rem !important;
  }
  .pl-sm-9 {
    padding-left: 9rem !important;
  }
  .pl-sm-10 {
    padding-left: 10rem !important;
  }
  .pl-sm-11 {
    padding-left: 11rem !important;
  }
  .pl-sm-12 {
    padding-left: 12rem !important;
  }
  .pl-sm-13 {
    padding-left: 13rem !important;
  }
  .pl-sm-14 {
    padding-left: 14rem !important;
  }
  .pl-sm-15 {
    padding-left: 15rem !important;
  }
  .pl-sm-16 {
    padding-left: 16rem !important;
  }
  .pl-sm-17 {
    padding-left: 17rem !important;
  }
  .pl-sm-18 {
    padding-left: 18rem !important;
  }
  .pl-sm-19 {
    padding-left: 19rem !important;
  }
  .pl-sm-20 {
    padding-left: 20rem !important;
  }
  .pl-sm-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 768px) {
  .pl-md-0 {
    padding-left: 0rem !important;
  }
  .pl-md-1 {
    padding-left: 1rem !important;
  }
  .pl-md-2 {
    padding-left: 2rem !important;
  }
  .pl-md-3 {
    padding-left: 3rem !important;
  }
  .pl-md-4 {
    padding-left: 4rem !important;
  }
  .pl-md-5 {
    padding-left: 5rem !important;
  }
  .pl-md-6 {
    padding-left: 6rem !important;
  }
  .pl-md-7 {
    padding-left: 7rem !important;
  }
  .pl-md-8 {
    padding-left: 8rem !important;
  }
  .pl-md-9 {
    padding-left: 9rem !important;
  }
  .pl-md-10 {
    padding-left: 10rem !important;
  }
  .pl-md-11 {
    padding-left: 11rem !important;
  }
  .pl-md-12 {
    padding-left: 12rem !important;
  }
  .pl-md-13 {
    padding-left: 13rem !important;
  }
  .pl-md-14 {
    padding-left: 14rem !important;
  }
  .pl-md-15 {
    padding-left: 15rem !important;
  }
  .pl-md-16 {
    padding-left: 16rem !important;
  }
  .pl-md-17 {
    padding-left: 17rem !important;
  }
  .pl-md-18 {
    padding-left: 18rem !important;
  }
  .pl-md-19 {
    padding-left: 19rem !important;
  }
  .pl-md-20 {
    padding-left: 20rem !important;
  }
  .pl-md-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 992px) {
  .pl-lg-0 {
    padding-left: 0rem !important;
  }
  .pl-lg-1 {
    padding-left: 1rem !important;
  }
  .pl-lg-2 {
    padding-left: 2rem !important;
  }
  .pl-lg-3 {
    padding-left: 3rem !important;
  }
  .pl-lg-4 {
    padding-left: 4rem !important;
  }
  .pl-lg-5 {
    padding-left: 5rem !important;
  }
  .pl-lg-6 {
    padding-left: 6rem !important;
  }
  .pl-lg-7 {
    padding-left: 7rem !important;
  }
  .pl-lg-8 {
    padding-left: 8rem !important;
  }
  .pl-lg-9 {
    padding-left: 9rem !important;
  }
  .pl-lg-10 {
    padding-left: 10rem !important;
  }
  .pl-lg-11 {
    padding-left: 11rem !important;
  }
  .pl-lg-12 {
    padding-left: 12rem !important;
  }
  .pl-lg-13 {
    padding-left: 13rem !important;
  }
  .pl-lg-14 {
    padding-left: 14rem !important;
  }
  .pl-lg-15 {
    padding-left: 15rem !important;
  }
  .pl-lg-16 {
    padding-left: 16rem !important;
  }
  .pl-lg-17 {
    padding-left: 17rem !important;
  }
  .pl-lg-18 {
    padding-left: 18rem !important;
  }
  .pl-lg-19 {
    padding-left: 19rem !important;
  }
  .pl-lg-20 {
    padding-left: 20rem !important;
  }
  .pl-lg-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .pl-xl-0 {
    padding-left: 0rem !important;
  }
  .pl-xl-1 {
    padding-left: 1rem !important;
  }
  .pl-xl-2 {
    padding-left: 2rem !important;
  }
  .pl-xl-3 {
    padding-left: 3rem !important;
  }
  .pl-xl-4 {
    padding-left: 4rem !important;
  }
  .pl-xl-5 {
    padding-left: 5rem !important;
  }
  .pl-xl-6 {
    padding-left: 6rem !important;
  }
  .pl-xl-7 {
    padding-left: 7rem !important;
  }
  .pl-xl-8 {
    padding-left: 8rem !important;
  }
  .pl-xl-9 {
    padding-left: 9rem !important;
  }
  .pl-xl-10 {
    padding-left: 10rem !important;
  }
  .pl-xl-11 {
    padding-left: 11rem !important;
  }
  .pl-xl-12 {
    padding-left: 12rem !important;
  }
  .pl-xl-13 {
    padding-left: 13rem !important;
  }
  .pl-xl-14 {
    padding-left: 14rem !important;
  }
  .pl-xl-15 {
    padding-left: 15rem !important;
  }
  .pl-xl-16 {
    padding-left: 16rem !important;
  }
  .pl-xl-17 {
    padding-left: 17rem !important;
  }
  .pl-xl-18 {
    padding-left: 18rem !important;
  }
  .pl-xl-19 {
    padding-left: 19rem !important;
  }
  .pl-xl-20 {
    padding-left: 20rem !important;
  }
  .pl-xl-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .pl-xxl-0 {
    padding-left: 0rem !important;
  }
  .pl-xxl-1 {
    padding-left: 1rem !important;
  }
  .pl-xxl-2 {
    padding-left: 2rem !important;
  }
  .pl-xxl-3 {
    padding-left: 3rem !important;
  }
  .pl-xxl-4 {
    padding-left: 4rem !important;
  }
  .pl-xxl-5 {
    padding-left: 5rem !important;
  }
  .pl-xxl-6 {
    padding-left: 6rem !important;
  }
  .pl-xxl-7 {
    padding-left: 7rem !important;
  }
  .pl-xxl-8 {
    padding-left: 8rem !important;
  }
  .pl-xxl-9 {
    padding-left: 9rem !important;
  }
  .pl-xxl-10 {
    padding-left: 10rem !important;
  }
  .pl-xxl-11 {
    padding-left: 11rem !important;
  }
  .pl-xxl-12 {
    padding-left: 12rem !important;
  }
  .pl-xxl-13 {
    padding-left: 13rem !important;
  }
  .pl-xxl-14 {
    padding-left: 14rem !important;
  }
  .pl-xxl-15 {
    padding-left: 15rem !important;
  }
  .pl-xxl-16 {
    padding-left: 16rem !important;
  }
  .pl-xxl-17 {
    padding-left: 17rem !important;
  }
  .pl-xxl-18 {
    padding-left: 18rem !important;
  }
  .pl-xxl-19 {
    padding-left: 19rem !important;
  }
  .pl-xxl-20 {
    padding-left: 20rem !important;
  }
  .pl-xxl-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 1600px) {
  .pl-xxxl-0 {
    padding-left: 0rem !important;
  }
  .pl-xxxl-1 {
    padding-left: 1rem !important;
  }
  .pl-xxxl-2 {
    padding-left: 2rem !important;
  }
  .pl-xxxl-3 {
    padding-left: 3rem !important;
  }
  .pl-xxxl-4 {
    padding-left: 4rem !important;
  }
  .pl-xxxl-5 {
    padding-left: 5rem !important;
  }
  .pl-xxxl-6 {
    padding-left: 6rem !important;
  }
  .pl-xxxl-7 {
    padding-left: 7rem !important;
  }
  .pl-xxxl-8 {
    padding-left: 8rem !important;
  }
  .pl-xxxl-9 {
    padding-left: 9rem !important;
  }
  .pl-xxxl-10 {
    padding-left: 10rem !important;
  }
  .pl-xxxl-11 {
    padding-left: 11rem !important;
  }
  .pl-xxxl-12 {
    padding-left: 12rem !important;
  }
  .pl-xxxl-13 {
    padding-left: 13rem !important;
  }
  .pl-xxxl-14 {
    padding-left: 14rem !important;
  }
  .pl-xxxl-15 {
    padding-left: 15rem !important;
  }
  .pl-xxxl-16 {
    padding-left: 16rem !important;
  }
  .pl-xxxl-17 {
    padding-left: 17rem !important;
  }
  .pl-xxxl-18 {
    padding-left: 18rem !important;
  }
  .pl-xxxl-19 {
    padding-left: 19rem !important;
  }
  .pl-xxxl-20 {
    padding-left: 20rem !important;
  }
  .pl-xxxl-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 576px) {
  .px-sm-0 {
    padding-left: 0rem !important;
  }
  .px-sm-1 {
    padding-left: 1rem !important;
  }
  .px-sm-2 {
    padding-left: 2rem !important;
  }
  .px-sm-3 {
    padding-left: 3rem !important;
  }
  .px-sm-4 {
    padding-left: 4rem !important;
  }
  .px-sm-5 {
    padding-left: 5rem !important;
  }
  .px-sm-6 {
    padding-left: 6rem !important;
  }
  .px-sm-7 {
    padding-left: 7rem !important;
  }
  .px-sm-8 {
    padding-left: 8rem !important;
  }
  .px-sm-9 {
    padding-left: 9rem !important;
  }
  .px-sm-10 {
    padding-left: 10rem !important;
  }
  .px-sm-11 {
    padding-left: 11rem !important;
  }
  .px-sm-12 {
    padding-left: 12rem !important;
  }
  .px-sm-13 {
    padding-left: 13rem !important;
  }
  .px-sm-14 {
    padding-left: 14rem !important;
  }
  .px-sm-15 {
    padding-left: 15rem !important;
  }
  .px-sm-16 {
    padding-left: 16rem !important;
  }
  .px-sm-17 {
    padding-left: 17rem !important;
  }
  .px-sm-18 {
    padding-left: 18rem !important;
  }
  .px-sm-19 {
    padding-left: 19rem !important;
  }
  .px-sm-20 {
    padding-left: 20rem !important;
  }
  .px-sm-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 768px) {
  .px-md-0 {
    padding-left: 0rem !important;
  }
  .px-md-1 {
    padding-left: 1rem !important;
  }
  .px-md-2 {
    padding-left: 2rem !important;
  }
  .px-md-3 {
    padding-left: 3rem !important;
  }
  .px-md-4 {
    padding-left: 4rem !important;
  }
  .px-md-5 {
    padding-left: 5rem !important;
  }
  .px-md-6 {
    padding-left: 6rem !important;
  }
  .px-md-7 {
    padding-left: 7rem !important;
  }
  .px-md-8 {
    padding-left: 8rem !important;
  }
  .px-md-9 {
    padding-left: 9rem !important;
  }
  .px-md-10 {
    padding-left: 10rem !important;
  }
  .px-md-11 {
    padding-left: 11rem !important;
  }
  .px-md-12 {
    padding-left: 12rem !important;
  }
  .px-md-13 {
    padding-left: 13rem !important;
  }
  .px-md-14 {
    padding-left: 14rem !important;
  }
  .px-md-15 {
    padding-left: 15rem !important;
  }
  .px-md-16 {
    padding-left: 16rem !important;
  }
  .px-md-17 {
    padding-left: 17rem !important;
  }
  .px-md-18 {
    padding-left: 18rem !important;
  }
  .px-md-19 {
    padding-left: 19rem !important;
  }
  .px-md-20 {
    padding-left: 20rem !important;
  }
  .px-md-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 992px) {
  .px-lg-0 {
    padding-left: 0rem !important;
  }
  .px-lg-1 {
    padding-left: 1rem !important;
  }
  .px-lg-2 {
    padding-left: 2rem !important;
  }
  .px-lg-3 {
    padding-left: 3rem !important;
  }
  .px-lg-4 {
    padding-left: 4rem !important;
  }
  .px-lg-5 {
    padding-left: 5rem !important;
  }
  .px-lg-6 {
    padding-left: 6rem !important;
  }
  .px-lg-7 {
    padding-left: 7rem !important;
  }
  .px-lg-8 {
    padding-left: 8rem !important;
  }
  .px-lg-9 {
    padding-left: 9rem !important;
  }
  .px-lg-10 {
    padding-left: 10rem !important;
  }
  .px-lg-11 {
    padding-left: 11rem !important;
  }
  .px-lg-12 {
    padding-left: 12rem !important;
  }
  .px-lg-13 {
    padding-left: 13rem !important;
  }
  .px-lg-14 {
    padding-left: 14rem !important;
  }
  .px-lg-15 {
    padding-left: 15rem !important;
  }
  .px-lg-16 {
    padding-left: 16rem !important;
  }
  .px-lg-17 {
    padding-left: 17rem !important;
  }
  .px-lg-18 {
    padding-left: 18rem !important;
  }
  .px-lg-19 {
    padding-left: 19rem !important;
  }
  .px-lg-20 {
    padding-left: 20rem !important;
  }
  .px-lg-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .px-xl-0 {
    padding-left: 0rem !important;
  }
  .px-xl-1 {
    padding-left: 1rem !important;
  }
  .px-xl-2 {
    padding-left: 2rem !important;
  }
  .px-xl-3 {
    padding-left: 3rem !important;
  }
  .px-xl-4 {
    padding-left: 4rem !important;
  }
  .px-xl-5 {
    padding-left: 5rem !important;
  }
  .px-xl-6 {
    padding-left: 6rem !important;
  }
  .px-xl-7 {
    padding-left: 7rem !important;
  }
  .px-xl-8 {
    padding-left: 8rem !important;
  }
  .px-xl-9 {
    padding-left: 9rem !important;
  }
  .px-xl-10 {
    padding-left: 10rem !important;
  }
  .px-xl-11 {
    padding-left: 11rem !important;
  }
  .px-xl-12 {
    padding-left: 12rem !important;
  }
  .px-xl-13 {
    padding-left: 13rem !important;
  }
  .px-xl-14 {
    padding-left: 14rem !important;
  }
  .px-xl-15 {
    padding-left: 15rem !important;
  }
  .px-xl-16 {
    padding-left: 16rem !important;
  }
  .px-xl-17 {
    padding-left: 17rem !important;
  }
  .px-xl-18 {
    padding-left: 18rem !important;
  }
  .px-xl-19 {
    padding-left: 19rem !important;
  }
  .px-xl-20 {
    padding-left: 20rem !important;
  }
  .px-xl-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .px-xxl-0 {
    padding-left: 0rem !important;
  }
  .px-xxl-1 {
    padding-left: 1rem !important;
  }
  .px-xxl-2 {
    padding-left: 2rem !important;
  }
  .px-xxl-3 {
    padding-left: 3rem !important;
  }
  .px-xxl-4 {
    padding-left: 4rem !important;
  }
  .px-xxl-5 {
    padding-left: 5rem !important;
  }
  .px-xxl-6 {
    padding-left: 6rem !important;
  }
  .px-xxl-7 {
    padding-left: 7rem !important;
  }
  .px-xxl-8 {
    padding-left: 8rem !important;
  }
  .px-xxl-9 {
    padding-left: 9rem !important;
  }
  .px-xxl-10 {
    padding-left: 10rem !important;
  }
  .px-xxl-11 {
    padding-left: 11rem !important;
  }
  .px-xxl-12 {
    padding-left: 12rem !important;
  }
  .px-xxl-13 {
    padding-left: 13rem !important;
  }
  .px-xxl-14 {
    padding-left: 14rem !important;
  }
  .px-xxl-15 {
    padding-left: 15rem !important;
  }
  .px-xxl-16 {
    padding-left: 16rem !important;
  }
  .px-xxl-17 {
    padding-left: 17rem !important;
  }
  .px-xxl-18 {
    padding-left: 18rem !important;
  }
  .px-xxl-19 {
    padding-left: 19rem !important;
  }
  .px-xxl-20 {
    padding-left: 20rem !important;
  }
  .px-xxl-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 1600px) {
  .px-xxxl-0 {
    padding-left: 0rem !important;
  }
  .px-xxxl-1 {
    padding-left: 1rem !important;
  }
  .px-xxxl-2 {
    padding-left: 2rem !important;
  }
  .px-xxxl-3 {
    padding-left: 3rem !important;
  }
  .px-xxxl-4 {
    padding-left: 4rem !important;
  }
  .px-xxxl-5 {
    padding-left: 5rem !important;
  }
  .px-xxxl-6 {
    padding-left: 6rem !important;
  }
  .px-xxxl-7 {
    padding-left: 7rem !important;
  }
  .px-xxxl-8 {
    padding-left: 8rem !important;
  }
  .px-xxxl-9 {
    padding-left: 9rem !important;
  }
  .px-xxxl-10 {
    padding-left: 10rem !important;
  }
  .px-xxxl-11 {
    padding-left: 11rem !important;
  }
  .px-xxxl-12 {
    padding-left: 12rem !important;
  }
  .px-xxxl-13 {
    padding-left: 13rem !important;
  }
  .px-xxxl-14 {
    padding-left: 14rem !important;
  }
  .px-xxxl-15 {
    padding-left: 15rem !important;
  }
  .px-xxxl-16 {
    padding-left: 16rem !important;
  }
  .px-xxxl-17 {
    padding-left: 17rem !important;
  }
  .px-xxxl-18 {
    padding-left: 18rem !important;
  }
  .px-xxxl-19 {
    padding-left: 19rem !important;
  }
  .px-xxxl-20 {
    padding-left: 20rem !important;
  }
  .px-xxxl-auto {
    padding-left: auto !important;
  }
}
@media (min-width: 576px) {
  .px-sm-0 {
    padding-right: 0rem !important;
  }
  .px-sm-1 {
    padding-right: 1rem !important;
  }
  .px-sm-2 {
    padding-right: 2rem !important;
  }
  .px-sm-3 {
    padding-right: 3rem !important;
  }
  .px-sm-4 {
    padding-right: 4rem !important;
  }
  .px-sm-5 {
    padding-right: 5rem !important;
  }
  .px-sm-6 {
    padding-right: 6rem !important;
  }
  .px-sm-7 {
    padding-right: 7rem !important;
  }
  .px-sm-8 {
    padding-right: 8rem !important;
  }
  .px-sm-9 {
    padding-right: 9rem !important;
  }
  .px-sm-10 {
    padding-right: 10rem !important;
  }
  .px-sm-11 {
    padding-right: 11rem !important;
  }
  .px-sm-12 {
    padding-right: 12rem !important;
  }
  .px-sm-13 {
    padding-right: 13rem !important;
  }
  .px-sm-14 {
    padding-right: 14rem !important;
  }
  .px-sm-15 {
    padding-right: 15rem !important;
  }
  .px-sm-16 {
    padding-right: 16rem !important;
  }
  .px-sm-17 {
    padding-right: 17rem !important;
  }
  .px-sm-18 {
    padding-right: 18rem !important;
  }
  .px-sm-19 {
    padding-right: 19rem !important;
  }
  .px-sm-20 {
    padding-right: 20rem !important;
  }
  .px-sm-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 768px) {
  .px-md-0 {
    padding-right: 0rem !important;
  }
  .px-md-1 {
    padding-right: 1rem !important;
  }
  .px-md-2 {
    padding-right: 2rem !important;
  }
  .px-md-3 {
    padding-right: 3rem !important;
  }
  .px-md-4 {
    padding-right: 4rem !important;
  }
  .px-md-5 {
    padding-right: 5rem !important;
  }
  .px-md-6 {
    padding-right: 6rem !important;
  }
  .px-md-7 {
    padding-right: 7rem !important;
  }
  .px-md-8 {
    padding-right: 8rem !important;
  }
  .px-md-9 {
    padding-right: 9rem !important;
  }
  .px-md-10 {
    padding-right: 10rem !important;
  }
  .px-md-11 {
    padding-right: 11rem !important;
  }
  .px-md-12 {
    padding-right: 12rem !important;
  }
  .px-md-13 {
    padding-right: 13rem !important;
  }
  .px-md-14 {
    padding-right: 14rem !important;
  }
  .px-md-15 {
    padding-right: 15rem !important;
  }
  .px-md-16 {
    padding-right: 16rem !important;
  }
  .px-md-17 {
    padding-right: 17rem !important;
  }
  .px-md-18 {
    padding-right: 18rem !important;
  }
  .px-md-19 {
    padding-right: 19rem !important;
  }
  .px-md-20 {
    padding-right: 20rem !important;
  }
  .px-md-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 992px) {
  .px-lg-0 {
    padding-right: 0rem !important;
  }
  .px-lg-1 {
    padding-right: 1rem !important;
  }
  .px-lg-2 {
    padding-right: 2rem !important;
  }
  .px-lg-3 {
    padding-right: 3rem !important;
  }
  .px-lg-4 {
    padding-right: 4rem !important;
  }
  .px-lg-5 {
    padding-right: 5rem !important;
  }
  .px-lg-6 {
    padding-right: 6rem !important;
  }
  .px-lg-7 {
    padding-right: 7rem !important;
  }
  .px-lg-8 {
    padding-right: 8rem !important;
  }
  .px-lg-9 {
    padding-right: 9rem !important;
  }
  .px-lg-10 {
    padding-right: 10rem !important;
  }
  .px-lg-11 {
    padding-right: 11rem !important;
  }
  .px-lg-12 {
    padding-right: 12rem !important;
  }
  .px-lg-13 {
    padding-right: 13rem !important;
  }
  .px-lg-14 {
    padding-right: 14rem !important;
  }
  .px-lg-15 {
    padding-right: 15rem !important;
  }
  .px-lg-16 {
    padding-right: 16rem !important;
  }
  .px-lg-17 {
    padding-right: 17rem !important;
  }
  .px-lg-18 {
    padding-right: 18rem !important;
  }
  .px-lg-19 {
    padding-right: 19rem !important;
  }
  .px-lg-20 {
    padding-right: 20rem !important;
  }
  .px-lg-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 1200px) {
  .px-xl-0 {
    padding-right: 0rem !important;
  }
  .px-xl-1 {
    padding-right: 1rem !important;
  }
  .px-xl-2 {
    padding-right: 2rem !important;
  }
  .px-xl-3 {
    padding-right: 3rem !important;
  }
  .px-xl-4 {
    padding-right: 4rem !important;
  }
  .px-xl-5 {
    padding-right: 5rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
  }
  .px-xl-7 {
    padding-right: 7rem !important;
  }
  .px-xl-8 {
    padding-right: 8rem !important;
  }
  .px-xl-9 {
    padding-right: 9rem !important;
  }
  .px-xl-10 {
    padding-right: 10rem !important;
  }
  .px-xl-11 {
    padding-right: 11rem !important;
  }
  .px-xl-12 {
    padding-right: 12rem !important;
  }
  .px-xl-13 {
    padding-right: 13rem !important;
  }
  .px-xl-14 {
    padding-right: 14rem !important;
  }
  .px-xl-15 {
    padding-right: 15rem !important;
  }
  .px-xl-16 {
    padding-right: 16rem !important;
  }
  .px-xl-17 {
    padding-right: 17rem !important;
  }
  .px-xl-18 {
    padding-right: 18rem !important;
  }
  .px-xl-19 {
    padding-right: 19rem !important;
  }
  .px-xl-20 {
    padding-right: 20rem !important;
  }
  .px-xl-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 1400px) {
  .px-xxl-0 {
    padding-right: 0rem !important;
  }
  .px-xxl-1 {
    padding-right: 1rem !important;
  }
  .px-xxl-2 {
    padding-right: 2rem !important;
  }
  .px-xxl-3 {
    padding-right: 3rem !important;
  }
  .px-xxl-4 {
    padding-right: 4rem !important;
  }
  .px-xxl-5 {
    padding-right: 5rem !important;
  }
  .px-xxl-6 {
    padding-right: 6rem !important;
  }
  .px-xxl-7 {
    padding-right: 7rem !important;
  }
  .px-xxl-8 {
    padding-right: 8rem !important;
  }
  .px-xxl-9 {
    padding-right: 9rem !important;
  }
  .px-xxl-10 {
    padding-right: 10rem !important;
  }
  .px-xxl-11 {
    padding-right: 11rem !important;
  }
  .px-xxl-12 {
    padding-right: 12rem !important;
  }
  .px-xxl-13 {
    padding-right: 13rem !important;
  }
  .px-xxl-14 {
    padding-right: 14rem !important;
  }
  .px-xxl-15 {
    padding-right: 15rem !important;
  }
  .px-xxl-16 {
    padding-right: 16rem !important;
  }
  .px-xxl-17 {
    padding-right: 17rem !important;
  }
  .px-xxl-18 {
    padding-right: 18rem !important;
  }
  .px-xxl-19 {
    padding-right: 19rem !important;
  }
  .px-xxl-20 {
    padding-right: 20rem !important;
  }
  .px-xxl-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 1600px) {
  .px-xxxl-0 {
    padding-right: 0rem !important;
  }
  .px-xxxl-1 {
    padding-right: 1rem !important;
  }
  .px-xxxl-2 {
    padding-right: 2rem !important;
  }
  .px-xxxl-3 {
    padding-right: 3rem !important;
  }
  .px-xxxl-4 {
    padding-right: 4rem !important;
  }
  .px-xxxl-5 {
    padding-right: 5rem !important;
  }
  .px-xxxl-6 {
    padding-right: 6rem !important;
  }
  .px-xxxl-7 {
    padding-right: 7rem !important;
  }
  .px-xxxl-8 {
    padding-right: 8rem !important;
  }
  .px-xxxl-9 {
    padding-right: 9rem !important;
  }
  .px-xxxl-10 {
    padding-right: 10rem !important;
  }
  .px-xxxl-11 {
    padding-right: 11rem !important;
  }
  .px-xxxl-12 {
    padding-right: 12rem !important;
  }
  .px-xxxl-13 {
    padding-right: 13rem !important;
  }
  .px-xxxl-14 {
    padding-right: 14rem !important;
  }
  .px-xxxl-15 {
    padding-right: 15rem !important;
  }
  .px-xxxl-16 {
    padding-right: 16rem !important;
  }
  .px-xxxl-17 {
    padding-right: 17rem !important;
  }
  .px-xxxl-18 {
    padding-right: 18rem !important;
  }
  .px-xxxl-19 {
    padding-right: 19rem !important;
  }
  .px-xxxl-20 {
    padding-right: 20rem !important;
  }
  .px-xxxl-auto {
    padding-right: auto !important;
  }
}
@media (min-width: 576px) {
  .py-sm-0 {
    padding-top: 0rem !important;
  }
  .py-sm-1 {
    padding-top: 1rem !important;
  }
  .py-sm-2 {
    padding-top: 2rem !important;
  }
  .py-sm-3 {
    padding-top: 3rem !important;
  }
  .py-sm-4 {
    padding-top: 4rem !important;
  }
  .py-sm-5 {
    padding-top: 5rem !important;
  }
  .py-sm-6 {
    padding-top: 6rem !important;
  }
  .py-sm-7 {
    padding-top: 7rem !important;
  }
  .py-sm-8 {
    padding-top: 8rem !important;
  }
  .py-sm-9 {
    padding-top: 9rem !important;
  }
  .py-sm-10 {
    padding-top: 10rem !important;
  }
  .py-sm-11 {
    padding-top: 11rem !important;
  }
  .py-sm-12 {
    padding-top: 12rem !important;
  }
  .py-sm-13 {
    padding-top: 13rem !important;
  }
  .py-sm-14 {
    padding-top: 14rem !important;
  }
  .py-sm-15 {
    padding-top: 15rem !important;
  }
  .py-sm-16 {
    padding-top: 16rem !important;
  }
  .py-sm-17 {
    padding-top: 17rem !important;
  }
  .py-sm-18 {
    padding-top: 18rem !important;
  }
  .py-sm-19 {
    padding-top: 19rem !important;
  }
  .py-sm-20 {
    padding-top: 20rem !important;
  }
  .py-sm-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 768px) {
  .py-md-0 {
    padding-top: 0rem !important;
  }
  .py-md-1 {
    padding-top: 1rem !important;
  }
  .py-md-2 {
    padding-top: 2rem !important;
  }
  .py-md-3 {
    padding-top: 3rem !important;
  }
  .py-md-4 {
    padding-top: 4rem !important;
  }
  .py-md-5 {
    padding-top: 5rem !important;
  }
  .py-md-6 {
    padding-top: 6rem !important;
  }
  .py-md-7 {
    padding-top: 7rem !important;
  }
  .py-md-8 {
    padding-top: 8rem !important;
  }
  .py-md-9 {
    padding-top: 9rem !important;
  }
  .py-md-10 {
    padding-top: 10rem !important;
  }
  .py-md-11 {
    padding-top: 11rem !important;
  }
  .py-md-12 {
    padding-top: 12rem !important;
  }
  .py-md-13 {
    padding-top: 13rem !important;
  }
  .py-md-14 {
    padding-top: 14rem !important;
  }
  .py-md-15 {
    padding-top: 15rem !important;
  }
  .py-md-16 {
    padding-top: 16rem !important;
  }
  .py-md-17 {
    padding-top: 17rem !important;
  }
  .py-md-18 {
    padding-top: 18rem !important;
  }
  .py-md-19 {
    padding-top: 19rem !important;
  }
  .py-md-20 {
    padding-top: 20rem !important;
  }
  .py-md-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 992px) {
  .py-lg-0 {
    padding-top: 0rem !important;
  }
  .py-lg-1 {
    padding-top: 1rem !important;
  }
  .py-lg-2 {
    padding-top: 2rem !important;
  }
  .py-lg-3 {
    padding-top: 3rem !important;
  }
  .py-lg-4 {
    padding-top: 4rem !important;
  }
  .py-lg-5 {
    padding-top: 5rem !important;
  }
  .py-lg-6 {
    padding-top: 6rem !important;
  }
  .py-lg-7 {
    padding-top: 7rem !important;
  }
  .py-lg-8 {
    padding-top: 8rem !important;
  }
  .py-lg-9 {
    padding-top: 9rem !important;
  }
  .py-lg-10 {
    padding-top: 10rem !important;
  }
  .py-lg-11 {
    padding-top: 11rem !important;
  }
  .py-lg-12 {
    padding-top: 12rem !important;
  }
  .py-lg-13 {
    padding-top: 13rem !important;
  }
  .py-lg-14 {
    padding-top: 14rem !important;
  }
  .py-lg-15 {
    padding-top: 15rem !important;
  }
  .py-lg-16 {
    padding-top: 16rem !important;
  }
  .py-lg-17 {
    padding-top: 17rem !important;
  }
  .py-lg-18 {
    padding-top: 18rem !important;
  }
  .py-lg-19 {
    padding-top: 19rem !important;
  }
  .py-lg-20 {
    padding-top: 20rem !important;
  }
  .py-lg-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 1200px) {
  .py-xl-0 {
    padding-top: 0rem !important;
  }
  .py-xl-1 {
    padding-top: 1rem !important;
  }
  .py-xl-2 {
    padding-top: 2rem !important;
  }
  .py-xl-3 {
    padding-top: 3rem !important;
  }
  .py-xl-4 {
    padding-top: 4rem !important;
  }
  .py-xl-5 {
    padding-top: 5rem !important;
  }
  .py-xl-6 {
    padding-top: 6rem !important;
  }
  .py-xl-7 {
    padding-top: 7rem !important;
  }
  .py-xl-8 {
    padding-top: 8rem !important;
  }
  .py-xl-9 {
    padding-top: 9rem !important;
  }
  .py-xl-10 {
    padding-top: 10rem !important;
  }
  .py-xl-11 {
    padding-top: 11rem !important;
  }
  .py-xl-12 {
    padding-top: 12rem !important;
  }
  .py-xl-13 {
    padding-top: 13rem !important;
  }
  .py-xl-14 {
    padding-top: 14rem !important;
  }
  .py-xl-15 {
    padding-top: 15rem !important;
  }
  .py-xl-16 {
    padding-top: 16rem !important;
  }
  .py-xl-17 {
    padding-top: 17rem !important;
  }
  .py-xl-18 {
    padding-top: 18rem !important;
  }
  .py-xl-19 {
    padding-top: 19rem !important;
  }
  .py-xl-20 {
    padding-top: 20rem !important;
  }
  .py-xl-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 1400px) {
  .py-xxl-0 {
    padding-top: 0rem !important;
  }
  .py-xxl-1 {
    padding-top: 1rem !important;
  }
  .py-xxl-2 {
    padding-top: 2rem !important;
  }
  .py-xxl-3 {
    padding-top: 3rem !important;
  }
  .py-xxl-4 {
    padding-top: 4rem !important;
  }
  .py-xxl-5 {
    padding-top: 5rem !important;
  }
  .py-xxl-6 {
    padding-top: 6rem !important;
  }
  .py-xxl-7 {
    padding-top: 7rem !important;
  }
  .py-xxl-8 {
    padding-top: 8rem !important;
  }
  .py-xxl-9 {
    padding-top: 9rem !important;
  }
  .py-xxl-10 {
    padding-top: 10rem !important;
  }
  .py-xxl-11 {
    padding-top: 11rem !important;
  }
  .py-xxl-12 {
    padding-top: 12rem !important;
  }
  .py-xxl-13 {
    padding-top: 13rem !important;
  }
  .py-xxl-14 {
    padding-top: 14rem !important;
  }
  .py-xxl-15 {
    padding-top: 15rem !important;
  }
  .py-xxl-16 {
    padding-top: 16rem !important;
  }
  .py-xxl-17 {
    padding-top: 17rem !important;
  }
  .py-xxl-18 {
    padding-top: 18rem !important;
  }
  .py-xxl-19 {
    padding-top: 19rem !important;
  }
  .py-xxl-20 {
    padding-top: 20rem !important;
  }
  .py-xxl-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 1600px) {
  .py-xxxl-0 {
    padding-top: 0rem !important;
  }
  .py-xxxl-1 {
    padding-top: 1rem !important;
  }
  .py-xxxl-2 {
    padding-top: 2rem !important;
  }
  .py-xxxl-3 {
    padding-top: 3rem !important;
  }
  .py-xxxl-4 {
    padding-top: 4rem !important;
  }
  .py-xxxl-5 {
    padding-top: 5rem !important;
  }
  .py-xxxl-6 {
    padding-top: 6rem !important;
  }
  .py-xxxl-7 {
    padding-top: 7rem !important;
  }
  .py-xxxl-8 {
    padding-top: 8rem !important;
  }
  .py-xxxl-9 {
    padding-top: 9rem !important;
  }
  .py-xxxl-10 {
    padding-top: 10rem !important;
  }
  .py-xxxl-11 {
    padding-top: 11rem !important;
  }
  .py-xxxl-12 {
    padding-top: 12rem !important;
  }
  .py-xxxl-13 {
    padding-top: 13rem !important;
  }
  .py-xxxl-14 {
    padding-top: 14rem !important;
  }
  .py-xxxl-15 {
    padding-top: 15rem !important;
  }
  .py-xxxl-16 {
    padding-top: 16rem !important;
  }
  .py-xxxl-17 {
    padding-top: 17rem !important;
  }
  .py-xxxl-18 {
    padding-top: 18rem !important;
  }
  .py-xxxl-19 {
    padding-top: 19rem !important;
  }
  .py-xxxl-20 {
    padding-top: 20rem !important;
  }
  .py-xxxl-auto {
    padding-top: auto !important;
  }
}
@media (min-width: 576px) {
  .py-sm-0 {
    padding-bottom: 0rem !important;
  }
  .py-sm-1 {
    padding-bottom: 1rem !important;
  }
  .py-sm-2 {
    padding-bottom: 2rem !important;
  }
  .py-sm-3 {
    padding-bottom: 3rem !important;
  }
  .py-sm-4 {
    padding-bottom: 4rem !important;
  }
  .py-sm-5 {
    padding-bottom: 5rem !important;
  }
  .py-sm-6 {
    padding-bottom: 6rem !important;
  }
  .py-sm-7 {
    padding-bottom: 7rem !important;
  }
  .py-sm-8 {
    padding-bottom: 8rem !important;
  }
  .py-sm-9 {
    padding-bottom: 9rem !important;
  }
  .py-sm-10 {
    padding-bottom: 10rem !important;
  }
  .py-sm-11 {
    padding-bottom: 11rem !important;
  }
  .py-sm-12 {
    padding-bottom: 12rem !important;
  }
  .py-sm-13 {
    padding-bottom: 13rem !important;
  }
  .py-sm-14 {
    padding-bottom: 14rem !important;
  }
  .py-sm-15 {
    padding-bottom: 15rem !important;
  }
  .py-sm-16 {
    padding-bottom: 16rem !important;
  }
  .py-sm-17 {
    padding-bottom: 17rem !important;
  }
  .py-sm-18 {
    padding-bottom: 18rem !important;
  }
  .py-sm-19 {
    padding-bottom: 19rem !important;
  }
  .py-sm-20 {
    padding-bottom: 20rem !important;
  }
  .py-sm-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 768px) {
  .py-md-0 {
    padding-bottom: 0rem !important;
  }
  .py-md-1 {
    padding-bottom: 1rem !important;
  }
  .py-md-2 {
    padding-bottom: 2rem !important;
  }
  .py-md-3 {
    padding-bottom: 3rem !important;
  }
  .py-md-4 {
    padding-bottom: 4rem !important;
  }
  .py-md-5 {
    padding-bottom: 5rem !important;
  }
  .py-md-6 {
    padding-bottom: 6rem !important;
  }
  .py-md-7 {
    padding-bottom: 7rem !important;
  }
  .py-md-8 {
    padding-bottom: 8rem !important;
  }
  .py-md-9 {
    padding-bottom: 9rem !important;
  }
  .py-md-10 {
    padding-bottom: 10rem !important;
  }
  .py-md-11 {
    padding-bottom: 11rem !important;
  }
  .py-md-12 {
    padding-bottom: 12rem !important;
  }
  .py-md-13 {
    padding-bottom: 13rem !important;
  }
  .py-md-14 {
    padding-bottom: 14rem !important;
  }
  .py-md-15 {
    padding-bottom: 15rem !important;
  }
  .py-md-16 {
    padding-bottom: 16rem !important;
  }
  .py-md-17 {
    padding-bottom: 17rem !important;
  }
  .py-md-18 {
    padding-bottom: 18rem !important;
  }
  .py-md-19 {
    padding-bottom: 19rem !important;
  }
  .py-md-20 {
    padding-bottom: 20rem !important;
  }
  .py-md-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 992px) {
  .py-lg-0 {
    padding-bottom: 0rem !important;
  }
  .py-lg-1 {
    padding-bottom: 1rem !important;
  }
  .py-lg-2 {
    padding-bottom: 2rem !important;
  }
  .py-lg-3 {
    padding-bottom: 3rem !important;
  }
  .py-lg-4 {
    padding-bottom: 4rem !important;
  }
  .py-lg-5 {
    padding-bottom: 5rem !important;
  }
  .py-lg-6 {
    padding-bottom: 6rem !important;
  }
  .py-lg-7 {
    padding-bottom: 7rem !important;
  }
  .py-lg-8 {
    padding-bottom: 8rem !important;
  }
  .py-lg-9 {
    padding-bottom: 9rem !important;
  }
  .py-lg-10 {
    padding-bottom: 10rem !important;
  }
  .py-lg-11 {
    padding-bottom: 11rem !important;
  }
  .py-lg-12 {
    padding-bottom: 12rem !important;
  }
  .py-lg-13 {
    padding-bottom: 13rem !important;
  }
  .py-lg-14 {
    padding-bottom: 14rem !important;
  }
  .py-lg-15 {
    padding-bottom: 15rem !important;
  }
  .py-lg-16 {
    padding-bottom: 16rem !important;
  }
  .py-lg-17 {
    padding-bottom: 17rem !important;
  }
  .py-lg-18 {
    padding-bottom: 18rem !important;
  }
  .py-lg-19 {
    padding-bottom: 19rem !important;
  }
  .py-lg-20 {
    padding-bottom: 20rem !important;
  }
  .py-lg-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 1200px) {
  .py-xl-0 {
    padding-bottom: 0rem !important;
  }
  .py-xl-1 {
    padding-bottom: 1rem !important;
  }
  .py-xl-2 {
    padding-bottom: 2rem !important;
  }
  .py-xl-3 {
    padding-bottom: 3rem !important;
  }
  .py-xl-4 {
    padding-bottom: 4rem !important;
  }
  .py-xl-5 {
    padding-bottom: 5rem !important;
  }
  .py-xl-6 {
    padding-bottom: 6rem !important;
  }
  .py-xl-7 {
    padding-bottom: 7rem !important;
  }
  .py-xl-8 {
    padding-bottom: 8rem !important;
  }
  .py-xl-9 {
    padding-bottom: 9rem !important;
  }
  .py-xl-10 {
    padding-bottom: 10rem !important;
  }
  .py-xl-11 {
    padding-bottom: 11rem !important;
  }
  .py-xl-12 {
    padding-bottom: 12rem !important;
  }
  .py-xl-13 {
    padding-bottom: 13rem !important;
  }
  .py-xl-14 {
    padding-bottom: 14rem !important;
  }
  .py-xl-15 {
    padding-bottom: 15rem !important;
  }
  .py-xl-16 {
    padding-bottom: 16rem !important;
  }
  .py-xl-17 {
    padding-bottom: 17rem !important;
  }
  .py-xl-18 {
    padding-bottom: 18rem !important;
  }
  .py-xl-19 {
    padding-bottom: 19rem !important;
  }
  .py-xl-20 {
    padding-bottom: 20rem !important;
  }
  .py-xl-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 1400px) {
  .py-xxl-0 {
    padding-bottom: 0rem !important;
  }
  .py-xxl-1 {
    padding-bottom: 1rem !important;
  }
  .py-xxl-2 {
    padding-bottom: 2rem !important;
  }
  .py-xxl-3 {
    padding-bottom: 3rem !important;
  }
  .py-xxl-4 {
    padding-bottom: 4rem !important;
  }
  .py-xxl-5 {
    padding-bottom: 5rem !important;
  }
  .py-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .py-xxl-7 {
    padding-bottom: 7rem !important;
  }
  .py-xxl-8 {
    padding-bottom: 8rem !important;
  }
  .py-xxl-9 {
    padding-bottom: 9rem !important;
  }
  .py-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .py-xxl-11 {
    padding-bottom: 11rem !important;
  }
  .py-xxl-12 {
    padding-bottom: 12rem !important;
  }
  .py-xxl-13 {
    padding-bottom: 13rem !important;
  }
  .py-xxl-14 {
    padding-bottom: 14rem !important;
  }
  .py-xxl-15 {
    padding-bottom: 15rem !important;
  }
  .py-xxl-16 {
    padding-bottom: 16rem !important;
  }
  .py-xxl-17 {
    padding-bottom: 17rem !important;
  }
  .py-xxl-18 {
    padding-bottom: 18rem !important;
  }
  .py-xxl-19 {
    padding-bottom: 19rem !important;
  }
  .py-xxl-20 {
    padding-bottom: 20rem !important;
  }
  .py-xxl-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 1600px) {
  .py-xxxl-0 {
    padding-bottom: 0rem !important;
  }
  .py-xxxl-1 {
    padding-bottom: 1rem !important;
  }
  .py-xxxl-2 {
    padding-bottom: 2rem !important;
  }
  .py-xxxl-3 {
    padding-bottom: 3rem !important;
  }
  .py-xxxl-4 {
    padding-bottom: 4rem !important;
  }
  .py-xxxl-5 {
    padding-bottom: 5rem !important;
  }
  .py-xxxl-6 {
    padding-bottom: 6rem !important;
  }
  .py-xxxl-7 {
    padding-bottom: 7rem !important;
  }
  .py-xxxl-8 {
    padding-bottom: 8rem !important;
  }
  .py-xxxl-9 {
    padding-bottom: 9rem !important;
  }
  .py-xxxl-10 {
    padding-bottom: 10rem !important;
  }
  .py-xxxl-11 {
    padding-bottom: 11rem !important;
  }
  .py-xxxl-12 {
    padding-bottom: 12rem !important;
  }
  .py-xxxl-13 {
    padding-bottom: 13rem !important;
  }
  .py-xxxl-14 {
    padding-bottom: 14rem !important;
  }
  .py-xxxl-15 {
    padding-bottom: 15rem !important;
  }
  .py-xxxl-16 {
    padding-bottom: 16rem !important;
  }
  .py-xxxl-17 {
    padding-bottom: 17rem !important;
  }
  .py-xxxl-18 {
    padding-bottom: 18rem !important;
  }
  .py-xxxl-19 {
    padding-bottom: 19rem !important;
  }
  .py-xxxl-20 {
    padding-bottom: 20rem !important;
  }
  .py-xxxl-auto {
    padding-bottom: auto !important;
  }
}
@media (min-width: 576px) {
  .p-sm-0 {
    padding: 0rem !important;
  }
  .p-sm-1 {
    padding: 1rem !important;
  }
  .p-sm-2 {
    padding: 2rem !important;
  }
  .p-sm-3 {
    padding: 3rem !important;
  }
  .p-sm-4 {
    padding: 4rem !important;
  }
  .p-sm-5 {
    padding: 5rem !important;
  }
  .p-sm-6 {
    padding: 6rem !important;
  }
  .p-sm-7 {
    padding: 7rem !important;
  }
  .p-sm-8 {
    padding: 8rem !important;
  }
  .p-sm-9 {
    padding: 9rem !important;
  }
  .p-sm-10 {
    padding: 10rem !important;
  }
  .p-sm-11 {
    padding: 11rem !important;
  }
  .p-sm-12 {
    padding: 12rem !important;
  }
  .p-sm-13 {
    padding: 13rem !important;
  }
  .p-sm-14 {
    padding: 14rem !important;
  }
  .p-sm-15 {
    padding: 15rem !important;
  }
  .p-sm-16 {
    padding: 16rem !important;
  }
  .p-sm-17 {
    padding: 17rem !important;
  }
  .p-sm-18 {
    padding: 18rem !important;
  }
  .p-sm-19 {
    padding: 19rem !important;
  }
  .p-sm-20 {
    padding: 20rem !important;
  }
  .p-sm-auto {
    padding: auto !important;
  }
}
@media (min-width: 768px) {
  .p-md-0 {
    padding: 0rem !important;
  }
  .p-md-1 {
    padding: 1rem !important;
  }
  .p-md-2 {
    padding: 2rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .p-md-4 {
    padding: 4rem !important;
  }
  .p-md-5 {
    padding: 5rem !important;
  }
  .p-md-6 {
    padding: 6rem !important;
  }
  .p-md-7 {
    padding: 7rem !important;
  }
  .p-md-8 {
    padding: 8rem !important;
  }
  .p-md-9 {
    padding: 9rem !important;
  }
  .p-md-10 {
    padding: 10rem !important;
  }
  .p-md-11 {
    padding: 11rem !important;
  }
  .p-md-12 {
    padding: 12rem !important;
  }
  .p-md-13 {
    padding: 13rem !important;
  }
  .p-md-14 {
    padding: 14rem !important;
  }
  .p-md-15 {
    padding: 15rem !important;
  }
  .p-md-16 {
    padding: 16rem !important;
  }
  .p-md-17 {
    padding: 17rem !important;
  }
  .p-md-18 {
    padding: 18rem !important;
  }
  .p-md-19 {
    padding: 19rem !important;
  }
  .p-md-20 {
    padding: 20rem !important;
  }
  .p-md-auto {
    padding: auto !important;
  }
}
@media (min-width: 992px) {
  .p-lg-0 {
    padding: 0rem !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .p-lg-7 {
    padding: 7rem !important;
  }
  .p-lg-8 {
    padding: 8rem !important;
  }
  .p-lg-9 {
    padding: 9rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .p-lg-11 {
    padding: 11rem !important;
  }
  .p-lg-12 {
    padding: 12rem !important;
  }
  .p-lg-13 {
    padding: 13rem !important;
  }
  .p-lg-14 {
    padding: 14rem !important;
  }
  .p-lg-15 {
    padding: 15rem !important;
  }
  .p-lg-16 {
    padding: 16rem !important;
  }
  .p-lg-17 {
    padding: 17rem !important;
  }
  .p-lg-18 {
    padding: 18rem !important;
  }
  .p-lg-19 {
    padding: 19rem !important;
  }
  .p-lg-20 {
    padding: 20rem !important;
  }
  .p-lg-auto {
    padding: auto !important;
  }
}
@media (min-width: 1200px) {
  .p-xl-0 {
    padding: 0rem !important;
  }
  .p-xl-1 {
    padding: 1rem !important;
  }
  .p-xl-2 {
    padding: 2rem !important;
  }
  .p-xl-3 {
    padding: 3rem !important;
  }
  .p-xl-4 {
    padding: 4rem !important;
  }
  .p-xl-5 {
    padding: 5rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .p-xl-7 {
    padding: 7rem !important;
  }
  .p-xl-8 {
    padding: 8rem !important;
  }
  .p-xl-9 {
    padding: 9rem !important;
  }
  .p-xl-10 {
    padding: 10rem !important;
  }
  .p-xl-11 {
    padding: 11rem !important;
  }
  .p-xl-12 {
    padding: 12rem !important;
  }
  .p-xl-13 {
    padding: 13rem !important;
  }
  .p-xl-14 {
    padding: 14rem !important;
  }
  .p-xl-15 {
    padding: 15rem !important;
  }
  .p-xl-16 {
    padding: 16rem !important;
  }
  .p-xl-17 {
    padding: 17rem !important;
  }
  .p-xl-18 {
    padding: 18rem !important;
  }
  .p-xl-19 {
    padding: 19rem !important;
  }
  .p-xl-20 {
    padding: 20rem !important;
  }
  .p-xl-auto {
    padding: auto !important;
  }
}
@media (min-width: 1400px) {
  .p-xxl-0 {
    padding: 0rem !important;
  }
  .p-xxl-1 {
    padding: 1rem !important;
  }
  .p-xxl-2 {
    padding: 2rem !important;
  }
  .p-xxl-3 {
    padding: 3rem !important;
  }
  .p-xxl-4 {
    padding: 4rem !important;
  }
  .p-xxl-5 {
    padding: 5rem !important;
  }
  .p-xxl-6 {
    padding: 6rem !important;
  }
  .p-xxl-7 {
    padding: 7rem !important;
  }
  .p-xxl-8 {
    padding: 8rem !important;
  }
  .p-xxl-9 {
    padding: 9rem !important;
  }
  .p-xxl-10 {
    padding: 10rem !important;
  }
  .p-xxl-11 {
    padding: 11rem !important;
  }
  .p-xxl-12 {
    padding: 12rem !important;
  }
  .p-xxl-13 {
    padding: 13rem !important;
  }
  .p-xxl-14 {
    padding: 14rem !important;
  }
  .p-xxl-15 {
    padding: 15rem !important;
  }
  .p-xxl-16 {
    padding: 16rem !important;
  }
  .p-xxl-17 {
    padding: 17rem !important;
  }
  .p-xxl-18 {
    padding: 18rem !important;
  }
  .p-xxl-19 {
    padding: 19rem !important;
  }
  .p-xxl-20 {
    padding: 20rem !important;
  }
  .p-xxl-auto {
    padding: auto !important;
  }
}
@media (min-width: 1600px) {
  .p-xxxl-0 {
    padding: 0rem !important;
  }
  .p-xxxl-1 {
    padding: 1rem !important;
  }
  .p-xxxl-2 {
    padding: 2rem !important;
  }
  .p-xxxl-3 {
    padding: 3rem !important;
  }
  .p-xxxl-4 {
    padding: 4rem !important;
  }
  .p-xxxl-5 {
    padding: 5rem !important;
  }
  .p-xxxl-6 {
    padding: 6rem !important;
  }
  .p-xxxl-7 {
    padding: 7rem !important;
  }
  .p-xxxl-8 {
    padding: 8rem !important;
  }
  .p-xxxl-9 {
    padding: 9rem !important;
  }
  .p-xxxl-10 {
    padding: 10rem !important;
  }
  .p-xxxl-11 {
    padding: 11rem !important;
  }
  .p-xxxl-12 {
    padding: 12rem !important;
  }
  .p-xxxl-13 {
    padding: 13rem !important;
  }
  .p-xxxl-14 {
    padding: 14rem !important;
  }
  .p-xxxl-15 {
    padding: 15rem !important;
  }
  .p-xxxl-16 {
    padding: 16rem !important;
  }
  .p-xxxl-17 {
    padding: 17rem !important;
  }
  .p-xxxl-18 {
    padding: 18rem !important;
  }
  .p-xxxl-19 {
    padding: 19rem !important;
  }
  .p-xxxl-20 {
    padding: 20rem !important;
  }
  .p-xxxl-auto {
    padding: auto !important;
  }
}
/* ========================================
   SERVICIOS SECTION
======================================== */
#servicios {
  background: var(--primary-bg);
  color: var(--text-primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#servicios h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#servicios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(600px circle at 20% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%), radial-gradient(800px circle at 80% 70%, rgba(37, 99, 235, 0.02) 0%, transparent 50%), linear-gradient(135deg, rgba(37, 99, 235, 0.005) 0%, transparent 30%, rgba(37, 99, 235, 0.01) 100%);
  pointer-events: none;
  transform: translateZ(0);
  animation: backgroundShift 30s ease-in-out infinite;
}

#servicios::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(2px 2px at 20% 30%, rgba(37, 99, 235, 0.1), transparent), radial-gradient(2px 2px at 40% 70%, rgba(37, 99, 235, 0.08), transparent), radial-gradient(1px 1px at 90% 40%, rgba(37, 99, 235, 0.06), transparent);
  background-size: 100px 100px, 150px 150px, 80px 80px;
  opacity: 0.3;
  animation: particleFloat 45s ease-in-out infinite;
  pointer-events: none;
}

@media (min-width: 768px) {
  #servicios {
    padding: 80px 0;
  }
}
.servicios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .servicios-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.servicio-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.servicio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(37, 99, 235, 0.01) 50%, transparent 100%), radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 60%);
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 16px;
}

.servicio-item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.3), rgba(255, 107, 107, 0.2), transparent);
  opacity: 0.6;
  transition: all 0.6s ease;
  animation: rotate 12s ease-in-out infinite;
}

.servicio-item:hover {
  transform: translateY(-2px) scale(1.01) translateZ(0);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.servicio-item:hover::before {
  opacity: 1;
}

.servicio-item:hover::after {
  opacity: 1;
}

.servicio-item:hover .servicio-icon {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.servicio-item:hover h3 {
  color: var(--text-primary-title);
  transform: translateY(-0.5px);
}

.servicio-item:hover p {
  transform: translateY(-0.5px);
  opacity: 1;
}

.servicio-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-bg) 0%, rgba(37, 99, 235, 0.9) 50%, rgba(37, 99, 235, 0.7) 100%), radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  border-radius: 14px;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 2.2rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.servicio-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.servicio-icon:hover::before {
  left: 100%;
}

.servicio-icon img {
  width: 26px;
  height: 26px;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  z-index: 1;
  position: relative;
}

.servicio-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  transition: all 0.4s ease;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .servicio-item h3 {
    font-size: 1.6rem;
  }
}
.servicio-item p {
  font-size: 1rem;
  line-height: normal;
  color: var(--text-secondary);
  margin: 0;
  transition: all 0.4s ease;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .servicio-item p {
    font-size: 1.2rem;
  }
}
/* Animaciones de entrada sutiles */
.servicio-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.servicio-item:nth-child(1) {
  animation-delay: 0.15s;
}

.servicio-item:nth-child(2) {
  animation-delay: 0.15s;
}

.servicio-item:nth-child(3) {
  animation-delay: 0.3s;
}

.servicio-item:nth-child(4) {
  animation-delay: 0.25s;
}

.servicio-item:nth-child(5) {
  animation-delay: 0.45s;
}

.servicio-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Animaciones de fondo y efectos */
@keyframes backgroundShift {
  0%, 100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateX(5px) translateY(-2px) scale(1.01);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-2px) translateY(5px) scale(0.99);
    opacity: 1;
  }
  75% {
    transform: translateX(-5px) translateY(-5px) scale(1.005);
    opacity: 0.85;
  }
}
@keyframes particleFloat {
  0%, 100% {
    transform: translateX(0) translateY(0);
    opacity: 0.3;
  }
  25% {
    transform: translateX(15px) translateY(-10px);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-10px) translateY(15px);
    opacity: 0.6;
  }
  75% {
    transform: translateX(-5px) translateY(-5px);
    opacity: 0.4;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.6;
  }
}
/* Efecto parallax con micro-rotaciones */
@media (min-width: 992px) {
  .servicios-grid .servicio-item:nth-child(3n+1) {
    transform: translateY(0px) rotate(-0.5deg);
  }
  .servicios-grid .servicio-item:nth-child(3n+2) {
    transform: translateY(8px) rotate(0.3deg);
  }
  .servicios-grid .servicio-item:nth-child(3n+3) {
    transform: translateY(4px) rotate(-0.2deg);
  }
  .servicios-grid .servicio-item:hover {
    transform: translateY(-6px) scale(1.02) rotate(0deg) translateZ(0) !important;
  }
}
/* Responsive adjustments */
@media (max-width: 576px) {
  #servicios {
    padding: 40px 0;
  }
  .servicios-grid {
    gap: 16px;
    margin-top: 40px;
  }
  .servicio-item {
    padding: 20px 16px;
    border-radius: 10px;
  }
  .servicio-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    font-size: 1.6rem;
    border-radius: 10px;
  }
  .servicio-icon img {
    width: 20px;
    height: 20px;
  }
  .servicio-item h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .servicio-item p {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
/* ========================================
   SERVICIOS ESPECIALES SECTION
======================================== */
#servicios-especiales {
  padding: 40px 0 60px 0;
}

@media (min-width: 768px) {
  #servicios-especiales {
    padding: 0px 0 80px 0;
  }
}
#servicios-especiales .servicios-grid {
  gap: 16px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  #servicios-especiales .servicios-grid {
    gap: 20px;
    margin-top: 40px;
  }
}
#servicios-especiales .servicio-item {
  padding: 20px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#servicios-especiales .servicio-item:hover {
  transform: translateY(-3px) scale(1.01);
  background: rgba(255, 255, 255, 0.025);
}

#servicios-especiales .servicio-item .servicio-icon {
  width: 45px;
  height: 45px;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

#servicios-especiales .servicio-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

#servicios-especiales .servicio-item p {
  font-size: 1.2rem;
  line-height: 1.4;
  opacity: 0.85;
}

#servicios-especiales .section-title {
  font-size: 1rem;
  margin-bottom: 2rem;
}

#servicios-especiales .section-title::after {
  width: 50px;
  height: 2px;
}

@media (min-width: 768px) {
  #servicios-especiales .section-title {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
  #servicios-especiales .section-title::after {
    width: 60px;
    height: 3px;
  }
}
/* ========================================
   PROYECTOS SECTION
======================================== */
#proyectos {
  background-color: var(--secondary-bg);
  color: var(--text-primary);
  padding: 80px 0;
}

@media (min-width: 768px) {
  #proyectos {
    padding: 120px 0;
  }
}
.proyectos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .proyectos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .proyectos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.proyecto-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  aspect-ratio: 16/10;
}

.proyecto-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.proyecto-item:hover .proyecto-overlay {
  background: rgba(37, 99, 235, 0.9);
}

.proyecto-item:hover img {
  transform: scale(1.05);
}

.proyecto-item:hover h3 {
  transform: translateY(-5px);
}

.proyecto-item:hover .proyecto-tech {
  opacity: 1;
  transform: translateY(0);
}

.proyecto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.proyecto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .proyecto-overlay {
    padding: 40px;
  }
}
.proyecto-item h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .proyecto-item h3 {
    font-size: 2.4rem;
  }
}
.proyecto-item p {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-secondary);
  margin: 0 0 16px 0;
}

@media (min-width: 768px) {
  .proyecto-item p {
    font-size: 1.6rem;
  }
}
.proyecto-tech {
  font-size: 1.3rem;
  color: var(--text-primary-title);
  font-weight: 500;
  opacity: 0.8;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
}

@media (min-width: 768px) {
  .proyecto-tech {
    font-size: 1.4rem;
  }
}
/* Placeholder para proyectos sin imagen */
.proyecto-item:not([data-modal]) {
  background: var(--card-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.proyecto-item:not([data-modal])::before {
  content: "🚀";
  font-size: 4rem;
  opacity: 0.3;
}

/* Animaciones escalonadas */
.proyecto-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.proyecto-item:nth-child(1) {
  animation-delay: 0.1s;
}

.proyecto-item:nth-child(2) {
  animation-delay: 0.2s;
}

.proyecto-item:nth-child(3) {
  animation-delay: 0.3s;
}

.proyecto-item:nth-child(4) {
  animation-delay: 0.4s;
}

.proyecto-item:nth-child(5) {
  animation-delay: 0.5s;
}

.proyecto-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive adjustments */
@media (max-width: 576px) {
  .proyecto-overlay {
    padding: 20px;
  }
  .proyecto-item h3 {
    font-size: 2rem;
  }
  .proyecto-item p {
    font-size: 1.4rem;
  }
  .proyecto-tech {
    font-size: 1.2rem;
  }
}
/* TECNOLOGIAS */
#tecnologias {
  padding: 80px 0;
  /* moderno */
  background: linear-gradient(135deg, color-mix(in srgb, var(--secondary-bg) 85%, black) 0%, var(--secondary-bg) 100%);
  position: relative;
  overflow: hidden;
}

#tecnologias h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tecnologias-content {
  margin-top: 50px;
}

.tech-carousel {
  position: relative;
  padding: 0;
}

@media (max-width: 768px) {
  .tech-carousel {
    padding: 0;
  }
}
.tech-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 14px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.tech-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.tech-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.tech-item:hover::before {
  left: 100%;
}

.tech-item:hover .tech-icon {
  transform: scale(1.1);
}

.tech-item:hover h4 {
  color: #ff6b6b;
}

.tech-item:hover p {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .tech-item {
    padding: 24px 14px;
  }
}
.tech-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.tech-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .tech-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
  }
  .tech-icon img {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 768px) {
  .tech-icon {
    width: 70px;
    height: 70px;
  }
  .tech-icon img {
    width: 40px;
    height: 40px;
  }
}
.tech-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .tech-item h4 {
    font-size: 1.2rem;
  }
}
.tech-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .tech-item p {
    font-size: 0.95rem;
  }
}
/* Glide.js Styles */
.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.glide__arrow,
.glide__arrow--left,
.glide__arrow--right {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow[disabled] {
  opacity: 0.33;
  cursor: default;
  pointer-events: none;
}

/* Categorías de tecnologías */
.tech-category {
  margin-bottom: 60px;
}

.tech-category:last-child {
  margin-bottom: 0;
}

.tech-category h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-primary-title);
  text-align: center;
  margin: 0 0 40px 0;
  position: relative;
}

@media (min-width: 768px) {
  .tech-category h3 {
    font-size: 2.8rem;
  }
}
.tech-category h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-bg);
  border-radius: 2px;
}

/* Animaciones escalonadas */
.tech-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.tech-item:nth-child(1) {
  animation-delay: 0.1s;
}

.tech-item:nth-child(2) {
  animation-delay: 0.15s;
}

.tech-item:nth-child(3) {
  animation-delay: 0.2s;
}

.tech-item:nth-child(4) {
  animation-delay: 0.25s;
}

.tech-item:nth-child(5) {
  animation-delay: 0.3s;
}

.tech-item:nth-child(6) {
  animation-delay: 0.35s;
}

.tech-item:nth-child(7) {
  animation-delay: 0.4s;
}

.tech-item:nth-child(8) {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive adjustments */
@media (max-width: 576px) {
  .tecnologias-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }
  .tech-item {
    padding: 20px 15px;
  }
  .tech-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
  .tech-icon img {
    width: 35px;
    height: 35px;
  }
  .tech-item h4 {
    font-size: 1.4rem;
  }
}
#faq {
  padding: 80px 0;
}

#faq h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  white-space: pre-line;
  font-weight: 700;
  letter-spacing: 0%;
  text-transform: uppercase;
  position: relative;
  line-height: 100%;
  margin: 0;
  text-align: start;
}

#faq h3 {
  font-size: 1.25rem;
  margin: 0;
}

#faq .faq-content {
  margin-top: 3rem;
}

#faq .accordion-item {
  border-bottom: 0.5px solid white;
  margin-bottom: 10px;
  background-color: transparent;
}

#faq .accordion-item .accordion-header {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px 15px 20px;
  cursor: pointer;
  color: white;
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  line-height: normal;
  letter-spacing: 0%;
}

#faq .accordion-item .accordion-header div {
  width: 90%;
}

#faq .accordion-item .accordion-header.active {
  color: #ff6b6b;
}

#faq .accordion-item .accordion-header.active .accordion-icon {
  transform: rotate(90deg);
}

#faq .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#faq .accordion-item .accordion-content p {
  color: white;
  padding: 0 0 0 20px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: normal;
  letter-spacing: 0%;
  margin: 0;
}

#faq .accordion-item .accordion-content.show {
  max-height: 500px; 
  padding-bottom: 15px;
}

footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a2e 100%);
  color: var(--text-light);
  padding: 30px 0 20px;
}

footer .footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  footer .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: 60px;
  }
}
footer .footer-brand .footer-logo {
  margin-bottom: 16px;
}

footer .footer-brand .footer-logo img {
  height: 20px;
  width: auto;
}

footer .footer-brand p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

footer .footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

@media (min-width: 768px) {
  footer .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
footer .footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-light);
}

footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-column ul li {
  margin-bottom: 8px;
}

footer .footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

footer .footer-column ul li a:hover {
  color: var(--text-light);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

footer .footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

#contacto {
  background-color: #fff;
  color: #212121;
}

#contacto h2 {
  text-align: start;
  font-size: 3.3rem;
  white-space: pre-line;
  font-weight: 800;
  letter-spacing: 0%;
  text-transform: uppercase;
  position: relative;
  line-height: 100%;
  margin: 0;
}

@media (min-width: 768px) {
  #contacto h2 {
    font-size: 3.9rem;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  #contacto h2 {
    font-size: 4.3rem;
  }
}
@media (min-width: 1400px) {
  #contacto h2 {
    font-size: 4.7rem;
  }
}
@media (min-width: 1600px) {
  #contacto h2 {
    font-size: 5.7rem;
  }
}
#contacto .footer-container {
  flex: 1;
}

#contacto .footer-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

#contacto .footer-info .name {
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 80%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

#contacto .footer-info .lastname {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 80%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

#contacto .footer-info .footer-logo {
  width: 85px;
}

#contacto .footer-info p {
  margin: 5px 0;
  font-size: 1rem;
}

#contacto .footer-info p.email, #contacto .footer-info p.instagram {
  font-weight: bold;
}

#contacto .label {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 2rem 0 2px 0;
}

#contacto .value {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0;
  text-decoration: none;
  color: #212121;
}

#contacto .footer-form {
  flex: 1;
  width: 100%;
}

@media (min-width: 768px) {
  #contacto .footer-form {
    width: 600px;
  }
}
#contacto .footer-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

#contacto .footer-form .contact-form {
  display: flex;
  flex-direction: column;
}

#contacto .footer-form .contact-form input[type=text],
#contacto .footer-form .contact-form input[type=email],
#contacto .footer-form .contact-form textarea {
  padding: 1.3rem;
  margin-bottom: 0.7rem;
  border: 1px solid #ACACAC;
  border-radius: 3px;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
}

#contacto .footer-form .contact-form input[type=text]::placeholder,
#contacto .footer-form .contact-form input[type=email]::placeholder,
#contacto .footer-form .contact-form textarea::placeholder {
  color: #212121;
}

#contacto .footer-form .contact-form textarea {
  resize: vertical;
}

#contacto .footer-form .contact-form .btn-primary {
  background-color: #085358;
  color: #fff;
  padding: 15px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0%;
  width: 150px;
  margin: 0;
  height: 60px;
}

@media (min-width: 768px) {
  #contacto .footer-form .contact-form .btn-primary {
    height: auto;
  }
}
#contacto .footer-form .contact-form .btn-primary img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

/* ========================================
   CONTACTO SECTION
======================================== */
#contacto {
  background-color: var(--secondary-bg);
  color: white;
  padding: 80px 0;
}

#contacto h2 {
  font-size: 2rem;
}

.contacto-intro {
  text-align: start;
  margin: 60px 0 40px 0;
}

.contacto-intro h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin: 0 0 20px 0;
}

@media (min-width: 768px) {
  .contacto-intro h3 {
    font-size: 1.5rem;
  }
}
.contacto-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: start;
  color: var(--text-secondary);
  margin: 0;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contacto-intro p {
    font-size: 1.3rem;
  }
}
.contacto-center {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contacto-center {
    margin-top: 2.5rem;
  }
}
/* card que ajusta al contenido */
.contacto-item.pool-card {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  width: auto;
  max-width: min(720px, 92vw);
}

.contacto-item.pool-card .contacto-text h4 {
  margin: 0 0 0.25rem 0;
}

.contacto-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
}

@media (min-width: 768px) {
  .contacto-items {
    gap: 30px;
  }
}
.contacto-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.contacto-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.contacto-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.contacto-item:hover::before {
  left: 100%;
}

.contacto-item:hover .contacto-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.contacto-item:hover .contacto-icon::before {
  opacity: 1;
}

.contacto-item:hover .contacto-icon img {
  transform: scale(1.1);
}

.contacto-item:hover .contacto-text h4 {
  color: #ff6b6b;
  transform: translateX(4px);
}

.contacto-item:hover .contacto-text h4::after {
  width: 100%;
}

.contacto-item:hover .contacto-text p {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(2px);
}

@media (min-width: 768px) {
  .contacto-item {
    padding: 26px 22px;
    gap: 28px;
  }
}
.contacto-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-bg) 0%, #ff6b6b 100%);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  flex-shrink: 0;
}

.contacto-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent-bg), #ff6b6b, var(--accent-bg));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contacto-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (min-width: 768px) {
  .contacto-icon {
    width: 80px;
    height: 80px;
  }
  .contacto-icon img {
    width: 40px;
    height: 40px;
  }
}
.contacto-text {
  flex: 1;
}

.contacto-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-bg);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.contacto-text h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bg), #ff6b6b);
  transition: width 0.4s ease;
}

@media (min-width: 768px) {
  .contacto-text h4 {
    font-size: 18px;
  }
}
.contacto-text p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
  line-height: 1.5;
  transition: all 0.3s ease;
  font-weight: 500;
}

@media (min-width: 768px) {
  .contacto-text p {
    font-size: 18px;
  }
}
.contacto-text a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacto-text a:hover {
  color: var(--text-primary-title);
}

/* Formulario de contacto */
.contacto-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contacto-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

@media (min-width: 768px) {
  .contacto-form {
    padding: 48px;
  }
}
@media (max-width: 768px) {
  .contacto-form {
    padding: 36px 24px;
    margin-top: 60px;
    border-radius: 20px;
  }
}
.contacto-form h3 {
  font-size: rem;
  font-weight: 600;
  color: var(--text-primary-title);
  margin: 0 0 30px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .contacto-form h3 {
    font-size: 2.8rem;
  }
}
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .form-group label {
    font-size: 1.3em;
  }
}
.form-group input,
.form-group textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-bg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15), 0 8px 25px rgba(255, 107, 107, 0.1);
  transform: translateY(-2px);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--accent-bg) 0%, #e55a5a 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  font-family: inherit;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-submit svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-submit:hover {
  background: linear-gradient(135deg, #e55a5a 0%, #d14545 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover svg {
  transform: translateX(4px) scale(1.1);
}

.btn-submit:active {
  transform: translateY(-2px) scale(1.01);
}

.btn-submit:disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit:disabled::before {
  display: none;
}

.btn-submit:disabled svg {
  opacity: 0.4;
  transform: none;
}

/* Honeypot field - oculto para humanos, visible para bots */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tab-index: -1 !important;
}

/* CAPTCHA matemático */
.captcha-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.captcha-group.show {
  opacity: 1;
  transform: translateY(0);
}

.captcha-group .captcha-question {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-bg);
  min-width: 80px;
}

.captcha-group .captcha-equals {
  font-size: 1.6rem;
  color: var(--text-secondary);
}

.captcha-group .captcha-input {
  width: 80px !important;
  text-align: center;
  font-weight: 600;
  border: 1px solid var(--border-color) !important;
  border-radius: 4px;
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.05);
}

.captcha-group .captcha-input:focus {
  border-color: var(--accent-bg) !important;
  background: rgba(255, 255, 255, 0.08);
}

.captcha-group .captcha-label {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .contacto-form {
    padding: 30px 20px;
  }
  .contacto-item {
    padding: 16px;
    gap: 16px;
  }
  .contacto-icon {
    width: 45px;
    height: 45px;
  }
  .contacto-icon img {
    width: 10px;
    height: 10px;
  }
}
/* Estados de error para validación de formulario */
.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.15);
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.25);
}

/* Honeypot field - oculto para usuarios, visible para bots */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.honeypot input {
  width: 1px;
  height: 1px;
  border: none;
  background: transparent;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
}
.scroll-to-top:hover {
  transform: translateY(-3px);
  border-color: var(--accent-bg);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.show:hover {
  transform: translateY(-3px);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}
.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 320px) {
  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 15px;
    right: 15px;
  }
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}
/* ========================================
   NOTIFICATION SYSTEM
======================================== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  /* Tipos de notificación - Mejorados para accesibilidad WCAG AA */
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.notification-success {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  border-color: rgba(16, 185, 129, 0.4);
  color: #ffffff;
}

.notification.notification-error {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ffffff;
}

.notification.notification-warning {
  background: linear-gradient(135deg, #d97706 0%, #92400e 100%);
  border-color: rgba(245, 158, 11, 0.4);
  color: #ffffff;
}

.notification.notification-info {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    font-size: 0.9rem;
    padding: 14px 16px;
    border-radius: 10px;
  }
}
/* Animación de entrada más suave */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/* ========================================
   NOTAS DE ACCESIBILIDAD
======================================== */
/*
 * Ratios de contraste WCAG AA cumplidos:
 * - Success: #047857 sobre #ffffff = 4.5:1 ✓
 * - Error: #dc2626 sobre #ffffff = 4.5:1 ✓  
 * - Warning: #d97706 sobre #ffffff = 4.5:1 ✓
 * - Info: #2563eb sobre #ffffff = 4.5:1 ✓
 * 
 * Mejoras implementadas:
 * - Colores sólidos en lugar de transparencias
 * - Texto blanco explícito para máximo contraste
 * - Bordes más visibles (0.4 opacity)
 * - Font-weight 500 para mejor legibilidad
 */
#animacion-figma {
  /* Viewport-proportional sizing variables (desktop) */
  /* Usamos vmin para escalar en función del lado menor del viewport */
  --vmin: min(55vw, 85vh);
  /* Tamaño del círculo principal: entre 220px y 520px, proporcional al viewport */
  --hub-size: clamp(200px, calc(var(--vmin) * 0.35), 270px);
  /* Factor del anillo interior (ajustable) y tamaño resultante */
  --inner-ring-factor: 1.13; /* antes ~1.13; más chico para no invadir el área */
  --inner-ring-size: calc(var(--hub-size) * var(--inner-ring-factor));
  /* Borde proporcional (se ve mejor en pantallas grandes) */
  --ring-border-width: 2px;
  /* Tamaño de los módulos orbitales: entre 64px y 128px, proporcional al viewport */
  --orbital-size: clamp(64px, calc(var(--vmin) * 0.11), 118px);
  /* Tamaño del ícono dentro del módulo orbital */
  --module-icon-size: calc(var(--orbital-size) * 0.29);
  /* Tipografías de labels escalables */
  --label-name-size: clamp(.928rem, calc(var(--vmin) * 0.015), 1.25rem);
  --label-desc-size: clamp(.91rem, calc(var(--vmin) * 0.012), 1.10rem);
  /* Separación deseada entre el borde del anillo y el centro de los módulos */
  --orbit-gap-factor: 0.30; /* usado por JS para calcular el gap */
  --orbit-gap-min: 60px;
  --orbit-gap-max: 120px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  /* Desktop & Mobile containers */
  /* Background */
  /* Stars */
  /* Central Hub - Desktop */
  /* Orbital modules */
  /* Text labels */
  /* Floating particles */
  /* Mobile specific styles */
  /* Mobile orbital */
  /* Mobile services */
  /* Keyframes (emitted at root) */
}

#animacion-figma .visualization-container {
  width: 100%;
  height: 100%;
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#animacion-figma .visualization-container-mobile {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  #animacion-figma .visualization-container {
    display: flex;
  }
  #animacion-figma .visualization-container-mobile {
    display: none;
  }
}
#animacion-figma .gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 50%, transparent 100%);
}

#animacion-figma .star {
  position: absolute;
  border-radius: 50%;
}

#animacion-figma .star.large-star {
  animation: af-twinkle-slow 8s ease-in-out infinite;
}

#animacion-figma .star.medium-star {
  animation: af-drift 20s ease-in-out infinite;
}

#animacion-figma .star.small-star {
  animation: af-sparkle 3s ease-in-out infinite;
}

#animacion-figma .shooting-star {
  animation: af-shooting-star 5s linear infinite;
}

#animacion-figma .central-hub {
  position: relative;
  z-index: 10;
}

#animacion-figma .central-hub .main-circle {
  position: relative;
  /* Escala proporcional al viewport en desktop */
  width: var(--hub-size);
  height: var(--hub-size);
  border-radius: 50%;
  border: var(--ring-border-width) solid rgba(255, 107, 107, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

#animacion-figma .central-hub .main-circle .glow-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 50%, transparent 100%);
  box-shadow: 0 0 60px rgba(255, 107, 107, 0.3), inset 0 0 60px rgba(255, 107, 107, 0.1);
  animation: af-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

#animacion-figma .central-hub .main-circle .inner-ring {
  position: absolute;
  width: var(--inner-ring-size);
  height: var(--inner-ring-size);
  border-radius: 50%;
  border: var(--ring-border-width) solid rgba(255, 107, 107, 0.2);
  animation: af-spin-slow 30s linear infinite;
}

#animacion-figma .central-hub .main-circle .branding {
  position: relative;
  z-index: 20;
  text-align: center;
  /* El logo se mantiene relativo al círculo (porcentaje) */
}

#animacion-figma .central-hub .main-circle .branding .tagline-1 {
  font-size: 1.125rem;
  color: #FF6B6B;
  margin-bottom: 0.75rem;
}

#animacion-figma .central-hub .main-circle .branding img {
  width: 60%;
}

#animacion-figma .central-hub .main-circle .branding .tagline-2 {
  font-size: 1.125rem;
  color: #ff8a8a;
}

#animacion-figma .central-hub .main-circle .branding .divider {
  margin-top: 1rem;
  width: 4rem;
  height: 0.25rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  background: linear-gradient(to right, #FF6B6B, #ff8a8a);
}

#animacion-figma .orbital-module {
  position: absolute;
  width: var(--orbital-size);
  height: var(--orbital-size);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: af-orbit 20s linear infinite;
}

#animacion-figma .orbital-module .module-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 107, 0.4);
  background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, rgba(27, 37, 89, 0.8) 70%);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #FF6B6B;
}

#animacion-figma .orbital-module .module-container:hover {
  transform: scale(1.1);
}

#animacion-figma .orbital-module .module-container svg {
  color: #FF6B6B;
  stroke: #FF6B6B;
}

#animacion-figma .orbital-module .module-icon {
  width: var(--module-icon-size);
  height: var(--module-icon-size);
  color: #FF6B6B;
}

#animacion-figma .orbital-module .connection-line {
  position: absolute;
  width: 2px;
  left: 50%;
  top: 50%;
  transform-origin: top center;
  background: linear-gradient(to right, rgba(255, 107, 107, 0.3), transparent);
  z-index: -1;
}

#animacion-figma .text-label {
  position: absolute;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  z-index: 30;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#animacion-figma .text-label.visible {
  opacity: 1;
}

#animacion-figma .text-label .label-name {
  color: white;
  font-size: var(--label-name-size);
  font-weight: 600;
  margin-bottom: 0;
}

#animacion-figma .text-label .label-desc {
  color: #FF6B6B;
  font-size: var(--label-desc-size);
  margin-top: 5px;
}

#animacion-figma .floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 107, 107, 0.6);
  animation: af-float 4s ease-in-out infinite;
}

#animacion-figma .mobile-main-circle {
  position: relative;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 107, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

#animacion-figma .mobile-main-circle .mobile-glow-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.08) 40%, transparent 70%);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.4), inset 0 0 40px rgba(255, 107, 107, 0.1);
  animation: af-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

#animacion-figma .mobile-main-circle .mobile-inner-ring {
  position: absolute;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 107, 0.2);
  animation: af-spin-slow 30s linear infinite;
}

#animacion-figma .mobile-main-circle .mobile-branding {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 1rem;
}

#animacion-figma .mobile-main-circle .mobile-branding img {
  width: 60%;
}

#animacion-figma .mobile-main-circle .mobile-branding .mobile-tagline-1 {
  font-size: 0.75rem;
  color: #FF6B6B;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

#animacion-figma .mobile-main-circle .mobile-branding .mobile-tagline-2 {
  font-size: 0.75rem;
  color: #ff8a8a;
  line-height: 1.2;
}

#animacion-figma .mobile-main-circle .mobile-branding .mobile-divider {
  margin-top: 0.5rem;
  width: 2.5rem;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  background: linear-gradient(to right, #FF6B6B, #ff8a8a);
}

#animacion-figma .central-orbital {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 28rem;
  min-height: 400px;
}

#animacion-figma .mobile-orbital-container {
  position: absolute;
  width: 280px;
  height: 280px;
  animation: af-orbit-mobile 35s linear infinite;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#animacion-figma .mobile-orbital-module {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#animacion-figma .mobile-orbital-module .mobile-module-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 107, 0.4);
  background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, rgba(27, 37, 89, 0.9) 70%);
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: af-spin-reverse 35s linear infinite;
  color: #FF6B6B;
}

#animacion-figma .mobile-orbital-module .mobile-module-container svg {
  color: #FF6B6B;
  stroke: #FF6B6B;
}

#animacion-figma .mobile-orbital-module .mobile-module-icon {
  width: 16px;
  height: 16px;
  color: #FF6B6B;
}

#animacion-figma .mobile-orbital-module .mobile-connection-line {
  position: absolute;
  width: 2px;
  left: 50%;
  top: 50%;
  transform-origin: top center;
  background: linear-gradient(to right, rgba(255, 107, 107, 0.2), transparent);
  z-index: -1;
}

#animacion-figma .top-services, #animacion-figma .bottom-services {
  position: relative;
  z-index: 10;
  width: 100%;
}

@media (max-width: 992px) {
  #animacion-figma .top-services, #animacion-figma .bottom-services {
    display: none;
  }
}
#animacion-figma .top-services {
  margin-bottom: 2rem;
}

#animacion-figma .bottom-services {
  margin-top: 2rem;
}

#animacion-figma #top-services-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 20rem;
  margin: 0 auto;
}

#animacion-figma #bottom-services-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 1rem;
}

#animacion-figma #bottom-center-service {
  text-align: center;
  margin-top: 1.5rem;
}

#animacion-figma .service-label {
  text-align: center;
  max-width: 5rem;
}

#animacion-figma .service-label.wide {
  max-width: 6rem;
}

#animacion-figma .service-name {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

#animacion-figma .service-desc {
  color: #FF6B6B;
  font-size: 0.75rem;
  line-height: 1.2;
}

@keyframes af-orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes af-orbit-mobile {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes af-spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes af-spin-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes af-float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.8;
  }
}
@keyframes af-twinkle-slow {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@keyframes af-drift {
  0% {
    transform: translateX(0px) translateY(0px);
    opacity: 0.3;
  }
  25% {
    transform: translateX(15px) translateY(-10px);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-10px) translateY(-20px);
    opacity: 0.5;
  }
  75% {
    transform: translateX(-20px) translateY(5px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0px) translateY(0px);
    opacity: 0.3;
  }
}
@keyframes af-sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.5) rotate(180deg);
  }
}
@keyframes af-shooting-star {
  0% {
    transform: translateX(-100px) translateY(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(200px) translateY(100px);
    opacity: 0;
  }
}
@keyframes af-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
/* ========================================
   VARIABLES
======================================== */
:root {
  --primary-bg: #1B2559;
  --secondary-bg: #141B3E;
  --accent-bg: #FF6B6B;
  --accent-secondary: #ff8a8a;
  --text-primary: #ffffff;
  --text-primary-dark:#0F172A;
  --text-primary-title: #FF6B6B;
  --text-secondary: #e2e8f0;
  --text-tertiary: #1B2559;
  --text-muted: #94a3b8;
  --overlay-dark: rgba(27, 30, 60, 0.8);
  --overlay-darker: rgba(15, 17, 35, 0.9);
  --card-gradient: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 138, 138, 0.05) 100%);
  --border-color: rgba(255, 107, 107, 0.2);
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
}

html {
  font-size: 14px; /* Base font size para rem */
}

body, textarea, input, button {
  font-family: "Work Sans", sans-serif;
}

/* ========================================
   BASE STYLES
======================================== */
body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

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