/** Changes specific to the new CTA banner swiper option **/
/** The Theme Color version is still controlled in the base theme **/
/** sites/all/themes/mason_base **/

.cta.banner.owl-carousel {
  height: 75vh;
}
.cta.banner.owl-carousel .img-wrapper {
  height: 75vh !important;
  max-width: 100%;
  background-size: cover;
  margin-bottom: 0;
}
@media only screen and (min-width: 899px) {
  .cta.banner.owl-carousel .img-wrapper {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1570px) {
  .cta.banner.owl-carousel .img-wrapper {
    box-shadow: none;
  }
}
.cta.banner.owl-carousel .content {
    padding: 40px 0px 75px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5)); 
    position: absolute;
    text-align: center;
    bottom: 0;
    right: 0;
    left: 0;
    min-height: 132px;
}
@media only screen and (max-width: 767px) {
  .cta.banner.owl-carousel .content {
    padding: 25px 25px 50px; } 
}
.cta.banner.owl-carousel .content h2 {
  margin: 0;
  padding: 15px 0px; 
  height: auto;
}
.cta.banner.owl-carousel .content .caption {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 24px;
  display: inline-table;
  max-width: 680px;
  margin: 0px;
  padding-bottom: 25px; 
}
.cta.banner.owl-carousel .content .caption a {
  transition: 300ms ease all;
  text-decoration: none;
  color: white; 
}
.cta.banner.owl-carousel .content .caption a:hover {
  opacity: 0.7; 
}
@media (max-width: 767px) {
  .cta.banner.owl-carousel .content .caption {
    font-size: 15px;
    line-height: 20px; 
  } 
}

.cta.banner.owl-carousel .content .home-button a {
  display: inline-block;
  background: #fc3;
  padding: 20px 40px;
  color: #222;
  border-radius: 5px;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  transition: 300ms ease all;
  color: #222;
  text-decoration: none;
  transition: 300ms ease all; }
  
.cta.banner.owl-carousel .content .home-button a:hover {
  background: #ffbf00;
  color: #fff;
  cursor: pointer; 
}