.image-text-03 {
  width: 100%;
  padding: 4rem 3rem;
  position: relative;
}
.image-text-03-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}

.image-text-03-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-text-03-image {
  flex: 1;
  width: 100%;
  height: 100%;
}

.image-text-03-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.image-text-03-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  padding: 3rem;
}
.image-text-03-item-headline {
  border-bottom: 2px solid #069D84;
  margin-bottom: 1.5rem;
}
.image-text-03-item-headline h4 {
  font-family: 'Poppins-Bold', Arial, sans-serif;
  font-size: clamp(18px, 2.5vw, 20px);
  color: #FFF;
  line-height: 140%;
  letter-spacing: -0.2px;
  padding-bottom: 0.5rem;
}
.image-text-03-item-description p {
  font-family: 'Poppins-Regula', Arial, sans-serif;
  font-size: 16px;
  color: #FFF;
  line-height: 150%;
}
.image-text-03-button {
  margin-top: 3rem;
  width: 100%;
  text-align: center;
}
.glow-bg-one {
  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: 10%;
    left: 20%;
      }
  100% {
    top: 30%;
    left: 40%;
      }
    }
@media screen and (min-width: 1700px) {
  .glow-bg-one{
    max-width: 800px;
    max-height: 800px;
    }
}

@media screen and (max-width: 1500px) {
  .image-text-03-item {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .image-text-03-box {
    gap: 1rem;
  }
  .glow-bg-one {
    animation: moveGlowMobile 8s infinite alternate ease-in-out;
    width: 50vw;
    height: 50vw;
    }
  @keyframes moveGlowMobile {
    0% {
      top: 5%;
      left: 10%;
      }
    100% {
      top: 10%;
      left: 30%;
        }
      }
}
@media screen and (max-width: 800px) {
  .image-text-03-container {
    flex-direction: column;
    gap: 1rem;
  }
  .image-text-03 {
    padding: 5rem 1rem;
  }
  .glow-bg-one {
    animation: moveGlowMobile 8s infinite alternate ease-in-out;
    width: 80vw;
    height: 80vw;
      }

    @keyframes moveGlowMobile {
      0% {
        top: 40%;
        left: 10%;
        }
      100% {
        top: 60%;
        left: 5%;
        }
      }
}