.animatedSection {
  position: relative;
  width: 100%;
  height: 103px;
  color: var(--animated-text);
}

.blockContent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  border-radius: var(--animated-radius);
  animation: fade 5s infinite;
}

.infoBlock {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.animatedMail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.animatedImg {
  width: 63px;
  height: 63px;
  border-radius: 16px;
}

.animatedText {
  font-weight: 600;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: -0.03em;
}

.animatedDescr {
  font-weight: 600;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: -0.03em;
}

.animatedSpan {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.02em;
}

.b1 {
  background: var(--animated-bg-b1);
  animation-delay: 0s;
}
.b2 {
  background: var(--animated-bg-b2);
  animation-delay: 1s;
}
.b3 {
  background: var(--animated-bg-b3);
  animation-delay: 2s;
}
.b4 {
  background: var(--animated-bg-b4);
  animation-delay: 3s;
}
.b5 {
  background: var(--animated-bg-b5);
  animation-delay: 4s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .animatedSection {
    height: 66px;
  }
  .animatedImg {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 790px) {
  .animatedDescr {
    display: none;
  }
}
