.fade-in {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.colorize {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}
.colorize:hover {
  animation: 0.3s ease-in fadeInColor forwards;
}

@keyframes fadeInColor {
  0% {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  100% {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    filter: grayscale(0);
  }
}
:root {
  font-size: 16px;
}

* {
  outline: none;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: #e30016;
  color: #fff;
}

::selection {
  background: #e30016;
  color: #fff;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
  border-radius: 0.625rem;
}

::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  opacity: 0.7;
  background-image: linear-gradient(-45deg, #e30016 0, #e30016 100%);
  border-radius: 0.4375rem;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  display: flex;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-scrollbar {
  visibility: hidden;
}

html, body {
  overflow-x: hidden;
  background: #fff;
}

html, body, h1, h3, h4, h5, h6, p, a, ul, li, button, option, .button, address, strong {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}

h2 {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 4.5rem;
  line-height: 4.5rem;
  text-transform: uppercase;
}

h3 {
  text-transform: uppercase;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.swiper-pagination-bullet {
  height: 6px;
  width: 45px;
  background-color: #999999;
  border: 1px solid #999999;
  border-radius: 0;
  margin: 0 6px !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-button-prev, .swiper-button-next {
  height: 2rem;
  width: 2rem;
  background-color: #fff;
}
.swiper-button-prev::after, .swiper-button-next::after {
  color: #000;
  transform: scale(0.75);
}

.fa-facebook-square {
  transform: scale(1.5);
}

.out-home {
  background: url("/img/banner-image.jpeg") no-repeat center;
  background-size: cover;
}

.grid-container, .grid-x {
  height: 100%;
}

#top-bar a, #top-bar p {
  font-size: 0.75rem;
  color: #999999;
  padding: 15px 0;
}
#top-bar a:hover {
  color: #e30016;
}
#top-bar a:hover span {
  color: #4267b2;
}

header {
  position: relative;
  z-index: 1;
  padding: 48px 0;
}
header .logo {
  height: 4.875rem;
}
header .logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-fit: contain;
}
header .menu {
  justify-content: space-around;
}
header .menu a {
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: 0.3s;
  padding: 8px;
}
header .menu a:hover {
  color: #fff;
  border-color: #e30016;
}
header .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: #e30016;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 45px;
}
header .sidenav #closebtn {
  position: absolute;
  top: 0;
  right: 1.25rem;
  font-size: 2rem;
  padding: 0;
  border: none;
}
header .sidenav ul {
  margin: 0;
  list-style: none;
}
header .sidenav li {
  width: 100%;
  margin: 0;
}
header .sidenav a {
  padding: 16px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #8a6f46;
  background-color: #e30016;
}
header .sidenav a:hover, header .sidenav a:focus, header .sidenav a:active {
  color: #8a6f46;
}
header a {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
  text-transform: uppercase;
}
header span {
  color: #fff;
}

#banner {
  height: 40rem;
  margin-top: -174px;
  position: relative;
  z-index: 0;
}
#banner .banner-slider {
  height: 100%;
}
#banner .swiper-pagination {
  bottom: 122px;
}
#banner .swiper-slide {
  background-color: rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(rgba(255, 255, 255, 0), #000);
  background-position: right;
}
#banner .content {
  position: relative;
  z-index: 5;
  padding: 0 48px;
}
#banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  mix-blend-mode: darken;
  position: absolute;
}
#banner h3 {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 3rem;
  color: #fff;
  line-height: 0;
  text-transform: none;
}
#banner h1 {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 7.5rem;
  color: #fff;
}
#banner a {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 2rem;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: 0.3s;
  padding: 8px 0;
}
#banner a:hover {
  border-color: #e30016;
}
#banner h1, #banner a {
  text-transform: uppercase;
}

