/* Base Styles */
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}


html {
  scroll-behavior: smooth;
}


/* Header & Navigation */
  
.Header {
  background-color: white;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}
  
.Navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  
/* Logo Styling */
.Navbar-logo .logo {
  height: 130px;
  width: auto;
  display: block;
  margin-right: auto;
  cursor: pointer;
} 
  
/* Navigation Links */
.Navbar-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 40px; /* Adjusted margin for spacing */
  word-wrap: break-word;
  overflow-wrap: break-word;
  z-index: 9999;
}

.Navbar-links.active {
  display: flex; /* Show the menu when active */
}

.Navbar-links-wrapper {
  margin-right: 50px; /* Pushes links to the left */
}

  
.Navbar-item a {
  text-decoration: none;
  color: #1f2f3f;
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.5rem;
  display: inline-block;
  position: relative; /* Required for the ::after pseudo-element */
  padding: 12px ;
  transition: color 0.6s ease; /* Smooth color transition */
  white-space: normal;
}

/* Underline Animation */
.Navbar-item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0; /* Start with no underline */
  height: 2px; /* Thickness of the underline */
  background-color: #70C0BA; /* Underline color */
  color: #fff;
  transition: width 0.3s ease; /* Smooth animation for the underline */
}

.Navbar-item a:hover::after {
  width: 100%; /* Expand the underline to full width on hover */
}

.Navbar-item a:hover {
  color: #70C0BA; /* Change text color on hover */
}
  
/* Dropdown Arrow Styling */
.Navbar-item .arrow {
  font-size: 1.3rem;
}


  /* Dropdown Menu */
.dropdown-menu {
  display: block;
  position: absolute;
  background-color: white;
  z-index: 1000;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 7px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

  
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.1s; /* Add a slight delay before showing */
  
}
  
/* Dropdown Link */
.dropdown-menu li a {
  color: #1f2f3f;
  display: block;
  padding: 0.4rem 0;
  text-decoration: none;
  white-space: nowrap;
}
  
.dropdown-menu li a:hover {
  color: #70C0BA;
}

@media (max-width: 768px)   {
  .Navbar-item.dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: opacity 0.3s, max-height 0.3s;
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
  }
  .Navbar-item.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    transition: opacity 0.3s, max-height 0.3s;
  }
}

@media (max-width: 768px)  {
  .Navbar-links {
    left: 1vw; /* or any value you prefer */
    right: auto; 
  }
}

@media (max-width: 768px) {
  .dropdown-menu li a {
    white-space: normal;
    word-break: break-word;
    padding: 12px 16px;
    font-size: 1rem;
  }
}


  
/* Hero Section */
.hero {
  min-height: 62vh;
  background: url("images/Indeximg.jpg") center bottom /cover no-repeat;
  border: 10px solid #fff;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5%;
  color: white;
  
  
}

.hero-text {
  font-family: "Nunito Sans", sans-serif;
  max-width: 600px;
  margin-left: -3%;
  
}
  
.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}
  
.hero-text h1 span {
  color: #003366; 
}

  

  
/* GLOBAL RESET & FONT CONFIG */

:root {
  --font-family: 'Nunito Sans', sans-serif;
  --main-color: #003366;
  --text-color: #213444;
}


/* SECTION SPACING */
section {
  padding: 50px 10%;
}

img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* HEADING */
.heading {
  text-align: center;
}

.heading h1 {
  font-family: var(--font-family);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--main-color);
}


