.random-block-06 {
  width: 100%;
  position: relative;
  padding: 7rem 3rem;
}
.random-block-06-container {
  display: grid;
  gap: 7rem 2rem;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}
.random-block-06-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  width: 100%;
  height: 463px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.random-block-06-item.is-hidden {
  display: none;
}
.random-block-06-img {
  width: 300px;
  height: 100%;
  position: absolute;
  top: -5rem;
  right: 1rem;
  z-index: -1;
}
.random-block-06-img img {
  object-fit: cover;
  width: 100%;
}
.random-block-06-name h4 {
  color: #FFF;
  font-size: 24px;
  font-family: 'Poppins-Bold', Arial, sans-serif;
  line-height: 140%;
}
.random-block-06-position p {
  color: #FFF;
  font-size: 16px;
  font-family: 'Poppins-Regular', Arial, sans-serif;
  line-height: 150%;
}

.random-block-06-button {
  margin-top: 3rem;
}
.random-block-06-button button {
  background: transparent;
  border: none;
  color: #FFF;
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 16px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  cursor: pointer;
}
.random-block-06-overlay {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  background: linear-gradient(217deg, #069D84 -38.57%, #02372E 103.65%);
}

.random-block-06-overlay.open {
  height: 320px;
}
.overlay-close {
  background: transparent;
  border: none;
  color: #FFF;
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 16px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  cursor: pointer;
  padding: 1.5rem;
}
.random-block-06-overlay-text p {
  padding: 0 1.5rem;
  color: #FFF;
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 16px;
}
.overlay-open svg,
.overlay-close svg {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.overlay-open:hover svg,
.overlay-close:hover svg {
  transform: rotate(90deg);
}
.glow-bg-four{
  position: absolute;
  width: 80vw;
  height: 80vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(42.64% 42.75% at 50% 50%, #069D84 0%, rgba(6, 157, 132, 0.00) 100%);
  filter: blur(10vw);
  animation: moveGlow 12s infinite alternate ease-in-out;
  z-index: -10;
}
.random-block-06-more-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.random-block-06-more-button {
  cursor: pointer;
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-family: 'Poppins-Regula', Arial, sans-serif;
  border: 1px solid #FFF;
  border-radius: 6px;
  padding: 0.5rem 2rem;
  transition: ease-in-out 0.3s;
}

.random-block-06-more-button:hover {
  background-color: #FFF;
  color: #202222;
}

 @keyframes moveGlow {
  0% {
    top: 0%;
    left: 10%;
      }
  100% {
    top: 10%;
    left: 50%;
      }
    }
@media screen and (min-width: 1700px) {
  .glow-bg-four{
    max-width: 800px;
    max-height: 800px;
    }
}
@media screen and (max-width: 1100px) {
  .random-block-06-img {
    width: 200px;
  }
  .random-block-06-item {
    height: 350px;
  }
  .glow-bg-four {
    animation: moveGlowMobile 8s infinite alternate ease-in-out;
    width: 40vw;
    height: 40vw;
    }
  @keyframes moveGlowMobile {
    0% {
      top: 10%;
      left: 10%;
      }
    100% {
      top: 30%;
      left: 30%;
        }
      }
}

@media screen and (max-width: 800px) {
  .random-block-06-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .random-block-06 {
    padding: 7rem 1rem;
  }
  .glow-bg-four {
    animation: moveGlowMobile 8s infinite alternate ease-in-out;
    width: 90vw;
    height: 90vw;
      }

    @keyframes moveGlowMobile {
      0% {
        top: 20%;
        left: 5%;
        }
      100% {
        top: 80%;
        left: 5%;
        }
      }

      .random-block-06-more-button {
        height: 44px;
      }
}




