.cta-sidebar__pic {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: -1;
}

.cta-sidebar__pic::before {
  animation: picDotsRotate 120s linear infinite;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 298.286 300.19'%3E%3Cg fill='none' stroke='%233e969f' stroke-width='5' stroke-dasharray='3 15'%3E%3Cellipse cx='149.143' cy='150.095' rx='149.143' ry='150.095' stroke='none'/%3E%3Cellipse cx='149.143' cy='150.095' rx='146.643' ry='147.595'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  bottom: 0;
  content: "";
  height: 300px;
  position: absolute;
  top: 110px;
  transform: translateY(-45%) rotate(0);
  width: 300px;
}

.cta-sidebar__pic img {
  border-radius: 50%;
  max-width: 280px;
}

.cta-block-pile {
  margin-top: -100px;
}

.cta-block {
  border-radius: 24px;
  color: #fff;
  padding: 45px;
  text-align: center;
}

.cta-block + .cta-block {
  margin-top: 30px;
}

.cta-block h2,
.cta-block h3,
.cta-block h4,
.cta-block h5 {
  margin: 0;
  margin-bottom: 15px;
}

.cta-block h3 {
  color: #fff;
  font-size: 35px;
}

@keyframes picDotsRotate {
  to {
    transform: translateY(-45%) rotate(1turn);
  }
}