html,
body {
  overflow-x: hidden;
  min-width: 320px;
}

body {
  background-image: url('images/landing_bg.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin: 0;
  font-family: Arial, sans-serif;
}

.page {
  padding: 0 30px;
}

header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: 10px;
}

header img {
  display: block;
  height: auto;
  max-width: 100%;
}

header img.left,
header img.right {
  width: clamp(40px, 7vw, 96px);
}

header img.center {
  justify-self: center;
  width: 100%;
  height: auto;
  max-width: 400px;
}

.video-container {
  display: grid;
  place-items: center;
  margin: 20px auto;
}

.embedVideo {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: none;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: clamp(20px, 8vw, 90px);
  width: 100%;
  max-width: 1200px;
  margin: clamp(20px, 4vw, 70px) auto clamp(40px, 8vw, 140px) auto;
  box-sizing: border-box;
}

.image-container img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}

.grid-images {
  display: grid;
  grid-template-columns: 30% 70%; 
  align-items: center;
  gap: 2vw;   
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.grid-images img {
  width: 100%; 
  height: auto;  
  display: block;
  object-fit: contain;
}

.footer {
  width: 100%;
}

.footer-base {
  position: relative;
}

.footer-base.footer-app {
  max-width: none;
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}

.footer-base.footer-app img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.footer-base.footer-app+.footer-base {
  margin-top: 0;
}

.footer-bg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-overlay {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4%;
  width: 80%;
  z-index: 2;
  justify-items: center;
  align-items: start;
}

.footer-tile {
  width: 100%;
  height: auto;
  max-width: 420px;
  min-width: 160px;
  max-width: 600px;
}

.footer-tile:first-child {
  transform: scale(0.93) translateY(-5%);
}

.footer-overlay img.footer-tile:last-of-type {
  transform: scale(0.8) translateX(-15%) translateY(0%);
  transform-origin: top center;
}