@charset "UTF-8";
/*-------------------------------------------------------*/
/* Table of Content

1.General
  1.1.Typography
2.Navigation
3.Content Onepage
4.Content Multi-Page

/*-------------------------------------------------------*/
/*-------------------------------------------------------*/


/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/







.text-center {
  text-align: center; }
.bg-light{
    background-color: var(--azulclaro);
}
.container h2{
    color: white;
    padding-left: 10px;
}

@media only screen and (max-width: 1199px) {
  .text-lg-center {
    text-align: center; } }

@media only screen and (max-width: 991px) {
  .text-md-center {
    text-align: center; } }

@media only screen and (max-width: 767px) {
  .text-sm-center {
    text-align: center; } }

@media only screen and (max-width: 639px) {
  .text-xs-center {
    text-align: center; } }

.heading-row {
  margin-bottom: 60px; }

.bottom-line:after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  border-bottom: 2px solid #e6ebed; }

.subheading {
  font-size: 12px;
  color: #f36b21;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 24px;
  display: inline-block; }

.section-headings p {
  margin-bottom: 30px; }

blockquote {
  background: #f7f9fa;
  padding: 40px;
  margin: 0;
  border: none; }

blockquote > p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 5px !important;
  position: relative;
  color: #121212; }

blockquote p:before,
blockquote p:after {
  content: '"';
  font-size: 20px; }

blockquote p:before {
  position: absolute;
  left: -10px; }

blockquote > span {
  color: #a7a7a7;
  font-size: 14px; }

