@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');

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

.main {
    width: 100%;
    height: auto;
}
  header {
    position: fixed;
    z-index: 1000;
    top: 0;
   /* left: 0;*/
    width: 100%;
    background-color: transparent; /* Remove blue background */
    padding: 0;
  }
  
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#000 !important; /* pure black background for all pages */
  color:#fff !important;      /* white text for contrast */
  line-height:1.55;
}
h2{
  margin:0;
  font-size:clamp(1.6rem,4vw,2.6rem);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
p{
  margin:0 0 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h3{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ---------------- slider wrapper ---------------- */
.swiper{
  position: relative;
  width: 100vw;
  padding: 80px 40px;
  background: url("b4.png") center / cover no-repeat;
  /* keep height controlled by content */
}

/* ---------------- each slide -------------------- */
.swiper-slide{
  /** NEW: take full line height of the background strip **/
  min-height: 260px;            /* adjust to taste               */
  display: flex;
  justify-content: center;
  align-items: center;          /* <-- this brings text back!     */
  padding: 40px;
}

/* .slide container (the <article>) */
.slide{
  position: relative;           /* stays above overlay            */
  z-index: 1;                   /*                               */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  margin-inline: auto;
}

/* ------------- overlay ------------- */
.swiper::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 0;
}

/* ------------- arrows --------------- */
.swiper-button-prev,
.swiper-button-next{
  position: absolute;           /* restore default Swiper layout  */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 44px;
  height: 44px;
  z-index: 2;                   /* sit above overlay & text       */
  cursor: pointer;
}
.swiper-button-prev{ left: 20px; }
.swiper-button-next{ right: 20px; }


/* ---------- header shell ---------- */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background:#fff;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,.06);
}

/* wraps everything inside header */
.header-inner{
  max-width: 1400px;    /* set to your layout width */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 24px;
}

/* ---------- logo ---------- */
.logo img{
  height: 120px;         /* tweak to your logo size */
}

/* ---------- nav ---------- */
.main-nav ul{
  list-style:none;
  display:flex;
  gap:32px;
  margin:0;
  padding:0;
}
.main-nav a{
  font-size: 0.95rem;
  color:#444;
  text-decoration:none;
  position:relative;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.main-nav a:hover{
  color:#0d3b8c;
}
.main-nav a::after{          /* subtle hover underline */
  content:"";
  position:absolute;
  left:0;right:0;bottom:-4px;
  height:2px;
  background:#0d3b8c;
  opacity:0;
  transition:opacity .2s;
}
.main-nav a:hover::after{
  opacity:1;
}

/* ---------- utilities (CTA + search) ---------- */
.header-utilities{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:24px;
}

/* blue contact button */
.btn-primary{
  background:#031e49;
  color:#fff;
  padding:10px 24px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  transition:background .2s;
}
.btn-primary:hover{
  background:#3b598a;
}

/* icon button (search) */
.icon-btn{
  background:none;
  border:none;
  color:#555;
  cursor:pointer;
  padding:4px;
}
.icon-btn:hover{
  color:#08224e;
}

/* ---------- push carousel below fixed header ---------- */
.swiper{
  margin-top: 90px; /* header height (50 logo + 40 padding) */
}

/* keep arrows above new header shadow */
.swiper-button-prev,
.swiper-button-next{
  z-index: 1010;
}

/* ========= Services section ========= */
.services-section{
  background:#fff;
  color:#333;
  padding:80px 20px;
  font-family:"Poppins",sans-serif;
}
.services-section .container{
  max-width:1200px;
  margin:0 auto;
}
.services-section .heading{
  font-size:28px;
  color:#40649b;
  font-weight:600;
  margin-bottom:16px;
}
.services-section .description{
  font-size:15px;
  color:#555;
  line-height:1.7;
}
.services-section .highlight{
  margin-top:20px;
  font-size:15px;
}

.card-row{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  margin-top:40px;
  margin-bottom: 3rem; /* space below cards */
}
.service-card{
  flex:1 1 300px;          /* minimum 300 px, then grow */
  background:#000000;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.service-card img{
  width:100%;
  height:auto;
  display:block;
}
.service-card h3{
  font-size:18px;
  color:#6493d8;
  margin:20px 20px 10px;
}
.service-card p{
  font-size:14px;
  color:#ffffff;
  margin:0 20px 24px;
  line-height:1.6;
}

/* ---- mobile stack ---- */
@media(max-width: 768px){
  .card-row{
    flex-direction:column;
  }
}

/* Fixed size and horizontal layout for .section */
.section {
  width: 1200px;
  height: 110px;
  margin: 24px auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align items to the left */
  background: #fff;
  border-radius: 12px;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s;
  overflow: hidden;
  gap: 18px; /* Space between image and text */
  padding: 16px 24px;
}

/* Style for the image inside .section */
.section img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Highlight effect */
.section.highlight-box {
  border: 2px solid #041f3d;
  background: #eaf4ff;
  box-shadow: 0 2px 16px 0 rgba(252, 253, 253, 0.993);
}

/* Flex container for contact cards */
.contact-section {
  text-align: center;
  padding: 60px 20px;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Contact cards container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

/* Contact card box */
.contact-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  width: 280px;      /* Increased width */
  height: 270px;     /* Increased height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 16px; /* Slightly more padding */
  box-sizing: border-box;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box i {
  margin-bottom: 10px;
  color: #031e3b;
}

.contact-box h3 {
  margin: 8px 0 8px 0;
  font-size: 1.15rem;
  color: #222;
}

.contact-box p {
  margin: 2px 0;
  text-align: center;
  font-size: 0.98rem;
  word-break: break-word;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.contact-box h3 {
  color: #0b1c7e;

}
/* Make address text a bit smaller if needed */
.contact-box:nth-child(3) p {
  font-size: 0.93rem;
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-box {
    width: 95vw;
    max-width: 340px;
  }
}

.intro-contact {
  margin-top: 150px; /* Adjust this value to match your header height */
  padding-left: 500px;
}
 .intro-contact ul,p {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: larger;
 }

 
/* Dropdown container */
.main-nav .dropdown {
  position: relative;
}

/* Dropdown menu */
.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 10px 0;
  min-width: 180px;
  z-index: 999;
}

/* Show dropdown on hover */
.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown items */
.main-nav .dropdown-menu li {
  padding: 0;
  margin: 0;
}

.main-nav .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.main-nav .dropdown-menu a:hover {
  background: #f0f0f0;
  color: #0d3b8c;
}

.company-profile-section {
  background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
  color: #fff;
  padding: 100px 20px 60px;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.profile-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.profile-container:hover {
  transform: translateY(-6px);
}

.profile-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 32px;
  text-align: center;
  background: linear-gradient(90deg, #00aaff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease-out;
}

.profile-content p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease-out;
  color: #ddd;
}

/* Simple fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-section {
  background: #111;
  padding: 100px 20px;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.accordion-container {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 150px;
}

.accordion-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.accordion-item {
  border-bottom: 1px solid #444;
  margin-bottom: 10px;
  margin-top: 20px;
}

.accordion-header {
  background: #1a1a1a;
  color: white;
  cursor: pointer;
  padding: 16px 20px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.1rem;
  text-align: left;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #222;
}

.accordion-header i {
  color: #19bdaf;
  min-width: 20px;
}

.accordion-content {
  padding: 0 20px 20px;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  line-height: 1.8;
  font-size: 1rem;
  color: #ddd;
}

.accordion-content p {
  margin-top: 16px;
}

.accordion-item.active .accordion-content {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animated side icons */
.side-icon {
  position: fixed;
  top: 40%;
  font-size: 3rem;
  color: #0b1c7e;
  z-index: 999;
  opacity: 0.7;
  animation: floatIcon 2.5s infinite ease-in-out;
  pointer-events: none;
}
.side-icon.left {
  left: 24px;
}
.side-icon.right {
  right: 24px;
}

/* Floating animation */
@keyframes floatIcon {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

.side-img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0f1115;
  color: #ffffff;
}

.why-work-container {
  padding: 80px 5%;
  text-align: center;
  background: radial-gradient(circle at top left, #1e2025, #0f1115);
}

.why-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 100px;
}

.why-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 50px;
}

/* Why MARS LABS cards: rectangular, stacked vertically, longer */
.why-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.why-card {
  width: 480px;
  height: 180px;
  background: #000000;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  transition: box-shadow 0.2s;
  position: relative;
}

.why-card h3 {
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 1.2rem;
  color: rgb(67, 67, 182);
}

.why-card p {
  margin-top: auto;
  margin-bottom: 100px;
  font-size: 20px;
}

/* Optional: Responsive for smaller screens */
@media (max-width: 600px) {
  .why-cards {
    flex-direction: column;
    align-items: center;
  }
  .why-card {
    width: 90vw;
    height: 90vw;
    max-width: 320px;
    max-height: 320px;
  }
}


.panel-section {
  background-color: #000000;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  margin-top: 150px; /* Adjust this value to match your header height */
}

.panel-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 30px;
  color: #000;
}

.info-panel {
  /* background-color: #000000; */
  color: black;
  padding: 30px;
  border-left: 6px solid #003366;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgb(0,0,0); */
}

.info-panel h2 {
  color: #003366;
  margin-bottom: 10px;
  font-size: 24px;
}

.info-panel h4 {
  color: #0059b3;
  margin-bottom: 10px;
}

.info-panel p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0a0a0a;
}

