.wheel-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 55vh;
  width: 98vw;
  margin-left: -9vw;
}

.wheel-direction-1 {
  flex-direction: row-reverse;
}

.wheel-container .wheel {
  position: relative;
  width: 40vw;
  height: 100%;
}

.wheel-container .wheel .skill-container img {
  width: 100%;
  height: 100%;
}

.wheel-container .wheel .skill-container {
  position: absolute;
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  overflow: hidden;
  cursor: pointer;
  transition: 300ms;
}

.wheel-container .wheel-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50vw;
}

.wheel-container .wheel-content .title {
  font-size: 35px;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .wheel-container {
    flex-direction: column;
    height: auto;
    margin: 0;
    width: 90vw;
  }

  .wheel-container .wheel {
    height: 400px !important;
  }

  .wheel-container .wheel-content {
    text-align: center;
  }
}
