/* Common CSS */
#main {
  padding-top: 0;
  padding-bottom: 0;
}
/* End Common CSS */

/* Block Banner */
.block-banner {
  height: 100vh;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.block-banner .field-image {
  height: 100%;
  position: relative;
  padding-top: 0;
}

.block-banner .field-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.block-banner .field-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}

.block-banner .field-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  text-align: center;
}

.block-banner .field-title {
  font-weight: 400;
  font-size: 4rem;
  font-family: "Noto Serif Display";
  color: #fff;
}

.block-banner .field-subtitle {
  font-size: 4rem;
  font-family: "Noto Serif Display";
  color: #fff;
  font-style: italic;
}

.block-banner .field-desc {
  font-size: 1.5rem;
  font-family: "Noto Serif Display";
  color: #fff;
}
/* End Block Banner */

/* Block Product Style */
.block-product-style {
  background-color: #f2f2f2;
}

.block-product-style .field-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.block-product-style .field-item--image,
.block-product-style .field-item--content {
  flex-basis: calc(50% - 1rem); /* Each column will take up 50% of the width minus the gap */
  margin-bottom: 2rem; /* This creates a 2rem gap between the columns */
}

.block-product-style .field-item:nth-child(even) .field-item--image {
  order: 2; /* Image on the right */
}

.block-product-style .field-item--image {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.block-product-style .field-item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-product-style .field-item--content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.block-product-style .field-item--title {
  font-family: "Noto Serif Display";
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.block-product-style .field-item--desc {
  font-size: 1.125rem;
}

.block-product-style .field-item--view-more {
  margin-top: 1rem;
}

.block-product-style .field-item--view-more a {
  text-decoration: none;
  color: var(--button-background);
  font-size: 1rem;
}

.block-product-style .field-item--view-more a:hover {
  text-decoration: underline;
}
/* End Block Product Style */

/* Block Product Testimonial */
.block-testimonial {
  padding-top: 0;
  background-color: #f2f2f2;
}
/* End Block Testimonial */

.block-product-intro {
  background-color: #f2f2f2;
}

@media (max-width: 1399.98px) {
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
  /* Block Banner */
  .block-banner .field-title {
    font-size: 3.5rem;
  }

  .block-banner .field-subtitle {
    font-size: 3.5rem;
  }

  .block-banner .field-desc {
    font-size: 1.5rem;
  }
  /* End Block Banner */

  /* Block Product Style */
  .block-product-style .swiper-slide .field-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .block-product-style .swiper-slide .field-desc {
    font-size: 1rem;
  }

  .block-product-style .swiper-slide .field-view-more {
    margin-top: 1rem;
  }

  .block-product-style .swiper-slide .field-view-more a {
    color: var(--button-background);
    text-decoration: none;
  }
  /* End Block Product Style */
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
}
