@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Varela+Round&display=swap');
@-webkit-keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translatex(-100px);
    -moz-transform: translatex(-100px);
    -o-transform: translatex(-100px);
    transform: translatex(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translatex(100px);
    -moz-transform: translatex(100px);
    -o-transform: translatex(100px);
    transform: translatex(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(100px);
    -moz-transform: translatex(100px);
    -o-transform: translatex(100px);
    transform: translatex(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(-100px);
    -moz-transform: translatex(-100px);
    -o-transform: translatex(-100px);
    transform: translatex(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
html {
  margin: 0 !important;
}
@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Varela Round", sans-serif;
  font-weight: 300;
  color: #333333;
}
body * {
  outline: none !important;
}

main.home .container-full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
main.home .container-full .row {
  height: 100%;
  margin: 0;
}

@media (max-width: 998px) {
  main.home .container-full {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .row {
    height: auto;
  }
}
a {
  display: block;
}
img {
  max-width: 100%;
}

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

.desk {
  display: block !important;
}

.mobile {
  display: none !important;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: inherit;
  color: #003cff;
}

h2.title {
  position: absolute;
  top: 50px;
  left: 50px;
  margin-bottom: 0;
}
h2.title.azul {
  color: #003cff;
}
h2.title.branco {
  color: #ffffff;
}
h2.title span {
  position: relative;
  display: flex;
  align-items: center;
  height: 85px;
}
h2.title span svg {
    position: absolute;
    left: -40px;
    top: -58px;
    z-index: 0;
}
h2.title span p {
    position: relative;
    z-index: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
    color: #fff;
}
.slick-arrow {
  width: 25px;
  height: 50px;
}
.slick-arrow:before {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #000;
  font-size: 50px;
}
.slick-arrow.slick-prev {
  z-index: 99;
}
.slick-arrow.slick-prev:before {
  content: "‹";
}
.slick-arrow.slick-next {
  z-index: 99;
}
.slick-arrow.slick-next:before {
  content: "›";
}

.dots {
  z-index: 999;
}
.dots.dark li a:before {
	background-color: rgb(255 255 255 / 70%) !important;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 40%);
}
.dots.dots-right {
  right: 30px;
}

.text {
	height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    font-size: 37px;
    width: 80%;
    margin: 0 auto;
    line-height: 1.2;
    text-align: center;
	color: #fff;
}
.text p {
  margin-bottom: 0;
  color: #ffffff;
}

.fadeInUp {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -o-animation-duration: 1s;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -o-animation-duration: 1s;
}

@media only screen and (max-width: 768px) {
  .desk {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }
}
header {
  background: #171717;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  z-index: 999999;
  position: relative;
}
header nav {
  transition: all 0.3s ease-in-out;
  padding: 0 !important;
  width: 100%;
}
header nav .navbar-toggler {
  position: relative;
  z-index: 9;
}
header nav .navbar-toggler img {
  max-width: 100%;
}
header nav .navbar-brand {
  margin-right: 0;
  position: relative;
  padding: 15px 0;
}
header nav .navbar-brand img {
  max-height: 100px;
  z-index: 9;
  position: relative;
}
header nav .navbar-brand:before {
    content: "";
    background: transparent;
    display: block;
    position: absolute;
    right: -130px;
    top: 0;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 130px solid transparent;
    border-bottom: 130px solid #e8e8e8;
}
header nav .navbar-brand:after {
    content: '';
    background: #e8e8e8;
    position: absolute;
    top: 0;
    right: 0;
    width: 5000px;
    height: 100%;
}
header nav #navbarSupportedContent {
  flex-direction: column;
  align-items: flex-end;
  padding: 25px 0 15px 0;
}
header nav #navbarSupportedContent ul li a {
  padding: 0 20px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
header nav #navbarSupportedContent ul.navbar-nav {
  width: 100%;
  justify-content: flex-end;
  padding: 0 20px;
}
header nav #navbarSupportedContent ul.navbar-nav li a {
  position: relative;
  font-size: 24px;
  font-weight: 700;
}
header nav #navbarSupportedContent ul.navbar-nav li a:hover {
    color: #fff;
}
header nav #navbarSupportedContent ul.navbar-nav li a:hover:after {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
header nav #navbarSupportedContent ul.navbar-nav li a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: relative;
  bottom: -5px;
  left: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
