@charset "UTF-8";
/*$color-primary: #fff;*/
/* BARRA DE ROLAGEM*/
::-webkit-scrollbar {
  width: 10px;
  height: 5px; }

* {
  transition: all 0.2s ease 0s; }

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4); }

/* CORES PLACEHOLDER*/
::placeholder {
  color: #afafaf; }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #afafaf; }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #afafaf; }

/* MARGINS FOLHA DE ESTILO*/
* {
  margin: 0px;
  padding: 0px;
  font-family: 'Roboto', sans-serif; }

li {
  list-style: none; }

a {
  text-decoration: none;
  transition: all 0.3s ease 0s; }

html {
  height: 100%; }

/* Simular campo inativo - Sugest├úo @GabrielRodrigues */
select[readonly] {
  background: #eee;
  pointer-events: none;
  touch-action: none; }
select option:disabled {
  background: #e5e5e5; }

.sublinhado {
  text-decoration: underline; }

.bold {
  font-weight: bold; }

.no-bold {
  font-weight: normal !important; }

.i {
  font-style: italic; }

.inline-b {
  display: inline-block; }

.block {
  display: block; }

.none {
  display: none !important; }

.upper {
  text-transform: uppercase; }

.enable {
  opacity: 1; }

.disable {
  opacity: 0.3; }

.invisible {
  visibility: hidden; }

.no-ls {
  letter-spacing: 0px !important; }

.btn {
  cursor: pointer; }
  .btn:hover {
    color: #DBDBDB; }

.icon {
  padding: 4px 5px;
  border: 1px solid transparent; }
  .icon:hover {
    border: 1px solid #FDFD;
    background: #801815; }

.center {
  text-align: center;
  vertical-align: middle; }

.fright {
  float: right; }

.tright {
  text-align: right; }

.btn-default {
  border-radius: 5px;
  text-align: center;
  padding: 7px 5px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer; }

.card {
  background: #FFFFFF;
  border-radius: 2px; }

/* Loading Default*/
.lds-ripple {
  display: inline-block;
  position: absolute;
  top: 25%;
  left: calc(50% - 32px);
  width: 64px;
  height: 64px; }
  .lds-ripple div {
    position: absolute;
    border: 4px solid #75ad74;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; }
    .lds-ripple div:nth-child(2) {
      animation-delay: -0.5s; }

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0; } }
/*
    CRIANDO O PADR├âO PARA CHECK BOX
*/
/* The container */
.chk-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  /* Hide the browser's default checkbox */ }
  .chk-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    /* When the checkbox is checked, add a blue background */
    /* Show the checkmark when checked */ }
    .chk-container input:checked ~ .checkmark {
      background-color: #fd1201; }
    .chk-container input:checked ~ .checkmark:after {
      display: block; }
  .chk-container:hover input ~ .checkmark {
    background-color: #ccc; }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 2px;
  /* Create the checkmark/indicator (hidden when not checked) */ }
  .checkmark:after {
    content: "";
    position: absolute;
    display: none; }

/* Style the checkmark/indicator */
.chk-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

/* TOOGLE */
.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 15px;
  margin-left: 5px;
  vertical-align: middle; }
  .switch input {
    display: none; }

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  -webkit-transition: .4s;
  transition: .4s; }
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: -2px;
    bottom: -2px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s; }

input:checked + .slider {
  background-color: #009bdb; }

input:focus + .slider {
  box-shadow: 0 0 1px #009bdb; }

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px); }

.slider.round {
  border-radius: 34px; }

.slider.round:before {
  border-radius: 50%; }

