
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&display=swap');

body{
  background: #0264c7;
  overflow-x: hidden;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

::selection {
  background-color: #95c11f;
  color: #fff;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #269adf;
}
::-webkit-scrollbar {
  width: 0.5rem;
  background-color: #269adf;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #95c11f;
}


#myCarousel .carousel-item .mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-attachment: fixed;
}
#myCarousel h4 {
  padding-top: .5em;
  font-size: 6em;
  margin-bottom: 15px;
  color: #fff;
  line-height: .8;
  font-weight: 400;
  font-family: 'Bad Script', cursive;
  transform: rotateX(1deg);
  text-shadow: 1px 3px 0 #35a3ff, 1px 13px 8px #0f73cd;
  letter-spacing: -5px;
}

#myCarousel h4 span {
  font-weight: 900;
  font-size: 2.1em;
  line-height: 1;
  word-spacing: -.2em;
}

#myCarousel p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #d5d5d5;
}
#myCarousel .carousel-item a {
  background: #95c11f;
  font-size: 14px;
  color: #fff;
  padding: 13px 32px;
  display: inline-block;
}
#myCarousel .carousel-item a:hover {
  background: #394fa2;
  text-decoration: none;
}

#myCarousel .carousel-item h4 {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
#myCarousel .carousel-item p {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
#myCarousel .carousel-item a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
#myCarousel .carousel-item .mask img {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  display: block;
  height: auto;
  max-width: 100%;
}
#myCarousel h4,
#myCarousel p,
#myCarousel a,
#myCarousel .carousel-item .mask img {
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#myCarousel .container {
  max-width: 1430px;
}
#myCarousel .carousel-item {
  height: 100%;
  min-height: 500px;
}
#myCarousel {
  position: relative;
  z-index: 1;
}