header nav #navbarSupportedContent ul.contact {
  display: flex;
  align-items: center;
}
header nav #navbarSupportedContent ul.contact li {
  display: flex;
  align-items: center;
  padding-right: 25px;
}
header nav #navbarSupportedContent ul.contact li p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
}
header nav #navbarSupportedContent ul.contact li img {
  max-width: 30px;
  margin-right: 10px;
}
header nav #navbarSupportedContent ul.contact li:last-child {
  padding-right: 0;
}
header nav #navbarSupportedContent ul.contact li a {
  padding: 0;
  display: initial;
}
header nav .navbar-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .navbar-media li {
  padding: 0 5px;
}
header nav .navbar-media li a {
  background: #003cff;
  border: 1px solid #003cff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
header nav .navbar-media li a:hover {
  background: #ffffff;
  color: #003cff;
}
header {
    max-height: 130px;
    overflow: hidden;
    transition: .5s;
}
header.unfixed {
    max-height: 0;
}
.banner-section {
  position: relative;
  overflow: hidden;
}
.banner-section > img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}
.banner-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logos {
  position: absolute;
  bottom: 50px;
  left: 10%;
}
.logos ul {
  display: flex;
  justify-content: space-between;
}
.logos ul.azul li:after {
  background: url(../images/titulo-azul.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.logos ul.verde li:after {
  background: url(../images/titulo-verde.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.logos ul li {
  padding: 0 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.logos ul li img {
  max-height: 100px;
}
.logos ul li:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.home #sobre .container-full ul.cards {
  height: 85%;
  margin-top: 5%;
}
.home #sobre .container-full ul.cards li {
  width: 33%;
}

ul.cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 80%;
}
ul.cards li {
  width: 40%;
  padding: 20px;
  height: 50%;
}
ul.cards li .flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  margin: 0 auto;
}
ul.cards li .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
ul.cards li .flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
ul.cards li .flip-card .flip-card-inner .flip-card-front,
ul.cards li .flip-card .flip-card-inner .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
ul.cards li .flip-card .flip-card-inner .flip-card-front h2,
ul.cards li .flip-card .flip-card-inner .flip-card-back h2 {
  margin-top: 10px;
  font-size: 26px;
}
ul.cards li .flip-card .flip-card-inner .flip-card-front p,
ul.cards li .flip-card .flip-card-inner .flip-card-back p {
  font-size: 20px;
  line-height: 1.2;
}
ul.cards li .flip-card .flip-card-inner .flip-card-front {
  background-color: #fff;
  color: #0d1c89;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}
ul.cards li .flip-card .flip-card-inner .flip-card-back {
  background-color: #fff;
  color: #171717;
  transform: rotateY(180deg);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#servicos.banner-section .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#servicos.banner-section ul.cards li .flip-card {
  transition: 0.3s;
}

#clientes.banner-section > img {
  object-position: right bottom;
}
#clientes.banner-section .logos-clientes {
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
#clientes.banner-section .logos-clientes img,
#clientes.banner-section .logos-clientes video {
  transition: 0.3s;
}
#clientes.banner-section .logos-clientes img:hover,
#clientes.banner-section .logos-clientes video:hover {
  transform: scale(1.05);
}
#clientes.banner-section .logos-clientes li {
  padding: 30px;
  width: 100% !important;
}
#clientes.banner-section .logos-clientes li img {
  max-height: 60px;
  max-width: 260px;
}
#diferencial.banner-section ul.diferenciais li {
  width: 100%;
  padding: 30px 50px;
  display: flex;
  align-items: center;
}
form input.wpcf7-form-control.wpcf7-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 0 20px;
    border: none;
    color: #000;
}
#diferencial.banner-section ul.diferenciais li img {
  margin-right: 20px;
}
ul.diferenciais {
    margin-left: 50px;
}
#diferencial.banner-section ul.diferenciais li p {
  color: #171717;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 12px;
}
#diferencial.banner-section .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#missao.banner-section .logos {
  right: 100px;
  left: inherit;
  bottom: 100px;
}
#missao.banner-section .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#missao.banner-section ul.thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 100px;
}
#missao.banner-section ul.thumbs li {
  background: #fff;
  border-radius: 20px;
  padding: 75px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  box-shadow: 3px 3px 30px rgba(0, 31, 130, 0.2);
  width: calc(33% - 35px);
  margin: 20px;
  text-align: center;
  color: #003cff;
  transition: 0.3s;
}
#missao.banner-section ul.thumbs li:hover {
  transform: scale(1.1);
}
#missao.banner-section ul.thumbs li h2 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
#missao.banner-section ul.thumbs li p {
  font-size: 20px;
  margin-bottom: 0;
}