/* CORES PADR├âO*/
.color-primary {
  background: #e69516; }

.color-secondary {
  background: #75ad74; }

.color-divider {
  background: #bdbdbd; }

.color-monitor {
  background: #e4e4e4; }

.color-gray {
  background: #454545; }

.color-white {
  background: #FFF; }

.color-red {
  background: red; }

.color-blue {
  background: #009bdb; }

.color-disable {
  background: #efefef; }

.color-blue-dark {
  background: #2D3E50; }

.color-text-primary {
  color: #212121; }

.color-text-secondary {
  color: #fd0002; }

.color-text-1 {
  color: #9F9F9F; }

/*Cinza Claro */
.color-text-2 {
  color: #FFF; }

/*Branco */
.color-text-3 {
  color: #555555; }

/*Cinza */
.color-text-4 {
  color: #02890c; }

/*Cinza */
.color-text-5 {
  color: #009bdb; }

/*Azul */
.color-text-6 {
  color: #ff0000; }

/*Vermelho */
/* TIPOS DE FONTS*/
.font-9 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -1px; }

.font-8 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1px; }

.font-7 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -1px; }

.font-6 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -1px; }

.font-5 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -1px; }

.font-4 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -1px; }

.font-3 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -1px; }

.font-2 {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: -1px; }

.font-1 {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: -1px; }

/* SHADOW CARDS */
.shadow-top-z-9 {
  box-shadow: 6px 27px 31px 0 rgba(0, 0, 0, 0.9); }

.shadow-top-z-8 {
  box-shadow: 6px 24px 28px 0 rgba(0, 0, 0, 0.8); }

.shadow-top-z-7 {
  box-shadow: 6px 21px 25px 0 rgba(0, 0, 0, 0.7); }

.shadow-top-z-6 {
  box-shadow: 6px 18px 22px 0 rgba(0, 0, 0, 0.6); }

.shadow-top-z-5 {
  box-shadow: 6px 15px 19px 0 rgba(0, 0, 0, 0.5); }

.shadow-top-z-4 {
  box-shadow: 6px 12px 16px 0 rgba(0, 0, 0, 0.4); }

.shadow-top-z-3 {
  box-shadow: 6px 9px 13px 0 rgba(0, 0, 0, 0.3); }

.shadow-top-z-2 {
  box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.2); }

.shadow-top-z-1 {
  box-shadow: 6px 3px 7px 0 rgba(0, 0, 0, 0.1); }

/* DiMENS├òES */
.mt-45 {
  margin-top: 45px; }

.mr-45 {
  margin-right: 45px; }

.ml-45 {
  margin-left: 45px; }

.mb-45 {
  margin-bottom: 45px; }

.pt-45 {
  padding-top: 45px; }

.pr-45 {
  padding-right: 45px; }

.pl-45 {
  padding-left: 45px; }

.pb-45 {
  padding-bottom: 45px; }

.mt-40 {
  margin-top: 40px; }

.mr-40 {
  margin-right: 40px; }

.ml-40 {
  margin-left: 40px; }

.mb-40 {
  margin-bottom: 40px; }

.pt-40 {
  padding-top: 40px; }

.pr-40 {
  padding-right: 40px; }

.pl-40 {
  padding-left: 40px; }

.pb-40 {
  padding-bottom: 40px; }

.mt-35 {
  margin-top: 35px; }

.mr-35 {
  margin-right: 35px; }

.ml-35 {
  margin-left: 35px; }

.mb-35 {
  margin-bottom: 35px; }

.pt-35 {
  padding-top: 35px; }

.pr-35 {
  padding-right: 35px; }

.pl-35 {
  padding-left: 35px; }

.pb-35 {
  padding-bottom: 35px; }

.mt-30 {
  margin-top: 30px; }

.mr-30 {
  margin-right: 30px; }

.ml-30 {
  margin-left: 30px; }

.mb-30 {
  margin-bottom: 30px; }

.pt-30 {
  padding-top: 30px; }

.pr-30 {
  padding-right: 30px; }

.pl-30 {
  padding-left: 30px; }

.pb-30 {
  padding-bottom: 30px; }

.mt-25 {
  margin-top: 25px; }

.mr-25 {
  margin-right: 25px; }

.ml-25 {
  margin-left: 25px; }

.mb-25 {
  margin-bottom: 25px; }

.pt-25 {
  padding-top: 25px; }

.pr-25 {
  padding-right: 25px; }

.pl-25 {
  padding-left: 25px; }

.pb-25 {
  padding-bottom: 25px; }

.mt-20 {
  margin-top: 20px; }

.mr-20 {
  margin-right: 20px; }

.ml-20 {
  margin-left: 20px; }

.mb-20 {
  margin-bottom: 20px; }

.pt-20 {
  padding-top: 20px; }

.pr-20 {
  padding-right: 20px; }

.pl-20 {
  padding-left: 20px; }

.pb-20 {
  padding-bottom: 20px; }

.mt-15 {
  margin-top: 15px; }

.mr-15 {
  margin-right: 15px; }

.ml-15 {
  margin-left: 15px; }

.mb-15 {
  margin-bottom: 15px; }

.pt-15 {
  padding-top: 15px; }

.pr-15 {
  padding-right: 15px; }

.pl-15 {
  padding-left: 15px; }

.pb-15 {
  padding-bottom: 15px; }

.mt-10 {
  margin-top: 10px; }

.mr-10 {
  margin-right: 10px; }

.ml-10 {
  margin-left: 10px; }

.mb-10 {
  margin-bottom: 10px; }

.pt-10 {
  padding-top: 10px; }

.pr-10 {
  padding-right: 10px; }

.pl-10 {
  padding-left: 10px; }

.pb-10 {
  padding-bottom: 10px; }

.mt-5 {
  margin-top: 5px; }

.mr-5 {
  margin-right: 5px; }

.ml-5 {
  margin-left: 5px; }

.mb-5 {
  margin-bottom: 5px; }

.pt-5 {
  padding-top: 5px; }

.pr-5 {
  padding-right: 5px; }

.pl-5 {
  padding-left: 5px; }

.pb-5 {
  padding-bottom: 5px; }

/* BACKGROUND */
.bg, .bg-10, .bg-9, .bg-8, .bg-7, .bg-6, .bg-5, .bg-4, .bg-3, .bg-2, .bg-1 {
  background-attachment: fixed;
  background-clip: initial;
  background-origin: initial;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0; }

.bg-opacity-black:before, .bg-opacity-black-100:before, .bg-opacity-black-90:before, .bg-opacity-black-80:before, .bg-opacity-black-70:before, .bg-opacity-black-60:before, .bg-opacity-black-50:before, .bg-opacity-black-40:before, .bg-opacity-black-30:before, .bg-opacity-black-20:before, .bg-opacity-black-10:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1; }

.bg-10 {
  background-color: black; }

.bg-opacity-black-100:before {
  background: black; }

.bg-9 {
  background-color: rgba(0, 0, 0, 0.9); }

.bg-opacity-black-90:before {
  background: rgba(0, 0, 0, 0.9); }

.bg-8 {
  background-color: rgba(0, 0, 0, 0.8); }

.bg-opacity-black-80:before {
  background: rgba(0, 0, 0, 0.8); }

.bg-7 {
  background-color: rgba(0, 0, 0, 0.7); }

.bg-opacity-black-70:before {
  background: rgba(0, 0, 0, 0.7); }

.bg-6 {
  background-color: rgba(0, 0, 0, 0.6); }

.bg-opacity-black-60:before {
  background: rgba(0, 0, 0, 0.6); }

.bg-5 {
  background-color: rgba(0, 0, 0, 0.5); }

.bg-opacity-black-50:before {
  background: rgba(0, 0, 0, 0.5); }

.bg-4 {
  background-color: rgba(0, 0, 0, 0.4); }

.bg-opacity-black-40:before {
  background: rgba(0, 0, 0, 0.4); }

.bg-3 {
  background-color: rgba(0, 0, 0, 0.3); }

.bg-opacity-black-30:before {
  background: rgba(0, 0, 0, 0.3); }

.bg-2 {
  background-color: rgba(0, 0, 0, 0.2); }

.bg-opacity-black-20:before {
  background: rgba(0, 0, 0, 0.2); }

.bg-1 {
  background-color: rgba(0, 0, 0, 0.1); }

.bg-opacity-black-10:before {
  background: rgba(0, 0, 0, 0.1); }

.fade-left {
  transition-property: left;
  transition-duration: 1s;
  transition-timing-function: ease-out;
  transition-delay: 0.2s;
  animation: fade-left 1s; }

@keyframes fade-left {
  from {
    left: -20px;
    margin-left: -20px;
    opacity: 0; }
  to {
    opacity: 1; } }
.fade-right {
  transition-property: right,margin-right;
  transition-duration: 1s;
  transition-timing-function: ease-out;
  transition-delay: 0.2s;
  animation: fade-right 2s; }

@keyframes fade-right {
  from {
    right: -130px;
    opacity: 0; }
  to {
    right: 0px;
    opacity: 1; } }
.slide-down {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  transition-delay: 0s;
  animation: slide-down 1s; }

@keyframes slide-down {
  from {
    top: -200px;
    margin-top: -200px;
    opacity: 0; }
  to {
    opacity: 1; } }
.anima-in-header-content {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.97, 0.08, 0.58, 0.79);
  transition-delay: 0s;
  animation: in-header-content 1s;
  animation-fill-mode: forwards; }

@keyframes in-header-content {
  from {
    opacity: 0;
    top: 800px;
    background: white; }
  to {
    top: 200px;
    opacity: 1; } }
.anima-out-header-content {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.97, 0.08, 0.58, 0.79);
  transition-delay: 0s;
  animation: out-header-content 1s;
  animation-fill-mode: forwards; }

@keyframes out-header-content {
  from {
    opacity: 1;
    top: 285px; }
  to {
    top: 800px;
    opacity: 0;
    background: white; } }
.anima-height {
  transition-property: height;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transition-delay: 0s; }

.anima-header-title {
  transition-property: width,height,border-bottom-right-radius;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.79, 0.21, 0.66, 0.83);
  transition-delay: 0s; }

.anima-figure-carrousel {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.99, 0, 0.45, 0.82);
  transition-delay: 0s; }

.anima-splash {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.99, 0, 0.45, 0.82);
  transition-delay: 0s; }

.anima {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-delay: 0s; }

.rotateOpen {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg); }

/*	INICIANDO CONFIGURACAO PERSONALIZADA */
.card {
  padding: 10px 10px;
  margin: 10px 10px; }

/*
	FUNDO 
*/
.fundo-bg-1 {
  background-image: url("../img/fundo-fabrica.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative; }

/*****************************
    HEADER
 ******************************/
.boxed-layout.wrapper {
  background-color: #fadc93;
  box-shadow: -3px 0 50px -2px rgba(0, 0, 0, 0.14);
  margin: auto;
  position: relative;
  max-width: 1238px;
  width: 100%;
  background: #FEFEFE;
  height: auto;
  margin-bottom: 120px; }

.header-top {
  text-align: center;
  background: #2D3E50 none repeat scroll 0 0;
  color: white;
  height: 30px;
  vertical-align: middle; }
  .header-top p {
    display: inline-block; }
  .header-top a {
    text-decoration: none;
    transition: all 0.3s ease 0s; }
    .header-top a:link {
      color: #e69516;
      text-decoration: none; }
    .header-top a:visited {
      color: #e69516;
      text-decoration: none; }
    .header-top a:hover {
      color: #e69516; }
    .header-top a:active {
      color: #e69516;
      text-decoration: none; }

.header-menu {
  height: 60px;
  position: relative;
  z-index: 90; }
  .header-menu .container {
    display: inline-block;
    width: 100%;
    height: 86px;
    z-index: 90; }
    .header-menu .container h1 {
      position: absolute;
      margin-top: 22px;
      left: 150px;
      display: inline-block; }
  .header-menu .nav-menu {
    display: inline-block;
    text-align: right;
    width: calc(100% - 10px);
    padding: 10px 5px; }
    .header-menu .nav-menu a {
      text-decoration: none;
      transition: all 0.3s ease 0s;
      display: block;
      height: 100%; }
      .header-menu .nav-menu a:link {
        color: #212121;
        text-decoration: none; }
      .header-menu .nav-menu a:visited {
        color: #212121;
        text-decoration: none; }
      .header-menu .nav-menu a:hover {
        color: #212121; }
      .header-menu .nav-menu a:active {
        color: #212121;
        text-decoration: none; }
    .header-menu .nav-menu li {
      display: inline-block;
      width: 100px;
      height: 40px;
      padding: 10px 5px;
      text-align: center;
      border-top: 5px solid transparent;
      cursor: pointer; }
      .header-menu .nav-menu li:hover {
        background: #75ad74;
        color: white !important;
        border-top: 5px solid #2D3E50; }
        .header-menu .nav-menu li:hover a {
          color: white !important; }
  .header-menu figure {
    display: inline-block; }
    .header-menu figure img {
      vertical-align: middle; }
  .header-menu .mobile-menu-area {
    width: 100%;
    display: none; }
    .header-menu .mobile-menu-area figure {
      position: absolute;
      right: 15px;
      top: 20px; }
    .header-menu .mobile-menu-area nav {
      position: relative;
      top: 62px;
      display: none; }
    .header-menu .mobile-menu-area nav > ul {
      text-align: right;
      background: #efefef;
      padding: 20px; }
    .header-menu .mobile-menu-area nav > ul > li {
      line-height: 30px;
      border-bottom: 1px solid #e6e5e5;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer; }
      .header-menu .mobile-menu-area nav > ul > li a {
        text-decoration: none;
        transition: all 0.3s ease 0s; }
        .header-menu .mobile-menu-area nav > ul > li a:link {
          color: #e69516;
          text-decoration: none; }
        .header-menu .mobile-menu-area nav > ul > li a:visited {
          color: #e69516;
          text-decoration: none; }
        .header-menu .mobile-menu-area nav > ul > li a:hover {
          color: #e69516; }
        .header-menu .mobile-menu-area nav > ul > li a:active {
          color: #e69516;
          text-decoration: none; }
      .header-menu .mobile-menu-area nav > ul > li:hover {
        color: #e69516; }

.header-container {
  cursor: pointer;
  overflow: hidden; }
  .header-container > figure > img {
    position: absolute;
    top: 10px;
    left: 8px;
    width: 100px;
    z-index: 92; }

.header-title {
  position: absolute;
  width: 135px;
  height: 150px;
  border-bottom-right-radius: 125px;
  top: 0px;
  z-index: 91;
  left: 0px; }
  .header-title .splash {
    position: absolute;
    right: 10px;
    top: 160px;
    display: none; }
  .header-title .icon-back {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
    height: 100%;
    background: #e69516;
    display: none; }
    .header-title .icon-back figure {
      position: relative;
      top: 160px;
      left: 18px; }

.header-content {
  position: absolute;
  width: 1238px;
  height: auto;
  padding-bottom: 30px;
  z-index: 10;
  background: #e69516;
  text-align: center; }
  .header-content .header-content-top {
    display: inline-block;
    width: 100%;
    padding-top: 50px; }
    .header-content .header-content-top h2 {
      display: inline-block;
      width: 90%;
      padding: 10px;
      text-align: center;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 10px;
      letter-spacing: 1px;
      color: #212121; }
  .header-content .lista1, .header-content .lista2 {
    padding: 10px;
    text-align: left;
    display: inline-block;
    vertical-align: top; }

/***********************************
	IMAGE CARROUSEL
*************************************/
.wrapper-carrousel {
  overflow-x: scroll; }
  .wrapper-carrousel > ul {
    text-align: center;
    width: 2000px;
    margin-bottom: 20px; }
  .wrapper-carrousel > ul > li {
    display: inline-table;
    cursor: pointer;
    vertical-align: middle;
    text-align: left; }
    .wrapper-carrousel > ul > li .card {
      width: 200px;
      overflow: hidden;
      padding: 0px 0px;
      margin-left: 2px;
      margin-right: 2px; }
      .wrapper-carrousel > ul > li .card .wrapper-figure {
        width: 200px;
        height: 200px;
        overflow: hidden; }
        .wrapper-carrousel > ul > li .card .wrapper-figure:hover .splash {
          opacity: 0.8; }
        .wrapper-carrousel > ul > li .card .wrapper-figure:hover figure {
          transform: scale(1.5); }
        .wrapper-carrousel > ul > li .card .wrapper-figure .splash {
          position: absolute;
          width: 200px;
          height: 80px;
          z-index: 5;
          background: #333332;
          text-align: center;
          vertical-align: middle;
          overflow: hidden;
          opacity: 0; }
      .wrapper-carrousel > ul > li .card figure:hover {
        transform: scale(1.5); }
      .wrapper-carrousel > ul > li .card figure img {
        object-fit: cover;
        width: 200px; }
      .wrapper-carrousel > ul > li .card footer {
        padding: 20px 10px; }

/***********************************
	AGENTE
*************************************/
.agents-carrousel {
  text-align: center; }
  .agents-carrousel > ul {
    padding: 10px; }
  .agents-carrousel > ul > li {
    display: inline-block;
    margin-right: 10px; }

.agent-box {
  width: 270px;
  display: inline-block;
  border-bottom: 4px solid #1f223e;
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 1.5s ease 0s;
  transition: all 1.5s ease 0s; }
  .agent-box figure {
    height: 320px;
    background: white; }
    .agent-box figure img {
      width: 100%; }
  .agent-box:hover {
    border-bottom: 4px solid #95c41f; }
    .agent-box:hover .agent-info:before {
      height: 160px; }
    .agent-box:hover .agent-info:after {
      bottom: 158px; }
    .agent-box:hover .agent-info .agent-name {
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      visibility: hidden;
      margin-left: -100px; }
    .agent-box:hover .agent-info-hover {
      bottom: 0;
      opacity: 1;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      visibility: visible; }
  .agent-box .agent-info {
    padding-bottom: 10px;
    position: relative;
    z-index: 3; }
    .agent-box .agent-info .agent-name {
      position: relative;
      text-align: center;
      -webkit-transition: all 0.2s ease 0s;
      transition: all 0.223s ease 0s; }
    .agent-box .agent-info:before {
      background-color: #f5f5f5;
      bottom: 0;
      content: "";
      height: 50px;
      left: 0;
      position: absolute;
      -webkit-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      width: 100%;
      z-index: -1; }
    .agent-box .agent-info:after {
      border-left: 300px solid #f5f5f5;
      border-top: 55px solid transparent;
      bottom: 48px;
      content: "";
      left: 0;
      position: absolute;
      -webkit-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      z-index: -2; }
  .agent-box .agent-info-hover {
    bottom: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    padding-bottom: 15px;
    position: absolute;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
    text-overflow: ellipsis;
    text-align: left; }
    .agent-box .agent-info-hover a {
      -webkit-transition: all 0.0s ease 0s;
      transition: all 0.0s ease 0s; }
    .agent-box .agent-info-hover .agent-name {
      bottom: 89px;
      left: -50px;
      position: absolute;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg); }
      .agent-box .agent-info-hover .agent-name h5 {
        width: 188px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        color: #95c41f; }
      .agent-box .agent-info-hover .agent-name a {
        color: #95c41f;
        text-decoration: none; }
    .agent-box .agent-info-hover .agent-address {
      padding-left: 80px;
      margin-bottom: 10px;
      text-overflow: ellipsis; }
      .agent-box .agent-info-hover .agent-address > li {
        font-size: 13px; }
        .agent-box .agent-info-hover .agent-address > li > i {
          font-size: 15px; }
      .agent-box .agent-info-hover .agent-address > li + li {
        margin-top: 5px; }
    .agent-box .agent-info-hover .social-media {
      padding-left: 80px; }
      .agent-box .agent-info-hover .social-media a {
        color: #212121;
        opacity: 0.8; }
      .agent-box .agent-info-hover .social-media > li {
        display: inline-block; }
      .agent-box .agent-info-hover .social-media > li + li {
        margin-left: 20px; }
      .agent-box .agent-info-hover .social-media a:hover {
        color: #95c41f;
        text-decoration: none; }

/***********************************
	PARTNERS
*************************************/
.partners > ul {
  text-align: center;
  width: 100%; }
.partners > ul > li {
  display: inline-flex;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-right: 15px;
  margin-left: 15px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%); }
  .partners > ul > li figure img {
    object-fit: crop;
    width: 130px;
    padding: 5px;
    vertical-align: middle; }
  .partners > ul > li:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    filter: grayscale(0);
    -webkit-filter: grayscale(0); }

/***********************************
	FOOTER
*************************************/
footer {
  padding-top: 50px; }
  footer:before {
    background: #253545;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1; }
  footer .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    width: 100%; }
    footer .container:before {
      display: table;
      content: " "; }
    footer .container:after {
      display: table;
      content: " "; }
    footer .container .row {
      display: inline-flex;
      text-align: left;
      width: 40%; }
      footer .container .row .footer-widget {
        width: 100%; }
        footer .container .row .footer-widget h6, footer .container .row .footer-widget .h6 {
          font-size: 16px; }
        footer .container .row .footer-widget .footer-address > li {
          overflow: hidden;
          padding-bottom: 10px; }
        footer .container .row .footer-widget .address-icon {
          float: left;
          width: 15%; }
        footer .container .row .footer-widget .address-info {
          float: left;
          width: 85%; }
          footer .container .row .footer-widget .address-info > span {
            color: #ccc;
            display: block;
            font-size: 12px;
            font-weight: 300;
            line-height: 20px; }
          footer .container .row .footer-widget .address-info a {
            text-decoration: none;
            transition: all 0.3s ease 0s; }
            footer .container .row .footer-widget .address-info a:link {
              color: #e69516;
              text-decoration: none; }
            footer .container .row .footer-widget .address-info a:visited {
              color: #e69516;
              text-decoration: none; }
            footer .container .row .footer-widget .address-info a:hover {
              color: #e69516; }
            footer .container .row .footer-widget .address-info a:active {
              color: #e69516;
              text-decoration: none; }
          footer .container .row .footer-widget .address-info i {
            padding-right: 10px; }
  footer .footer-titel {
    color: #fefefe;
    margin-bottom: 30px;
    text-transform: uppercase; }
  footer .footer-contact {
    color: #ccc; }
    footer .footer-contact p {
      font-size: 12px;
      line-height: 20px; }
    footer .footer-contact input {
      border-color: #706e6d;
      height: 35px;
      font-size: 12px;
      transition: all 0.5s ease-out 0s;
      outline: medium none; }
    footer .footer-contact input[type="text"], footer .footer-contact input[type="email"], footer .footer-contact input[type="password"] {
      background: transparent;
      border: 1px solid #706e6d;
      color: #FAFAFA;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 300;
      height: 40px;
      margin-bottom: 20px;
      padding: 0 10px;
      width: 100%; }
    footer .footer-contact textarea {
      background: transparent none repeat scroll 0 0;
      border: 1px solid #706e6d;
      box-shadow: none;
      font-size: 12px;
      font-weight: 300;
      height: 80px;
      line-height: 22px;
      margin-bottom: 17px;
      padding: 5px 10px;
      color: #FAFAFA;
      font-family: "Montserrat",sans-serif;
      resize: vertical;
      width: 100%; }
    footer .footer-contact button {
      background: #c5c5c5 none repeat scroll 0 0;
      color: #000000;
      padding: 5px 15px;
      text-transform: uppercase;
      transition: all 0.3s ease 0s;
      border: medium none;
      font-family: 'Montserrat', sans-serif;
      font-weight: bold;
      outline: medium none;
      font-size: 15px;
      line-height: inherit; }

.footer-bottom {
  background: #e2e1dc none repeat scroll 0 0;
  border-top: 1px solid #484848;
  padding: 20px 0; }
  .footer-bottom .row {
    text-align: center;
    width: 100%;
    display: block; }
  .footer-bottom .copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 12px; }
    .footer-bottom .copyright a {
      text-decoration: none;
      transition: all 0.3s ease 0s; }
      .footer-bottom .copyright a:link {
        color: #e69516;
        text-decoration: none; }
      .footer-bottom .copyright a:visited {
        color: #e69516;
        text-decoration: none; }
      .footer-bottom .copyright a:hover {
        color: #e69516; }
      .footer-bottom .copyright a:active {
        color: #e69516;
        text-decoration: none; }

/***********************************
	SCROLL UP
*************************************/
#scrollUp {
  background: #e69515 none repeat scroll 0 0;
  bottom: 70px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  height: 40px;
  right: 3%;
  text-align: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 40px; }
  #scrollUp i {
    line-height: 40px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  #scrollUp .fa {
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #scrollUp:hover {
    background: #95c41f none repeat scroll 0 0; }

/*
	DESCRICAO FOLDERS
*/
.camera_caption {
  top: 250px;
  left: 450px;
  z-index: 6;
  height: auto;
  width: 50%; }

.camera_caption {
  color: #fff; }

.camera_caption {
  display: block;
  position: absolute; }

.camera_caption:before {
  border-bottom: 5px solid #fff;
  bottom: -26px;
  content: "";
  display: block;
  position: absolute;
  width: 170px;
  color: #fff;
  z-index: 999; }

.camera-two > h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff; }

.camera-two h2 {
  position: relative; }

/***********************************
	SESSION 1
*************************************/
#bloco-1 {
  display: block; }

#bloco-2 {
  display: block; }

#bloco-3 {
  display: block; }

#bloco-4 {
  display: block; }

#bloco-5 {
  display: block; }

#bloco-6 {
  display: block; }

#bloco-7 {
  display: block; }

#bloco-8 {
  display: block; }

.bloco {
  width: 100%;
  background: white;
  padding: 25px 0px; }
  .bloco .fundo-header-bloco {
    width: 260px;
    padding: 30px;
    background: #212121;
    color: white;
    display: inline-grid;
    border-radius: 2px;
    box-shadow: 7px 7px 0px 2px #f8a82b; }
  .bloco.small {
    min-height: 300px; }
  .bloco.medium {
    min-height: 500px; }
  .bloco.large {
    min-height: 700px; }
  .bloco header {
    padding: 20px 8px; }
  .bloco h1 {
    position: relative;
    top: 50%;
    left: 50%;
    color: green; }

#bloco-2, #bloco-9 {
  background: #F6F6F6;
  margin-top: 20px;
  margin-bottom: 100px; }
  #bloco-2 figure, #bloco-9 figure {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10%; }
    #bloco-2 figure img, #bloco-9 figure img {
      width: 240px;
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);
      opacity: 0.2;
      vertical-align: middle; }
  #bloco-2 article div, #bloco-9 article div {
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    position: relative; }
    #bloco-2 article div header, #bloco-9 article div header {
      display: inline-block;
      vertical-align: middle;
      font-family: 'Raleway', sans-serif;
      font-size: 30px;
      font-weight: 700; }
    #bloco-2 article div p, #bloco-9 article div p {
      width: auto;
      max-width: 491px;
      padding-left: 10px;
      padding-right: 10px;
      font-family: 'Raleway', sans-serif;
      font-size: 15px;
      font-weight: 300; }

