.subCentainner > .subSection1 {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 100px 0;
}

.subCentainner > .subSection1 > .textBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.subCentainner > .subSection1 > .textBox > div {
  width: 25px;
  height: 1px;
  border-bottom: 2px solid;
  border-image: linear-gradient(
    to bottom right,
    var(--main-color3),
    var(--main-color)
  );
  border-image-slice: 1;
}

.subCentainner > .subSection1 > .contentBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.subCentainner > .subSection1 > .contentBox > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.subCentainner > .subSection1 > .contentBox > div:nth-child(even) {
  background-color: #fbfbfb;
}

.subCentainner > .subSection1 > .contentBox > div:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
}

.subCentainner > .subSection1 > .contentBox > div > div:nth-child(1) {
  padding: 0 100px;
}

.subCentainner > .subSection1 > .contentBox > div > div:nth-child(1) > h3 {
  color: var(--main-color);
}

.subCentainner > .subSection1 > .contentBox > div > div:nth-child(2) {
  position: relative;
}

.subCentainner > .subSection1 > .contentBox > div > div:nth-child(2)::before {
  content: "";
  display: flex;
  height: 120px;
  border-left: 1px solid #dbdbdb;
}

.subCentainner > .subSection1 > .contentBox > div > div:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background-color: var(--main-color);
  border: 5px solid rgba(63, 81, 181, 0.4);
  border-radius: 50%;
  background-clip: padding-box;
}

.subCentainner > .subSection1 > .contentBox > div > div:nth-child(3) {
  padding-left: 100px;
  text-align: left;
  flex: 1;
}

.subCentainner > .subSection2 {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 100px 0;
}

.subCentainner > .subSection2 > .textBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.subCentainner > .subSection2 > .textBox > div {
  width: 25px;
  height: 1px;
  border-bottom: 2px solid;
  border-image: linear-gradient(
    to bottom right,
    var(--main-color3),
    var(--main-color)
  );
  border-image-slice: 1;
}

.subCentainner > .subSection2 > .cardBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
  overflow: hidden;
}

.subCentainner > .subSection2 > .cardBox > .card {
  display: flex;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--main-color);
  text-align: left;
}

.subCentainner > .subSection2 > .cardBox > .card:nth-child(2) {
  background-color: var(--main-color3);
}
.subCentainner > .subSection2 > .cardBox > .card:nth-child(3) {
  background-color: var(--main-color3);
}

.subCentainner > .subSection2 > .cardBox > .card > .imgBox {
  align-content: center;
  margin-right: 30px;
}

.subCentainner > .subSection2 > .cardBox > .card > .imgBox > img {
  width: 100px;
}

.subCentainner > .subSection2 > .cardBox > .card > .textBox {
  flex: 1;
  color: #fff;
}

.subCentainner > .subSection2 > .cardBox > .card > .textBox > h5 {
  font-weight: bold;
  line-height: 35px;
  margin-bottom: 10px;
}

.pc_br {
  display: none;
}
@media screen and (max-width: 1025px) {
  .subCentainner > .subSection1 {
    width: 90%;
  }
  .subCentainner > .subSection2 {
    width: 90%;
  }

  .subCentainner > .subSection2 > .cardBox > .card > .imgBox > img {
    width: 80px;
  }

  .subCentainner > .subSection2 > .cardBox > .card {
    padding: 20px;
  }

  .subCentainner > .subSection2 > .cardBox > .card > .imgBox {
    margin-right: 20px;
  }
}

@media screen and (max-width: 821px) {
  .subCentainner > .subSection2 > .cardBox {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media screen and (max-width: 640px) {
  .subCentainner > .subSection1 {
    padding: 50px 0;
  }

  .subCentainner > .subSection1 > .contentBox > div > div:nth-child(1) {
    padding: 0 30px;
  }

  .subCentainner > .subSection1 > .contentBox > div > div:nth-child(3) {
    padding-left: 30px;
  }

  .subCentainner > .subSection2 {
    padding: 50px 0;
  }

  .subCentainner > .subSection2 > .cardBox > .card > .imgBox > img {
    width: 65px;
  }

  .subCentainner > .subSection2 > .cardBox > .card > .textBox > h5 {
    line-height: 25px;
  }
}
