.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.title {
  position: relative;
  z-index: 9;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 33px;
  text-align: center;
  color: #000;
  width: 100%;
  padding-bottom: 10px;
  margin-top: 25px;
}

.icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 6px solid #004225;
  animation: dot_rotate 2s linear infinite;

  .dot {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 15px;
    left: 15px;
    border-radius: 50%;
    background: #fff;
  }
}

@keyframes dot_rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 500px) {
  .title {
    font-size: 24px;
  }
}
