div.section-image.wheel {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  div.section-image.wheel {
    width: 100%;
  }
}

/** Animation Keyframes and Classes **/
@keyframes BackgroundFadeOut {
  from {
    background-color: rgb(202, 223, 234);
  }
  to {
    background-color: transparent;
  }
}
@keyframes BackgroundFadeIn {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgb(202, 223, 234);
  }
}
@keyframes FadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes FadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.BGFadeIn {
  animation-name: BackgroundFadeIn;
}

.BGFadeOut {
  animation-name: BackgroundFadeOut;
}

.FadeIn {
  animation-name: FadeIn;
}

.FadeOut {
  animation-name: FadeOut;
}

@keyframes MoveDown {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translateY(150%);
  }
}
.FadeOutAndMoveDown {
  opacity: 0;
  transform: translateY(150%);
}

/** Base properties that won't change based off media queries **/
div.clip-01 {
  clip-path: polygon(50% 50%, 13% 0, 85% 0);
}
div.clip-01.inner-ring {
  clip-path: polygon(50% 50%, 13% 0, 86% 0);
  transform: translate(-50%, -50%) rotate(0deg) !important;
}

div.clip-02 {
  clip-path: polygon(50% 50%, 86% 0, 100% 0, 100% 65%);
}
div.clip-02.inner-ring {
  clip-path: polygon(50% 50%, 14% 0, 86% 0);
  transform: translate(-50%, -50%) rotate(72deg) !important;
}

div.clip-03 {
  clip-path: polygon(50% 50%, 100% 65.5%, 100% 100%, 50% 100%);
}
div.clip-03.inner-ring {
  clip-path: polygon(50% 50%, 13% 0, 86% 0);
  transform: translate(-50%, -50%) rotate(144deg) !important;
}

div.clip-04 {
  clip-path: polygon(50% 50%, 0 66%, 0 100%, 49.5% 100%);
}
div.clip-04.inner-ring {
  clip-path: polygon(50% 50%, 15% 0, 86% 0);
  transform: translate(-50%, -50%) rotate(216deg) !important;
}

div.clip-05 {
  clip-path: polygon(50% 50%, 12% 0, 0 0, 0 65.5%);
}
div.clip-05.inner-ring {
  clip-path: polygon(50% 50%, 13% 0, 86% 0);
  transform: translate(-50%, -50%) rotate(288deg) !important;
}

#wheel-container h5, h6 {
  text-transform: uppercase;
  font-family: "Kurdis-CondensedBold", sans-serif;
  transition: font-size 0.5s ease;
}

/** Default settings (using mobile first) **/
#wheel-container {
  width: 65vw;
  height: 65vw;
  background-color: white;
  z-index: 100;
  background: radial-gradient(circle 45.5vw, rgba(192, 0, 130, 0.4) 0%, rgba(255, 255, 255, 0) 65%);
  transition: all 0.5s ease;
  font-size: 1.0833333333vw;
  font-family: "Kurdis-CondensedSemiBold", sans-serif;
  padding: 10%;
  position: relative;
  margin: auto;
}
#wheel-container div.inner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 21.3571428571vw;
  height: 21.3571428571vw;
  border-radius: 50%;
  border-color: rgb(192, 0, 4);
  border-width: 0.9285714286vw;
  border-style: solid;
  background: transparent;
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transition: all 0.25s ease;
  transform-origin: center;
  z-index: 100;
  transform: translate(-50%, -50%);
}
#wheel-container div.slices {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: circle(50% at 50% 50%);
}
#wheel-container div.slices div.slice {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(202, 223, 234);
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(34, 65, 83);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#wheel-container div.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18.5714285714vw;
  height: 18.5714285714vw;
  background-color: #c00004;
  border-radius: 50%;
  border-color: transparent;
  border-width: 0.9285714286vw;
  border-style: solid;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  font-size: 7.4285714286vw;
  z-index: 100;
}
#wheel-container div.inner-circle > div {
  position: absolute;
  pointer-events: none;
  text-align: center;
}
#wheel-container div.inner-circle h5 {
  font-size: 0.56em;
}
@supports (-webkit-touch-callout: none) {
  #wheel-container div.inner-circle h5 {
    font-size: 0.5em;
  }
}
#wheel-container div.inner-circle h5 {
  margin: 0;
  white-space: nowrap;
}
#wheel-container div.inner-circle h6 {
  font-size: 0.4em;
}
#wheel-container div.inner-circle div.FiveFive {
  transition: all 1s ease;
  animation-fill-mode: forwards;
}
#wheel-container div.inner-circle div.FiveFive h5 {
  font-size: 0.8em;
  text-transform: none;
  transform: translate(0, 1%);
}
#wheel-container div.inner-circle div:not(.FiveFive) {
  color: rgb(34, 65, 83);
  transition: all 0.5s ease;
}
#wheel-container div.inner-circle > div.stage-center {
  transform: translate(0, 0) !important;
  color: white;
  transition: all 0.5 ease;
}
#wheel-container div.inner-circle > div.stage-center h5 {
  font-size: 0.5em;
}
#wheel-container div.inner-circle > div.stage-center h6 {
  font-size: 0.3em;
}
#wheel-container div.inner-circle.stage-selected {
  background-color: rgb(34, 65, 83);
  white-space: wrap;
}
#wheel-container div.inner-circle div.Startup {
  transform: translate(0%, -225%);
}
@supports (-webkit-touch-callout: none) {
  #wheel-container div.inner-circle div.Startup {
    transform: translate(0%, -200%);
  }
}
#wheel-container div.inner-circle div.EarlyStage {
  transform: translate(104%, -68%);
}
@supports (-webkit-touch-callout: none) {
  #wheel-container div.inner-circle div.EarlyStage {
    transform: translate(100%, -68%);
  }
}
#wheel-container div.inner-circle div.MidStage {
  transform: translate(80%, 178%);
}
@supports (-webkit-touch-callout: none) {
  #wheel-container div.inner-circle div.MidStage {
    transform: translate(70%, 160%);
  }
}
#wheel-container div.inner-circle div.Mature {
  transform: translate(-100%, 178%);
}
@supports (-webkit-touch-callout: none) {
  #wheel-container div.inner-circle div.Mature {
    transform: translate(-90%, 160%);
  }
}
#wheel-container div.inner-circle div.AquiredMerged {
  transform: translate(-120%, -33%);
}
@supports (-webkit-touch-callout: none) {
  #wheel-container div.inner-circle div.AquiredMerged {
    transform: translate(-115%, -33%);
  }
}
#wheel-container div.contents {
  position: relative;
  top: -50%;
  left: -50%;
}
#wheel-container div.contents div.slice-content {
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
#wheel-container div.contents div.slice-content ol {
  color: rgb(34, 65, 83);
  list-style: none;
  counter-reset: li;
  font-size: 2.6em;
}
#wheel-container div.contents div.slice-content li::before {
  content: counter(li) ". ";
  counter-increment: li;
  color: rgb(192, 0, 4);
  display: inline-block;
  width: 1em;
}
#wheel-container div.contents div.slice-content.selected {
  display: block;
  opacity: 1;
}
#wheel-container div.contents div.slice-content.Startup {
  transform: translate(223%, -187%);
}
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 460px) {
    #wheel-container div.contents div.slice-content.Startup {
      transform: translate(215%, -170%);
    }
  }
}
#wheel-container div.contents div.slice-content.EarlyStage {
  transform: translate(260%, -89%);
}
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 460px) {
    #wheel-container div.contents div.slice-content.EarlyStage {
      transform: translate(255%, -89%);
    }
  }
}
#wheel-container div.contents div.slice-content.MidStage {
  transform: translate(188%, 78%);
}
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 460px) {
    #wheel-container div.contents div.slice-content.MidStage {
      transform: translate(180%, 68%);
    }
  }
}
#wheel-container div.contents div.slice-content.Mature {
  transform: translate(92%, 78%);
}
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 460px) {
    #wheel-container div.contents div.slice-content.Mature {
      transform: translate(85%, 68%);
    }
  }
}
#wheel-container div.contents div.slice-content.AquiredMerged {
  transform: translate(88%, -89%);
}
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 460px) {
    #wheel-container div.contents div.slice-content.AquiredMerged {
      transform: translate(80%, -89%);
    }
  }
}

