/* 
Welcome to the General CSS stylesheet! 
This stylesheet contains general styles for the site, including header and footer.
***NOTE: Please include media queries at the bottom of each section, not at the bottom of the file.***
CSS properties are alphabetical.
Thank you!

***IMPORTANT NOTE!!***
If you need to make small, specific to a single page, CSS changes please use the 'Custom CSS' flex field.
This allows you to make layout changes by targeting the specific ID of a flex content section.
Only make cross-site style changes within this file.


*/

/*----------General Layout----------*/

/* Nada! You can find this - typography, buttons, etc - in univeral.css. */

/*----------Header, Footer ----------*/

/* Nada! You can find this in univeral.css. */


/*----------- Banner --------------*/

.banner {
  min-height: 700px;
  padding: 50px 7%;
}

.banner-row {
  min-height: 500px;
}

.banner h1.headline {
  color: #00518A;
  font-size: 48px;
  margin-bottom: 10px;
}

.banner .sub-headline {
  font-size: 36px;
  line-height: 1.16;
/* fix for awkward spacing with french pricing */
padding-right: 25px;
  color: #00518A;
}

.banner .btn-wrapper {
  padding-top: 30px;
}

.banner .text-centre {
  text-align: center;
}

.banner .text-right {
  text-align: right;
  float: right;
}

.banner .text-left {
  text-align: left;
}

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


  .banner {
      /* EDIT THIS TO ADJUST THE HORIZONTAL PLACEMENT OF MOBILE BANNER */
      /* background-position-x: -800px !important;
      background-size: cover !important; */
	  max-height: 500px;
  }

  .banner .btn-wrapper{
      padding-top: 15px;
  }

  .banner h1.headline {
      font-size: 36px;
	  color: #00518A;
  }
  .banner .sub-headline {
      font-size: 27px;
	  color: #00518A;
  }

  .banner-row {
      padding-bottom: 50px;
      text-align: center;
  }
}



/*-------- Page Opener -------*/
.page-opener {
  padding-top: 25px;
  padding-bottom: 25px;
}

.page-opener a {
  color: #0079ad;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.page-opener a:hover {
  color: #005f87;
  text-decoration: none;
}

.page-opener h1 {
  color: #0079ad;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  margin: 23px auto;
}

.callout-text {
  font-family: 'Proxima-Nova', Helvetica, Arial;
  font-size: 30px;
  line-height: 1.2;
  margin: 22px auto;
}

.page-opener h3 {
  margin: 26px auto 8px;
}

@media (max-width: 768px) {
  .callout-text {
      font-size: 27px;
  }
  .page-opener {
      padding-bottom: 0px;
  }
}

@media (max-width: 576px) {
  .callout-text {
      font-size: 21px;
  }
}

/*-------- Stand out Text -------*/
.standout-text {
  padding: 25px 0;
}

.standout-text blockquote {
  color: #0079ad;
  font-family: 'Ubuntu Light', Ubuntu, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  margin: 10px auto 20px;
}

.home .standout-text blockquote {
  font-size: 30px;
}

.standout-text.larger blockquote {
  color: #364347;
  font-size: 36px;
}

@media (max-width: 768px) {
  .standout-text blockquote {
      font-size: 21px;
  }

  .standout-text.larger blockquote {
      font-size: 28px;
  }
}

/*-------- Secondary CTA -------*/
.secondary-cta {
  padding: 50px;
}

.secondary-cta .container {
  max-width: 941px !important;
}

.secondary-cta .col-sm-6 {
  min-height: 404px;
}

.secondary-cta .img-wrapper {
  padding: 0;
}

.secondary-cta .right-align-image .img-left {
  display: none !important;
}

.secondary-cta .content-wrapper {
  background-color: white;
  padding: 65px 44px 25px;
}

.secondary-cta .text-main {
  color: #364347;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  font-size: 30px;
  line-height: 1.34;
}

