/* Program Description Hover Fade */

.BSMenuContainer {
  position: relative;
  width: 100%;
}

.BSimage {
  display: block;
  width: 100%;
  height: auto;
}

.BSoverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height:auto;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #000;
}

.BSMenuContainer:hover .BSoverlay {
  opacity: 1;
}

.BStext {
  color: white;
  font-size: .7rem;
  position: absolute;
  top: 30%;
  left: 40%;
  right:-35%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  margin-top: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
}


@media only screen and (max-width: 700px) {
  .BStext {
    font-size: .5rem;
    margin-right: 1rem;
   margin-left: 3rem;
   top: 28%;
   right: -46%;
   left:0;
  }
}

/* Desktop vs Mobile Display for Nav Menu */

.mobileBSMenu {
  display: none;
}

@media only screen and (max-width: 700px) {

.desktopBSMenu {
  display: none;
}

.mobileBSMenu {
  display: block;
}
}


.BSnavbar {
  overflow: hidden;
}

.BSnavbar a {
  float: left;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  margin-top: -6px;

}

.BSdropdown {
  float: left;
  overflow: hidden;
}

.BSdropdown .BSdropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.BSnavbar a:hover, .BSdropdown:hover .BSdropbtn {
  background-color: #d18900;
  color:white;
}

.BSdropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.BSdropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.BSdropdown-content a:hover {
  background-color: #d18900;
}

.BSdropdown:hover .BSdropdown-content {
  display: block;
}

/* Navbar styling */

.desktopBSMenu {
   margin: -8px auto 0 auto;
   background-color:#D18A00;
}

.BSdropdown {
   max-height:45px;
}
.BSdropdown .BSdropbtn {
   padding: 0px 16px;
}

/* Extra Spacing for Banner Content Blocks*/

.desktop-img {
   margin-top: -2.5rem;
}

.mobile-img{
   margin-top: -2.5rem;
}

.WidgetProgramBanner {
   Margin-bottom:8px;
}

/* Ministry Tile Fixes */

.BSdropdown:hover .BSdropdown-content {
  margin-top: -14px;
}

.BSMenuContainer .BSoverlay:hover{
  margin-top:10px;
}

.BSnavbar a:hover, .BSdropdown:hover .BSdropbtn {
  margin-top: -3px;
}

.Connect .social svg{
    width:60px;
    height:73px;
}

/* Making the Mobile Nav experience "pop"*/
.mobileBSMenu {
   background-color:#D18A00;
   margin: -8px auto 0 auto;
}
@media only screen and (max-width: 700px) {
.BSdropdown:hover .BSdropdown-content {
  margin-top: 0px;
}
}