/* ETP Plant Page Styles */
.etp-plant-page {
  font-family: "Inter", sans-serif;
  color: #1e293b;
  background: #f8fafc;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.etp-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.etp-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.etp-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00b894 0%, #0066cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.etp-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.etp-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #00b894;
}

.stat .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00b894;
  margin-bottom: 0.5rem;
}

.stat .label {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00b894 0%, #0066cc 100%);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 184, 148, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #00b894;
}

.btn-secondary:hover {
  background: #00b894;
  transform: translateY(-3px);
}

/* ETP Animation */
.etp-animation {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.treatment-tank {
  width: 400px;
  height: 200px;
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tank-inlet,
.tank-outlet {
  position: absolute;
  width: 80px;
  height: 60px;
  background: #1e293b;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tank-inlet {
  left: -40px;
  top: 30px;
}

.tank-outlet {
  right: -40px;
  top: 30px;
}

.inlet-water,
.outlet-water {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 5px;
}

.dirty-water {
  background: linear-gradient(to bottom, #94a3b8, #64748b);
  animation: waterFlow 2s ease-in-out infinite;
}

.clean-water {
  background: linear-gradient(to bottom, #60a5fa, #3b82f6);
  animation: waterFlow 2s ease-in-out infinite reverse;
}

.tank-process {
  position: absolute;
  top: 0;
  left: 100px;
  right: 100px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubbles {
  position: relative;
  width: 100%;
  height: 100%;
}

.bubble {
  position: absolute;
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: bubbleRise 3s infinite;
}

.bubble:nth-child(1) {
  left: 30%;
  animation-delay: 0s;
}
.bubble:nth-child(2) {
  left: 50%;
  animation-delay: 1s;
}
.bubble:nth-child(3) {
  left: 70%;
  animation-delay: 2s;
}

.chemical-dosing {
  position: absolute;
  top: 20px;
  right: 30px;
}

.chemical-drop {
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  position: absolute;
  animation: chemicalDrop 2s infinite;
}

.chemical-drop:nth-child(2) {
  animation-delay: 1s;
  left: 15px;
}

.label {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 500;
}

.sludge-handling {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sludge-tank {
  width: 100px;
  height: 80px;
  background: #475569;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.sludge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, #78350f, #92400e);
  border-radius: 10px 10px 0 0;
  animation: sludgeSettle 4s infinite;
}

.sludge-label {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.control-panel {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1e293b;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.panel-display {
  color: #00b894;
  font-weight: 600;
  font-size: 0.9rem;
}

.panel-indicators {
  display: flex;
  gap: 5px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64748b;
}

.indicator.active {
  background: #00b894;
  animation: blink 1s infinite;
}

@keyframes waterFlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes bubbleRise {
  0% {
    transform: translateY(100px) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

@keyframes chemicalDrop {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

@keyframes sludgeSettle {
  0%,
  100% {
    height: 50px;
  }
  50% {
    height: 55px;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Section Common */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* ETP Process Section */
.etp-process-section {
  padding: 6rem 0;
  background: white;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  background: #f8fafc;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #00b894, #0066cc);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0066cc;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00b894, #0066cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.process-step h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.process-step > p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.step-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-details li {
  padding: 0.5rem 0;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.step-details li:last-child {
  border-bottom: none;
}

/* ETP Technologies */
.etp-technologies-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.technology-tabs {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tab-header {
  display: flex;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  overflow-x: auto;
}

.tab-btn {
  padding: 1.25rem 2rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.tab-btn:hover {
  color: #0066cc;
  background: rgba(0, 102, 204, 0.05);
}

.tab-btn.active {
  color: #0066cc;
  background: white;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0066cc;
}

.tab-content {
  padding: 3rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mbr-animation {
  width: 300px;
  height: 300px;
  position: relative;
  margin: 0 auto;
}

.membrane-module {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: #e2e8f0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 2rem 0;
}

.membrane-fiber {
  width: 80%;
  height: 4px;
  background: #3b82f6;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.membrane-fiber::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: membraneFlow 2s linear infinite;
}

.air-bubbles {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 100px;
}

@keyframes membraneFlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.tech-details h3 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tech-details > p {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
}

.feature i {
  color: #00b894;
}

.tech-applications h4 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.applications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.applications-list span {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ETP Products Section */
.etp-products-section {
  padding: 6rem 0;
  background: white;
}

.products-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.controls-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e2e8f0;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #0066cc;
  color: white;
  border-color: #0066cc;
  transform: scale(1.1);
}

.scroll-status {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  gap: 0.25rem;
}

.auto-scroll-toggle {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #00b894 0%, #0066cc 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.auto-scroll-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
}

/* Auto-Scrolling Products */
.products-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.products-container {
  width: 100%;
  overflow: hidden;
}

.products-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: autoScrollETP 40s linear infinite;
  padding: 1rem;
}

.products-track:hover {
  animation-play-state: paused;
}

.etp-product-card {
  background: white;
  border-radius: 15px;
  width: 350px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.etp-product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #00b894;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  z-index: 1;
}

.product-badge.cpcb {
  background: #ef4444;
}
.product-badge.mbr {
  background: #3b82f6;
}
.product-badge.zld {
  background: #10b981;
}
.product-badge.saff {
  background: #f59e0b;
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-icon {
  font-size: 4rem;
  color: #0066cc;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-size: 1.75rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.product-type {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spec {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #475569;
}

.spec i {
  color: #0066cc;
  width: 20px;
  text-align: center;
}

.product-compliance {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.compliance-badge {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-details,
.btn-quote {
  padding: 0.875rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-details {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.btn-details:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-quote {
  background: linear-gradient(135deg, #00b894 0%, #0066cc 100%);
  color: white;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
}

@keyframes autoScrollETP {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-350px * 4 - 2rem * 4));
  }
}

/* Industry Applications */
.etp-industries-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.industry-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.industry-card.textile::before {
  background: linear-gradient(90deg, #ec4899, #8b5cf6);
}
.industry-card.pharma::before {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
}
.industry-card.chemical::before {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.industry-card.food::before {
  background: linear-gradient(90deg, #10b981, #84cc16);
}

.industry-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.industry-card.textile .industry-icon {
  background: #fdf2f8;
  color: #db2777;
}
.industry-card.pharma .industry-icon {
  background: #eff6ff;
  color: #3b82f6;
}
.industry-card.chemical .industry-icon {
  background: #fef3c7;
  color: #d97706;
}
.industry-card.food .industry-icon {
  background: #f0fdf4;
  color: #10b981;
}

.industry-card h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.industry-card > p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.treatment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.treatment-methods span {
  background: #f1f5f9;
  color: #475569;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Compliance Section */
.compliance-section {
  padding: 6rem 0;
  background: white;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.compliance-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00b894, #0066cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.compliance-card h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.compliance-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Section */
.etp-contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-info > p {
  color: #cbd5e1;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cbd5e1;
}

.feature i {
  color: #00b894;
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.number-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.number-item i {
  width: 50px;
  height: 50px;
  background: rgba(0, 184, 148, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00b894;
}

.number-item div {
  display: flex;
  flex-direction: column;
}

.number-item span {
  font-size: 0.9rem;
  color: #94a3b8;
}

.number-item strong {
  font-size: 1.25rem;
  color: white;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .etp-hero-content,
  .tech-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-timeline,
  .industries-grid,
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .etp-title {
    font-size: 2.5rem;
  }

  .etp-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .process-timeline,
  .industries-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .tab-header {
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: 1;
    min-width: 120px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .etp-product-card {
    width: 300px;
  }

  @keyframes autoScrollETP {
    100% {
      transform: translateX(calc(-300px * 4 - 2rem * 4));
    }
  }

  .treatment-tank {
    width: 300px;
  }

  .tank-inlet,
  .tank-outlet {
    width: 60px;
    height: 50px;
  }

  .tank-inlet {
    left: -30px;
  }
  .tank-outlet {
    right: -30px;
  }
}

@media (max-width: 480px) {
  .etp-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .etp-animation {
    height: 300px;
  }

  .treatment-tank {
    width: 250px;
    height: 150px;
  }

  .tab-content {
    padding: 1.5rem;
  }

  .mbr-animation {
    width: 250px;
    height: 250px;
  }

  .membrane-module {
    width: 150px;
    height: 150px;
  }
}
