/*jax blue = #1CCDEA*/

.m-b-30 {
  margin-bottom: 30px !important;
}

.Grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.Grid-cell {
  flex: 1;
}

.Grid--flexCells > .Grid-cell {
  display: flex;
}

.Grid--top {
  align-items: flex-start;
}

.Grid--bottom {
  align-items: flex-end;
}

.Grid--center {
  align-items: center;
}

.Grid--justifyCenter {
  justify-content: center;
}

.Grid-cell--top {
  align-self: flex-start;
}

.Grid-cell--bottom {
  align-self: flex-end;
}

.Grid-cell--center {
  align-self: center;
}

.Grid-cell--autoSize {
  flex: none;
}

.Grid--fit > .Grid-cell {
  flex: 1;
}

.Grid--full > .Grid-cell {
  flex: 0 0 100%;
}

.Grid--1of2 > .Grid-cell {
  flex: 0 0 50%;
}

.Grid--1of3 > .Grid-cell {
  flex: 0 0 33.3333%;
}

.Grid--1of4 > .Grid-cell {
  flex: 0 0 25%;
}

@media (--break-sm) {
  .small-Grid--fit > .Grid-cell {
    flex: 1;
  }
  .small-Grid--full > .Grid-cell {
    flex: 0 0 100%;
  }
  .small-Grid--1of2 > .Grid-cell {
    flex: 0 0 50%;
  }
  .small-Grid--1of3 > .Grid-cell {
    flex: 0 0 33.3333%;
  }
  .small-Grid--1of4 > .Grid-cell {
    flex: 0 0 25%;
  }
}

@media (--break-md) {
  .med-Grid--fit > .Grid-cell {
    flex: 1;
  }
  .med-Grid--full > .Grid-cell {
    flex: 0 0 100%;
  }
  .med-Grid--1of2 > .Grid-cell {
    flex: 0 0 50%;
  }
  .med-Grid--1of3 > .Grid-cell {
    flex: 0 0 33.3333%;
  }
  .med-Grid--1of4 > .Grid-cell {
    flex: 0 0 25%;
  }
}

@media (--break-lg) {
  .large-Grid--fit > .Grid-cell {
    flex: 1;
  }
  .large-Grid--full > .Grid-cell {
    flex: 0 0 100%;
  }
  .large-Grid--1of2 > .Grid-cell {
    flex: 0 0 50%;
  }
  .large-Grid--1of3 > .Grid-cell {
    flex: 0 0 33.3333%;
  }
  .large-Grid--1of4 > .Grid-cell {
    flex: 0 0 25%;
  }
}

.Grid--gutters {
  margin: -1em 0 1em -1em;
}

.Grid--gutters > .Grid-cell {
  padding: 1em 0 0 1em;
}

.Grid--guttersLg {
  margin: -1.5em 0 1.5em -1.5em;
}

.Grid--guttersLg > .Grid-cell {
  padding: 1.5em 0 0 1.5em;
}

.Grid--guttersXl {
  margin: -2em 0 2em -2em;
}

.Grid--guttersXl > .Grid-cell {
  padding: 2em 0 0 2em;
}

@media (--break-sm) {
  .small-Grid--gutters {
    margin: -1em 0 1em -1em;
  }
  .small-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em;
  }
  .small-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em;
  }
  .small-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em;
  }
  .small-Grid--guttersXl {
    margin: -2em 0 2em -2em;
  }
  .small-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em;
  }
}

@media (--break-md) {
  .med-Grid--gutters {
    margin: -1em 0 1em -1em;
  }
  .med-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em;
  }
  .med-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em;
  }
  .med-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em;
  }
  .med-Grid--guttersXl {
    margin: -2em 0 2em -2em;
  }
  .med-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em;
  }
}

@media (--break-lg) {
  .large-Grid--gutters {
    margin: -1em 0 1em -1em;
  }
  .large-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em;
  }
  .large-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em;
  }
  .large-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em;
  }
  .large-Grid--guttersXl {
    margin: -2em 0 2em -2em;
  }
  .large-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em;
  }
}

.Aligner {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  /* Safari 6.1+ */
  justify-content: center;
  height: 100%;
}

.Aligner-item {
  flex: 1;
}

.Aligner-item--top {
  align-self: flex-start;
}

.Aligner-item--bottom {
  align-self: flex-end;
}

.twelvehundred {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 3em;
}

/*---------------------------*
 * BOOTSTRAP CHANGES / ADDITIONS
 *---------------------------*/

.btn {
  font-family: AmsiPro-Black, Montserrat, sans-serif;
  letter-spacing: 0.21416666666667em;
  border-radius: 0;
  padding: 1em 2em;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
/*  font-weight: bold;*/
}

.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
}

.btn.btn-no-caps {
  text-transform: none;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 1.5em 2.5em;
  font-size: 14px;
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 5px 10px;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.btn.btn-text {
  background: transparent;
  color: black;
  border-color: transparent;
  padding: 0;
  margin: 0;
}

.btn.btn-text:active,
.btn.btn-text:focus {
  background: transparent;
  outline: none;
}

.btn-black {
  background-color: #000;
}

.btn-black:hover {
  background-color: #333;
}

.btn-black a {
  color: #fff;
}

.btn-black a:hover {
  color: #fff;
}

.lead {
  font-size: 18px;
  line-height: 1.25;
}

@media ( min-width: 768px) {

  .lead {
    font-size: 20px;
  }

}

@media ( min-width: 1200px) {

  .lead {
    font-size: 24px;
  }

}

.form-control {
  border-radius: 0;
}

.input-lg {
  font-size: 14px;
}


@media( min-width: 768px) {
  .col-sm-pull-right {
    float: right !important;
  }

  .col-sm-spacing-right {
    padding-right: 70px !important;
  }

  .col-sm-spacing-left {
    padding-left: 70px !important;
  }
}

@media( min-width: 992px) {
  .col-md-pull-right {
    float: right !important;
  }

  .col-md-spacing-right {
    padding-right: 70px !important;
  }

  .col-md-spacing-left {
    padding-left: 70px !important;
  }
}

@media( min-width: 1200px) {
  .col-lg-pull-right {
    float: right !important;
  }

  .col-lg-spacing-right {
    padding-right: 70px !important;
  }

  .col-lg-spacing-left {
    padding-left: 70px !important;
  }
}

.list-inline > li {
  padding-left: 0;
  padding-right: 0;
}

.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom: none;
}

.modal-header .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
}

.modal-title {
  color: #D3D3D3;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.14285714285714em;
  font-size: 1em;
}

.modal-footer {
  border-top: none;
}

.col-xs-stretch {
  padding-left: 0;
  padding-right: 0;
}

@media( min-width: 1200px) and ( max-height: 800px) {
  .single-jc-sermon .container,
  .single-jc-media-post .container {
    width: 970px;
  }

}

.widget_nav_menu {
  list-style: none;
}


/*---------------------------*
 * GENERAL SETTINGS
 *---------------------------*/

html,
body {
  width: 100%;
}

html {
  overflow-y: scroll;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  background-color: black;
  overflow-x: hidden;
}

.vc_row {
  background-color: white;
}

.jc-section {
  background-color: white;
}

button {
  font-family: Montserrat, sans-serif;
  border-radius: 0;
}

p {
/*  color: #777;*/
  color: #404040;
  font-size: 1em;
  line-height: 1.85;
  font-weight: 300;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  margin-top: 0;
}

ul li {
  padding-bottom: .25em;
  font-weight: 300;

}

ol,
ul {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #777;
  font-size: 1em;
  line-height: 1.75;
  font-weight: 300;
}

input[type="text"] {
  padding: 5px 10px;
  font-size: 16px;
}

.jc-full-height-xs {
  min-height: 100vh;
}

.jc-lowercase-first::first-letter,
.jc-lowercase-first:first-letter,
.jc-lowercase-first *::first-letter,
.jc-lowercase-first *:first-letter {
  text-transform: lowercase !important;
}

@media ( max-width: 767px) {

  .jc-normal-height-xs {
    height: auto !important;
  }

}

@media ( min-width: 768px) {
  .jc-content-center {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;

    align-items: center;
  }

  .container.jc-content-center {
    padding-left: 0;
    padding-right: 0;
  }

  .container.jc-content-center > .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}