.carousel-control-next,
.carousel-control-prev {
  height: 40px;
  width: 40px;
  padding: 12px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background-color: #95c11f;
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
  opacity: 1;
}
.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-right.active {
  opacity: 0;
}
.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item-prev.active,
.carousel-fade .carousel-item.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@supports (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-left.active,
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item-prev.active,
  .carousel-fade .carousel-item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item-prev.active,
.carousel-fade .carousel-item.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.grid-gallery {
  display: grid;
  grid-auto-rows: 200px;
  grid-gap: 1rem;
  grid-auto-flow: row dense;
}
@media all and (min-width: 320px) {
  .grid-gallery {
    grid-template-columns: 1fr;
  }
}
@media all and (min-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 1024px) {
  .grid-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
.grid-gallery__item:nth-child(11n + 1) {
  grid-column: span 1;
}
.grid-gallery__item:nth-child(11n + 4) {
  grid-column: span 2;
  grid-row: span 1;
}
@media all and (min-width: 320px) {
  .grid-gallery__item:nth-child(11n + 4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.grid-gallery__item:nth-child(11n + 6) {
  grid-column: span 3;
  grid-row: span 1;
}
.grid-gallery__item:nth-child(11n + 7) {
  grid-column: span 1;
  grid-row: span 2;
}
.grid-gallery__item:nth-child(11n + 8) {
  grid-column: span 2;
  grid-row: span 2;
}
.grid-gallery__item:nth-child(11n + 9) {
  grid-row: span 3;
}
.grid-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-gallery__item {
  opacity: 1;
  transition: 200ms all ease-in-out;
}

.grid-gallery__item:hover {
  opacity: .5;
  mix-blend-mode: luminosity;
}
#homeVideo {
  position: fixed;
  left: 0;
  top: 0;
  min-width: 100%;
  min-height: 10%;
  z-index: -9999;
  height: 100vh;
  object-fit: cover;
  transform: rotateX(180deg);
  margin-top: -20vh;
}

.logo {
  padding: 2em;
}

.product-navbar {
  height: 40px;
  width: 100%;
  background: #090b0f;
  border-bottom: 1px solid #090b0f;
  font-family: 'Bad Script', cursive;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
}
.product-navbar .product-navbar-centered {
  max-width: 90vw;
  height: 20px;
  margin: 0 5vw;
}
.product-navbar .product-navbar-centered ul {
  margin: 0;
  padding: 0;
}
.product-navbar .product-navbar-centered ul li {
  float: left;
  list-style: none;
  margin-right: 30px;
  padding-top: 9px;
}
.product-navbar .product-navbar-centered ul li a {
  color: #6f7782;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none !important;
}

.hero {
  background: #171b23;
  padding-left: 0;
  padding-right: 0;
}
.hero .container {
  margin: 0 5vw;
  padding: 0 0vw;
  max-width: 90vw;
}
.hero .navbar-brand {
  color: #fff;
}
.hero .navbar-brand img {
  margin-right: 7px;
  margin-top: -7px;
}

#about-main {
  font-family: "Open Sans", sans-serif;
  margin: 0 auto;
}
#about-main .row {
  margin-left: 0;
  margin-right: 0;
}
#about-main .jumbotron {
  width: 100%;
  height: 1000px;
  background: #cfcfcf91;
  position: relative;
  margin: 0 0 -200px;
  z-index: 3;
  border-radius: 0px;
}
#about-main .jumbotron .img-layer-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#about-main .jumbotron .img-layer-container img {
  max-width: 95vw;
}
#about-main .jumbotron .img-layer-container .team-image {
  position: absolute;
}
#about-main .jumbotron .img-layer-container .team-image img {
  position: relative;
  z-index: 3;
}
#about-main .jumbotron .img-layer-container .circles-container {
  position: absolute;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#about-main .jumbotron .img-layer-container .circles-container .img-1 {
  position: absolute;
  z-index: 2;
}
#about-main .jumbotron .img-layer-container .circles-container .img-2 {
  position: absolute;
  z-index: 5;
}
#about-main .jumbotron .jumbotron-inner {
  max-width: 1350px;
  margin: 0 auto;
}
#about-main .jumbotron .jumbotron-inner a {
  text-decoration: none;
}
#about-main .jumbotron .jumbotron-inner .top-box {
  max-width: 950px;
  margin: 0 auto;
}
#about-main .jumbotron .jumbotron-inner .top-box .content-box {
  margin: 0 50px 35px;
}
#about-main .jumbotron .jumbotron-inner .top-box .content-box h5 {
  text-align: center;
  color: #373736;
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Bad Script', cursive;
}
#about-main .jumbotron .jumbotron-inner .top-box .content-box p {
  text-align: center;
  color: #373736;
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 15px;
}
@media (max-width: 1401px) {
  #about-main .jumbotron {
    height: 595px !important;
  }
  #about-main .jumbotron .jumbotron-inner {
    max-width: 900px;
  }
  #about-main .jumbotron .jumbotron-inner .top-box {
    max-width: 900px;
  }
  #about-main .jumbotron .jumbotron-inner .top-box .content-box {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  #about-main .jumbotron .jumbotron-inner .top-box .content-box h3 {
    font-size: 35px;
    margin: 5px 0px 20px 0px;
    color: #6f7782;
    font-weight: 300;
  }
}
@media (max-width: 1000px) {
  #about-main .jumbotron .img-layer-container {
    width: 100%;
  }
}
@media (max-width: 815px) {
  #about-main .jumbotron .jumbotron-inner {
    max-width: 600px;
  }
}
@media (max-width: 640px) {
  #about-main .jumbotron {
    height: 1060px !important;
  }
  #about-main .jumbotron .jumbotron-inner {
    max-width: 550px;
    padding: 0 20px;
  }
  #about-main .jumbotron .img-1, #about-main .jumbotron .img-2, #about-main .jumbotron .team-image {
    display: none;
  }
}
@media (max-width: 420px) {
  #about-main .jumbotron .jumbotron-inner {
    max-width: 600px;
    padding: 0;
  }
}
@media (max-width: 400px) {
  #about-main .jumbotron .jumbotron-inner .top-box .content-box {
    margin: 30px 0;
  }
  #about-main .jumbotron .jumbotron-inner .top-box .content-box h5 {
    font-size: 35px;
  }
  #about-main .jumbotron .jumbotron-inner .top-box .content-box p {
    font-size: 22px;
  }
}
#about-main .story-container {
  height: 100%;
  width: 100%;
  margin-top: 250px;
}
@media (max-width: 640px) {
  #about-main .story-container {
    margin-top: 80px;
  }
}
#about-main .story-container .container-divider {
  margin-top: 100px;
}
@media (max-width: 640px) {
  #about-main .story-container .container-divider {
    margin-top: 50px;
  }
}
#about-main .story-container .need-for-dx-container, #about-main .story-container .our-tech-container, #about-main .story-container .origin-story-container, #about-main .story-container .today-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 815px) {
  #about-main .story-container .need-for-dx-container, #about-main .story-container .our-tech-container, #about-main .story-container .origin-story-container, #about-main .story-container .today-container {
    width: 100%;
  }
}
#about-main .story-container .need-for-dx-container .img-container, #about-main .story-container .our-tech-container .img-container, #about-main .story-container .origin-story-container .img-container, #about-main .story-container .today-container .img-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
#about-main .story-container .need-for-dx-container .img-container img, #about-main .story-container .our-tech-container .img-container img, #about-main .story-container .origin-story-container .img-container img, #about-main .story-container .today-container .img-container img {
  margin: 50px auto;
}
#about-main .story-container .need-for-dx-container h3, #about-main .story-container .our-tech-container h3, #about-main .story-container .origin-story-container h3, #about-main .story-container .today-container h3 {
  color: #fbfbfb;
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Bad Script', cursive;
}
#about-main .story-container .need-for-dx-container p, #about-main .story-container .our-tech-container p, #about-main .story-container .origin-story-container p, #about-main .story-container .today-container p {
  font-size: 20px;
  margin-top: 20px;
  color: #fbfbfb;
}
@media (max-width: 640px) {
  #about-main .story-container .need-for-dx-container p, #about-main .story-container .our-tech-container p, #about-main .story-container .origin-story-container p, #about-main .story-container .today-container p {
    font-size: 13px;
  }
}
#about-main .story-container .need-for-dx-container ul, #about-main .story-container .our-tech-container ul, #about-main .story-container .origin-story-container ul, #about-main .story-container .today-container ul {
  margin-top: 30px;
  list-style-image: url("https://apimatic.io/img/theme/aboutUs/bullet.svg");
}
#about-main .story-container .need-for-dx-container ul li, #about-main .story-container .our-tech-container ul li, #about-main .story-container .origin-story-container ul li, #about-main .story-container .today-container ul li {
  line-height: 25px;
  padding-left: 5px;
  margin-bottom: 10px;
  color: #fbfbfb;
  font-weight: 400;
  font-size: 17pxpx;
}