@media screen and (min-width: 460px) {
  #wheel-container {
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle 45.5vw, rgba(192, 0, 130, 0.4) 0%, rgba(255, 255, 255, 0) 65%);
    font-size: 1.0833333333vw;
  }
  #wheel-container div.inner-ring {
    width: 21.3571428571vw;
    height: 21.3571428571vw;
    border-width: 0.9285714286vw;
  }
  #wheel-container div.inner-circle {
    width: 18.5714285714vw;
    height: 18.5714285714vw;
    border-width: 0.9285714286vw;
    font-size: 7.4285714286vw;
  }
}
@media screen and (min-width: 640px) {
  #wheel-container {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle 49vw, rgba(192, 0, 130, 0.4) 0%, rgba(255, 255, 255, 0) 65%);
    font-size: 1.1666666667vw;
  }
  #wheel-container div.inner-ring {
    width: 23vw;
    height: 23vw;
    border-width: 1vw;
  }
  #wheel-container div.inner-circle {
    width: 20vw;
    height: 20vw;
    border-width: 1vw;
    font-size: 8vw;
  }
}
@media screen and (min-width: 769px) {
  #wheel-container {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle 24.5vw, rgba(192, 0, 130, 0.4) 0%, rgba(255, 255, 255, 0) 65%);
    font-size: 0.5833333333vw;
  }
  #wheel-container div.inner-ring {
    width: 11.5vw;
    height: 11.5vw;
    border-width: 0.5vw;
  }
  #wheel-container div.inner-circle {
    width: 10vw;
    height: 10vw;
    border-width: 0.5vw;
    font-size: 4vw;
  }
}
@media screen and (min-width: 1024px) {
  #wheel-container {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle 24.5vw, rgba(192, 0, 130, 0.4) 0%, rgba(255, 255, 255, 0) 65%);
    font-size: 0.5833333333vw;
  }
  #wheel-container div.inner-ring {
    width: 11.5vw;
    height: 11.5vw;
    border-width: 0.5vw;
  }
  #wheel-container div.inner-circle {
    width: 10vw;
    height: 10vw;
    border-width: 0.5vw;
    font-size: 4vw;
  }
}
@media screen and (min-width: 1200px) {
  #wheel-container {
    width: min(38vw, 700px);
    height: min(38vw, 700px);
    background: radial-gradient(circle calc(min(38vw, 700px) * 0.7), rgba(192, 0, 130, 0.4) 0%, rgba(255, 255, 255, 0) 65%);
    font-size: calc(min(38vw, 700px) / 60);
  }
  #wheel-container div.inner-ring {
    width: calc(min(38vw, 700px) / 3.5 * 1.15);
    height: calc(min(38vw, 700px) / 3.5 * 1.15);
    border-width: calc(min(38vw, 700px) / 3.5 / 20);
  }
  #wheel-container div.inner-circle {
    width: calc(min(38vw, 700px) / 3.5);
    height: calc(min(38vw, 700px) / 3.5);
    border-width: calc(min(38vw, 700px) / 3.5 / 20);
    font-size: calc(min(38vw, 700px) / 3.5 / 2.5);
  }
}/*# sourceMappingURL=fivebyfive.css.map */