.col-xs-stretch {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media( min-width: 768px) {

  .col-sm-pad {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.jc-row-o-content-middle {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;

  align-items: center;
}

.jc-section {
  padding: 5em 0;
}

.jc-section.jc-section-light,
.jc-section.jc-section--light {
  background-color: #F2F2F2;
}

.jc-section.jc-section-dark,
.jc-section.jc-section--dark {
  background-color: black;
}

.jc-section.jc-section--gray {
  background-color: #222;
}

.jc-section.jc-section--light-gray {
  background-color: #E8E8E8;
}

.jc-section.jc-section--short {
  padding: 1.5em 0;
}

.jc-section.jc-section--no-padding {
  padding: 0;
}

.jc-section.jc-section--has-title {
  padding-top: 3em;
}

.jc-section .jc-section__title {
  margin-bottom: 1em;
  text-align: center;
}

.jc-section.jc-section--show-single-sermon {
  padding-top: 7em;
}

.jc-section--404 {
  color: white;
}

.jc-section--404 .btn-text {
  color: white;
}

.jc-section--404 .btn-lg {
  margin-bottom: 1em;
}

.jc-section--404 h2 {
  margin-bottom: 20px;
}

.jc-page-header {
  height: 80vh;
	max-height: 75rem;
  background-color: black;
  background-size: cover;
  background-position: top center; // added on 09/13/17 
}

.jc-page-header .btn-lg:hover {
  background-color: #efefef;
  border-color: #efefef;
}

.jc-page-header.jc-page-header--short {
  max-height: 350px;
}

@media( min-width: 768px) {
  .single-jc-location .jc-page-header.jc-page-header--short {
    max-height: 450px;
  }
}



/*---------------------------*
 * VC OVERRIDES / ADDITIONS
 *---------------------------*/

body .wpb_button,
body .wpb_content_element,
body .wpb_row,
body ul.wpb_thumbnails-fluid > li {
  margin-bottom: 0;
}

.vc_video-bg {
  object-fit: cover;
  object-position: top center;
}

.vc_row {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  opacity: 0;
  position: relative;
}

.vc_mobile .jc-video-bg {
  display: none;
}

.jc-bg-image {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  top: 0;
  left: 0;
}

.jc-row-o-full-height {
  height: 100vh;
}

.jc-full-screen-video {
  background: black;
}

.vc_col-lg-1,
.vc_col-lg-10,
.vc_col-lg-11,
.vc_col-lg-12,
.vc_col-lg-2,
.vc_col-lg-3,
.vc_col-lg-4,
.vc_col-lg-5,
.vc_col-lg-6,
.vc_col-lg-7,
.vc_col-lg-8,
.vc_col-lg-9,
.vc_col-md-1,
.vc_col-md-10,
.vc_col-md-11,
.vc_col-md-12,
.vc_col-md-2,
.vc_col-md-3,
.vc_col-md-4,
.vc_col-md-5,
.vc_col-md-6,
.vc_col-md-7,
.vc_col-md-8,
.vc_col-md-9,
.vc_col-sm-1,
.vc_col-sm-10,
.vc_col-sm-11,
.vc_col-sm-12,
.vc_col-sm-2,
.vc_col-sm-3,
.vc_col-sm-4,
.vc_col-sm-5,
.vc_col-sm-6,
.vc_col-sm-7,
.vc_col-sm-8,
.vc_col-sm-9,
.vc_col-xs-1,
.vc_col-xs-10,
.vc_col-xs-11,
.vc_col-xs-12,
.vc_col-xs-2,
.vc_col-xs-3,
.vc_col-xs-4,
.vc_col-xs-5,
.vc_col-xs-6,
.vc_col-xs-7,
.vc_col-xs-8,
.vc_col-xs-9 {
  /*
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    */
}

body .vc_col-has-fill > .vc_column-inner,
body .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner {
  padding-top: 0;
}

/*---------------------------*
 * HOME PAGE CLASSES
 *---------------------------*/

/*---------------------------*
 * GENERAL CLASSES
 *---------------------------*/

/*---------------------------*
 * SITE WRAPPER
 *---------------------------*/

.jc-site-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}



/*---------------------------*
 * LOADING GIF
 *---------------------------*/

.jc-loading {
  height: 100px;
  width: 100px;
  background-image: url('assets/img/loading_gif_logo.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: inline-block;
}

.jc-loading:after {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: '';
  background-image: url('assets/img/loading_gif_circle.png');
  position: absolute;
  background-size: 100%;
  -webkit-animation: spin .75s linear infinite;
  -moz-animation: spin .75s linear infinite;
  animation: spin .75s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



/*---------------------------*
 * MENU BUTTON
 *---------------------------*/

.jc-menu-button__wrapper {
  right: 15px;
  height: 60px;
  position: absolute;
  z-index: 100;
  cursor: pointer;
}

.jc-menu-button--live {
  color: white;
  background-color: black;
  border: none;
  margin-top: 9px;
  position: relative;
  left: 10px;
  cursor: pointer;
}

.jc-menu-button {
  height: 60px;
  width: 65px;
  display: block;
  position: relative;
  z-index: 1;
  top: 0;
  padding: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  float: right;
  right: -15px;
  cursor: pointer;
}

.jc-menu-button__line {
  float: left;
  position: relative;
  height: 2px;
  width: 100%;
  background-color: black;
  transition: all .3s ease-in-out;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  transform-origin: left center;
  cursor: pointer;
}

.jc-menu-button--line-1 {
  top: 0;
}

.jc-menu-button--line-2 {
  top: 7px;
  opacity: 1;
}

.jc-menu-button--line-3 {
  top: 14px;
}

.jc-menu-open .jc-menu-button__line {
  background-color: white;
}

.jc-menu-open .jc-menu-button .jc-menu-button--line-1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
  /*for IE*/
}

.jc-menu-open .jc-menu-button .jc-menu-button--line-2 {
  opacity: 0;
}

.jc-menu-open .jc-menu-button .jc-menu-button--line-3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
  /*for IE*/
}

@media ( min-width: 768px) {

  .jc-menu-button--live {
    background-color: #ccc;
    background-color: rgba(255, 255, 255, 0.4);
  }

  .jc-menu-button__wrapper {
    height: 100px;
    padding-top: 30px;
    right: 40px;
    top: -10px;
  }

  .jc-menu-button__line {
    background-color: white;
  }

}


/*---------------------------*
 * HEADER
 *---------------------------*/

.jc-site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  line-height: 30px;
  vertical-align: middle;
  height: 60px;
  transition: all .4s ease-in-out;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
  background-color: white;
}

/*
.jc-site-header__mobile-overlay .jc-site-header {
    position: absolute;
    background-color: transparent;
    color: white;
}

.jc-site-header__mobile-overlay .jc-logo--dark {
    display: none;    
}

.jc-site-header__mobile-overlay .jc-logo--light {
    display: inline-block;
}

.jc-site-header__mobile-overlay .jc-menu-button__line {
    background-color: white;
}
*/

.jc-menu-open .jc-site-header {
  background-color: transparent;
}

.jc-menu-open .jc-site-header .jc-logo--dark {
  display: none;
}

.jc-site-header.menu-active .jc-logo--light {
  display: inline;
}

.jc-header__wrapper {
  display: table;
  width: 100%;
  height: 60px;
}

.jc-header-content__wrapper {
  display: table-row;
}

.jc-site-header .jc-header-content {
  display: table-cell;
  vertical-align: middle;
}

.jc-site-header .jc-header-content > a {
  display: inline-block;
}

.jc-header-content__wrapper {
  position: relative;
}

.jc-logo {
  display: none;
}

.jc-logo--mobile {
  height: 30px;
  width: 30px;
}

.jc-logo--light {
  display: none;
}

.jc-menu-open .jc-logo--light {
  display: inline;
}

.jc-menu-open .jc-logo--dark {
  display: none;
}



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

  .jc-logo--mobile {
    display: none !important;
  }

  .jc-logo {
    display: unset;
    height: 55px;
  }

  .jc-site-header {
    height: 100px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: transparent;
    z-index: 10;
    position: absolute;
  }

  .jc-header__wrapper {
    height: 100px;
  }

  .jc-content-left,
  .jc-content-right {
    width: 175px;
  }

}


/*---------------------------*
 * SIDE NAV
 *---------------------------*/

.jc-side-nav {
  width: 100%;
  max-width: 100%;
  right: 0;
  top: 0;
  height: 100vh;
  background-color: #333;
  background-color: rgba( 0, 0, 0, 0.9);
  position: fixed;
  opacity: 0;
  z-index: -1;
  transition: all .2s ease-in-out;
  padding-top: 80px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 140px;
  text-align: center;
  overflow-x: hidden;
  overflow-y: scroll;
}

.jc-side-nav .jc-side-nav__scroll-wrapper {
  overflow-y: scroll;
}

.jc-menu-open .jc-side-nav {
  z-index: 11;
  opacity: 1;
}

.jc-side-nav a {
  color: #a3a3a3;
  transition: all 0.15s ease-in-out;
  display: block;
}

.jc-side-nav__main a {
  color: white;
}

.jc-side-nav a:hover {
  color: white;
}

.jc-side-nav__main:hover a {
  color: #a3a3a3;
}

.jc-side-nav__main:hover a:hover {
  color: white;
}

.jc-side-nav__main .menu,
.jc-side-nav__secondary .menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2em;
}

.jc-side-nav__main .menu {
  font-family: Montserrat, sans-serif;
}

.jc-side-nav__secondary .menu {}

.jc-side-nav__main .menu-item {}

.jc-side-menu__title {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #a3a3a3;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.5;
}

.jc-side-nav__main a {
  font-size: 14px;
  line-height: 2;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.21428571428571em;
}

.jc-side-nav__secondary a {
  line-height: 2;
}

.jc-side-nav__main a:hover,
.jc-side-nav__main a:active,
.jc-side-nav__main a:focus,
.jc-side-nav__secondary a:hover,
.jc-side-nav__secondary a:active,
.jc-side-nav__secondary a:focus {
  text-decoration: none;
}

@media (min-width: 768px) {

  .jc-side-nav {
    width: 320px;
    text-align: left;
    right: -20px;
  }

  .jc-side-menu__title {
    color: #a3a3a3;
  }

}




/*---------------------------*
 * MAIN NAV
 *---------------------------*/

.jc-main-nav {
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-family: AmsiPro-Bold, Montserrat, sans-serif;
  letter-spacing: 0.11142857142857em;
  font-size: 13px;
  display: none;
  margin-bottom: 0;
  font-weight: 700 !important;
}

.jc-main-nav.list-inline li {
  margin-left: 10px;
}

.jc-main-nav.list-inline li:first-child {
  margin-left: 0;
}

.jc-main-nav a {
  color: white;
  transition: all 0.15s ease-in-out;
}

.jc-header--dark .jc-main-nav a {
  color: black;
}

.no-touch .jc-main-nav:hover .menu-item a {
  color: #bbb;
}

.no-touch .jc-main-nav:hover .menu-item:hover a {
  text-decoration: none;
  color: white;
}

.menu-item {
  position: relative;
}

.menu-item .external-link:after {
  content: '';
  font-family: FontAwesome;
  display: inline-block;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  color: inherit;
  opacity: 0.5;
  font-size: 10px;
  position: absolute;
  top: 1px;
}

@media screen and ( min-width: 1000px) {

  .jc-main-nav {
    display: block;
  }

}


@media screen and ( min-width: 1200px) {

  .jc-main-nav.list-inline li {
    margin-left: 1em;
  }

}



/*---------------------------*
 * SCRIM
 *---------------------------*/

.jc-overlay-scrim {
  background-color: black;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}


/*---------------------------*
 * CALL TO ACTION
 *---------------------------*/

.vc_cta3-container {
  color: white;
  max-width: 450px;
}

.vc_cta3-container h2 {
  font-size: 36px;
  font-weight: 300;
}

.vc_cta3-container h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.vc_general.vc_cta3 .vc_cta3-actions {
  text-align: center;
}

.vc_btn3 {
  border-radius: 0 !important;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  color: #333 !important;
}

body .vc_btn3.vc_btn3-size-md {
  padding: 18px 48px;
}


/*---------------------------*
 * EC CALL TO ACTION
 *---------------------------*/

.jc-call-to-action {
  text-align: center;
}

.jc-call-to-action .jc-call-to-action__title {
  color: white;
  font-size: 36px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.22;
}

.jc-call-to-action .jc-call-to-action__subtitle {
  color: white;
  font-size: 18px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 25px;
  line-height: 1.5;
}

.jc-call-to-action .jc-call-to-action__button {
  background-color: white;
  color: black;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.30428571428571em;
  padding: 16px 25px;
  display: inline-block;
}