.half {
  color: white;
  float: left;
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.text-container {
  position: relative;
  padding: 20px;
  top: 80%;
  transform: translateY(-80%);
  transition: 1s all;
  text-align: center;
  font-family: 'Bad Script', cursive;
}
.text-container.is-active {
  transform: translateY(-50%);
  transition-delay: 1s;
}

.cta-text h2 {
  color: #000;
  font-family: 'Bad Script', cursive;
  font-size: 2.5em;
}

.cta-container {
  background: #95c11f;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30vh;
  transition: 1s all;
  overflow: hidden;
}
.cta-container:before {
  content: "";
  position: absolute;
  background: #6d8f1170;
  width: 150%;
  height: 100%;
  left: -50%;
  bottom: -50%;
  transform: rotate(25deg);
  display: block;
}
.cta-container .cta-text {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: 1s all;
}

.cta-container.is-active {
  height: 950px;
}
.cta-container.is-active .cta-text {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 45%;
  transform: translateY(-100%);
  transition-delay: 1s;
}
.cta-container.is-active .form-container {
  opacity: 1;
}
.cta-container.is-active .form-container label, .cta-container.is-active .form-container .submit {
  opacity: 1;
}
.cta-container.is-active .form-container label:nth-of-type(1) {
  transition-delay: 1.8s;
}
.cta-container.is-active .form-container label:nth-of-type(2) {
  transition-delay: 2s;
}
.cta-container.is-active .form-container label:nth-of-type(3) {
  transition-delay: 2.2s;
}
.cta-container.is-active .form-container .submit {
  transition-delay: 2.6s;
}
.cta-container.is-active .arrow {
  opacity: 0;
}

.arrow {
  transition: 0.4s all;
  cursor: pointer;
  transform-origin: center;
  width: 30px;
  height: 30px;
  margin: auto;
}
.arrow:hover {
  transform: rotate(90deg) scale(1.3);
}

.arrow svg p {
 transform: scale(2);
}

.arrow svg path {
  fill: #000000;
}

.form-container {
  opacity: 0;
  padding: 20px;
  position: absolute;
  transition: 0.3s all 1s;
  text-align: left;
  left: 0;
  right: 0;
  margin: auto;
}

input[type=text], input[type=tel], textarea[name=mensaje]{
  width: 100%;
  background: #ffffff;
  border: 3px solid #ffffff;
  padding: 7px;
  outline: none;
}

input[type="checkbox" i] {
  width: 1em;
  height: 1em;
}

::placeholder {
  color: #6f7782;
}

a.submit {
  background: #ff9800;
  color: white;
  margin: auto;
  padding: 15px;
  border: none;
  display: block;
  font-size: 18px;
  width: 100%;
}

label, .submit {
  opacity: 0;
  transition: 0.5s all;
  display: block;
  margin-bottom: 20px;
}

#contactform {
  min-height: 500px;
}

