@charset "UTF-8";
/* ========================================
   IMPORTS
======================================== */
/* Google Fonts - Tech & Professional Typography */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/*
$primary-blue: #1e3a8a;
$primary-blue-light: #3b82f6;
$primary-blue-dark: #1e40af;

// Colores secundarios
$secondary-blue: #0ea5e9;
$secondary-blue-light: #38bdf8;
$secondary-blue-dark: #0284c7;

// Colores de acento
$accent-cyan: #06b6d4;
$accent-teal: #14b8a6;
$accent-indigo: #6366f1;

// Grises profesionales
$gray-50: #f8fafc;
$gray-100: #f1f5f9;
$gray-200: #e2e8f0;
$gray-300: #cbd5e1;
$gray-400: #94a3b8;
$gray-500: #64748b;
$gray-600: #475569;
$gray-700: #334155;
$gray-800: #1e293b;
$gray-900: #0f172a;

// Colores de estado
$success: #10b981;
$warning: #f59e0b;
$error: #ef4444;
$info: #3b82f6;

// Colores de fondo
$bg-primary: #ffffff;
$bg-secondary: $gray-50;
$bg-dark: $gray-900;
$bg-gradient-start: $primary-blue;
$bg-gradient-end: $secondary-blue;

// Colores de texto
$text-primary: $gray-900;
$text-secondary: $gray-600;
$text-muted: $gray-500;
$text-inverse: #ffffff;
*/
/* ========================================
   LAYOUT & CONTAINER SYSTEM
======================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  font-size: 16px;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
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: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

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

/* ========================================
   TYPOGRAPHY SYSTEM
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: #2C2C2C;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1.125rem;
  font-weight: 500;
}

p {
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
  color: #475569;
  font-weight: 700;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #475569;
}

.text-muted {
  color: #64748b;
}

.text-primary {
  color: #004C97;
}

.text-secondary {
  color: #004C97;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ========================================
   SECTION TITLES
======================================== */
.section-title {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #2C2C2C;
  text-align: center;
  margin-bottom: 4rem;
  margin-top: clamp(0.5rem, 1vw, 1rem);
  position: relative;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.875rem;
    margin-bottom: 3rem;
    margin-top: clamp(0.25rem, 0.5vw, 0.5rem);
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rcl-blue-900), var(--rcl-blue-700));
  border-radius: 2px;
}
.section-title.animate-underline::after {
  width: 0;
  animation: underlineGrow 0.6s ease-out forwards;
}
@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
.section-title.left-aligned {
  text-align: left;
}
.section-title.left-aligned::after {
  left: 0;
  transform: none;
}

/* ========================================
   MODO OSCURO - SECTION TITLES
======================================== */
[data-theme=dark] .section-title {
  color: #ffffff;
}
[data-theme=dark] .section-title::after {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #475569;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* ========================================
   SPACING UTILITIES
======================================== */
.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

.mb-5 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

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

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

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

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

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

.mt-5 {
  margin-top: 2rem;
}

.mt-6 {
  margin-top: 3rem;
}

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

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

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

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

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

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

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

/* ========================================
   BUTTON SYSTEM
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, #004C97, rgb(0, 114.5033112583, 227.5));
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, rgb(0, 50.3311258278, 100), #004C97);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  background: transparent;
  color: #004C97;
  border-color: #004C97;
}
.btn-secondary:hover:not(:disabled) {
  background: #004C97;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

/* ========================================
   CARD SYSTEM
======================================== */
.card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-body {
  padding: 2rem;
}

.card-header {
  padding: 1.5rem 2rem;
  background: #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}

.card-footer {
  padding: 1.5rem 2rem;
  background: #D9D9D9;
  border-top: 1px solid #D9D9D9;
}

/* ========================================
   GRID SYSTEM
======================================== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.col {
  flex: 1;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

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

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

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

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

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

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

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

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
}
/* ========================================
   SECTION SYSTEM
======================================== */
.section {
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: clamp(1.5rem, 4vw, 3rem) 0;
  }
}

.section-blur.section-blur-top::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(var(--bg-primary-rgb, 248, 249, 250), 0) 0%, rgba(var(--bg-primary-rgb, 248, 249, 250), 0.8) 70%, var(--bg-primary, #F8F9FA) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ===== ESTILOS GENERALES PARA SECCIONES ===== */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  background: var(--bg-primary);
}

#sobre-nosotros {
  background: var(--bg-primary);
  position: relative;
}
#sobre-nosotros .container {
  position: relative;
  z-index: 1;
}
#sobre-nosotros::before {
  display: none;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
  color: var(--text-primary);
  position: relative;
}
@media (max-width: 768px) {
  .section-title {
    margin-top: clamp(0.25rem, 0.5vw, 0.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #D9D9D9;
  padding: 1rem 0;
  transition: all 300ms ease-in-out;
}
header.scrolled {
  background: rgba(241, 245, 249, 0.98);
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
    flex-wrap: wrap;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .header-right {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.logo img {
  height: 75px;
  width: auto;
  transition: all 300ms ease-in-out;
}
.logo img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .logo img {
    height: 35px;
  }
}

/* Navigation */
nav {
  background: none;
}
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
    z-index: 1000;
  }
  nav.active {
    transform: translateX(0);
  }
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
}

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

nav ul li a {
  color: #475569;
  text-decoration: none;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 500;
  transition: all 300ms ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  nav ul li a {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    padding: 1rem 1.5rem;
  }
}
nav ul li a:hover {
  color: #004C97;
  background: rgba(30, 58, 138, 0.1);
  transform: translateY(-2px);
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #004C97, #004C97);
  border-radius: 9999px;
  transition: transform 300ms ease-in-out;
}
nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

nav ul li.active a {
  color: #004C97;
  background: rgba(30, 58, 138, 0.1);
}
nav ul li.active a::after {
  transform: translateX(-50%) scaleX(1);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #2C2C2C;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 300ms ease-in-out;
  z-index: 1001;
  position: relative;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.mobile-menu-toggle:hover {
  background: rgba(30, 58, 138, 0.1);
  color: #004C97;
}
.mobile-menu-toggle.active {
  color: #004C97;
}
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 20px;
  height: 15px;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 9999px;
  transition: all 300ms ease-in-out;
  transform-origin: center;
}

/* CTA Button in header */
.header-cta {
  display: none;
}
@media (min-width: 992px) {
  .header-cta {
    display: block;
    margin-left: 1.5rem;
  }
}
.header-cta .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: block;
  }
  .mobile-menu-overlay.active {
    opacity: 1;
  }
}