.jc-call-to-action .jc-call-to-action__button:hover {
  text-decoration: none;
}


@media screen and ( min-width: 1000px) {

  .jc-call-to-action .jc-call-to-action__title {
    font-size: 44px;
  }

}


/*---------------------------*
 * POP UP
 *---------------------------*/

.wpdb-background {
  display: none;
}



/*---------------------------*
 * SERMON GRID
 *---------------------------*/

body .jc-sermon-grid .jc-sermon {
  position: relative;
  margin-bottom: 30px;
  background-color: #222;
}

.jc-sermon-grid .jc-sermon:before {
  content: ' ';
  position: absolute;
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  margin-top: -30px;
  background-image: url('/wp-content/themes/jaxchurch/assets/img/play-button.png');
  background-size: 60px;
  opacity: 1;
  transition: all .15s ease-in-out;
}

.jc-sermon-grid .jc-sermon:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  opacity: 0.5;
/*  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);*/
  /* FF3.6-15 */
/*  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);*/
  /* Chrome10-25,Safari5.1-6 */
/*  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);*/
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=0);*/
  /* IE6-9 */
}



.jc-sermon-grid .jc-sermon__info {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white;
  padding: 15px;
  z-index: 10;
}

.jc-sermon__has-series .jc-sermon__info-text {
  margin-left: 60px;
}

.jc-sermon-grid .jc-sermon__title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.25;
}

.jc-sermon-grid .jc-sermon__info p {
  margin-bottom: 0;
}

.jc-sermon-grid .jc-sermon__series-thumbnail {
  float: left;
  width: 50px;
  height: auto;
  margin-right: 15px;
  border: 2px solid white;
}

.jc-sermon-grid .jc-sermon__type {
  font-size: 12px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  letter-spacing: 0.14285714285714em;
  color: white;
}


@media ( min-width: 768px) {

  .jc-sermon-grid .jc-sermon__info {
    padding: 20px;
  }

  .jc-sermon-grid .jc-sermon__title {
    font-size: 24px;
  }

  .jc-sermon-grid .jc-sermon__type {
    font-size: 14px;
  }

  .jc-sermon-grid .jc-sermon__series-thumbnail {
    width: 60px;
  }

  .jc-sermon__has-series .jc-sermon__info-text {
    margin-left: 70px;
  }

  .jc-sermon-grid .jc-sermon:before {
    content: ' ';
    position: absolute;
    height: 60px;
    width: 60px;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -30px;
    background-image: url('/wp-content/themes/jaxchurch/assets/img/play-button.png');
    background-size: 60px;
    opacity: 0;
    transition: all .15s ease-in-out;
  }

  .jc-sermon-grid .jc-sermon:hover:before {
    opacity: 1;
  }

}


/*---------------------------*
 * RESPONSIVE VIDEO
 *---------------------------*/

.jc-responsive-video {
  position: relative;
}

.jc-responsive-video .jc-responsive-video__bg-img {
  position: absolute;
  top: 0;
  left;
  0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  opacity: 1;
  transition: all .5s ease-in-out;
}

.jc-responsive-video .jc-responsive-video__bg-img.video-playing {
  opacity: 0;
}



/*---------------------------*
 * SINGLE SERMON
 *---------------------------*/

.jc-single-sermon__share-images.list-inline > li {
  padding-left: 10px;
  padding-right: 10px;
}

.jc-single-sermon__type {
  color: #8D8D8D;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16666666666667em;
}

.single-jc-sermon .jc-section--show-single-sermon {
  padding-top: 0;
  padding-bottom: 0;
}

.single-jc-sermon .jc-site-header {
  position: relative;
}

.single-jc-sermon .jc-single-sermon__video-container {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1em;
}

.jc-single-sermon__video-container iframe:nth-child(2) {
  opacity: 0;
}

.vc_mobile .jc-single-sermon__video-container iframe:nth-child(2) {
  display: none;
}

@media ( min-width: 768px) {
  .single-jc-sermon .jc-single-sermon__video-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .single-jc-sermon .jc-section--show-single-sermon {
    padding-bottom: 5em;
  }

  .single-jc-sermon.admin-bar .jc-menu-button__wrapper {
    padding-top: 62px;
  }
}



/*---------------------------*
 * FULL SCREEN VIDEO BG
 *---------------------------*/


/*
.jc-video-bg {
  object-fit: cover;
  object-position: top center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
*/

.jc-video-bg {
  object-fit: cover;
  object-position: top center;

  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
}

.home.jc-video-bg {
  object-fit: fill;
  position: fixed;

  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
} 


/*---------------------------*
 * FULL SCREEN VIDEO BG
 *---------------------------*/

.jc-full-screen-video .jc-title {
  color: white;
  font-size: 48px;
  line-height: 41px;
  opacity: 1;
  margin-bottom: 15px;
  z-index: 1;
}

.jc-full-screen-video .jc-subtitle {
  color: white;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 15px;
  z-index: 1;
}

.jc-full-screen-video .jc-button button,
.jc-full-screen-video .jc-button a {
  background-color: white;
  color: black;
  z-index: 1;
}


/*---------------------------*
 * ANCHOR LINK
 *---------------------------*/

.jc-anchor-link {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 40px;
  text-align: center;
  padding: 10px 0;
  color: white;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11142857142857em;
}

.jc-anchor-link:hover,
.jc-anchor-link:focus {
  color: white;
  text-decoration: none;
}

.jc-anchor-link-arrow {
  margin-right: 1em;
}


/*---------------------------*
 * HEADER ROW
 *---------------------------*/

.jc-header-row {}

.jc-header-row .jc-title {
  color: white;
  margin-bottom: 10px;
}

.jc-header-row .jc-title a {
  color: white;
}

.jc-header-row .jc-title a:hover {
  text-decoration: none;
}

.jc-header-row .jc-subtitle-small {
  color: white;
  font-family: Montserrat;
  text-transform: uppercase;
  color: #ccc;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.14583333333333em;
}

.jc-header-row .jc-icon-play img {
  height: 70px;
  width: auto;
}


/*---------------------------*
 * SERMON FILTER
 *---------------------------*/

.jc_sermon_filter_button {
  color: black;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14285714285714em;
}

.jc_sermon_filter_button:hover {
  text-decoration: none;
  color: black;
}



/*---------------------------* 
 * FULL SCREEN HEADER
 *---------------------------*/

body .jc-page-header__play-icon img {
  height: 80px;
  width: auto;
  display: none;
}

@media ( min-width: 768px) {

  body .jc-page-header__play-icon img {
    display: inline;
  }
}

.jc-page-header__title,
.jc-page-header__title h2,
.jc-page-header__title a {
  color: white;
  font-size: 24px;
/*  font-weight: 400;*/
  margin-top: 0;
  margin-bottom: 0.5em !important;
  line-height: 1.25;
  z-index: 1;
  position: sticky;
  position: -webkit-sticky;
  font-family: AmsiPro-Regular;
}

.jc-page-header__subtitle,
.jc-page-header__subtitle a,
.jc-page-header__subtitle p {
  color: white;
  font-size: 16px;
  margin-bottom: 0.83333333333333em;
  line-height: 1.5;
  z-index: 1;
  position: sticky;
  position: -webkit-sticky;
}

@media ( min-width: 768px) {
  .jc-page-header__title,
  .jc-page-header__title h2,
  .jc-page-header__title a {
    font-size: 36px;
    font-weight: 100;
    z-index: 1;
    position: sticky;
    position: -webkit-sticky;
  }

  .jc-page-header__subtitle,
  .jc-page-header__subtitle a,
  .jc-page-header__subtitle p {
    font-size: 18px;
    z-index: 1;
    position: sticky;
    position: -webkit-sticky;
  }
}





/*---------------------------*
 * CUSTOM MENU
 *---------------------------*/

.vc_wp_custommenu {
  text-align: center;
}

.vc_wp_custommenu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: inline-block;
}
.vc_wp_custommenu .menu .menu-item {
  display: inline-block;
  float: none!important;
}
/*
.vc_wp_custommenu .menu .menu-item {
  display: inline-block;
  float: left;
}
*/

.vc_wp_custommenu .menu .menu-item a {
  display: inline-block;
  padding: 5px 15px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  letter-spacing: 0.21428571428571em;
  color: #898989;
  transition: all .2s ease-in-out;
}

.vc_wp_custommenu .menu:hover .menu-item a:hover,
.vc_wp_custommenu .menu:hover .menu-item.current-menu-item a:hover {
  text-decoration: none;
  color: black;
}

.vc_wp_custommenu .menu:hover .menu-item a,
.vc_wp_custommenu .menu:hover .menu-item.current-menu-item a {
  color: #bbb;
}

.vc_wp_custommenu .menu .menu-item.current-menu-item a {
  color: #000;
}



/*---------------------------*
 * LOCATIONS TEXT
 *---------------------------*/

body .ec_location_text .jc-page-header__title {
  color: white;
  margin-bottom: 15px;
  z-index: 1;
  position: sticky;
  position: -webkit-sticky;
}

.ec_location_text .jc-location__zip {
  text-align: center;
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 1em;
  position: relative;
}

.ec_location_text .jc-location__zip.current-location {
  color: #2E9AF6;
}

.ec_location_text .jc-location__input-wrapper {
  position: relative;
  display: inline-block;
}

.ec_location_text .jc-location__input-wrapper i {
  position: absolute;
  right: 15px;
  top: 0;
  line-height: 46px;
  z-index: 1;
}

.ec_location_text .jc-location-text__button {
  background-color: white;
  color: black;
}

.ec_location_text .jc-location__button {
  background-color: white;
  color: black;
  margin: 0 auto;
  text-transform: uppercase;
}

.ec_location_text .jc-location__lead {
  color: white;
  font-size: 18px;
  margin-bottom: 1.25em;
}

#jc-location-loading {
  display: none;
}

#jc-found-location {
  display: none;
}


/*---------------------------*
 * SINGLE SERMONS
 *---------------------------*/

.jc-single-sermon__wrapper {
  background-color: black;
}

.jc-single-sermon__info {
  color: #acacac;
  font-size: 0.9em;
  margin-bottom: 1em;
}

.jc-single-sermon__post-type {
  font-weight: bold;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 0.85714285714286em;
  letter-spacing: 0.16666666666667em;
  color: #B8B8B8;
  margin-bottom: 0.28571428571429em;
  display: block;
}

