@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Poppins';
}

//  Lenis CSS styles
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

// Global Styles
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: justify;
}

section {
  width: 100%;
  height: 100vh;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hero h1 {
  position: absolute;
  font-size: 4rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

section.about,
section.services {
  height: fit-content;
  padding: 4em;
  background: #ced4da;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: justify;
}

section.marquees {
  height: 150vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.marquee-container {
  position: relative;
  width: 100vw;
  height: 250px;
  display: flex;
  margin-bottom: 1em;
  overflow: hidden;
}

.marquee {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 1em;
}

#marquee-1 .marquee,
#marquee-2 .marquee,
#marquee-3 .marquee,
#marquee-4 .marquee {
  width: max-content;
  left: -15%;
}

.item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item.with-text {
  flex: 1;
}

.item h2 {
  font-size: 70px;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #212529;
  color: #ced4da;
  padding: 1em;
}

footer p {
  font-size: 1.125rem;
  font-weight: 300;
  text-transform: uppercase;
}

// Responsive Breakpoints for Tablet and Mobile
@media (max-width: 900px) {
  section.marquees {
    height: 100vh;
  }

  .marquee-container {
    width: 250%;
    height: 150px;
  }

  #marquee-2 .marquee,
  #marquee-4 .marquee {
    left: -35%;
  }

  .item.with-text {
    flex: 0.8;
  }

  .item h2 {
    font-size: 60px;
  }
}
