.word-video {
  padding: 48px;
  padding-bottom: 330px;
}

.word-video__wrapper {
  background-size: cover;
  display: flex;
  height: 738px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  position: relative;
}


@keyframes pulse-grow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.video-btn {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-btn::before {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-grow 2s ease-out infinite;
}

.video-btn::after {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-grow 2s ease-out infinite;
  animation-delay: 3s;
}

.video-btn:hover {
  transform: scale(1.05);
}

.video-btn svg {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.video-btn:hover svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.word-video__items {
  margin: auto;
  width: 60%;
    margin-top: -150px;
}
.word-video__item {
  background-color: var(--selenite);
  text-align: center;
  padding: 24px;
  border-radius: 16px;
}

.word-video__item img {
    height: 80px;
    margin-top: 30px;
    margin-bottom: 12px;
    margin-inline: auto;
}

.word-video__item .word-video__item__name {
  color: var(--malachite, #31372a);
  font-family: var(--main-font);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.word-video__item__role {
  color: var(--malachite, #31372a);
  font-family: "Season Mix";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.word-video__item .word-video__item__text {
  color: var(--malachite, #31372a);
  margin-bottom: 60px;
  font-family: var(--main-font);
}
.video_mobile {
        display: none;
}
.word-video__text {
    gap: 10%;
}
@media(max-width: 1400px) {
    .word-video__item .word-video__item__text {
        margin-bottom: 40px;
          font-size: 16px;
    }
}

@media (max-width: 1195px) {
    .word-video__items {
        width: 70%;
    }
}
@media (max-width: 1024px) {
    .word-video__items {
        display: none;
    }

}


@media (max-width: 992px) {
    .word-video {
        padding: 32px 20px;
    }
    .word-video__wrapper {
        display: none;
    }
    .video-mobile {
        display: block;
        margin: auto;
    }
}