.jc-single-sermon__title {
  color: white;
  font-size: 1.71428571428571em;
  font-weight: 500;
  margin-bottom: 0.42857142857143em;
  margin-top: 0;
  z-index: 1;
  position: sticky;
}

.jc-single-sermon__speaker {
  color: #a9a9a9;
  margin-bottom: 0.42857142857143em;
}

.jc-single-sermon__time {
  color: white;
  margin-bottom: 0.42857142857143em;
  display: block;
}

.jc-single-sermon__share-button-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}
.jc-single-sermon__share-button {
  color: white !important;
  display: block;
  width: 100%;
  border-color: #1ccdea !important;
  background-color: #1ccdea !important;
  margin-bottom: 1em;
}

.jc-single-sermon__share-button:focus {
  color: black;
}

.jc-single-sermon__subscribe-button {
  background-color: #222;
  border-color: #222;
  color: white;
  display: block;
  margin-bottom: 1em;
  margin-left: 0.5em;
}

.jc-single-sermon__subscribe-button:hover {
  color: white;
}

.jc-single-sermon__subscribe-button:focus {
  color: white;
}

.jc-single-sermon__more-info {
  display: none;
}

.jc-single-sermon__more-info-button {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.jc-single-sermon__more-info-button:hover {
  cursor: pointer;
}

.jc-single-sermon__more-info-button i {
  transition: all .3s ease-in-out;
  font-size: 1.5em;
  line-height: 1rem;
}

.jc-single-sermon__more-info-button.active i {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
}

@media( min-width: 768px) {

  .jc-single-sermon__info {
    font-size: 1em;
  }

  .jc-single-sermon__subscribe-button {
    display: inline-block;
  }

  .jc-single-sermon__share-button-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .jc-single-sermon__share-button {
    background-color: white;
    color: black;
    display: inline-block;
    width: auto;
    margin-left: 0.5em;
  }

}

/*---------------------------*
 * MAILCHIMP SUBSCRIBE FORM
 *---------------------------*/

#jc-subscribe-modal .modal-content {
  background-color: #efefef;
}

#mc_embed_signup {
  background: #efefef;
  clear: left;
  font: 14px 'Open Sans', Helvetica, Arial, sans-serif;
  text-align: center;
  padding: 20px 50px;
}

#mc_embed_signup .hide {
  display: none;
}

#mc_embed_signup .mc-field-group {
  margin-bottom: 25px;
  width: 100%;
}

#mc_embed_signup h2 {
  font-weight: 300;
  font-size: 25px;
}

#mc_embed_signup label {
  font-weight: 400;
  display: block;
  padding: 15px;
  line-height: 2em;
  vertical-align: middle;
}

#mc_embed_signup label:hover {
  cursor: pointer;
}

#mc_embed_signup .input-group li {
  background-color: #fff;
  list-style: none;
  text-align: left;
  margin: 5px 0;
}

#mc_embed_signup .input-group ul {
  padding-left: 0;
}

#mc_embed_signup label span {
  position: relative;
  line-height: 2em;
  height: 2em;
  width: 2em;
  margin-top: 0;
  margin-right: 0.5em;
  vertical-align: middle;
}

#mc_embed_signup label span:before,
#mc_embed_signup label span:after {
  position: absolute;
  content: ' ';
  height: 100%;
  width: 100%;
}

#mc_embed_signup label span:before {
  background-color: white;
  z-index: 1;
}

#mc_embed_signup label span:after {
  z-index: 2;
  background-color: #efefef;
  border-radius: 99px;
}

#mc_embed_signup input[type=checkbox] {
  margin-right: 1em
}

#mc_embed_signup input[type=checkbox]:checked:after {
  background-color: #EF8D46;
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 1.6em;
  color: #efefef;
  padding: 2px;
  border-radius: 99px;
  position: relative;
  top: -.65em;
  left: -1.5em;
}

#mc_embed_signup input[type=checkbox]:before {
  color: #efefef;
  content: "\f111";
  font-family: FontAwesome;
  font-size: 2.5em;
  position: relative;
  top: -.25em;
  left: -.15em;
}

/* .mc-field-group input[type=checkbox] {
    width: 2em;
    margin: 0;
    padding: 0;
    font-size: 1em;
    opacity: 0;
}

 .mc-field-group input[type=checkbox] + label {
    display: block;
    margin-left: -2em;
    line-height: 2.25em;
}

.mc-field-group label span {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 0.25em 1.25em 0.25em -2.5em;
    border: none;
    border-radius: 50px;
    background: #efefef;
    vertical-align: bottom;
    cursor: pointer;
}

.mc-field-group input[type="checkbox"]:checked span:before{
    content: "\f111";
    display: block;
    width: 25px;
    color: #EF8D46;
    font-size: 28px;
    font-family: 'FontAwesome';
    line-height: 1em;
    text-align: center;
} */

#mc_embed_signup .mc-field-group input[type="email"] {
  width: 100%;
  padding: 15px 0;
  border: none;
  text-align: center;

  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

#mc_embed_signup ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #AAA;
  text-align: center;
  font-size: 14px;
}

#mc_embed_signup :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #AAA;
  opacity: 1;
  text-align: center;
  font-size: 14px;
}

#mc_embed_signup ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #AAA;
  opacity: 1;
  text-align: center;
  font-size: 14px;
}

#mc_embed_signup :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #AAA;
  text-align: center;
  font-size: 14px;
}

#mc_embed_signup :placeholder-shown {
  /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #AAA;
  text-align: center;
  font-size: 14px;
}

#mc_embed_signup input[type="submit"] {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 25px;
  font-family: 'Montserrat';
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  letter-spacing: 0.14285714285714em;
}

#mc_embed_signup input[type="submit"]:hover {
  background-color: #777;
}

@media( max-width: 457px) {

  #mc_embed_signup {
    padding: 20px;
  }

  #mc_embed_signup label {
    font-size: 11px;
  }

  #mc_embed_signup h2 {
    font-size: 20px;
  }
}

/*---------------------------*
 * BUTTON
 *---------------------------*/

.jc-button {
  display: inline-block;
  font-family: AmsiPro-Regular;
}

.jc-button .btn {
  /* font-size: 12px; */
}

.jc-button .btn.btn-lg {
  padding: 21px 35px;
  font-size: 14px;
}

.jc-sermons__lazy-load-button:focus {
  outline: none;
}

.vc_btn3-container.vc_btn3-center {
  z-index: 1;
  position: sticky;
  position: -webkit-sticky;
}

/*---------------------------*
 * SECONDARY TEXT
 *---------------------------*/

.jc-secondary-text p {
  font-size: 14px;
  color: #fff !important;
  letter-spacing: 0.16642857142857em;
  line-height: 2.0;
/*  font-family: Montserrat, sans-serif;*/
  font-family: AmsiPro-Black;
  text-transform: uppercase;
/*  font-weight: bold;*/
  z-index: 1;
  position: sticky;
  position: -webkit-sticky;
}

.home-main .jc-secondary-text a {
  color: #fff;
  z-index: 1;
  position: sticky;
  position: -webkit-sticky;
}

/*---------------------------*
 * LOCATIONS MAP
 *---------------------------*/

.jc-locations-map__list {
  width: 100%;
  float: left;
  overflow-y: scroll;
  background-color: white;
}

.jc-locations-map__map {
  margin-left: 450px;
  height: 100%;
  display: none;
  position: relative;
}

.jc-locations-map__zoom {
  position: absolute;
  background: #F26F20;
  right: 0;
  top: 0;
  z-index: 1;
}

.jc-locations-map__zoom i {
  color: white;
  display: block;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
}

.jc-locations-map__zoom i:first-child {
  border-bottom: 1px solid #F58C4D;
}

.jc-locations-map__locations {
  padding-left: 0;
  list-style: none;
}

.jc-locations-map__location {
  padding: 20px;
  border-bottom: 2px solid #EFEFEF;
  overflow: hidden;
  min-height: 114px;
}

.jc-locations-map__location:first-child {
  border-top: 2px solid #efefef;
}

.jc-locations-map__location .wp-post-image {
  width: 75px;
  height: 75px;
  float: left;
}

.jc-locations-map__location-info {
  margin-left: 95px;
}

.jc-locations-map__location-title {
  margin: 0;
  line-height: 1.375;
  font-size: 16px;
}

.jc-locations-map__location:hover {
  cursor: pointer;
}

.jc-locations-map__location-title a {
  color: black;
}

.jc-locations-map__location-title a:hover {
  text-decoration: none;
}

.jc-locations-map__location-address {
  font-size: 14px;
  margin: 0;
  color: #999;
}

body .gm-style {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.gm-style div[title="Zoom in"],
.gm-style div[title="Zoom out"] {
  background-color: #f26f20 !important;
  color: white !important;
}

.gm-style div[title="Zoom in"] > div > img,
.gm-style div[title="Zoom out"] > div > img {
  left: -105px !important;
}

.jc-locations-map__marker-title {
  font-size: 16px;
  color: black;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 5px;
}

.jc-locations-map__marker-btn {
  background-color: black;
  color: white;
  font-weight: bold;
  transition: all .1s ease-in-out;
}

.jc-locations-map__marker-btn:hover,
.jc-locations-map__marker-btn:active {
  color: white;
  background-color: #333;
}

.jc-locations-map__location-broadcast {
  margin: 0;
  color: #F6790A;
}

.jc-locations-map__marker-broadcast {
  margin-bottom: 5px;
  color: #f6790a;
  font-weight: 500;
}

#jc-google-map {
  height: 600px;
}

@media (min-width: 768px) {

  .jc-locations-map__list,
  .jc-locations-map__map {
    height: 600px;
  }

  .jc-locations-map__list {
    width: 350px;
  }

  .jc-locations-map__map {
    margin-left: 350px;
    display: block;
  }

}



/*---------------------------*
 * SINGLE LOCATION
 *---------------------------*/

.jc-single-location__info {}

.jc-single-location__info li {
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 20px;
}

.jc-single-location__info li span {
  padding-left: 35px;
  display: block;
}

.jc-single-location__info i {
  float: left;
  font-size: 20px;
  text-align: center;
  width: 20px;
  line-height: 1.25;
}

.jc-single-location__time {
  margin-bottom: 1em;
  font-size: 24px;
  font-weight: 300;
  /*white-space: pre;*/
}

.jc-single-location__share {
  margin-top: 3em;
}

.jc-desc {
  padding: 15px;
  background: white;
  min-height: 85px;
  position: relative;
}