/* Smooth scroll offset for fixed header */
html {
  scroll-padding-top: 80px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

/* Header animations */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
header {
  animation: slideDown 0.6s ease-out;
}

/* Focus states for accessibility */
nav ul li a:focus,
.mobile-menu-toggle:focus {
  outline: 2px solid #004C97;
  outline-offset: 2px;
}

/* ========================================
   MODO OSCURO - HEADER
======================================== */
[data-theme=dark] header {
  background: linear-gradient(135deg, #000066 0%, #000080 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme=dark] header.scrolled {
  background: linear-gradient(135deg, #000066 0%, #000080 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

[data-theme=dark] nav ul li a {
  color: rgba(255, 255, 255, 0.9);
}
[data-theme=dark] nav ul li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] nav ul li a::after {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
}

[data-theme=dark] nav ul li.active a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

[data-theme=dark] .logo img {
  content: url("../assets/logo/logo_darkmode.png");
}

/* ==== HERO V2  ==== */
.hero-v2 {
  position: relative;
  padding: 0;
  background: radial-gradient(1400px 700px at 25% 15%, rgba(0, 0, 156, 0.12), transparent 65%), radial-gradient(900px 450px at 75% 85%, rgba(40, 45, 109, 0.15), transparent 65%), linear-gradient(135deg, var(--primary-bg) 0%, rgba(236, 239, 244, 0.8) 50%, var(--secondary-bg) 100%);
  overflow: hidden;
  isolation: isolate;
  height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-v2 {
    height: 100vh;
    background: radial-gradient(800px 400px at 25% 15%, rgba(0, 0, 156, 0.15), transparent 65%), radial-gradient(600px 300px at 75% 85%, rgba(40, 45, 109, 0.18), transparent 65%), linear-gradient(135deg, var(--primary-bg) 0%, rgba(236, 239, 244, 0.9) 50%, var(--secondary-bg) 100%);
  }
}

/* ===== INDICADOR DE SCROLL ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}
.scroll-indicator:hover .chevron-icon {
  animation-duration: 1s;
}
.scroll-indicator .chevron-icon {
  width: 32px;
  height: 32px;
  animation: bounceChevron 2s infinite ease-in-out;
}
@media (max-width: 768px) {
  .scroll-indicator .chevron-icon {
    width: 28px;
    height: 28px;
  }
}

@keyframes bounceChevron {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.hero-v2::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 156, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -2;
}
@media (max-width: 768px) {
  .hero-v2::before {
    display: none;
  }
}

.hero-v2::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 800px;
  height: 800px;
  background: conic-gradient(from 45deg, transparent 0 30%, rgba(40, 45, 109, 0.06) 30% 70%, transparent 70% 100%);
  filter: blur(100px);
  animation: swirl 30s linear infinite;
  z-index: -1;
}
@media (max-width: 768px) {
  .hero-v2::after {
    display: none;
  }
}

/* Elementos decorativos sutiles para móvil - COMO FONDO ABSOLUTO */
@media (max-width: 768px) {
  .hero-v2 {
    position: relative;
    overflow: visible;
  }
  /* Orbital móvil - versión simplificada del desktop */
  .hero-v2::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 0, 156, 0.08), transparent 50%), radial-gradient(circle at 70% 70%, rgba(40, 45, 109, 0.06), transparent 50%);
    border: 1px solid rgba(0, 0, 156, 0.15);
    z-index: -1;
    pointer-events: none;
  }
  /* Ring animado móvil */
  .hero-v2::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px dashed rgba(0, 0, 156, 0.25);
    animation: spin 20s linear infinite;
    z-index: -1;
    pointer-events: none;
  }
}
@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}
@keyframes float-gentle-mobile {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-25px) scale(1.1);
    opacity: 1;
  }
}
@keyframes swirl-mobile {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: rotate(180deg) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.7;
  }
}
@keyframes swirl {
  to {
    transform: rotate(360deg);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 48px);
  }
}
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
}

.hero-copy .brand {
  display: inline-block;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--rcl-blue-900);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(0, 0, 156, 0.12) 0%, rgba(40, 45, 109, 0.08) 100%);
  border-radius: 25px;
  border: 2px solid rgba(0, 0, 156, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 156, 0.15);
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .hero-copy .brand {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .hero-copy .brand {
    margin-top: 100px;
  }
}
.hero-copy .brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 156, 0.25);
  background: linear-gradient(135deg, rgba(0, 0, 156, 0.15) 0%, rgba(40, 45, 109, 0.12) 100%);
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-weight: 900;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--text-primary-title);
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--rcl-blue-900) 0%, var(--rcl-blue-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

.hero-copy .lead {
  margin: 0 0 32px;
  color: var(--text-secondary);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  line-height: 1.5;
  font-weight: 400;
  max-width: 90%;
}
@media (max-width: 768px) {
  .hero-copy .lead {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 100%;
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    align-items: center;
  }
}
.hero-cta .btn-primary, .hero-cta .btn-secondary {
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-cta .btn-primary, .hero-cta .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}
.hero-cta .btn-primary {
  background: linear-gradient(135deg, var(--rcl-blue-900) 0%, var(--rcl-blue-700) 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 156, 0.25), 0 4px 12px rgba(0, 0, 156, 0.15);
}
.hero-cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 156, 0.3), 0 6px 16px rgba(0, 0, 156, 0.2);
}
.hero-cta .btn-primary:hover::before {
  opacity: 1;
}
.hero-cta .btn-secondary {
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.hero-cta .btn-secondary:hover {
  border-color: var(--accent-bg);
  color: var(--accent-bg);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 156, 0.15);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .hero-tags {
    gap: 8px;
    justify-content: center;
  }
}
.hero-tags li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 156, 0.2);
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}
@media (max-width: 768px) {
  .hero-tags li {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
  }
}
.hero-tags li:hover {
  background: rgba(0, 0, 156, 0.08);
  border-color: rgba(0, 0, 156, 0.3);
  transform: translateY(-1px);
}

