/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-imlvc-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-imlvc-carousel .owl-imlvc-animated-in {
  z-index: 0;
}
.owl-imlvc-carousel .owl-imlvc-animated-out {
  z-index: 1;
}
.owl-imlvc-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-imlvc-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-imlvc-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-imlvc-carousel .owl-imlvc-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-imlvc-carousel .owl-imlvc-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-imlvc-carousel .owl-imlvc-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-imlvc-carousel .owl-imlvc-controls .owl-imlvc-nav .owl-imlvc-prev,
.owl-imlvc-carousel .owl-imlvc-controls .owl-imlvc-nav .owl-imlvc-next,
.owl-imlvc-carousel .owl-imlvc-controls .owl-imlvc-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-imlvc-carousel.owl-imlvc-loaded {
  display: block;
}
.owl-imlvc-carousel.owl-imlvc-loading {
  opacity: 0;
  display: block;
}
.owl-imlvc-carousel.owl-imlvc-hidden {
  opacity: 0;
}
.owl-imlvc-carousel .owl-imlvc-refresh .owl-imlvc-item {
  display: none;
}
.owl-imlvc-carousel .owl-imlvc-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-imlvc-carousel .owl-imlvc-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-imlvc-carousel.owl-imlvc-text-select-on .owl-imlvc-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-imlvc-carousel .owl-imlvc-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-imlvc-carousel.owl-imlvc-rtl {
  direction: rtl;
}
.owl-imlvc-carousel.owl-imlvc-rtl .owl-imlvc-item {
  float: right;
}

/* No Js */
.no-js .owl-imlvc-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-imlvc-carousel .owl-imlvc-item .owl-imlvc-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-imlvc-carousel .owl-imlvc-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-imlvc-carousel .owl-imlvc-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-imlvc-carousel .owl-imlvc-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-imlvc-carousel .owl-imlvc-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-imlvc-carousel .owl-imlvc-video-playing .owl-imlvc-video-tn,
.owl-imlvc-carousel .owl-imlvc-video-playing .owl-imlvc-video-play-icon {
  display: none;
}
.owl-imlvc-carousel .owl-imlvc-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-imlvc-carousel .owl-imlvc-video-frame {
  position: relative;
  z-index: 1;
}

/* 
 * 	Green theme - Owl Carousel CSS File
 */
.owl-imlvc-theme .owl-imlvc-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-imlvc-theme .owl-imlvc-nav [class*='owl-imlvc-'] {
  color: white;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.owl-imlvc-theme .owl-imlvc-nav [class*='owl-imlvc-']:hover {
  background: #4dc7a0;
  color: white;
  text-decoration: none;
}
.owl-imlvc-theme .owl-imlvc-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-imlvc-theme .owl-imlvc-nav.disabled + .owl-imlvc-dots {
  margin-top: 10px;
}
.owl-imlvc-theme .owl-imlvc-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-imlvc-theme .owl-imlvc-dots .owl-imlvc-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-imlvc-theme .owl-imlvc-dots .owl-imlvc-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.owl-imlvc-theme .owl-imlvc-dots .owl-imlvc-dot.active span, .owl-imlvc-theme .owl-imlvc-dots .owl-imlvc-dot:hover span {
  background: #305367;
}






@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, subl