/**
 * Swiper 3.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: February 7, 2016
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/*
  Theme Name: Red Leaf – Portfolio Agency HTML Template
  Theme URL: http: //http: //www.mediacity.co.in/red-leaf
  Author: Media City
  Author URI: http: //www.mediacity.co.in
  Creation Date: 08 November 2016
  Description: A default stylesheet for  Red Leaf – Portfolio Agency HTML Template.
  Version: 1.0
*/

/*=======================================================================
                [ INDEX ]
=========================================================================

01. Typography
02. Header
03. Navbar
04. Slider
05. About Us
06. Work
07. Process
08. Team
09. Facts
10. Service
11. Products
12. News
13. Events
14. Testimonial
15. Newsletter
16. Awards
17. Quote
18. Career
19. Video
20. Client
21. Contact
22. Footer
23. Preloader

/* ================================= */
    /*===== Typography =====*/
/* ================================= */
body {

  	font-size: 14px;
	font-weight: 400;
  	line-height: 1.428;
  	color: #544d47;
  	background-color: #000;
  	font-family: quiet-sans, sans-serif;
	font-style: normal;
} 
html,
body {
  height: 100%;
}
h1, h2, h3, h4, h5, h6, label, blockquote { 
  font-family: quiet-sans, sans-serif;
  color: #544d47;
}
h1 {
  font-size: 20px;
  letter-spacing: normal;
  font-weight: 700;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 13px;
}
p {
  font-family: quiet-sans, sans-serif;
  font-size: 16px;
}
a {
  color: #9E9D9D;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
a:hover,
a:focus,
a:active {  
  color: #61C028;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0; 
}
.plus-icon {
  border: 0px solid #FFF;
  padding: 1px 6px;
  font-weight: bold;
  color: #FFF;
}
.plus-icon:hover,
a .plus-icon:hover {
  color: #FFF;
}
.btn-default {  
  background-color: #00C853;
  color: #FFF;
  border-color: #00C853;  
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.btn-default:hover,
 .btn-default:focus {  
  color: #FFF;
  background-color: #E31D30;
  border-color: #E31D30;
}
.swiper-pagination {
  position: relative; 
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 10px;
  background-color: #8E8E8E; 
}
.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  background-color: #7FE3A9;
  position: relative;
  top: 3px;
}
.facebook:hover {
  color: #3B5998;
}
.twitter:hover {
  color: #1DA1F2;
}
.pinterest:hover {
  color: #BD081C;
}
.google-plus:hover {
  color: #DD4B39;
}
.tumblr:hover {
  color: #35465C;
}
.stumbleupon:hover {
  color: #EB4924;
}
.wordpress:hover {
  color: #21759B;
}
.instagram:hover {
  color: #405DE6;
}
.dribble:hover {
  color: #EA4C89;
}

/* ================================= */
    /*===== Header =====*/
/* ================================= */
.section-heading {
  margin-top: 95px;
}
.main-heading {
  text-transform: uppercase;
  font-weight: bold;
}
.main-heading span {
  font-size: 26px;
  margin-left: 22px;
}
.sub-heading {
  color: #6E707C;  
  letter-spacing: 1.8px;
  font-weight: normal;
}
hr {  
  margin-top: 58px;
  margin-bottom: 94px;
  border-color: #E3E8E8;
}
@media (max-width: 767px) {
  .main-heading {
    font-size: 35px;
  }
  .sub-heading {
    letter-spacing: 0.5px;
  }
}

/* ================================= */
    /*===== Navbar =====*/
/* ================================= */
.navbar-default {
  background-color: transparent ;
  border-color: transparent;
  padding-top: 67px;   
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;  
}
.navbar-nav {
  background-color: rgba(0, 0, 0, 0.50);
}
.navbar-default .navbar-nav li a {
  color: #FFF; 
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;  
  padding: 13px 0 15px; 
}
.navbar-default .navbar-nav li a:hover {
  color: #E73947;
}
.navbar-default .navbar-nav li.active a,
.navbar-default .navbar-nav li.active a:hover,
.navbar-default .navbar-nav li.active a:focus, 
.navbar-default .navbar-nav li.active a:hover
.navbar-fixed-top {
  color: #E73947;
  background-color: transparent ;
}
.navbar-default .navbar-nav>li>a:focus {
  color: #E73947;
}

/*=====Toggle Navigation =====*/
.navbar-default .navbar-toggle {
  border-color: #E73947;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #E73947;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #E73947;
}
.navbar-default .navbar-toggle:hover .icon-bar, 
.navbar-default .navbar-toggle:focus .icon-bar {
  background-color: #FFF;
}
.navbar-nav {
  background-color: transparent; 
  float: right;
}
.top-nav-collapse {
  margin-top: 0;
  padding: 10px 0;
  background-color: #222431;
  box-shadow: 0 1px 15px rgba(0,0,0,0.2);
}
.navbar-default .navbar-nav .open a {
  border-top: 2px solid transparent;
}
.nav-sep {
  width: 6px;
  height: 6px;
  background-color: transparent;
  border: 1px solid #E51D30;
  border-radius: 100%;
  margin: 20px 27px 0 30px;
}
@media (min-width: 767px) and (max-width: 992px) {
  .nav-sep {
    margin: 20px 10px 0 14px;
  }
}
@media (max-width: 767px) {
 .navbar-default .navbar-collapse, 
  .navbar-default .navbar-form {
    background-color: #222431;
  } 
  .navbar-default {
    padding-top: 30px;
    padding-bottom: 30px;
  } 
  .logo {    
    padding-left: 15px;
  }
  .navbar-default .navbar-nav li a{
    text-align: center;
    padding: 5px 10px;  
  }
  .navbar-nav {
    float: none;
  }
}

/* ================================= */
    /*===== Slider =====*/
/* ================================= */
.home-slider .carousel-bg {
  width: 100%;
  height: 100vh;
  background-color: #262626;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-background-size: cover;
  -moz-background-size: cover;  
  -ms-backgroun: ative;
}
.overlay-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);       
}
.carousel-caption {
  position: absolute;
  top: 30vh;
  text-align: center;
}
.slider-heading {
  margin-top: 25px;
}
.slider-subheading {
  font-weight: bold !important;  
  margin-bottom: 18px;
}
.down-arrow {
  z-index: 1;
  position: absolute;
  bottom: -46px;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  width: 92px;
  height: 92px;
  color: #E51D30;
  border-radius: 100%;
  background-color: #FFF;
}
.down-arrow a {  
  font-size: 30px;
  line-height: 56px;
  color: #E51D30;
}
.carousel-caption .slider-heading,
.carousel-caption .slider-subheading {
  font-size: 79.9px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 200;
}
.slider-content {
  font-size: 20px; 
  line-height: 1.6;
}
@media (max-width: 767px) {
  .carousel-caption .slider-heading,
  .carousel-caption .slider-subheading {
    font-size: 40px;
  }
  .slider-content {
    font-size: 16px; 
  }
  .slider-logo {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .carousel-caption .slider-heading,
  .carousel-caption .slider-subheading {
    font-size: 63px;
  }
  .slider-content {
    font-size: 18px; 
  }
}

/* ================================= */
    /*===== About Us =====*/
/* ================================= */
.about-main-block .section-heading {
  margin-bottom: 19px;
}
.about-main-block .about-dtl {
  margin-top: 43px
}
.about-main-block .main-heading:after {
  content: "";
  display: block;
  position: absolute;
  width: 55px;
  height: 2px;
  background-color: #E51D30;
  margin: 18px auto 0;
  left: 0;
  right: 0; 
}
.about-main-block {
  position: relative;
}
.about-img img {
  display: block;
  margin: 0 auto;
}
.about-dtl {
  margin-top: 21px;
  margin-bottom: 52px;
  color: #222431;
  line-height: 1.75;
}
.about-btn a {
  font-size: 18px;
  font-weight: bold;
  padding: 15px 44px;
}
.about-btn {
  margin-bottom: 61.3px;
  border-radius: 2.6px;
}

/* ================================= */
    /*===== Work =====*/
/* ================================= */
.work-main-block hr {
  margin-bottom: 37px;
}
.work-section .work-main-block {
  padding-bottom: 108px;
}
.work-filter {
  margin-bottom: 32px;
}
.work-filter li {
  text-transform: uppercase;
  display: inline;
  padding: 10px;
}
.work-filter li a {
  letter-spacing: 0.3px;
  font-size: 16px;
  color: #8E8E8E;
}
.work-block {
  position: relative;
  padding-bottom: 20px;
}
.work-slider .work-overlay {
  text-align: center;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E73947;
  opacity: 0;
  color: #FFF;
  display: flex;
  justify-content: center; 
  align-items: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0); 
  transform: scale(0);
}
.work-slider .work-block:hover .work-overlay {
  opacity: 1;
  top: 20px;
  left: 20px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1); 
  transform: scale(1);
}
.work-overlay .plus-icon {
  font-size: 50px;
  font-weight: normal;
  padding: 1px 15px;
}
.work-title {
  text-transform: uppercase;
  margin-top: 50px;
}
.work-filter li a.active {
  color: #61C028;
}

