.image-text-07 {
  width: 100%;
  padding: 7rem 3rem;
  position: relative;
}

.image-text-07-container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
}
.image-text-07-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}
.image-text-07-img {
  width: 100%;
}
.image-text-07-headline h2 {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: clamp(24px, 2.5vw, 40px);
  color: #FFF;
  line-height: 140%;
}
.image-text-07-name {
  margin-top: 1.5rem;
}
.image-text-07-name h5 {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  color: #FFF;
  line-height: 150%;
}
.image-text-07-position p {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  color: #FFF;
  line-height: 150%;
}
.image-text-07-tel {
  margin-top: 1.5rem;
}
.image-text-07-tel a, .image-text-07-email a {
  color: #FFF;
  font-size: clamp(16px, 2.5vw, 18px);
  font-family: 'Poppins-Regula', Arial, sans-serif;
  line-height: 150%;
  text-decoration: none;
  position: relative;
}
.image-text-07-tel a::before, .image-text-07-email a::before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 0.0625em;
  background-color: #FFF;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}
.image-text-07-tel a:hover::before, .image-text-07-email a:hover::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
}
.image-text-07-button {
  margin-top: 3rem;
}
.image-text-07-button a {
  text-decoration: none;
  font-family: 'Poppins-Regula', Arial, sans-serif;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000000;
  background-color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 6px;
  transition: ease-in-out 0.1s;
}
.image-text-07-button a:hover {
  background-color: #ffffffe0;
}
.image-text-07-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glow-bg-two {
  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;
}
 @keyframes moveGlow {
  0% {
    top: 5%;
    left: 20%;
      }
  100% {
    top: 15%;
    left: 45%;
      }
    }
@media screen and (min-width: 1700px) {
  .glow-bg-two{
    max-width: 800px;
    max-height: 800px;
    }
}
@media screen and (max-width: 1100px) {
  .glow-bg-two {
    animation: moveGlowMobile 8s infinite alternate ease-in-out;
    width: 40vw;
    height: 40vw;
    }
  @keyframes moveGlowMobile {
    0% {
      top: 10%;
      left: 10%;
      }
    100% {
      top: 10%;
      left: 30%;
        }
      }
}
@media screen and (max-width: 800px) {
  .image-text-07 {
    padding: 5rem 1rem;
  }
  .image-text-07-container {
    flex-direction: column;
  }
  .image-text-07-item {
    padding: 1.5rem;
  }
  .glow-bg-two {
    animation: moveGlowMobile 8s infinite alternate ease-in-out;
    width: 80vw;
    height: 80vw;
      }

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








