/* 
 *  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;
  -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 {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
}
.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-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 5px 5px;

    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;

    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;

    border: solid 2px #ffffff;
    background: transparent;
}
.owl-carousel .owl-dots .owl-dot.active span, 
.owl-carousel .owl-dots .owl-dot:hover span {
    border-color: #ffffff;
    background: #ffffff;
}
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}
.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;
  -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;
  -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);
  -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;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-controls .owl-nav {
    position: absolute;
    display: block;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events:none;
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next {
    float:left;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    pointer-events:auto;
    border-radius: 2px;
    border: solid 1px transparent;
    background-color: rgba(255, 255, 255, 0.30);
    color: #ffffff;
}
.owl-carousel .owl-controls .owl-nav .owl-prev:hover,
.owl-carousel .owl-controls .owl-nav .owl-next:hover {
    border: solid 1px #c1d8dd;
    background-color: rgba(255, 255, 255, 1);
    color: #9bbbc5;
}
.owl-carousel .owl-controls .owl-nav .owl-prev {margin-left: 30px;}
.owl-carousel .owl-controls .owl-nav .owl-next {margin-right: 30px;}
.owl-carousel .owl-controls .owl-nav .owl-prev i,
.owl-carousel .owl-controls .owl-nav .owl-next i {
    font-size: 20px;
    /*font-size: 2rem;*/
    line-height: 42px;
    /*line-height: 4.2rem;*/
}
.owl-carousel .owl-controls .owl-nav .owl-prev i:before,
.owl-carousel .owl-controls .owl-nav .owl-next i:before {
    /*content: '' !important;*/
}
/*.owl-carousel .owl-controls .owl-nav .owl-prev i {background: url("../../../images/icon__left-open-big.png") no-repeat 50% 50%;}*/
/*.owl-carousel .owl-controls .owl-nav .owl-next i {background: url("../../../images/icon__right-open-big.png") no-repeat 50% 50%;}*/
.owl-carousel .owl-controls .owl-nav .owl-next {
    float:right;
    padding-left: 4px;
}

.owl-carousel .item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.owl-carousel .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0,0,0,0.5); /*dim the background*/
    opacity:0;
    -webkit-transition: opacity .25s ease;
    -moz-transition: opacity .25s ease;
    transition: opacity .25s ease;
}
.owl-carousel .item:hover .overlay {
    opacity: 1;
}

.owl-carousel .item .recent-post-meta {
    /*margin: 33% 15% 0;*/
    text-align: center;
}

.widget_recent_entries_carousel .post-thumbnail {
    margin-bottom: 28px;
}
.sidebar-before-content .widget_recent_entries_carousel .post-thumbnail {
    margin-bottom: 24px;
}
.sidebar-after-content .widget_recent_entries_carousel .post-thumbnail {
    margin-bottom: 26px;
}
.owl-carousel .item .recent-post-meta a {
    /*text-transform: uppercase;*/
    /*font-weight: 700;*/
    /*color:#ffffff;*/
}

.owl-carousel .item .recent-post-meta a.post-title {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 30px;
    line-height: 3rem;
    color: #171717;
}
.sidebar-after-content .owl-carousel .item .recent-post-meta a.post-title {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    line-height: 2.2rem;
}
.owl-carousel .item .recent-post-meta .post-cat {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    border: solid 1px #171717;
    border-color: #171717;
    border-radius: 2px;
    padding: 2px 7px;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1.5;
}
.sidebar-before-content .owl-carousel .item .recent-post-meta .post-cat {
    margin-bottom: 19px;
}
.sidebar-after-content .owl-carousel .item .recent-post-meta .post-cat {
    margin-bottom: 11px;
}

.owl-carousel .item .recent-post-meta .post-date {
    display: block;
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 30px;
    color:#858585;
}

.owl-carousel .item > img {
    /*-moz-transition:-moz-transform 1s ease-in;
    -webkit-transition:-webkit-transform 1s ease-in;
    -o-transition:-o-transform 1s ease-in;
    transition:transform 1s ease-in;*/
}

.owl-carousel .item:hover > img {
    /*-moz-transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -o-transform:scale(1.1);
    transform:scale(1.1);*/
}

.overlay .more-link {
    display: inline-block;
    white-space: nowrap;
    margin: 5px auto 22px;
    padding: 0.7em 1em;
    color: #000000;
    background-color: transparent;

    border: 1px solid #e8e8e8;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.overlay .more-link:hover {
    background-color: #e91e68;
    color: #ffffff;
}

/* owl widget single /slider */
.owl-widget-single {}
.slide {}
.slide-img {
    position: relative;
    overflow: hidden;
}
.sidebar-before-content .slide-img .object {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    height: 300px;
    width: 300px;
    margin-top: -150px;
    margin-left: -150px;
    border: solid 13px rgba(255, 255, 255, 0.35);
    -ms-transform: rotate(45deg) scale(0.9); /* IE 9 */
    -webkit-transform: rotate(45deg) scale(0.9); /* Safari */
    transform: rotate(45deg) scale(0.9);
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
.sidebar-before-content .item.slide:hover .slide-img .object {
    border: solid 20px rgba(255, 255, 255, 0.35);
    -ms-transform: rotate(45deg) scale(1); /* IE 9 */
    -webkit-transform: rotate(45deg) scale(1); /* Safari */
    transform: rotate(45deg) scale(1);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.sidebar-before-content .item.slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
.sidebar-before-content .item.slide:hover:before {
    background-color: rgba(255,255,255,.1);
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
@media (min-width: 77.5em) {
    .sidebar-before-content .slide-img .object {
        display: block;
    }
}
.slide-img img {}
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 10;
}
.slide-author {
    display: block;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
}
.slide-author .before-author-name {}
.slide-author .author-name {}
.slide-author .author-name a {
    color: #ffffff;
}
.slide-title {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.091;
    font-weight: 900;
    color: #ffffff;
    display: inline-block;
    max-width: 100%;
}
.slide-title:hover,
.slide-title:active,
.slide-title:focus {
    color: #ffffff;
}

@media screen and (min-width: 59.6875em) {
    .slide-title {
        font-size: 66px;
        font-size: 6.6rem;
        display: inline-block;
        max-width: 54%;
    }
}
.div--table {
    display: table !important;
    height: 100% !important;
    width: 100% !important;
}
.div--table-cell {
    display: table-cell !important;
    vertical-align: middle !important;
}
.slide-date {
    display: block;
    color: #ffffff;
}
.slide .excerpt-more {
    display: none;
    color: #ffffff;
    margin-top: 20px;
}
@media screen and (min-width: 46.25em) {
    .slide .excerpt-more {
        display: block;
    }
}
@media screen and (min-width: 59.6875em) {
    .slide .excerpt-more {
        margin-top: 40px;
    }
}
.slide .excerpt-more .more-link {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    padding: 2px 7px;
    line-height: 15px;
    border-radius: 2px;
    border: solid 1px #ffffff;
    color: #ffffff;
}
.slide .excerpt-more .more-link:after {
    display: none;
}
.widget_recent_entries_slider .owl-controls {
    display: none;
}
@media screen and (min-width: 59.6875em) {
    .widget_recent_entries_slider .owl-controls {
        display: block;
    }
}

/* preloading images */
.owl-carousel:not(.owl-loaded),
.owl-carousel.owl-loading,
.owl-item.loading {
    min-height: 150px;
    background: url(ajax-loader.gif) no-repeat center center;
}