/* ================================= */
    /*===== Work Two =====*/
/* ================================= */
.work-gallery {
  padding-bottom: 13px;
}
.work-gallery .col-md-4 {
  padding: 0;
}
.work-img {
  position: relative;
}
.gallery-overlay {
  position: absolute;
  top: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(31,31,31,0.8);
  opacity: 0; 
  color: #FFF;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.gallery-item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
}
.gallery-overlay .plus-icon {
  font-size: 40px;
  font-weight: 300;
  padding: 1px 25px;
  color: #FFF;
}
.gallery-overlay .work-client {
  
  /* text-transform: uppercase; */
  font-size: 10px;
}
.gallery-overlay .work-area {
  margin-top: 10px;
  font-size: 14px;
}
.work-gallery .work-img:hover .gallery-overlay { 
  opacity: 1;
  z-index: 1;
}
.gallery-btn a {
  font-size: 20px;
  font-weight: bold;
  padding: 15px 50px;
  border-radius: 0;
}
.gallery-btn {
  margin-top: 50px;
}
.work-three .work-img img {
  width: 100%;
}

/* ================================= */
    /*===== Portfolio Top Slide =====*/
/* ================================= */
.portfolio-slide .portfolio-item {
  width: 100%;
  height: 386px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-background-size: cover;
  -moz-background-size: cover;  
  -ms-backgroun: ative;
}
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 386px;
  background: rgba(0,0,0,0.4);       
}