.secondary-cta .text-smaller {
  color: #364347;
  font-family: 'Proxima-Nova', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.secondary-cta ul {
  list-style: none;
  padding: 0;
}

.secondary-cta ul .sec-cta-list-item {
  border-radius: 14px;
  display: inline-block;
  height: 8px;
  margin-bottom: 3px;
  margin-right: 10px;
  width: 8px;
}

.secondary-cta .img-wrapper {
  background-color: #edfbff;
  display: flex;
  text-align: center;
  padding: 10px;
}

.secondary-cta .img-wrapper img {
  margin: auto;
  max-width: 100%;
}

.secondary-cta .btn-wrapper .btn {
  margin: 7px auto;
}

@media all (max-width: 991px) {
  .secondary-cta .text-main {
      font-size: 27px;
  }
}

@media all and (min-width: 769px) {
  .secondary-cta .left-align-image .img-right {
      display: none !important;
  }
}


@media all and (max-width: 768px) {
  
  .secondary-cta .left-align-image .img-left {
      display: none !important;
  }

  .secondary-cta .text-smaller {
      font-size: 18px;
  }
}

@media (max-width: 576px) {
  .secondary-cta .content-wrapper {
      padding: 25px 15px 25px;
  }
  .secondary-cta .col-sm-6 {
      min-height: 250px;
  }

  .secondary-cta .text-main {
      font-size: 21px;
  }

  .secondary-cta .text-smaller {
      font-size: 16px;
  }
}

/*-------- Secondary CTA - Two Items -------*/
.secondary-cta-two-items {
  padding: 50px;
}

.secondary-cta-two-items .container {
  max-width: 941px !important;
}

.secondary-cta-two-items .col-sm-6 {
  min-height: 404px;
}

.secondary-cta-two-items .img-wrapper {
  padding: 0;
}

.secondary-cta-two-items .right-align-image .img-left {
  display: none !important;
}

.secondary-cta-two-items .content-wrapper {
  background-color: white;
  padding: 25px 44px 25px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 400px;
}

@media screen and (max-width: 992px) {
	.secondary-cta-two-items .content-wrapper {
		justify-content: center;
	}
}

.secondary-cta-two-items .text-main {
  color: #364347;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  font-size: 30px;
  line-height: 1.34;
  text-align: center;
}

.secondary-cta-two-items .text-smaller {
  color: #364347;
  font-family: 'Proxima-Nova', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.secondary-cta-two-items ul {
  list-style: none;
  padding: 0;
}

.secondary-cta-two-items ul .sec-cta-list-item {
  border-radius: 14px;
  display: inline-block;
  height: 8px;
  margin-bottom: 3px;
  margin-right: 10px;
  width: 8px;
}

.secondary-cta-two-items .img-wrapper {
  background-color: #edfbff;
  display: flex;
  text-align: center;
  padding: 10px;
  min-height: 300px;
  max-width: 400px;
}

.secondary-cta-two-items .img-wrapper img {
  margin: auto;
  max-width: 100%;
}

.secondary-cta-two-items .btn-wrapper .btn {
  margin: 7px auto;
  white-space: break-spaces;
  line-height: 1.2;
  padding: 15px;
}

@media all (max-width: 991px) {
  .secondary-cta-two-items .text-main {
      font-size: 27px;
  }
}

@media all and (min-width: 769px) {
  .secondary-cta-two-items .left-align-image .img-right {
      display: none !important;
  }
}


@media all and (max-width: 768px) {
  
  .secondary-cta-two-items .left-align-image .img-left {
      display: none !important;
  }

  .secondary-cta-two-items .text-smaller {
      font-size: 18px;
  }
}

@media (max-width: 576px) {
  .secondary-cta-two-items .content-wrapper {
      padding: 25px 15px 25px;
  }
  .secondary-cta-two-items .col-sm-6 {
      min-height: 250px;
  }

  .secondary-cta-two-items .text-main {
      font-size: 21px;
  }

  .secondary-cta-two-items .text-smaller {
      font-size: 16px;
  }
}


/*-------- Form -------*/
section.form {
  padding: 40px 10px;
}

section.form .gform_wrapper .gform_footer input.button, 
section.form .gform_wrapper .gform_footer input[type=submit], 
section.form .gform_wrapper .gform_page_footer input.button, 
section.form .gform_wrapper .gform_page_footer input[type=submit] {
  font-size: 23px;
  padding: 6px 44px;
}

/*-------- Three-Across Cards -------*/
.three-across-cards {
  /* padding: 4px 0 60px; */
  padding-top: 25px;
  padding-bottom: 25px;
}

.three-across-cards .container {
  max-width: 1000px;
}

.three-across-cards .card {
  width: 100%;
}

.three-across-cards h1, .three-across-cards h3 {
  text-align: center;
}

.three-across-cards h1 {
  padding-top: 28px;
  padding-bottom: 5px;
}

.three-across-cards h3 {
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  font-weight: normal;
}

.three-across-cards .cards-row {
  /* margin-top: 28px; */
}

.three-across-cards .card * {
  background-position: center;
}

.card-top {
  min-height: 167px;
  background-size: cover;
  border-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
}

.three-across-cards .card-content {
  padding: 20px 20px;
  z-index: 2;
  text-align: center;
}

.three-across-cards .card-content h4 {
  font-family: 'Ubuntu Medium', Ubuntu, Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 17px;
}

.three-across-cards .card-content p {
  font-family: 'Proxima-Nova', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.cards-button-container {
  text-align: center;
  padding: 19px 0;
}

.card.above-text .card-top, /*These have to be same number, or cards don't match size */
.card.behind-text p {
  box-sizing
  padding-bottom: 35px; 
}

/*.card.above-text .card-top {
  background-size: cover;
  display: flex;
  flex: 1;
  position: relative;
}*/

.card.behind-text .behind-text-background {
  background-size: cover;
  display: flex;
  flex: 1;
  position: relative;
}

.card.behind-text .behind-text-background:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  content: '';
}

.card.behind-text .behind-text-background  .card-behind-text-content {
      background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.4));
      margin-top: auto;
      padding-bottom: 10px;
      width: 100%;
}