.qualities {
  margin-top: -6rem;
  position: relative;
  z-index: 2;
}
.qualities .box {
  background-color: #000;
  padding: 72px 16px;
}
.qualities .image {
  height: 4rem;
  width: 4rem;
  margin: 0 auto;
}
.qualities h3 {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 2rem;
  color: #fff;
  margin: 8px 0;
}
.qualities p {
  color: #fff;
}
.qualities img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about .image {
  height: 23.5rem;
}
.about .image-logo {
  height: 19.5rem;
}
.about .content-image {
  height: 43.75rem;
}
.about .content {
  padding-left: 48px;
}
.about p {
  color: #999999;
}
.about a {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 1.5rem;
  color: #e30016;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: 0.3s;
  padding: 8px 0;
}
.about a:hover {
  border-color: #e30016;
}
.about span {
  color: #e30016;
}
.about img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services {
  position: relative;
}
.services .services-slider {
  height: 37rem;
}
.services .swiper-button-prev {
  left: -2px;
}
.services .swiper-button-next {
  right: -2px;
}
.services .swiper-pagination {
  width: 100%;
}
.services .tabs-content img, .services .tabs img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.services .tabs-panel {
  height: 25rem;
}
.services .tabs-title {
  height: 6rem;
  width: 10%;
  margin: 13px;
}
.services .tabs-title a {
  border: none;
  padding: 0;
  display: initial;
}
.services .tabs {
  border: none;
  background: none;
}
.services .tabs-content {
  border: none;
  background: none;
}
.services .box-link {
  display: flex;
}
.services .box-link a {
  height: 100%;
  width: 100%;
  object-fit: cover;
  font-family: "Open Sans", sans-serif;
  color: #000;
  text-align: center;
  background-color: #c4c4c4;
  border: none;
  padding: 10px 0;
}
.services .box-link a:hover {
  color: #fff;
  background-color: #e30016;
}
.services p {
  color: #999999;
  margin-bottom: 32px;
}
.services a {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 1.5rem;
  color: #e30016;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: 0.3s;
  padding: 8px 0;
}
.services a:hover {
  border-color: #e30016;
}
.services span {
  color: #e30016;
}