/* ================================= */
    /*===== Work Three =====*/
/* ================================= */
.row-portfolio {
  -webkit-column-width: 340px;
  -moz-column-width: 340px;
  -ms-column-width: 340px;
  -o-column-width: 340px;
  -column-width: 340px;
  -moz-column-gap: 6px;
  -ms-column-gap: 6px;   
  -o-column-gap: 6px;   
  -webkit-column-gap: 6px;  
  column-gap: 12px;   
}
.row-portfolio .work-img {
 display: inline-block;
 margin: 4px 0;
 width:  100%; 
}
.work-three.work-main-block .gallery-btn a {
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
}
.work-three.work-main-block .gallery-btn {
  margin-top: 15px;
}

/* ================================= */
    /*===== Process =====*/
/* ================================= */
.process-main-block {
  padding-bottom: 96px;
}
.process-img{
  float:right;
  margin-right: 38.2px;
}
.process-id {
  font-size: 60px;
}
.process-sep {
  width: 100px;
  height: 2px;
  background-color: #0BB7AD;
  position: relative;
  left: 0;
}
.process-name {
  margin-bottom: 9px;
  font-size: 20px;
  color: #494949;
}
.process-desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.56;
  max-width: 407px;
}
.process-pagination {
  margin-top: 95px;
}
.process-slider .swiper-slide  {
  opacity: 0.5;
}
.process-slider .swiper-slide-active  {
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 992px) {
  .process-desc {
    margin-top: 10px;
  }
}