/* ===== Visual orbit  ===== */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }
}

.orbital {
  position: relative;
  width: min(60vw, 560px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 0, 156, 0.12), transparent 50%), radial-gradient(circle at 70% 70%, rgba(40, 45, 109, 0.08), transparent 50%), conic-gradient(from 0deg, rgba(0, 0, 156, 0.05), rgba(40, 45, 109, 0.08), rgba(0, 0, 156, 0.05));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 156, 0.15), 0 20px 60px rgba(0, 0, 156, 0.1);
  overflow: visible;
}
@media (max-width: 768px) {
  .orbital {
    display: none;
  }
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 156, 0.2);
  animation: spin 25s linear infinite;
}
@media (max-width: 768px) {
  .ring {
    animation-duration: 30s;
  }
}
.ring.ring-1 {
  inset: 15%;
  border-style: dashed;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .ring.ring-1 {
    animation-duration: 35s;
  }
}
.ring.ring-2 {
  inset: 25%;
  border-style: dotted;
  opacity: 0.4;
  animation-duration: 35s;
  animation-direction: reverse;
}
@media (max-width: 768px) {
  .ring.ring-2 {
    animation-duration: 40s;
  }
}
.ring.ring-3 {
  inset: 35%;
  border-style: solid;
  opacity: 0.3;
  animation-duration: 45s;
}
@media (max-width: 768px) {
  .ring.ring-3 {
    animation-duration: 50s;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.chip {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--text-primary);
  background: linear-gradient(135deg, #fff, var(--secondary-bg));
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 156, 0.15);
  transform-origin: center calc(50% + 12vmin);
  animation: orbit 14s linear infinite, bob 3.8s ease-in-out infinite;
}
@media (max-width: 768px) {
  .chip {
    width: 38px;
    height: 38px;
    font-size: 18px;
    transform-origin: center calc(50% + 10vmin);
    animation: orbit 18s linear infinite, bob-mobile 4.5s ease-in-out infinite;
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes bob {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}
/* Animaciones específicas para móvil con más movimiento */
@keyframes orbit-mobile {
  0% {
    transform: rotate(0deg) translateX(0px) translateY(0px);
  }
  12.5% {
    transform: rotate(45deg) translateX(12px) translateY(-6px);
  }
  25% {
    transform: rotate(90deg) translateX(15px) translateY(0px);
  }
  37.5% {
    transform: rotate(135deg) translateX(12px) translateY(6px);
  }
  50% {
    transform: rotate(180deg) translateX(0px) translateY(8px);
  }
  62.5% {
    transform: rotate(225deg) translateX(-12px) translateY(6px);
  }
  75% {
    transform: rotate(270deg) translateX(-15px) translateY(0px);
  }
  87.5% {
    transform: rotate(315deg) translateX(-12px) translateY(-6px);
  }
  100% {
    transform: rotate(360deg) translateX(0px) translateY(0px);
  }
}
@keyframes bob-mobile {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -3px;
  }
}
/* posiciones iniciales distintas */
.chip-a {
  top: 50%;
  left: 50%;
  transform: rotate(10deg);
}
@media (max-width: 768px) {
  .chip-a {
    animation-duration: 16s, 4s;
  }
}

.chip-b {
  top: 50%;
  left: 50%;
  transform: rotate(110deg);
  animation-duration: 18s;
}
@media (max-width: 768px) {
  .chip-b {
    animation-duration: 20s, 4.8s;
  }
}

.chip-c {
  top: 50%;
  left: 50%;
  transform: rotate(210deg);
  animation-duration: 22s;
}
@media (max-width: 768px) {
  .chip-c {
    animation-duration: 24s, 5.2s;
  }
}

.chip-d {
  top: 50%;
  left: 50%;
  transform: rotate(300deg);
  animation-duration: 26s;
}
@media (max-width: 768px) {
  .chip-d {
    animation-duration: 28s, 5.6s;
  }
}

/* Accesibilidad: respetar reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-v2::after, .ring, .chip {
    animation: none !important;
  }
}
/* ===== SECCIÓN SOBRE NOSOTROS ===== */
.sobre-nosotros-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.sobre-nosotros-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.sobre-nosotros-text.animate-text {
  opacity: 1;
  transform: translateY(0);
}
.sobre-nosotros-text::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 1px;
}
.sobre-nosotros-text p {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.sobre-nosotros-text p strong {
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 768px) {
  .sobre-nosotros-text {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
  .sobre-nosotros-text::after {
    height: 30px;
    bottom: -15px;
  }
}

/* ===== TARJETAS MISIÓN/VALOR/VISIÓN ===== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  position: relative;
}
.mv-grid::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--accent) 80%, transparent 100%);
  border-radius: 2px;
}
@media (max-width: 1024px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mv-grid::before {
    top: -20px;
    width: 60px;
    height: 2px;
  }
}

.mv-card {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  background: var(--bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mv-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.mv-card:nth-child(1).animate-in {
  transition-delay: 0.1s;
}
.mv-card:nth-child(2).animate-in {
  transition-delay: 0.2s;
}
.mv-card:nth-child(3).animate-in {
  transition-delay: 0.3s;
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}
.mv-card:hover::before {
  opacity: 1;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.mv-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.mv-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  letter-spacing: 0.01em;
  font-weight: 500;
}

.mv-accent {
  position: relative;
  background: var(--bg-card);
  border-color: var(--primary-light);
}
.mv-accent::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(var(--primary-rgb), 0.1) 25%, transparent 50%, rgba(var(--accent-rgb), 0.1) 75%, transparent 100%);
  filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  z-index: -1;
}
.mv-accent:hover::after {
  opacity: 0.6;
  animation: mvSweep 8s linear infinite;
}
.mv-accent h3 {
  color: var(--primary);
  position: relative;
}
.mv-accent h3::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 1px;
}

@keyframes mvSweep {
  to {
    transform: rotate(360deg);
  }
}
/* ===== ESTADÍSTICAS REDISEÑADAS ===== */
.sobre-nosotros-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  position: relative;
}
.sobre-nosotros-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}
@media (max-width: 640px) {
  .sobre-nosotros-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stats-section {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(0.5rem, 1vw, 0.75rem);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .stats-section .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.25rem, 1vw, 0.5rem);
    max-width: 100%;
  }
}