.card.behind-text .card-content h4, .card.behind-text .card-content p {
  color: white;
  z-index: 2;
  position: relative;
}

@media all and (min-width: 768px) {
  .three-across-cards .col-md-4 {
      display: flex;
  }

  .cards-button-container {
      margin-top: auto;
  }
}

@media all and (max-width: 768px) {

  .three-across-cards {
      padding-bottom: 10px;
  }

  .cards-button-container {
      padding-top: 0px;
  }
}

@media all and (max-width: 992px) {
  .card-top {
      min-height: 210px;
  }

  .three-across-cards .card {
      max-width: 400px;
      margin: 20px auto;
  }
}

/*-------- Three-Across Grid -------*/
.three-across-grid {
  padding: 20px 0;
}

.three-across-grid h1 {
  color: #0079ad;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  margin-bottom: 32px;
}

.three-across-grid .square {
  border-radius: 3px;
  padding: 11px 0;
  width: 100%;
}

.three-across-grid .square * {
  background-position: center;
}

.square-top {
  min-height: 167px;
  background-size: cover;
}

.three-across-grid .square-content {
  padding: 18px 0 0;
}

.three-across-grid a .square {
  font-size: 22px;
}

.three-across-grid a .square:hover {
  cursor: pointer;
  opacity: 0.8;
}

.three-across-grid *:hover {
  text-decoration: none;
}

.three-across-grid a .square h4 {
  font-family: 'Ubuntu Light', Ubuntu, sans-serif;
  font-size: 22px;
  margin-bottom: 4px;
}

.three-across-grid a .square p {
  font-family: 'Ubuntu Bold', Ubuntu, sans-serif;
  font-weight: bold;
}

.three-across-grid a .square.above-text h4 {
  color: #5e696d;
}

.three-across-grid a .square.above-text p {
  color: #93a4aa;
}

.three-across-grid a .square.behind-text h4, 
.three-across-grid a .square.behind-text p {
  color: white;
}

.squares-button-container {
  text-align: center;
  padding: 19px 0;
}

.square.above-text .square-top, 
.square.behind-text .behind-text-background {
  border-radius: 3px;
  min-height: 200px;
  padding: 0 18px;
}

.square.above-text .square-top, /*These have to be same number, or squares don't match size */
.square.behind-text p {
  box-sizing
  padding-bottom: 35px; 
}

/*.square.above-text .square-top {
  background-size: cover;
  display: flex;
  flex: 1;
  position: relative;
}*/

.square.behind-text .behind-text-background {
  background-size: cover;
  display: flex;
  flex: 1;
  position: relative;
}

.square.behind-text .behind-text-background:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  content: '';
}

.square.behind-text .behind-text-background  .square-behind-text-content {
      background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.4));
      margin-top: auto;
      padding-bottom: 10px;
      width: 100%;
}

.square.behind-text .card-content {
  position: relative;
  z-index: 3;
}

