.circle {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 0 0;
  background-color: #fff;
  overflow: hidden;
  font-family: Verdana, sans-serif;
}
.circle .circle-container {
  position: relative;
  width: 100%;
  height: 300px;
  padding-bottom: 50px;
  overflow: hidden;
}
.circle .circle-container .wrapper {
  background-color: #fff;
  border-radius: 50%;
  width: 1200px;
  height: 1200px;
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  border: 3px dotted #FFB81C;
}
.circle .circle-container .item {
  width: 80px;
  height: 80px;
  color: white;
  border-radius: 100%;
  background-color: #e6e6e6;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.circle .circle-container .item .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f3f3f3;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
.circle .circle-container .item .inner img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: grayscale(1);
}
.circle .circle-container .item .caption {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 50px;
  width: 360px;
  text-align: center;
  visibility: hidden;
  transition: 0.5s;
  opacity: 0;
}
.circle .circle-container .item .caption .title {
  color: #FFB81C;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 26px;
}
.circle .circle-container .item .caption p {
  color: #53565A;
  font-size: 14px;
  margin: 0;
  line-height: 22px;
}
.circle .circle-container .item.active {
  background-color: #FFB81C;
  position: relative;
  z-index: 2;
}
.circle .circle-container .item.active .inner {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translate(-50%, -50%) scale(2);
}
.circle .circle-container .item.active .inner img {
  filter: grayscale(0);
}
.circle .circle-container .item.active .caption {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.5s;
}
.circle .circle-container svg {
  overflow: visible;
  width: 1200px;
  height: 1200px;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle .circle-container svg .st0 {
  fill: none;
  stroke: transparent;
  stroke-width: 2;
  stroke-miterlimit: 1;
}
.circle .object {
  width: 500px;
  height: 200px;
  background-color: transparent;
  position: absolute;
  overflow: hidden;
}
.circle .object:after {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  border: 3px dotted #FFB81C;
  animation: 5s rotate linear infinite forwards;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.circle .object.top {
  right: 0;
  top: -10%;
}
.circle .object.top:after {
  right: 0;
  bottom: 0;
}
.circle .object.bottom {
  left: -10%;
  bottom: 0;
}
.circle .object.bottom:after {
  left: 0;
  bottom: 0;
}
.circle .navigation {
  position: absolute;
  bottom: 0;
  right: 0;
}
.circle .navigation button {
  padding: 10px;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .circle {
    max-width: 1000px;
  }
  .circle .circle-container {
    height: 280px;
    padding-bottom: 50px;
  }
  .circle .circle-container .wrapper {
    width: 1000px;
    height: 1000px;
    bottom: 180px;
  }
  .circle .circle-container .item {
    width: 60px;
    height: 60px;
  }
  .circle .circle-container svg {
    width: 1000px;
    height: 1000px;
  }
  .circle .object {
    width: 300px;
    height: 150px;
  }
  .circle .object:after {
    width: 1000px;
    height: 1000px;
    animation: 30s rotate linear infinite forwards;
  }
  .circle .object.top {
    right: -10%;
  }
  .circle .object.bottom {
    left: -10%;
    bottom: 0;
  }
}
@media (max-width: 992px) {
  .circle {
    max-width: 800px;
    padding: 100px 0 0;
  }
  .circle .circle-container {
    height: 240px;
    padding-bottom: 0;
  }
  .circle .circle-container .wrapper {
    width: 800px;
    height: 800px;
    bottom: 180px;
  }
  .circle .circle-container .item {
    width: 60px;
    height: 60px;
  }
  .circle .circle-container svg {
    width: 800px;
    height: 800px;
  }
  .circle .object {
    width: 280px;
    height: 100px;
  }
  .circle .object:after {
    width: 800px;
    height: 800px;
    animation: 30s rotate linear infinite forwards;
  }
  .circle .object.top {
    top: 0;
    right: 0;
  }
  .circle .object.bottom {
    left: -100px;
    bottom: 20%;
  }
}
@media (max-width: 576px) {
  .circle {
    padding: 60px 0 0;
  }
  .circle .circle-container {
    height: 300px;
    padding-bottom: 0;
  }
  .circle .circle-container .wrapper {
    bottom: 218px;
  }
  .circle .object {
    display: none;
  }
  .circle .navigation {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 0);
  }
}

/*# sourceMappingURL=style.css.map */