.stat {
  text-align: center;
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .stat {
    padding: clamp(0.25rem, 1vw, 0.5rem);
    border-radius: 8px;
  }
}
.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-light);
}
.stat:hover h3 {
  transform: scale(1.02);
}
.stat:hover .stat-visual {
  transform: scale(1.05);
}
.stat:hover .stat-visual.experience .experience-badge {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 156, 0.4);
}
.stat:hover .stat-visual.success .success-check {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}
.stat:hover .stat-visual.success .success-check .success-text {
  background: var(--rcl-blue-700);
  box-shadow: 0 4px 12px rgba(0, 0, 156, 0.4);
}
.stat:hover .stat-visual.support .support-clock .clock-face {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 156, 0.4);
}
.stat:hover .stat-visual.support .support-clock .clock-face .clock-hand {
  animation-duration: 1s;
}
.stat:hover::before {
  transform: translateX(0);
}
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
  z-index: 0;
}
.stat .stat-visual {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
}
.stat .stat-visual.experience .experience-badge {
  background: linear-gradient(135deg, var(--rcl-blue-900), var(--rcl-blue-700));
  border-radius: 16px;
  padding: 12px 16px;
  color: white;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 156, 0.2);
}
.stat .stat-visual.experience .experience-badge .badge-years {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}
.stat .stat-visual.experience .experience-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}
.stat .stat-visual.success .success-check {
  position: relative;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.stat .stat-visual.success .success-check svg {
  width: 32px;
  height: 32px;
  color: white;
  animation: checkmark-draw 1s ease-in-out;
}
.stat .stat-visual.success .success-check .success-text {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--rcl-blue-900);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 156, 0.3);
}
.stat .stat-visual.support .support-clock {
  position: relative;
}
.stat .stat-visual.support .support-clock .clock-face {
  width: 60px;
  height: 60px;
  border: 4px solid var(--rcl-blue-900);
  border-radius: 50%;
  position: relative;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 156, 0.2);
}
@media (max-width: 600px) {
  .stat .stat-visual.support .support-clock .clock-face {
    width: 50px;
    height: 50px;
    border: 3px solid var(--rcl-blue-900);
  }
}
.stat .stat-visual.support .support-clock .clock-face .clock-hand {
  position: absolute;
  background: var(--rcl-blue-900);
  border-radius: 2px;
  transform-origin: bottom center;
}
.stat .stat-visual.support .support-clock .clock-face .clock-hand.hour {
  width: 3px;
  height: 16px;
  top: 14px;
  left: 50%;
  margin-left: -1.5px;
  transform: rotate(90deg);
  animation: clock-tick 4s infinite linear;
}
@media (max-width: 600px) {
  .stat .stat-visual.support .support-clock .clock-face .clock-hand.hour {
    width: 2px;
    height: 10px;
    top: 10px;
    margin-left: -1px;
  }
}
.stat .stat-visual.support .support-clock .clock-face .clock-hand.minute {
  width: 2px;
  height: 22px;
  top: 8px;
  left: 50%;
  margin-left: -1px;
  transform: rotate(180deg);
  animation: clock-tick 2s infinite linear;
}
@media (max-width: 600px) {
  .stat .stat-visual.support .support-clock .clock-face .clock-hand.minute {
    width: 1px;
    height: 14px;
    top: 6px;
    margin-left: -0.5px;
  }
}
.stat .stat-visual.support .support-clock .clock-face .clock-center {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--rcl-blue-900);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 600px) {
  .stat .stat-visual.support .support-clock .clock-face .clock-center {
    width: 4px;
    height: 4px;
  }
}
.stat .stat-visual.support .support-clock .support-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .stat .stat-visual.support .support-clock .support-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 6px;
    bottom: -6px;
    right: -6px;
  }
}

