/**
 * CSS for displaying 4 in a row boxes (2 for mobile) with image
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WordPress
 * @subpackage pollogen
 * @since pollogen 1.0
 */
 .section_imgeries_box {
   position: relative;
   width: 100%;
   background-position: center top;/*center;*/
   background-repeat: no-repeat;
   background-size: cover;
   background-attachment: fixed;
   padding:40px 0;
   box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
 .section_imgeries_box .title_box,
 .section_imgeries_box .title_box * {
    font-size: 55px;
    line-height: 1.24;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 7.5px;
    color: #000;
    text-align: center;
 }
 .section_imgeries_box .title_box h3 {
    color: #000;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1.9px;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
 }
 .section_imgeries_box .items_wrapper {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
 }
 .section_imgeries_box .item {
   padding: 60px 30px 0;
   margin: 0 3%;
   width: 25%;/*185px;*/
 }
.section_imgeries_box .item .img_wrapper {
  margin: 0 auto 17px;
  display: flex;
  justify-content: center;
}
.section_imgeries_box .item .img_wrapper .dt_view {
  text-align: center;
  width:185px;
}
.section_imgeries_box .item .title {
  font-size: 20px;
  letter-spacing: 0.97px;
  line-height: 32px;
  font-weight: 600;
  text-align: center;
  height: 64px;
}
.section_imgeries_box .item > .title.box_title {
  font-size: 26px;
}
.section_imgeries_box .item > .title.box_title span {
  font-size: 80%;
}
.section_imgeries_box .item .title.bigger {
  font-size: 33px;
}
 .section_imgeries_box .item .txt {
   text-align: center;
   font-weight: 500;
   position: relative;
   margin-top: 10px;
 }
 .section_imgeries_box .description_buttom {
   margin-top: 30px;
   text-align: center;
 }
 .section_imgeries_box .commentaries {
   margin-top: 30px;
   font-size: .76rem;
   line-height: 1.1rem;
 }
@media only screen and  (max-width: 990px) {
  .section_imgeries_box {
    padding: 40px 0;
  }
  .section_imgeries_box .items_wrapper {
    flex-wrap: wrap;
  }
  .section_imgeries_box .item {
    padding: 20px 10px;
    width: 47% !important;
  }
  .section_imgeries_box .item.full {
    width: 100%;
  }
  .section_imgeries_box .item:nth-child(odd) {
    margin-right: 0;
  }
  .section_imgeries_box .item:nth-child(even) {
    margin-left: 0;
  }
  .section_imgeries_box .title_box, .section_imgeries_box .title_box * {
    font-size: 32px;
  }
  .section_imgeries_box .item .title {
    font-size: 16px;
    line-height: 18px;
    height: 80px;
  }
  .section_imgeries_box .item > .title.box_title {
    font-size: 22px;
    line-height: 24px;
  }
  .section_imgeries_box .item .title.bigger {
    font-size: 22px;
  }
  .section_imgeries_box .item .txt {
    font-size: 95%;
    margin-top: 0;
    line-height: 18px;
  }
  .section_imgeries_box .commentaries {
    text-align: justify;
  }
}
