.third-block {
  width: 100%;
  position: relative;
  background-color: #fcfcfc;
  z-index: 1;

  padding-bottom: 0rem;
}

.third-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40px;
  z-index: 10;
}

.third-block-title-container {
  display: flex;
  justify-content: flex-start;
  position: relative;
  padding: 2rem 5%;
  width: 100%;
  max-width: 1440px;
}

.third-block-title {
  font-family: "KingRichard-Italic", sans-serif;
  font-size: clamp(2rem, 6vw, 6.4375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.05;
  color: #381809;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 2rem;

  opacity: 0;

   will-change: transform, opacity;
}

.third-block-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(252, 252, 252, 0) 0%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

@media (max-width: 600px) {
  .third-block {
    padding-top: 11.85rem;
    width: 100%;
    background-color: #fcfcfc;
  }

  .third-block-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: none;
  }

  .third-block-title {
    font-family: "KingRichard-Italic", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.05;
    color: #381809;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
  }
}