@keyframes checkmark-draw {
  0% {
    stroke-dasharray: 0, 100;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 100, 100;
    stroke-dashoffset: 0;
  }
}
@keyframes clock-tick {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.stat .stat-icon {
  display: none;
}
.stat h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.2rem;
  line-height: 1;
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
}
.stat p {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .stat p {
    font-size: 0.65rem;
    line-height: 1.2;
  }
}
.stat:nth-child(1) .stat-icon {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}
.stat:nth-child(1) .stat-icon::after {
  content: "15+";
  font-size: 0.8rem;
  font-weight: 800;
}
.stat:nth-child(1) h3 {
  color: #2563eb;
}
.stat:nth-child(2) .stat-icon {
  background: linear-gradient(135deg, #10b981, #065f46);
}
.stat:nth-child(2) .stat-icon::after {
  content: "100%";
  font-size: 0.7rem;
  font-weight: 800;
}
.stat:nth-child(2) h3 {
  color: #059669;
}
.stat:nth-child(3) .stat-icon {
  background: linear-gradient(135deg, #f59e0b, #b45309);
}
.stat:nth-child(3) .stat-icon::after {
  content: "24/7";
  font-size: 0.7rem;
  font-weight: 800;
}
.stat:nth-child(3) h3 {
  color: #d97706;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .sobre-nosotros-content {
    gap: 2rem;
    margin-top: 1rem;
  }
  .mv-card {
    padding: 1.5rem;
  }
  .sobre-nosotros-stats {
    padding: 2rem 0;
    margin-top: 2rem;
  }
  .sobre-nosotros-stats::before {
    width: 40px;
    height: 2px;
  }
  .stat {
    padding: 1.5rem;
  }
  .stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
  }
}
/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
  .mv-card,
  .mv-accent::after,
  .stat,
  .stat h3 {
    animation: none !important;
    transition: none !important;
  }
}
/* ===== MODO CLARO AUTOMÁTICO (solo cuando no hay preferencia manual) ===== */
@media (prefers-color-scheme: light) {
  body:not([data-theme]) .mv-card {
    background: transparent !important;
    border-color: rgba(0, 0, 156, 0.15) !important;
    color: #1a1f3a !important;
  }
  body:not([data-theme]) .mv-card h3 {
    color: #00009C !important;
  }
  body:not([data-theme]) .mv-card p {
    color: #1a1f3a !important;
  }
  body:not([data-theme]) .stat {
    background: transparent !important;
    border-color: rgba(0, 0, 156, 0.15) !important;
    color: #1a1f3a !important;
  }
  body:not([data-theme]) .stat h3 {
    color: #00009C !important;
  }
  body:not([data-theme]) .stat .stat-number {
    color: #1a1f3a !important;
  }
  body:not([data-theme]) .stat .stat-label {
    color: #1a1f3a !important;
  }
  body:not([data-theme]) .stat p {
    color: #1a1f3a !important;
  }
  body:not([data-theme]) .sobre-nosotros-text {
    background: transparent !important;
    border-color: rgba(0, 0, 156, 0.15) !important;
    color: #00009C !important;
  }
  body:not([data-theme]) .sobre-nosotros-text p {
    color: #00009C !important;
    font-weight: 500;
  }
}
/* ===== MODO OSCURO AUTOMÁTICO (solo cuando no hay preferencia manual) ===== */
@media (prefers-color-scheme: dark) {
  body:not([data-theme]) .mv-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(10px);
  }
  body:not([data-theme]) .mv-card h3 {
    color: #ffffff;
  }
  body:not([data-theme]) .mv-card p {
    color: #ffffff;
  }
  body:not([data-theme]) .stat {
    background: transparent;
    border-color: transparent;
    color: #ffffff;
    backdrop-filter: none;
  }
  body:not([data-theme]) .stat h3 {
    color: #ffffff;
  }
  body:not([data-theme]) .stat .stat-number {
    color: #ffffff;
  }
  body:not([data-theme]) .stat .stat-label {
    color: #ffffff;
  }
  body:not([data-theme]) .stat p {
    color: #ffffff;
  }
  body:not([data-theme]) .sobre-nosotros-text {
    background: transparent;
    border-color: transparent;
    color: #ffffff;
  }
  body:not([data-theme]) .sobre-nosotros-text p {
    color: #ffffff;
  }
}
/* ===== MODO CLARO FORZADO (cuando se usa el switch para claro) ===== */
[data-theme=light] #sobre-nosotros .sobre-nosotros-text {
  background: transparent !important;
  border-color: rgba(0, 0, 156, 0.15) !important;
  color: #00009C !important;
}
[data-theme=light] #sobre-nosotros .sobre-nosotros-text p {
  color: #00009C !important;
}
[data-theme=light] #sobre-nosotros .mv-card {
  background: transparent !important;
  border-color: rgba(0, 0, 156, 0.15) !important;
  color: #1a1f3a !important;
}
[data-theme=light] #sobre-nosotros .mv-card h3 {
  color: #00009C !important;
}
[data-theme=light] #sobre-nosotros .mv-card p {
  color: #1a1f3a !important;
}
[data-theme=light] #sobre-nosotros .stat {
  background: transparent !important;
  border-color: rgba(0, 0, 156, 0.15) !important;
  color: #1a1f3a !important;
}
[data-theme=light] #sobre-nosotros .stat h3 {
  color: #00009C !important;
}
[data-theme=light] #sobre-nosotros .stat .stat-number {
  color: #1a1f3a !important;
}
[data-theme=light] #sobre-nosotros .stat .stat-label {
  color: #1a1f3a !important;
}
[data-theme=light] #sobre-nosotros .stat p {
  color: #1a1f3a !important;
}

