@import url(https://fonts.googleapis.com/css?family=Barlow|Roboto&display=swap);@import url(https://fonts.googleapis.com/css?family=Poppins|Raleway&display=swap);/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

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

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

body,
html {
  font-family: "Arial";
  background-color: #fff6e3;
}

*:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

*:hover {
  text-decoration: none !important;
}

ul {
  font-size: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.clearfix {
  clear: both;
}

p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 100;
}

p strong {
  font-weight: 700;
}

p big {
  font-size: 19.2px;
  /*23px*/
}

p small {
  font-size: 19.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Trebuchet MS";
  color: #fff;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 27.2px;
  /*30px*/
  line-height: 32px;
}

h2 {
  font-size: 24px;
  line-height: 33.6px;
  margin-bottom: 10px;
}

body {
  padding: 0;
  background-color: #fff;
}

main {
  padding-top: 0 !important;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
}

header nav {
  padding: 0 !important;
  z-index: 99;
  width: 100%;
}

header nav > .container {
  padding: 0;
}

header nav .top {
  padding: 10px 0 20px;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
}

header nav a {
  color: #fff;
  font-size: 0.818em;
  padding: 0 5px;
}

header nav a:not(:first-child) {
  border-left: 1px solid #fff;
}

header nav a:hover {
  color: #fff;
}

header nav .bottom {
  background-color: transparent;
  width: 100%;
  padding: 10px 0;
}

header nav .bottom img {
  height: 100px;
  width: auto;
}

header nav .bottom a {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
}

header nav .bottom .menu {
  padding: 10px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .bottom .menu a {
  color: #000;
  padding: 8px;
  margin: 0 2px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-size: 16px;
  font-weight: bold;
}

header nav .bottom .menu a.active {
  background-color: #98191B8A;
  border-bottom: 2px solid #98191B;
}

header nav .bottom .menu a:hover {
  background-color: #98191B8A;
  border-bottom: 2px solid #98191B;
}

@media screen and (max-width: 900px) {
  header nav .top div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  header nav .bottom {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  header nav .bottom button {
    background-color: transparent;
  }

  header nav .bottom .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    background-color: #fff;
    height: 100vh;
    width: 70vw;
    top: 0;
    left: -100vw;
    z-index: 999 !important;
    -webkit-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
  }

  header nav .bottom .menu.active {
    left: 3.5vw;
  }

  header nav .bottom .menu img {
    width: 90%;
    margin: 10px auto;
  }

  header nav .bottom .menu a {
    font-size: 1.125em;
  }

  header .overlay {
    width: 100vw;
    height: 100vh;
    z-index: 98;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
  }

  header .overlay.active {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

footer {
  padding: 20px;
  background-color: #1a1a1a;
  color: #fff;
}

footer img {
  width: 210px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer p {
  color: #5F5F5F;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

footer .social a {
  padding: 10px 0;
  padding-left: 40px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: initial;
}

footer .social a img {
  width: 30px;
}

footer .copyright {
  border-top: 1px solid #E8E8E8;
  padding: 10px 0;
}

footer .copyright span {
  font-size: 0.750em;
}

footer .whats-fixed {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 24px;
  bottom: 90px;
}

footer .whats-fixed img {
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 900px) {
  footer img {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }

  footer .links {
    width: 50% !important;
    max-width: 50% !important;
  }

  footer .social {
    margin: 10px 0;
  }

  footer .social p {
    margin: 10px 0 0;
  }

  footer .copyright img {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    margin-left: auto;
  }
}

.gen__banner {
  height: 30rem;
  position: relative;
}

.gen__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.gen__banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.gen__banner .title {
  overflow: hidden;
  position: relative;
  top: -15rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.gen__banner .title h1 {
  font-family: 'Barlow';
  margin: 1rem auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 2.5em;
  color: #981820;
  font-weight: bold;
}

.gen__banner .title p {
  font-family: 'Roboto';
  font-size: 1.125em;
  white-space: normal;
  max-width: 90vw;
  color: #981820;
  font-weight: bold;
}

#myCarousel {
  margin-bottom: 10px;
}

#myCarousel .carousel-inner {
  height: 37rem;
}

#myCarousel .carousel-inner .carousel-item {
  height: 100%;
}

#myCarousel .carousel-inner .carousel-item img {
  height: 100%;
}

#myCarousel .carousel-inner .carousel-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

#myCarousel .carousel-inner .carousel-item .pseudo-after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

#myCarousel .carousel-inner .carousel-item .carousel-caption {
  bottom: 9rem;
}

#myCarousel .carousel-inner .carousel-item .carousel-caption h1 {
  font-size: 2.500em;
  font-family: 'Barlow';
  text-transform: none;
  line-height: initial;
  color: #981820;
}

#myCarousel .carousel-inner .carousel-item .carousel-caption .title {
  font-size: 3.125em;
  font-family: 'Barlow';
  font-weight: bold;
  margin: 0;
  line-height: initial;
  color: #981820;
}

