@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Arimo:400,400i,700&display=swap");
html, body {
  font-family: Arimo, "sans-serif";
}

h1, h2, h3, h4, h5, h6 {
  font-family: Poppins, "sans-serif";
}

.btn-primary {
  background: #053E64;
  padding: 10px 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-danger {
  background: #d02e47;
  padding: 10px 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-secondary {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, #fc7634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb0a63', endColorstr='#fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  padding: 10px 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-secondary:hover {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #fc7634 0%, #eb0a63 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc7634', endColorstr='#eb0a63',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

.primary-text {
  color: #053E64;
}

.section-title {
  margin-bottom: 40px;
}

.section-title span {
  position: relative;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 10px 0 0 10px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100&0.4+0,0.4+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, rgba(252, 118, 52, 0.2) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66eb0a63', endColorstr='#66fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

@-webkit-keyframes blinking {
  0% {
    background-color: transparent;
  }
  /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
    50%{
      background-color: #55d66b;
      border: 5px solid #126620;
    }
    */
  100% {
    background-color: #95d343;
  }
}

@keyframes blinking {
  0% {
    background-color: transparent;
  }
  /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
    50%{
      background-color: #55d66b;
      border: 5px solid #126620;
    }
    */
  100% {
    background-color: #95d343;
  }
}

header {
  position: relative;
  border-bottom: 1px solid #ccc;
  z-index: 9;
  -webkit-box-shadow: 0px 0px 5px #ccc;
          box-shadow: 0px 0px 5px #ccc;
}

header .header-top {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, #fc7634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb0a63', endColorstr='#fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

header .header-top ul.list-inline {
  margin-bottom: 0;
}

header .header-top ul.list-inline li a {
  display: inline-block;
  padding: 7px 5px;
  color: #fff;
  font-size: 14px;
}

header .header-top ul.list-inline li.live-button a {
  padding-left: 15px;
  padding-right: 15px;
}

header .header-top ul.list-inline li.green-layer a {
  /*background: #95d343;*/
  -webkit-animation: blinking 1s infinite alternate;
          animation: blinking 1s infinite alternate;
}

header .navigation .brand-logo {
  padding: 5px 0;
}

header .navigation .nav {
  list-style: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .navigation .nav li {
  position: relative;
  border-left: 1px solid transparent;
}

header .navigation .nav li a {
  display: inline-block;
  padding: 24px 10px;
  color: #053E64;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
}

header .navigation .nav li ul {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  list-style: none;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  overflow: hidden;
}

header .navigation .nav li ul li {
  display: block;
  border-left: none;
}

header .navigation .nav li ul li a {
  text-align: left;
  padding: 8px 15px;
  white-space: nowrap;
  font-size: 15 !important;
  display: block;
  text-decoration: none;
}

header .navigation .nav li ul li.active a {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, #fc7634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb0a63', endColorstr='#fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

header .navigation .nav li ul li:hover a:hover {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, #fc7634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb0a63', endColorstr='#fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}

header .navigation .nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, #fc7634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb0a63', endColorstr='#fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}

header .navigation .nav li.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, #fc7634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb0a63', endColorstr='#fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}

header .navigation .nav li.active ul li :after {
  content: '';
  position: relative;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  background: none;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}

header .navigation .nav li:hover a::after {
  width: 100%;
}

header .navigation .nav li:hover ul {
  opacity: 1;
  max-height: 500px;
  visibility: visible;
}

header .navigation .nav li:hover ul li a::after {
  display: none;
}

/* Ultrawide screens (1920px and above) */
@media (min-width: 1920px) {
    #slider{
        background: #ccc;
        padding: 0 18%;
    }
    #slider .slider-inner {
        /*max-width: 80%;*/
    }
}

#slider .bx-wrapper {
  border: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
}

#slider .bx-wrapper .bx-pager {
  bottom: 0;
  padding-top: 0;
  padding-bottom: 10px;
}

#slider #slider-bottom .info-box {
  position: relative;
  background: #053E64;
  color: #fff;
  padding: 15px 40px;
  margin-top: -40px;
  margin-bottom: 20px;
  border-radius: 0 40px 0 40px;
  -webkit-box-shadow: 0px 3px 15px #999;
          box-shadow: 0px 3px 15px #999;
  -webkit-transform: skewX(-5deg);
          transform: skewX(-5deg);
}

#slider #slider-bottom .info-box a {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, #fc7634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb0a63', endColorstr='#fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
  padding: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  border-top-right-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  border-left: 1px solid #fff;
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
}

#slider #slider-bottom .info-box a:hover {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #fc7634 0%, #eb0a63 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc7634', endColorstr='#eb0a63',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

section#about-us {
  height: 0px;
  opacity: 0;
}

section#about-us p {
  color: #52525f;
}

#featured {
  padding: 20px 0 50px;
  text-align: center;
}