#bloco-9 {
  background: #253545;
  margin-bottom: 0px;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px; }
  #bloco-9 article div {
    opacity: 1;
    color: white;
    max-width: 90%;
    width: 100%; }
    #bloco-9 article div p {
      width: 95%;
      max-width: 95%;
      font-family: 'Raleway', sans-serif;
      font-size: 20px;
      font-weight: 300; }

#bloco-3 {
  padding-bottom: 0px;
  padding-top: 0px; }
  #bloco-3 .service-text-right {
    display: inline-block;
    float: left; }
    #bloco-3 .service-text-right > a {
      background-color: #e69515;
      border-radius: 10px;
      display: inline-block;
      height: 72px;
      line-height: 72px;
      text-align: center;
      transform: rotate(-45deg);
      width: 72px; }
      #bloco-3 .service-text-right > a .image-rotate {
        transform: rotate(45deg); }
      #bloco-3 .service-text-right > a img {
        transform: rotate(45deg);
        max-width: 100%;
        height: auto;
        vertical-align: middle; }
    #bloco-3 .service-text-right a {
      transition: all 0.3s ease 0s;
      text-decoration: none;
      color: #999; }
  #bloco-3 .service-text-left {
    padding-left: 102px; }
    #bloco-3 .service-text-left > h3 {
      margin-bottom: 10px;
      margin-top: 0; }
    #bloco-3 .service-text-left .creative-text > h3, #bloco-3 .service-text-left .service-text-left > h3 {
      font-size: 18px;
      font-weight: 600;
      margin-top: 30px;
      color: #2b2b35;
      font-family: 'Montserrat', sans-serif; }
    #bloco-3 .service-text-left p {
      font-weight: 400;
      font-family: 'Montserrat', sans-serif; }
  #bloco-3 header {
    position: relative;
    padding: 0px;
    top: -34px;
    left: 20px; }
  #bloco-3 aside > ul > li {
    background: transparent;
    padding: 30px; }
    #bloco-3 aside > ul > li figure {
      display: inline-block; }
      #bloco-3 aside > ul > li figure img {
        vertical-align: middle; }
    #bloco-3 aside > ul > li p {
      display: inline-block;
      vertical-align: middle;
      width: 60%;
      color: #777777; }

