* {
  animation-property: width;
  animation-property: height;
  transition-duration: 0.5s;
  /* webkit */
  -webkit-animation-property: width;
  -webkit-animation-property: height;
  -webkit-transition-duration: 0.5s;
  /* moz */
  -moz-animation-property: width;
  -moz-animation-property: height;
  -moz-transition-duration: 0.5s;
  /* opera */
  -o-animation-property: width;
  -o-animation-property: height;
  -o-transition-duration: 0.5s;
}

html {
  background-color: #000000;
}

img {
  max-width: 100%;
}

body {
  font-family: 'Lato', sans-serif;
}
strong {
  font-weight: bold;
}

a.button {
  display: inline-block;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 2px solid rgba(118,189,29,0.5);
  border-radius: 0.6em;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  padding: 10px 15px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  background-image: -webkit-linear-gradient(45deg, transparent 50%, rgba(118,189,29,0.5) 50%);
  background-image: linear-gradient(45deg, transparent 50%, rgba(118,189,29,0.5) 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 500ms ease-in-out;
  transition: background 500ms ease-in-out;
  letter-spacing: 0.5px;
}
a.button:hover {
  background-position: 0;
  background-color: rgba(118,189,29,0.8);
}

#navbar {
  position: relative;
  z-index: 100;
}
.navbar {
  background-color: transparent;
  background-image: none;
  border-bottom: 0;
}

.navbar > .container-fluid .navbar-brand {
  margin-left: 10px;
  position: relative;
  z-index: 10;
}

.navbar-brand.small {
  display: none;
  padding: 3px 15px;
}

.navbar-nav  > li {
  border-bottom: 1px solid #9d9e9f;
}

.navbar-inverse .navbar-nav > li > a {
  color: #ffffff;
}

.container-fluid.hero-image, .container-fluid.hero-interior {
  padding: 0;
}

.hero-image {
  background-image: url(../images/carousel-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  position: relative;
}

.hero-image .jumbotron {
  background-color: rgba(19,192,215,0.8);
  width: 100%;
  padding: 0;
  margin-top: 50px;
  border-radius: 0;
  position: relative;
}

.hero-interior {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  overflow: hidden;
  position: relative;
}

.hero-interior .jumbotron {
  background-color: rgba(19,192,215,0.8);
  width: 100%;
  padding: 0;
  margin-top: 50px;
  border-radius: 0;
  position: relative;
}

.hero-cover {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.25);
  position: absolute;
  top: 0;
}

.center-tagline h1 {
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.75em;
  margin-top: 40%;
  margin-bottom: 10%;
}

.page-name h2 {
  font-size: 42px;
  color: #ffffff;
  letter-spacing: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.75em;
  margin-top: 30%;
  margin-bottom: 5%;
}

.center-tagline span {
  font-weight: 900;
}

.programs {
  margin-top: -65px !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.programs a.program {
  width: 100%;
  height: 400px;
  display: block;
  position: relative;
  background-size: cover;
  background-position: top;
  transition: all .2s ease-in-out;
}

.programs a.program:hover {
  cursor: pointer !important;
  transform: scale(1.05);
}

.programs div:nth-child(1) a {
  border: 5px solid #fc4513;
}

.programs div:nth-child(2) a {
  background-size: cover;
  border: 5px solid #77216d;
}

.programs div:nth-child(3) a {
  background-size: cover;
  border: 5px solid #76bd1d;
}

.programs div:nth-child(4) a {
  background-size: cover;
  border: 5px solid #fc4513;
}

.programs div:nth-child(5) a {
  background-size: cover;
  border: 5px solid #77216d;
}

.programs div:nth-child(6) a {
  background-size: cover;
  border: 5px solid #76bd1d;
}

.program .title {
  position: absolute;
  bottom: 0;
  line-height: 25px;
  height: 70px;
  width: 100%;
  color: #ffffff;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.programs div:nth-child(1) .title {
  background: rgba(252,69,19,0.9);
}

.programs div:nth-child(2) .title {
  background: rgba(119,33,109,0.9);
}

.programs div:nth-child(3) .title {
  background: rgba(118,189,29,0.9);
}

.programs div:nth-child(4) .title {
  background: rgba(252,69,19,0.9);
}

.programs div:nth-child(5) .title {
  background: rgba(119,33,109,0.9);
}

.programs div:nth-child(6) .title {
  background: rgba(118,189,29,0.9);
}

.footer {
  margin-top: 50px;
  background-color: #000000;
}

.footer ul {
  padding: 20px 0;
}

.footer ul li {
  color: #c4c4c4;
  font-size: 12px;
}

.footer ul li a {
  color: #c4c4c4;
  font-size: 12px;
}

.footer ul li.parent a {
  color: #ffffff;
  font-size: 14px;
  pointer-events: none;
  cursor: default;
}

.footer ul li.parent.clickable a {
  pointer-events: auto;
  cursor: pointer;
}

#menu-header-menu-1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#footer-navbar #menu-header-menu-1 > .menu-item > a {
  font-size: 14px;
}

