.hero-section{
margin-top:80px;
}
/* Brand name */
.navbar-brand {
  font-size: 1.55rem;   
  font-weight: 800;     
  letter-spacing: 0.4px;
  color: #ffffff !important;
}

/* Nav links */
.navbar .nav-link {
  font-size: 1.1rem;    
  font-weight: 800;    
  color: #ffffff !important;
  padding: 0.75rem 1rem;
}

/* Hover / Active */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  opacity: 0.85;
}

/* Dropdown caret */
.navbar .dropdown-toggle::after {
  transform: scale(1.2);
  margin-left: 6px;
  filter: brightness(0) invert(1);
}

/* Request a Demo button */
.navbar .btn-warning {
  font-size: 1rem;
  font-weight: 800;
  padding: 0.6rem 1.3rem;
}
@media (max-width: 992px){
  .navbar-brand{
    font-size: 1.3rem;
  }

  .navbar .nav-link{
    font-size: 1.05rem;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: linear-gradient(90deg, #0056b3, #003d80);
  position: relative;
  z-index: 100;
}

.bg-gradient-custom {
  background: linear-gradient(90deg, #0056b3 0%, #003d80 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Navbar height */
.navbar {
  height: 80px;                
  padding-top: 0;
  padding-bottom: 0;
}

/* Brand container */
.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
  padding: 0;
}

/* Logo image */
.navbar-logo {
  height: 210px;                
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Company name */
.company-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff !important;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important;
}

/* Dropdown */
.dropdown-menu {
  background: rgba(0,0,0,0.85);
  border-radius: 10px;
  border: none;
}

.dropdown-item {
  color: #ffffff;
}

.dropdown-item:hover {
  background: #00d4ff;
  color: #000;
}

.demo-btn {
  background: #ffd700;
  color: #000;
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.demo-btn:hover {
  background: #ffb300;
  transform: scale(1.05);
}


@media (max-width: 991px) {

  .navbar {
    height: auto;
    padding: 10px 20px;
  }

  .navbar-logo {
    height: 44px;
  }

  .company-name {
    display: none;
  }

  .navbar-nav {
    padding-top: 12px;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 10px;
  }
}
  :root{
      --text:#1d2b44;
      --blue2:#d7efff;
      --line:#b7dcff;
      --line2:#9cccfb;
    }

    body{
      background: #ffffff;  
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

   
    .page-wrap{
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 15px;
      background: #ffffff;
    }

    
    .diagram-box{
      width: 100%;
      max-width: 1200px;
      background: #ffffff;
      border-radius: 22px;
      padding: 55px 40px 60px;
      box-shadow: 0 25px 80px rgba(15, 27, 45, 0.12);
      border: 1px solid rgba(15, 27, 45, 0.08);
      position: relative;
      overflow: hidden;
    }

    
    .top-pill{
      max-width: 520px;
      margin: 0 auto;
      padding: 18px 28px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--blue2), #cfeaff);
      text-align: center;
      font-weight: 900;
      letter-spacing: 1px;
      color: var(--text);
      font-size: 30px;
      box-shadow: 0 16px 28px rgba(15,27,45,0.10);
    }

    .gateway{
      margin-top: 12px;
      text-align: center;
      font-size: 30px;
      font-weight: 500;
      color: var(--text);
    }

    /* Main arrow down */
    .down-arrow{
      width: 2px;
      height: 28px;
      background: #2b3b52;
      margin: 14px auto 16px;
      position: relative;
    }
    .down-arrow::after{
      content:"";
      position:absolute;
      left: 50%;
      bottom: -8px;
      transform: translateX(-50%);
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 10px solid #2b3b52;
    }

    /* Cards */
    .node-card{
      width: 180px;
      height: 150px;
      background: #ffffff;
      border-radius: 18px;
      box-shadow: 0 16px 40px rgba(15,27,45,0.12);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid rgba(15,27,45,0.10);
      margin: 0 auto;
      position: relative;
      z-index: 2;
      transition: 0.22s ease;
      cursor: pointer;
    }

    .node-label{
      font-weight: 500;
      color: var(--text);
      font-size: 18px;
    }

    .icon{
      width: 44px;
      height: 44px;
      color: #152c63;
      opacity: 0.95;
      transition: 0.22s ease;
    }

    /* Hover */
    .node-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 55px rgba(15,27,45,0.14);
    }

    /* Active */
    .pair.active .node-card{
      border: 1px solid rgba(11, 77, 187, 0.45);
      box-shadow: 0 22px 65px rgba(11, 77, 187, 0.22);
      transform: translateY(-4px);
    }

    /* up/down arrows between microservice and DB */
    .between-arrows{
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      position: relative;
      z-index: 2;
    }

    .mini-arrow{
      width: 24px;
      height: 30px;
      position: relative;
      opacity: 0.95;
      transition: 0.2s ease;
    }

    .mini-arrow.down::before{
      content:"";
      position:absolute;
      left: 50%;
      top: 0;
      width: 3px;
      height: 22px;
      transform: translateX(-50%);
      background: var(--line2);
      border-radius: 99px;
    }
    .mini-arrow.down::after{
      content:"";
      position:absolute;
      left: 50%;
      bottom: -2px;
      transform: translateX(-50%);
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-top: 9px solid var(--line2);
    }

    .mini-arrow.up::before{
      content:"";
      position:absolute;
      left: 50%;
      bottom: 0;
      width: 3px;
      height: 22px;
      transform: translateX(-50%);
      background: var(--line2);
      border-radius: 99px;
    }
    .mini-arrow.up::after{
      content:"";
      position:absolute;
      left: 50%;
      top: -2px;
      transform: translateX(-50%);
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 9px solid var(--line2);
    }

    /* Connector lines */
    .connectors{
      position: absolute;
      top: 250px;
      left: 0;
      width: 100%;
      height: 220px;
      z-index: 1;
      pointer-events: none;
    }

    .conn-line{
      stroke: var(--line);
      stroke-width: 3;
      stroke-dasharray: 7 10;
      fill: none;
    }

    /* Animate flow */
    .animate-flow .conn-line{
      animation: dashMove 2.2s linear infinite;
    }

    @keyframes dashMove{
      to { stroke-dashoffset: -45; }
    }

    /* Strong highlight line when active */
    .conn-line.highlight{
      stroke: #5bb2ff;
      stroke-width: 4;
    }

    /* Layout */
    .nodes-row{
      margin-top: 16px;
      padding-top: 10px;
      position: relative;
      z-index: 2;
    }

    /* Responsive */
    @media (max-width: 992px){
      .node-card{
        width: 100%;
        max-width: 220px;
      }
      .connectors{
        display:none; 
      }
    }


.partner-slider {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}


.partner-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #1c2a4d;
  margin-bottom: 20px;
  line-height: 1.25;
}


.partner-text {
  font-size: 1.08rem;
  color: #475569;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 28px;
}


.partner-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1f4fd8, #22c1c3);
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.partner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 79, 216, 0.3);
  color: #ffffff;
}


