/* Extracted from index-v4-en.html */
:root {
    --primary: #0066ff;
    --secondary: #00cc99;
    --dark: #0a2540;
    --light: #f8fafd;
    --accent: #ff6b6b;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --card-shadow: 0 8px 30px rgba(0, 102, 255, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--light);
    color: #4a5568;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.tag {
    display: inline-block;
    background: rgba(0, 204, 153, 0.1);
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 120px;
}

@media (max-width: 600px) {
  .navbar {
    padding: 0.5rem 0 !important;
  }
  .logo img {
    height: 38px !important;
    max-width: 60px !important;
  }
  .logo {
    gap: 0.5rem !important;
  }
  .navbar-container {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafd 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    max-width: 420px;
    margin: 0 auto 0 0;
    background: rgba(255,255,255,0.97);
    border-radius: 2.5rem 2.5rem 2.5rem 0.7rem;
    box-shadow: 0 8px 48px #1ab39433, 0 1.5px 8px #0066ff22;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 1.01rem;
    border: 1.5px solid #e3eaf7;
    /* Subtle glassmorphism effect */
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    transition: box-shadow 0.3s, border 0.3s;
}

.hero-content:hover {
    box-shadow: 0 12px 64px #1ab39444, 0 2px 16px #0066ff33;
    border: 1.5px solid #b3d1ff;
}

.hero-content h1 {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary) 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.7rem;
}

.hero-content .tag {
    background: linear-gradient(90deg, #e0f7fa 0%, #e6ffe6 100%);
    color: var(--primary);
    font-size: 1.01rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    border-radius: 1.5rem;
    padding: 0.35rem 1.1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 6px #00cc9922;
}

.hero-content .hero-buttons {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.5rem;
}

.hero-content .btn-primary {
    background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 16px #0066ff33;
    border: none;
    letter-spacing: 0.5px;
}

.hero-content .btn-primary:hover {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 4px 32px #00cc9944;
}

.hero-content .btn-secondary {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-content .btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.hero-content .stats {
    margin-top: 1.2rem;
    gap: 1.2rem;
    border-top: 1px solid #e3eaf7;
    padding-top: 1.2rem;
}

.hero-content .stat-number {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary) 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .stat-text {
    color: #64748b;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 1.1rem 0.7rem 1rem 0.7rem;
    max-width: 98vw;
    font-size: 0.97rem;
    gap: 0.6rem;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    max-width: 100vw;
    font-size: 0.93rem;
    gap: 0.4rem;
    border-radius: 1.2rem 1.2rem 1.2rem 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.1rem;
  }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    filter: blur(60px);
    z-index: -1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #64748b;
}
/* Certifications */
.certifications {
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 97, 255, 0.2);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 2.5rem;
    color: var(--primary);
    background: rgba(0, 97, 255, 0.1);
}

.cert-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
/* Services */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.service-icon {
    height: 80px;
    width: 80px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Industries */
.industries {
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafd 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.industry-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.industry-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 204, 153, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
}

.industry-content {
    padding: 0 1.5rem 1.5rem;
}

.industry-content ul {
    list-style: none;
    padding-left: 0;
}

.industry-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.industry-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Process */
.process {
    background: white;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    position: relative;
    padding-top: 3rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 0;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    width: calc(25% - 2rem);
    min-width: 250px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    text-align: center;
}

/* Team */
.team {
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafd 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 2rem;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid rgba(0, 102, 255, 0.1);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

/* CTA */
.cta {
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2.5rem;
    position: relative;
    z-index: 2;
}

.cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Contact */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafd 100%);
    border-radius: 20px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-form {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #cbd5e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-logo-text span {
    color: var(--secondary);
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Legal page harmonized style */
.legal-page {
    max-width: 800px;
    margin: 3rem auto 3rem auto;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(10, 37, 64, 0.07);
    font-size: 0.98rem;
    color: #3a3a3a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.legal-page h1, .legal-page h2, .legal-page h3 {
    color: var(--dark);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}
.legal-page h1 {
    font-size: 1.7rem;
    margin-top: 0;
}
.legal-page p, .legal-page ul, .legal-page ol {
    font-size: 0.98rem;
    margin-bottom: 1.1rem;
}
.legal-page ul, .legal-page ol {
    padding-left: 1.5rem;
}
.legal-page li {
    margin-bottom: 0.5rem;
}
.legal-page small, .legal-page .small {
    font-size: 0.92em;
    color: #6b7280;
}
@media (max-width: 600px) {
    .legal-page {
        padding: 1.2rem 0.5rem;
        margin: 1.5rem 0.2rem;
    }
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 750px;
    padding: 0 1.5rem;
  }
  .navbar-container, .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links, .lang-switcher {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content, .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }
  .services-grid, .industries-grid, .cert-grid, .team-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
    z-index: 1200;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.12);
    padding: 1.5rem 0;
    gap: 1.2rem;
    z-index: 1100;
  }
  .nav-links.open {
    display: flex;
  }
  .navbar-container {
    position: relative;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
  .navbar-container, .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links, .lang-switcher {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hero-container, .services-grid, .industries-grid, .cert-grid, .team-grid, .footer-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-content, .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }
  .contact-grid {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 0.5rem;
  }
  .navbar, .footer {
    padding: 0.5rem 0;
  }
  .hero-content h1, .section-header h2 {
    font-size: 1.5rem;
  }
  .btn, button {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .form-group label, .form-control {
    font-size: 1rem;
  }
  .stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero video {
    width: 100% !important;
    max-width: 540px !important;
    height: auto !important;
    border-radius: 2rem;
    box-shadow: 0 0 48px #1ab39433;
    margin: 0 auto;
    display: block;
  }
  @media (max-width: 992px) {
  .hero video {
    max-width: 90vw !important;
    border-radius: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero video {
    max-width: 98vw !important;
    border-radius: 0.7rem;
  }
}
