@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800');
html {
  font-size: 16px;
}

body {
    overflow-x: hidden !important;
  font-size: 16px;
  /* background-size: cover; */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.45;
}
p {
  margin-bottom: 1em;
  font-size: 0.9em;
}

h1,
h2,
h3,
h4 {
  margin: 1.414em 0 0.5em;
  font-weight: inherit;
  line-height: 1.2;
}

h1 {
  margin-top: 0;
  font-size: 5.063em;
}

h2 {
  font-size: 3.375em;
}

h3 {
  font-size: 2.25em;
}

h4 {
  font-size: 1.5em;
}

small,
.font_small {
  font-size: 0.667em;
}
a {
  text-decoration: none;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  /* margin-bottom: 20px; */
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
}
.clear {
  clear: both;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 769px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 960px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.desktop {
  display: block !important;
}
.mobile {
  display: none;
}

.mobileHeader {
  display: none;
}

/* menu fixed */
.menu_fixed {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.menu_fixed nav {
  text-align: right;
}
.menu_fixed nav ul {
  margin-right: 20px;
}
.menu_fixed nav li {
  margin: 10px 0;
  position: relative;
}
.menu_fixed nav li a {
  margin-right: 25px;
  position: relative;
  background: #2090ed;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  font-size: 0.8em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;

  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); /* easeOutQuad */

  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(
    0.25,
    0.46,
    0.45,
    0.94
  ); /* easeOutQuad */
}
.menu_fixed nav li:hover a {
  opacity: 1;
}
.menu_fixed nav li::before {
  content: '\f111';
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  position: absolute;
  right: 0px;
  top: 2px;
  font-size: 0.8em;
  opacity: 0.2;
}

/* Header */
.header {
  height: 1080px;
  background: url(../img/bg-header.jpg) center center;
  filter: hue-rotate(170deg);
  position: relative;
}
.header .head {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.header .head .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
}
.header .logo-mobile {
  display: none;
}
.header .logo img {
  width: 100px;
}
.header nav {
  width: calc(100% - 300px);
}
.header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header nav li {
}
.header nav li a {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 0.8em;
}
.header nav .twitch {
  display: none;
}
.header .content {
  text-align: center;
  margin-top: 20%;
}
.header .content h3 {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 1.7em;
  margin: 0;
}
.header .content h2 {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 4.7em;
  font-weight: 900;
  line-height: 1em;
}
.header .content h2::after {
  width: 100px;
  content: '_';
  animation: time 800ms linear infinite;
}
@keyframes time {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }

  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

#particle_bg {
  width: 100%;
  height: 100%;
  opacity: 0.6em;
  position: absolute;
  top: 0;
  z-index: 1;
}

/* About */
.about {
  background: url(../img/about-bg.jpg) center bottom repeat-x;
  padding: 0px 0 0px;
  text-align: center;
  animation: bg-animation 30900ms infinite linear;

  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes bg-animation {
  from {
    background-position: 0 bottom;
  }

  to {
    background-position: -1920px bottom;
  }
}
.about .container {
  margin-bottom: 400px;
}
.about .row {
  padding: 60px 0 0;
}
.about .headline {
  width: 100%;
}
.about .headline h2 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.3em;
  color: #30383b;
  margin: 0 0 30px;
}
.about .content {
  width: 100%;
  text-align: center;
}
.about .content p {
  width: 100%;
  margin: 0 auto;
  color: #30383b;
  font-size: 15px;
}

/* Divisor */
.divisor {
  background: url(../img/bg-company.jpg) center center;
  filter: hue-rotate(170deg);
  background-size: cover;
  background-position: center 80%;
  padding: 0px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.divisor .headline {
  width: 100%;
}
.divisor .headline h2 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.3em;
  color: #fff;
  margin: 0 0 30px;
}
.divisor .content {
  width: 80%;
  margin-left: 10%;
}
.divisor .content p {
  color: #fff;
  text-align: center;
  width: 100%;
}
.divisor .content .divisores {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}
.divisor .content .box {
  border-radius: 5px;
  width: 200px;
  text-align: center;
}
.divisor .content .box .icon {
  width: 100px;
  height: 100px;
  padding: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.28);
  margin: 0 auto;
  margin-bottom: 20px;
}
.divisor .content .box .icon img {
  width: 100px;
}
.divisor .content .box .title {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  font-size: 1.1em;
  letter-spacing: 0.05em;
}
.divisor .content .box p {
  text-align: center;
}