#featured h3 {
  position: relative;
  margin-bottom: 30px;
}

#featured h3 span {
  background: #fff;
  padding: 5px 15px;
}

#featured h3:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  border-top: 1px solid #ccc;
  z-index: -1;
}

#featured a {
  color: #053E64;
}

#featured a h4 {
  font-size: 1.2rem;
  margin: 0;
  border-bottom-right-radius: 30px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100 */
  background: #eb0a63;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #eb0a63 0%, #fc7634 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb0a63', endColorstr='#fc7634',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  padding: 8px 10px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#featured a img {
  width: 100%;
  border-top-left-radius: 30px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#featured a:hover {
  text-decoration: none;
}

#featured a:hover h4 {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 0px;
}

#featured a:hover img {
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
}

#events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#events .event-block {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  overflow: hidden;
}

#events .event-block .text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#events .event-block .text-block .details {
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

#events .event-block .text-block .details p {
  color: #888;
}

#events .event-title {
  background: #ce054c;
  color: #fff;
  text-align: center;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
  position: relative;
}

#magazine {
  padding: 30px 0;
  position: relative;
  background: url("../images/bg2.jpg") bottom;
  background-size: 100%;
  background-attachment: fixed;
}

#magazine h2 {
  color: #fff;
}

#magazine img {
  z-index: 1;
}

#magazine .textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  z-index: 1;
  color: #fff;
}

#magazine::before {
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 62, 100, 0.6);
  z-index: 0;
}

#promise-card {
  padding: 30px 0;
  background: #fafafa;
}

#promise-card .audio-sermons {
  margin-bottom: 20px;
}

#promise-card .audio-sermons .audio-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

#promise-card .audio-sermons .audio-block .audio-thumbnail {
  width: 150px;
}

#promise-card .audio-sermons .audio-block .audio-text {
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#promise-card .audio-sermons .audio-block .audio-text h4 {
  font-size: 1.2rem;
}

#promise-card .audio-sermons .audio-block .audio-text p {
  font-size: .9rem;
  margin: 0;
}

#promise-card .promise-card-img {
  position: relative;
  margin: 40px 0 20px 0;
  border: 1px solid #ccc;
  overflow: hidden;
  padding: 5px;
  -webkit-box-shadow: 0px 3px 5px #ccc;
          box-shadow: 0px 3px 5px #ccc;
  background: #fff;
}

#promise-card .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#promise-card .buttons a {
  display: inline-block;
}

#video-sermons {
  padding: 30px 0;
  border-top: 1px solid #ccc;
  position: relative;
  background: url("../images/bg2.jpg") bottom;
  background-size: 100%;
  background-attachment: fixed;
}

#video-sermons .video-sermon {
  background: rgba(255, 255, 255, 0.8);
  display: block;
  text-decoration: none;
  -webkit-box-shadow: 0px 3px 8px #333;
          box-shadow: 0px 3px 8px #333;
}

#video-sermons .video-sermon .video-title {
  background: transparent;
  color: #053E64;
  padding: 9px 0;
  text-align: center;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  position: relative;
  z-index: 1;
}

#video-sermons .video-sermon .video-title h5 {
  font-size: 18px;
  margin-bottom: 0px;
}

#video-sermons .video-sermon .video-title p {
  font-size: 14px;
  margin-bottom: 0;
  color: #666666;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

#video-sermons .video-sermon .video-title:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  right: 100%;
  bottom: 0px;
  z-index: -1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb0a63+0,fc7634+100&0.4+0,0.4+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(252, 118, 52, 0.8) 0%, rgba(235, 10, 99, 0.8) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66fc7634', endColorstr='#66eb0a63',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#video-sermons .video-sermon:hover .video-title {
  color: #fff;
}

#video-sermons .video-sermon:hover .video-title p {
  color: #ccc;
}

#video-sermons .video-sermon:hover .video-title:before {
  opacity: 1;
  right: 0;
}

#video-sermons .buttons {
  margin-top: 20px;
}

#video-sermons .buttons a {
  display: inline-block;
}

#video-sermons::before {
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 62, 100, 0.6);
  z-index: 0;
}

/* ==================================
FOOTER CSS BEGINS
===================================== */
footer.site-footer {
  background: #222;
  color: #fff;
  /*margin-top: 30px;    */
  padding-top: 25px;
}

footer.site-footer h3 {
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px solid #ce054c;
}

footer.site-footer ul {
  padding: 0;
  list-style: none;
}

footer.site-footer ul li {
  padding: 3px 0;
}

footer.site-footer ul li a {
  color: #fff;
}

footer.site-footer ul li:before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  padding-right: 5px;
}

footer.site-footer .textwidget {
  line-height: 180%;
}

footer.site-footer .textwidget ul {
  margin-top: 10px;
}

