main {
  > section > div#carousel {
    position: relative;

    width: 100%;
    overflow-y: hidden;

    height: 50vh;

    display: flex;
    flex-direction: row;

    > button {
      width: 8rem;
      height: 100%;

      position: absolute;
      z-index: var(--carousel-nav-button-z-index);
      top: 0;

      background-color: transparent;
      color: #ffffff;
      text-shadow: 0 0 5px rgba(0, 0, 0, 1);
      border: none;

      &#carousel-prev {
        left: 0;
      }

      &#carousel-next {
        right: 0;
      }
    }

    > .content {
      width: 100%;
      height: 100%;

      overflow-y: hidden;
      overflow-x: hidden;

      position: absolute;

      z-index: var(--carousel-content-z-index);

      top: 0;
      left: 0;

      display: flex;
      flex-direction: row;

      > .item {
        min-width: 100%;
        max-width: 100%;

        min-height: 100%;
        max-height: 100%;

        position: relative;

        > img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          filter: brightness(0.6);

          position: absolute;
          top: 0;
          left: 0;

          z-index: var(--carousel-image-z-index);
        }

        > .info {
          width: 100%;
          height: 100%;

          position: relative;
          z-index: var(--carousel-text-z-index);

          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 1.5rem;

          color: #ffffff;
        }
      }
    }
  }

  > section.banner {
    width: 100%;
    height: auto;

    > img {
      width: 100%;
    }
  }

  > section.products {
    width: 100%;

    padding: 1rem 1rem;

    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 1rem;
    background-color: #e6e6e6;

    > .card {
      @media screen and (max-width: 1023px) {
        width: 100%;
      }

      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        width: calc(50% - 0.5rem);
      }

      @media screen and (min-width: 1281px) {
        width: calc(33.3333% - 0.6666rem);
      }

      aspect-ratio: 1/1;
      border-radius: 1rem;
      overflow: hidden;
      transition-duration: 100ms;
      transition-timing-function: ease-in-out;
      transition-property: transform;

      &:hover {
        transform: scale(1.01);
      }

      > img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }
    }
  }

  > section.projects {
    width: 100%;

    padding: 1rem 1rem;

    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: #e6e6e6;

    > a.card {
      @media screen and (max-width: 1023px) {
        width: 100%;
      }

      @media screen and (min-width: 1024px) and (max-width: 1280px) {
        width: calc(50% - 0.5rem);
      }

      @media screen and (min-width: 1281px) {
        width: calc(33.3333% - 0.6666rem);
      }

      aspect-ratio: 1/1;
      overflow: hidden;
      border-radius: 1rem;
      text-decoration: none;

      > img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }
    }
  }

  > section.video {
    width: 100%;
    height: auto;
    background-color: #e6e6e6;

    box-sizing: border-box;
    padding: 0 1rem;

    > iframe {
      width: 100%;
      margin-top: 1rem;
      aspect-ratio: 16 / 9;
    }
  }

  section.about-us {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background-color: #e6e6e6;

    > div {
      width: 100%;
      @media (min-width: 1025px) {
        width: calc(50% - 0.5rem);
      }

      > p {
        > b {
          color: rgb(109, 23, 23);
        }
      }

      > ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        list-style-position: inside;
        list-style: none;

        > li {
          margin-left: 1rem;

          > b {
            color: rgb(109, 23, 23);
          }
        }
      }
    }

    > img {
      width: 100%;
      @media (min-width: 1025px) {
        width: calc(50% - 0.5rem);
      }
    }
  }

  > section.partners {
    width: 100%;

    box-sizing: border-box;
    padding: 1rem 1rem;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: #e6e6e6;

    > img {
      width: 100%;
      max-width: 150px;
    }
  }
}
