.developmentPage {
  background: #fff;
}

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

.development .light {
  background: #F4F7FB;
}

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

.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:first-of-type,
.titleBlock p:first-of-type {
  margin-top: 28px;
}

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

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

.imgBox.short {
  height: 350px;
}

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

.devIntro {
  padding: 80px 0;
}

.supportBlock {
  padding: 80px 0;
}

.supportBlock .compact {
  align-self: center;
}

.engineering {
  padding: 80px 0;
}

.mechanical {
  padding: 80px 0;
}

.mechanical .titleBlock,
.software .titleBlock {
  max-width: 810px;
}

.software {
  padding: 80px 0 88px;
}

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

.listCols ul,
.softwareGrid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.listCols li,
.softwareGrid li {
  font-size: 14px;
  color: #2C3340;
  line-height: 22px;
  padding-left: 18px;
  position: relative;
}

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

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

.softwareGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 34px;
}

.softwareGrid .item {
  min-width: 0;
}

.softwareGrid h3 {
  font-weight: 700;
  font-size: 16px;
  color: #004D80;
  line-height: 24px;
  margin-bottom: 18px;
  /*text-transform: capitalize;*/
}

@media (max-width: 1024px) {
  .twoCol,
  .listCols {
    grid-template-columns: 1fr;
  }

  .reverseMobile .imgBox {
    order: 2;
  }

  .reverseMobile .textBlock {
    order: 1;
  }

  .devIntro,
  .supportBlock,
  .engineering,
  .mechanical,
  .software {
    padding: 64px 0;
  }

  .softwareGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .textBlock h2,
  .titleBlock h2 {
    font-size: 28px;
    line-height: 34px;
  }

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

  .imgBox,
  .imgBox.short {
    height: 260px;
  }

  .devIntro,
  .supportBlock,
  .engineering,
  .mechanical,
  .software {
    padding: 52px 0;
  }
}

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

  .imgBox,
  .imgBox.short {
    height: 210px;
  }
}