.jc-desc__left {
  display: inline-block;
  position: absolute;
  left: 1em;
  top: 1.2em;
}

.jc-desc__right {
  display: inline-block;
  position: absolute;
  right: 1em;
}

.jc-desc__title {
  font-size: 16px;
  margin-bottom: 0.5em;
}

.jc-desc__desc {
  margin-bottom: 0;
}

.jc-desc__email:hover {
  color: #ededed;
}

.postid-8823 .jc-page-header__content .jc-button {
  display: none;
}

.postid-8823 .jc-section:first-of-type {
  padding: 0;
}

.postid-8823 .jc-section.jc-section-light .container:nth-of-type(2) {
  display: none;
}

.single-jc-location .event-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.single-jc-location .event-list a {
  color: black;
  display: flex;
}

.single-jc-location .event-list .event-list__item {
  margin-bottom: 1em;
  padding-bottom: 0;
  background-color: white;
  width: 100%;
}

.single-jc-location .event-list .event-day {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: black;
  color: white;
  padding: 15px 20px;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  min-width: 70px;
  /*min-height: 118px;*/
}

.single-jc-location .event-list .event-date,
.single-jc-location .event-list .event-month {
  display: block;
  line-height: 1.5;
}

.single-jc-location .event-list .event-date {
  font-weight: 500;
  font-size: 1.5em;
}

.single-jc-location .event-list .event-month {
  font-family: 'Montserrat';
  font-size: 1em;
  color: white;
}

.single-jc-location .event-list .event-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  padding: 12px;
}

.single-jc-location .event-list .event-title {
  margin-bottom: 10px;
}

.single-jc-location .event-list p {
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .single-jc-location .event-list .event-info {
    min-width: 50%;
  }

  /*.single-jc-location .event-list .event-day {*/
  /*    min-height: 0;*/
  /*}*/
}

/*---------------------------*
 * SUB-NAV WRAPPER
 *---------------------------*/

.jc-subpage-menu__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: black;
  height: 50px;
  z-index: 11;
}

.jc-subpage-menu__wrapper.text-center:before,
.jc-subpage-menu__wrapper.text-center:after {
  position: absolute;
  content: ' ';
  height: 50px;
  width: 50px;
  top: 0;
  z-index: 11;
}

.jc-subpage-menu__wrapper:before {
  left: 0;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99000000', endColorstr='#00000000', GradientType=1);
}

.jc-subpage-menu__wrapper:after {
  right: 0;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#99000000', GradientType=1);
}

.jc-subpage-menu__wrapper a:hover,
.jc-subpage-menu__wrapper a:focus {
  text-decoration: none;
}

.jc-subpage-menu__wrapper .menu {
  display: block;
  margin: 0 auto;
  padding-bottom: 50px;
  overflow-y: hidden;
  overflow-x: scroll;
  white-space: nowrap;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-overflow-scrolling: touch;
}

.jc-subpage-menu__wrapper .menu .menu-item {
  display: inline-block;
}

.jc-subpage-menu__wrapper .menu .menu-item a {
  color: #818181;
  font-size: 14px;
  padding: 18px 14px;
  display: inline-block;
  float: left;
  font-family: AmsiPro-Black, Montserrat, sans-serif;
  letter-spacing: 0.21428571428571em;
  text-transform: uppercase;
  line-height: 1;
/*  font-weight: bold;*/
  transition: all .15s ease-in-out;
}

.jc-subpage-menu__wrapper .menu .menu-item.current-menu-item a {
  color: white;
}

.no-touch .jc-subpage-menu__wrapper .menu .menu-item a:hover {
  text-decoration: none;
  color: white;
}

.no-touch .jc-subpage-menu__wrapper .menu:hover .menu-item.current-menu-item a {
  color: #818181;
}

.no-touch .jc-subpage-menu__wrapper .menu:hover .menu-item.current-menu-item a:hover {
  color: white;
}

@media (min-width: 768px) {

  .jc-subpage-menu__wrapper {
    height: 54px;
  }

  .jc-subpage-menu__wrapper .menu .menu-item a {
    padding: 20px 24px;
  }

}


/*---------------------------*
 * SERMON FILTERS
 *---------------------------*/

.jc-sermon-filters__button {
  text-transform: uppercase;
  color: black;
  margin-left: 10px;
  background-color: transparent;
  padding: 0.5em;
  font-size: 12px;
}

.jc-sermon-filters__button i {
  -ms-transform: rotate(0deg);
  /* IE 9 */
  -webkit-transform: rotate(0deg);
  /* Chrome, Safari, Opera */
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
}

.jc-sermon-filters__button.jc-sermon-filters--active {
  background-color: white;
}

.jc-sermon-filters__button.jc-sermon-filters--active i {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
}

.jc-sermon-filters__menu {
  float: right;
  clear: right;
  width: 100%;
  background-color: white;
  padding: 1em 0;
  margin-bottom: 0;
  display: none;
}

.jc-sermon-filters__menu li {
  width: 50%;
  text-align: center;
  float: left;
}

.jc-sermon-filters__menu li:nth-child( 2n + 1) {
  clear: left;
}

.jc-sermon-filters__menu a {
  color: black;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.14285714285714em;
  display: block;
  padding: 0.5em 1em;
  font-size: 12px;
}

.jc-sermon-filters__menu a:hover,
.jc-sermon-filters__menu a:active,
.jc-sermon-filters__menu a:focus {
  text-decoration: none;
}

@media ( min-width: 768px) {

  .jc-sermon-filters__menu a {
    font-size: 1em;
  }

  .jc-sermon-filters__menu {
    padding: 1em 2em;
  }

  .jc-sermon-filters__menu li {
    width: 25%;
  }

  .jc-sermon-filters__menu li:nth-child( 2n + 1) {
    clear: none;
  }

  .jc-sermon-filters__menu li:nth-child( 4n + 1) {
    clear: left;
  }

  .jc-sermon-filters__button {
    padding: 1em 2em;
    font-size: 14px;
  }
}


/*---------------------------*
 * SHARE MODAL
 *---------------------------*/

.jc-share-modal__image {
  margin-bottom: 1em;
}

.jc-share-modal__list {}

.jc-share-modal__list i {
  color: black;
  font-size: 26px;
}

.jc-share-modal__list.list-inline li {
  text-align: center;
  display: inline-block;
  margin-left: 2em;
}

.jc-share-modal__list.list-inline li:first-child {
  margin-left: 0;
}

.jc-share-modal .modal-body {
  overflow: hidden;
}

.jc-share-modal__share-link-button a {
  margin-bottom: 1em;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.14285714285714em;
  color: #333;
}


/*---------------------------*
 * EVENT GRID
 *---------------------------*/

body .jc-events-grid .jc-event {
  margin-bottom: 30px;
}

.jc-events-grid a:hover {
  text-decoration: none;
}

.jc-events-grid > .row > .col-sm-6:nth-child( 2n + 1) {
  clear: left;
}

.jc-event__info {
  background-color: white;
  padding: 20px;
}

.jc-event__title {
  font-size: 1em;
  color: black;
  text-decoration: none;
  margin-bottom: 0;
  line-height: 1.25;
}

.jc-event__date {
  color: #aaa;
  font-size: 0.78571428571429em;
}

@media ( min-width: 768px) {

  .jc-event__title {
    font-size: 1.42857142857143em;
  }

  .jc-event__date {
    font-size: 1em;
  }

}



/*---------------------------*
 * SINGLE EVENT
 *---------------------------*/

.single-jc-event .jc-page-header {
  background-size: cover;
  background-position: center;
}

.jc-single-event__label {
  color: #858585;
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 0;
}

.jc-single-event__label i {
  margin-right: 0.25em;
}

.jc-single-event__data {
  font-size: 1.71428571428571em;
  color: white;
  font-weight: 300;
}

.jc-single-event__promotion-section .col-xs-6:nth-child( 2n + 1) {
  clear: left;
}

.jc-single-event__promotion-section .col-sm-3:nth-child( 4n + 1) {
  clear: left;
}

.jc-section__promotion img {
  margin-bottom: 30px;
}

.list-sharables {
  display: table;
  text-align: center;
  width: 100%;
}

.list-sharables li {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: top;
}

@media ( min-width: 768px) {

  .list-sharables li {
    width: 25%;
  }

}


/*---------------------------*
 * JOBS GRID
 *---------------------------*/

.jc-jobs-grid__job {
  background-color: white;
  margin-top: 30px;
  height: auto;
  overflow: hidden;
}

.jc-jobs-grid > .row:first-child .col-sm-6:first-child .jc-jobs-grid__job {
  margin-top: 0;
}

.jc-jobs-grid .Grid {
  margin-bottom: 30px;
}

.jc-jobs-grid .Grid-cell {
  padding-left: 15px;
  padding-right: 15px;
}

.jc-jobs-grid .jc-jobs-grid__job-title a {
  color: #333;
}

.jc-jobs-grid__image {
  float: left;
  width: 100%;
}

.jc-jobs-grid__image img.attachment-large.size-large.wp-post-image {
  max-width: 100%;
  height: auto;
}

.jc-jobs-grid__details {
  width: 100%;
  float: right;
  padding: 2em;
}

.jc-jobs-grid__job-desc {
  margin-bottom: 0.5em;
  font-size: 13px;
}

.jc-jobs-grid__link {
  font-family: 'Gotham', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2;
  color: #A8885A;
  font-size: 12px;
}

.jc-jobs-grid__link:hover {
  color: black;
  text-decoration: none;
}

@media ( min-width: 768px) {

  .jc-jobs-grid__job {
    margin-top: 0;
  }

  .jc-jobs-grid > .row {
    margin-top: 30px;
  }

  .jc-jobs-grid > .row:first-child {
    margin-top: 0;
  }

  .jc-jobs-grid__details {
    min-height: 185px;
  }

}

@media (min-width: 1200px) {
  .jc-jobs-grid__image {
    float: left;
    width: 45%;
  }

  .jc-jobs-grid__details {
    width: 55%;
    float: right;
    padding: 2em;
    max-height: 250px;
  }
}


/*---------------------------*
 * SINGLE JOB
 *---------------------------*/

.single-jc-job .jc-page-header__title {
  margin-bottom: 15px;
}

.jc-single-job__apply-button {
  margin-bottom: 2em;
}

.jc-single-job__list {
  color: #7D7D7D;
  margin-bottom: 4em;
  list-style: none;
}

.jc-single-job__list li {
  margin-top: 1em;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  position: relative;
}