footer.site-footer .textwidget ul li {
  display: inline-block;
  margin-right: 6px;
}

footer.site-footer .textwidget ul li a {
  border: 1px solid #ce054c;
  display: block !important;
  width: 40px !important;
  padding: 5px 0;
  text-align: center;
}

footer.site-footer .textwidget ul li:before {
  content: '' !important;
  padding: 0px !important;
}

footer.site-footer .footer-bottom {
  border-top: 1px solid #484848;
  margin-top: 15px;
}

footer.site-footer .footer-bottom .site-info {
  margin: 15px 0px;
  font-size: 14px;
}

footer.site-footer .footer-bottom .site-info a {
  color: #ce054c;
}

footer.site-footer #tp_widget_recent_tweets-2 {
  padding-left: 25px;
}

footer.site-footer #tp_widget_recent_tweets-2:before {
  content: '';
}

footer.site-footer #tp_widget_recent_tweets-2 .tp_recent_tweets li {
  background-image: url("../images/tweet.png");
  background-repeat: no-repeat;
  background-position: 0px 4px;
  padding-left: 0px;
  padding-bottom: 20px;
  float: left;
  clear: left;
  line-height: 20px;
  list-style-type: none;
}

footer.site-footer #tp_widget_recent_tweets-2 .tp_recent_tweets li span {
  font-size: 15px;
}

footer.site-footer #tp_widget_recent_tweets-2 .tp_recent_tweets li span a {
  font-size: 14px;
}

footer.site-footer #tp_widget_recent_tweets-2 .tp_recent_tweets li .twitter_time {
  color: #999;
  font-size: 14px !important;
  font-style: italic;
  font-weight: normal;
}

#top-banner {
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#top-banner.bgcenter {
  background-position: center !important;
  background-size: 100% !important;
}

#top-banner .breadcrumb {
  background: transparent;
  padding: 0;
}

#top-banner .breadcrumb.text-white li.breadcrumb-item {
  color: #fff;
}

#top-banner .breadcrumb.text-white li.breadcrumb-item:before {
  color: #fff;
}

#top-banner .breadcrumb.text-white li.breadcrumb-item.active {
  color: #ccc;
}

#top-banner .breadcrumb.text-white li.breadcrumb-item a {
  color: #fff;
}

#map_canvas {
  width: 100%;
  height: 300px;
  margin-top: 25px;
}

.content-wrapper {
  padding: 35px 0;
}

#aside {
  padding: 35px 0;
}

.form-control {
  border-radius: 0;
  padding: .475rem .85rem;
}

.about-menu ul {
  list-style: none;
  padding: 0;
}

.about-menu ul li {
  border-bottom: 1px dotted #ccc;
  padding: 8px 0px 8px 10px;
}

.about-menu ul li:before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  padding-right: 5px;
}

.about-menu ul li:first-child {
  border-top: 1px dotted #ccc;
}

h3 {
  position: relative;
  margin-bottom: 30px;
}

h3.doublesideborder {
  text-align: center;
}

h3.rightborder {
  text-align: left;
}

h3.rightborder span {
  padding: 5px 15px 5px 0;
}

h3:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  border-top: 1px solid #ccc;
  z-index: -1;
}

h3 span {
  background: #fff;
  padding: 5px 15px;
}

#contact-info {
  padding-left: 15px;
  border-left: 1px solid #eee;
}

#contact-info .address {
  list-style: none;
  padding: 0;
}

#contact-info .address li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

#contact-info .address li i {
  margin-right: 10px;
  font-size: 18px;
}

#contact-info .address li strong {
  width: 100px;
}

#contact-info .social {
  list-style: none;
  padding: 0;
  text-align: center;
}

#contact-info .social li {
  display: inline-block;
  margin: 0px 10px;
}

#contact-info .social li a {
  font-size: 24px;
  color: #ce054c;
}

.promise {
  margin-bottom: 20px;
}

.promise .promise-card {
  border: 1px solid #ccc;
  padding: 5px;
  overflow: hidden;
}

.promise .promise-card .promise-img {
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.promise .promise-card .promise-img .promise-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  /* IE6-9 */
  text-align: center;
  height: 80px;
  opacity: 0;
  -webkit-transition: height .1s linear;
  transition: height .1s linear;
}