/* ========================================
   MODO OSCURO - SOBRE NOSOTROS
======================================== */
[data-theme=dark] #sobre-nosotros {
  background: linear-gradient(135deg, #000066 0%, #000080 100%);
}
[data-theme=dark] #sobre-nosotros .section-title {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}
[data-theme=dark] #sobre-nosotros .sobre-nosotros-text {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
}
[data-theme=dark] #sobre-nosotros .sobre-nosotros-text p {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .mv-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
[data-theme=dark] #sobre-nosotros .mv-card h3 {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .mv-card p {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .mv-accent {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
[data-theme=dark] #sobre-nosotros .mv-accent h3 {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .mv-accent p {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .stat {
  background: transparent;
  border-color: transparent;
  color: #ffffff;
  backdrop-filter: none;
}
[data-theme=dark] #sobre-nosotros .stat .stat-number {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .stat .stat-label {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .stat p {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .experience-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .experience-badge .badge-years {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .experience-badge .badge-text {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .timeline-item .timeline-year {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .timeline-item .timeline-content {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
[data-theme=dark] #sobre-nosotros .timeline-item .timeline-content h4 {
  color: #ffffff;
}
[data-theme=dark] #sobre-nosotros .timeline-item .timeline-content p {
  color: #ffffff;
}

/* ==== CLIENTES ==== */
.clients {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
  background: radial-gradient(900px 420px at 10% 10%, rgba(0, 0, 156, 0.05), transparent 60%), radial-gradient(700px 380px at 90% 90%, rgba(40, 45, 109, 0.06), transparent 60%);
  overflow: hidden;
}

.clients .section-title {
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 24px);
  position: relative;
}
.clients .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rcl-blue-900), var(--rcl-blue-700));
  border-radius: 2px;
}
.clients .section-title.animate-underline::after {
  width: 0;
  animation: underlineGrow 0.6s ease-out forwards;
}
@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}
@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 2vw, 12px);
  }
}

.client-card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, var(--secondary-bg));
  padding: 18px;
  box-shadow: var(--shadow-light);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: clip;
}
@media (max-width: 600px) {
  .client-card {
    padding: 12px;
    border-radius: 12px;
  }
}
.client-card {
  /* sutil brillo animado */
}
.client-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent 0 75%, rgba(0, 0, 156, 0.12) 75% 85%, transparent 85% 100%);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 0, 156, 0.25);
}
.client-card:hover::after {
  opacity: 0.7;
  animation: ringSweep 4s linear infinite;
}

@keyframes ringSweep {
  to {
    transform: rotate(360deg);
  }
}
.logo-box {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 2px 2px 12px;
  background: transparent;
  border-radius: 8px;
  padding: 8px 12px;
  border: none;
}
@media (max-width: 600px) {
  .logo-box {
    height: 40px;
    margin: 2px 2px 8px;
    padding: 6px 10px;
  }
}
.logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.client-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.client-card .excerpt {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .client-card .excerpt {
    display: none;
  }
}

.client-card details {
  border-top: 1px dashed var(--border-color);
  margin-top: 10px;
  padding-top: 10px;
}
@media (max-width: 600px) {
  .client-card details {
    margin-top: 6px;
    padding-top: 6px;
  }
}

.client-card summary {
  cursor: pointer;
  user-select: none;
  color: var(--accent-bg);
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
}

.client-card summary::-webkit-details-marker {
  display: none;
}

.client-card details p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Respeto a reduced motion */
@media (prefers-reduced-motion: reduce) {
  .client-card, .client-card::after {
    animation: none !important;
    transition: none !important;
  }
}
/* ========================================
   MODO OSCURO - CLIENTES
======================================== */
[data-theme=dark] #clientes {
  background: linear-gradient(135deg, #000066 0%, #000080 100%);
}
[data-theme=dark] #clientes .section-title {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}
[data-theme=dark] #clientes .section-title::after {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
[data-theme=dark] #clientes .client-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
[data-theme=dark] #clientes .client-card .logo-box {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}
[data-theme=dark] #clientes .client-card::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}
[data-theme=dark] #clientes .client-card h3 {
  color: #ffffff !important;
}
[data-theme=dark] #clientes .client-card .excerpt {
  color: rgba(255, 255, 255, 0.8) !important;
}
[data-theme=dark] #clientes .client-card summary {
  color: #ffffff;
}
[data-theme=dark] #clientes .client-card details p {
  color: rgba(255, 255, 255, 0.8);
}
[data-theme=dark] #clientes .client-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
[data-theme=dark] #clientes .client-card:hover .logo-box {
  background: rgba(255, 255, 255, 0.95);
}

.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 - DISEÑO COMPACTO
======================================== */
#servicios {
  background: radial-gradient(1200px 600px at 20% 10%, rgba(0, 0, 156, 0.1), transparent 60%), radial-gradient(800px 400px at 80% 90%, rgba(40, 45, 109, 0.12), transparent 60%), linear-gradient(135deg, var(--primary-bg) 0%, rgba(236, 239, 244, 0.7) 50%, var(--secondary-bg) 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 7vw, 80px) 0;
}
#servicios::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 0, 156, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}
#servicios::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(40, 45, 109, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  animation: float 25s ease-in-out infinite reverse;
}
#servicios .section-title {
  text-align: center;
  font-weight: 900;
  color: var(--text-primary-title);
  margin-bottom: clamp(16px, 3vw, 32px);
  background: linear-gradient(135deg, var(--rcl-blue-900) 0%, var(--rcl-blue-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
#servicios .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rcl-blue-900), var(--rcl-blue-700));
  border-radius: 2px;
}
#servicios .section-title.animate-underline::after {
  width: 0;
  animation: underlineGrow 0.6s ease-out forwards;
}
@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}
.servicios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .servicios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .servicios-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.servicio-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 156, 0.1);
  border-radius: 16px;
  padding: clamp(20px, 3.5vw, 28px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 156, 0.06), 0 1px 3px rgba(0, 0, 156, 0.03);
}
.servicio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 156, 0.05) 0%, rgba(40, 45, 109, 0.03) 50%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
.servicio-item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 0, 156, 0.1) 90deg, transparent 180deg);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -2;
}
.servicio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 156, 0.12), 0 6px 12px rgba(0, 0, 156, 0.08);
  border-color: rgba(0, 0, 156, 0.2);
}
.servicio-item:hover::before {
  opacity: 1;
}
.servicio-item:hover::after {
  opacity: 0.3;
}
.servicio-item:hover .servicio-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, var(--rcl-blue-900), var(--rcl-blue-700));
  color: white;
}
.servicio-item:hover h3 {
  color: var(--rcl-blue-900);
}
.servicio-item h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: var(--text-primary-title);
  margin: clamp(14px, 2.5vw, 18px) 0 clamp(8px, 1.5vw, 12px);
  line-height: 1.3;
  transition: color 0.3s ease;
}
.servicio-item p {
  color: var(--text-secondary);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.servicio-icon {
  width: clamp(50px, 6vw, 64px);
  height: clamp(50px, 6vw, 64px);
  background: linear-gradient(135deg, rgba(0, 0, 156, 0.1) 0%, rgba(40, 45, 109, 0.08) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--rcl-blue-900);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.servicio-icon::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(8px);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .servicios-grid {
    gap: clamp(12px, 2.5vw, 16px);
    padding: 0 12px;
  }
}
#servicios::before,
#servicios::after {
  animation-duration: 30s;
}