/* DNA */
.dna {
  background: #fff url(../img/bg-dna.jpg) center center no-repeat;
  padding: 0px 0;
  height: 750px;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}
.dna .headline {
  width: 100%;
}
.dna .headline h2 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.3em;
  color: #000;
  margin: -100px 0 50px;
  position: relative;
  z-index: 99;
}
.dna .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 0px;
  -webkit-transform: perspective(1000);
  transform-style: preserve-3d;
  z-index: 9;
}
.dna .img {
  background: url(../img/dna.png) center center no-repeat;
  height: 900px;
  width: 384px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -450px;
  margin-left: calc(-384px / 2);
  z-index: 1;
}
.dna .animation_lines {
  width: 400px;
  height: 400px;
  /* background: rgba(255, 0, 0, 0.05); */
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -195px;
  margin-left: -200px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* z-index: -2 */
}
.dna .animation_lines .line {
  width: 100%;
  height: 8px;
  background: #ececed;
  position: absolute;
  animation: dna_animation 3900ms infinite linear;
  opacity: 0;
}
.dna .animation_lines .line:nth-child(1) {
  /* animation-delay:  100ms; */
}
.dna .animation_lines .line:nth-child(2) {
  animation-delay: 800ms;
}
.dna .animation_lines .line:nth-child(3) {
  animation-delay: 1600ms;
}
.dna .animation_lines .line:nth-child(4) {
  animation-delay: 2400ms;
}
.dna .animation_lines .line:nth-child(5) {
  animation-delay: 3200ms;
}

.dna .animation_lines .line::before,
.dna .animation_lines .line::after {
  content: ' ';
  width: 20px;
  height: 20px;
  background: #ececed;
  position: absolute;
  border-radius: 50%;
  top: -6px;
}
.dna .animation_lines .line::before {
  left: 0;
}
.dna .animation_lines .line::after {
  right: 0;
}

@keyframes dna_animation {
  0% {
    top: 0%;
    width: 130px;
    opacity: 0;
  }
  20% {
    top: 20%;
    width: 88%;
    opacity: 1;
  }
  50% {
    top: 50%;
    width: 100%;
  }
  80% {
    top: 75%;
    width: 85%;
    opacity: 1;
  }
  100% {
    top: 100%;
    width: 130px;
    opacity: 0;
  }
}
.dna .content .box {
  width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-flow: column;

  box-shadow: 0 0 15px 0 rgba(193, 193, 193, 0.3),
    0 3px 5px 0 rgba(193, 193, 193, 0.3);

  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */

  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */
}
.dna .content .box:nth-child(even):hover {
  -webkit-transform: rotateY(-30deg);
}
.dna .content .box:nth-child(odd):hover {
  -webkit-transform: rotateY(30deg);
}
.dna .content .box:nth-child(even)::after {
  content: '\f0d9';
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  font-size: 2em;
  color: #fff;
  position: absolute;
  left: -8px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  height: 100%;
  width: 10px;

  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */

  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */
}
.dna .content .box:nth-child(odd)::after {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  font-size: 2em;
  color: #fff;
  position: absolute;
  right: -8px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  height: 100%;
  width: 10px;

  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */

  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */
}
.dna .content .bg_box {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #f5f5f5;
  -webkit-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */

  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint */
}

.dna .content .box:hover {
  background: #f8e23f;
  color: #000;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
}
.dna .content .box:hover::after {
  color: #f8e23f;
  text-shadow: 0 0 0px rgba(255, 255, 255, 0.9);
}
.dna .content .box:hover .bg_box {
  fill: #f8e23f;
}
.dna .content .box:nth-last-child(even) {
  text-align: right;
}
.dna .content .box:nth-last-child(odd) {
  margin-left: 40px;
}
.dna .content .box .title {
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 0px;
  text-align: left;
}
.dna .content .box p {
  text-align: justify;
}

