body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

header .top-bar {
  background: #2d3a8c;
  color: #fff;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.logo {
  font-weight: bold;
  font-size: 1.3em;
  letter-spacing: 2px;
}

.max-width-container {
  width: 100vw;
  /* Max width should be wither 1400px or (100vw - 140px), whichever is smaller */
  max-width: min(1400px, calc(100vw - 140px));
  margin: 0 auto;
}

.hero {
  height: 75vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
  background: url('assets/header.jpg') center center/cover no-repeat;
  color: #fff;
}

.hero-img {
  display: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.hero-text h1 {
  font-size: 2.8em;
  margin: 0 0 30px 0;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 1.3em;
  color: #fff;
  margin: 0 0 10px 0;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 140px 10px;
}

.screenshots {
  padding: 0px 10px 140px;
} 

.screenshots_container {
  display: flex;
  flex-direction: row;
  z-index: 100;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
  justify-content: flex-start;
  gap:20px;
}

.img-screenshots{
  width: 18%;
  min-width: 205px;
}

.footer-main {
  padding-top: 40px;
  background: #32389a;
  color: #fff;
  font-size: 1.05em;
}

.footer-content {
  margin: 0 auto;
}

.footer-logo-and-filing-codes {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.2em;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #4a4fa3;
  padding: 18px 0 18px 0;
  font-size: 1em;
  color: #e0e0e0;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-b2b {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-b2b-icon {
  font-size: 1.1em;
}

.footer-address {
  font-size: 0.75em;
  color: #e0e0e0;
}

.footer-img {
  object-fit: cover;
  width: 100%;
}

@media (max-width: 1400px) {
  .max-width-container {
    margin: 0 70px;
    max-width: calc(100vw - 140px);
  }
}

@media (max-width: 1200px) {
  .max-width-container {
    margin: 0 50px;
    max-width: calc(100vw - 100px);
  }
}

@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .hero {
    padding: 40px 10px;
    min-height: 300px;
    align-items: flex-end;
  }
  .hero-text {
    max-width: 100%;
  }
  .footer-logo-and-filing-codes {
    flex-direction: column;
  }
  .max-width-container {
    margin: 0 30px;
    max-width: calc(100vw - 60px);
  }
} 

@media (max-width: 600px) {
  .img-screenshots {
    width: 75vw !important;
  }
  .screenshots_container {
    flex-direction: column;
    align-items: center;
  }
}