#container {
  padding-top: 4.2rem;
}

.product-banner-area {
  img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.banner-content {
  text-align: center;
  padding-block: 3rem;
  max-width: 90%;
  margin-inline: auto;
  width: 850px;

  &.w-950 {
    width: 950px;
  }

  .client-detail {
    padding-top: 2rem;
    display: grid;
    gap: 2px;
  }

  h1 {
    font-family: var(--font-regular);
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    font-weight: normal;
    letter-spacing: -3px;
    color: #000000;
  }
}

strong {
  font-family: var(--font-bold);

  &.img-title {
    font-family: var(--font-medium);
    font-weight: normal;
    display: block;
    padding-block: 1rem;
  }
}

.product-identity {
  text-align: center;

  & + .product-identity {
    margin-top: 1.5rem;
  }

  p {
    margin-bottom: 1.5rem;
  }
}

.two-column-right-with-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
  gap: 1rem;

  .text-column {
    width: 100%;
    max-width: 300px;
    justify-self: flex-end;
    align-self: center;
    text-align: right;
    margin-right: 4rem;
  }
}

.product-image-gallary {
  padding-inline: 0.5rem;

  & > img {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .image-with-title {
    strong {
      display: block;
      text-align: center;
      padding-block: 0.8rem;
    }

    p {
      text-align: center;
    }
  }

  .two-column-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;

      &.left {
        object-position: left;
      }
    }
  }
}

.four-column-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.three-column-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.gap-0 {
  gap: 0 !important;
}

.text-center {
  text-align: center;
}

.fc-carton {
  background-color: #333;
  color: #fff;
}

@media (min-width: 767px) {
  .w-90 {
    width: 90%;
    margin-inline: auto;
  }

  .w-80 {
    width: 80%;
    margin-inline: auto;
  }
}

/* responsive */
@media (max-width: 767px) {
  .banner-content {
    h1 {
      letter-spacing: -1px;
    }
  }

  .two-column-right-with-text {
    .text-column {
      width: 100%;
      max-width: 300px;
      justify-self: flex-end;
      align-self: center;
      text-align: right;
      margin-right: 0;
    }
  }
}
