/* Trim */

.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-trim:before {
  content: '';
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
}

.hvr-trim:hover:before,
.hvr-trim:focus:before,
.hvr-trim:active:before {
  opacity: 1;
}

.bg-secondary {
  background-color: #BF0101 !important;
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

.title-default {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0em;
  margin-bottom: 30px;
}

@media screen and (max-width: 980px) {
  .title-default {
    font-size: 18px;
  }
}

.subtitle-default {
  font-family: 'Roboto Slab', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0em;
  margin-bottom: 50px;
}

.btn-default {
  color: #fff;
  background-color: #006BBD;
  border-color: #006BBD;
  font-size: 14px;
  padding: 15px 40px;
}

.btn-default.white {
  background-color: #FFF;
  border-color: #FFF;
  color: #18191F;
}

.btn-default.white:hover {
  color: #006BBD;
}

.btn-default:hover {
  color: #FFF;
}

.btn-default.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-default.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

@media screen and (max-width: 980px) {
  .btn-default {
    padding: 10px 30px;
  }
}

a {
  color: #3598FA;
}

#principal {
  min-height: 300px;
}

.table td,
.table th {
  vertical-align: middle;
}

@media screen and (max-width: 980px) {
  #app {
    overflow: hidden;
    padding-top: 0px !important;
  }

  .interna #app {
    padding-top: 0px !important;
  }
}

.slick-next {
  right: 15px !important;
}

.slick-prev {
  left: 15px !important;
}

.relative {
  position: relative;
}

.stacktable {
  width: 100%;
}

.st-head-row {
  padding-top: 1em;
  text-align: center;
}

.st-head-row.st-head-row-main {
  font-size: 1.5em;
  padding-top: 0;
}

.st-key {
  width: 49%;
  text-align: right;
  padding-right: 1%;
}

.st-val {
  width: 49%;
  padding-left: 1%;
}

/* RESPONSIVE EXAMPLE */

.stacktable.large-only {
  display: table;
}

.stacktable.small-only {
  display: none;
}

@media (max-width: 800px) {
  .stacktable.large-only {
    display: none;
  }

  .stacktable.small-only {
    display: table;
  }

  .stacktable .btn-danger {
    margin-left: -50%;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}

.hamburger {
  padding: 15px 0;
  margin-left: 2vw;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 35px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * Elastic
   */

.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
     * Elastic Reverse
     */

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

#logo {
  max-height: 120px;
  transition: all linear 0.25s;
  -moz-transition: all linear 0.25s;
}

.onScroll #logo {
  max-height: 57px;
}

@media screen and (max-width: 980px) {
  #logo {
    max-height: 80px;
  }
}

.navbar-toggler.navbar-toggler-right {
  font-size: 16px;
  border: none;
}

@media screen and (min-width: 1333px) {
  #containerHeader {
    max-width: 1330px;
  }
}

@media (min-width: 768px) {
  .dropdown-menu {
    margin-top: 0;
  }
}

#mainNav {
  background: #fff;
  box-shadow: 0px -1px 3px #b3b3b3;
  transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
}

@media screen and (max-width: 980px) {
  #mainNav {
    min-height: 109px;
    position: relative;
  }
}

#mainNav a {
  color: #222222;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

#mainNav .contatosTopo {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  min-width: 235px;
  color: #BF0101;
}

#mainNav .contatosTopo span {
  color: #3598FA;
}

@media screen and (max-width: 980px) {
  #mainNav .contatosTopo {
    text-align: center;
  }
}

#mainNav .nav-item {
  margin-left: 0.5vw;
  margin-right: 0.5vw;
  min-width: 130px;
}

@media screen and (max-width: 980px) {
  #mainNav .nav-item {
    margin-left: 0;
    width: auto;
  }
}

#mainNav .nav-item .nav-link.active {
  position: relative;
}

#mainNav .nav-item .nav-link.active::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #3598FA;
  background-size: contain;
}

