
.banner{
    display: block;
    /*max-width: 2000px;*/
    width: 100%;
    position: relative;
    margin: auto;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
}
.banner img{
   width:100%;
   height:380px;
}
.banner-content{
    position: absolute;
    top: 2em;
    width:55%;
    margin: auto;
    left: 10em;
}
.banner-content h3 {
    font-size: 40px;
    letter-spacing: 2px;
    color: #fff;
    float: left;
    width: 100%;
    text-align: left;
    padding: 10px 0px;
    line-height: 60px;
}
.banner-content h4 {
    font-size: 20px;
    letter-spacing: 1px;
    padding: 5px 0px;
    line-height: 35px;
    color: #fff;
    float: left;
    width: 100%;
    /* text-align: center; */
    word-break: break-word;
}


ul.gallery-slideshow > img, ul {margin: 0; padding: 0;}
ul.gallery-slideshow {
  position: relative;
  list-style: none;
  background: #000000;
  overflow: hidden;
  width:100%;
  height:450px;
}
ul.gallery-slideshow li img {
  position: absolute;
  min-width: 100%; min-height: 100%;
}
/*gallery controls*/
.gallery-control{
  position: absolute; z-index: 1;
  top: 0; bottom: 0;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.8);
  margin: auto;
  cursor: pointer;
}
.gallery-control.prev { left: -5px; }
.gallery-control.next { right: -5px; }
.gallery-control.trigger {
  left: 0; right: 0;
  width: 50px; height: 50px;
  border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;
}
.gallery-control:after{
  position: absolute;
  z-index: 2;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  content: "";
  width: 20px; height: 20px;
  box-sizing: border-box;
  border-style: solid;
  border-color: transparent;
}
.gallery-control.prev:after {
  border-width: 10px 15px 10px 0px;
  border-right-color: #ffffff;
}
.gallery-control.next:after {
  border-width: 10px 0px 10px 15px;
  border-left-color: #ffffff;
}
.gallery-control.trigger.pause:after{
  border-style: double;
  border-width: 0px 0px 0px 20px;
  border-color: #ffffff;
}
.gallery-control.trigger.play:after{
  left: 5px;
  border-width: 10px 0px 10px 20px;
  border-left-color: #ffffff;
}
/*gallery navigation*/
ul.gallery-slideshow ul.gallery-navbar{
  position: absolute;
  bottom: 5%;
  width: 100%;
  text-align: center;
}
ul.gallery-navbar li{
  all: unset;
  position: relative;
  display: inline-block;
  width: 15px; height: 15px;
  background: rgba(255,255,255,0.5);
  margin: 10px;
  border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;
  cursor: pointer;
}
ul.gallery-navbar li.active{ background: rgba(255,255,255,1); }
/**STATES**/
ul.gallery-navbar li:hover, .gallery-control:hover{ transform: scale(0.9); }
ul.gallery-navbar li:hover{ background: rgba(255,255,255,0.8); }
ul.gallery-navbar li:active, .gallery-control:active { transform: scale(0.8); }


@media only screen and (min-width: 320px) and (max-width: 768px) {
  .banner img {
    width: 100%;
    height: auto;
  }
}

