.tech-ring-section {
  height: 100vh;
  background-color: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.ring-container {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
}

.center-computer:hover {
  cursor: pointer;
}

.center-computer {
  width: 150px;
  position: absolute;
  top: 50%;
  left: 57%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 2;
  cursor: default;
}

.icon-ring {
  position: absolute;
  width: 98%;
  height: 88%;
  transform: rotate(-12deg);
  -webkit-transform: rotate(-12deg);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.orbit-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 1s linear;
  -webkit-transition: -webkit-transform 1s linear;
}

/* ANIMACE */

@-webkit-keyframes spin-ring {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
  }
}

@keyframes spin-ring {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* RESPONSIVNÍ ÚPRAVA RING-CONTAINER */

@media (min-width: 1024px) and (max-width: 1599px) {
  .ring-container {
    transform: scale(1.6);
    -webkit-transform: scale(1.6);
  }

  .center-computer {
    width: 110px;
    left: 55%;
  }

  .orbit-icon {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ring-container {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    left: -88px;
  }

  .center-computer {
    width: 90px;
    left: 55%;
  }

  .orbit-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  .ring-container {
    transform: scale(2.3);
    -webkit-transform: scale(2.3);
    top: 60px;
  }

  .center-computer {
    width: 90px;
    left: 50%;
    top: 49%;
  }

  .orbit-icon {
    width: 24px;
    height: 24px;
  }

  .icon-ring {
    width: calc(100% - 28px);
  }
}
