/**
 * CSS for displaying colored/image background full width strip with title and CTA
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WordPress
 * @subpackage pollogen
 * @since pollogen 1.0
 */
.section_background_strip {
  position: relative;
  width: 100%;
  height: 29.5vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  /* margin-top: 74px; */
}
.section_background_strip:before {
content: '';
position: absolute;
top: 0;
width: 59%;
height: 100%;
}
.section_background_strip .cover_content {
  /* padding-top: 89px; */
  width: 62%;
  letter-spacing: 1.13px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0,0,0,.3)/*rgba(0,0,0,.6)*/;
  position: relative;
}
.section_background_strip .small_cover_title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.33px;
  line-height: 24px;
  text-transform: uppercase;
  /* margin-bottom: 22px; */
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.section_background_strip .main_cover_title {
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 7.5px;
  /* max-width: 500px; */
}
.section_background_strip .main_cover_title h1,
.section_background_strip .main_cover_title h2,
.section_background_strip .main_cover_title h3,
.section_background_strip .main_cover_title h4,
.section_background_strip .main_cover_title h5,
.section_background_strip .main_cover_title h6 {
  font-weight: 400;

}
.section_background_strip .main_cover_title h1 {
  letter-spacing: 7.5px;
  padding: 0;
  margin: 0 0 20px;
  text-align: center;
}
.section_background_strip .more_button {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  color:#fff;
}
.section_background_strip .more_button :after {
  content: '';
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: width 0.4s ease-in-out;
}
.section_background_strip .icon_wrapper {
  position: absolute;
  bottom: 50px;
  right: 15px;
}
.section_background_strip .icon_wrapper  img {
  height: 60px;
  width: auto;
}
.section_background_strip .cover_icon {

}
@media only screen and  (max-width: 990px) {
  .section_background_strip .cover_content {
    width: 100%;
  }
  .section_background_strip .main_cover_title h1 {
    font-size: 1em;
  }
  .section_background_strip .small_cover_title {
    padding-top: 90px;
    padding: 90px 5px 0 5px;
  }
  .home .section_background_strip .small_cover_title {
    font-size: 18px;
    padding-top: 60px;
  }
  .section_background_strip .cover_content {
    justify-content: space-evenly;
  }
  .section_background_strip {
    height: 400px;
    background-size: cover;
    background-attachment: unset;
  }
  .section_background_strip .icon_wrapper {
    position: relative;
    bottom: -20px;
    margin-right: 15px;
    right: auto;
  }
  .section_background_strip .icon_wrapper  img {
    height: 40px;
  }
}
