.semicircle-infographic {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  transform: scale(1.5);
  padding-left: 7.7vw;
}
.semicircle-infographic .center-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5vw;
  min-height: 10.5vw;
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: -18.3vw;
  z-index: 1;
  margin-bottom: -15vw;
}
.semicircle-infographic .center-circle .content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 7.5vw;
  height: 7.5vw;
  border-radius: 50%;
  padding: 0.5vw;
}
.semicircle-infographic .center-circle .content h2 {
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 2rem;
  color: #C70039;
}
.semicircle-infographic .center-circle .content p {
  margin: 0px;
  font-weight: bold;
}

.semi-circle-container {
  min-width: 25.91vw;
  height: 15.1vw;
  padding: 2.15vw 0px;
  overflow: hidden;
  position: relative;
}
.semi-circle-container .semi-circle {
  width: 25.91vw;
  height: 25.91vw;
  border-radius: 50%;
  margin-left: 0;
  position: relative;
  overflow: hidden;
}
.semi-circle-container .circle-section {
  position: absolute;
  width: 25.91vw;
  height: 25.91vw;
  /*! box-shadow: -15px 0 0px 0px rgb(255, 255, 255); */
}
.semi-circle-container .circle-section:nth-child(1) {
  background-color: #d3d800;
  left: 12.95vw;
  transform: rotate(0deg) translate(-50%, -50%);
}
.semi-circle-container .circle-section:nth-child(2) {
  background-color: #00674e;  
  transform: rotate(-45deg) translate(50%, -50%);
  box-shadow: -0.5vw 0 0 0 #fff;
  border: 0.5vw solid #fff;
}
.semi-circle-container .circle-section:nth-child(3) {
  background-color: #00a696;
  transform: rotate(0deg) translate(50%, -50%);
  border: 0.5vw solid #fff;
  box-shadow: -0.5vw 0px 0 0 #fff;
}
.semi-circle-container .circle-section:nth-child(4) {
  background-color: #003348;
  transform: rotate(45deg) translate(50%, -50%);
  border: 0.5vw solid #fff;
  box-shadow: -0.5vw 0 0 0 #fff;
}

/** -- INNER CIRCLE CONTAINER -- START -- **/

.semi-circle-container .inner-circle-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
}
.semi-circle-container .inner-circle-container .inner-circle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4vw;
  height: 4vw;
  /*! background: #ffffff; */
  border-radius: 49%;
  /*! border: 5px solid; */
  font-weight: bold;
  font-size: 3rem;
  /*! box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); */
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.semi-circle-container .inner-circle-container .inner-circle:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.semi-circle-container .inner-circle-container .inner-circle:nth-of-type(1) {
  left: 16%;
  top: 79%;  
  z-index: 10;
}
.semi-circle-container .inner-circle-container .inner-circle:nth-of-type(2) {
  left: 35%;
  top: 41%;  
  z-index: 10;
}
.semi-circle-container .inner-circle-container .inner-circle:nth-of-type(3) {
  left: 64%;
  top: 41%;  
  z-index: 10;
}
.semi-circle-container .inner-circle-container .inner-circle:nth-of-type(4) {
  left: 84%;
  top: 79%;  
  z-index: 10;
}

/** -- INNER CIRCLE CONTAINER -- END -- **/

/** -- OUTER CIRCLE CONTAINER -- START -- **/

.outer-circle-container {
  position: absolute;
  top: 0;
  left: 0; 
  z-index: 0;
  width: 100%;
  height: 100%;
}

.outer-circle {
  position: relative;
  width: max-content;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.outer-circle-section {
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: max-content;
}

.outer-circle-section:nth-child(1) {
  top: 8vw;
  left: -28vw;
}

.outer-circle-section:nth-child(2) {
  top: -3vw;
  left: -21vw;
}

.outer-circle-section:nth-child(3) {
  top: -3vw;
  left: 2vw;
}

.outer-circle-section:nth-child(4) {
  top: 8vw;
  left: 14vw;
}

.outer-circle-container h6.outer-circle-title {
  font-size: 1.8vw;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}

.outer-circle-container p.outer-circle-text {
  font-size: 0.8vw;
  margin-bottom: 0;
}

.outer-circle-container a.outer-circle-download {
  margin-top: 0.3vw;
  font-size: 0.9vw;
  font-weight: 700;
  text-transform: uppercase;
}

/** -- OUTER CIRCLE CONTAINER -- END -- **/

@media (max-width: 767px) {
  .semicircle-infographic {
    transform: scale(6.5);
  }
}
@media (max-width: 480px) {
  .semicircle-infographic {
    transform: scale(1.0);
  }
  .semicircle-infographic .center-circle {
    transform: translateY(17.5vw) scale(3.4);
  }
  .semi-circle-container {
    transform: scale(3.4);
  }

  /** -- OUTER CIRCLE CONTAINER -- START -- **/
  .outer-circle-container {
    display: none;
  }
  /** -- OUTER CIRCLE CONTAINER -- END -- **/
}