/*
 * Banner Style
 */

.htmega-banner .banner-thumb a {
    overflow: hidden;
    position: relative;
    display: block;
}
.htmega-banner .banner-content a{
  display: inline-block;
}
.htmega-banner .banner-thumb a::before {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    height: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 0;
}

.htmega-banner .banner-thumb a::after {
    background: #ffffff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    transition: all 0.5s ease 0s;
    width: 0;
}

.htmega-banner .banner-thumb a img {
    width: 100%;
}

.htmega-banner:hover .banner-thumb a::before {
    height: 100%;
    opacity: 0.3;
    width: 100%;
}

.htmega-banner:hover .banner-thumb a::after {
    height: 100%;
    opacity: 0.3;
    width: 100%;
}

.htmega-banner {
    position: relative;
}

.htmega-banner .banner-content a {
  color: white;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 13px;
  transition: all 0.4s ease 0s;
  text-decoration: none;
}

.htmega-banner .banner-content{
  position: absolute;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.htmega-banner .banner-content .banner-anchor{
    padding: 10px;
    background-color: rgba(0, 0, 0, .8);
}

/*Banner Content Position */
.htmega-banner-content-pos-center .banner-content{
    top: 60%;
    right: 0;
    left: auto;
    padding-right: 0px;
    transform: translateY(-50%);
}

.htmega-banner-content-pos-bottom .banner-content {
  bottom: 0;
  padding-bottom: 40px;
}

.htmega-banner-content-pos-top .banner-content {
  top: 0;
  padding-top: 40px;
}