.section-content {
  overflow: hidden;
}
.about-content-wrap h2 {
  margin-top: 0;
}

.image-about {
  position: relative;
}

.image-about img {
  border-radius: 16px;
  width: 100%;
  height: 519px;
  object-fit: cover;
}

.circle-section {
  position: absolute;
  bottom: 0;
  right: -5%;
  left: unset;
  transform: unset;
}

.hologram-container {
  position: relative;
  padding: 5px;
  width: 123px;
  height: 123px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(112, 111, 110, 0.2) 50%,
    rgba(255, 255, 255, 0.63) 100%
  );
  border-radius: 50%;
  border: 1px solid var(--color3);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(32px);
}

.hologram-container i,
.hologram-container .rotating-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hologram-container i {
  font-size: 50px;
  color: var(--color3);
  z-index: 2;
}

.hologram-container .rotating-text {
  width: 104px;
  height: 104px;
  z-index: 1;
  animation: spin 20s linear infinite;
}

.mobile-title {
  text-align: center;
  white-space-collapse: collapse;
  width: 100%;
}

.btns-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
}

@media (max-width: 991px) {
  .image-about img {
    margin-bottom: 1rem;
    height: 100%;
  }

  .circle-section {
    position: absolute;
    bottom: -1%;
    right: auto;
    transform: translateX(-50%);
    left: 50%;
  }

  .hologram-container {
    width: 72px;
    height: 72px;
  }

  .hologram-container .rotating-text {
    width: 62px;
    height: 62px;
  }

  .hologram-container i {
    font-size: 30px;
  }

  .btns-wrapper {
    justify-content: center;
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