.video-home:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: .5;
}

#clientes .video-home:after {
	content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(white, rgb(255 255 255 / 60%), rgb(255 255 255 / 0.1));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 1;
}

.video-home {
    position: relative;
}

#clientes.banner-section .logos-clientes li {
    display: flex;
    flex-wrap: wrap;
    column-gap: 150px;
    row-gap: 50px;
}

#clientes.banner-section .logos-clientes li h2 {
    width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
	font-size: 26px;
}

#clientes.banner-section .logos-clientes li > img {
    width: 345px;
    height: 465px;
    max-width: none;
    max-height: none;
    border-radius: 35px;
    object-fit: cover;
}

#clientes.banner-section .logos-clientes li > video {
    width: 345px;
    height: 465px;
    max-height: none;
    max-width: none;
    border-radius: 35px;
    object-fit: cover;
}

#clientes.banner-section .logos-clientes li.full > img {
    width: 100%;
}

.slick-arrow:before {
    color: #fff;
}

#diferencial form label {
    color: #fff;
    font-weight: 400;
	width: 100%;
}

#diferencial form {
    background: #171717;
    border-radius: 35px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#diferencial form p {
    display: flex;
    justify-content: center;
    width: 85%;
}

#diferencial form p:last-of-type {
    margin-bottom: 0;
}

#diferencial form label input, form label textarea {
    border: 1px solid #c6c6c6;
    width: 100%;
}

#diferencial .col-6:first-child {
    position: relative;
}

#diferencial .col-6:first-child:after {
    content: '';
    background: #fff;
    width: 100%;
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    left: 0;
    z-index: -1;
    border-radius: 35px;
}

#servicos .flip-card-front img {
    width: 100px;
}

#clientes.banner-section .logos-clientes li {
    background: #fff;
    border-radius: 35px;
    row-gap: 35px;
    column-gap: 83px;
    padding: 50px;
    justify-content: center;
}

#clientes.banner-section .logos-clientes li h2 {
    background: #171717;
    width: auto;
    margin: 0 auto;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 20px;
}

#clientes.banner-section .logos-clientes li > img, #clientes.banner-section .logos-clientes li > video {
    height: 450px;
}

#clientes:after {
    content: '';
    width: 100%;
    height: 70%;
    position: absolute;
    top: -200px;
    left: 0;
    transform: rotateX(180deg);
    background: url(http://splashfontes.com.br/wp-content/themes/dj/images/white-cloud-2.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

#diferencial:after {
    content: '';
    width: 100%;
    height: 72%;
    position: absolute;
    top: -405px;
    left: 0;
    transform: rotateX(180deg);
    background: url(http://splashfontes.com.br/wp-content/themes/dj/images/white-cloud-2.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}


section#clientes {
    overflow: inherit !important;
/* 	background: linear-gradient(transparent, rgb(255 255 255 / 85%) 5%, white 100%); */
}

section#servicos {
    overflow: inherit !important;
}

section#diferencial {
    overflow: inherit;
}

.slick-arrow:before {
    color: #171717;
}

#clientes.banner-section .logos-clientes li {
    background: none;
}

#clientes .slick-next.slick-arrow {
    right: 150px;
    top: calc(50% - 25px)
}

#clientes .slick-prev.slick-arrow {
    left: 150px;
    top: calc(50% - 25px)
}

#clientes h2.title span p {
    color: #171717;
}

#clientes h2.title svg path {
    fill: #f4970c;
}

#diferencial h2.title svg path {
    fill: #b21193;
}

.wrap-tipos {
    position: relative;
} 	

#clientes.banner-section .logos-clientes li > img, #clientes.banner-section .logos-clientes li > video {
    border: 8px solid #fff;
}

.wrap-tipos .slick-arrow:before {
    color: #fff;
}

#clientes.banner-section .logos-clientes li.full > video {
    width: 100%;
}

header nav .navbar-brand img {
    max-height: 120px;
}