.jc-single-job__list li:before {
  content: "â€¢";
  position: absolute;
  left: -15px;
}

.jc-single-job__list li:first-child {
  margin-top: 0;
}

.jc-section .jc-section__job-title {
  margin-bottom: 1em;
  text-align: left;
}

.jobs__hr {
  border-top: 1px solid #999;
  margin-bottom: 4em;
}


/*---------------------------*
 * MEDIA POSTS GRID
 *---------------------------*/

body .jc-media-grid .jc-media,
body .jc-media-grid .jc-resources {
  position: relative;
  margin-bottom: 30px;
}

.jc-media-grid .jc-media:after {
  content: ' ';
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
  opacity: .5;
}

.jc-media-grid .jc-resources:after {
  content: ' ';
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
  opacity: .75;
}

.jc-media-grid .jc-media__info {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 20px;
}

.jc-media-grid .jc-media__title,
.jc-media-grid .jc-resources__title {
  color: white;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.25;
}

.jc-media-grid .jc-resources__title {
  font-size: 20px;
}

.jc-media-grid .jc-media__subtitle {
  color: white;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.14285714285714em;
}

.resource-thumbnails {
  width: 100%;
}


/*---------------------------*
 * SINGLE MEDIA POST
 *---------------------------*/

.single-jc-media-post .jc-site-header {
  position: relative;
}

.jc-section.jc-section__video-wrapper {
  padding-top: 0;
}

.jc-single-media-post__category {
  font-family: Montserrat, sans-serif;
  color: #B8B8B8;
  letter-spacing: 0.14285714285714em;
  font-weight: bold;
  margin-top: 1em;
  text-transform: uppercase;
}

.single-jc-media-post__title {
  color: white;
  font-weight: 400;
  font-size: 24px;
}

.single-jc-media-post__artist {
  color: white;
  font-size: 18px;
}

.jc-single-media-post__subscribe-button {
  background-color: #222;
  border-color: #222;
  color: white;
}

.jc-single-media-post__subscribe-button:hover {
  color: white;
}

.jc-single-media-post__info-button {
  color: #868686;
  background: transparent;
  border: none;
}

.jc-single-media-post__share-button {
  background-color: white;
  color: black;
  border-color: white;
  margin-left: 0.5em;
}

.jc-single-media-post__info {
  display: none;
}

.jc-single-media-post__info-button {
  color: #868686;
  background: transparent;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.14285714285714em;
  margin-bottom: 1em;
}

.jc-single-media-post__info-button:active,
.jc-single-media-post__info-button:focus {
  outline: none;
}

.jc-single-media-post__info-button i {
  font-size: 18px;
  transition: all .2s ease-in-out;
}

.jc-single-media-post__info-button.active i {
  -ms-transform: rotate(-180deg);
  /* IE 9 */
  -webkit-transform: rotate(-180deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-180deg);
}

.single-jc-media-post .jc-embed-column {
  padding-left: 0;
  padding-right: 0;
}

@media( min-width: 768px) {
  .single-jc-media-post .jc-embed-column {
    padding-left: 15px;
    padding-right: 15px;
  }

  .jc-single-media-post__buttons {
    text-align: right;
  }
}


/*---------------------------*
 * FOOTER STYLES
 *---------------------------*/

.jc-section__footer-app {
  background-size: cover;
  text-align: center;
}

.jc-section__footer-app .jc-page-header__title h2 {
  color: black;
}

.jc-section__footer-app .jc-page-header__subtitle p {
  color: #777;
}

.jc-section__footer-app .btn {
  color: white;
  background-color: black;
  border-color: black;
}

.jc-section__footer-app__text {
  margin-bottom: 1em;
}

.jc-phone-image {
  height: 400px;
  width: 200px;
  position: relative;
  margin: 0 auto;
}

.jc-phone-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.jc-phone-image__overlay {
  z-index: 2;
}

.jc-phone-image__background {
  z-index: 1;
}

.jc-section__footer-app__image {
  height: 100px;
  position: relative;
}

.jc-section__footer-menus {
  position: relative;
  z-index: 10;
  color: black;
}

.jc-section__footer-menus .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jc-section__footer-menus .widget_nav_menu {
  display: inline-block;
  float: left;
  text-align: left;
  padding: 0 30px;
  margin-bottom: 30px;
  width: 100%;
}

.jc-section__footer-menus .widget_nav_menu .widgettitle,
h2.widgettitle {
  font-size: 18px;
  color: #555;
}

.jc-section__footer-menus .widget_nav_menu a {
  color: black;
  font-weight: 300;
  display: inline-block;
  margin-top: 5px;
}

.jc-section__footer-menus .widget_nav_menu .menu-item:first-child a {
  margin-top: 0;
}

.widget-area__footer_menus {
  display: inline-block;
}

.widget-area__footer_menus .menu a {}

.jc-footer-icons {
  margin-bottom: 2em;
}

.jc-footer-icons i {
  font-size: 24px;
  color: black;
}

footer .jc-footer-icons li {
  padding-left: 2em;
}

footer .jc-footer-icons li:first-child {
  padding-left: 0;
}

.jc-footer-menu .menu {
  display: block;
  padding-left: 0;
  list-style: none;
  margin: 0 auto;
}

.jc-footer-menu .menu a {
  color: black;
}

.jc-footer-menu .menu a:hover {
  text-decoration: none;
}

.jc-footer-menu .menu > li {
  display: inline-block;
  float: left;
  width: 50%;
  text-align: center;
  padding-top: 2em;
}

.jc-footer-menu .menu > li:first-child {
  padding-left: 0;
}

.jc-footer-menu .menu > li:nth-child( 2n + 1) {
  clear: left;
}

.jc-footer-menu .menu > li > a {
  display: block;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.11142857142857em;
  text-transform: uppercase;
}

.jc-footer-menu .menu .sub-menu {
  list-style: none;
  padding-left: 0;
}

.jc-footer-menu .menu .sub-menu li {
  margin-top: 1em;
}

.jc-section__footer-contact {
  position: relative;
  z-index: 3;
}

.jc-section__footer-contact p {
  margin-bottom: 0;
}

.jc-section__footer-contact a {
  color: black;
}

.jc-section__footer-contact .jc-footer--phonenumber {
  color: white;
  font-weight: 300;
}

.jc-section__footer-contact a:hover {
  color: #ccc;
}

.jc-section__footer-contact small a {
  color: #afafaf;
}

.jc-section__footer-contact small a:hover {
  color: #ccc;
}

.jc-section__footer-contact p {
  color: white;
}

.jc-section__footer-contact p small {
  color: #AFAFAF;
}

.jc-section__footer-contact .btn {
  color: black;
}

.jc-section__footer-contact .widget-area .menu {
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
  list-style: none;
  text-align: center;
}

.jc-section__footer-contact .menu .menu-item {
  display: inline-block;
}

.jc-section__footer-contact .menu-item a {
  padding: 16px 24px;
  display: inline-block;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07142857142857em;
}


@media( min-width: 400px) {

  .jc-section__footer-menus .widget_nav_menu {
    width: 50%;
  }

  .jc-section__footer-menus .widget_nav_menu:nth-child( 2n + 1) {
    clear: left;
  }
}


@media ( min-width: 768px) {

  .jc-section__footer-app__text {
    float: right;
    text-align: left;
  }

  .jc-footer-menu .menu {
    display: table;
  }

  .jc-footer-menu .menu > li {
    display: table-cell;
    float: none;
    width: auto;
    padding-left: 3em;
  }

  .jc-section__footer-menus .widget_nav_menu {
    width: auto;
  }

  .jc-section__footer-menus .widget_nav_menu:nth-child( 2n + 1) {
    clear: none;
  }

}

@media( min-width: 1200px) {

  .jc-section__footer-app .jc-page-header__title {
    margin-top: 65px;
  }

  .jc-section__footer-app__image {
    height: auto;
  }

  .jc-phone-image {
    width: 175px;
  }

  .jc-section__footer-app__image img {
    max-height: 350px;
  }

  .jc-section__footer-app__text {
    margin-right: 16.66666667%;
  }

}



/*---------------------------*
 * TAXONOMY FILTER
 *---------------------------*/

.jc-taxonomy-filter__wrapper {
  display: block;
  text-align: center;
}


.jc-taxonomy-filter {
  display: inline-block;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.jc-taxonomy-filter__item {
  float: left;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  padding: 5px 15px;
  letter-spacing: 0.21428571428571em;
  color: #898989;
}

.jc-taxonomy-filter__item a {
  color: #898989;
  transition: all .2s ease-in-out;
}

.jc-taxonomy-filter__item a:hover {
  color: black;
}

.jc-taxonomy-filter__current-item a {
  color: black;
}

.jc-taxonomy-filter__current-item a:active,
.jc-taxonomy-filter__current-item a:focus {
  text-decoration: none;
}

.jc-taxonomy-filter__wrapper:hover .jc-taxonomy-filter__item a {
  color: #898989;
}

.jc-taxonomy-filter__wrapper:hover .jc-taxonomy-filter__item a:hover {
  color: black;
}


/*---------------------------*
 * SMI BANNER
 *---------------------------*/

.jc-smi-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  text-align: center;
}

.jc-smi-banner > * {
  padding: 0 15px;
  display: inline-block;
  margin: 5px 0;
}

.jc-smi-banner__title {
  font-size: 18px;
}

.vc_col-lg-1,
.vc_col-lg-10,
.vc_col-lg-11,
.vc_col-lg-12,
.vc_col-lg-2,
.vc_col-lg-3,
.vc_col-lg-4,
.vc_col-lg-5,
.vc_col-lg-6,
.vc_col-lg-7,
.vc_col-lg-8,
.vc_col-lg-9,
.vc_col-md-1,
.vc_col-md-10,
.vc_col-md-11,
.vc_col-md-12,
.vc_col-md-2,
.vc_col-md-3,
.vc_col-md-4,
.vc_col-md-5,
.vc_col-md-6,
.vc_col-md-7,
.vc_col-md-8,
.vc_col-md-9,
.vc_col-sm-1,
.vc_col-sm-10,
.vc_col-sm-11,
.vc_col-sm-12,
.vc_col-sm-2,
.vc_col-sm-3,
.vc_col-sm-4,
.vc_col-sm-5,
.vc_col-sm-6,
.vc_col-sm-7,
.vc_col-sm-8,
.vc_col-sm-9,
.vc_col-xs-1,
.vc_col-xs-10,
.vc_col-xs-11,
.vc_col-xs-12,
.vc_col-xs-2,
.vc_col-xs-3,
.vc_col-xs-4,
.vc_col-xs-5,
.vc_col-xs-6,
.vc_col-xs-7,
.vc_col-xs-8,
.vc_col-xs-9 {
  min-height: 0px !important;
}