#mainNav .nav-item .imgWpp {
  width: 32px;
  height: auto;
}

@media screen and (max-width: 980px) {
  #mainNav .topoCart {
    margin-right: 9vw;
    margin-left: 10%;
  }

  #mainNav .topoCart .nav-link {
    padding: .2rem .5rem;
  }
}

@media screen and (max-width: 359px) {
  #mainNav .topoCart {
    margin-right: 5.6vw;
  }
}

@media screen and (max-width: 980px) {
  .navbar-brand {
    /* margin-top: 1rem !important;
        margin-bottom: 0.5rem !important;
        margin-left: 8% !important;
        margin-right: 0.5rem !important; */
  }
}

.onScroll .navbar-brand {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 980px) {
  .colMenu {
    display: block !important;
    padding-right: 0;
    padding-left: 0;
  }
}

.onScroll #navbarResponsive {
  margin-top: 0 !important;
}

.pageTitle {
  font-size: 34px;
  font-weight: normal;
  margin: 30px auto;
  transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
}

.onScroll .pageTitle {
  font-size: 30px;
  margin: 15px auto 10px;
}

@media screen and (max-width: 980px) {
  .pageTitle {
    font-size: 21px;
    font-weight: bold;
    margin: 15px auto 5px;
  }
}

#topoInterna {
  background: url("/imagens/home/fundo-interna.png") no-repeat center;
  background-size: cover;
  color: #FFF;
  margin-bottom: 35px;
}

#topoInterna.bg-locacao-de-veiculos {
  background: url("/imagens/home/fundo-locacao.jpg") #A6E4F4 no-repeat right center !important;
  background-size: contain;
  color: #000 !important;
}

#topoInterna.bg-locacao-de-veiculos .pageTitle {
  margin: 80px auto;
}

.auxiliaryNav {
  position: relative;
}

@media screen and (max-width: 980px) {
  .auxiliaryNav {
    display: block;
    margin-left: 1rem !important;
    text-align: center;
  }

  .auxiliaryNav #topoInterna {
    margin-left: 1rem !important;
  }
}

.auxiliaryNav .nav-item {
  margin: 0 0 0 20px;
}

@media screen and (max-width: 980px) {
  .auxiliaryNav .nav-item {
    display: inline-block;
    width: 25%;
  }
}

.auxiliaryNav .itemdrop {
  width: 100%;
  margin-bottom: 15px;
}

.overLinks {
  min-width: 155px;
  text-align: right;
}

@media screen and (max-width: 980px) {
  .overLinks {
    text-align: center;
    display: inline-block;
    width: 45%;
  }
}

@media (min-width: 1024px) {
  .overLinks {
    position: absolute;
    top: -35px;
    right: 0;
    opacity: 1;
    transition: all linear 0.2s;
    -moz-transition: all linear 0.2s;
  }

  .onScroll .overLinks {
    opacity: 0;
  }
}

.overLinks a.linkLang {
  margin-left: 7px;
  display: inline-block;
}

#rights {
  background: #595959;
  color: #FFF;
}

footer {
  background: #899095;
  color: #FFF;
  font-size: 12px;
  position: relative;
}

footer hr {
  border-bottom-color: #444;
  border-top-color: #444;
}

@media screen and (max-width: 980px) {
  footer .footer-item {
    text-align: left;
    margin-bottom: 30px;
  }
}

footer .footer-item h5 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 20px;
}

@media screen and (max-width: 980px) {
  footer .footer-item h5 {
    font-size: 16px;
  }
}

footer .footer-item li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

footer .footer-item li img {
  position: absolute;
  left: 0;
  top: -2px;
}

@media screen and (max-width: 980px) {
  footer .footer-item li {
    font-size: 14px;
    display: block;
    max-width: 100%;
    margin: 6px auto 6px 0;
  }
}