@media all and (min-width: 768px) {
  .three-across-grid .col-md-4 {
      display: flex;
  }

  .squares-button-container {
      margin-top: auto;
  }
}

@media all and (max-width: 992px) {
  .square-top {
      min-height: 210px;
  }
}
/*-------- Card and Image CTA -------*/
.card-and-image-cta {
  padding: 40px 0;
}

.card-image-card {
  background: #e5f1f7;
  border-radius: 3px;
  padding: 28px 20px 18px;
  text-align: center;
} 

.card-image-card img {
  margin-bottom: 25px;
}

.card-image-card h4 {
  color: #364447;
  font-family: 'Ubuntu Medium', Ubuntu, san-serif;
  font-size: 20px;
  margin-bottom: 16px;
}

.card-image-card p {
  color: #364447;
  font-family: 'Proxima-Nova', sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.card-image-card a.btn {
  margin-top: 12px;
}

.card-image-cta {
  background-size: cover;
  border-radius: 3px;
  display: flex;
  height: 100%;
}

.card-image-cta .container-fluid {
  color: white;
  display: flex;
  height: 100%;
  padding: 0 20px;
}

.card-image-cta .container-fluid .row {
  margin-top: auto;
  margin-bottom: 1rem;
  width: 100%;
}

.card-image-cta h4 {
  color: white;
  font-family: 'Ubuntu Medium', Ubuntu, san-serif;
  font-size: 24px;
  margin-bottom: 0px;
}

.card-image-cta p {
  color: white;
  font-family: 'Ubuntu Bold', Ubuntu, san-serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}

.card-image-cta .card-image-button {
  display: flex;
}

.card-image-cta .container-fluid a.btn-donate {
  margin-left: auto;
  margin-top: auto;
  height: fit-content;
}

@media (max-width: 576px) {
  .card-image-card img {
      margin-bottom: 16px;
      max-height: 100px;
  }

  .card-image-card h4 {
      margin-bottom: 10px;
  }

  .card-image-card a.btn {
      margin-top: 0;
  }

  .card-image-cta .container-fluid {
      background: rgba(0, 121, 173, 0.5);
      padding: 34px 0 0;
  }

  .card-image-cta .container-fluid .row {
      margin: 0 auto 1em;
  }

  .card-image-cta .card-image-text {
      margin: 38px auto 22px;
      text-align: center;
  }

  .card-image-cta .container-fluid a.btn-donate {
      margin: 0 auto 30px;
  }
}

/*-------- Main Content -------*/
.main-content {
  margin: 30px 0;
}

.main-content h1 {
  color: #0079ad;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  font-weight: normal;
}

.main-content h2 {
  color: #5e696d;
  font-family: 'Ubuntu Bold', Ubuntu, sans-serif;
  font-size: 24px;
  font-weight: bold;
}

.main-content img {
  max-width: 100%;
}

.main-content .contact-info {
  margin: 18px auto 50px;
}

.main-content h4 {
  color: #5e696d;
  font-family: 'Ubuntu Medium', Ubuntu, Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 0;
}

.main-content h6 {
  color: #93a4aa;
  font-family: 'Ubuntu Bold', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}

.main-content a {
  color: #0079ad;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.main-content a:hover {
  color: #005f87;
  text-decoration: none;
}

.main-content p {
  margin-bottom: 10px;
}

.main-content i.ss-icon {
  font-size: 18px;
  margin-right: 8px;
}

/*-------- Dividing Line -------*/
hr {
  border-top: 1px solid #62cae3;
  margin: 30px 0;
  width: 100%;
}

/*-------- Button Wrapper -------*/
section.buttons {
  padding: 20px 20px;
}

.btn-wrapper {
  margin-top: 5px;
  margin-bottom: 5px;
}

.btn-wrapper.centre {
  text-align: center;
}

/*-------- Video -------*/
.video {
  text-align: center;
  margin: 30px auto;
  padding: 54px 0 43px;
}

.video h1 {
  color: #005f87;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  line-height: 1.2
  margin-bottom: 0;
}

.video h3 {
  color: #0079ad;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.video-container {
  margin: 32px auto;
}

.video-wrapper * {
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  border: 0;
}

.video h4 {
  color: #5e696d;
  font-family: 'Proxima-Nova', Helvetica, Arial, sans-serif;
  font-size: 25px;
  line-height: 1.2;
  margin: auto;
  max-width: 840px;
}

/*-------- Google Map -------*/
.google-map {
  text-align: center;
  padding: 30px 0;
}

.google-map h1 {
  color: #005f87;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  line-height: 1.2
  margin-bottom: 0;
}

.google-map h3 {
  color: #0079ad;
  font-family: 'Ubuntu Medium', Ubuntu, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

/*-------- Programs Page Message -------*/
.programs-page-message {
  margin: 10px auto 11px;
}

.programs-page-message .container {
  background: #e5f7f6;
  border-radius: 3px;
}

.programs-page-message .container .col-12 {
  padding: 30px 24px 29px;
}

.programs-page-image-container {
  border-right: 1px solid #00aca2;
  text-align: center;
}

.programs-page-message .container .programs-page-image-container img {
  max-height: 90px;
}

.programs-page-message .col-sm-3 {
  text-align: center;
}

.programs-page-message h5 {
  color: #00aca2;
}

.programs-page-message p {
  color: #00aca2;
}

.programs-page-message .container .col-12.programs-button-container {
  align-items: center;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .programs-page-message .container {
      padding-bottom: 8px;
  }

  .programs-page-message .container .programs-page-image-container {
      border-right: 0;
  }

  .programs-page-message .container .programs-page-image-container img {
      max-height: 152px;
  }

  .programs-page-message .container .col-12 {
      padding: 24px 24px 14px;
  }

  .programs-page-message .container .col-12.programs-button-container {
      padding-top: 0;
  }

  .programs-page-message .container a.btn.btn-programs, a.btn.btn-programs:visited {
      display: block;
  }
}

/*-------- Email Signup -------*/
.email-signup {
  background: #b0e4f1;
  text-align: center;
  padding: 61px 10px 69px;
}

.email-signup h3 {
  color: #005f87;
}

.email-signup h4 {
  color: #0079ad;
  font-size: 20px;
}

.email-signup .form-body {
  margin-top: 23px;
}

.email-signup .col-md-3 {
  /* padding: 0; */
}

.email-signup input {
  border: 1px solid #d6e1e5;
  border-radius: 0;
  color: #b2c6cd;
  font-family: 'Proxima-Nova', sans-serif; 
  font-size: 16px;
  min-height: 50px;
}

.email-signup input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #b2c6cd;
  opacity: 1; /* Firefox */
}

.email-signup input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b2c6cd;
}