/** Curriculum **/

.single-jc-curriculum ul li {
  color: #777;
}

.single-jc-curriculum h4 {
  color: #BFD440;
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.single-jc-curriculum .curriculum-title {
  margin-bottom: 2em;
}

.curriculum-content {
  margin-bottom: 4em;
}

.jc-button.curriculum-link {
  display: block;
  text-align: center;
}

.vc_row.wpb_row.vc_row-fluid.curriculum-header.curriculum-header.vc_row-has-fill.vc_row-o-content-middle.vc_row-flex {
  padding: 4em 0;
}

/*.single-jc-curriculum .jc-subpage-menu__wrapper.egroup-submenu, .jc-subpage-menu__wrapper.egroup-submenu.text-center {*/

/*    background-color: #f2f2f2;*/

/*}*/

/*.jc-subpage-menu__wrapper.egroup-submenu.text-center:before {*/

/*    background: none;*/

/*}*/

.no-touch .jc-subpage-menu__wrapper.egroup-submenu .menu .menu-item a:hover {
  color: black;
}

.single-jc-curriculum .jc-subpage-menu__wrapper.egroup-submenu:before,
.single-jc-curriculum .jc-subpage-menu__wrapper.egroup-submenu:after {
  background: none;
}

.curriculum_featured_image img {
  width: 100% !important;
  height: auto !important;
  margin: 20px 0 50px;
}

.student-curriculum_content {
  white-space: pre-wrap;
}

h3.student-curriculum_title {
  margin-top: 50px;
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 20px;
}


/*---------------------------*
 * CURRICULUM ARCHIVE UPDATE
 *---------------------------*/

.jc-curriculum-carousel-content__wrapper {
  width: 100%;
  padding: 0;
  height: auto;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}

.jc-curriculum-carousel-content-inner {
  width: auto;
  height: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  : :-webkit-scrollbar: display: none;
  -webkit-overflow-scrolling: touch;
}

.curriculum_archive__grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
  align-content: center;
  margin: 0 auto 1em;
}

.curriculum_archive__post {
  width: 100%;
  margin: 1em 0.5em;
}

.curriculum_featured_image__wrapper {
  background-size: cover;
  min-height: 200px;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.curriculum_archive__title_block {
  max-width: 100%;
  background: white;
  padding: 3.5em 1.75em;
  text-align: center;
  min-height: 170px;
}

.curriculum_archive__title_block.resources {
  max-width: 100%;
  background: white;
  padding: 3.5em 1.65em 1.5em;
  text-align: center;
  min-height: 180px;
}

.curriculum_archive__title {
  color: black;
  font-size: 1.2em;
  line-height: 1.5;
  white-space: normal;
}

.load_more {
  display: block;
  clear: both;
  position: relative;
}

.load_more a,
.load_more .loader {
  display: block;
  height: 90px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 90px;
  background: #000;
  overflow: hidden;
  position: relative;
}

.load_more {
  display: block;
  clear: both;
  position: relative;
}

.load_more a:hover {
  color: #999;
}

@media ( min-width: 768px) {

  .curriculum_archive__post {
    width: 48%;
  }

  .curriculum_archive__title {
    color: black;
    font-size: 1.5em;
    line-height: 1.5;
    white-space: normal;
  }

  .curriculum_archive__title_block.resources {
    padding: 3em 1.65em 2em;
    min-height: 160px;
  }

  .jc-curriculum-carousel-content-inner {
    width: 100%;
    white-space: normal;
    overflow-x: initial;
    overflow-y: initial;
    text-align: center;
    display: flex;
  }

  .jc-curriculum-carousel-content__wrapper {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

}

@media( min-width: 1200px) {

  .curriculum_featured_image__wrapper {
    min-height: 250px;
  }

}

/*---------------------------*
 * CURRICULUM SINGLE UPDATE
 *---------------------------*/

.curriculum_single__section {
  font-size: 1.2em;
}

.curriculum_single__title {
  font-weight: bold;
}

.curriculum_single__heading {
  color: #BFD440;
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 2em;
  font-weight: bold;
}

.curriculum_video__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
  margin-bottom: 2em;
}

.curriculum_video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.curriculum-image {
  max-width: 100%;
  height: auto;
}

.single-jc-curriculum .embed-responsive.embed-responsive-16by9.jc-responsive-video {
  margin-bottom: 1em;
}

.dkpdf-button,
.dkpdf-button:hover,
.dkpdf-button:link,
.dkpdf-button:visited {
  color: white;
}

.dkpdf-button {
  background-color: #333;
  padding: 1em 2em;
  font-weight: 400;
  font-family: 'Montserrat';
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 4em;
}

.dkpdf-button:hover {
  background-color: #000;
}

.dkpdf-button:link,
a.dkpdf-button:visited {
  text-decoration: none;
}

/* Must include Font Awesome (here: https://fortawesome.github.io/Font-Awesome/get-started/) for icons to show up */

.slick-prev,
.slick-next {
  font-size: 0;
  position: absolute;
  bottom: 200px;
  color: #222;
  border: 0;
  background: none;
  z-index: 1;
}

.slick-prev {
  left: -70px;
}

.slick-prev:after {
  content: "\f104";
  font: 40px/1 'FontAwesome';
}

.slick-next {
  right: -50px;
  text-align: right;
}

.slick-next:after {
  content: "\f105";
  font: 40px/1 'FontAwesome';
}

.slick-prev:hover:after,
.slick-next:hover:after {
  color: #7e7e7e;
}

h3.devotional_archive__title {
  margin-top: 1em;
  font-size: 1.4em;
  color: black;
}

/*.page-template-jc-devotional-template .slick-list.draggable {*/

/*    padding: 0 !important;*/

/*}*/

.devotional_archive__post {
  width: 100%;
  margin: 1em 0.5em;
}

.devotional_featured_image__wrapper {
  width: 100%;
}

.devotional-description {
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 2em;
}

.page-template-jc-devotional-template .jc-button.devotional {
  display: inline-block;
  background-color: black;
  border: 0;
  color: white;
  box-shadow: none;
  padding: 1em 2em;
  width: 50%;
}

.devotional-downloads-image-wrapper {
  text-align: center;
}

img.devotional-download {
  width: 100%;
  max-width: 100%;
  padding: .5em;
}

.jc-yth-devotional-template-default .egroup-submenu_wrapper .jc-subpage-menu__wrapper {
  background-color: rgba(242, 240, 242, 1);
}

.jc-yth-devotional-template-default .egroup-submenu_wrapper .jc-subpage-menu__wrapper:before {
  background: linear-gradient(to right, rgba(242, 240, 242, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.jc-yth-devotional-template-default .egroup-submenu_wrapper .jc-subpage-menu__wrapper:after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(242, 240, 242, 0.8) 100%);
}

/* BECOMING MRS BETTERHALF TEMPLATE */

.betterhalf-section {
  background-color: #f2f2f2;
  color: black;
}

.betterhalf-section p {
  color: black;
  font-size: 16px;
}

.betterhalf-seriestitle,
.betterhalf-author {
  margin-top: 20px;
}

.betterhalf-downloadbtn {
  margin-top: 20px;
}

.betterhalf-password.container {
  background: url(/wp-content/uploads/2017/07/BMBE2-1920bg.jpg);
  background-position: top center;
  height: 100vh;
  width: 100%;
}

.betterhalf-form__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  height: 100vh;
}

form.post-password-form.betterhalf {
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.4);
  color: black;
  text-align: center;
  width: 100%;
}

.betterhalf__content img {
  margin: 0 auto 20px auto;
}

form.post-password-form.betterhalf input[type="password"] {
  border: none;
  background-color: lightgrey;
  margin: 0 10px 0 0;
  padding: .5em 5px;
  width: 90%;
}

.password-btn {
  padding: .5em;
  letter-spacing: normal;
  line-height: normal;
  border: none;
  background-color: lightpink;
  min-height: 38px;
  min-width: 9%;
}

.betterhalf-additional-content.row {
  padding: 4em 0 1em 0;
}

.bh-additional-content__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bh-additional-content__wrapper {
  position: relative;
  flex-basis: 1;
  margin-top: 20px;
}

.additional-content__title {
  position: absolute;
  bottom: 0;
  color: white;
  font-size: 15px;
  padding: 2px 8px;
  /* background-color: black; */
  width: 100%;
  left: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  padding: 20px 10px 10px;
  text-align: left;
  font-family: 'Open Sans';
  font-size: 18px;
}

.betterhalf-additional-content .jc-button.curriculum-link {
  padding-top: 50px;
  clear: both;
}

.betterhalf-about__wrapper {
  background-color: white;
  color: black;
  text-align: center;
  padding: 2em 0;
}

.betterhalf-about {
  font-size: 18px;
  font-weight: 300;
  font-family: 'Open Sans';
}

.bh-purchase-link {
  margin-top: 1em;
}

.betterhalf-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2em;
  padding: 0 20px 4em;
  max-width: 996px;
  margin: 0 auto;
  clear: both;
}

.betterhalf-item {
  flex-basis: 100%;
  margin-top: 40px;
}

@media only screen and (min-width: 768px) {
  form.post-password-form {
    width: auto;
  }

  .bh-additional-content__wrapper {
    flex-basis: 48%;
    margin-top: 0;
  }

  .betterhalf-item {
    flex-basis: 48%;
  }
}

.chatterbox-password.container {
  width: 100%;
  background-color: #d9e6ee;
  padding: 4em 15px 0;
  height: 100vh;
  text-align: center;
}

.post-password-form.chatterbox {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  margin: 0 !important;
}

.chatterbox-form__wrapper .curriculum-link {
  margin-top: 2em;
}

.chatterbox__content p {
  display: flex;
  width: 100%;
  text-align: center;
}

.chatterbox-password.container .chatterbox-tagline {
  font-family: 'Open Sans';
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  letter-spacing: 3.5px;
}

form.post-password-form.chatterbox input[type="password"] {
  border: none;
  background-color: lightgrey;
  margin: 0 10px 0 0;
  padding: .5em 5px;
  width: 85%;
}

.chatterbox__content .password-btn {
  background-color: #ba2025;
  color: white;
}

