:root {
  --ec-home-hero-overlay: linear-gradient(
    135deg,
    rgba(8, 118, 187, 0.92),
    rgba(4, 36, 58, 0.92)
  );
  --ec-home-text-dark: #1f2937;
  --ec-home-text-muted: #5b6573;
  --ec-home-border: #d9e2ec;
  --ec-home-bg-soft: #f8fbfe;
  --ec-home-success: #198754;
  --ec-home-warning: var(--ec-color-secondary);
  --ec-home-shape-color: #d0d0d0;
  --ec-home-container-bg: #f2f2f2;
  --ec-home-img-bg: #1f2937;
}
/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: white;
  color: transparent;
}
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 10px 40px 10px;
}
/* Home base */
.ec-home {
  background-color: #ffffff;
}

.ec-home section {
  position: relative;
}

.ec-home .container,
.ec-home .container-fluid {
  position: relative;
  z-index: 2;
}

.ec-home-badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background-color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: black;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ec-home-title {
  background: none;
  padding: 10px 0;
  font-size: 48px;
}

.ec-home-subtitle {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
  margin: 0 auto 28px;
}

.ec-home-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.ec-home-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ec-home-img-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 6px 6px 25px 0px rgba(0, 0, 0, 0.35);
}

.ec-home-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  /* box-shadow: 6px 6px 25px 0px rgba(0, 0, 0, 0.35); */
}

.ec-home-btn {
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ec-home-btn-primary {
  background-color: var(--ec-home-success);
  color: #fff;
  border: 2px solid var(--ec-home-success);
  box-shadow: 6px 6px 25px 0px rgba(0, 0, 0, 0.35);
}

.ec-home-btn-primary:hover {
  color: var(--ec-color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(25, 135, 84, 0.35);
}

.ec-home-btn-secondary {
  background-color: #fff;
  color: black;
  border: 2px solid #fff;
  box-shadow: 6px 6px 25px 0px rgba(0, 0, 0, 0.35);
}

.ec-home-btn-secondary:hover {
  color: var(--ec-color-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.22);
}

/* HERO */
/* .ec-home-hero-box {
  background: var(--ec-home-hero-overlay);
  color: white;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(8, 118, 187, 0.3);
  } */
.hero-section {
  /* position: relative; */
  /* min-height: 100vh; */
  overflow: hidden;
  background: var(--ec-home-container-bg);
  /* display: flex; */
  /* align-items: center; */
}
.ec-home-hero-box {
  padding: 30px 20px;
  border-radius: 2%;
  background: linear-gradient(135deg, var(--ec-color-primary) 0%, #04243a 100%);
  backdrop-filter: blur(6px);
  opacity: 0.9;
}
/* contenido encima */
.ec-home-hero .container {
  position: relative;
  z-index: 2;
  /* background-color: #2f3531; */
  padding: 15px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 10px;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ec-color-primary);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-title {
  background-color: transparent;
  font-size: 60px;
  line-height: 0.9;
  font-weight: 600;
  color: #222;
  max-width: 560px;
  margin-bottom: 28px;
  padding-left: 0px;
}

.hero-title .accent {
  color: var(--ec-color-secondary);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-divider .dot {
  width: 10px;
  height: 6px;
  border-radius: 10px;
  background: var(--ec-color-primary);
}

.hero-divider .line {
  width: 48px;
  height: 6px;
  border-radius: 10px;
  background: var(--ec-color-accent);
}

.hero-text {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.4;
  color: #6f6f6f;
  margin-bottom: 16px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 52px;
  padding: 0 30px;
  background: #1f1f1f;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.hero-button:hover {
  transform: translateY(-2px);
  background: #111;
}

.hero-visual {
  position: relative;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* HERO IMAGEN */
.circle-frame {
  position: relative;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: var(--ec-home-shape-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Linea Larga */
.circle-frame::before {
  content: "";
  position: absolute;
  top: 280px;
  left: -160px;
  transform: translateY(-50%);

  width: 200px;
  height: 40px;
  border-radius: 50px;
  background: var(--ec-home-shape-color);
  /* background: red; */

  box-shadow:
    10px 40px 0 var(--ec-home-container-bg),
    40px 80px 0 var(--ec-home-img-bg);
}

/* Linea Corta */
.circle-frame::after {
  content: "";
  position: absolute;
  top: 170px;
  left: -50px;
  width: 120px;
  height: 46px;
  border-radius: 40px;
  background: var(--ec-home-shape-color);
  /* background: yellow; */
  box-shadow:
    -30px 0px 0 var(--ec-home-container-bg),
    -70px 0px 0 var(--ec-home-shape-color);
}

.circle-image {
  width: 580px;
  height: 580px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-footer {
  /* position: absolute; */
  /* left: 54px;
        bottom: 48px;
        right: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between; */
  margin-top: 10px;
  margin-left: 0px;
  z-index: 3;
}

.social-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #19d3b4;
}

.hero-nav {
  display: flex;
  gap: 14px;
}

.hero-nav button {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #dedede;
  color: #111;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav button:hover {
  background: #19d3b4;
  color: #fff;
}

/* TRUST BAR */
.ec-home-trust {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fff;
  border-bottom: 1px solid var(--ec-home-border);
}

.ec-home-trust-text {
  text-align: center;
  color: var(--ec-home-text-muted);
  font-size: 20px;
  margin: 0;
}

/* PAIN POINTS */
.ec-home-pain {
  position: relative;
  padding: 80px 0;
  min-height: 500px;

  background-image: url("../images/e-cybersoft/content/index-hero.png");

  /* 🔥 CLAVE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* mejora visual */
  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;
}

/* PAIN FONDO DE SECCION */
.ec-home-pain {
  position: relative;
  padding: 20px 0;
  /* min-height: 500px; */

  background: var(--ec-home-img-bg);
  overflow: hidden;
}

.ec-home-pain::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);

  background-size:
    3px 3px,
    6px 6px;

  opacity: 0.35;
  z-index: 1;
}

.ec-home-pain::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.85)
  );

  z-index: 1;
}

.ec-home-pain-overlay {
  position: relative;
  text-align: center;
  z-index: 2;
}

.ec-home-pain-main-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;

  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.6),
    0 0 6px rgba(255, 255, 255, 0.4),
    1px 1px 0 rgba(255, 255, 255, 0.25),
    -1px -1px 0 rgba(255, 255, 255, 0.2);

  transform: rotate(-1deg);
}