/* SERVICES GRID */
.services-content {
  font-family: var(--font-family);
  color: var(--main-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* INDIVIDUAL SERVICE BOX */
.services-content .box {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 0 2rem 0 0;
  box-shadow: 10px 11px 11px rgba(14, 55, 54, 0.25);
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}

.services-content .box:hover {
  background: var(--text-color);
  color: #fff;
  transform: scale(1.05); /* 👈 Slight zoom on hover */
}


.services-content .box a {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* TITLE */
.services-content .box h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
}





/* Banner Section */
.banner-section {
  background-color: #213444;
  color: white;
  padding: 60px 20px;
  text-align: center;
}


.banner-content p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 25px;
}

.cta-button {
  background-color: white;
  color: #213444;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.2rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #70C0BA;
  color: white;
}




 
 /* About Box Layout */
.about-values {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 260px;
    
}
  
.value-box {
  background: white;
  border-left: #003366 5px solid;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
  margin-top: 15px;
  max-width: 80%; 
  margin-left: 25px; 
  margin-top: 30px; 
  
  
}

.value-box:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 191, 166, 0.3);
}
  
.value-box h4 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #003366;
}
  
.value-box p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.value-box Ul {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.community-centric-box {
  max-width: 80%; /* Reduce the width of the box */
  padding: 20px; /* Adjust padding for a smaller box */
}

.community-centric-box h4 {
  font-size: 1.5rem; /* Adjust heading size */
}

.community-centric-box p,
.community-centric-box ul {
  font-size: 18px;
  font-weight: 600; 
  color: #333;
}


@media (max-width: 768px) {
  /* Hide the image container inside community-centric box */
  .community-centric-box .community-image {
    display: none;
  }

  .community-centric-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
  }

  .community-centric-box h4 {
    font-size: 1.3rem;
    text-align: center;
  }

  .community-centric-box p,
  .community-centric-box ul {
    font-size: 1rem;
    text-align: left;
    padding: 0;
  }

  /* About values responsive spacing */
  .value-box {
    max-width: 100%;
    margin-left: 0;
    padding: 15px;
  }

  .value-box h4 {
    font-size: 1.3rem;
    text-align: center;
  }

  .value-box p,
  .value-box ul {
    font-size: 1rem;
    line-height: 1.6;
  }
}

  
/* Footer Styles */
.Footer {
  background-color: #213444;
  padding: 20px 2rem 20px;
  color: #fff;
  border-top: 1px solid #444;
}

.Footer .Container {
  max-width: 1100px; /* Optional: control width of inner content */
  margin: 0 auto;
  padding: 0 2rem; /* Add horizontal spacing inside the content */
  display: flex;
  flex-direction: column;
}
  
.Footer .column-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
  
.Footer .title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  cursor: pointer;
}

.Footer a:hover {
  color: #70C0BA;
}
  
.Footer-contact {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
}
  
.Footer-contact > li {
  margin-bottom: 10px;
}

.Footer-contact-link i,
.Footer-contact li i {
  margin-right: 10px;       
  font-size: 1.2rem;
}
  
.Footer-contact-link {
  text-decoration: none;
  color: white;
 
}


  /* Styling for the large-arrow */
.large-arrow {
  display: inline-block;
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease-in-out;
  padding-right: 45px; /* Space between text and arrow */
}

.large-arrow:hover {
  transform: scale(1.12); /* Slightly enlarge the arrow on hover */
  cursor: pointer; 
}
  
.large-arrow svg {
  width: 140%;
  height: 140%;
}
  
.Footer-strapline {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Space between text and arrow */
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}
  
.Footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 0 2rem;
  color: #ccc;
  font-size: 0.9rem;
  font-family: "Nunito Sans", sans-serif;
}
  
.Footer-legal-links a {
  margin-left: 20px;
  font-size: 0.875rem;
  color: #ccc;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 40px;
  padding-top: 20px;
  text-decoration: none;
    
}

/* Flag Image */
.Flag-container {
  display: flex;
  justify-content: center;
  transform: translateX(15px);
}