footer .footer-item li.contato {
  padding-left: 30px;
  margin-bottom: 20px;
}

footer .footer-item li.contato i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  width: 22px;
}

footer .footer-item li:not(.contato):before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  width: 5px;
  height: 8px;
  background: url(/imagens/home/chevron-right-footer.png) no-repeat center;
}

footer .footer-item li a {
  color: #fff;
  padding-left: 0;
}

#tidea {
  position: absolute;
  right: 15px;
  top: -10px;
}

@media screen and (max-width: 980px) {
  #tidea {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 15px;
  }
}

#tidea img {
  max-height: 30px;
}

#app {
  padding-top: 96px;
}

#banner {
  max-width: 100%;
  position: relative;
  margin-bottom: 40px;
  border-bottom: 4px solid #BF0101;
}

#banner::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #99CEFF;
  z-index: 2;
}

#banner::before {
  content: ' ';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #3598FA;
  z-index: 2;
}

#banner .slick-next,
#banner .slick-prev {
  width: 30px !important;
  height: 50px !important;
  opacity: 0.7;
}

#banner .slick-next::before,
#banner .slick-prev::before {
  width: 30px !important;
  height: 50px !important;
}

#banner .box-info {
  position: absolute;
  right: 9vw;
  top: 20%;
  background: rgba(2, 54, 94, 0.3);
  padding: 40px 30px;
  max-width: 610px;
}

@media screen and (max-width: 980px) {
  #banner .box-info {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 15px;
    text-align: center;
  }
}

#banner .box-info img {
  max-height: 80px;
}

@media screen and (max-width: 980px) {
  #banner .box-info img {
    max-height: 35px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

#banner .box-info h3 {
  font-size: 38px;
  font-style: normal;
  line-height: 45px;
  color: #ffffff;
  font-weight: 800;
  margin-top: 15px;
}

@media screen and (max-width: 980px) {
  #banner .box-info h3 {
    font-size: 30px;
    text-align: center;
  }
}

#banner .box-info h2 {
  height: 1px;
  margin: 0;
  visibility: hidden;
}

#banner .box-info span {
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  font-style: normal;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: left;
  color: #fff;
  display: block;
}

@media screen and (max-width: 980px) {
  #banner .box-info span {
    font-size: 16px;
    line-height: 21px;
    text-align: center;
  }
}

#banner .slick-dots {
  bottom: 15px;
}

@media screen and (max-width: 980px) {
  #banner .slick-dots {
    bottom: -5px;
  }
}

#banner .slick-dots li {
  width: 10px;
  height: 10px;
}

#banner .slick-dots li button::before {
  width: 10px;
  height: 10px;
  font-size: 8px;
}

#searchSidebar input {
  border: none;
  border-bottom: 2px solid #ced4da;
  border-bottom-left-radius: 0;
  margin-right: 5px;
  transition: all .2s linear;
}

#searchSidebar input:active,
#searchSidebar input:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid #146DB6;
}

#searchSidebar .btn {
  background: #59A661;
  color: #FFF;
  border-color: #59A661;
  border-radius: 8px;
}

.addCart {
  padding: 15px 0;
}

@media screen and (max-width: 980px) {
  .addCart {
    padding: 5px 0;
  }
}

.textoIntroCatg {
  font-size: 14px;
  text-align: justify;
  font-weight: bold;
}

.bxProduct {
  position: relative;
  margin-bottom: 20px;
}

.bxProduct .bx-title {
  position: absolute;
  left: 16px;
  bottom: 1px;
  background: #FFF;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  color: #222222;
  padding: 15px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 5px;
  text-decoration: none;
}

@media screen and (max-width: 980px) {
  .bxProduct .bx-title {
    min-height: 72px;
  }
}

.bxProduct .title {
  display: block;
}

.bxProduct .subtitle {
  display: block;
  color: #A0A0A0;
}