.ec-home-pain-subtitle {
  color: var(--ec-color-secondary);
  font-size: 1.3rem;
  line-height: 1.35;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;

  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.5),
    0 0 5px rgba(255, 255, 255, 0.3),
    1px 1px 0 rgba(255, 255, 255, 0.2);

  transform: rotate(-0.4deg);
}

/* PAIN CARDS */
.ec-home-pain-grid {
  overflow: visible;
  justify-content: center;
}

.ec-home-pain-grid > div {
  display: flex;
  justify-content: center;
}

.ec-home-pain-card {
  width: 100%;
  max-width: 360px;
  min-height: 220px;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 5px;
  border: 2px solid white;
  box-shadow: 0 15px 10px rgba(184, 175, 175, 0.897);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ec-home-pain-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: white;
  line-height: 1;
}

.ec-home-pain-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  color: #1f4f66;
}

.ec-home-pain-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(31, 41, 55, 0.78);
}

.ec-home-pain-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #374151;
  transition: opacity 0.25s ease;
}

.ec-home-pain-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.ec-home-pain-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

/* Patrón de inclinación en grupos de 3 */
.ec-home-pain-grid > div:nth-child(3n + 1) .ec-home-pain-card {
  transform: rotate(-7deg) translateY(8px);
}

.ec-home-pain-grid > div:nth-child(3n + 2) .ec-home-pain-card {
  transform: rotate(6deg) translateY(-6px);
}

.ec-home-pain-grid > div:nth-child(3n + 3) .ec-home-pain-card {
  transform: rotate(0deg) translateY(4px);
}

/* Colores tipo Posit */
.ec-home-pain-card-1 {
  background: #25cbe3;
}

.ec-home-pain-card-2 {
  background: #bfe44d;
}

.ec-home-pain-card-3 {
  background: #cbc8ef;
}

.ec-home-pain-card-4 {
  background: #efe1a0;
}

.ec-home-pain-card-5 {
  background: #e09ae3;
}

.ec-home-pain-card-6 {
  background: #f3b7ad;
}

/* SERVICES */
.ec-home-services {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--ec-home-container-bg);
}

.ec-home-service-card {
  height: 100%;
  margin: 5px;
  background-color: #fff;
  border: 1px solid var(--ec-home-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ec-home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.ec-home-service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top; /* muestra la parte superior */
  display: block;
}

.ec-home-service-body {
  padding-top: 0px;
  padding-right: 24px;
}

.ec-home-service-tag {
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 5px;
  border-radius: 999px;
  border: 4px solid white;
  background-color: var(--ec-color-secondary);
  color: black;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  top: -16px;
  left: 10px;
}

.ec-home-service-title {
  font-size: 28px;
  line-height: 1.2;
  color: var(--ec-color-primary);
  margin-bottom: 14px;
}

.ec-home-service-text {
  color: var(--ec-home-text-muted);
  line-height: 1.75;
  font-size: 16px;
  margin-bottom: 20px;
}

.ec-home-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ec-color-primary);
  font-weight: 700;
  text-decoration: none;
}

.ec-home-service-link:hover {
  color: var(--ec-color-accent);
}