.info-panel ul {
  padding-left: 20px;
  color: #000;
}

.info-panel li {
  margin-bottom: 8px;
  font-size: 15px;
}

.email-list a {
  color: #004080;
  text-decoration: none;
}

.email-list a:hover {
  text-decoration: underline;
}

.note {
  /* font-style: italic; */
  color: #d31111;
}

body.join-page {
  background: #000 !important; /* black background only for join.html */
  color: #fff !important;      /* white text for contrast */
}


.research-overview {
  background-color: #f4f8fc;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  margin-top: 150px; /* Adjust this value to match your header height */
}

.research-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.research-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #070707;
}
.icon {
  font-size: 28px;
  color: #0059b3;
  position: absolute;
  top: 30px;
  right: 30px;
}


.zigzag-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  margin-top: 150px; /* Adjust this value to match your header height */
}

.zigzag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.zigzag-row.reverse {
  flex-direction: row-reverse;
}

.zigzag-text {
  flex: 1;
  min-width: 300px;
}

.zigzag-text h3 {
  font-size: 1.8rem;
  color: #f6f6f7;
  margin-bottom: 15px;
}

.zigzag-text p {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.6;
}

.zigzag-img {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.zigzag-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.zigzag-section, .zigzag-section h3, .zigzag-section p {
  color: #fffefe;
}

/* Make all main sections black */
.panel-section,
.info-panel,
.research-overview,
.profile-container,
.services-section,
.section {
  background-color: #000 !important;
  color: #fff !important;
}

/* For cards and panels with white backgrounds */
.info-panel {
  background-color: #000000 !important;
  color: #fff !important;
  border-left: 6px solid #003366;
}

.services-section {
  background-color: #000 !important;
  color: #fff !important;
}

.section {
  background-color: #111 !important;
  color: #fff !important;
}

.profile-container {
  background: rgba(20, 20, 20, 0.95) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.08);
}