/* Form */
.form {
  background: url(../img/bg-contact.jpg) center center;
  color: #fff;
  padding: 0px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form .work .imagem {
  width: 25%;
  left: 1;
  top: 60%;
  transform: translateY(-50%);
  height: 50%;
  position: absolute;
  background: url(../img/logo-black.png) center center;
  background-size: cover;
  border-radius: 0 15px 15px 0;
}
@media (max-width: 1280px) {
  .form .work .imagem {
    width: 25%;
    height: 40%;
    background-size: contain;
  }
}
@media (max-width: 1198px) {
  .form .work .imagem {
    display: none;
  }

  .form .work {
    height: 30vh !important;
  }

  .form row {
    justify-content: center !important;
  }

  .form .content {
    justify-content: center;
    text-align: center !important;
  }
}

.form .headline {
}
.form h2 {
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2em;
  color: #fff;
  margin-bottom: 10px;
}
.form > p {
  width: 60%;
  text-align: center;
  margin-bottom: 50px;
}
.form .work {
  color: #000;
  display: flex;
  align-items: center;
  width: 80%;
  height: 50%;
  background-color: #eafffd;
  border-radius: 30px;
}
.form .content {
  text-align: left;
}
.form .content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.form .content a {
  text-align: center;
  padding: 12px 24px;
  background-color: #f8e23f;
  color: #000;
  border-radius: 5px;
  font-weight: bold;
}
.form .content form {
  width: 100%;
}
.form .content form input,
.form .content form textarea {
  width: 100%;
  padding: 15px 10px;
  border-radius: 5px;
  border: 1px solid #1763b1;
  box-sizing: border-box;
  margin-bottom: 10px;
  background: #00427f;
  color: #fff !important;
}
.form .content form input::placeholder {
  color: #fff !important;
}
.form .content form label {
  width: 100%;
}
.form .content form > input:nth-child(1) {
  display: none;
}
.form .content form label:nth-child(2),
.form .content form label:nth-child(3) {
  width: calc(50% - 3px);
}
.form .content form label:nth-child(2) input,
.form .content form label:nth-child(3) input {
  width: calc(50% - 15px);
}
.form .content form label:nth-child(3) input {
  width: calc(50% - 15px);
  margin-left: 25px;
}

.form .content .controle {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.form .content form input[type='submit'] {
  width: 48%;
  padding: 19px;
  margin-bottom: 0;
  border: none;
  background: #fff;
  color: #00427f !important;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.form .content form button {
  width: 48%;
  padding: 19px 10px;
  border-radius: 5px;
  border: none;
  background: #2090ed;
  cursor: pointer;
}
.form .content form button p {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
.form .content form button span {
  background: #db9d07;
  padding: 10px 10px;
  font-size: 0.8em;
  border-radius: 3px;
  border-bottom: 1px solid #ffd46c;
}
.form .content form button i {
  margin-right: 5px;
}
.form .note {
  margin-top: 20px;
  margin-bottom: 0;
}
.form .note p {
  margin-bottom: 0;
}
.alert_sucess {
  padding: 15px;
  background: #e0ffe3;
  border: 1px solid #c6edca;
  border-radius: 5px;
  color: #189c49;
  width: 100%;
  height: auto;
  font-weight: bold;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.alert_sucess p {
  margin: 0 !important;
}
.alert_sucess i {
  margin-right: 10px;
}

/* Address */
.address {
  display: flex;
  justify-content: center;
  align-items: center;
}

.address .headline {
  width: calc(50% - 20px);
  text-align: right;
}
.address .headline h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.3em;
  color: #000;
  margin: 0;
  margin-bottom: 20px;
}
.address .content {
  width: calc(50% - 20px);
}
.address .container {
  /* width: 50%; */
  padding: 0;
}
.address .container .row {
  padding: 0;
  flex-flow: column;
}
.address .content .block {
  height: 100px;
  width: calc(100% - 30px);
  margin-left: 15px;
  max-width: 400px;
  border-radius: 5px;
  padding: 15px !important;
  margin: 0;
  margin-bottom: 20px;
  z-index: 999;
  position: relative;
  text-align: right;
  float: right;
}
.address .content .block h5 {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2em;
  margin-bottom: 10px;
}
.address .content .block p {
  margin: 0;
}
.address .content .block b {
  font-weight: bold;
}
.address .map {
  width: 50%;
  right: 0;
  top: 5%;
  height: 90%;
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
}
.address .map iframe {
  height: 90%;
  margin-bottom: -10px;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: #fff;
}
#fp-nav ul li a span.black,
.fp-slidesNav ul li a span.black {
  background: #3d3d3d;
}

/* Footer */
footer {
  background: #30383b;
  border-top: 1px solid #5385b8;
}
footer .logo {
  /* margin-right: 20px */
  padding-top: 5px;
}
footer .logo img {
  width: 100px;
}
footer .social {
}
footer .social ul {
  margin-left: 30px;
  display: flex;
}
footer .social li {
  padding: 5px;
  font-size: 1.3em;
}
footer .social a {
  color: #fff;
}
footer .social i {
}
footer .copyright {
  width: 100%;
  color: #fff;
  text-align: right;
  margin: 0;
}