header nav .navbar-brand {
    padding: 5px 0;
}

#servicos h2.title span:after {
    content: '';
    background: url('http://splashfontes.com.br/wp-content/uploads/2024/11/SPLASH_FONTES_-_CLEAN__2_-removebg-preview.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: -60px;
    left: 0;
    display: block;
    width: 100%;
    height: 80px;
    z-index: 2;
}

#clientes h2.title span:after {
    content: '';
    background: url('http://splashfontes.com.br/wp-content/uploads/2024/11/SPLASH_FONTES_-_CLEAN__2_-removebg-preview.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: -60px;
    left: 0;
    display: block;
    width: 100%;
    height: 80px;
    z-index: 2;
}

#diferencial h2.title span:after {
    content: '';
    background: url('http://splashfontes.com.br/wp-content/uploads/2024/11/SPLASH_FONTES_-_CLEAN__2_-removebg-preview.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: -60px;
    left: 0;
    display: block;
    width: 100%;
    height: 80px;
    z-index: 2;
}

@media (max-width: 1500px) {
  .text {
    font-size: 30px;
  }

  .logos ul li {
    padding: 0 15px;
  }

  ul.cards li .flip-card .flip-card-inner .flip-card-front p, ul.cards li .flip-card .flip-card-inner .flip-card-back p {
    font-size: 18px;
  }

  #diferencial.banner-section ul.diferenciais li {
    padding: 15px;
  }

  #diferencial.banner-section ul.diferenciais li p {
    font-size: 18px;
  }

  #missao.banner-section ul.thumbs li {
    padding: 30px;
  }

  #missao.banner-section ul.thumbs li p {
    font-size: 18px;
  }

  #missao.banner-section .logos {
    bottom: 50px;
    right: 50px;
  }

  #clientes.banner-section .logos-clientes {
    padding: 50px 200px;
  }
}
@media (max-width: 1200px) {
  #missao.banner-section ul.thumbs {
    padding: 0;
  }

  .text {
    font-size: 28px;
  }

  .home #sobre .container-full ul.cards li {
    height: 40%;
  }

  header nav #navbarSupportedContent ul.navbar-nav li a {
    font-size: 24px;
    padding: 0 10px 20px 10px;
  }

  header nav #navbarSupportedContent ul.navbar-nav {
    padding: 0;
  }
}
@media (max-width: 998px) {
  .logos {
    position: relative;
    bottom: inherit !important;
    left: inherit !important;
    right: inherit !important;
    top: inherit !important;
  }

  .home #sobre .container-full {
    position: relative;
    padding: 0;
    height: auto;
  }

  main.home .container-full .row {
    height: auto;
  }

  .text {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
  }

  .home #sobre .container-full ul.cards {
    height: auto;
    margin-top: 0;
  }

  .home #sobre .container-full ul.cards li {
    height: 250px;
  }

  .logos ul li img {
    max-height: 70px;
  }

  .logos ul li {
    padding: 0;
  }

  .logos ul {
    flex-wrap: wrap;
    width: 75%;
    margin: 15px auto 0 auto;
  }

  .banner-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
  }

  #sobre.banner-section {
    padding-top: 0;
  }

  #diferencial.banner-section ul.diferenciais li {
    width: 100%;
    padding: 15px 0;
  }

  #diferencial.banner-section ul.diferenciais li img {
    max-width: 60px;
  }

  #diferencial.banner-section ul.diferenciais li p {
    font-size: 16px;
  }

  #missao.banner-section ul.thumbs {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }

  #missao.banner-section ul.thumbs li {
    width: 100%;
    padding: 30px 20px;
  }

  header nav #navbarSupportedContent ul.contact li {
    margin-bottom: 20px;
  }

  header nav .navbar-brand img {
    max-height: 75px;
  }

  .banner-section .container,
.banner-section .container-full {
    padding-right: 30px !important;
    padding-left: 30px !important;
    align-items: center;
  }

  .banner-section .container .row,
.banner-section .container-full .row {
    margin-right: -30px !important;
    margin-left: -30px !important;
  }

  .banner-section .container .row .col-12,
