.industriesPage {
  background: #fff;
}

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

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

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

.titleBlock p {
  margin-top: 13px;
  font-size: 15.5px;
  color: #5C6470;
  line-height: 27px;
}

.center {
  text-align: center;
}

.industryOverview {
  padding: 80px 0 74px;
}

.overviewGrid {
  margin-top: 42px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.overviewGrid .textBox {
  width: 540px;
  max-width: 100%;
  background: #F4F7FB;
  border: 1px solid #E2E6EC;
  border-radius: 5px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overviewGrid .textBox p {
  font-size: 15.5px;
  color: #3A4150;
  line-height: 27px;
}

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

.overviewGrid .imgBox {
  width: 550px;
  width: 540px;
  max-width: 100%;
  /*height: 370px;*/
  height: 100%;
  background: #fff;
  /*border: 1px solid #E2E6EC;*/
  border-radius: 5px;
  overflow: hidden;
}

.overviewGrid .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.industryApplications {
  padding: 0 0 80px;
}

.applicationGrid {
  max-width: 1130px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 28px 25px;
  justify-content: center;
}

.applicationGrid .item {
  min-height: 82px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 3px;
  box-shadow: 0 0 9px rgba(0, 77, 128, .1);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .3s ease-in-out;
}

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

.appIcon,
.qualityIcon {
  width: 45px;
  height: 45px;
  background: #EAF4FA;
  border-radius: 3px;
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.appIcon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.appIconBms img {
  position: absolute;
}

.applicationGrid p {
  font-weight: 600;
  font-size: 15px;
  color: #2A2F36;
  line-height: 25px;
}

.valueServices,
.specialQuality {
  background: #F4F7FB;
  padding: 76px 0 80px;
}

.serviceGrid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 25px;
  justify-content: center;
}

.serviceGrid .item {
  min-height: 334px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 3px;
  box-shadow: 0 0 9px rgba(0, 77, 128, .1);
  padding: 30px 28px;
  transition: all .3s ease-in-out;
}

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

.serviceGrid .letter {
  width: 56px;
  height: 56px;
  background: #EAF4FA;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 26px;
  color: #004D80;
  line-height: 25px;
  margin-bottom: 22px;
}

.serviceGrid p {
  font-size: 14px;
  color: #5C6470;
  line-height: 24.5px;
}

.specialQuality {
  padding-top: 76px;
}

.specialQuality .titleBlock p {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}

.qualityGrid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 550px));
  gap: 30px;
  justify-content: center;
}

.qualityGrid .item {
  min-height: 142px;
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 3px;
  box-shadow: 0 0 9px rgba(0, 77, 128, .1);
  padding: 30px 28px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all .3s ease-in-out;
}

.qualityIcon {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
}

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

.qualityGrid h3 {
  font-weight: 600;
  font-size: 16.5px;
  color: #004D80;
  line-height: 25px;
  margin-bottom: 7px;
}

.qualityGrid p {
  font-size: 14px;
  color: #5C6470;
  line-height: 25px;
}

@media (max-width: 1024px) {
  .industryOverview,
  .industryApplications,
  .valueServices,
  .specialQuality {
    padding: 64px 0;
  }

  .overviewGrid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .applicationGrid,
  .serviceGrid {
    grid-template-columns: repeat(2, minmax(0, 360px));
  }

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

@media (max-width: 768px) {
  .industryOverview,
  .industryApplications,
  .valueServices,
  .specialQuality {
    padding: 52px 0;
  }

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

  .overviewGrid .textBox {
    min-height: auto;
    padding: 28px 22px;
  }

  .overviewGrid .imgBox {
    height: 300px;
  }

  .applicationGrid,
  .serviceGrid {
    grid-template-columns: 1fr;
  }
}

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

  .overviewGrid .imgBox {
    height: 240px;
  }

  .applicationGrid .item,
  .qualityGrid .item {
    align-items: flex-start;
  }
}
