html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 0 32px;
  height: 60px;
  position: absolute;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 100;
  background-color:#51ba5d;
  background: #6cbf78e4;
  transition: background 0.3s;
  box-sizing: border-box;
}

.navbar.sticky {
  position: fixed;
  background: white;
  background-color:#808781;
  background: #808781;
  color: black;
}

.logo {
  font-size: 1.3em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  transition: right 0.3s ease;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: black;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.burger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero section */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;           /* Full viewport height */
  min-height: 100vh;       /* Ensure minimum height is full screen */
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); /* dark overlay for readability */
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  padding: 80px 16px 80px 16px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3em;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.5em;
  margin: 0;
  font-weight: 300;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;           /* Full viewport height */
  object-fit: cover;
  z-index: 1;
}

.about-us-section {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.about-us-bg {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0.13;
  z-index: 1;
}

.about-us-flex {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 1000px;
  width: 90vw;
  min-height: 70vh;
  background: rgba(255,255,255,0.97);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(26,34,56,0.13), 0 1.5px 6px rgba(255,106,0,0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(.23,1.02,.64,1), transform 1s cubic-bezier(.23,1.02,.64,1);
}

.about-us-flex.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-us-accent {
  width: 60px;
  background: #51ba5d;
  border-radius: 32px 0 0 32px;
  min-height: 100%;
  box-shadow: 2px 0 12px 0 rgba(255,106,0,0.08);
}

.about-us-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.about-us-content h2 {
  color: black;
  font-size: 2.7em;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

.about-us-content p {
  color: #333;
  font-size: 1.18em;
  line-height: 1.7;
  margin-bottom: 18px;
}

.services-title {
  color: black;
  font-size: 2.7em;
  font-weight: 800;
  margin-bottom: 56px;
  letter-spacing: 1px;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-left-border {
  border-left: 8px solid #51ba5d;
}

.project-right-border {
  border-right: 8px solid #51ba5d;
}

/* Burger Animation */
.burger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.toggle span:nth-child(2) {
  opacity: 0;
}
.burger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.services-cards-modern {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.service-card-modern {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(26,34,56,0.10), 0 1.5px 6px rgba(26,34,56,0.08);
  width: 280px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 48px 28px 36px 28px;
  transition: transform 0.3s cubic-bezier(.23,1.02,.64,1), box-shadow 0.3s;
  opacity: 0;
  transform: translateY(60px);
}

.service-card-modern.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(.23,1.02,.64,1), transform 0.8s cubic-bezier(.23,1.02,.64,1);
}

.service-card-modern:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 40px rgba(26,34,56,0.15), 0 2px 8px rgba(26,34,56,0.10);
}

.service-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a2238 60%, #394867 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(26,34,56,0.10);
}

.service-icon-modern {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.service-card-modern h3 {
  color: black;
  font-size: 1.15em;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: start;
}

.service-card-modern p {
  color: #333;
  font-size: 1.01em;
  line-height: 1.6;
  text-align: start;
  margin: 0;
}

.projects-section {
  width: 100vw;
  max-width: 100%;
  padding: 80px 0 60px 0;
  background: white;
}

.projects-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: 800;
  color: black;
  margin-bottom: 56px;
  letter-spacing: 1px;
}

.project-row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 56px auto;
  gap: 48px;
  padding: 32px 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(26,34,56,0.07);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(.23,1.02,.64,1), transform 1s cubic-bezier(.23,1.02,.64,1);
}

.project-row.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

.project-image {
  flex: 1 1 45%;
  min-width: 260px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(26,34,56,0.10);
}

.project-content {
  flex: 1 1 55%;
  padding: 0 16px;
}

.project-content h3 {
  font-size: 1.5em;
  color: black;
  margin-bottom: 18px;
  font-weight: 700;
}

.project-content p {
  color: #333;
  font-size: 1.13em;
  line-height: 1.7;
}

.projects-showmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.projects-showmore {
  background: #51ba5d;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 14px 44px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 234, 64, 0.1);
  transition: background 0.3s, transform 0.3s;
  outline: none;
  text-decoration: none;
}

.projects-showmore:hover {
  background: linear-gradient(90deg, #51ba5d 0%, rgb(77, 235, 66) 100%);
  transform: translateY(-3px) scale(1.04);
}

.consulting-section {
  background: white;
  padding: 80px 0 60px 0;
  width: 100vw;
}

.consulting-title {
  text-align: center;
  font-size: 2.3em;
  font-weight: 800;
  color: black;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.consulting-content {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(26,34,56,0.07);
  padding: 48px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.consulting-intro p {
  color: black;
  font-size: 1.13em;
  line-height: 1.7;
  margin-bottom: 18px;
}

.consulting-services h3 {
  color: black;
  font-size: 1.2em;
  margin-bottom: 18px;
  font-weight: 700;
}

.consulting-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consulting-services ul li {
  color: black;
  font-size: 1.08em;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.consulting-services ul li::before {
  content: "▸";
  color: #51ba5d;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-section {
  background: #fff;
  min-height: 50vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.contact-title {
  text-align: center;
  font-size: 2.3em;
  font-weight: 800;
  color: black;
  margin-bottom: 40px;
  letter-spacing: 1px;
  margin-top: 60px;
}

.contact-content {
  width: 90vw;
  max-width: 1100px;
  background: #f7f8fa;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(26,34,56,0.07);
  padding: 48px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 5vw 60px 5vw; /* margin left/right for spacing, bottom for breathing room */
}

.contact-info h3 {
  color: #51ba5d;
  font-size: 1.15em;
  margin-bottom: 8px;
  margin-top: 24px;
  font-weight: 700;
}

.contact-info p {
  color: black;
  font-size: 1.08em;
  margin: 0 0 12px 0;
  line-height: 1.7;
}

.contact-link {
  color: black;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #51ba5d;
}

.vision-section {
  width: 100vw;
  background: linear-gradient(120deg, #f7f8fa 0%, #e6f5ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px 0; /* Add vertical padding for spacing */
  min-height: unset;      /* Remove min-height: 100vh */
}

.vision-content {
  width: 100vw;
  max-width: 100vw;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(.23,1.02,.64,1), transform 1s cubic-bezier(.23,1.02,.64,1);
}

.vision-content.in-view {
  opacity: 1;
  transform: translateY(0);
}

.vision-title {
  color: #51ba5d;
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: 1px;
  text-align: center;
}

.vision-text {
  color: #1a2238;
  font-size: 1.35em;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  max-width: 900px;
}

.about-joseph-section {
  width: 100vw;
  background: #f7f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 80px 0;
}

.about-joseph-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1100px;
  width: 90vw;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(26,34,56,0.13), 0 1.5px 6px rgba(255,106,0,0.08);
  overflow: hidden;
  gap: 0;
}

.about-joseph-image {
  flex: 0 0 320px;
  min-width: 260px;
  max-width: 340px;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.about-joseph-image img {
  width: 100%;
  max-width: 240px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(81,186,93,0.10);
  object-fit: cover;
}

.about-joseph-content {
  flex: 1;
  padding: 48px 48px 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-joseph-content h2 {
  color: #51ba5d;
  font-size: 2.3em;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.about-joseph-content p {
  color: #222;
  font-size: 1.13em;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-joseph-details {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 18px;
}

.about-joseph-details > div {
  min-width: 220px;
  flex: 1;
}

.about-joseph-details h3 {
  color: #51ba5d;
  font-size: 1.08em;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-joseph-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-joseph-details ul li {
  color: #333;
  font-size: 1em;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.about-joseph-details ul li::before {
  content: "▸";
  color: #51ba5d;
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 0;
}

/* General mobile reset */
@media (max-width: 900px) {
  html, body {
    overflow-x: hidden;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: #51ba5d;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.3s;
    z-index: 999;
    padding: 0;
    margin: 0;
    display: flex;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    color: #fff;
    font-size: 1.5em;
    padding: 16px 0;
    width: 100vw;
    text-align: center;
    display: block;
  }

  .burger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

    .logo {
    font-size: 1em;
    padding: 10px 0 0 0;
    max-width: 70vw;
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
  }

.hero {
  min-height: 100vh;
  height: 100vh;
  max-height: 100vh;
}
.hero-image {
  height: 100vh;
}
  .hero-content {
    padding: 32px 8px 32px 8px;
    width: 100vw;
  }
  .hero-content h1 {
    font-size: 1.1em;
    margin-bottom: 8px;
    line-height: 1.2;
    word-break: break-word;
  }
  .hero-content p {
    font-size: 0.95em;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .about-joseph-section {
    padding: 32px 0;
    background: #fff;
  }
  .about-joseph-flex {
    flex-direction: column;
    border-radius: 0;
    max-width: 92vw;
    width: 92vw;
    margin: 0 auto 0 auto; /* Center and add margin on left/right */
    box-shadow: none;
    align-items: center;
    background: none;
  }
  .about-joseph-image {
    width: 100%;
    max-width: 100vw;
    justify-content: center;
    padding: 24px 0 0 0;
    background: none;
    display: flex;
  }
  .about-joseph-image img {
    max-width: 140px;
    border-radius: 16px;
    margin: 0 auto;
    display: block;
  }
  .about-joseph-content {
    padding: 24px 12px 24px 12px;
    text-align: center;
    width: 100%;
    background: none;
  }
  .about-joseph-content h2 {
    font-size: 1.2em;
    margin-bottom: 12px;
    text-align: center;
  }
  .about-joseph-content p {
    font-size: 1em;
    margin-bottom: 14px;
    text-align: center;
  }
  .about-joseph-details {
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    align-items: center;
  }
  .about-joseph-details > div {
    min-width: unset;
    width: 100%;
  }
  .about-joseph-details h3 {
    font-size: 1em;
    margin-bottom: 6px;
    text-align: center;
  }
  .about-joseph-details ul {
    padding-left: 0;
    text-align: left;
    display: inline-block;
    margin: 0 auto 12px auto;
  }
  .about-joseph-details ul li {
    font-size: 0.97em;
    margin-bottom: 6px;
    padding-left: 16px;
    text-align: left;
  }

    .vision-section {
    padding: 32px 0 32px 0;
  }
  .vision-content {
    padding: 0 4vw;
  }
  .vision-title {
    font-size: 1.2em;
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .vision-text {
    font-size: 1em;
    line-height: 1.5;
    max-width: 98vw;
    padding: 0 2vw;
  }

    .services-section {
    padding: 32px 0 24px 0;
  }
  .services-title {
    font-size: 1.2em;
    margin: 24px 0 18px 0;
    text-align: center;
  }
  .services-cards-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100vw;
    padding: 0;
  }
  .service-card-modern {
    width: 92vw;
    max-width: 370px;
    min-height: unset;
    padding: 24px 20px 18px 20px;
    border-radius: 18px;
    margin: 0 auto;
    text-align: center; /* Center all text inside the card */
    align-items: center; /* Center icon and headings horizontally */
  }
  .service-card-modern p {
    font-size: 0.98em;
    line-height: 1.5;
    margin-left: 2px;
    margin-right: 2px;
    text-align: center;
  }
  .service-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }
  .service-icon-modern {
    width: 36px;
    height: 36px;
    text-align: center;
  }
  .service-card-modern h3 {
    font-size: 1.05em;
    margin-bottom: 10px;
    text-align: center;
  }

   .projects-section {
    padding: 32px 0 24px 0;
    background: #fff;
  }
  .projects-title {
    font-size: 1.2em;
    margin-bottom: 18px;
    text-align: center;
  }
  .project-row,
  .project-row.reverse {
    flex-direction: column !important;
    gap: 18px;
    padding: 16px 4vw;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(26,34,56,0.08);
    background: #f7f8fa;
    width: 92vw;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
  }
  .project-image {
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .project-image img {
    height: 120px;
    width: 100%;
    max-width: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
  }
  .project-content {
    padding: 0 2vw;
    text-align: center;
    width: 100%;
  }
  .project-content h3 {
    font-size: 1.05em;
    margin-bottom: 10px;
    text-align: center;
  }
  .project-content p {
    font-size: 0.98em;
    text-align: center;
    line-height: 1.5;
  }
  .projects-showmore-wrap {
    margin-top: 12px;
  }
  .projects-showmore {
    font-size: 1em;
    padding: 10px 24px;
    border-radius: 16px;
  }
  .project-left-border,
  .project-right-border {
    border-left: none !important;
    border-right: none !important;
    border-top: 4px solid #51ba5d;
    border-radius: 16px 16px 0 0;
  }

    .consulting-section {
    padding: 32px 0 24px 0;
    background: #fff;
  }
  .consulting-title {
    font-size: 1.2em;
    margin-bottom: 18px;
    text-align: center;
  }
  .consulting-content {
    padding: 16px 8px 12px 8px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(26,34,56,0.08);
    width: 94vw;
    max-width: 98vw;
    margin: 0 auto;
    gap: 16px;
  }
  .consulting-intro p {
    font-size: 1em;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 12px;
  }
  .consulting-services h3 {
    font-size: 1em;
    margin-bottom: 10px;
    text-align: center;
  }
  .consulting-services ul {
    padding-left: 0;
    margin: 0 auto 12px auto;
    text-align: left;
    display: inline-block;
  }
  .consulting-services ul li {
    font-size: 0.97em;
    margin-bottom: 6px;
    padding-left: 16px;
    text-align: left;
  }

    .contact-section {
    padding: 32px 0 24px 0;
    min-height: unset;
    background: #fff;
  }
  .contact-title {
    font-size: 1.2em;
    margin-bottom: 18px;
    margin-top: 18px;
    text-align: center;
  }
  .contact-content {
    width: 94vw;
    max-width: 98vw;
    padding: 16px 8px 12px 8px;
    margin: 0 auto 18px auto;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(26,34,56,0.08);
    gap: 16px;
  }
  .contact-info h3 {
    font-size: 1em;
    margin-top: 16px;
    margin-bottom: 6px;
    color: #51ba5d;
    text-align: center;
  }
  .contact-info p {
    font-size: 1em;
    margin: 0 0 12px 0;
    line-height: 1.5;
    text-align: center;
    word-break: break-word;
  }
  .contact-link {
    font-size: 1em;
    word-break: break-all;
  }
}


.aboutus-section {
  width: 100vw;
  background: #f7f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 80px 0;
}

.aboutus-content {
  max-width: 100vw;
  width: 100vw;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 48px 40px; /* Increased left/right padding for more margin */
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(.23,1.02,.64,1), transform 1s cubic-bezier(.23,1.02,.64,1);
}

.fade-in-aboutus.in-view .aboutus-content,
.aboutus-section.fade-in-aboutus.in-view .aboutus-content {
  opacity: 1;
  transform: translateY(0);
}

.aboutus-title {
  color: #51ba5d;
  font-size: 2.1em;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
}

.aboutus-text {
  color: #222;
  font-size: 1.13em;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: center;
}

/* Mobile styles */
@media (max-width: 900px) {
  .aboutus-section {
    padding: 32px 0;
  }
  .aboutus-content {
    border-radius: 0;
    max-width: 100vw;
    width: 100vw;
    padding: 24px 12px;
  }
  .aboutus-title {
    font-size: 1.2em;
    margin-bottom: 12px;
  }
  .aboutus-text {
    font-size: 1em;
    margin-bottom: 14px;
  }
}