.manufacturingPage {
  background: #fff;
}

.manufacturing h2,
.manufacturing 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;*/
}

.textBlock p,
.titleBlock p {
  font-size: 16px;
  color: #3A4150;
  line-height: 27px;
}

.textBlock p:not(:last-child) {
  margin-bottom: 9px;
}

.capIntro {
  padding: 80px 0 70px;
}

.capIntro .main {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(360px, 520px);
  gap: 90px;
  align-items: start;
}

.capIntro .textBlock p:first-of-type {
  margin-top: 28px;
}

.capIntro .imgBox,
.supporting .imgBox {
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
}

.capIntro .imgBox img,
.supporting .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capNote {
  background: #F4F7FB;
  padding: 28px 0;
}

.capNote .main {
  border-left: 3px solid #0086EC;
  padding-left: 26px;
}

.capNote p {
  font-size: 16px;
  color: #3A4150;
  line-height: 27px;
}

.capNote strong,
.standardNote strong {
  font-weight: 700;
  color: inherit;
}

.designReview {
  padding: 80px 0 70px;
}

.reviewList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.reviewList .item {
  min-height: 142px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 3px;
  padding: 26px;
  transition: all .3s ease-in-out;
}

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

.reviewList .icon {
  width: 54px;
  height: 54px;
  background: #EAF4FA;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #004D80;
  line-height: 25px;
  margin-bottom: 12px;
}

.reviewList h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
}

.standardNote {
  min-height: 66px;
  background: #F4F7FB;
  border: 1px solid #E2E6EC;
  border-radius: 5px;
  margin-top: 92px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.standardNote span {
  width: 25px;
  height: 25px;
  background: #004D80;
  border-radius: 50%;
  flex: 0 0 25px;
  position: relative;
}

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

.standardNote p {
  font-size: 16px;
  color: #3A4150;
  line-height: 27px;
}

.capability {
  padding: 10px 0 90px;
}

.titleBlock h2 {
    margin-bottom: 15px;
}

.capability .titleBlock p {
  /*margin-top: 15px;*/
  color: #5C6470;
}

.capGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 550px));
  gap: 70px 30px;
  margin-top: 55px;
}

.capText {
  position: relative;
}

.capText h3 {
  font-weight: 700;
  font-size: 21px;
  color: #004D80;
  line-height: 34px;
  margin-bottom: 12px;
}

.capText>p {
  font-size: 17px;
  color: #5C6470;
  line-height: 27px;
  margin-bottom: 28px;
}

.capText ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capText li {
  font-size: 14px;
  color: #2C3340;
  line-height: 20px;
  padding-left: 18px;
  position: relative;
}

.capText li:not(:last-child) {
  margin-bottom: 13px;
}

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

.capImage {
  max-width: 550px;
  height: 350px;
  border-radius: 5px;
  overflow: hidden;
}

.emptyImg {
  background: #D9D9D9;
}

.emptyImg img {
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.pcbaText {
  min-height: 350px;
}

.pcbaText ul {
  max-height: 226px;
  overflow-y: auto;
  padding-right: 26px;
}

.pcbaText ul::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  display: none;
}

.pcbaText ul::-webkit-scrollbar-track {
  background: #D9D9D9;
  border-radius: 2px;
}

.pcbaText ul::-webkit-scrollbar-thumb {
  background: #7FB0D2;
  border-radius: 2px;
  opacity: .7;
}

.pcbaText ul::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.supporting {
  background: #F4F7FB;
  padding: 72px 0 78px;
}

.supportItem {
  display: grid;
  grid-template-columns: minmax(360px, 550px) minmax(0, 550px);
  gap: 30px;
  align-items: center;
}

.supportItem:not(:last-child) {
  margin-bottom: 80px;
}

.supportItem .imgBox {
  height: 350px;
}

.supportItem .textBlock h2 {
  margin-bottom: 28px;
}

@media (max-width: 1180px) {
  .capIntro .main {
    gap: 48px;
  }

  .reviewList {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .capIntro,
  .designReview,
  .capability {
    padding: 64px 0;
  }

  .capIntro .main,
  .supportItem {
    grid-template-columns: 1fr;
  }

  .capIntro .imgBox {
    height: 380px;
  }

  .reviewList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capGrid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .capImage {
    height: 320px;
  }

  .supportItem.reverse .textBlock {
    order: 2;
  }

  .supportItem.reverse .imgBox {
    order: 1;
  }
}

@media (max-width: 768px) {
  .capIntro,
  .designReview,
  .capability,
  .supporting {
    padding: 52px 0;
  }

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

  .textBlock p,
  .titleBlock p,
  .capNote p,
  .standardNote p {
    font-size: 15px;
    line-height: 25px;
  }

  .capIntro .imgBox,
  .supportItem .imgBox {
    height: 260px;
  }

  .reviewList {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .capText>p {
    font-size: 15px;
    line-height: 25px;
  }

  .capImage {
    height: 230px;
  }

  .pcbaText {
    min-height: 0;
    order: 5;
  }

  .surfaceText {
    order: 1;
  }

  .surfaceImage {
    order: 2;
    max-width: 100%;
  }

  .pcbaImage {
    order: 6;
     max-width: 100%;
  }

  .testingText {
    order: 7;
     max-width: 100%;
  }

  .testingImage {
    order: 8;
     max-width: 100%;
  }

  .pcbaText ul {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .supportItem:not(:last-child) {
    margin-bottom: 52px;
  }
}

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

  .capIntro .imgBox,
  .supportItem .imgBox,
  .capImage {
    height: 210px;
  }

  .reviewList .item {
    min-height: 120px;
    padding: 22px;
  }

  .standardNote {
    padding: 18px;
  }
}