blockquote > p > a {
  color: #121212; }

blockquote > p > a:hover {
  color: #1995B5; }

.blockquote-1 {
  padding: 40px;
  background-color: #fff;
  border-left: 3px solid #f36b21; }

.dropcap {
  font-family: "Montserrat", sans-serif;
  float: left;
  color: #121212;
  font-size: 53px;
  line-height: 50px;
  padding-top: 4px;
  padding-right: 10px; }

.dropcap-1 {
  font-family: "Montserrat", sans-serif;
  float: left;
  color: #fff;
  text-align: center;
  background-color: #f36b21;
  width: 38px;
  height: 38px;
  font-size: 24px;
  line-height: 40px;
  margin: 10px 10px 0 0;
  border-radius: 4px; }

.highlight {
  padding: 3px 5px;
  color: #fff;
  background-color: #1995B5; }

.bullets li,
.arrows li,
.checks li,
.numbers li {
  margin-bottom: 20px; }

.bullets li:last-child,
.arrows li:last-child,
.checks li:last-child,
.numbers li:last-child {
  margin-bottom: 0; }

.bullets li:before {
  content: "• ";
  font-size: 14px;
  color: #1995B5;
  padding-right: 0.5em; }

.arrows i {
  margin-right: 5px; }

.arrows i,
.checks i {
  color: #1995B5; }

.checks i {
  font-size: 12px;
  margin-right: 7px; }

ol.numbers {
  padding-left: 20px; }

.section-columns p {
  margin-bottom: 40px; }



/* Section Dividers
-------------------------------------------------------*/
.top-divider {
  border-top: 1px solid #e6ebed; }

.bottom-divider {
  border-bottom: 1px solid #e6ebed; }

/*-------------------------------------------------------*/
/* Scroll Animations
/*-------------------------------------------------------*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.bounceIn, .animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

/*-------------------------------------------------------*/
/* Grid
/*-------------------------------------------------------*/
.section-wrap {
  padding: 40px 0px;
  overflow: hidden;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  .mobile .section-wrap {
    background-position: 50% 50% !important;
    background-attachment: scroll !important; }
  

.container-semi-fluid {
  padding: 0 50px; }
  @media only screen and (max-width: 991px) {
    .container-semi-fluid {
      padding: 0 15px; } }

.container-1600 {
  max-width: 1600px; }



/* Related Projects
-------------------------------------------------------*/
#owl-related-projects .project {
  margin: auto 15px; }

.owl-custom-navigation a {
  background-color: #fff;
  color: #121212;
  display: inline-block;
  width: 31px;
  height: 31px;
  line-height: 28px;
  border-radius: 3px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  border: 1px solid #e6ebed;
    margin-top: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .owl-custom-navigation a:hover {
    background-color: #155E7D;
    color: #fff;
    border-color: transparent; }

/*-------------------------------------------------------*/
/* Portfolio
/*-------------------------------------------------------*/
.project-grid.grid-5-col .project {
  width: 20%; }

.project-grid.grid-4-col .project {
  width: 25%; }

.project-grid.grid-3-col .project {
  width: 33.33333333%; }

.project-grid.grid-2-col .project {
  width: 50%; }

.project-grid.small-gutter {
  margin-left: -4px;
  margin-right: -4px; }

.project-grid.small-gutter .project {
  padding: 0 4px;
  margin-bottom: 8px; }

.project-grid.gutter {
  margin-left: -15px;
  margin-right: -15px; }

.project-grid.gutter .project {
  padding: 0 15px;
  margin-bottom: 30px; }

/*-------------------------------------------------------*/
/* Featured Works (Slider)
/*-------------------------------------------------------*/
.owl-featured-works .project {
  margin: 0 4px;
  padding: 0; }

.owl-featured-works--grab .project {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.project {
  overflow: hidden;
  display: block;
  position: relative; }
  .project__img-holder {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 225px; }
  .project__img {
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .project__overlay {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .project__overlay .project__title,
    .project__overlay .project__category {
      color: #fff; }
  .project__icons {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    margin-top: -60px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .project__icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin: 0;
    line-height: 40px;
    text-align: center;
    color: #333333;
    background-color: #fff;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.project__icons a i{
    margin-left: 3px;
}
  .project__icons a:hover {
    color: #fff;
      background-color: #1995B5;
     }
.project__icons a i:hover {
    color: white;
     }
  .project:hover .project__overlay {
    opacity: 1;
    visibility: visible; }
  .project--hover-1:hover .project__icons {
    top: 42%; }
  .project__description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .project--hover-1:hover .project__description {
    bottom: 42%;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%); }
  .project__title {
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px; }
.project__description h3{
    margin-left: 0px;
}
  .project__category {
    font-size: 13px;
    font-style: italic; }
    .project__category a {
      color: #155E7D; }
    .project__category:hover a {
      color: #155E7D; }

/*-------------------------------------------------------*/
/* Portfolio
/*-------------------------------------------------------*/
/* Filter
-------------------------------------------------------*/
.project-filter {
  list-style: none;
  margin-bottom: 40px;
  cursor: default;
  font-size: 13px; }
  .project-filter a {
    display: inline-block;
    margin-right: 5px;
    color: #7a7a7a;
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 3px;
    background-color: #fff; }
  .project-filter a.active,
  .project-filter a:hover,
  .project-filter a:focus {
    color: #f36b21; }

/* Hover 2
-------------------------------------------------------*/
.project--hover-2 .project__description {
  padding: 13px 20px;
  background-color: #fff;
  display: block;
  left: 0;
  bottom: auto;
  top: auto;
  text-align: left;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 2; }

.project--hover-2 .project__title {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.3; }

.project--hover-2:hover .project__description {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  bottom: auto; }

.project--hover-2:hover .project__img {
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px); }

.project--hover-2:hover .project__icons {
  top: 42%; }

/* Hover 3
-------------------------------------------------------*/
.project--hover-3 .project__description {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px); }

.project--hover-3:hover .project__description {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

/*-------------------------------------------------------*/
/* Masonry
/*-------------------------------------------------------*/
.isotope-half {
  width: 50%; }

.isotope-small {
  width: 25%; }

/*-------------------------------------------------------*/
/* Portfolio Responsive Styles
/*-------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .project-grid.grid-5-col .project,
  .project-grid.grid-4-col .project {
    width: 33.3333%; } }

@media only screen and (max-width: 767px) {
  .project-grid.grid-5-col .project,
  .project-grid.grid-4-col .project,
  .project-grid.grid-3-col .project,
  .isotope-small {
    width: 50%; } }

@media only screen and (max-width: 639px) {
  .project-grid .project {
    width: 100% !important; }
  .project-filter a {
    display: block;
    margin-top: 8px;
    margin-right: 0; } }


/*-------------------------------------------------------*/
/* Progress Bars
/*-------------------------------------------------------*/
.progress__bar {
  width: 0;
  -webkit-transition: width 1.5s ease-in-out;
  -moz-transition: width 1.5s ease-in-out;
  -ms-transition: width 1.5s ease-in-out;
  -o-transition: width 1.5s ease-in-out;
  transition: width 1.5s ease-in-out; }

.progress__title, .progress__percent {
  color: #121212;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  margin-top: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em; }

.progress__percent {
  float: right; }

.progress__base {
  height: 5px;
  position: relative;
  background: #f7f9fa;
  margin-bottom: 25px; }

.progress__bar {
  display: block;
  height: 5px;
  position: relative;
  overflow: hidden;
  background-color: #f36b21; }

.progress__bar.progress__bar--blue {
  background-color: #14b8ee; }

.progress__bar.progress__bar--red {
  background-color: #f34937; }

.progress__bar.progress__bar--violet {
  background-color: #9c55d2; }

.progress__bar.progress__bar--green {
  background-color: #50ba22; }

.progress__bar.progress__bar--gold {
  background-color: #a18c67; }

.progress__bar.progress__bar--pink {
  background-color: #d744a5; }

.progress__bar.progress__bar--orange {
  background-color: #f36b21; }

.progress__bar.progress__bar--yellow {
  background-color: #ee9e13; }

/*-------------------------------------------------------*/
/* Sliders
/*-------------------------------------------------------*/
/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel, .owl-carousel .owl-wrapper {
  display: none;
  position: relative; }

.owl-carousel {
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 4; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height .5s ease-in-out;
  -moz-transition: height .5s ease-in-out;
  -ms-transition: height .5s ease-in-out;
  -o-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-buttons div, .owl-controls .owl-page {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

.grabbing {
  cursor: url(owl-carousel/grabbing.png) 8 8, move; }

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px; }

.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease; }

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease; }

.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease; }

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease; }

.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both; }

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both; }

.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both; }

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both; }

@-webkit-keyframes empty {
  0% {
    opacity: 1; } }

@-moz-keyframes empty {
  0% {
    opacity: 1; } }

@keyframes empty {
  0% {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px); }
  100%, 75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%); } }

@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px); }
  100%, 75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%); } }

@keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
    transform: translateZ(-500px); }
  100%, 75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
    transform: translateZ(-500px) translateX(-200%); } }

@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0); } }

@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%); }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px); }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0); } }