#myCarousel .carousel-inner .carousel-item .carousel-caption .sub {
  font-size: 1.125em;
  font-family: 'Barlow';
}

#myCarousel .carousel-inner .carousel-item .carousel-caption .btn-white {
  background-color: #fff;
  color: #98191B;
}

#myCarousel .carousel-inner .carousel-item .carousel-caption .btn-white:hover {
  opacity: 0.8;
}

#myCarousel .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  -webkit-transition: 0.5s width ease-out;
  transition: 0.5s width ease-out;
}

#myCarousel .carousel-indicators li.active {
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  width: 20px;
}

#myCarousel .carousel-control-prev-icon {
  background-color: #981820;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 8px;
  background-size: 25px;
}

#myCarousel .carousel-control-next-icon {
  background-color: #981820;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 8px;
  background-size: 25px;
}

@media screen and (max-width: 600px) {
  #myCarousel .carousel-inner .carousel-item .carousel-caption {
    bottom: 1rem;
  }

  #myCarousel .carousel-inner .carousel-item .carousel-caption .title {
    font-size: 2.5em;
  }

  #myCarousel .carousel-inner .carousel-item .carousel-caption h1 {
    font-size: 1.75em;
  }
}

/* ---------------------------------------------- /*
 * Mouse animate icon
/* ---------------------------------------------- */

.mouse-icon {
  border: 2px solid #000;
  border-radius: 16px;
  height: 40px;
  width: 24px;
  display: block;
  z-index: 10;
  opacity: 0.7;
  margin-bottom: 2.5rem;
}

.mouse-icon .wheel {
  -webkit-animation-name: drop;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  -webkit-animation-name: drop;
  animation-name: drop;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.mouse-icon .wheel {
  position: relative;
  border-radius: 10px;
  background: #000;
  width: 2px;
  height: 6px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
}

@-webkit-keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }

  30% {
    top: 10px;
    opacity: 1;
  }

  100% {
    top: 25px;
    opacity: 0;
  }
}

@keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }

  30% {
    top: 10px;
    opacity: 1;
  }

  100% {
    top: 25px;
    opacity: 0;
  }
}

@media screen and (max-width: 900px) {
  .mouse-icon {
    opacity: 0;
  }
}

.about {
  overflow: hidden;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 2.5rem;
}

.about h1 {
  color: #000;
  text-transform: none;
  text-align: center;
  margin: 0 0 2.5rem;
  font-family: 'Barlow';
  font-size: 2.500em;
}

.about p {
  color: #000;
  font-size: 20px;
  text-align: center;
  font-family: 'Roboto';
  width: 60%;
  margin: 0 auto 2.5rem;
}

.about p span {
  color: #98191B;
  font-weight: bold;
}

.about .card {
  margin: 3.625rem 0 0;
  padding: 0.938rem;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border: none;
}

.about .card img {
  width: 100%;
  height: auto;
  margin: -5.625rem auto 0;
}

.about .card h4 {
  color: #495057;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.250em;
  text-align: center;
  margin: 0.625rem 0;
}

.about .card p {
  width: 100%;
  font-size: 0.875em;
  color: #8E8995;
}

