@charset "UTF-8";
/* URL - BASE */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i");
@import url("https://fonts.googleapis.com/css?family=Montserrat+Alternates:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

/* 
Bandeiras de pagamento no rodapé da página
• As configurações CSS deste modulo esta presente no arquivo _footer.scss.
• A ordem escrita na string será a ordem exibida.

	Opções possíveis:
	aura, bb, banrisul, boleto, bradesco, dinners, elo,
	hipercard, hsbc, itau, mastercard, paypal, visa, amex,
*/
/*
 Esta variavel define o local de onde o sass irá executar o Font-Awesome.
 Altere esta variavel para true apenas se o deploy de sua loja for feito no ambinete de homologação.
 No caso das agências em que o deploy é feito neste ambiente é importante lembrar de alterar essa váriavel
 para false quando o desenvolvimento terminar e for transferido para produção.
 O motivo se da pelo bloqueio de requisições HTTP quando a loja está em produção, ao mudar essa variavel para false a
 loja irá buscar a fonte nos diretorios locais do projeto (mesmo local onde o CSS estará).
*/
body select,
body input[type="text"] {
  height: auto;
  padding: 10px;
}

.tel {
  display: none !important;
}

.dn {
  display: none;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -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(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -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(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
body .loadMore:not(.inactive):hover div {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/*
  We are using CSS transitions for when the enter and move events
  are triggered for the element that has the `repeated-item` class
*/
.repeated-item.ng-enter,
.repeated-item.ng-move {
  transition: all 0.5s linear;
  opacity: 0;
}

/*
  `.ng-enter-active` and `.ng-move-active` are where the transition destination
  properties are set so that the animation knows what to animate
*/
.repeated-item.ng-enter.ng-enter-active,
.repeated-item.ng-move.ng-move-active {
  opacity: 1;
  transition: all 0.5s linear;
}

/*
  We are using CSS keyframe animations for when the `leave` event
  is triggered for the element that has the `repeated-item` class
*/
.repeated-item.ng-leave {
  animation: 0.5s my_animation;
}

@keyframes my_animation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.btn-alt-primary {
  cursor: pointer;
  background-color: #1c476a;
  border-color: #1c476a;
  color: #fff;
}
.btn-alt-primary:hover {
  background-color: #194a70;
  border-color: #194a70;
  color: #fff;
}

#me-header {
  background: #333333;
  overflow: visible;
}
@media (min-width: 992px) {
  #me-header {
    height: 130px;
  }
  #me-header .container {
    height: 130px;
  }
}
@media (max-width: 768px) {
  #me-header {
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .fixed#me-header {
    position: fixed;
    z-index: 99;
  }
}

@media (max-width: 768px) {
  #me-header #logo {
    float: left;
  }
  #me-header #logo img {
    max-width: 70%;
  }
}

#me-header .nav-desktop {
  position: relative;
  top: 5px;
  z-index: 1;
}
#me-header .nav-desktop .nav-item {
  background-color: transparent;
  margin-left: 10px;
}
#me-header .nav-desktop .nav-item a {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  transition: all 300ms;
}
#me-header .nav-desktop .nav-item a:hover {
  background: #81a5a5;
  color: #fff;
}
#me-header .nav-mobile {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #444444;
  width: 80%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: -80%;
  z-index: 20;
  transition: all 300ms;
  z-index: 1;
}
#me-header .nav-mobile.active {
  left: 0%;
}
#me-header .nav-mobile .nav-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid #333333;
}
#me-header .nav-mobile .nav-item #logo-menu {
  margin-left: 10px;
  width: 65%;
  display: block;
  margin-bottom: 10px;
}
#me-header .nav-mobile .nav-item:hover {
  background: #81a5a5;
}
#me-header .nav-mobile .nav-item a {
  color: #fff;
}

#me-header .spinner-master2 * {
  transition: all 0.3s;
  box-sizing: border-box;
}
#me-header .spinner-master2 {
  position: absolute;
  right: 20px;
  top: 16px;
  height: 50px;
  width: 50px;
}
#me-header .spinner-master2 input[type="checkbox"] {
  display: none;
}
#me-header .spinner-master2 label {
  cursor: pointer;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 10px;
  left: 0;
}
#me-header .spinner-master2 .spinner2 {
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: #eee;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}
#me-header .spinner-master2 .diagonal.part-1 {
  position: relative;
  float: left;
}
#me-header .spinner-master2 .horizontal {
  position: relative;
  float: left;
  margin-top: 7px;
}
#me-header .spinner-master2 .diagonal.part-2 {
  position: relative;
  float: left;
  margin-top: 6px;
}
#me-header
  .spinner-master2
  input[type="checkbox"]:checked
  ~ .spinner-spin2
  > .horizontal {
  opacity: 0;
}
#me-header
  .spinner-master2
  input[type="checkbox"]:checked
  ~ .spinner-spin2
  > .diagonal.part-1 {
  transform: rotate(135deg);
  margin-top: 10px;
}
#me-header
  .spinner-master2
  input[type="checkbox"]:checked
  ~ .spinner-spin2
  > .diagonal.part-2 {
  transform: rotate(-135deg);
  margin-top: -16px;
}