.newsletter {
  background-color: #000;
}
.newsletter .same-line {
  display: flex;
}
.newsletter [type=email] {
  margin: 0;
}
.newsletter [type=submit] {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 1.5rem;
  color: #e30016;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  padding: 0 1rem;
  margin: 0 3rem;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter [type=submit]:hover {
  border-color: #e30016;
}
.newsletter h2, .newsletter h3 {
  color: #fff;
}
.newsletter span {
  color: #e30016;
}

.testimony {
  position: relative;
}
.testimony .image {
  height: 34.375rem;
}
.testimony .icon {
  height: 5rem;
  width: 5rem;
  position: absolute;
  top: 13rem;
  left: 50%;
  z-index: 1;
  margin-left: -128px;
}
.testimony .content {
  width: 31rem;
  background-color: #fff;
  padding: 72px 72px 16px;
  position: absolute;
  right: 0;
}
.testimony .content p {
  color: #999999;
  font-size: 1.5rem;
  line-height: 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.testimony .name {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 1.3rem;
  color: #000;
}
.testimony .swiper-button-prev {
  left: -2px;
}
.testimony .swiper-button-next {
  right: -2px;
}
.testimony .swiper-pagination {
  width: 100%;
}
.testimony h2, .testimony h3 {
  padding-left: 32px;
}
.testimony span {
  color: #e30016;
}
.testimony img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog .image {
  height: 20rem;
}
.blog .details-notice-image {
  height: 28rem;
}
.blog .same-line {
  display: flex;
}
.blog .social-share-buttons {
  display: flex;
  align-items: center;
}
.blog .social-share-buttons h3 {
  margin-right: 16px;
}
.blog .social-share-buttons a {
  margin-bottom: 8px;
  border: none;
}
.blog .social-share-buttons span {
  color: #fff;
  margin-right: 8px;
}
.blog .facebook {
  padding: 8px;
  margin-right: 4px;
  border-radius: 4px;
  color: #fff;
  background-color: #3b5998;
}
.blog .twitter {
  padding: 8px;
  margin-right: 4px;
  border-radius: 4px;
  color: #fff;
  background-color: #00acee;
}
.blog .linkedin {
  padding: 8px;
  margin-right: 4px;
  border-radius: 4px;
  color: #fff;
  background-color: #0e76a8;
}
.blog h4 {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 2rem;
  margin: 20px 0;
}
.blog p {
  color: #999999;
  margin-bottom: 20px;
}
.blog a {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 1.3rem;
  color: #e30016;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: 0.3s;
  padding: 8px 0;
  text-transform: uppercase;
}
.blog a:hover {
  border-color: #e30016;
}
.blog span {
  color: #e30016;
}
.blog img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-details span {
  color: #e30016;
}
.service-details .button {
  color: white;
  background-color: #e30016;
}
.service-details h3 {
  color: #e30016;
}
.service-details .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.service-details .card-image {
  height: 18rem;
}
.service-details .card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-fit: cover;
}
.service-details .content {
  padding-right: 48px;
}

.contacts .form {
  background-color: #181818;
}
.contacts .same-line {
  display: flex;
}
.contacts [type=email], .contacts [type=tel], .contacts [type=text], .contacts textarea, .contacts select {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  background: none;
  margin-bottom: 16px;
}
.contacts [type=submit] {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  background-color: #e30016;
  border: none;
  border-radius: 0;
  padding: 16px 88px;
  float: right;
  cursor: pointer;
  transition: 0.3s;
}
.contacts [type=submit]:hover {
  color: #e30016;
  background-color: #fff;
}
.contacts select {
  margin-left: 16px;
}
.contacts h2 {
  color: #fff;
}
.contacts span {
  color: #e30016;
}

footer {
  background-color: #000;
}
footer .menu {
  display: block;
}
footer .menu a {
  line-height: initial;
  padding: 0;
}
footer .menu a:hover {
  color: #e30016;
}
footer .button {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  background-color: #e30016;
  padding: 8px 22px;
  margin-top: 16px;
}
footer .button:hover {
  color: #e30016;
  background-color: #fff;
}
footer h2 {
  font-size: 2rem;
  text-transform: capitalize;
  margin-bottom: 16px;
}
footer h2, footer p, footer a, footer .button {
  color: #fff;
}

.gallery .box {
  height: 16rem;
}
.gallery .image {
  height: 10.5rem;
  background-color: #e9e9e9;
  margin-bottom: 32px;
}
.gallery img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testimony-page .image {
  height: 16rem;
}
.testimony-page p {
  color: #999999;
  font-size: 1.5rem;
}

.img-destaque {
  max-height: 400px;
  object-fit: cover;
}

/* Medium only */
@media screen and (min-width: 40rem) and (max-width: 63.9375rem) {
  body {
    overflow: hidden;
  }

  header {
    padding: 32px 0;
  }

  #banner {
    height: 37rem;
    margin-top: -142px;
  }
  #banner .swiper-pagination {
    bottom: 16px;
  }
  #banner h1, #banner h3 {
    line-height: 6rem;
  }

  .qualities {
    margin-top: 16px;
  }
  .qualities .box {
    padding: 64px 16px;
  }

  .about .image {
    height: 11.5rem;
  }
  .about .image-logo {
    height: 23.5rem;
  }
  .about .content-image {
    height: 37rem;
    margin-bottom: 16px;
  }
  .about .content {
    padding: 0;
  }

  .services .tabs-title {
    width: 17%;
    margin: 8px;
  }

  .testimony .image {
    height: 22rem;
  }
  .testimony .icon {
    top: 4rem;
    margin-left: -88px;
  }
  .testimony .content {
    width: 19rem;
    padding: 32px 32px 16px;
    margin-left: -96px;
  }
  .testimony h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
  .testimony p {
    font-size: 1rem;
  }

  .blog .image {
    height: 18rem;
  }

  .contacts iframe {
    height: 40rem;
  }

  .testimony-page .image {
    height: 16rem;
  }
}
/* Small only */
@media screen and (max-width: 39.9375rem) {
  body {
    overflow: hidden;
  }

  header {
    padding: 32px 0;
  }

  #banner {
    height: 35rem;
    margin-top: -142px;
  }
  #banner .swiper-pagination {
    bottom: 16px;
  }
  #banner h1 {
    font-size: 4rem;
  }
  #banner h1, #banner h3 {
    line-height: 3rem;
  }

  .qualities {
    margin-top: 16px;
  }
  .qualities img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .about .image, .about .image-logo {
    height: 12.5rem;
  }
  .about .content-image {
    height: 21rem;
    margin-bottom: 16px;
  }
  .about .content {
    padding: 0;
  }

  .services .tabs-panel {
    height: 16rem;
    padding: 0;
  }
  .services .tabs-title {
    height: 4rem;
    width: 22%;
    margin: 8px 17px;
  }

  .newsletter {
    background-color: #000;
  }
  .newsletter [type=submit] {
    margin: 0 1rem;
  }

  .testimony .image {
    height: 18.75rem;
  }
  .testimony .icon {
    display: none;
  }
  .testimony .content {
    width: auto;
    padding: 0;
    margin-left: 0;
    position: initial;
  }
  .testimony h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 0;
  }
  .testimony h3 {
    padding: 0;
  }
  .testimony p {
    font-size: 1rem;
  }

  .blog .social-share-buttons {
    display: block;
  }
  .blog .details-notice-image {
    height: 21rem;
  }
  .blog h2 {
    margin-top: 16px;
  }

  .contacts select {
    margin-left: 0;
  }
  .contacts iframe {
    height: 22.5rem;
  }
  .contacts [type=submit] {
    padding: 16px 48px;
  }

  footer .button {
    padding: 8px 12px;
  }

  .contacts .same-line {
    display: block;
  }
}

/*# sourceMappingURL=app.css.map */
