/**
 * Owl Carousel v2.3.0
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}


 /**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none; }
.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; 
}
.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 10px; }

.owl-theme .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791; 
}

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
};

.-browser-mobile .button:after, .-browser-tablet .button:after{height: 8px;}

.tools-plugin{margin: 0;}
figcaption{display: none !important;}
.split-image-left{background: #2c5b86;} 
.split-image-left .text-col.lei-row{max-width: 400px;}
.split-image-left .text-col{    padding: 140px 80px;}
.split-image-left .text-col .lei-col-in{  max-width: 800px;}
.split-image-left .image-col{width: 40%;}

.intro-home{transition: 3s; background-size: 105vw auto;}
.-lei-view .intro-home{display: none;}

.intro-pp{max-width: 700px; }
.intro-pp .lei-paragraph p{line-height: 2.0;}
.intro-pp .lei-heading{font-size: 30px;}

.-lei-view .down-arrow-hold { bottom: -40px; position: absolute; left: 0; right: 0;}

.weekly-gatherings{background: #fff; border: 1px solid #ccc;  }
.-lei-view .weekly-gatherings{ top: 130px;}
.weekly-gatherings .pic-col{ width: 67%;}
@media (max-width:920px){
    .weekly-gatherings .pic-col{ width: 100%; margin-top: 0; height: 230px;}
    .weekly-gatherings .lei-row-in{margin-top: 0;}
    .weekly-gatherings .pic-col .lei-elem {margin-top: 0;}
}

.schedule{padding-top: 130px; }
.schedule td strong { color: #195d99; color: #078ebe;}
.schedule td:first-of-type{text-align: right; padding-right: 12px;}

.events{background: #eaeaea;}


.overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: #000;
    content: "";
}

.home-slider .single-slider .btn{padding: 13px 32px;}


.communities .cards .lei-paragraph{min-height: 120px;}
.communities .cards .lei-heading{min-height: 50px;}


.the-ca-is{background: #f4f4f4; background: #3d7c9c; background: #078ebe; }
.the-ca-is .lei-heading{color: #fff;}
.img-gallery .tools-image, .img-gallery .ui-sortable-placeholder-blue {
    width: 200px;
    display: inline-block;
}


.event-button .button-align-left{ margin-left: 0;}
.event-button .button-theme-e{ padding: 6px 8px; font-size: 12px;}

#-plugin-67dd863a78a21 img {
   box-shadow: 3px 4px 11px rgb(0 0 0 / 25%);
}

.-lei-edit #-plugin-67dd863a78a21 .slide img {
   width: 100%;
}

.-lei-edit #-plugin-67dd863a78a21 {
    margin-bottom: 100px;
}

#-plugin-67dd863a78a21 {
    margin-bottom: -100px;
}

.owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.-lei-edit .owl-carousel {    display: block;}
.-lei-edit .owl-carousel > div {    display: none;}
.-lei-edit .owl-carousel > div:first-of-type {    display: block;}
 .owl-carousel .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
} 
 
/*.events .owl-nav{display: none;}*/
.events .single-event {
    margin-top: 30px;
    margin: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.events .single-event:hover {
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.events .single-event .head{
    position:relative;
}
.events .single-event .head img{}
.events .single-event .head .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    line-height: 50px;
    padding: 0;
    margin: -25px 0 0 -25px;
    color: #fff;
    transition: ;
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    transform: scale(3);
    opacity:0;
    visibility:hidden;
    -webkit-transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
    transition:all 0.3s ease;
    z-index:35;
}
.events .single-event:hover .head .btn{
    transform:scale(1);
    opacity:1;
    visibility:visible
}
.events .single-event .head .btn:hover{
    background:#fff;
    color:#252525;
}
.events .single-event .head.overlay:before{
    opacity:0;
    visibility:hidden;
    z-index:34;
}
.events .single-event:hover .head.overlay:before{
    opacity:0.5;
    visibility:visible;
}
.events .event-content {
    margin-top: 10px;
    padding: 20px;
}
.events .event-content p{    
font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #252525;
    line-height: 25px;
    position: relative;
}
.events .event-content .meta{}
.events .meta svg { margin-right: 5px; color: #2d403a;}
.events .event-content .meta span {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #e6e6e6;
    font-weight: 500;
    display: inline-block;
    font-size: 13px;
}
.events .event-content .meta span:last-child{
    margin:0;
    padding:0;
    border:none;
}
.events .event-content .meta span i{
    margin-right:5px;
}
.events .event-content h4 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 700;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
}
.events .event-content h4 a{
    color:#252525;
    font-weight:700;
}
.events .event-content p{}
.events .event-content .btn {
    margin-top: 20px;
    border: 2px solid;
    padding: 11px 32px;
}
.events .event-content .btn:hover{
    background:transparent;
    border-color:transparent;
    color:#fff;
}
/* Event Nav */
#-plugin-67dd863a78a21 .owl-nav {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
}
#-plugin-67dd863a78a21:hover .owl-nav{
    opacity:1;
    visibility:visible;
}
#-plugin-67dd863a78a21 .owl-carousel .owl-nav button{
    height: 48px;
    width: 48px;
    line-height: 48px;
    top: 50%;
    background: #666;
    color: #fff;
    font-size: 25px;
    position: absolute;
    border: none;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 100%;
    margin-top: -24px;
}
button:focus {outline:0;}
#-plugin-67dd863a78a21 .owl-carousel .owl-nav button:hover{
    color:#fff;
    cursor: pointer;
}
#-plugin-67dd863a78a21 .owl-carousel .owl-nav .owl-prev{
    left:-75px;
    
}
#-plugin-67dd863a78a21 .owl-carousel .owl-nav .owl-prev:hover{
    left:-65px;
    background: #0790be;
}
#-plugin-67dd863a78a21 .owl-carousel .owl-nav .owl-next{
    right:-75px;
}
#-plugin-67dd863a78a21 .owl-carousel .owl-nav .owl-next:hover{
    right:-65px;
    background: #0790be;
}
/* Events Archive */
.events.archives .single-event{
    margin-top:30px;
}
/* Pagination */
.events.archives .pagination-main {
    text-align: center;
}
.events.archives .pagination {
    display: block;
    padding-left: 0;
    margin: 50px 0 0;
    border-radius: 4px;
    text-align: center;
    display:inline-block;
}
.events.archives .pagination li {
    float: left;
    margin-right: 5px;
}
.events.archives .pagination li a {
    padding: 12px 25px;
    border: none;
    display: block;
    background: #f6f6f6;
    color: #fff;
    color: #252525;
}
.events.archives .pagination li:hover a, 
.events.archives .pagination li.active a {
    color: #fff;
}
/* Event Single */
.events.single{
    padding:60px 0 90px;
}
.events.single .single-event{
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    margin-top:30px;
} 
.events.single .event-content h2 {
    font-size: 30px;
    margin: 5px 0 20px;
}
.events.single .event-content h2 a{
    color:#252525;
} 
.events.single .event-content p{
    margin-bottom:30px;
} 
.events.single .event-content img{
    margin-bottom:30px;
}
/* Events Meta */
.events.single .book-now {
    overflow: hidden;
}
.events.single .book-now .button {
    float: left;
}
.events.single .book-now .button .btn{
    margin-top:0px;
} 
.events.single .social{
    float:right;
} 
.events.single .social li {
    display: inline-block;
    margin-right: 5px;
}
.events.single .social li:last-child{
    margin:0;
}
.events.single .social li a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: block;
    border: 1px solid #e6e6e6;
    text-align: center;
    color: #252525;
    border-radius: 100%;
}
.events.single .social li:hover a {
    color:#fff;
    border-color:transparent;
}
/* Slider Meta */
.events.single .owl-carousel .owl-nav div{
    background:#fff;
    color:#252525;
}
.events.single .owl-carousel .owl-nav div:hover{
    color:#fff;
}
.events.single .owl-carousel .owl-nav .owl-prev {
    left: 10px;
}
.events.single .owl-carousel .owl-nav .owl-next {
    right: 10px;
}