.partner-image {
  max-width: 100%;
  animation: floatImage 6s ease-in-out infinite;
}

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


.contact-points {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 16px;
  line-height: 1.65;
}

.contact-points i {
  font-size: 1.25rem;
  color: #1f4fd8;
  margin-top: 4px;
  flex-shrink: 0;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(35%);
}


@media (max-width: 991px) {

  .partner-slider {
    padding: 60px 0;
  }

  .partner-title {
    font-size: 2.1rem;
    text-align: center;
  }

  .partner-text {
    text-align: center;
    margin: 0 auto 26px;
    font-size: 1rem;
  }

  .contact-points {
    max-width: 520px;
    margin: 0 auto 30px;
  }

  .partner-btn {
    display: inline-block;
    margin-top: 10px;
  }

  .partner-image {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {

  .partner-title {
    font-size: 1.9rem;
  }

  .partner-text {
    font-size: 0.98rem;
  }

  .contact-points li {
    font-size: 0.98rem;
  }
}
.sg-footer {
  background: linear-gradient(90deg, #003d80 0%, #002855 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Soft glow */
.sg-footer::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  left: -160px;
  top: -200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 65%);
  filter: blur(35px);
  pointer-events: none;
}

.sg-footer::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -170px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
  filter: blur(35px);
  pointer-events: none;
}

/* Brand */
.sg-footer-brand {
  font-size: 1.9rem;
  letter-spacing: 1px;
}

/* Titles */
.sg-footer-title {
  font-weight: 700;
  color: #ffffff;
}

/* Text */
.sg-footer-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Email */
.sg-footer-email {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.sg-footer-email:hover {
  color: #ffe600;
}

/* Links */
.sg-footer-list li {
  margin-bottom: 10px;
}

.sg-footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.sg-footer-link:hover {
  color: #ffe600;
  transform: translateX(4px);
}

/* Social Buttons */
.sg-social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.sg-social-btn:hover {
  background: #ffe600;
  color: #003d80;
  transform: translateY(-4px) scale(1.05);
}

/* Divider */
.sg-footer-divider {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Bottom text */
.sg-footer-bottom p {
  color: rgba(255, 255, 255, 0.85);
}


/* Responsive */
@media (max-width: 768px) {
  .sg-footer {
    text-align: center;
  }
  .sg-footer-socials {
    justify-content: center;
  }
}


.footer-map-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.footer-map {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* Location dots */
.map-dot {
  fill: #ffe600;
  stroke: rgba(255, 230, 0, 0.6);
  stroke-width: 6;
  animation: pulse 2s infinite;
}

/* Location labels */
.map-label {
  fill: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
}

/* Connecting line */
.map-line {
  stroke: #ffe600;
  stroke-width: 2;
  stroke-dasharray: 6;
  opacity: 0.8;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    r: 6;
    opacity: 1;
  }
  70% {
    r: 12;
    opacity: 0;
  }
  100% {
    r: 6;
    opacity: 1;
  }
}


@media (max-width: 576px) {
  .footer-map {
    max-width: 360px;
  }

  .map-label {
    font-size: 12px;
  }
}


#footer-map {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #0b2f5b; /* fallback */
}

/* Remove Leaflet default background lines */
.leaflet-container {
  background: transparent;
  font-family: inherit;
}

/* Popup styling */
.leaflet-popup-content-wrapper {
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.leaflet-popup-tip {
  background: rgba(0, 0, 0, 0.85);
}

.leaflet-popup-content {
  margin: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

/* Zoom controls */
.leaflet-control-zoom a {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
}

.leaflet-control-zoom a:hover {
  background: #ffe600;
  color: #003d80;
}

/* Hide attribution if needed */
.leaflet-control-attribution {
  font-size: 10px;
  opacity: 0.6;
}


@media (max-width: 576px) {
  #footer-map {
    height: 180px;
    border-radius: 10px;
  }
}





/* Responsive */
@media (max-width: 768px) {
  .xyz-footer {
    text-align: center;
  }
  .xyz-footer-socials {
    justify-content: center;
  }
}

.arch-hero{
  padding: 40px 0 30px;
  background: linear-gradient(135deg, rgba(31,79,216,0.10), rgba(17,109,112,0.10));
  position: relative;
  overflow: hidden;
}

.arch-hero::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  left:-180px;
  top:-170px;
  background: radial-gradient(circle, rgba(31,79,216,0.35), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.arch-hero::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-190px;
  bottom:-180px;
  background: radial-gradient(circle, rgba(17,109,112,0.30), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.arch-hero-title{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.arch-hero-title span{
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.arch-hero-desc{
  margin-top: 12px;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
}

.arch-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}


.arch-hero-btn{
  display: inline-flex;               
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 0;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--primary, #1f4fd8),
    var(--accent, #3b82f6)
  );

  box-shadow: 0 14px 28px rgba(31,79,216,0.25);
  cursor: pointer;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.arch-hero-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 36px rgba(31,79,216,0.35);
  color: #ffffff;
}

.arch-hero-btn-outline{
  display: inline-flex;              
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;

  border: 1px solid rgba(31,79,216,0.45);
  background: rgba(255,255,255,0.85);
  color: var(--primary, #1f4fd8);

  cursor: pointer;
  text-decoration: none;

  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.arch-hero-btn-outline:hover{
  background: rgba(31,79,216,0.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31,79,216,0.18);
  color: var(--primary, #1f4fd8);
}


.arch-hero-lottie-card{
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(31,79,216,0.18);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.arch-hero-lottie{
  width: 100%;
  height: 360px; 
}

@media(max-width: 992px){
  .arch-hero{
    padding: 30px 0 25px;
    text-align: center;
  }
  .arch-hero-desc{
    margin-left:auto;
    margin-right:auto;
  }
  .arch-hero-actions{
    justify-content: center;
  }
  .arch-hero-lottie{
    height: 300px;
  }
}


.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-left{ transform: translateX(-28px); }
.reveal-right{ transform: translateX(28px); }
.reveal-zoom{ transform: scale(0.96); }

.reveal-up.show,
.reveal-left.show,
.reveal-right.show,
.reveal-zoom.show{
  opacity: 1;
  transform: none;
}

.delay-100{ transition-delay: 0.1s; }
.delay-200{ transition-delay: 0.2s; }
.delay-300{ transition-delay: 0.3s; }
.delay-400{ transition-delay: 0.4s; }




/* ===== FIX NAVBAR BULLET + SPACING GLOBALLY ===== */

.navbar-nav {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: auto !important;  /* Keeps menu right aligned */
}

.navbar-nav .nav-item {
  list-style: none !important;
  margin-left: 20px;  /* Proper spacing between items */
}
/* ================= PERFECT MOBILE NAVBAR ================= */

@media (max-width: 991px) {

  /* Compact navbar */
  .navbar {
    height: 60px;
    padding: 5px 15px;
  }

  /* Fix large logo */
  .navbar-logo {
    height: 80px;
    width: auto;
    margin: 0;
  }

  /* Remove extra spacing */
  .navbar-brand {
    padding: 0;
  }

  /* Toggler fix */
  .navbar-toggler {
    padding: 4px 8px;
    font-size: 18px;
  }

  /* Mobile dropdown */
  .navbar-collapse {
    background: linear-gradient(180deg,#003d80,#002855);
    padding: 15px;
    border-radius: 10px;
    margin-top: 8px;
  }

  /* Center items */
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 6px 0;
  }

  /* Demo button full width */
  .demo-btn {
    width: 100%;
    margin-top: 10px;
  }

}
/* ===== FIX HERO HIDDEN BEHIND NAVBAR (MOBILE) ===== */

@media (max-width: 991px){

  body{
    padding-top: 70px; /* space for navbar */
  }

  .arch-hero{
    padding-top: 40px;
  }

}
/* ================= UPDATED COMPACT MOBILE NAVBAR ================= */

@media (max-width: 991px) {

  /* 1. Reduce overall navbar height and padding */
  .navbar {
    height: auto;          /* Changed from 60px to auto for better fit */
    min-height: 50px;      /* Ensures it doesn't collapse too much */
    padding: 2px 15px;     /* Tightened top/bottom padding */
  }

  /* 2. Scale the logo down to fit the tighter space */
  .navbar-logo {
    height: 60px;          /* Reduced from 80px to move everything "up" */
    width: auto;
    margin-top: -5px;      /* Slight negative margin to pull it up if needed */
    margin-bottom: -5px;
  }

  /* 3. Adjust the toggler (hamburger icon) alignment */
  .navbar-toggler {
    padding: 2px 6px;
    margin-top: 0;         /* Ensures it stays centered with the logo */
  }

  /* 4. Remove extra top margin from the dropdown */
  .navbar-collapse {
    background: linear-gradient(180deg,#003d80,#002855);
    border-radius: 10px;
    padding: 15px;
    margin-top: 5px;       /* Reduced from 8px */
  }

  /* 5. Adjust the Story section top padding */
  /* This prevents the text below from feeling too far from the header */
  .section {
    padding: 40px 0;       /* Reduced from 90px for mobile */
  }
}
.dropdown-menu {
  background: #ffffff; /* White background */
  border-radius: 10px;
  border: 1px solid #e5e7eb; /* Light gray border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Soft shadow */
}

/* Dropdown text */
.dropdown-item {
  color: #333333; /* Dark text for readability */
  font-weight: 500;
}

/* Hover */
.dropdown-item:hover {
  background: #f3f4f6; /* Light gray hover */
  color: #000000;
}


@media (max-width: 991px) {

  /* 1. Reduce overall navbar height and padding */
  .navbar {
    height: auto;
    min-height: 50px;
    padding: 2px 15px;
  }

  /* 2. Scale the logo */
  .navbar-logo {
    height: 95px;
    width: auto;
    margin-top: -5px;
    margin-bottom: -5px;
  }

  /* 3. Dropdown styling */
  .navbar-collapse {
    background: linear-gradient(180deg,#003d80,#002855);
    border-radius: 10px;
    padding: 15px;
    margin-top: 5px;
  }

  /* 4. MOVE "OUR STORY" DOWN HERE */
  /* We increase the top padding to create breathing room below the navbar */
  .section {
    padding-top: 80px;    /* Increased from 40px to move text down */
    padding-bottom: 40px;
  }

  /* Specifically target the story heading if needed */
  .story h1 {
    margin-top: 20px;
    font-size: 2.2rem;   /* Slightly smaller font for better mobile fit */
  }
}
.sg-footer-brand{
margin-bottom:0 !important;
line-height:0;
}

.footer-logo{
max-width:230px;
height:auto;
display:block;
margin-bottom:2px;
}

.sg-footer-text{
margin-top:0;
}
.sg-footer .col-lg-2,
.sg-footer .col-lg-3 {
  text-align: left;
}

.sg-footer-list {
  padding-left: 0;
}

.sg-footer-list li {
  text-align: left;
}
.sg-footer-text{
  text-align: left;
  line-height: 1.8;
  max-width: 420px;
}