#footer-navbar #menu-header-menu-1 > .menu-item ul.sub-menu {
  padding-top: 5px;
}

.copyright {
  padding: 10px 0;
  border-top: 1px solid #ffffff;
  background-color: #000000;
  color: #ffffff;
}

.copyright p {
  line-height: 35px;
  font-size: 14px;
  margin: 0;
}
.copyright ul {
  margin: 0;
  padding: 0;
}

.container.interior {
  padding-top: 40px;
}

.container.interior p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  margin: 20px 0px;
}

.container.interior ul li {
  font-size: 18px;
  font-weight: 300;
}

.container.interior h3 {
  font-size: 36px;
  line-height: 40px;
  margin-top: 35px
}



.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #000000;
}

.navbar-inverse .navbar-toggle, .navbar-inverse .navbar-toggle {
  background-color: #333333;
}

body.home .col-sm-6, body.home .col-md-4 {
  margin-top: 4%;
}

/* Staff */



.container.interior.staff p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  margin: 0 0 40px;
}

.staff {
  display: flex;
  flex-wrap: wrap;
}

.staff .member {
  width: 21%;
  margin: 0 2%;
  text-align: center;
}

.staff .member h4 {
  font-size: 20px;
  margin-bottom: 0;
}

.staff .member strong {
  line-height: 20px;
  display: block;
  margin-bottom: 3px;
}

.staff .member em {
  font-style: italic;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 18px;
  display: block;
  margin: 0 0 10px;
}

.staff img {
  max-width: 100%;
  width: 75%;
  display: block;
  margin: 0 auto;
  border-radius: 150px;
}

/* Support the Center / Donations */
.support-features {
  display: flex;
  flex-wrap: wrap;
}

.support-features .way-to-donate {
  width: 45%;
  margin: 0 2.5% 40px;
}

.support-features .way-to-donate h4 {
  text-transform: uppercase;
  font-size: 20px;
}

.support-features .way-to-donate img {
  width: 40%;
  display: block;
  margin: 0 auto;
}

/* WP Menu to Boostrap */

.navbar-nav .menu-item-has-children {
  position: relative;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  background-color: rgba(19,192,215,0.8);
  background-image: none;
}

/* BX Slider */

.bx-wrapper .bx-viewport {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  background-color: transparent;
}

