.text-dash-top .text-dash-top__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 32px;
  grid-template-rows: auto;
}
@media only screen and (max-width: 992px) {
  .text-dash-top .text-dash-top__grid {
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 16px;
  }
}
.text-dash-top .text-dash-top__grid .text-dash-top__item {
  border-top: 1px solid #060142;
  padding: 20px 0 0 0;
}
.text-dash-top .text-dash-top__grid .text-dash-top__item:nth-of-type(2n+1) {
  grid-column: 1/6;
}
@media only screen and (max-width: 1200px) {
  .text-dash-top .text-dash-top__grid .text-dash-top__item:nth-of-type(2n+1) {
    grid-column: span 6;
  }
}
.text-dash-top .text-dash-top__grid .text-dash-top__item:nth-of-type(2n) {
  grid-column: 8/13;
}
@media only screen and (max-width: 1200px) {
  .text-dash-top .text-dash-top__grid .text-dash-top__item:nth-of-type(2n) {
    grid-column: span 6;
  }
}
.text-dash-top .text-dash-top__grid .text-dash-top__item .text-dash-top__heading .h3 {
  font-size: 45px;
  margin: 0 0 20px;
  font-weight: 400;
}
@media only screen and (max-width: 992px) {
  .text-dash-top .text-dash-top__grid .text-dash-top__item .text-dash-top__heading .h3 {
    font-size: 35px;
  }
}