@media screen and (min-width: 900px) {
  .about .col-md-3:nth-child(2) {
    width: 40%;
    max-width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }

  .about .col-md-3:nth-child(2) .card img {
    width: 57%;
  }
}

@media screen and (max-width: 900px) {
  .about p {
    width: 100%;
  }

  .about .card {
    margin-bottom: 1.25rem;
    margin-top: 6rem;
  }

  .about .card img {
    width: 70%;
  }
}

.gen__title {
  color: #000;
  font-family: 'Barlow';
  margin: 5rem 0;
  text-align: center;
  font-size: 2.500em;
  line-height: initial;
  position: relative;
}

.gen__title:after {
  content: '';
  position: absolute;
  width: 400px;
  max-width: 80%;
  height: 2px;
  background-color: #98191B;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .gen__title {
    margin: 5rem 0 !important;
  }
}

.maintenance {
  padding: 2.5rem 0;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}

.maintenance img {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 8em;
}

.maintenance img.icon {
  margin-bottom: 4rem;
}

.maintenance__slider .flickity-prev-next-button.previous {
  left: -35px;
}

.maintenance__slider .flickity-prev-next-button.next {
  right: -35px;
}

.maintenance .service img {
  width: 100%;
  border: 1px solid #98191B;
  height: 176px;
  -o-object-fit: contain;
     object-fit: contain;
}

.maintenance .service .sub {
  width: 100%;
  border: 1px solid #98191B;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.maintenance .service .sub p {
  color: #8E8995;
  margin: auto;
  text-align: center;
  font-family: 'Roboto';
}

.maintenance .service .sub.active {
  background-color: #98191B;
}

.maintenance .service .sub.active p {
  color: #fff;
}

@media screen and (max-width: 900px) {
  .maintenance .col-md-3 {
    margin: 15px auto;
  }

  .maintenance .flickity-button {
    display: none;
  }
}

.brands {
  padding-bottom: 18em;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.brands.marcas {
  padding-bottom: 22em;
  background-size: 110%;
}

.brands .gen__title:after {
  width: 300px;
}

.brands img {
  max-width: calc(25% - 60px);
  margin: 15px;
  max-height: 150px;
}

.brands .container .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brands .container .row > img {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px auto;
}

.brands .flickity-button {
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px #0000001C;
          box-shadow: 0px 3px 6px #0000001C;
  width: 30px;
  height: 30px;
}

.brands .flickity-button:hover {
  opacity: 0.8;
}

.brands .flickity-button-icon {
  fill: #DA251D;
}

.brands .flickity-prev-next-button.previous {
  left: -40px;
}

.brands .flickity-prev-next-button.next {
  right: -40px;
}

.brands p {
  font-size: 1.125em;
  color: #000;
  width: 40%;
  text-align: center;
  margin: 3rem auto;
  font-family: 'Raleway';
}

.brands .btn-red {
  background-color: #98191B;
  color: #fff;
  padding: 20px 30px;
  margin: 0 auto 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: 'Raleway';
  border-radius: 0;
}

.brands .btn-red:hover {
  opacity: 0.8;
}

.brands .flickity-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 900px) {
  .brands img {
    max-width: 85%;
    max-height: auto;
    width: 85%;
    margin: 15px auto;
  }

  .brands p {
    width: 100%;
  }

  .brands .flickity-button {
    display: none;
  }
}