ul.bxslider li .bxslider-content {
  width: 100%;
  height: 540px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

ul.bxslider li .hero-message {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 40%;
  background-color: rgba(19,192,215,0.8);
  padding: 30px 35px 40px;
  color: #ffffff;
  text-align: left;
}

ul.bxslider li .hero-message h2 {
  font-family: 'Lato', sans-serif;
  font-size: 55px;
  line-height: 60px;
  letter-spacing: 1px;
  margin-top: 0;
}

ul.bxslider li .hero-message p {
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.bx-wrapper {
  overflow: hidden;
  margin-bottom: 0;
  position: absolute;
  width: 100%;
}

.bx-wrapper .bx-controls-direction a {
  z-index: 50;
  -webkit-transition: none;
  transition: none;

}

/* Hellmann Display */

body.page-template-page-hellmann {
  background-color: #ffffff !important;
}

body.page-template-page-hellmann .navbar, body.page-template-page-hellmann .footer, body.page-template-page-hellmann .copyright {
  display: none;
}

body.page-template-page-hellmann .container-fluid {
  margin: 0;
  padding: 0;
}

body.page-template-page-hellmann .bxslider-content.calendar-image {
  width: 3840px;
  height: 2160px;
}

body.page-template-page-hellmann .bxslider-content.calendar-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

body.page-template-page-hellmann .bxslider-content.calendar-month {
  width: 3640px;
  padding: 100px;
  overflow: auto;
  height: 2160px;
}

body.page-template-page-hellmann .calendar-week {
  overflow: auto;
}

body.page-template-page-hellmann .calendar-week .week-info {
  overflow: auto;
}

body.page-template-page-hellmann ul.bxslider-display li {
  background-color: #ffffff;
}

.calendar-month h1 {
  font-size: 100px;
  line-height: 130px;
  margin-bottom: 40px;
  margin-top: 0;
  color: #00bfd6;
  font-weight: bold;
}

.calendar-month h2 {
  font-size: 70px;
  line-height: 75px;
  margin-bottom: 80px;
  color: #000000;
  float: left;
  font-weight: bold;
  text-transform: uppercase;
}

.calendar-month h2.count {
  float: right;
}

.calendar-month h3 {
  font-size: 45px;
  line-height: 50px;
  margin-bottom: 25px;
  margin-top: 0;
  color: #00bfd6;
  font-weight: bold;
}

.calendar-month p {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 10px;
  color: #000000;
  font-weight: normal;
}

.calendar-month .calendar-event {
  margin-bottom: 35px;
  float: left;
  height: 500px;
  width: 500px;
  padding: 40px;
  border: 2px solid #cccccc;
  margin: 0 40px 40px 0;
}

@media screen and (max-width: 1500px) {
  .programs a.program {
    height: 350px;
  }
}

@media (max-width: 1300px) {
  ul.bxslider li .hero-message {
    top: 15%;
    right: 5%;
  }
  ul.bxslider li .hero-message h2 {
    font-size: 40px;
    line-height: 43px;
  }
  .programs a.program {
    height: 300px;
  }
  a.button {
    font-size: 14px;
    line-height: 15px;
  }
  .center-tagline h1 {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  ul.bxslider li .hero-message {
    width: 45%;
  }
}

@media (max-width: 1100px) {
  ul.bxslider li .hero-message h2 {
    font-size: 35px;
    line-height: 37px;
  }
}

@media (max-width: 1000px) {
  ul.bxslider li .hero-message {
    width: 50%;
  }
  ul.bxslider li .hero-message h2 {
    font-size: 30px;
    line-height: 36px;
  }
  ul.bxslider li .hero-message p {
    font-size: 18px;
    line-height: 24px;
  }
  #footer-navbar #menu-header-menu-1 > .menu-item {
    width: 20%;
    margin: 10px 2.5%;
  }
  #menu-header-menu-1 {
    justify-content: flex-start;
  }
  .programs {
    margin-top: -40px !important;
  }
  .center-tagline h1 {
    font-size: 30px;
    letter-spacing: 3px;
  }
  .staff .member {
    width: 30%;
    margin: 0 1.5%;
  }
  .staff img {
    width: 55%;
  }
}

@media (max-width: 900px) {
  .programs {
    grid-template-columns: repeat(2, 1fr);
    width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  ul.bxslider li .hero-message {
    width: 70%;
  }
  ul.bxslider li .hero-message h2 {
    font-size: 30px;
    line-height: 35px;
  }
  ul.bxslider li .hero-message p {
    font-size: 15px;
    line-height: 25px;
  }
  ul.bxslider li .hero-message {
    top: 10%;
  }
  .center-tagline h1 {
    margin-top: 45%;
  }
}

@media (max-width: 750px) {
  ul.bxslider li .hero-message {
    top: 0;
  }
  .container-fluid.hero-image {
    padding-top: 130px;
  }
  .bx-wrapper .bx-viewport {
    height: 280px !important;
  }
}

@media (max-width: 700px) {
  .container-fluid.hero-image {
    padding-top: 200px;
  }
  ul.bxslider li .hero-message {
    width: 80%;
    margin: 0 10%;
    right: auto;
    left: auto;
    padding: 20px 25px 25px;
  }
  .center-tagline h1 {
    margin-top: 50%;
  }
  #footer-navbar #menu-header-menu-1 > .menu-item {
    width: 45%;
    margin: 10px 2.5%;
  }
  .programs {
    width: 90% !important;
  }
  ul.bxslider li .hero-message p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .staff .member {
    width: 45%;
    margin: 0 2.5%;
  }
  .staff img {
    width: 45%;
  }
  .support-features .way-to-donate {
    width: 90%;
    margin: 0 5.5% 40px;
    border-bottom: 1px solid #ccc;
    padding: 40px 0;
    margin-bottom: 0;
  }
  .support-features .way-to-donate p {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .programs {
    grid-template-columns: repeat(1, 1fr);
    width: 75% !important;
  }
  ul.bxslider li .hero-message h2 {
    font-size: 22px;
    line-height: 25px;
  }
}

@media (max-width: 500px) {
  ul.bxslider li .hero-message {
    width: 80%;
    margin: 0 10%;
  }
  .center-tagline h1 {
    margin-top: 70%;
    line-height: 1em;
    padding: 20px;
    font-size: 22px;
    letter-spacing: 2px;
  }
  .programs {
    margin-top: -20px !important;
  }
  .staff .member {
    width: 80%;
    margin: 0 10%;
  }
  .staff img {
    width: 35%;
  }
}

@media (min-width: 900px) {
    .navbar-nav > li > a {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .navbar-right .dropdown-menu {
        left: 0;
        right: auto;
    }

    .navbar-right .dropdown-menu.last {
        left: auto;
        right: 0;
    }
}
@media (max-width:899px) {
  #navbar {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .navbar {
    min-height: 60px;
  }
  .navbar-nav {
    margin: 0;
  }
  .center-tagline h1 {
    line-height: 1.25em;
  }
  .navbar-nav  > li {
    border: 0 !important;
  }
}
@media only screen and (min-width: 500px) and (max-width: 769px) {
  body.home .col-sm-6 {
    width: 50%;
    float: left;
    padding-right: 10px;
    padding-left: 10px;
  }
}


/* Hellmann Display 2.0 (with Hapzing) */
body.page-template-new-hellmann .navbar, body.page-template-new-hellmann .footer, body.page-template-new-hellmann .copyright {
  display: none;
}

body.page-template-new-hellmann {
  background-color: #ffffff !important;
	margin-top: -20px;
}
