body {
  width: 100vw;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  display: none;
}
main {
  width: 100vw;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

section.hero {
  padding: 2rem 5rem;
  width: 100%;
  height: 50vh;
  color: var(--white);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  img {
    width: 30%;
  }
  #about-title {
    font-size: calc(5vw - 2rem);
    font-weight: 700;
    font-family: "Climate Crisis";

    position: relative;
    height: 50%;
    top: 0%;
    letter-spacing: 6px;
  }
  .properties {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;

    font-family: "Inter";

    .content-wrapper {
      flex: 1;
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      height: 40%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-family: "Montserrat";
      span.content {
        font-size: 3.2rem;
        font-family: "Bebas Neue";
      }
    }
    .hero-img-container {
      padding: 2rem 1rem;
      flex: 2;
      height: 100%;
      width: 100%;
      display: grid;
      place-content: center;
      img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
      }
    }
    .half-img-text {
      flex: 1;
      padding: 1rem 2rem;
      height: 100%;
      width: 100%;
      display: grid;
      place-content: center;
      font-family: "Poppins";
      img {
        width: 100%;
        border-radius: 24px;
        filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.1));
      }
      strong.content {
        font-family: "Bebas Neue";
        font-size: 3.2rem;
      }
    }
  }
}
section.services {
  padding: 2rem 5rem;
  margin-bottom: 2vh;
  width: 100%;
  height: 50vh;
  color: var(--white);
  position: relative;
  top: 100%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  .visual-content {
    width: 50%;
    h2#services-title {
      text-align: left;

      font-family: "Climate Crisis";
      font-size: 4.5vw;
    }
  }

  ul.service-list {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
    list-style: none;
    li.service-container {
      width: 100%;
      height: 30%;

      h3.service-name {
        font-family: "Bebas Neue";
        font-weight: 700;
        font-size: calc(2.4rem + 1vw);
        text-transform: uppercase;
      }
      p.service-desc {
        font-family: "Poppins";
        font-size: 1.6rem;
      }
    }
  }
}

section.organization {
  padding: 2rem 5rem;
  margin-bottom: 2vh;
  width: 100%;
  height: 100vh;
  color: var(--white);
  position: relative;
  top: 150%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  h2#org-title {
    text-align: center;

    font-family: "Climate Crisis";
    font-size: 4.5vw;
  }
  #imageCarousel {
    width: 100vw;
    height: 40vh;
    position: absolute;
    top: 50%;
  }
  .carousel-item {
    height: 30vw;
    scale: 0.7;
    position: relative;
    border-radius: 50%;

    transform: translate(35%);
  }
  .carousel-item:hover {
    scale: 0.8;
    transition: 0.3s linear;
  }
  .carousel-item:not(:hover) {
    transition: 0.3s linear;
  }
}
