.diagram {
  background-color: #F1F1F1;
}
.diagram .breadcrumb {
  background-color: #F1F1F1;
  opacity: 0.5;
  margin-top: 30px;
}
.diagram .title {
  margin-top: 30px;
  margin-bottom: 50px;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}
.diagram .diagram-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 90%;
  margin: auto;
  row-gap: 25px;
}
.diagram .diagram-grid .diagram-box {
  height: 78px;
  width: 225px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 20px;
  border-style: solid;
  border-width: 3px;
}
.diagram .diagram-grid .diagram-box .sub-text {
  font-weight: normal;
}
.diagram .diagram-grid .h-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.diagram .diagram-grid .h-line hr {
  border-top: 2px solid #00C0FF;
  width: 100%;
}
.diagram .diagram-grid .v-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.diagram .diagram-grid .v-line hr {
  margin: 0;
  width: 1px;
  height: 100%;
  display: inline-block;
  border-left: 2px solid #00C0FF;
  color: #00C0FF;
}
.diagram .diagram-grid .box1 {
  grid-area: 1/3/1/5;
  background-color: #D2FFFB;
  border-color: #37B4AA;
  color: #37B4AA;
}
.diagram .diagram-grid .box2 {
  grid-area: 1/5/1/7;
  background-color: #E5F8FF;
  border-color: #00C0FF;
  color: #00C0FF;
}
.diagram .diagram-grid .box3 {
  grid-area: 2/5/2/7;
  background-color: #E5F8FF;
  border-color: #00C0FF;
  color: #00C0FF;
}
.diagram .diagram-grid .box4 {
  grid-area: 3/3/3/5;
  background-color: #00C0FF;
  border-color: #00C0FF;
  color: white;
  box-shadow: 0 0 50px rgba(0, 192, 255, 0.4392156863);
}
.diagram .diagram-grid .box5 {
  grid-area: 3/5/3/7;
  background-color: #00C0FF;
  border-color: #00C0FF;
  color: white;
  box-shadow: 0 0 50px rgba(0, 192, 255, 0.4392156863);
}
.diagram .diagram-grid .box6 {
  grid-area: 3/7/3/9;
  background-color: #00C0FF;
  border-color: #00C0FF;
  color: white;
  box-shadow: 0 0 50px rgba(0, 192, 255, 0.4392156863);
}
.diagram .diagram-grid .box7 {
  grid-area: 4/1/4/3;
  background-color: #D2FFFB;
  border-color: #37B4AA;
  color: #37B4AA;
}
.diagram .diagram-grid .box8 {
  grid-area: 4/3/4/5;
  background-color: #E5F8FF;
  border-color: #00C0FF;
  color: #00C0FF;
}
.diagram .diagram-grid .box9 {
  grid-area: 4/6/4/8;
  background-color: #E5F8FF;
  border-color: #00C0FF;
  color: #00C0FF;
}
.diagram .diagram-grid .box10 {
  grid-area: 4/8/4/10;
  background-color: #E5F8FF;
  border-color: #00C0FF;
  color: #00C0FF;
}
.diagram .diagram-grid .box11 {
  grid-area: 5/2/5/4;
  background-color: #E5F8FF;
  border-color: #00C0FF;
  color: #00C0FF;
}
.diagram .diagram-grid .box12 {
  grid-area: 5/4/5/6;
  background-color: #E5F8FF;
  border-color: #00C0FF;
  color: #00C0FF;
}
.diagram .diagram-grid .h-line1 {
  grid-area: 1/4/1/6;
}
.diagram .diagram-grid .h-line2 {
  grid-area: 3/4/3/6;
}
.diagram .diagram-grid .h-line3 {
  grid-area: 3/6/3/8;
}
.diagram .diagram-grid .h-line4 {
  grid-area: 4/2/4/4;
}
.diagram .diagram-grid .v-line1 {
  width: 225px;
  grid-area: 1/5/3/7;
}
.diagram .diagram-grid .v-line2 {
  width: 225px;
  grid-area: 2/5/4/7;
}
.diagram .diagram-grid .v-line3 {
  width: 225px;
  grid-area: 3/3/5/5;
}
.diagram .diagram-grid .v-line4 {
  grid-area: 3/7/5/7;
}
.diagram .diagram-grid .v-line4 hr {
  margin-right: 35px;
}
.diagram .diagram-grid .v-line5 {
  grid-area: 3/8/5/8;
}
.diagram .diagram-grid .v-line5 hr {
  margin-right: 35px;
}
.diagram .diagram-grid .v-line6 {
  grid-area: 4/3/6/3;
}
.diagram .diagram-grid .v-line6 hr {
  margin-right: 35px;
}
.diagram .diagram-grid .v-line7 {
  grid-area: 4/4/6/4;
}
.diagram .diagram-grid .v-line7 hr {
  margin-right: 35px;
}
@media (max-width: 1366px) {
  .diagram .diagram-grid {
    width: 90%;
    row-gap: 25px;
  }
  .diagram .diagram-grid .diagram-box {
    height: 98px;
    width: 205px;
  }
  .diagram .diagram-grid .v-line1 {
    width: 205px;
    grid-area: 1/5/3/7;
  }
  .diagram .diagram-grid .v-line2 {
    width: 205px;
    grid-area: 2/5/4/7;
  }
  .diagram .diagram-grid .v-line3 {
    width: 205px;
    grid-area: 3/3/5/5;
  }
}
@media (max-width: 1200px) {
  .diagram .diagram-grid {
    width: 90%;
    row-gap: 25px;
  }
  .diagram .diagram-grid .diagram-box {
    height: 108px;
    width: 155px;
  }
  .diagram .diagram-grid .v-line1 {
    width: 155px;
    grid-area: 1/5/3/7;
  }
  .diagram .diagram-grid .v-line2 {
    width: 155px;
    grid-area: 2/5/4/7;
  }
  .diagram .diagram-grid .v-line3 {
    width: 155px;
    grid-area: 3/3/5/5;
  }
}
@media (max-width: 992px) {
  .diagram .diagram-grid {
    width: 90%;
    row-gap: 25px;
  }
  .diagram .diagram-grid .diagram-box {
    height: 98px;
    width: 125px;
    font-size: 12px;
  }
  .diagram .diagram-grid .v-line1 {
    width: 125px;
    grid-area: 1/5/3/7;
  }
  .diagram .diagram-grid .v-line2 {
    width: 125px;
    grid-area: 2/5/4/7;
  }
  .diagram .diagram-grid .v-line3 {
    width: 125px;
    grid-area: 3/3/5/5;
  }
  .diagram .diagram-grid .box7 {
    font-size: 10px;
  }
}
@media (max-width: 700px) {
  .diagram .diagram-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 90%;
    margin: auto;
    row-gap: 25px;
  }
  .diagram .diagram-grid .diagram-box {
    height: 78px;
    width: 225px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    border-style: solid;
    border-width: 3px;
  }
  .diagram .diagram-grid .diagram-box .sub-text {
    font-weight: normal;
  }
  .diagram .diagram-grid .h-line {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .diagram .diagram-grid .h-line hr {
    border-top: 2px solid #00C0FF;
    width: 100%;
  }
  .diagram .diagram-grid .v-line {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .diagram .diagram-grid .v-line hr {
    margin: 0;
    width: 1px;
    height: 100%;
    display: inline-block;
    border-left: 2px solid #00C0FF;
    color: #00C0FF;
  }
  .diagram .diagram-grid .box1 {
    grid-area: 1/3/1/5;
    background-color: #D2FFFB;
    border-color: #37B4AA;
    color: #37B4AA;
  }
  .diagram .diagram-grid .box2 {
    grid-area: 1/5/1/7;
    background-color: #E5F8FF;
    border-color: #00C0FF;
    color: #00C0FF;
  }
  .diagram .diagram-grid .box3 {
    grid-area: 2/5/2/7;
    background-color: #E5F8FF;
    border-color: #00C0FF;
    color: #00C0FF;
  }
  .diagram .diagram-grid .box4 {
    grid-area: 3/3/3/5;
    background-color: #00C0FF;
    border-color: #00C0FF;
    color: white;
    box-shadow: 0 0 50px rgba(0, 192, 255, 0.4392156863);
  }
  .diagram .diagram-grid .box5 {
    grid-area: 3/5/3/7;
    background-color: #00C0FF;
    border-color: #00C0FF;
    color: white;
    box-shadow: 0 0 50px rgba(0, 192, 255, 0.4392156863);
  }
  .diagram .diagram-grid .box6 {
    grid-area: 3/7/3/9;
    background-color: #00C0FF;
    border-color: #00C0FF;
    color: white;
    box-shadow: 0 0 50px rgba(0, 192, 255, 0.4392156863);
  }
  .diagram .diagram-grid .box7 {
    grid-area: 4/1/4/3;
    background-color: #D2FFFB;
    border-color: #37B4AA;
    color: #37B4AA;
  }
  .diagram .diagram-grid .box8 {
    grid-area: 4/3/4/5;
    background-color: #E5F8FF;
    border-color: #00C0FF;
    color: #00C0FF;
  }
  .diagram .diagram-grid .box9 {
    grid-area: 4/6/4/8;
    background-color: #E5F8FF;
    border-color: #00C0FF;
    color: #00C0FF;
  }
  .diagram .diagram-grid .box10 {
    grid-area: 4/8/4/10;
    background-color: #E5F8FF;
    border-color: #00C0FF;
    color: #00C0FF;
  }
  .diagram .diagram-grid .box11 {
    grid-area: 5/2/5/4;
    background-color: #E5F8FF;
    border-color: #00C0FF;
    color: #00C0FF;
  }
  .diagram .diagram-grid .box12 {
    grid-area: 5/4/5/6;
    background-color: #E5F8FF;
    border-color: #00C0FF;
    color: #00C0FF;
  }
  .diagram .diagram-grid .h-line1 {
    grid-area: 1/4/1/6;
  }
  .diagram .diagram-grid .h-line2 {
    grid-area: 3/4/3/6;
  }
  .diagram .diagram-grid .h-line3 {
    grid-area: 3/6/3/8;
  }
  .diagram .diagram-grid .h-line4 {
    grid-area: 4/2/4/4;
  }
  .diagram .diagram-grid .v-line1 {
    width: 225px;
    grid-area: 1/5/3/7;
  }
  .diagram .diagram-grid .v-line2 {
    width: 225px;
    grid-area: 2/5/4/7;
  }
  .diagram .diagram-grid .v-line3 {
    width: 225px;
    grid-area: 3/3/5/5;
  }
  .diagram .diagram-grid .v-line4 {
    grid-area: 3/7/5/7;
  }
  .diagram .diagram-grid .v-line4 hr {
    margin-right: 35px;
  }
  .diagram .diagram-grid .v-line5 {
    grid-area: 3/8/5/8;
  }
  .diagram .diagram-grid .v-line5 hr {
    margin-right: 35px;
  }
  .diagram .diagram-grid .v-line6 {
    grid-area: 4/3/6/3;
  }
  .diagram .diagram-grid .v-line6 hr {
    margin-right: 35px;
  }
  .diagram .diagram-grid .v-line7 {
    grid-area: 4/4/6/4;
  }
  .diagram .diagram-grid .v-line7 hr {
    margin-right: 35px;
  }
}

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