#bloco-4 {
  padding-top: 100px; }
  #bloco-4 > div {
    height: 400px; }
  #bloco-4 .camera-two, #bloco-4 .camera-three {
    font-family: 'Raleway', sans-serif;
    vertical-align: middle;
    color: white;
    text-align: center; }
  #bloco-4 .camera-two {
    padding-top: 100px; }

#bloco-5 {
  padding-top: 40px;
  padding-bottom: 130px;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px; }
  #bloco-5.bg-3 {
    position: initial !important; }
  #bloco-5 header > div > h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: 8px; }
  #bloco-5 .action-fotos {
    text-align: center; }
    #bloco-5 .action-fotos .icon-prev, #bloco-5 .action-fotos .icon-next {
      display: inline-block;
      cursor: pointer;
      vertical-align: middle; }
    #bloco-5 .action-fotos .icon-prev img {
      transform: rotate(180deg); }

#bloco-6 {
  background: #f9f9f9; }
  #bloco-6 h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 30;
    margin-bottom: 10px; }
  #bloco-6 p {
    font-family: 'Raleway', sans-serif; }

#bloco-7 {
  font-family: 'Raleway', sans-serif;
  height: 320px;
  width: 103%;
  margin-left: -20px;
  z-index: 1;
  position: relative;
  background: #efefef; }
  #bloco-7 h2 {
    font-weight: 700;
    font-size: 30;
    margin-bottom: 50PX; }

