section.module a.text-link:hover {
    border-bottom: 1px solid #458A94 !important;
}

article h1 + p:before,
article h2 + p:before,
article h1 + ul:before,
article h2 + ul:before,
article h2 + h3:before {
    border-top: none;
    display: block;
    margin: 0;
    margin-bottom: 25px;
    content: " ";
}

p.btt, p.goto {
    margin: 35px 0 35px;
    padding: 2px 0 2px 20px;
    cursor: pointer;
}

nav.inline ul>li {
    background: #458a94;
    padding: 8px 10px;
    font-size: 12px;
}

div.animalStrip {
    background: #000;
    height: 95px;
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    text-align: center;
}

/* event section text background blur */
.ea__when::after {
    content: '';
    display: block;
    height: 150%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    background: rgba(0, 0, 0, 0.75);
    /* fallback color if gradients are not supported */
    background: -webkit-linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    /* For Chrome 25 and Safari 6, iOS 6.1, Android 4.3 */
    background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    /* For Firefox (3.6 to 15) */
    background: -o-linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    /* For old Opera (11.1 to 12.0) */
    background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    /* Standard syntax; must be last */
    -webkit-filter: blur(40px);
    filter: blur(40px);
}

.ea__what::after {
    content: '';
    display: block;
    height: 150%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.75);
    /* fallback color if gradients are not supported */
    background: -webkit-linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    /* For Chrome 25 and Safari 6, iOS 6.1, Android 4.3 */
    background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    /* For Firefox (3.6 to 15) */
    background: -o-linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    /* For old Opera (11.1 to 12.0) */
    background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    /* Standard syntax; must be last */
    -webkit-filter: blur(40px);
    filter: blur(40px);
}

/* slide text background blur */
.slideshow .splash__rtf {
    bottom: 18px;
    left: 0;
    z-index: 40;
}

.slideshow .splash__rtf:after {
    content: '';
    display: block;
    height: 150%;
    left: 350px;
    position: absolute;
    top: 0;
    width: 1200px;
    z-index: -1;
    background: rgba(0, 0, 0, 0.9);
    /* fallback color if gradients are not supported */
    background: -webkit-linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    /* For Chrome 25 and Safari 6, iOS 6.1, Android 4.3 */
    background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    /* For Firefox (3.6 to 15) */
    background: -o-linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    /* For old Opera (11.1 to 12.0) */
    background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    /* Standard syntax; must be last */
    -webkit-filter: blur(30px);
    filter: blur(30px);
}

/* press room nav */
nav.inlineNews ul>li {
    background: #458a94;
    padding: 8px 8px;
    font-size: 12px;
}

/* slide skrim and text*/
div.slideshow .slideshow__slide:before, div.slideshow figure:before {
    background: rgba(0,0,0,.5);
}

.splash__rtf h1 {
    text-shadow: 0 0 5px rgba(0, 0, 0, .5);
}

.splash__rtf h2 {
    text-shadow: 0 0 5px rgba(0, 0, 0, .5);
}

/* removes bullet points from mobile utlity promos */
section.module.rail.utility li {
    list-style: none;
}
/* click to zoom */
/* allows for a div to hide a "click to zoom" link until the div is hovered */

.click-to-zoom-outer {
	display: -moz-flex;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 35px 0px;
  position: relative;
}

.click-to-zoom {
  background-color: rgba(0,0,0,.4);
	display: -moz-flex;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left:  0;
  right: 0;
}

.click-to-zoom:hover {
  opacity: 1;
  -webkit-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease;
}

.click-to-zoom p, .click-to-zoom span.zoom-icon {
  color:  #ffffff;
}

.click-to-zoom span.zoom-icon {
  display: block;
  font-size: 25px;
  margin-bottom: 15px;
}

.click-to-zoom p:first-child {
  margin: 0;
}

.click-to-zoom-outer img {
  margin: 0px 0px;
}

.newsletter-signup__background {
  background-color: rgba(1,42,58,.05);
}

.newsletter-signup__container {
  display: block;
  margin: 0 auto;
  max-width: 700px;
  padding: 50px 11px;
  text-align: center;
}

.newsletter-signup__heading {
  color: #012A3A;
  display: block;
  font-family: "Gotham A", "Gotham B", "Gotham SSm A", "Gotham SSm B", "Montserrat", helvetica, arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1em 0;
  padding: 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .newsletter-signup__heading {
    font-size: 25px;
  }
}

.newsletter-signup__description {
  color: #012A3A;
  display: block;
  font-family: "Gotham SSm A", "Gotham SSm B", "Gotham A", "Gotham B", "Montserrat", helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 35px 0;
  padding: 0;
  text-align: center;
}

.newsletter-signup__button {
  background-color: #012A3A;
  border: 2px solid #012A3A;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Gotham SSm A", "Gotham SSm B", "Gotham A", "Gotham B", "Montserrat", helvetica, arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -webkit-transition: all .3s;
}

.newsletter-signup__button:hover {
  background-color: #FFFFFF;
  color: #012A3A;
  text-decoration: none;
}
