/*
* Animation
* Hdr
* Hover Scale
* Hover Rotate
* Hover Opacity
* Hover FadeInUp
* Outside content
* Box Shadow
* Images
* Parallax
* Testimonials
* Utilites
*
*/

/*=============== Animation ================*/
.snippet.animated {
  opacity: 0;
}
.snippet.animated.none,
.snippet.animated[data-animated="none"] {
  opacity: 1;
}

/*=============== Hdr ======================*/
.hdr {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #000;
}
.hdr-white {
  background-color: #fff;
}
.hdr img {
  display: block;
  opacity: 0.8;
  position: relative;
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.35s;
  transition: 0.35s;
  width: 100%;
}
.hdr:hover img {
  opacity:0.5;
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  transform:scale(1);
}
.hdr-content {
  padding: 10px;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

/*=============== Hover scale ==============*/
.hvr-scale-container {
  overflow: hidden;
  position: relative;
}
.hvr-scale-container img {
  width: 100%;
  height: auto;
}
.hvr-scale-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hvr-scale-description {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) scale(2);
  transform: translateY(-50%) scale(2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
}
.hvr-scale-container:hover .hvr-scale-bg,
.hvr-scale-container:hover .hvr-scale-description {
  opacity: 1;
}
.hvr-scale-container:hover .hvr-scale-description {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

/*=============== Hover Rotate =============*/
.hvr-rotate-snippet img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hvr-rotate-snippet:hover img {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

/*=============== Hover opacity ============*/
.hvr-opacity {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hvr-opacity:hover {
  opacity: 1;
}

/*=============== Hover FadeInUp ===========*/
.hvr-fadeInUp {
  position: relative;
  overflow: hidden;
}
.hvr-fadeInUp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
}
.hvr-fadInUp-caption {
  position: absolute;
  top: -20%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hvr-fadeInUp:before,
.hvr-fadInUp-caption {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hvr-fadeInUp:hover .hvr-fadInUp-caption {
  top: 50%;
}
.hvr-fadeInUp:hover:before {
  opacity: 1;
}

/*=============== Outside content ==========*/
.block-outside-top {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.block-outside-bottom {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

/*=============== Box shadow ===============*/
.box-shadow-bottom {
  -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.35);
  box-shadow: 0 3px 7px rgba(0,0,0,0.35);
}

/*=============== Images ===================*/
.fes7-img,
.fes7-img-constr,
.fes7-img-cont {
  position: absolute;
  top: 0;
  height: 100%;
}
.fes7-img-cont {
  overflow: hidden;
  padding: 0;
}
.fes7-img,
.fes7-img-constr {
  z-index: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
}
.full-img-content{
  position: relative;
  padding: 20px 0;
  width: 100%;
}
.img-pull-right {
  position: absolute;
  right: 0;
  top: 0;
}
.img-pull-left {
  position: absolute;
  left: 100%;
  top: 0;
}
@media(min-width:768px){
  .full-img-content{
    padding: 40px 0;
  }
}

/*=============== Parallax =================*/
.parallax-block > div {
  padding-top: 8%;
  padding-bottom: 8%;
}

/*=============== Testimonials =============*/
.testimonials-item-content {
  width: 100%;
  padding: 20px;
  position: relative;
  background-color: #eeeeee;
  min-height: 145px;
}
.testimonials-item-content:after {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  bottom: -16px;
  left: 3.8em;
  border-style: solid;
  border-width: 16px 0 0 15px;
  border-color: #eee transparent transparent transparent;
}
.testimonials-item-author {
  margin: 0 auto;
  padding: 25px 15px 5px 25px;
}
.testimonials-author-avatar,
.testimonials-author-data {
  display: inline-block;
  vertical-align: middle;
}
.testimonials-author-avatar {
  max-width: 100px;
  height: auto;
  margin-right: 10px;
}

/*=============== Utilites =================*/