@media (min-width: 992px) {
  #me-header .search {
    margin-bottom: 20px;
  }
}

#me-header .info {
  padding: 10px;
  background: #4b4d50;
}
#me-header .info li {
  list-style: none;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -webkit- flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  -o-align-content: center;
  align-content: center;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  margin: 5px 0px;
}
#me-header .info li i {
  margin-right: 5px;
  font-size: 20px;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 165px;
  /* Margin bottom by footer height */
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 165px;
  /* Set the fixed height of the footer here */
}

footer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: #000;
}
footer .container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 768px) {
  footer.footer {
    min-height: 60px;
    height: auto;
    text-align: center;
    line-height: 12px;
    padding: 10px;
  }
}

.partner {
  text-align: center;
  padding: 10px 0px;
}
.partner h1 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: normal;
  font-size: 40px;
  color: #000;
  display: inline-block;
  width: auto;
  margin: 15px auto;
}
.partner h1:after {
  content: "";
  width: 195px;
  height: 2px;
  background: #000;
  display: block;
  margin: 5px auto;
}

footer span {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #fff;
  display: block;
  margin: 0px auto;
  float: none;
  margin: 15px 0px;
}
footer span.develop {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 10px;
  color: #fff;
}

body #localizacao #map {
  width: 100%;
  height: 300px;
}

body #localizacao {
  text-align: center;
}
body #localizacao h1 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: normal;
  font-size: 40px;
  color: #000;
  display: inline-block;
  width: auto;
  margin: 25px auto;
}
body #localizacao h1:after {
  content: "";
  width: 195px;
  height: 2px;
  background: #000;
  display: block;
  margin: 5px auto;
}

body #localizacao .information {
  background: #213a50;
  padding: 10px 0px;
}
body #localizacao .information .info {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  text-align: left;
}
body #localizacao .information .info span {
  display: block;
}
@media (max-width: 768px) {
  body #localizacao .information .info {
    text-align: center;
  }
}
body #localizacao .information .info:before {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 768px) {
  body #localizacao .information .info:before {
    width: 100%;
    display: block;
    margin: 10px 0px;
    text-align: center;
  }
}

body #contato {
  width: 100%;
  height: 500px;
  position: relative;
  background: url("../assets/img/bg_middle.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 30px 0px;
}

body #contato {
  text-align: center;
}
body #contato h1 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: normal;
  font-size: 40px;
  color: #fff;
  display: inline-block;
  width: auto;
  margin: 25px auto;
}
body #contato h1:after {
  content: "";
  width: 195px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 5px auto;
}

body #contato input,
body #contato textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  margin-bottom: 15px;
}
body #contato .btn-form {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: #fff;
  border: 1px solid transparent;
  width: 100%;
  max-width: 350px;
  height: 60px;
  background: #444444;
  cursor: pointer;
}
body #contato .btn-form:hover {
  background-color: #000;
}

body {
  margin-bottom: 144px;
}
@media (max-width: 768px) {
  body .container-fluid,
  body .home-cards {
    padding: 0px;
  }
  body .col-card {
    padding: 10px;
  }
}

body .banner-home {
  position: relative;
}
@media (min-width: 992px) {
  body .banner-home .banner-home-back {
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -o-filter: blur(30px);
    -ms-filter: blur(30px);
    filter: blur(30px);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url("img/banner-home-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }
  body .banner-home #carouselExampleIndicators {
    -webkit-box-shadow: 0px 24px 29px -12px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 24px 29px -12px rgba(0, 0, 0, 0);
    box-shadow: 0px 24px 29px -12px rgba(0, 0, 0, 0);
    margin-bottom: 40px;
  }
}
body .banner-home .carousel-caption {
  position: absolute;
  right: auto;
  left: 0;
  z-index: 10;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding: 10px 30px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  body .banner-home {
    padding: 0px;
  }
  body .banner-home .container {
    padding: 0px;
  }
  body .banner-home .container .carousel-caption {
    display: none;
  }
}

body .servicos {
  padding: 10px;
}
body .servicos .card {
  text-align: center;
  padding: 25px 0px;
  border: 0px;
}
body .servicos .number {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: bold;
  font-size: 60px;
  color: #6a6a6a;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -webkit- flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-align-content: space-between;
  -moz-align-content: space-between;
  -ms-align-content: space-between;
  -o-align-content: space-between;
  align-content: space-between;
  align-self: center;
  text-align: center;
  background-color: #fff;
  width: 110px;
  height: 110px;
  margin: 0px;
  margin-bottom: 20px;
}
body .servicos .number:hover {
  background-color: #6a6a6a;
  color: #fff;
}
body .servicos .card-title {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #444444;
}
body .servicos .card-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #444444;
  text-align: justify;
  width: 80%;
  margin: 0px auto;
}