@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
    transform: translateZ(-500px) translateX(200%); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
    transform: translateZ(-500px); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0); } }

@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8); } }

@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8); } }

@keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8); } }

@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%); } }

@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%); } }

@keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }

@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5); } }

@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5); } }

@keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5); } }

@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5); } }

@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5); } }

@keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5); } }

/*
 * jQuery FlexSlider v2.4.0
 */
@font-face {
  font-family: flexslider-icon;
  src: url(fonts/flexslider-icon.eot);
  src: url(fonts/flexslider-icon.eot?#iefix) format("embedded-opentype"), url(fonts/flexslider-icon.woff) format("woff"), url(fonts/flexslider-icon.ttf) format("truetype"), url(fonts/flexslider-icon.svg#flexslider-icon) format("svg");
  font-weight: 400;
  font-style: normal; }

.flex-container a:focus, .flex-container a:hover, .flex-slider a:focus, .flex-slider a:hover {
  outline: 0; }

.flex-control-nav, .flex-direction-nav, .slides, .slides > li {
  margin: 0;
  padding: 0;
  list-style: none; }

.flex-pauseplay span {
  text-transform: capitalize; }

.flexslider {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  zoom: 1;
  -webkit-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2); }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

.flex-pauseplay a, .no-js .flexslider .slides > li:first-child, html[xmlns] .flexslider .slides {
  display: block; }

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

* html .flexslider .slides {
  height: 1%; }

.flexslider .slides {
  zoom: 1; }

.flexslider .slides img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  vertical-align: middle;
  height: auto;
  width: 100%; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.carousel li {
  margin-right: 5px; }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-pauseplay a {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: .8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: flexslider-icon;
  font-size: 20px;
  display: inline-block;
  content: '\f004'; }

.flex-pauseplay a:hover {
  opacity: 1; }

.flex-pauseplay a .flex-play:before {
  content: '\f003'; }

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center; }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1; }

.flex-control-paging li a {
  width: 10px;
  height: 10px;
  display: block;
  background: 0 0;
  cursor: pointer;
  text-indent: -9999px;
  border: 2px solid #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  opacity: .5; }

.flex-control-paging li a:hover {
  opacity: 1; }

.flex-control-paging li a.flex-active {
  background: #000;
  background: white;
  cursor: default;
  opacity: 1; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px; }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px; } }

.owl-pagination {
  position: relative;
  left: 0;
  margin-top: 50px;
  display: block;
  text-align: center;
  width: 100%; }

.owl-buttons {
  position: static; }

.owl-prev, .owl-next {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  text-align: center;
  line-height: 32px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.owl-prev {
  left: -32px;
  border-radius: 0 3px 3px 0; }

.owl-next {
  right: -32px;
  border-radius: 3px 0 0 3px; }

.owl-carousel:hover .owl-prev {
  opacity: 1;
  left: 0; }

.owl-carousel:hover .owl-next {
  opacity: 1;
  right: 0; }

.owl-page {
  display: inline-block;
  padding: 6px 6px;
  position: relative; }

.owl-page span {
  display: block;
  position: relative;
  width: 6px;
  height: 6px;
  opacity: 0.8;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background-color: #fff;
  z-index: 100;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

.owl-page span:hover {
  opacity: 1; }

.owl-page.active span {
  display: block;
  margin: 0;
  opacity: 1;
  background-color: #f36b21;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -ms-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7); }

.owl-next:hover i,
.owl-prev:hover i {
  color: #f36b21; }

.owl-carousel.dots-inside .owl-pagination {
  position: absolute;
  bottom: 20px;
  margin-top: 0; }

.owl-carousel.dark-dots .owl-page span {
  background-color: #cacdce; }

.owl-carousel.dark-dots .owl-page.active span {
  background-color: #f36b21; }