.promise .promise-card .promise-img .promise-hover ul.cell {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.promise .promise-card .promise-img .promise-hover ul.cell li {
  display: inline-block;
}

.promise .promise-card .promise-img .promise-hover ul.cell li a {
  border: 1px solid #ce054c;
  background: #ce054c;
  color: #fff;
  padding: 10px 15px;
  display: block;
}

.promise:hover .promise-img {
  -webkit-transform: scale(1.04, 1.04);
          transform: scale(1.04, 1.04);
}

.promise:hover .promise-img .promise-hover {
  opacity: 1;
}

.promise .text-block {
  position: relative;
}

.promise .text-block h4 {
  font-size: 18px;
  margin: 0;
  text-align: center;
}

.promise .text-block h4 a {
  display: inline-block;
  padding: 8px 15px;
}

.tags {
  padding: 0;
  margin: 0 0 15px 0;
  list-style: none;
}

.tags li {
  display: inline-block;
}

.tags li a {
  display: block;
  border: 1px solid #053E64;
  background: #053E64;
  color: #fff;
  padding: 3px 10px;
  border-radius: 15px;
  margin-bottom: 10px;
  font-size: 14px;
}

.side-title {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}

.years {
  padding: 0;
  margin: 0 0 30px 0;
  list-style: none;
}

.years li {
  display: block;
  border-bottom: 1px solid #ccc;
}

.years li a {
  display: block;
  padding: 7px 10px;
}

.years li a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  padding-right: 10px;
  color: #222;
}

.years li:first-child {
  border-top: 1px solid transparent;
}

.facebook_cover {
  border: 1px solid #ccc;
}

.facebook_cover .facebook-text h5 {
  margin: 0;
}

.facebook_cover .facebook-text h5 a {
  padding: 5px 15px;
  font-size: 24px;
  text-align: left;
  color: #222;
}

.facebook_cover .facebook-text a {
  padding: 7px 15px;
  display: block;
  text-align: center;
  color: #ce054c;
}

.video-sermon-blk {
  margin-bottom: 20px;
}

.video-sermon-blk .video-sermon {
  display: block;
}

.video-sermon-blk .video-sermon .video-title {
  padding: 5px;
}

.video-sermon-blk .video-sermon .video-title h5 {
  font-size: 1.18rem;
  line-height: 1.1rem;
  margin: 0;
  padding-top: 3px;
  padding-bottom: 4px;
}

.video-sermon-blk .video-sermon .video-title p {
  color: #333;
  font-size: 0.9rem;
  margin: 0;
}

.video-sermon-blk .video-sermon .video-title p span {
  padding-right: 7px;
  padding-left: 7px;
}

.video-sermon-blk .video-sermon .video-title p span:first-child {
  padding-left: 0px;
}

#video-aside {
  position: absolute;
  top: 30px;
  bottom: 0;
  overflow-y: auto;
}

#video-aside .aside-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#video-aside .aside-inner .video-side-blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  padding: 5px;
}

#video-aside .aside-inner .video-side-blk .video-thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
}

#video-aside .aside-inner .video-side-blk .video-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 10px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

#video-aside .aside-inner .video-side-blk .video-title a {
  display: block;
  padding: 5px 0;
}

#video-aside .aside-inner .video-side-blk .video-title a h5 {
  font-size: 15px;
  margin: 0;
}

#video-aside .aside-inner .video-side-blk .video-title p {
  font-size: 12px;
  margin: 0;
}

.sorry-live b {
  font-size: 17vh;
}

@media only screen and (max-width: 1200px) {
  footer.site-footer h3 {
    font-size: 1.7rem;
  }
}

@media only screen and (max-width: 991px) {
  .logo-block {
    padding-right: 0;
  }
  .navigation-block {
    padding-left: 0;
  }
  header .navigation .nav li a {
    font-size: 16px;
    padding: 20px 7px;
  }
  footer.site-footer h3 {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 767px) {
  #top-banner {
    height: 150px;
  }
  #top-banner h1 {
    font-size: 26px;
  }
  .bx-wrapper .bx-controls-direction a {
    z-index: 1;
  }
  header .navigation {
    position: relative;
    z-index: 5;
  }
  header .navigation .navigation-block {
    position: initial;
  }
  header .navigation .navigation-block .nav.mobile-view {
    display: block !important;
    position: absolute !important;
    top: 100%;
    right: 0;
    background: #d02e47;
    left: 0 !important;
  }
  header .navigation .navigation-block .nav.mobile-view li a {
    color: #fff;
    text-align: left;
    display: block;
  }
  header .navigation .navigation-block .nav.mobile-view li ul {
    position: relative;
    visibility: visible;
    z-index: 9999;
  }
  header .navigation .navigation-block .nav.mobile-view li ul li a {
    color: #053E64;
  }
  header .navigation .navigation-block .nav-mobile {
    display: inline-block;
    padding: 13.5px 0 0;
    font-size: 26px;
    color: #053E64;
    cursor: pointer;
  }
  #video-aside {
    height: auto;
    position: relative;
  }
}

@media only screen and (max-width: 450px) {
  .head-social {
    display: none;
  }
  header .navigation .navigation-block .nav-mobile {
    padding-top: 7px;
  }
  .sorry-live b {
    font-size: 13vh;
  }
}

.our-branches h2{
    font-size: 18px;
}
/*# sourceMappingURL=style.css.map */