.bxProduct .info-promo {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  padding: 5px 20px;
  background: #02A152;
  color: #FFF;
  font-size: 12px;
  border-bottom-left-radius: 7px;
}

.bxProduct figure {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.bxProduct figure .overlayOpacity {
  opacity: 0;
  transition: all linear 0.3s;
  -moz-transition: all linear .3s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 54, 94, 0.3);
  color: #FFF;
  text-decoration: none;
}

.bxProduct figure .overlayOpacity .arrow-product {
  width: 220px;
  height: 60px;
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: all linear 0.2s;
  -moz-transition: all linear .2s;
  background-size: contain;
}

.bxProduct figure .overlayOpacity > .container-fluid,
.bxProduct figure .overlayOpacity > .container-fluid > .row {
  height: 100%;
}

.bxProduct figure .overlayOpacity .arrow-brand {
  display: block;
}

.bxProduct figure:hover .overlayOpacity {
  opacity: 1;
}

.bxProduct figure:hover .overlayOpacity .arrow-product {
  opacity: 1;
  top: 0;
}

#quandoviajar {
  background: url(/imagens/home/quandoviajar.jpg) no-repeat top left #5D9F62;
  background-size: auto 101%;
  color: #18191F;
  padding: 10vh 2rem;
}

#quandoviajar h4 {
  font-weight: bold;
  font-size: calc(.5vw + 22px);
}

#quandoviajar p {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
}

.bxCalendar {
  background: url("/imagens/home/calendar.png") no-repeat #146DB6;
  background-position: 30px center;
  color: #FFF;
  padding: 30px 5px 30px 100px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.bxCalendar a {
  color: #FFF;
}

#sld-depo .slick-prev::before,
#sld-depo .slick-next::before,
.row-depoimentos .slick-prev::before,
.row-depoimentos .slick-next::before {
  color: #1a7fcb;
}

#sld-depo .texto,
.row-depoimentos .texto {
  padding: 35px 45px 0;
  position: relative;
  font-style: italic;
}

#sld-depo .texto::before,
.row-depoimentos .texto::before {
  content: ' ';
  position: absolute;
  left: 10px;
  top: 15px;
  width: 24px;
  height: 21px;
  background: url("/imagens/home/aspas.png") no-repeat top left;
}

#featured {
  background: url("/imagens/home/lateral-fundo.jpg") no-repeat center left #FFF;
  background-size: contain;
}

#featured .qualidades img {
  height: 94px;
}

#featured .qualidades span {
  margin-top: 10px;
  display: block;
  font-weight: 500;
}

#cta {
  position: relative;
  background: url("/imagens/home/fundo-cta.png") no-repeat center;
  color: #FFF;
  padding: 5% 50px;
  background-size: cover;
  border-radius: 20px;
}

#cta a:not(.btn) {
  color: #FFF;
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
  text-align: center;
}

#servicos a {
  font-size: 1.3rem;
}

#featured-brands figure {
  position: relative;
}

#featured-brands figure .overlayOpacity {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  text-decoration: none;
}

#featured-brands figure .overlayOpacity > .container-fluid,
#featured-brands figure .overlayOpacity > .container-fluid > .row {
  height: 100%;
}

#featured-brands figure .overlayOpacity .arrow-brand {
  display: block;
}

#featured-brands .brand-name span {
  color: #FFF;
  font-size: 24px;
  padding: 25px 40px;
  margin-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  text-shadow: 1px 2px 8px #000;
}

@media screen and (max-width: 980px) {
  #featured-brands .brand-name span {
    font-size: 14px;
    padding: 15px 20px;
  }
}

#institucional h4 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 26px;
  font-weight: normal;
}

@media screen and (max-width: 980px) {
  #institucional h4 {
    font-size: 16px;
    font-weight: bold;
  }
}

@media screen and (max-width: 980px) {
  #institucional .explanation {
    font-size: 14px;
  }
}

.bg-txt {
  background-color: #F2F2F2 !important;
}