.banner-section .container-full .row .col-12 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }

  .banner-section header .container, .banner-section header .container-full {
    padding: 0 !important;
  }

  button.navbar-toggler {
    padding-left: 30px;
  }

  #missao.banner-section ul.thumbs li p {
    font-size: 16px;
  }

  #clientes.banner-section .col-12 {
    display: block;
  }

  #clientes.banner-section .logos-clientes li {
    padding: 10px;
    width: 50%;
  }

  #clientes.banner-section .logos-clientes li img {
    max-width: 100%;
  }

  #clientes.banner-section .logos-clientes {
    padding: 20px;
  }

  .home #clientes.banner-section .logos-clientes {
    display: block;
  }

  .dots.dots-right {
    right: 10px;
  }

  ul.cards li {
    width: 100%;
    height: 350px;
  }

  #servicos.banner-section .col-12 {
    display: block;
  }

  .home #sobre .container-full ul.cards li {
    height: 150px;
  }

  .home #sobre .container-full ul.cards {
    display: block;
  }

  .home #sobre .container-full ul.cards li {
    width: 50%;
    height: 250px;
  }

  ul.cards {
    display: block;
    height: auto;
  }

  #diferencial.banner-section ul.diferenciais {
    display: block;
  }

  header nav #navbarSupportedContent {
    padding: 5px;
  }
}
@media (max-width: 768px) {
  #missao.banner-section ul.thumbs li {
    margin: 20px 0;
  }

  header nav #navbarSupportedContent ul.contact {
    display: block;
  }

  header nav .navbar-brand:before {
    width: 300px;
    right: inherit;
    left: -350px;
  }

  h2.title {
    position: relative;
    top: inherit !important;
    left: inherit !important;
    text-align: center;
  }

  h2.title span {
    justify-content: center;
  }

  header nav #navbarSupportedContent ul.contact li p {
    font-size: 14px;
  }

  header nav #navbarSupportedContent ul.navbar-nav li a {
    font-size: 18px;
    padding: 10px;
  }

  header .container {
    padding: 0 !important;
  }
}
@media (max-width: 500px) {
  header nav #navbarSupportedContent {
    padding: 20px;
  }

  header nav .navbar-brand img {
    max-height: 50px;
  }

  .logos ul li img {
    max-height: 35px;
  }

  .logos ul {
    width: 90%;
  }

  #diferencial.banner-section ul.diferenciais li p {
    font-size: 12px;
  }

  #diferencial.banner-section ul.diferenciais li img {
    max-width: 40px;
  }

  #missao.banner-section ul.thumbs li p {
    font-size: 14px;
  }

  #missao.banner-section ul.thumbs li h2 {
    font-size: 24px;
  }

  ul.cards li .flip-card .flip-card-inner .flip-card-front p, ul.cards li .flip-card .flip-card-inner .flip-card-back p {
    font-size: 14px;
  }

  ul.cards li .flip-card .flip-card-inner .flip-card-front h2, ul.cards li .flip-card .flip-card-inner .flip-card-back h2 {
    font-size: 24px;
  }

  .text p {
    font-size: 14px;
  }
	.home #sobre .container-full {
		position: absolute;
		height: calc(100vh - 50px) !important;
	}

	#sobre video {
		height: calc(100vh - 50px) !important;
	}

	#sobre h1 {
		font-size: 50px !important;
	}

	header a.navbar-brand {
		padding: 0;
	}

	header nav .navbar-brand img {
		padding: 5px;
	}

	header nav .navbar-toggler {
		padding: 0;
		margin: 0 15px;
		position: absolute !important;
		right: 0;
	}

	.navbar {
		justify-content: center;
	}

	h2.title {
		margin-top: 100px;
	}

	#clientes.banner-section .col-12 {
		padding: 0 !important;
	}

	.home #clientes.banner-section .logos-clientes {
		padding: 0 !important;
	}

	#clientes.banner-section .logos-clientes li {
		width: 100% !important;
	}
	#diferencial .col-6 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	#diferencial .col-6:first-child:after {
		top: 0;
		height: 100%;
	}

	#clientes .container {
		align-items: flex-end;
	}

	#clientes .slick-next.slick-arrow {
		right: -20px;
	}
	#clientes .slick-prev.slick-arrow {
		left: -20px;
	}
	header nav #navbarSupportedContent {
		position: absolute;
		top: 50px;
		z-index: 999999999999999;
		left: 0;
		width: 100%;
	}

	header {
		overflow: visible;
	}
}

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