/* ================================= */
    /*===== Team =====*/
/* ================================= */
.member-dt1 {
  position: relative;  
}
.member-dtl:hover .member-topright {
  border-top: 129px solid #00C853;
}
.member-img {
  width: 100%;
  height: auto;
}
.member-name {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.member-post {
  margin-bottom: 17px;
  font-size: 16px;
}
.member-social li {
  display: inline;  
  padding-right: 8px;
}
.member-desc {
  position: relative;
  left: 39px;  
  margin: 25px 0 55px;
}
.member-social li a {
  font-size: 14px;
  color: #000;
  transition: all 0.5s ease;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.member-topright {
  width: 0;
  height: 0;
  border-top: 129px solid #E2E2E2;
  border-left: 123px solid transparent;
  position: absolute;
  top: 1px;
  right: 16px;    
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
}
.member-topright a {
  position: absolute;
  bottom: 80px;
  right: 25px;
  color: #FFF;
  border-color: #FFF;
}
@media (min-width: 767px) and (max-width: 992px) {
  .member-topright {
    border-top: 89px solid #E2E2E2;
    border-left: 83px solid transparent;
  }
  .member-topright a {
    bottom: 50px;
    right: 10px;
  }
  .member-dtl:hover .member-topright {
    border-top: 89px solid #00C853;
  }
}

/* ================================= */
    /*===== Team Two =====*/
/* ================================= */
.team-two .member-desc {
  position: absolute;
  bottom: -30px;
  left: 50px;
  opacity: 0;
  color: #FFF;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-two .member-img {
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}
.team-two .member-social li a {
  color: #FFF;
}
.team-two .member-social li a:hover {
  color: #222431;
}
.team-two .member-topright {
  right: 1px;
}
.team-two .team-overlay {
  position: absolute; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  background: #DE3E4D; 
  opacity: 0; 
  border: 1px solid #E1E1E1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.team-two .member-dtl:hover .team-overlay {
  opacity: 0.8;
}
.team-two .member-dtl:hover .member-desc {
  z-index: 1;
  opacity: 1;
}
.team-two .member-dtl:hover .member-topright {
  border-top: 129px solid #FFF;
  z-index : 1;
}
.team-two .member-dtl:hover .member-name {
  color: #FFF;
}
.team-two .member-dtl:hover .plus-icon {
  color: #00C853;
  border-color: #00C853;
}
.team-two .member-dtl {
  margin-bottom: 42px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 992px) {
  .team-two .member-dtl:hover .member-topright {
    border-top: 89px solid #FFF;
  }
  .team-two .member-desc {
    left: 20px;
  }
}

/* ================================= */
    /*===== Facts =====*/
/* ================================= */
.facts-main-block {
  margin-top: 97px;
  height: 367px;
  background-color: #222431;
  display: flex;
  justify-content: center; 
  align-items: center; 
}
.facts-content {
  position: relative;
}
.main-text {
  font-size: 200.3px;
  color: #313340;
}
.main-text .plus {
  font-size: 80.1px;
}
.sub-text {
  letter-spacing: 0.9px;
  color: #FFC600;  
  text-transform: uppercase;
  position: absolute;
  top: 40%;
  left: 32%;
}
.sub-text span {  
  color: #FFF;  
}
@media(max-width:768px) {
  .facts-main-block {
    height: 767px;
  }
  .main-text {
    font-size: 150px;
  }
}

/* ================================= */
    /*===== Service =====*/
/* ================================= */
.service-main-block .main-heading:after {
  content: "";
  display: block;
  position: absolute;
  width: 55px;
  height: 2px;
  background-color: #E51D30;
  margin: 18px auto 0;
  left: 0;
  right: 0; 
}
.service-brief {
  margin-top: 47px;
  margin-bottom: 65px;
  color: #222431;
  line-height: 1.75;
}
.service-content {
  margin-left: -22px;
}
.service-block {
  background-color: #222431;
  padding: 22px 0 58px 0;
}
.service-dtl {
  margin-top: 61px;
}
.service-dtl .service-heading {
  margin: -3px 0 17px;
  font-size: 25px;
}
.service-dtl .service-icon {
  color: #FFC600;
  font-size: 25px;
}
.service-heading { 
  color: #FFF;  
  font-size: 25px;
  line-height: 1.12;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-content:hover .service-heading { 
  color: #FFC600;  
}
.service-desc {
  color: #7C7F8E;
  line-height: 1.12;
}
.service-btn a {
  font-size: 15.8px;
  font-weight: bold;
  padding: 28px 0;   
  margin-bottom: 101px;
  text-transform: uppercase;
  width: 100%;
}
@media(max-width:768px) {
  .service-dtl {
    margin-top: 0;
  }
  .service-item {
    margin-top: 30px;
  }
}

/* ================================= */
    /*===== Products =====*/
/* ================================= */
.products-main-block hr {
  margin-bottom: 65px;
}
.prod-download {
  margin-bottom: 8px;  
  font-size: 14px;
  line-height: 1.71;  
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.prod-name {
  margin-top: 23px;
  margin-bottom: 7px;
  font-size: 16px;
  text-transform: uppercase;
}
.prod-post-date {
  margin-top: 0;
  line-height: 1.71; 
  color: #8E8E8E; 
  margin-bottom: 10px;
}
.prod-dtl {
  line-height: 1.63;
  color: #737373;
}
.prod-desc .btn {
  font-size: 18px;
  position: absolute;
  bottom: 77px;
  right: 14px;
  color: #FFF;
}
.prod-desc .prod-img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.prod-desc:hover .prod-img {
  box-shadow: 0 15px 15px -15px #000;
}
.prod-desc:hover .prod-download {
  color: #00C853;
}

/* ================================= */
    /*===== News =====*/
/* ================================= */
.news-one.news-main-block .section-heading {
  background-color: #F2F2F2;
  padding-top: 73px;  
  padding-bottom: 50px;
  margin-top: 84px
}
.news-one.news-main-block .news-content {
  padding: 54px 0 85px;
  position: relative;   
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news-one.news-main-block .plus-icon {
  position: absolute;
  right: 130px;
  top: 120px;
  color: #c3c3c3; 
  border-color: #c3c3c3;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news-one.news-heading {
  font-size: 25px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news-one.news-main-block .news-date {
  margin-bottom: 25px;
  font-size: 14px;
}
.news-one.news-main-block .news-subheading {
  margin-top: 18px;
  font-size: 15px;
}
.news-one.news-main-block .news-content:hover {
  background-color: #E73947;
  color: #F2F2F2;
  border-color: #FFF;
}
.news-one.news-main-block .news-content:hover .news-date a {  
  color: #F2F2F2;
}
.news-one.news-main-block .news-content:hover .news-heading,
.news-one.news-main-block .news-content:hover .plus-icon {
  color: #FFF;
  border-color: #FFF;
}
@media (min-width: 0) and (max-width: 992px){
  .news-one.news-main-block .plus-icon {
    position: relative;
    right: 0;
    top: 20px;
  }
}

/* ================================= */
    /*===== News Two =====*/
/* ================================= */
.news-two.news-main-block .news-content {
  position: relative;
}
.news-two.news-main-block .news-date {
  display: block;
  padding: 13px;
  position: absolute;
  bottom: 110px;
  background-color: #00C853;
  color: #FFF;
  margin: 0;
  font-size: 14px;
}
.news-two.news-main-block .news-dtl {
  margin-top: 36px;
}
.news-two.news-main-block .news-heading {
  font-size: 25px;
}
.news-two.news-main-block .news-subheading {
  font-size: 15px;
  margin-top: 22px;
}
.news-two.news-main-block .news-content img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .news-two.news-main-block .news-content {
    margin-top: 30px;
  }
  .news-two.news-main-block hr {
    margin-bottom: 64px;
  }
}

/* ================================= */
    /*===== Event =====*/
/* ================================= */
.event-dtl .event-day {
  color: #FF002A;
  font-size: 15px;
  text-transform: uppercase;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.event-dtl .plus-icon {
  color: #FF002A;
  border-color: #FF002A;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.event-date {
  margin: 32px 0 12px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.event-dtl {
  margin-top: -38px;
  padding: 30px 10px 40px 15px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.event-dtl:hover {
  background-color: #00C853;
  color: #FFF;
  border-color: #FFF;
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.event-dtl:hover a,
.event-dtl:hover .event-day,
.event-dtl:hover .event-date {
  color: #FFF;
  border-color: #FFF;
}
.event-desc {
  margin-bottom: 56px;
  line-height: 1.75;
}
@media (min-width: 0) and (max-width: 992px){
  .event-dtl{
    margin-top: 30px;
  }
  .event-main-block hr {
    margin-bottom: 64px;
  }
}

/* ================================= */
    /*===== Testimonial =====*/
/* ================================= */
.testimonial-main-block { 
  color: #FFF;
  margin-top: 88px; 
}
.review-item {
  position: relative;
}
.review-bg { 
  height: 578px; 
  background-color: #222431;
}
.review-bg1 { 
  height: 578px; 
  background-color: #2D303F;
}
.review-bg .review-item {
  position: absolute;
  right: 15%;
  top: 32%;
}
.review-bg1 .review-item {
  position: absolute;
  left: 10%;
  top: 32%;
}
.review-bg span,
.review-bg1 span {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.review-bg:hover span,
.review-bg1:hover span {  
  color: #FFC600;
}
.review-item .img-icon {
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-bottom-color: #C3C3C3;
  position: relative;
  top: -50px;
  left: 35px;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.review-item .img-icon:after {
  content: '';
  position: absolute;
  left: -50px;
  top: 50px;
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-top-color: #C3C3C3;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.review-bg:hover .img-icon,
.review-bg1:hover .img-icon {  
  border-bottom-color: #E51D30;
}
.review-bg:hover .img-icon:after,
.review-bg1:hover .img-icon:after {  
  border-top-color: #E51D30;
}
.review-item .review-content {
  position: relative;
  top: -20px;
  left: 40px;
  max-width: 394px;
  line-height: 1.88;
}
.review-item .fa-quote-right {
  position: absolute;
  left: 420px;
  top: 145px;
}
.reviewer-dtl {
  margin-top: 58px;
}
.reviewer-img img {
  width: 120px;
  height: 120px ;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  bottom: -10px;
  left: 5px;
}
.reviewer-desc {
  position: absolute;
  bottom: 15px;
  left: 155px; 
}
.reviewer-name, .reviewer-post {
  color: #FFF;
}
.reviewer-name {
  font-size: 16px;
}
.testimonial-two.testimonial-main-block { 
  margin-top: 2px !important;
}
@media (min-width: 0) and (max-width: 992px) {
  .review-bg .review-item,
  .review-bg1 .review-item {
    top: 25%;
    left: 10%;
    right: 10%;
  }
  .review-item .review-content {
    width: 80%;
    max-width:394px;
    line-height: 1.5;
  }
  .review-item .fa-quote-right {
    left: 90%;
    top: 50%;
  }
}

/* ================================= */
    /*===== Newsletter =====*/
/* ================================= */
.newsletter-main-block {
  background-color: #E31D30;
  color: #FFF;
  height: 593px;
}
.newsletter-dtl {  
  position: relative;
  top: 16%;
}
.newsletter-dtl .form-control {
  width: 536px;
  height: 66px;
  border-radius: 50px;
  font-size: 18px;
  margin: 0 auto;
  text-align: center;
}
input[type="email"]::-webkit-input-placeholder {
  color: #222431;
}
input[type="email"]::-moz-placeholder { 
  color: #222431;
}
input[type="email"]:-ms-input-placeholder { 
  color: #222431;
}
input[type="email"]:-moz-placeholder { 
  color: #222431;
}
.subscribe-btn .btn {
  width: 536px;
  padding: 19px 10px;
  border-radius: 50px;
  margin-top: 10px;
  margin-bottom: 43px;
  text-transform: uppercase;
  font-size: 20px;
}
.subscribe-btn .btn,
.subscribe-btn .btn:hover,
.subscribe-btn .btn:active,
.subscribe-btn .btn:focus,
.subscribe-btn .btn:active:focus { 
  background-color: #222431;
  border-color: #222431;
  color: #FFF;
}
.newsletter-heading {
  margin: 0 0 34px 0;
  color: #FFF;
  text-transform: uppercase;
  font-weight: bold;
}
.newsletter-subheading {
  margin-bottom: 56px;
}
@media(max-width:768px) {
 .newsletter-dtl .form-control {
    width: 70%;
    min-width: 260px;
    height: 66px;
  }
  .subscribe-btn .btn {
    width: 70%;
    min-width: 260px;
    padding: 19px 10px;
    margin-bottom: 33px;
  }
  .newsletter-heading {
    font-size: 38px;
  }
  .newsletter-subheading {
    margin-bottom: 36px;
  }
  .newsletter-dtl {  
    top: 13%;
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ================================= */
    /*===== Award =====*/
/* ================================= */
.awards-main-block hr {
  margin-bottom: 109.8px;
}
.award-img {
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
 -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -moz-filter: grayscale(100%);  
  filter: grayscale(100%);
}
.award-img:hover { 
  -webkit-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  -moz-filter: grayscale(0);  
  filter: grayscale(0);
}
.award-img img{
  margin: 0 auto;
}
@media(max-width:768px) {
  .award-img {
    margin-top: 30px;
  }
  .awards-main-block hr {
    margin-bottom: 70px;
  }
}

/* ================================= */
    /*===== Quote =====*/
/* ================================= */
.quote-main-block {
  margin-top: 101px;
  height: 411px;
  background-color: #222431;
  display: flex;
  justify-content: center; 
  align-items: center;
}
.quote-writer {
  padding-top: 21px;
  color: #FFC600;
}
.quote-content {  
  color: #FFF;
  font-size: 50px;
}

/* ================================= */
    /*=====Career =====*/
/* ================================= */
.career-slider .career-block img{
  display: block;
  margin: 0 auto;
}
.career-slider .career-block {
  margin-bottom: 47px;
}
.career-main-block hr {
  margin-bottom: 65px;
}
.career-content {
  text-align: center;
  position: absolute;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.career-heading {
  font-size: 60px;
  margin: 39px 0 43px;
  color: #2D3040
}
.career-nmbr {
  color: #FF002A;
  font-size: 18px;
  margin-top: 51px;
  display: block;
}
.career-text {
  font-size: 20px;
  color: #6A6A6A;
}
.career-dtl {
  margin-top: 48px;
}
.post-dtl {
  margin-top: 74px;
}
.post-open {
  color: #5A5A5A;
  text-transform: lowercase;
}
.post-name {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: normal;
  margin-top: 14px;
  margin-bottom: 35px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.post-dtl:hover .post-name {
  color: #FF002A;
}
.post-dtl .plus-icon {
  color: #9E9D9D;
  border-color: #9E9D9D;
}
.post-dtl:hover .plus-icon {
  color: #00C853;
  border-color: #00C853;
}
@media(max-width:768px) {
  .career-heading {
    margin: 9 0 13;    
    font-size: 40px;
  }
  .career-nmbr {
    margin-top: 21px;
  }
}

/* ================================= */
    /*===== Video =====*/
/* ================================= */

/* ================================= */
    /*===== Client =====*/
/* ================================= */
.margin-top-70{
  margin-top: 70px;
}
.logo-img {
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -moz-filter: grayscale(100%);  
  filter: grayscale(100%);
}
.logo-img:hover { 
  -webkit-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  -moz-filter: grayscale(0);  
  filter: grayscale(0);
}
.logo-img img {
  margin: 0 auto;
}
@media (min-width: 0) and (max-width: 992px) {
  .margin-top-70 {
    margin-top: 0;
  }
  .logo-img {
    margin-top: 30px;
  }
  .clients-main-block hr {
    margin-bottom: 64px;
  }
}

/* ================================= */
    /*===== Contact =====*/
/* ================================= */
.contact-bubble {
  position: absolute;
  margin: 0 auto;
  top: 59px;
  left: 0;
  right:0 ;
  width: 320px;
  height: 320px;
  background-color: #E31D30;
  border-radius: 50%;
  padding: 55px;
  color: #FFF;
}
.contact-dtl {
  font-size: 14px;
  line-height: 1.71;
}
.bubble-heading {
  color: #FFF;
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
}
.contact-bubble p,.contact-bubble i {
  font-size: 14px
}
.gmap_canvas {
  height:492px;
  width:auto;
}
.contact-bubble:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: 69px;
  bottom: -48px;
  border: 45px solid;
  border-color: #E31D30 #E31D30 transparent transparent;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
.address {
  padding-top: 20px;
}
.contact-main-block {
  position: relative;
  margin-top: 100px;
}
@media(max-width:768px) {
  .contact-bubble {
    width: 250px;
    height: 250px;
    padding: 20px;
  }
  .contact-bubble:before {
    border: 40px solid;
    border-color: #E31D30 #E31D30 transparent transparent;
  }
  .address {
    padding-top: 1px;
  }
}

/* ================================= */
    /*===== Footer =====*/
/* ================================= */
.footer-main-block {
  background-color: #222431;
  padding: 78px 0;
}
.social-link {
  float: right;
}
.social-link li {
  display: inline;
  margin: 8px;
}
.social-icon {
  display: inline-block;
  border: 2px solid #5E606A;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #FFF;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.social-icon:hover {
  border-color: #FF002A;
  color: #FF002A;
}
@media(max-width:768px) {
  .social-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .social-link li {
    margin: 2px;
  }
  .footer-main-block {
    padding: 38px 0;
  }
}

/* ================================= 
    /*===== Footer Two =====*/
/* ================================= */
.footer-two {
  background-color: #222431;
  color: #7C7F8E;  
  font-size: 14px;
  padding: 0;
}
.footer-two .footer-data {
  padding: 20px 0;
}
.footer-two hr {
  margin: 0;
  border-color: #383B4D;
}
.footer-two .footer-content {
   padding: 40px 0;
}
.company-terms {
  float: right; 
  margin-top: 20px;
}
.company-terms a {
  color: #7C7F8E; 
}
.company-terms a:hover {
  color: #E73947;
}
.company-terms li {
  display: inline;
}
.company-dtl {
  max-width: 400px;
}
.company-terms i {
  margin: 25px;
}
@media(max-width:768px) {
  .company-terms i {
    margin: 0;
  }
}

/* ================================= */
    /*===== Preloader =====*/
/* ================================= */
.preloader { 
  background: #222431;
  bottom: 0;
  top: 0;
  left: 0; 
  right: 0;  
  position: fixed;
  z-index: 9999999;
}
.status {
  background-image: url(https://www.bgarquitetura.com.br/arquitetura/comercial/www/images/favicon-bg.png);
  animation: bounce 1s infinite;
 -webkit-animation: bounce 1s infinite;
 -moz-animation: bounce 1s infinite;
 -o-animation: bounce 1s infinite;
}
.status,
.status-message {   
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; 
  right: 0;  
  background-position: center;
  background-repeat: no-repeat;     
}
.status-message {
  color: #FFF;
  padding-top: 30%;
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
  40% {-webkit-transform: translateY(-30px);}
  60% {-webkit-transform: translateY(-15px);}
} 
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
  40% {-moz-transform: translateY(-30px);}
  60% {-moz-transform: translateY(-15px);}
} 
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
  40% {-o-transform: translateY(-30px);}
  60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}
