/**
 * CSS for displaying more items according to post type & taxonomy
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WordPress
 * @subpackage pollogen
 * @since pollogen 1.0
 */
 .section_explore_more {
   position: relative;
   width: 100%;
   background-position: center top;/*center;*/
   background-repeat: no-repeat;
   background-size: cover;
   background-attachment: fixed;
   padding:80px 0;
 }
 .section_explore_more .title_box,
 .section_explore_more .title_box * {
   color: #000;
   font-size: 55px;
   font-weight: 400;
   letter-spacing: 7.5px;
   line-height: 1.24;
   text-align: center;
   text-transform: uppercase;
 }
.section_explore_more .items_wrapper {
  transform: translateX(0%);
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.section_explore_more .item {
  margin-right: 76px;
  width: 24.2vw;
  max-width: 345px;
  min-width: 250px;
  height: 20.4vw;
  max-height: 294px;
  min-height: 199px;
  margin-left: 0;
  box-shadow: unset;
  transition: box-shadow 0.3s ease-in-out;
  margin: 0 auto;
}
.section_explore_more .item:hover {
    box-shadow: 0 2px 20px 1px rgba(50, 53, 60, 0.4);
}
.section_explore_more .item .overlay {
  position: absolute;
  z-index: 1;
  width: inherit;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.section_explore_more .item:hover .overlay {
    opacity: 1;
}
.section_explore_more .item .overlay .overlay_filter {
  position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    margin-left: 76px;
    width: 24.2vw;
    max-width: 345px;
    min-width: 250px;
    height: 20.4vw;
    max-height: 294px;
    min-height: 199px;
    margin-right: 0;
}
.section_explore_more .item .overlay .overlay_txt {
  position: absolute;
    top: 47%;
    left: 50%;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.13px;
    line-height: 26px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    transform: translate(-50%, -50%);
}

.section_explore_more .item .overlay .pollo_arrow_btn {
  top: 60%;
  background: #000;
}
.section_explore_more .item .overlay .pollo_arrow_btn:after {
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}
.section_explore_more .item .img_wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.section_explore_more .item .img_wrapper img {
    min-width: 100%;
    height: 100%;
    width: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
@media only screen and  (max-width: 990px) {
  .section_explore_more .title_box, .section_explore_more .title_box *{
    font-size: 35px;
    line-height: 41px;
    letter-spacing: 4.77px;
  }
}