footer {
  padding: 2rem 0;
  background-color: #182002d4;
  background-image: url(img/footer.png);
  background-size: cover;
  background-repeat: none;
  background-position: top;
}

footer a {
  color: #95c11f;
  transition: 200ms all ease-in-out;
}

footer a:hover {
  color: #aae20f;
}

.footer-column:not(:first-child) {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .footer-column:not(:first-child) {
    padding-top: 0rem;
  }
}

.footer-column {
  text-align: center;
}
.footer-column .nav-item .nav-link {
  padding: 0.1rem 0;
}
.footer-column .nav-item span.nav-link {
  color: #6c757d;
}
.footer-column .nav-item span.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.footer-column .nav-item .fas {
  margin-right: 0.5rem;
}
.footer-column ul {
  display: inline-block;
}
@media (min-width: 768px) {
  .footer-column ul {
    text-align: left;
  }
}

ul.social-buttons {
  margin-bottom: 0;
}

ul.social-buttons li a:active,
ul.social-buttons li a:focus,
ul.social-buttons li a:hover {
  background-color: #fec503;
}

ul.social-buttons li a {
  font-size: 20px;
  line-height: 40px;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border-radius: 100%;
  outline: 0;
  background-color: #1a1d20;
}

footer .quick-links {
  font-size: 90%;
  line-height: 40px;
  margin-bottom: 0;
  text-transform: none;
}
.copyright {
  color: white;
}

.fa-ellipsis-h {
  color: white;
  padding: 2rem 0;
}

.projectos {
  font-family: 'Bad Script', cursive;
  font-size: 3.5rem;
  padding: 1em;
  color: white;
  font-weight: 400;
  margin-bottom: -12%;
  margin-left: -1.5%;
}
.overlay {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  z-index: 1;
  margin-top: -65.5%;
}

.grid-gallery__item:hover .overlay {
  opacity: 1;
}

.overlay  .text {
  color: white;
  font-size: 2.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 900;
  filter: drop-shadow(6px 6px 6px black);
  line-height: 1;
}

@media (max-width:470px) {
  .logo {
    padding: 0;
    width: 60%;
}
.overlay  .text {
display: none;
}
.projectos {
  font-family: 'Bad Script', cursive;
  font-size: 1.5rem;
  padding: .5em;
  color: white;
  font-weight: 400;
  margin-bottom: -48%;
  margin-left: -1.5%;
  width: 53%;
}
#about-main .story-container {
  margin-top: 240px;
}
.cta-text h2 {
  color: #000;
  font-family: 'Bad Script', cursive;
  font-size: 1.5em;
}
#about-main .story-container .need-for-dx-container p, #about-main .story-container .our-tech-container p, #about-main .story-container .origin-story-container p, #about-main .story-container .today-container p {
  font-size: 17px;
}
#myCarousel h4 {
  padding-top: 2em;
  font-size: 2em;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.4;
  font-weight: 400;
  font-family: 'Bad Script', cursive;
  transform: rotateX(1deg);
  text-shadow: 1px 3px 0 #35a3ff, 1px 13px 8px #0f73cd;
  letter-spacing: 0px;
}

#myCarousel .carousel-item {
  height: 100%;
  min-height: 300px;
}
#about-main .jumbotron .jumbotron-inner .top-box .content-box p {
  font-size: 16px;
}
#myCarousel h4 span {
  font-weight: 900;
  font-size: 1.8em;
  line-height: 1;
  word-spacing: -.2em;
}
body {
  background: #005ec4;
  overflow-x: hidden;
}
input[type=submit] {
  width: 100%;
}
.h3, h3 {
  font-size: 1.5rem;
}
.h3, h3 {
    font-size: 1.5rem;
}
.grid-gallery {
  grid-gap: 0;
}
}