.email-signup input::-ms-input-placeholder { /* Microsoft Edge */
  color: #b2c6cd;
}

.email-signup .btn.btn-email {
  border: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  color: white;
  /* display: flex; */
  /* margin-right: auto; */
}

@media (min-width: 992px) {
  .email-signup .form-body {
      /* margin-left: 46px; */
  }
}

@media (max-width: 768px) {
  .email-signup .btn.btn-email {
      border-radius: 3px;
      margin: auto;
  }
}

/*-------- Tabbed Content -------*/
section.tabbed-content {
  /* padding: 0 0 40px; */
}

section.tabbed-content .square-top {
  background-size: cover !important;
  background-position: center !important;
  margin-bottom: 10px;
  max-width: 300px;
}

.tabbed-content-tabs {
  background: #d2f4fc;
  margin-bottom: 40px;
  padding: 28px 0;
  /* text-align: center; */
}

.tab-header.active {
  background: #0678ad;
  color: white;
}

.tabbed-content-tabs a.tab-header.active:hover {
  color: white;
}

.tabbed-content-tabs a.tab-header.active:before {
  width: 0;
  position: absolute;
  content: '';
  height: 0;
  margin: 54px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #d2f4fc;
}

.new-tab {
  display: none;
}

#section-tab-1 {
  display: block;
}

.tabbed-content ul {
  margin: 0;
  padding-left: 0px;
}

.tabbed-content ul li {
  display: inline-block;
}

.tab-header {
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 4px;
}

.row.with-desc {
  margin-bottom: 10px;
}

.tab-box-description p {
  margin-top: 10px;
}

.tabbed-content h4 {
  color: #5e696d;
  font-family: 'Ubuntu Medium', Ubuntu, Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 0;
}