body .destaques {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: url("../assets/img/bg_middle.jpg");
  background-attachment: fixed;
  width: 100%;
  padding: 20px;
  min-height: 150px;
}
body .destaques .card {
  text-align: center;
  background: transparent;
  border: 0px;
}
body .destaques .card img {
  width: 85px;
  display: block;
  margin: 10px auto;
}
body .destaques .card .card-title {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}
body .destaques .card .card-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}

body .produtos .card {
  border: 0px;
}
body .produtos .card .card-body {
  padding: 10px 0px;
  text-align: center;
}
body .produtos .card .card-title {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #1c476a;
  text-transform: uppercase;
  text-align: center;
}
body .produtos .card .card-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #444444;
  text-align: center !important;
}

body .social {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: url("../assets/img/bg_bottom.jpg");
  background-attachment: fixed;
  width: 100%;
  padding: 50px 10px;
  min-height: 150px;
}
body .social .socialinfo {
  margin: 0px auto;
  text-align: center;
}
body .social .socialinfo h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 25px;
  color: #fff;
}
body .social .socialinfo span {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #fff;
}
body .social .social-icons a {
  margin: 10px;
}
body .social .social-icons i {
  font-size: 34px;
  color: #fff;
}

body .container-video {
  background: url("../assets/img/bgvideo.jpg");
  background-size: cover;
  background-attachment: fixed;
}
body .videoContainer {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
}
@media (max-width: 576px) {
  body .videoContainer {
    height: 200px;
  }
}
@media (max-width: 768px) {
  body .videoContainer {
    height: 300px;
  }
}
@media (min-width: 992px) {
  body .videoContainer {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  body .videoContainer {
    height: 642px;
  }
}

body .news-cont {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
}
body .news .card-group {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -webkit- flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: inherit;
  -moz-align-items: inherit;
  -ms-align-items: inherit;
  -o-align-items: inherit;
  align-items: inherit;
  -webkit-align-content: flex-start;
  -moz-align-content: flex-start;
  -ms-align-content: flex-start;
  -o-align-content: flex-start;
  align-content: flex-start;
  padding: 10px 0px;
}
body .news .card-group .card {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  flex: inherit;
  margin: 10px;
  border: 1px solid #ccc;
}
@media (max-width: 576px) {
  body .news .card-group .card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body .news .card-group .card {
    width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  body .news .card-group .card {
    width: calc(33.333% - 10px);
  }
}
@media (min-width: 1200px) {
  body .news .card-group .card {
    width: calc(25% - 20px);
  }
}
body .news .card-group .card .card-text {
  text-align: center !important;
}

body .internal-titles {
  position: relative;
  background: url("../assets/img/bg_middle.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 30px 0px;
}
body .internal-titles h1 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: normal;
  font-size: 40px;
  color: #fff;
}

body .filtro-perfis {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: #444444;
  padding: 10px;
}
body .filtro-perfis * {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
body .filtro-perfis select {
  background: url("../assets/img/select-arrow.png");
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: 97% center;
  background-color: #fff;
  background-size: 10px;
  padding-right: 20px;
}
body .filtro-perfis select::-ms-expand {
  display: none;
}
body .filtro-perfis select,
body .filtro-perfis input {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  opacity: 0.5;
  background-color: transparent;
  border: 1px solid white;
}
body .filtro-perfis select:hover,
body .filtro-perfis select:active,
body .filtro-perfis select:focus,
body .filtro-perfis input:hover,
body .filtro-perfis input:active,
body .filtro-perfis input:focus {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}
body .filtro-perfis .searchbar {
  display: inline-block;
  position: relative;
}
body .filtro-perfis .searchbar:after {
  font-family: "Font Awesome 5 Free";
  background: none;
  content: "";
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-indent: 0;
  position: absolute;
  right: 10px;
  top: 5px;
}
body .filtro-perfis .btn-pdf {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 transparent;
  -moz-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  float: right;
  background-color: #394747;
  color: #fff;
  border: 0px;
  height: 40px;
  cursor: pointer;
}
body .filtro-perfis .btn-pdf:hover,
body .filtro-perfis .btn-pdf:focus,
body .filtro-perfis .btn-pdf:active {
  background-color: #81a5a5;
  border: 0px;
}
@media (max-width: 576px) {
  body .filtro-perfis .container {
    display: -webkit- flex;
    display: -moz- flex;
    display: -ms- flex;
    display: -webkit- flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
  }
  body .filtro-perfis select,
  body .filtro-perfis input,
  body .filtro-perfis .btn-pdf,
  body .filtro-perfis .searchbar {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  body .filtro-perfis .container {
    display: -webkit- flex;
    display: -moz- flex;
    display: -ms- flex;
    display: -webkit- flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
  }
  body .filtro-perfis input {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  body .filtro-perfis select,
  body .filtro-perfis .btn-pdf,
  body .filtro-perfis .searchbar {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(33.333333% - 10px);
  }
}

body .perfis-result .container {
  box-sizing: border-box;
  padding: 10px;
}

body .cards {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
body .cards * {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
body .col-card {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 10px;
}
body .card {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 0px;
}
body .card-img {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 240px;
}
body .card-header {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -webkit- flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  -o-align-content: center;
  align-content: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  background: #394747;
}
body .card-zoom {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  margin: 0px;
  cursor: pointer;
  border: 0px;
  background: #394747;
}
body .card-zoom i {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #fff;
}
body .card-zoom:hover {
  background: #81a5a5;
}
body .card-zoom:hover i {
  color: #394747;
}
body .card-body {
  padding: 0px;
}
body .card-name {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  background: #3f3f3f;
  text-transform: uppercase;
  padding: 10px;
}
body .card-info {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -webkit- flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: inherit;
  -moz-align-items: inherit;
  -ms-align-items: inherit;
  -o-align-items: inherit;
  align-items: inherit;
  -webkit-align-content: flex-start;
  -moz-align-content: flex-start;
  -ms-align-content: flex-start;
  -o-align-content: flex-start;
  align-content: flex-start;
}
body .card-code-block,
body .card-info-block {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body .card-code-block {
  width: 100%;
}
body .card-info-block {
  width: 50%;
}
body .info-title,
body .info-desc {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
}
body .info-title {
  background: #bbbbbb;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
}
body .info-desc {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

body .modal-card-img {
  width: 100%;
  height: 450px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
body .close {
  -webkit-box-shadow: 0 0 0 transparent;
  -moz-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  -ms-text-shadow: none;
  -o-text-shadow: none;
  text-shadow: none;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
}
body .close:hover,
body .close:focus,
body .close:active {
  color: #fff;
}
body .modal-header {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -webkit- flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  -o-align-content: center;
  align-content: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  background: #394747;
}
body .modal-footer button {
  cursor: pointer;
}

body .loadMore {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -webkit- flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  -o-align-content: center;
  align-content: center;
  background-color: #ccc;
  width: 100%;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
}
body .loadMore:not(.inactive):hover div {
  cursor: pointer;
}
body .loadMore div {
  width: 22px;
  margin-right: 10px;
}
body .loadMore div:before {
  font-family: "Font Awesome 5 Free";
  background: none;
  content: "";
  font-size: 25px;
  font-weight: bold;
  color: #444444;
  text-indent: 0;
  margin-right: 10px;
  display: inline-block;
}
body .loadMore span {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #444444;
}
body .loadMore.inactive {
  cursor: default;
  background-color: #c0c0c0;
}
body .loadMore.inactive div:before {
  font-family: "Font Awesome 5 Free";
  background: none;
  content: "";
  font-size: 25px;
  font-weight: bold;
  color: #444444;
  text-indent: 0;
}
body .loadMore.inactive span {
  font-size: 0px;
}
body .loadMore.inactive span:before {
  content: "Não á mais conteúdo";
  font-size: 18px;
}
body .loadMore.zeroLenght {
  cursor: default;
  background-color: #c0c0c0;
}
body .loadMore.zeroLenght div:before {
  font-family: "Font Awesome 5 Free";
  background: none;
  content: "";
  font-size: 25px;
  font-weight: 900;
  color: #444444;
  text-indent: 0;
}
body .loadMore.zeroLenght span {
  font-size: 0px;
}
body .loadMore.zeroLenght span:before {
  content: "Oops! Nenhum resultado encontrado.";
  font-size: 18px;
}