.business {
  margin: 3rem auto 0;
  padding-bottom: 18em;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.business img {
  width: 100%;
  border-radius: 50%;
}

.business p {
  color: #000;
  font-size: 0.875em;
  font-family: 'Roboto';
}

.business .last {
  margin: 3rem auto;
}

.business .last p {
  text-align: right;
}

.business .certified {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 6rem auto;
}

.business .certified img {
  width: 20%;
  border-radius: 0;
}

@media screen and (max-width: 900px) {
  .business img {
    width: 70%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .business .first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .business .last p {
    text-align: left;
  }

  .business .certified img {
    width: 100%;
  }
}

.services {
  padding-bottom: 18em;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.services h1 {
  color: #000;
  font-family: 'Barlow';
  font-size: 2.250em;
  text-align: center;
  line-height: initial;
}

.services h1.title {
  margin: 4rem auto 2rem;
}

.services .col-md-5 {
  margin: 3rem auto;
  cursor: pointer;
}

.services .col-md-5 img {
  width: 100%;
}

.services p {
  color: #8E8995;
  font-size: 1.250em;
  font-family: 'Roboto';
  text-align: center;
  margin: 0 auto;
}

.services .btn-red {
  background-color: #98191B;
  color: #fff;
  padding: .5rem 3rem;
  margin: 1rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 0;
}

.services .btn-red:hover {
  opacity: 0.8;
}

.services .wrapper {
  display: block;
}

.services .wrapper #sidebar_right {
  min-width: 50%;
  max-width: 50%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  margin-left: calc(100vw + 20px);
  background: #fff;
  padding: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: auto;
}

.services .wrapper #sidebar_right img {
  width: 100%;
  max-width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.services .wrapper #sidebar_right.active {
  margin-left: calc(100vw - 50%);
}

@media screen and (max-width: 900px) {
  .services .wrapper #sidebar_right.active {
    margin-left: 0;
  }
}

.services .wrapper #sidebar_right h1 {
  font-size: 27.2px;
  margin-top: 20px;
}

.services .wrapper #sidebar_right p {
  font-size: .900em;
}

@media screen and (max-width: 900px) {
  .services .wrapper #sidebar_right {
    min-width: 100vw;
    max-width: 100vw;
  }
}

.services .overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 0;
  left: 0;
}

.services .overlay.active {
  display: block;
  opacity: 1;
}

.services #close_right {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #98191B;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.services #close_right:hover {
  opacity: 0.8;
}

@media screen and (max-width: 900px) {
  .services #close_right {
    left: auto;
    right: 0;
  }
}

.login {
  width: 100vw;
  height: 99vh;
  background-color: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.login .card {
  padding: 20px;
  border-radius: 7px;
  -webkit-box-shadow: 0px 3px 6px #00000042;
          box-shadow: 0px 3px 6px #00000042;
}

.login .card img {
  width: 70%;
  margin: 0 auto;
}

.login .card p {
  font-family: 'Barlow';
  text-align: center;
}

.login .card p.title {
  font-size: 18px;
  color: #000;
  margin: 15px 0 0;
}

.login .card p.sub {
  font-size: 16px;
  color: #8E8995;
}

.login .card form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.login .card form label {
  color: #000;
  margin: 5px 0;
}

.login .card form input {
  width: 100%;
  border: 1px solid #70707085;
  border-radius: 3px;
  padding: 4px 10px;
}

.login .card form .btn-red {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 10px 0 10px auto;
  background-color: #98191B;
  border-radius: 3px;
  color: #fff;
}

.login .card form .btn-red:hover {
  opacity: 0.8;
}

.contato {
  margin: 3rem auto 0;
  padding-bottom: 18em;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.contato iframe {
  border-radius: 24px;
  -webkit-box-shadow: 0px 3px 6px #00000045;
          box-shadow: 0px 3px 6px #00000045;
  width: 100%;
}

.contato a {
  color: #8E8995;
  font-family: 'Roboto';
  padding: 10px 0;
  padding-left: 40px;
  margin: 5px 0;
  background-position: left;
  background-repeat: no-repeat;
  background-size: initial;
}

.contato input {
  width: 100%;
  margin: 15px 0;
  padding: 5px 15px;
}

.contato textarea {
  width: 100%;
  margin: 15px 0;
  padding: 5px 15px;
}

.contato .btn-red {
  background-color: #98191B;
  color: #fff;
  padding: .5rem 3rem;
  margin: 1rem auto 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 0;
}

.contato .btn-red:hover {
  opacity: 0.8;
}

@media screen and (max-width: 900px) {
  .contato input {
    width: 100%;
    margin: 15px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #999;
  }

  .contato textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 15px auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #999;
  }
}

body {
  overflow-x: hidden;
  display: block;
}