.event-button .button-align-left{ margin-left: 0;}
.event-button .button-theme-e{ padding: 6px 8px; font-size: 12px;}

.owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.-lei-edit .owl-carousel {    display: block;}
.-lei-edit .owl-carousel > div {    display: none;}
.-lei-edit .owl-carousel > div:first-of-type {    display: block;}
 .owl-carousel .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
} 
 
/*.events .owl-nav{display: none;}*/
.events .single-event {
    margin-top: 30px;
    margin: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.events .single-event:hover {
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.events .single-event .head{
    position:relative;
}
.events .single-event .head img{}
.events .single-event .head .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    line-height: 50px;
    padding: 0;
    margin: -25px 0 0 -25px;
    color: #fff;
    transition: ;
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    transform: scale(3);
    opacity:0;
    visibility:hidden;
    -webkit-transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
    transition:all 0.3s ease;
    z-index:35;
}
.events .single-event:hover .head .btn{
    transform:scale(1);
    opacity:1;
    visibility:visible
}
.events .single-event .head .btn:hover{
    background:#fff;
    color:#252525;
}
.events .single-event .head.overlay:before{
    opacity:0;
    visibility:hidden;
    z-index:34;
}
.events .single-event:hover .head.overlay:before{
    opacity:0.5;
    visibility:visible;
}
.events .event-content {
    margin-top: 10px;
    padding: 20px;
}
.events .event-content p{    
font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #252525;
    line-height: 25px;
    position: relative;
}
.events .event-content .meta{}
.events .meta svg { margin-right: 5px; color: #2d403a;}
.events .event-content .meta span {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #e6e6e6;
    font-weight: 500;
    display: inline-block;
    font-size: 13px;
}
.events .event-content .meta span:last-child{
    margin:0;
    padding:0;
    border:none;
}
.events .event-content .meta span i{
    margin-right:5px;
}
.events .event-content h4 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 700;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
}
.events .event-content h4 a{
    color:#252525;
    font-weight:700;
}
.events .event-content p{}
.events .event-content .btn {
    margin-top: 20px;
    border: 2px solid;
    padding: 11px 32px;
}
.events .event-content .btn:hover{
    background:transparent;
    border-color:transparent;
    color:#fff;
}
/* Event Nav */
.events .owl-nav {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
}
.events:hover .owl-nav{
    opacity:1;
    visibility:visible;
}
.events .owl-carousel .owl-nav button{
    height: 48px;
    width: 48px;
    line-height: 48px;
    top: 50%;
    background: #666;
    color: #fff;
    font-size: 25px;
    position: absolute;
    border: none;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 100%;
    margin-top: -24px;
}
button:focus {outline:0;}
.events .owl-carousel .owl-nav button:hover{
    color:#fff;
    cursor: pointer;
}
.events .owl-carousel .owl-nav .owl-prev{
    left:-75px;
    
}
.events .owl-carousel .owl-nav .owl-prev:hover{
    left:-65px;
    background: #0790be;
}
.events .owl-carousel .owl-nav .owl-next{
    right:-75px;
}
.events .owl-carousel .owl-nav .owl-next:hover{
    right:-65px;
    background: #0790be;
}
/* Events Archive */
.events.archives .single-event{
    margin-top:30px;
}
/* Pagination */
.events.archives .pagination-main {
    text-align: center;
}
.events.archives .pagination {
    display: block;
    padding-left: 0;
    margin: 50px 0 0;
    border-radius: 4px;
    text-align: center;
    display:inline-block;
}
.events.archives .pagination li {
    float: left;
    margin-right: 5px;
}
.events.archives .pagination li a {
    padding: 12px 25px;
    border: none;
    display: block;
    background: #f6f6f6;
    color: #fff;
    color: #252525;
}
.events.archives .pagination li:hover a, 
.events.archives .pagination li.active a {
    color: #fff;
}
/* Event Single */
.events.single{
    padding:60px 0 90px;
}
.events.single .single-event{
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    margin-top:30px;
} 
.events.single .event-content h2 {
    font-size: 30px;
    margin: 5px 0 20px;
}
.events.single .event-content h2 a{
    color:#252525;
} 
.events.single .event-content p{
    margin-bottom:30px;
} 
.events.single .event-content img{
    margin-bottom:30px;
}
/* Events Meta */
.events.single .book-now {
    overflow: hidden;
}
.events.single .book-now .button {
    float: left;
}
.events.single .book-now .button .btn{
    margin-top:0px;
} 
.events.single .social{
    float:right;
} 
.events.single .social li {
    display: inline-block;
    margin-right: 5px;
}
.events.single .social li:last-child{
    margin:0;
}
.events.single .social li a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: block;
    border: 1px solid #e6e6e6;
    text-align: center;
    color: #252525;
    border-radius: 100%;
}
.events.single .social li:hover a {
    color:#fff;
    border-color:transparent;
}
/* Slider Meta */
.events.single .owl-carousel .owl-nav div{
    background:#fff;
    color:#252525;
}
.events.single .owl-carousel .owl-nav div:hover{
    color:#fff;
}
.events.single .owl-carousel .owl-nav .owl-prev {
    left: 10px;
}
.events.single .owl-carousel .owl-nav .owl-next {
    right: 10px;
}

@media screen and (max-width: 320px) {#wrap-14548{ background-image: url(/assets/images/5cf576edc702c.jpg); }
#wrap-14556{ background-image: url(/assets/images/67dd8628c05de.jpeg); } }
@media screen and (min-width: 321px) and (max-width: 640px) {#wrap-14548{ background-image: url(/assets/images/5cf576ee022b5.jpg); }
#wrap-14556{ background-image: url(/assets/images/67dd8628e30cb.jpeg); } }
@media screen and (min-width: 641px) and (max-width: 1024px) {#wrap-14548{ background-image: url(/assets/images/5cf576ee3d9a1.jpg); }
#wrap-14556{ background-image: url(/assets/images/67dd86291a45c.jpeg); } }
@media screen and (min-width: 1025px) {#wrap-14548{ background-image: url(/assets/images/5cf576eea3321.jpg); }
#wrap-14556{ background-image: url(/assets/images/67dd86295df27.jpeg); } }