/* ========================================
   SERVICIOS LIST - DISEÑO VERTICAL NUMERADO
======================================== */
.servicios-list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

/* Smooth appearing animation for service items - same as web project */
.servicio-item-vertical {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-play-state: paused;
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 156, 0.1);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 156, 0.08), 0 2px 4px rgba(0, 0, 156, 0.04);
}
.servicio-item-vertical:nth-child(1) {
  animation-delay: 0.15s;
}
.servicio-item-vertical:nth-child(2) {
  animation-delay: 0.25s;
}
.servicio-item-vertical:nth-child(3) {
  animation-delay: 0.35s;
}
.servicio-item-vertical:nth-child(4) {
  animation-delay: 0.45s;
}
.servicio-item-vertical:nth-child(5) {
  animation-delay: 0.55s;
}
.servicio-item-vertical:nth-child(6) {
  animation-delay: 0.65s;
}
.servicio-item-vertical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 156, 0.06) 0%, rgba(40, 45, 109, 0.04) 50%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
.servicio-item-vertical:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 156, 0.15), 0 8px 16px rgba(0, 0, 156, 0.1);
  border-color: rgba(0, 0, 156, 0.2);
}
.servicio-item-vertical:hover::before {
  opacity: 1;
}
.servicio-item-vertical:hover .servicio-number {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--rcl-blue-900), var(--rcl-blue-700));
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 156, 0.3);
}
.servicio-item-vertical:hover .servicio-content h3 {
  color: var(--rcl-blue-900);
}
@media (max-width: 768px) {
  .servicio-item-vertical {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(20px, 3.5vw, 28px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.servicio-number {
  flex-shrink: 0;
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  background: linear-gradient(135deg, rgba(0, 0, 156, 0.1) 0%, rgba(40, 45, 109, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 900;
  color: var(--rcl-blue-900);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 156, 0.1);
}
@media (max-width: 768px) {
  .servicio-number {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
    margin-top: 2px;
  }
}
.servicio-number::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  filter: blur(6px);
  transition: all 0.3s ease;
}

.servicio-content {
  flex: 1;
}
.servicio-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary-title);
  margin: 0 0 clamp(8px, 1.5vw, 12px);
  line-height: 1.3;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .servicio-content h3 {
    margin-top: 0;
    line-height: 1.2;
  }
}
.servicio-content p {
  color: var(--text-secondary);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* ========================================
   DARK MODE STYLES FOR SERVICIOS
======================================== */
[data-theme=dark] .servicio-item {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
[data-theme=dark] .servicio-item h3 {
  color: white;
}
[data-theme=dark] .servicio-item p {
  color: rgba(255, 255, 255, 0.9);
}
[data-theme=dark] .servicio-item:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3);
}
[data-theme=dark] .servicio-item:hover h3 {
  color: rgb(59, 130, 246);
}
[data-theme=dark] .servicio-item-vertical {
  background: linear-gradient(135deg, rgba(0, 0, 102, 0.8) 100%) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 156, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 156, 0.2);
}
[data-theme=dark] .servicio-item-vertical h3 {
  color: white !important;
}
[data-theme=dark] .servicio-item-vertical p {
  color: rgba(255, 255, 255, 0.9) !important;
}
[data-theme=dark] .servicio-item-vertical .servicio-number {
  color: white !important;
}
[data-theme=dark] .servicio-item-vertical .servicio-number:hover {
  color: white !important;
}
[data-theme=dark] .servicio-item-vertical:hover {
  background: linear-gradient(135deg, rgba(0, 0, 51, 0.95) 0%, rgba(0, 0, 102, 0.85) 100%) !important;
  border-color: rgba(0, 0, 156, 0.4) !important;
}
[data-theme=dark] .servicio-item-vertical:hover h3 {
  transform: scale(1.05);
}
[data-theme=dark] #servicios {
  background: radial-gradient(1400px 700px at 25% 15%, rgba(0, 0, 156, 0.12), transparent 65%), radial-gradient(900px 450px at 75% 85%, rgba(40, 45, 109, 0.15), transparent 65%), linear-gradient(135deg, var(--primary-bg) 0%, rgba(236, 239, 244, 0.8) 50%, var(--secondary-bg) 100%);
}
[data-theme=dark] #servicios::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
[data-theme=dark] #servicios::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 800px;
  height: 800px;
  background: conic-gradient(from 45deg, transparent 0 30%, rgba(40, 45, 109, 0.06) 30% 70%, transparent 70% 100%);
  filter: blur(100px);
  animation: swirl 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}