.Flag-image {
  width: 100px;
  height: 70px;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 701px) and (max-width: 1024px) {
.Footer {
    padding: 40px 1rem;
    text-align: center;
  }

  .Footer .Container {
    padding: 0 1rem;
    flex-direction: column;
    align-items: center;
  }

  .Footer-strapline {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .Footer-contact {
    font-size: 1rem;
    padding: 0;
  }

  .Footer-contact li {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .Footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
  }

  .Footer-contact-link i {
    font-size: 1.2rem;
  }

  .Footer-legal {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 1rem;
  }

  .Footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .Footer-legal-links a {
    margin: 0;
    font-size: 0.85rem;
    padding: 0;
  }

  .Flag-container {
    margin-top: 1rem;
    transform: translateX(0);
  }
}


@media (max-width: 700px)  {
  .Footer {
    padding: 40px 1rem;
    text-align: center;
  }

  .Footer .Container {
    padding: 0 1rem;
    flex-direction: column;
    align-items: center;
  }

  .Footer-strapline {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .Footer-contact {
    font-size: 1rem;
    padding: 0;
  }

  .Footer-contact li {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .Footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
  }

  .Footer-contact-link i {
    font-size: 1.2rem;
  }

  .Footer-legal {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 1rem;
  }

  .Footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .Footer-legal-links a {
    margin: 0;
    font-size: 0.85rem;
    padding: 0;
  }

  .Flag-container {
    margin-top: 1rem;
    transform: translateX(0);
  }
}

  
  /* Grid Helpers */
.Grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
  

/* Who We Are Section */

.who-we-are-banner {
  font-family: "Nunito sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 0;
  padding-top: 0;
  text-align: center;
  padding: 20px 10px;
  background-color: #213444;
  
  
}

.who-we-are-banner h1 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #f1f3f8;
  text-transform: uppercase;
  margin-top: 15px;
}

.who-we-are-banner h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #70C0BA;
  margin: 10px auto 0;
  border-radius: 2px;
}

.who-we-are-banner p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #f1f3f8;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 25px;
}



/* Team Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* Space between grid items */
  justify-content: center;
  padding: 40px 20px;
}

/* Team Member Card */
.team-member {
  display: flex;
  flex-direction: row; /* Default: Image and text side by side */
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left; /* Align text to the left */
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden; /* Prevent overflow */
}

.team-member:hover {
  box-shadow: 0 6px 20px rgba(0, 191, 166, 0.3); /* Add hover effect */
}

/* Team Member Image */
.team-image img {
  width: 240px; /* Adjust image size */
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px; /* Space between image and text */
  object-position: top center;
}

.team-member.winston .team-image {
  transform: translateY(-280px); 
}

.team-member.walter .team-image {
  transform: translateY(-280px); 
}

.team-member.jerome .team-image {
  transform: translateY(-200px); 
}

.team-member.debbi .team-image {
  transform: translateY(-200px); 
}

/* Team Member Info */
.team-info {
  flex: 1; /* Allow text to take up remaining space */
}

.team-info h2 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #003366;
  margin-bottom: 8px;
  margin-left: -260px;;
  
}

.team-info p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
}

.team-info ul {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
}

.team-info span {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

.team-member.jerome .team-info h3 {
  font-family: "Nunito Sans", sans-serif;
  color: #003366;
  font-size: 1.2rem;
}

.team-member.jerome li span {
  font-size: 1.15rem;
  font-weight: bold;
}

.team-member.debbi .team-info {
  transform: translateY(-100px);
}


.team-member.walter .team-info {
  transform: translateY(-40px);
}

.team-info .flag-icon {
  width: 24px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 0;
  object-fit: cover;
}

@media (max-width: 1024px) and (min-width: 701px) {
  .team-grid {
    grid-template-columns: 1fr; /* Stack vertically on tablets for better readability */
    padding: 30px 20px;
    gap: 30px;
  }

  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .team-image img {
    width: 300px;
    height: 300px;
    margin: 0 auto 20px auto;
    transform: none !important; /* remove offsets */
  }

  .team-info {
    transform: none !important;
    padding: 0 15px;
    margin: 0 auto;
  }

  .team-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-left: 0;
    text-align: center;
  }

  .team-info p,
  .team-info ul {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }

  .team-info ul {
    padding-left: 1.5rem;
  }

  .flag-icon {
    width: 20px;
    height: auto;
    margin-right: 6px;
  }

  .team-member.winston .team-image {
    transform: none; /* Reset image transform for tablets */
  }
  .team-member.walter .team-image {
    transform: none; /* Reset image transform for tablets */
  }
  .team-member.debbi .team-image {
    transform: none; /* Reset image transform for tablets */
  }
  .team-member.jerome .team-image {
    transform: none; /* Reset image transform for tablets */
  }
}


