.modular {
  padding: 110px 0;
  background: #f2f2f2;
}
.modular-inner {
  width: calc(100% - 60px);
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}
.modular-copy {
  flex: 1;
}
.modular-copy p {
  font-size: 18px;
  color: #5e5752;
  max-width: 600px;
}
.modular-copy a {
  display: inline-flex;
  margin-top: 20px;
  background: #99151c;
  color: #fff;
  padding: 14px 20px;
  font-weight: 500;
  font-size: 14px;
}
.modular-visual {
  flex: 0 0 470px;
  height: 470px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit {
  position: absolute;
  border: 1px solid #c9bcb1;
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.orbit-one {
  width: 410px;
  height: 410px;
}
.orbit-two {
  width: 300px;
  height: 300px;
  animation-direction: reverse;
  animation-duration: 13s;
}
.modular-center {
  width: 180px;
  height: 180px;
  background: #951219;
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(110, 8, 14, 0.22);
}
.modular-center small {
  font-size: 10px;
  letter-spacing: 2px;
}
.modular-center strong {
  font-family: "PT Serif", Georgia, serif;
  font-size: 27px;
  line-height: 1;
}
.modular-center span {
  font-size: 14px;
}
.modular-tag {
  position: absolute;
  background: white;
  padding: 11px 15px;
  box-shadow: 0 8px 25px rgba(40, 20, 10, 0.1);
  font-size: 13px;
  font-weight: 500;
}
.tag-a {
  top: 38px;
}
.tag-b {
  right: -3px;
}
.tag-c {
  bottom: 38px;
}
.tag-d {
  left: 5px;
}
.pace-bar {
  width: calc(100% - 60px);
  max-width: 1240px;
  margin: 65px auto 0;
  border-top: 1px solid #d8cdc4;
  padding-top: 35px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.pace-bar > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}
.pace-bar strong {
  font-family: "PT Serif", Georgia, serif;
  font-size: 52px;
  color: #94131a;
}
.pace-bar span,
.pace-bar p {
  font-size: 16px;
  line-height: 19px;
  color: #635d58;
}
.pace-line {
  display: flex;
  flex: 1;
  gap: 5px;
}
.pace-line i {
  height: 8px;
  flex: 1;
  background: #9b151c;
  border-radius: 9px;
  animation: pulsebar 2.5s ease-in-out infinite;
}
.pace-line i:nth-child(2) {
  animation-delay: 0.12s;
}
.pace-line i:nth-child(3) {
  animation-delay: 0.24s;
}
.pace-line i:nth-child(4) {
  animation-delay: 0.36s;
}
.pace-line i:nth-child(5) {
  animation-delay: 0.48s;
}
.pace-bar p {
  max-width: 310px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulsebar {
  50% {
    opacity: 0.35;
    transform: scaleY(0.65);
  }
}

@media (max-width: 900px) {
  .modular-inner {
    flex-direction: column;
  }
  .modular-visual {
    flex-basis: auto;
    width: 390px;
    height: 390px;
  }
  .orbit-one {
    width: 350px;
    height: 350px;
  }
  .orbit-two {
    width: 260px;
    height: 260px;
  }
  .pace-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .pace-line {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .modular {
    padding: 75px 0;
  }
  .modular-inner,
  .pace-bar {
    width: calc(100% - 36px);
  }
  .modular-visual {
    width: 310px;
    height: 310px;
  }
  .orbit-one {
    width: 290px;
    height: 290px;
  }
  .orbit-two {
    width: 220px;
    height: 220px;
  }
}
