/* Donkey Cargo Theme - Main Styles */

:root {
  --background: #FFFAF5;
  --foreground: #1A1A1A;
  --card: #FFFFFF;
  --card-foreground: #1A1A1A;
  --popover: #FFFFFF;
  --popover-foreground: #1A1A1A;
  --primary: #E30613;
  --primary-foreground: #FFFFFF;
  --secondary: #FFF0E8;
  --secondary-foreground: #1A1A1A;
  --muted: #F5F0EB;
  --muted-foreground: #6B6B6B;
  --accent: #0EA5E9;
  --accent-foreground: #FFFFFF;
  --destructive: #EF4444;
  --destructive-foreground: #FFFFFF;
  --border: #E8DDD4;
  --input: #E8DDD4;
  --ring: #E30613;
  --radius: 1rem;
  --lemon: #FDE047;
  --sea: #0EA5E9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.font-serif {
  font-family: 'Fredoka', sans-serif;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.overflow-hidden {
  overflow: hidden;
}

/* Ensure main sections are full width */
main {
  width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  display: block;
}

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

/* Ensure max-width containers are centered */
.max-w-2xl,
.max-w-3xl,
.max-w-5xl,
.max-w-7xl {
  margin-left: auto;
  margin-right: auto;
}


.max-w-7xl {
  max-width: 80rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xs {
  max-width: 20rem;
}

/* Spacing */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

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

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

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

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

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

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

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

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

.pt-12 {
  padding-top: 3rem;
}

.pt-20 {
  padding-top: 5rem;
}

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

.pb-4 {
  padding-bottom: 1rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

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

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

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

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

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

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

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

.mt-10 {
  margin-top: 2.5rem;
}

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

.mt-14 {
  margin-top: 3.5rem;
}

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

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

/* Flexbox */
.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

.flex-1 {
  flex: 1 1 0%;
}

/* Hero specific */
.hero-section {
  position: relative;
}

.hero-badge {
  background-color: #ffffff;
  color: var(--primary);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1.75rem;
}

.hero-cta-group {
  gap: 0.75rem;
}

.hero-cta {
  background-color: #ffffff !important;
  color: var(--primary) !important;
  border-radius: 9999px;
  padding-inline: 2.75rem;
  height: 3.25rem;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(26, 26, 26, 0.12);
}

.hero-cta-primary {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hero-cta-secondary {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.hero-cta:hover {
  background-color: #ffffff;
  border-color: rgba(26, 26, 26, 0.3);
}

.hero-cta-secondary:hover {
  background-color: #ffffff;
  border-color: rgba(26, 26, 26, 0.12);
}

/* Leaflet map */
.naples-leaflet-map {
  width: 100%;
  height: 360px;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  position: relative;
}

.naples-leaflet-map::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.28), transparent 60%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .naples-leaflet-map {
    height: 440px;
  }
}

/* Marker coverage pulse (animazione disattivata) */
.coverage-marker {
}

/* Grid */
.grid {
  display: grid;
  width: 100%;
}

.grid-template-columns-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

/* Fix duplicate text-3xl */
.text-3xl:not(.font-serif) {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

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

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

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

.uppercase {
  text-transform: uppercase;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

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

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

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

/* Colors */
.bg-primary {
  background-color: var(--primary);
}

.bg-primary-10 {
  background-color: rgba(227, 6, 19, 0.1);
}

.bg-primary-95 {
  background-color: rgba(227, 6, 19, 0.95);
}

.bg-primary-foreground {
  background-color: var(--primary-foreground);
}

.bg-primary-foreground-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-primary-foreground-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-background {
  background-color: var(--background);
}

.bg-foreground {
  background-color: var(--foreground);
}

.bg-card {
  background-color: var(--card);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-lemon {
  background-color: var(--lemon);
}

.bg-lemon-20 {
  background-color: rgba(253, 224, 71, 0.2);
}

.bg-lemon-90 {
  background-color: rgba(253, 224, 71, 0.9);
}

.bg-sea {
  background-color: var(--sea);
}

.bg-sea-15 {
  background-color: rgba(14, 165, 233, 0.15);
}

.bg-transparent {
  background-color: transparent;
}

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

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-primary-foreground-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-primary-foreground-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-foreground {
  color: var(--foreground);
}

.text-foreground-90 {
  color: rgba(26, 26, 26, 0.9);
}

.text-background {
  color: var(--background);
}

.text-background-40 {
  color: rgba(255, 250, 245, 0.4);
}

.text-background-50 {
  color: rgba(255, 250, 245, 0.5);
}

.text-background-60 {
  color: rgba(255, 250, 245, 0.6);
}

.text-background-70 {
  color: rgba(255, 250, 245, 0.7);
}

.text-background-80 {
  color: rgba(255, 250, 245, 0.8);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-lemon {
  color: var(--lemon);
}

.text-lemon-80 {
  color: rgba(253, 224, 71, 0.8);
}

.text-sea {
  color: var(--sea);
}

.underline {
  text-decoration: underline;
}

.underline-offset-2 {
  text-underline-offset: 0.5rem;
}

/* Borders */
.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-border {
  border-color: var(--border);
}

.border-border-60 {
  border-color: rgba(232, 221, 212, 0.6);
}

.border-primary {
  border-color: var(--primary);
}

.border-primary-10 {
  border-color: rgba(227, 6, 19, 0.1);
}

.border-primary-foreground-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-primary-foreground-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.border-background-10 {
  border-color: rgba(255, 250, 245, 0.1);
}

.border-background-15 {
  border-color: rgba(255, 250, 245, 0.15);
}

/* Border Radius */
.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Sizing */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.min-w-0 {
  min-width: 0;
}

.max-w-full {
  max-width: 100%;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-auto {
  height: auto;
}

.size-4 {
  width: 1rem;
  height: 1rem;
}

.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.size-9 {
  width: 2.25rem;
  height: 2.25rem;
}

.size-11 {
  width: 2.75rem;
  height: 2.75rem;
}

.size-14 {
  width: 3.5rem;
  height: 3.5rem;
}

.size-16 {
  width: 4rem;
  height: 4rem;
}

.size-20 {
  width: 5rem;
  height: 5rem;
}

.h-px {
  height: 1px;
}

.left-1\/2 {
  left: 50%;
}

.top-10 {
  top: 2.5rem;
}

.top-4 {
  top: 1rem;
}

.bottom-8 {
  bottom: 2rem;
}

.right-4 {
  right: 1rem;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.top-24 {
  top: 6rem;
}

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

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

.transform {
  transform: translateZ(0);
}

.-translate-y-1 {
  transform: translateY(-0.25rem);
}

.scale-110 {
  transform: scale(1.1);
}

.object-cover {
  object-fit: cover;
}

.object-center {
  object-position: center;
}

.object-contain {
  object-fit: contain;
}

/* Display */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

/* Effects */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}

.brightness-0 {
  filter: brightness(0);
}

.invert {
  filter: invert(1);
}

/* Footer */
.site-footer {
  background-color: var(--foreground);
  color: var(--background);
  width: 100%;
}

.site-footer img {
  filter: none;
}

.site-footer a {
  text-decoration: none;
}

.site-header a {
  text-decoration: none;
}

.site-footer h3 {
  margin: 0;
  padding: 0;
}

.site-footer .footer-brand {
  gap: 0.75rem;
}

.site-footer .footer-brand span {
  max-width: 20rem;
}

.site-footer .footer-links a {
  position: relative;
  padding-bottom: 1px;
}

.site-footer .footer-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--background);
}

@media (max-width: 640px) {
  .site-footer .footer-links {
    justify-content: center;
    text-align: center;
  }

  .site-footer .footer-links li {
    margin-bottom: 0.25rem;
  }
}

.opacity-50 {
  opacity: 0.5;
}

/* Transitions disattivate (nessuna animazione di transizione) */
.transition-all,
.transition-colors,
.transition-transform {
  transition: none;
}

/* Hover Effects */
.hover\:bg-lemon:hover {
  background-color: var(--lemon);
}

.hover\:bg-lemon-80:hover {
  background-color: rgba(253, 224, 71, 0.8);
}

.hover\:bg-lemon-90:hover {
  background-color: rgba(253, 224, 71, 0.9);
}

.hover\:bg-primary-90:hover {
  background-color: rgba(227, 6, 19, 0.9);
}

.hover\:bg-primary-foreground-10:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hover\:text-primary:hover {
  color: var(--primary);
}

.hover\:text-primary-foreground:hover {
  color: var(--primary-foreground);
}

.hover\:text-lemon:hover {
  color: var(--lemon);
}

.hover\:text-lemon-80:hover {
  color: rgba(253, 224, 71, 0.8);
}

.hover\:-translate-y-1:hover {
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.group:hover .group-hover\:scale-110 {
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: none;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: rgba(227, 6, 19, 0.9);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: var(--primary-foreground);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Inputs */
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: none;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Icons and decorative elements */
.star {
  color: var(--primary);
  font-size: 1rem;
}

.arrow-icon {
  display: inline-block;
}

.icon-leaf,
.icon-clock,
.icon-shield,
.icon-map,
.icon-zap {
  display: inline-block;
}

.sparkle {
  font-size: 1.25rem;
  opacity: 0.2;
}

.leaf-icon {
  font-size: 0.875rem;
}

/* Animations disattivate */
.animate-float,
.animate-fade-in-up,
.animate-pulse-dot {
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(227, 6, 19, 0.1);
  background-color: rgba(227, 6, 19, 0.95);
  backdrop-filter: blur(16px);
}

.site-header img {
  filter: none;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  padding-bottom: 0;
  padding-top: 3rem;
  width: 100%;
}

.hero-illustration {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.2);
  margin: -5% -8% -15% -8%;
  display: block;
}

@media (min-width: 768px) {
  .hero-image {
    transform: scale(1.25);
    margin: -5% -10% -18% -10%;
  }
}

@media (min-width: 1024px) {
  .hero-image {
    transform: scale(1.3);
    margin: -5% -12% -20% -12%;
  }
}

.sparkle {
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
}

.sparkle-1 {
  top: 4rem;
  left: 2rem;
}

.sparkle-2 {
  top: 8rem;
  right: 4rem;
}

.sparkle-3 {
  bottom: 10rem;
  left: 25%;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
}

.blur-circle-1 {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(253, 224, 71, 0.1);
}

.blur-circle-2 {
  bottom: 5rem;
  left: 0;
  width: 12rem;
  height: 12rem;
  background-color: rgba(14, 165, 233, 0.1);
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid rgba(232, 221, 212, 0.6);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
}

.faq-item.active .faq-icon {
}

.faq-answer {
  padding-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Form Success */
.form-success {
  display: none;
}

.form-success.active {
  display: block;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm\:justify-center {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:items-center {
    align-items: center;
  }
  
  .md\:items-end {
    align-items: flex-end;
  }
  
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .md\:p-8 {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .lg\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  
  .lg\:pt-20 {
    padding-top: 5rem;
  }
  
  .lg\:mt-16 {
    margin-top: 4rem;
  }
  
  .lg\:max-w-lg {
    max-width: 32rem;
  }
  
  .lg\:sticky {
    position: sticky;
  }
  
  .lg\:top-24 {
    top: 6rem;
  }
  
  .lg\:items-start {
    align-items: flex-start;
  }
  
  .lg\:text-left {
    text-align: left;
  }
  
  .lg\:justify-start {
    justify-content: flex-start;
  }
  
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .animate-fade-in-up,
  .animate-pulse-dot {
    animation: none;
  }
}

/* Section title centering */
section .mx-auto.max-w-2xl.text-center,
section .mx-auto.max-w-3xl.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