.research-overview {
  background-color: #111 !important;
  color: #fff !important;
}

/* Make sure all text is light */
.panel-section h2,
.panel-section h4,
.panel-section p,
.panel-section ul,
.panel-section li,
.info-panel h2,
.info-panel h4,
.info-panel p,
.info-panel ul,
.info-panel li {
  color: #fff !important;
}

/* Remove color from links if needed */
.email-list a {
  color: #66aaff !important;
}

body,
.why-work-container {
  background: #000 !important;
  color: #fff !important;
}

/* Ensure all text inside why section is white */
.why-title,
.why-subtitle,
.why-card p {
  color: #fff !important;
}

@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .card-row {
    gap: 20px;
  }
  .service-card {
    width: 90vw;
    max-width: 420px;
    padding: 24px 12px 20px 12px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 8px;
  }
  .main-nav ul {
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.95rem;
  }
  .logo img {
    height: 70px;
  }
  .card-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .service-card {
    width: 98vw;
    max-width: 98vw;
    padding: 16px 6px 14px 6px;
  }
  .service-card img {
    width: 56px;
    height: 56px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.contact-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  margin: 40px 0 60px 0;
}

/* Add this for the map card box styling */
.contact-card.map {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  width: 400px;
  min-width: 260px;
  max-width: 98vw;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-card.map iframe {
  border: 0;
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 0 0 14px 14px;
}

/* Responsive for mobile */
@media (max-width: 700px) {
  .contact-flex {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .contact-card.map {
    width: 98vw;
    max-width: 98vw;
  }
}

@media (max-width: 768px) {
  /* Center the navbar links */
  /* .main-nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav ul li a {
    display: block;
    padding: 10px;
    width: 100%;
  }

  Center dropdown menu items */
  /* .main-nav .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
 */
  /* Center paragraph and list items in contact section */
  .intro-contact p,
  .intro-contact ul,
  .intro-contact li,
  .contact-section p,
  .contact-section li {
    text-align: center;
    padding-left: 0 !important;
  }

  /* Remove fixed left padding in intro-contact section */
  .intro-contact {
    padding-left: 0;
    padding-right: 0;
  }

  /* Optional: center-align contact card text if not already */
  .contact-box {
    text-align: center;
  }

  /* Ensure logo and header layout is stacked */
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .card-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background-color: #000000;
    padding: 15px;
    border-radius: 12px;
    margin-left: -30px;
  }

  .service-card img {
    width: 210px;
    height: auto;
    flex-shrink: 0;
  }

  .service-card h3,
  .service-card p {
    margin: 0;
    text-align: left;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}



/* Shared service card styles */
.service-card {
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 15px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 20px;
}

/* Add a dark overlay to enhance text readability */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

/* Put text above overlay */
.overlay-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* Custom background images */
.def {
  background-image: url('def.png');
}

.agri {
  background-image: url('agri.png');
}

.auto {
  background-image: url('auto.png');
}

.iot {
  background-image: url('IOT.png');
}

.edu {
  background-image: url('edu.png');
}

.health {
  background-image: url('health.png');
}

/* Responsive layout (mobile optimization) */
@media (max-width: 768px) {
  .card-row {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
    text-align: center;
  }
}

.service-card.with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: flex-end; /* Ensures text is at bottom */
  color: white;
}

/* Dark background overlay for better text visibility */
.service-card.with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Adjust as needed */
  z-index: 1;
}

.service-card.with-bg .overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-card.with-bg h3{
  margin : 0;
  font-size: 1.2rem;
  color: #fff;
}
.service-card.with-bg p {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