#bloco-8 .footer-top {
  padding-top: 50px;
  padding-bottom: 70px; }

.bg-1 {
  background-image: url("../img/banner/inversores.png"); }

.bg-2 {
  background-image: url("../img/fundo_servico.png");
  background-color: white;
  background-attachment: initial; }

.bg-3 {
  background-image: url("../img/fundo_foto.png");
  background-repeat: no-repeat;
  background-color: white;
  background-attachment: initial; }

/********************************
   TELA CHEIA
******************************/
.fullScreen {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99;
  top: 0px;
  left: 0px;
  padding: 50px 10px;
  cursor: pointer; }
  .fullScreen .foto {
    vertical-align: middle;
    text-align: center;
    margin-top: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 80%;
    -webkit-transition: all 1.5s ease 0s;
    transition: all 1.5s ease 0s; }

/* Content-driven breakpoint */
@media (max-width: 940px) {
  .boxed-layout.wrapper {
    position: absolute;
    overflow: hidden;
    width: 100%; }

  .nav-menu {
    display: none !important; }

  .camera_caption {
    top: 300px;
    left: 15px;
    z-index: 6;
    height: auto;
    width: 90%; }

  .camera-two > h2 {
    font-size: 30px;
    font-weight: 600; }

  .nivo-main-image, #slider {
    min-width: 934px; }

  .nav-menu {
    display: none !important; }

  .mobile-menu-area {
    display: block !important; }

  .header-top {
    text-align: right !important; }
    .header-top p {
      display: block;
      font-size: 10px; }

  .nivo-directionNav {
    display: none !important; }

  .footer-top .container .row {
    width: 100%;
    display: block;
    margin-left: 10px !important; }

  footer .container .row .footer-widget {
    width: 80%; } }
/* 1088px */
/* 1312px */
/* 1600px */

/*# sourceMappingURL=material.cemf.11-02-19.css.map */