[data-theme=dark] #servicios .section-title {
  color: var(--text-primary-title) !important;
  background: linear-gradient(135deg, var(--rcl-blue-900) 0%, var(--rcl-blue-700) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
[data-theme=dark] #servicios .container {
  position: relative;
  z-index: 1;
}

footer {
  background: linear-gradient(135deg, var(--rcl-blue-900) 0%, var(--rcl-blue-900) 100%);
  color: var(--text-white);
  padding: 40px 0 25px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
}
footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer-brand .footer-brand-line {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  footer .footer-brand .footer-brand-line {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
footer .footer-brand .footer-logo img {
  height: 48px;
  width: auto;
}
@media (max-width: 767px) {
  footer .footer-brand .footer-logo img {
    height: 40px;
  }
}
footer .footer-brand p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--rcl-ice);
  margin: 0;
  max-width: 280px;
}
@media (max-width: 767px) {
  footer .footer-brand p {
    text-align: center;
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 0;
  }
}
footer .footer-column h4 {
  color: var(--rcl-ice);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  footer .footer-column h4 {
    display: none;
  }
}
footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  footer .footer-column ul {
    display: none;
  }
}
footer .footer-column ul li a {
  color: var(--rcl-ice-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
footer .footer-column ul li a:hover {
  color: var(--rcl-ice);
  transform: translateY(-1px);
}
footer .footer-mobile-nav {
  display: none;
}
@media (max-width: 767px) {
  footer .footer-mobile-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }
  footer .footer-mobile-nav a {
    flex: 1;
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 6px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    color: var(--rcl-ice-muted);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  footer .footer-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--rcl-ice);
  }
}
@media (max-width: 767px) {
  footer .footer-content::after {
    content: "";
    display: block;
    grid-column: 1;
  }
}
footer .footer-bottom {
  border-top: 1px solid var(--rcl-silver); /* Cambio de rgba(255, 255, 255, 0.1) */
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  footer .footer-bottom {
    margin-top: 16px;
  }
}
footer .footer-bottom p {
  margin: 0 0 16px 0;
  font-size: 0.9rem;
  color: var(--rcl-ice); /* Cambio de rgba(255, 255, 255, 0.6) */
}
footer .footer-bottom .footer-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-bottom .footer-credits .tupla-logo {
  height: 24px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
footer .footer-bottom .footer-credits .tupla-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
footer .footer-bottom .footer-credits span {
  font-size: 1rem;
  color: var(--rcl-ice-muted);
  font-weight: 400;
}
footer .footer-bottom .footer-credits span a {
  color: var(--rcl-ice);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
footer .footer-bottom .footer-credits span a:hover {
  color: white;
  text-decoration: underline;
}
@media (max-width: 767px) {
  footer .footer-bottom .footer-credits {
    flex-direction: column;
    gap: 8px;
  }
  footer .footer-bottom .footer-credits .tupla-logo {
    height: 20px;
  }
  footer .footer-bottom .footer-credits span {
    font-size: 0.9rem;
  }
}

#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;
}

.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;
  }
}

/* ========================================
   THEME SWITCH - Switch de modo oscuro
======================================== */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .theme-switch-wrapper {
    gap: 0.25rem;
  }
}

.theme-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "☀";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #333;
  font-weight: normal;
}

input:checked + .slider:before {
  content: "☽";
  transform: translateX(26px);
  color: #666;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.theme-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2C2C2C;
  white-space: nowrap;
  transition: color 300ms ease-in-out;
}
@media (max-width: 576px) {
  .theme-label {
    font-size: 0.75rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .theme-switch-wrapper {
    margin-left: 0;
    margin-top: 10px;
  }
  .theme-switch {
    width: 40px;
    height: 20px;
  }
  .slider:before {
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
  }
  input:checked + .slider:before {
    transform: translateX(20px);
  }
  .theme-label {
    font-size: 16px;
  }
}
/* ========================================
   VARIABLES
======================================== */
:root {
  /* Paleta RCL - Diseño limpio */
  --rcl-ink: #000000;
  --rcl-blue-900: #00009C;
  --rcl-blue-700: #282D6D;
  --rcl-silver: #969BA8;
  --rcl-ice: #ECEFF4;
  /* Variables principales - Diseño limpio */
  --primary-bg: #F8F9FA;
  --secondary-bg: #ECEFF4;
  --accent-bg: var(--rcl-blue-900);
  --accent-secondary: var(--rcl-blue-700);
  /* Textos - visibilidad y contraste WCAG AA */
  --text-primary: var(--rcl-blue-900); /* Texto principal azul oscuro */
  --text-primary-dark: var(--rcl-ink); /* Negro para contraste */
  --text-primary-title: var(--rcl-blue-900); /* Títulos azules */
  --text-secondary: #1a1f3a; /* Azul muy oscuro para mejor contraste (7.2:1) */
  --text-tertiary: #374151; /* Gris oscuro para mejor contraste (5.8:1) */
  --text-muted: #4B5563; /* Gris más oscuro para contraste (4.6:1) */
  --text-white: #FFFFFF; /* Texto blanco para fondos oscuros */
  /* Overlays y efectos */
  --overlay-dark: rgba(0, 0, 156, 0.1); /* Overlay azul sutil */
  --overlay-darker: rgba(40, 45, 109, 0.2);
  --card-gradient: linear-gradient(135deg, rgba(0, 0, 156, 0.05) 0%, rgba(248, 249, 250, 0.8) 100%);
  --border-color: rgba(0, 0, 156, 0.15); /* Bordes azules sutiles */
  /* Estados */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  /* Sombras sutiles */
  --shadow-light: 0 1px 3px rgba(0, 0, 156, 0.1);
  --shadow-medium: 0 4px 6px rgba(0, 0, 156, 0.1);
  --shadow-large: 0 10px 15px rgba(0, 0, 156, 0.1);
}

html {
  font-size: 14px;
}

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;
}