.bg-txt .txt {
  font-family: "Tenor Sans", sans-serif;
  font-size: 14px;
  color: #666;
}

.bg-txt .txt p {
  margin-bottom: 0 !important;
}

.bg-txt .txt * {
  font-size: 90%;
}

.sidebarFiltros {
  padding: 0 15px 0 30px;
}

@media screen and (max-width: 980px) {
  .sidebarFiltros {
    padding: 0px 15px 0 15px;
  }
}

.sidebarFiltros .tituloFiltro {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 20px;
  font-weight: normal;
  color: #222222;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  margin-bottom: 10px;
  display: block;
}

.sidebarFiltros .tituloFiltro:not(:first-child) {
  margin-top: 30px;
}

.sidebarFiltros .itemFiltro {
  border-bottom: 1px solid #EEEEEE;
  font-size: 14px;
  list-style: none;
}

.sidebarFiltros .itemFiltro a {
  color: #666666;
  display: block;
  text-decoration: none;
  padding: 10px 0;
}

.sidebarFiltros .itemFiltro a.active {
  background-color: #222222;
  border-color: #222222;
  padding-left: 10px;
  color: #FFF;
}

.sidebarFiltros .itemFiltro img {
  max-height: 65px;
}

.sidebarFiltros .itemFiltro .name {
  max-width: 65%;
  display: inline-block;
  vertical-align: middle;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 10px;
}

.box-pagination {
  text-align: center;
  margin: 30px auto;
}

.box-pagination .pagination {
  font-size: 16px;
  display: inline-flex;
}

.box-pagination .pagination .page-link {
  color: #666666;
  padding: 17px 15px;
}

.box-pagination .pagination .page-item.active .page-link {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
}

.precodet {
  font-size: 20px;
  font-weight: bold;
  color: #1a7fcb;
}

.txtDetProd {
  color: #333;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.5px;
}

.txtDetProd h1,
.txtDetProd h2,
.txtDetProd h3,
.txtDetProd h4,
.txtDetProd h5,
.txtDetProd h6 {
  color: #59A661;
  border-bottom: 1px solid;
  font-size: 24px;
}

.contatoPage {
  background: #589BF61C;
  padding-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0px 1px 5px #0000003d;
}

.contatoPage .contato-item h5 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 20px;
}

.contatoPage .contato-item li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.contatoPage .contato-item li.contato {
  padding-left: 35px;
  margin-bottom: 20px;
}

.contatoPage .contato-item li.contato i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  width: 22px;
}

.contatoPage .contato-item li:not(.contato):before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #666;
  width: 5px;
  height: 8px;
  background: url(/imagens/home/chevron-right-footer.png) no-repeat center;
}

.contatoPage .contato-item li a {
  color: #666;
}

.containerFormPadrao {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 6vw;
  background: #f7f7f7;
  border-radius: 10px;
}

.form-control {
  height: calc(1.5em + .75rem + 8px);
}

.input-group .has-float-label {
  width: 91%;
}

@media screen and (max-width: 980px) {
  .input-group .has-float-label {
    width: 87%;
    max-width: 65vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.dividerComLinha {
  margin-top: 1rem;
  padding-top: 1rem;
  border: 0;
  border-top: 1px solid #e1e1e1;
}

@media screen and (max-width: 980px) {
  .media-grid .media-list-item {
    min-width: 50% !important;
  }
}

.link-rede {
  display: inline-block;
}

.demo-gallery .outras_imgs {
  max-height: 90px;
  border-radius: 5px;
}

.demo-gallery a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  display: block;
  float: left;
  margin: 0 5px 12px 0;
  width: auto;
  line-height: 0;
}

.demo-gallery a.demo-gallery__img--main {
  width: 100%;
  height: auto;
}

.demo-gallery a.demo-gallery__img--main img {
  border-radius: 5px;
  max-height: 610px;
}