@media (max-width: 700px) {
  /* 🔹 Team Grid goes single column */
  .team-grid {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }

  /* 🔹 Team Member Layout: Stack Vertically */
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }

  .team-image img {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    transform: none !important;
  }

  /* 🔹 Reset image transform overrides */
  .team-member.winston .team-image,
  .team-member.walter .team-image,
  .team-member.jerome .team-image,
  .team-member.debbi .team-image {
    transform: none;
  }

  /* 🔹 Team Info: Full width, no translate, center text */
  .team-info {
    transform: none !important;
    margin-left: 0 !important;
  }

  .team-info h2 {
    font-size: 1.4rem;
    margin: 0 auto 15px;
    text-align: center;
    margin-left: 0 !important;
  }

  .team-info p,
  .team-info ul {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
  }

  .team-info ul {
    padding-left: 1.2rem;
  }

  /* Optional: Reduce padding on banner */
  .who-we-are-banner h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .who-we-are-banner p {
    font-size: 1rem;
    padding: 0 15px;
  }
}





.hero-image-section {
  background: url('images/Office_.jpg') center center / cover no-repeat;
    display: flex;
    border: 10px solid #fff;
    align-items: center;
    justify-content: flex-start;
    padding: 5%;
    color: white;
    position: default;
    min-height: 49.5vh;
}
  
/* =============================== */
/* 📱 Mobile Optimization Styles 📱 */
/* =============================== */
@media (max-width: 700px)   {
  /* 🔹 NAVBAR */
  .Navbar-container {
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 1rem;
  }

  .Navbar-logo {
    margin-right: auto;
  }

  .Navbar-logo .logo {
    height: 60px;
    width: auto;
    margin: -10px;
    transform: translateX(-20px);
  }

  .hamburger {
    flex: 0 0 auto;
    margin-left: 35px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #1f2f3f;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .Navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 80vw;
    max-width: 300px;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: visible;
    z-index: 9999;
  }

  .Navbar-item a {
    font-size: 1.2rem;
    padding: 10px;
    z-index: 9999;
  }

  

  /* 🔹 HERO */
  .hero-image-section {
    min-height: 60vh;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  /* 🔹 SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    width: 100%;
    height: auto;
  }

  .service-box img {
    height: auto;
  }

  /* 🔹 CTA & BANNER */
  .banner-content p {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 10px 18px;
  }

  .about-values {
    padding: 0 10px;
  }

  .value-box {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (min-width: 701px) and (max-width: 1024px) {
  /* 🔹 NAVBAR */
  .Navbar-container {
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 1rem;
  }

  .Navbar-logo {
    margin-right: auto;
  }

  .Navbar-logo .logo {
    height: 60px;
    width: auto;
    margin: -10px;
    transform: translateX(-20px);
  }

  .hamburger {
    flex: 0 0 auto;
    margin-left: 35px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #1f2f3f;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .Navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 80vw;
    max-width: 300px;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: visible;
    z-index: 9999;
  }

  .Navbar-item a {
    font-size: 1.2rem;
    padding: 10px;
    z-index: 9999;
  }

  

  /* 🔹 HERO */
  .hero-image-section {
    min-height: 60vh;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  /* 🔹 SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    width: 100%;
    height: auto;
  }

  .service-box img {
    height: auto;
  }

  /* 🔹 CTA & BANNER */
  .banner-content p {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 10px 18px;
  }

  .about-values {
    padding: 0 10px;
  }

  .value-box {
    margin-left: 0;
    max-width: 100%;
  }
}