/* TESTIMONIALS */
.ec-home-testimonials {
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: var(--ec-home-bg-soft);
  overflow: hidden;
}
.ec-home-testimonials-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--ec-home-text-dark);
  margin-bottom: 15px;
}
.ec-home-testimonials-subtitle {
  font-size: 18px;
  color: var(--ec-home-text-muted);
  margin: 0 auto;
}
.ec-home-testimonials-trust {
  margin-top: 10px;
  font-size: 16px;
  color: var(--ec-color-primary);
}
.ec-home-testimonials-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 10px;
}
.ec-home-testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ecTestimonialsScroll var(--ec-testimonials-duration, 38s) linear
    infinite;
  will-change: transform;
}
.ec-home-testimonials-marquee:hover .ec-home-testimonials-track {
  animation-play-state: paused;
}
.ec-home-testimonial-card {
  flex: 0 0 380px;
  background: #ffffff;
  border: 1px solid var(--ec-home-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.ec-home-testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.ec-home-testimonial-avatar-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ec-color-secondary);
}
.ec-home-testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ec-home-testimonial-meta {
  min-width: 0;
}
.ec-home-testimonial-name {
  font-size: 18px;
  line-height: 1.2;
  color: var(--ec-home-text-dark);
  margin: 0 0 4px;
  font-weight: 700;
}
.ec-home-testimonial-career {
  margin: 0 0 8px;
  color: var(--ec-home-text-muted);
  font-size: 14px;
}
.ec-home-testimonial-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 14px;
}
.ec-home-testimonial-text {
  margin: 0;
  color: var(--ec-home-text-dark);
  line-height: 1.8;
  font-size: 15px;
}

@keyframes ecTestimonialsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CTA FINAL */
.ec-home-cta-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--ec-home-img-bg);
}

.ec-home-cta-box {
  background-color: #fff;
  border-radius: 24px;
  padding: 42px 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  text-align: center;
}

.ec-home-cta-title {
  font-family: "Russo One", sans-serif;
  font-size: 34px;
  color: var(--ec-color-primary);
  margin-bottom: 14px;
}

.ec-home-cta-text {
  color: var(--ec-home-text-muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 26px;
}

/* BLOG PREVIEW */
.ec-home-blog {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: #fff;
}

.ec-home-blog-note {
  text-align: center;
  color: var(--ec-home-text-muted);
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: 36px;
}

/* WHATSAPP FLOAT */
.ec-home-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
}

.ec-home-whatsapp-float a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ec-home-whatsapp-float a:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.42);
}

/* HELPERS */
.ec-home-shadow-sm {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.ec-home-rounded-xl {
  border-radius: 20px;
}

/* RESPONSIVE */

@media (max-width: 575px) {
  .circle-frame {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--ec-home-shape-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  /* Linea Larga */
  .circle-frame::before {
    content: "";
    position: absolute;
    top: 240px;
    left: -60px;
    transform: translateY(-50%);

    width: 100px;
    height: 23px;
    border-radius: 50px;
    background: var(--ec-home-shape-color);
    /* background: red; */

    box-shadow:
      10px 23px 0 var(--ec-home-container-bg),
      40px 46px 0 var(--ec-home-img-bg);
  }

  /* Linea Corta */
  .circle-frame::after {
    content: "";
    position: absolute;
    top: 170px;
    left: -63px;
    width: 74px;
    height: 23px;
    border-radius: 40px;
    background: var(--ec-home-shape-color);
    /* background: yellow; */
    box-shadow:
      -30px 0px 0 var(--ec-home-container-bg),
      -70px 0px 0 var(--ec-home-shape-color);
  }

  .circle-image {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
  }

  .circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .container {
    padding: 25px 20px 30px;
  }
  .ec-home-hero {
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .ec-home-service-card {
    margin-top: 10px;
  }
  .ec-home-service-image {
    max-height: 200px;
  }
  .ec-home-cta-section {
    padding-top: 10px;
    padding-bottom: 10px;
    background: var(--ec-home-img-bg);
  }
  .ec-home-cta-box {
    padding: 32px 20px;
  }
  .social-links {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .circle-frame {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--ec-home-shape-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  .ec-home-title {
    font-size: 32px;
  }

  .ec-home-subtitle {
    font-size: 17px;
  }

  .ec-home-section-title,
  .ec-home-cta-title {
    font-size: 28px;
  }

  .ec-home-actions {
    /* flex-direction: column; */
    align-items: stretch;
  }

  .ec-home-btn {
    width: 100%;
  }

  .ec-home-points {
    justify-content: center;
  }

  .ec-home-point {
    width: 100%;
    justify-content: center;
  }

  .ec-home-whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .ec-home-whatsapp-float a {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
  .ec-home-testimonial-card {
    flex: 0 0 280px;
    padding: 20px;
  }

  .ec-home-testimonial-avatar-wrap {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 10px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    order: 2;
    padding-left: 0;
  }

  .hero-visual {
    order: 1;
    height: auto;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 46px;
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-footer {
    position: static;
    margin: 0px;
    margin-top: 0px;
    padding-top: 10px;
  }

  .ec-home-pain-grid > div:nth-child(3n + 1) .ec-home-pain-card,
  .ec-home-pain-grid > div:nth-child(3n + 2) .ec-home-pain-card,
  .ec-home-pain-grid > div:nth-child(3n + 3) .ec-home-pain-card {
    transform: rotate(0deg) translateY(0);
  }

  .ec-home-pain-card {
    max-width: 100%;
  }

  .ec-home-title {
    font-size: 40px;
  }

  .ec-home-subtitle {
    font-size: 18px;
  }

  .ec-home-testimonial-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 58px;
  }

  /* .circle-frame {
    width: 400px;
    height: 400px;
  } */

  .circle-image {
    width: 380px;
    height: 380px;
  }
}
