.quickPcbPage {
  background: #fff;
}

.quickPcb h2,
.quickPcb h3 {
  color: #2A2F36;
}

.textBlock h5,
.titleBlock h5 {
  font-weight: 700;
  font-size: 14px;
  color: #004D80;
  line-height: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.textBlock h2,
.titleBlock h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  /*text-transform: capitalize;*/
}

.center {
  text-align: center;
}

.pcbIntro {
  padding: 80px 0 76px;
}

.introPanel {
  min-height: 376px;
  background: #F4F7FB;
  border: 1px solid #E2E6EC;
  border-radius: 5px;
  padding: 58px 37px;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(360px, 505px);
  gap: 49px;
  align-items: center;
}

.introList {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

.introList li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  color: #3A4150;
  line-height: 24px;
}

.introList li:not(:last-child) {
  margin-bottom: 30px;
}

.introList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #004D80;
}

.introList li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.pcbIntro .imgBox {
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}

.pcbIntro .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcbCapabilities {
  padding: 76px 0 80px;
}

.capabilityGrid {
  max-width: 1130px;
  margin: 39px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 36px 30px;
  justify-content: center;
}

.capabilityGrid .item {
  min-height: 174px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 5px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 77, 128, .05);
  transition: all .3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.capabilityGrid .item:hover {
  border-color: #BCD8E8;
  box-shadow: 0 0 6.5px 0 rgba(0, 77, 128, .26);
  /*transform: translateY(-4px);*/
}

.capabilityGrid .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #EAF4FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capabilityGrid .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.capabilityGrid p {
  font-size: 14px;
  color: #2A2F36;
  line-height: 25px;
}

.technical {
  background: #F4F7FB;
  padding: 76px 0 84px;
}

.tableCard {
  max-width: 1130px;
  margin: 42px auto 0;
}

.tableCard + .tableCard {
  margin-top: 34px;
}

.tableCard h3 {
  font-weight: 700;
  font-size: 14px;
  color: #2A2F36;
  line-height: 18px;
  margin-bottom: 14px;
}

.tableScroll {
  width: 100%;
  overflow-x: auto;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 77, 128, .1);
}

.tableScroll table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.tableScroll th,
.tableScroll td {
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  padding: 14px 24px;
}

.tableScroll th {
  background: #004D80;
  font-weight: 700;
  color: #fff;
}

.tableScroll tbody tr:nth-child(even) {
  background: #EEF2F6;
}

.tableScroll tbody tr:nth-child(odd) {
  background: #fff;
}

.tableScroll td {
  color: #5C6470;
  border-bottom: 1px solid #E6EBF1;
  vertical-align: top;
}

.tableScroll tbody tr:last-child td {
  border-bottom: 0;
}

.tableScroll td:first-child,
.tableScroll th:first-child {
  width: 260px;
}

.leadTable th,
.leadTable td {
  width: 25%;
}

@media (max-width: 1024px) {
  .pcbIntro,
  .technical {
    padding: 64px 0;
  }

  .introPanel {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 42px 32px;
  }

  .pcbIntro .imgBox {
    height: 360px;
  }

  .capabilityGrid {
    max-width: 620px;
    grid-template-columns: repeat(2, minmax(0, 260px));
  }
}

@media (max-width: 768px) {
  .pcbIntro,
  .technical {
    padding: 52px 0;
  }

  .pcbCapabilities {
    padding: 0 0 52px;
  }

  .textBlock h2,
  .titleBlock h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .introPanel {
    padding: 34px 22px;
  }

  .introList li {
    font-size: 14px;
    line-height: 23px;
  }

  .introList li:not(:last-child) {
    margin-bottom: 20px;
  }

  .pcbIntro .imgBox {
    height: 280px;
  }

  .tableScroll th,
  .tableScroll td {
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .textBlock h2,
  .titleBlock h2 {
    font-size: 25px;
    line-height: 31px;
  }

  .introPanel {
    padding: 28px 18px;
  }

  .pcbIntro .imgBox {
    height: 220px;
  }

  .capabilityGrid {
    grid-template-columns: 1fr;
  }
}