.tabbed-content h6 {
  color: #93a4aa;
  font-family: 'Ubuntu Bold', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

.tabbed-content a {
  color: #0079ad;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.tabbed-content a:hover {
  color: #005f87;
  text-decoration: none;
}

.square .above-text .square-top {
  text-align: center;
}

.tabbed-content .square-content {
  text-align: center;
}

@media (max-width: 576px) {
  .tabbed-content-tabs {
      padding: 0;
  }

  .tab-header {
      font-size: 20px;
  }
  

  .tabbed-content ul li {
      display: block;
      margin: 23px auto;
      text-align: center;
  }
  .tabbed-content-tabs a.tab-header.active:before {
      display: none;
  }
  
  .tabbed-content .square-top,
  .tabbed-content .contact-info {
      margin: auto;
      text-align: center;
  }

  .tab-box-description p {
      margin-bottom: 35px;
  }

  .tabbed-content-tabs .square.above-text .square-top, .square.behind-text p {
      margin: auto;
  }
}

/* ------- Navigational Module -------- */

.navigational-module {
  background-color: #e5f7f6;
  padding: 20px 5px;
}

.navigational-module p,
.navigational-module h5 {
  color: #00aca2;
}

.navigational-module p {
 margin-bottom: 0px; 
}

.navigational-module .image-column {
  border-right: 1px solid #00aca2;
}

@media (max-width: 768px) {
  .navigational-module {
      text-align: center;
  }

  .navigational-module p {
      padding-bottom: 20px;
  }
}


/*-------- Our History (on About Page) -------*/
section.history-module {
  margin: 20px auto;
  padding: 50px 0 62px;
}

.history-module h1 {
  font-size: 36px;
  margin-bottom: 31px;
}

.history-module p {
  font-family: 'Ubuntu Light', Ubuntu, sans-serif;
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 62px;
}

/* ---- Corporate Partners Module ---- */

section.corporate-partners-module {
  margin-top: 20px;
  margin-bottom: 20px;
}

.corporate-partners-module img {
  max-height: 100px;
}

.corporate-partners-module .gift-range-row {
  margin-bottom: 10px;
}

.corporate-partners-module .partner-column {
  min-height: 25px;
  padding: 10px 0px;
}

.corporate-partners-module .partners-row {
  margin-bottom: 25px;
}

/* ---- Three Column Stats ---- */

section.three-column-stats {
  background-color: #521457;
  color: #FFF;
  text-align: center;
  padding: 40px 0px;
}

.three-column-stats h2 {
  font-family: 'Ubuntu Light', Ubuntu, sans-serif;
}

.three-column-stats h5 {
  color: #FFF;
}

.three-column-stats p {
  color: #FFF;
}

.three-column-stats img {
  margin-bottom: 20px;
  max-height: 100px;
}

.three-column-stats-column {
  padding-top: 30px;
}

.three-column-stats-row {
  /* padding-top: 30px; */
}

@media (max-width: 768px) {
  .three-column-stats h3 {
      font-size: 24px;
  }

  .three-column-stats p {
      font-size: 18px;
  }
}

/* --- Big Image --- */

.big-image img {
  border-radius: 0.25em;
}

@media (max-width: 768px) {

}

/* --- Emergency Bar --- */
.emerg-bar-wrapper {
  width: 100%;
}
.emergency_bar .emergency_button{
  border: 1px solid #fff;
  border-radius: 3px;
  color:white;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.9;
  margin: 5px;
  max-width: 170px;
  padding: 4px 20px;
  text-align: center;
  white-space: nowrap;
}
.emergency_button_wrapper{
  display: inline-block;
  color:white;
}
.emergency_content{
  color: white;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 20px;
}
.emergency_bar{
  margin: 0 auto;
  padding: 20px 15px;
}
.emerg-btn {
  border: 1px solid #fff;
  border-radius: 3px;
  flex: 1 1 70px;
  margin: 5px;
  padding-left: 0;
  padding-right: 0;
  min-width: 70px;
  max-width: 130px;
  width: 100%;
}
@media (min-width: 768px) {
  .emergency_content {
      margin-bottom: 0;
      padding-left: 32px;
  }
  .emergency_bar .emergency_button:hover {
      background-color: #6ad11b !important;
  }
  .emergency_bar .emergency_button,
  .emerg-btn {
      margin: 5px 8px;
  }
}

/* custom boostrap, equal row of 5 columns  */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
      width: 20%;
      float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
      width: 20%;
      float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
      width: 20%;
      float: left;
  }
}