.page-template-archive-jc-chatterbox .jc-main-nav a {
  color: black;
}

.no-touch .page-template-archive-jc-chatterbox .jc-main-nav:hover .menu-item a {
  color: #777;
}

.no-touch .page-template-archive-jc-chatterbox .jc-main-nav:hover .menu-item a:hover {
  color: white;
}

@media only screen and (min-width: 776px) {
  .chatterbox-password.container {
    padding: 8em 2em 0;
  }
  .chatterbox-form__wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
  .chatterbox__content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    align-content: center;
  }
  .chatterbox__content img {
    max-width: 45%;
  }
}

.chatterbox-section {
  background-color: #d9e6ee;
  color: black;
  padding-top: 0;
  text-align: center;
}

.chatterbox-video {
  margin-top: 2em;
}

.chatterbox-downloadbtn {
  margin: 1em 20px 0 0;
  letter-spacing: .1em;
}

.chatterbox-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2em;
  padding: 0 20px;
  max-width: 996px;
  margin: 0 auto;
  clear: both;
}

.chatterbox-content hr,
.betterhalf-content hr {
  margin-top: 20px;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid black;
  display: block;
  width: 100%;
}

.single-jc-chatterbox .chatterbox-content {
  padding: 0;
}

.single-jc-chatterbox .chatterbox-content .col-sm-10 {
  padding: 0;
}

.betterhalf-content hr {
  margin-top: 40px;
}

.chatterbox-item {
  flex-basis: 49%;
  margin-top: 20px;
}

.chatterbox-section .chatterbox-tagline {
  font-family: 'Open Sans';
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  letter-spacing: 3.5px;
}

.ch-socialshare img {
  max-width: 50%;
  margin: 2em 0;
}

.chatterbox-additional-content {
  margin: 4em 0;
}

.ch-additional-content__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ch-additional-content__wrapper {
  flex-basis: 100%;
  position: relative;
}

@media only screen and (min-width: 776px) {
  .ch-socialshare img {
    max-width: 30%;
  }
  .ch-additional-content__wrapper {
    flex-basis: 48%;
  }

  .chatterbox-downloadbtn {
    letter-spacing: .2em;
  }

  .chatterbox-section {
    padding: 8em 0 0 0;
  }
}

/* Press Release Template */

.single-jc-press-release .jc-main-nav a,
.post-type-archive-jc-press-release .jc-main-nav a {
  color: black;
}

.single-jc-press-release .jc-menu-button__line,
.post-type-archive-jc-press-release .jc-menu-button__line {
  background-color: black;
}

.pressrelease-section,
.pressrelease-grid {
  padding: 2em;
  background-color: #f2f2f2;
}

.pressrelease-column {
  background-color: white;
  padding: 3em;
}

.pressrelease-content {
  margin-top: 2em;
}

.pressrelease-content p {
  font-weight: 500;
  color: black;
}

.pressrelase-contactinfo {
  margin-top: 4em;
}

.pressrelase-contactinfo .contact-title {
  font-size: .8em;
}

.pressrelase-contactinfo a {
  color: black;
  text-decoration: none;
  display: block;
  font-weight: 300;
}

@media only screen and (min-width: 776px) {

  .pressrelease-section,
  .pressrelease-grid {
    padding: 8em 0;
  }

  .pressrelease-column {
    padding: 4em;
  }

}

/* Press Release Content */

.pressrelease-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2em;
  clear: right;
}

.pressrelease-item {
  flex-basis: 100%;
  margin-top: 20px;
  background-color: white;
  padding: 2em;
}

.pressrelease-item .title {
  margin: 0;
}

.pressrelease-item .time {
  font-size: 1em;
  color: #999;
}

.pressrelease-item a {
  font-weight: 600;
  color: black;
  text-decoration: none;
}

.pressrelease-item a:hover,
.pressrelease-item a:active {
  text-decoration: none;
}

.pressrelease-grid #searchform {
  text-align: left;
  background-color: white;
  display: inline-block;
  border-radius: 20px;
  padding: 5px 5px 5px 15px;
  width: 100%;
}

.pressrelease-grid #searchform input[type="text"] {
  border: none;
  width: 90%;
}

@media only screen and (min-width: 776px) {

  .pressrelease-item {
    flex-basis: 49%;
  }

  .pressrelease-grid #searchform {
    float: right;
    width: auto;
    padding: 5px 15px;
  }

}

/*---------------------------*
 * CUSTOM
 *---------------------------*/

p a {
  color: #333;
  text-decoration: none;
  font-weight: 400;
}

p a:hover {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.single-jc-event .jc-page-header {
  max-height: 350px;
}

.text-white,
.text-white p,
.text-white a,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
  color: #fff;
}


.jc-locations-map__location-address {
  color: #999;
  font-size: 13px;
}

.jc-subpage-menu__wrapper .menu .menu-item a:hover {
  color: #fff;
}

.jc-main-nav a:hover,
.jc-main-nav a:active,
.jc-main-nav a:visited,
.jc-main-nav a:focus {
  text-decoration: none;
}

.jc-sermon-header--large .jc-sermon-title {
  color: white;
  margin-top: 0;
}

.lead p {
  font-weight: 300 !important;
  color: #555;
  font-size: 16px;
}

.jc-sermon-grid .jc-sermon__info p {
  color: #fff;
}

.wpb_column .wpb_video_widget {
  border: 20px solid #fff;
}

.vc_wp_custommenu .menu .menu-item {
  text-transform: uppercase;
}

select {
/*  font-size: 1.5em !important;*/
  background-color: white !important;
/*  text-transform: uppercase;*/
/*  height: 2.7em;*/
  border: 0px;
}

.form-nextstep:hover {
  border-color: #cccccc;
  color: #000;
  background-color: #cccccc;
  text-decoration: none;
}

.form-nextstep {
  padding: .9em 1.25em !important;
  color: white;
  text-transform: uppercase;
  font-family: 'Montserrat';
  font-size: 18px;
  background-color: black;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 1em;
}

.jc-sermon-header--large .jc-sermon-speaker a {
  color: #A9A9A9;
  font-size: 14px;

}

.jc-sermon-header--large .single-jc-sermon__date {
  color: white;
}

.jc-sermon-header--large .jc-single-sermon-content {
  color: #ACACAC;
}

.jc-sermon-header--large .jc-single-sermon-series {
  color: #707070;
}

.jc-sermon-header--large .jc-single-sermon-series a {
  color: white;
}

.jc-sermon-header--small .jc-single-sermon__title {
  font-size: 18px;
  font-weight: 300;
}

.jc-sermon-header--small .jc-single-sermon__speaker a {
  color: #ADADAD;
}

.jc-sermon-header--small .jc-single-sermon__more-info {
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  color: #ADADAD;
  letter-spacing: 0.16666666666667em;
}

.jc-sermon-header--small .jc-single-sermon__more-info i {
  font-size: 1.25em;
}

.jc-single-sermon__share {
  font-family: Montserrat;
  letter-spacing: 0.16666666667em;
  text-transform: uppercase;
  font-size: 12px;
}

.jc-single-sermon__share i {
  font-size: 1.25em;
}

.jc-single-sermon__share a {
  color: black;
  display: block;
  padding: 15px;
}

.jc-single-sermon__share a:hover {
  text-decoration: none;
}


@media ( min-width: 768px) {
  .jc-single-sermon-grid__title {
    text-align: center;
    font-size: 23px;
    padding: 0.75em 0;
  }
}



/******************************
 * LATEST SERMON HEADER
 ******************************/

.jc-latest-sermon-header {}

.jc-latest-sermon-header .jc-icon-play img {
  height: 50px;
  width: auto;
}

.jc-latest-sermon-header .jc-title a {
  color: white;
}

.jc-latest-sermon-header .jc-title a:hover {
  text-decoration: none;
}

.jc-latest-sermon-header .jc-subtitle-small {
  color: #bbb;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

@media ( min-width: 768px) {

  body .jc-latest-sermon-header {
    padding-top: 15em !important;
    padding-bottom: 15em !important;
  }

}

/* Overwrites Default VC Image Border */

.wpb_single_image .vc_single_image-wrapper.vc_box_border {
  padding: 20px !important;
}

/* .jc-button .btn { text-transform: uppercase; } */

.curriculum_featured_image img {
  width: 100%;
  height: auto;
}

.jc-subpage-menu__wrapper.egroup-submenu.text-center {
  background-color: #efefef;
}

.jc-subpage-menu__wrapper.egroup-submenu.text-center:before,
.jc-subpage-menu__wrapper.egroup-submenu.text-center:after {
  background: #efefef;
}

.jc-trans-row {
  background-color: transparent !important;
}

.wpb_column .wpb_video_widget {
  border: none !important;
}

.post-password-form {
  margin: 7em 0 4em !important;
  text-align: center !important;
  font-size: 1.45em !important;
  color: white !important;
}

.jc-taxonomy-filter__item {
  text-transform: none!important;
}

.jc-events-grid {
  width: 101%;
}

#menu-ythx-submenu-nav li a {
  text-transform: none !important;
}

.p-r-10p {
  padding-right: 10% !important;
}

.p-r-20p {
  padding-right: 20% !important;
}

@media ( max-width: 800px) {
  .p-r-10p {
    padding-right: 15px !important;
  }
  .p-r-20p {
    padding-right: 15px !important;
  }
}


@media only screen and (max-width: 767px) {
  .img-right {
    flex-direction: column-reverse
  }
}

.white_font, .white_font p, .white_font h1, .white_font h2, .white_font h3, .white_font h4, .white_font a { color: #FFF !important; }
.jc-padding__top_bottom { padding: 1.5em 0; }

.sermon-description {
  display: inline-block;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  text-align: justify;
  padding: 16px;
}

body.archive.post-type-archive.post-type-archive-board {background-color: #000000;}
.board__header {height: 150px;}
.board__body_page {background-color: #efefef;padding: 5% 15%;}
.board__minute_post h2 {font-size: 20px;font-weight: 400 !important;}
article.board__minute_post {margin: 4% 0;border: 1px solid #e4e4e4;padding: 3%;background-color: #ffff;}
article.board__minute_post:hover {background-color: #fdfdfd;}
@media only screen and (max-width: 767px) {
  article.board__minute_post {margin: 10% 0;padding: 4%;}
}

.black {color: #000000 !important;}
.m-b-10 { margin-bottom: 10px !important; }
.m-b-20 { margin-bottom: 20px !important; }