/**
 * CSS for displaying 4 in a row boxes (2 for mobile) with backgourn numbers
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WordPress
 * @subpackage pollogen
 * @since pollogen 1.0
 */
.section_numbered_box {
  position: relative;
  width: 100%;
  background-position: center top;/*center;*/
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding:40px 0 40px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.section_numbered_box .title_box,
.section_numbered_box .title_box * {
  color: #000;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 1.9px;
  line-height: 38px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0px;
}
.section_numbered_box .items_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section_numbered_box .item {
  padding: 60px 30px 0;
  margin: 0 3%;
  width: 19%;
}
.section_numbered_box .item .number {
  display: block;
  color: #f5e6dd;
  font-size: 60px;
  letter-spacing: 2.92px;
  line-height: 8px;
  text-align: center;
  font-weight: 500;
}
.section_numbered_box .item .txt {
  text-align: center;
  font-weight: 500;
  position: relative;
}
.section_numbered_box .commentaries {
  margin-top: 50px;
  font-size: .8rem;
  line-height: 1.1rem;
}
@media only screen and  (max-width: 990px) {
  .section_numbered_box {
    padding: 40px 0;
  }
  .section_numbered_box .item {
    width: 43%;
    padding: 30px 5px 10px;
  }
  .section_numbered_box .item .txt {
    font-size: 95%;
    line-height: 18px;
    height: auto;
  }
  .section_numbered_box .commentaries {
    text-align: justify;
  }
}
