/* --------------------------------

Primary style

-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font: normal 16px 'Roboto', sans-serif;
  color: #999;
  background: #fff;
}
a {
  color: #80C757;
  text-decoration: none;
}
img {
  max-width: 100%;
}
h1, h2{
  text-decoration: none;
  border-bottom: 2px solid #80C757;
  padding: 0.6rem 1rem;
  font-weight: 100 !important;
  text-align: center;
  margin: auto;
}
h1 { font-size: 1.625rem; display: inline-block; }
h2 { font-size: 1.3125rem; margin-bottom: 0.5rem; }
::-moz-selection{background:#80C757;color:#fff;text-shadow:none;}
::selection{background:#80C757;color:#fff;text-shadow:none;}


/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.main-content{ overflow: hidden; }
.has-top-margin {
  /* this class is given - using jQuery - to the .main-content following the .int-secondary-nav when it becomes fixed */
}
.cont-section {
  width: 100%;
  height: auto;
  height: 38rem;
  position: relative;
  overflow: hidden !important;
  margin: 0 auto;
  padding: 6rem 0 !important;
}
.container-flex, .content-flex {
  width: 100%;
  height: auto;
  margin: 0 auto;

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: wrap;

  justify-content: center; /* space-around */
  align-content: center;
  align-items: center;
}
.container-flex{ max-width: 1100px; }
@-webkit-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@-moz-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}


/*---------------------------------

ANIMATION ELEMENTS

---------------------------------*/
.animation.slide-opacity {
  opacity: 0;
  -webkit-transition: all 0.25s linear 0.60s;
  transition: all 0.25s linear 0.60s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.animation.slide-opacity.in-view {
  opacity: 1;
}
.animation.slide-top,
.animation.slide-top-delay,
.animation.slide-top-delayplus {
  opacity: 0;
  -webkit-transition: all 0.25s linear 0.60s;
  transition: all 0.25s linear 0.60s;
  -ms-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.animation.slide-top {
  -webkit-transition-delay: 0.40s;
  transition-delay: 0.40s;
}
.animation.slide-top-delay {
  -webkit-transition-delay: 0.70s;
  transition-delay: 0.70s;
}
.animation.slide-top-delayplus {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.animation.slide-top.in-view,
.animation.slide-top-delay.in-view,
.animation.slide-top-delayplus.in-view {
  opacity: 1;
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.animation.slide-jump,
.animation.slide-jump-delay,
.animation.slide-jump-delayplus {
  opacity: 0;
  -webkit-transition: 0.50s ease-in-out;
  transition: 0.50s ease-in-out;
  -webkit-animation-duration: 0.50s;
  animation-duration: 0.50s;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.animation.slide-jump {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.animation.slide-jump-delay {
  -webkit-animation-delay: 0.50s;
  animation-delay: 0.50s;
}
.animation.slide-jump-delayplus {
  -webkit-animation-delay: 0.70s;
  animation-delay: 0.70s;
}
.animation.slide-jump.in-view,
.animation.slide-jump-delay.in-view,
.animation.slide-jump-delayplus.in-view{
  opacity: 1;
  -webkit-animation-name: jump;
  animation-name: jump;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@-webkit-keyframes jump{
  0%{
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50%{
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100%{
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jump{
  0%{
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50%{
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100%{
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}


/* --------------------------------

Intro

-------------------------------- */
#logo {
  margin: 7rem auto;
}
#logo img {
  width: 200px;
  display: inline-block;
}
#logo-icon{visibility: hidden; display: none;}
#logo-icon img {
  width: 120px;
  height: auto;
  display: inline-block;
}
/* video { display: block; z-index: -1; overflow: hidden;} */
video#bgvid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -1;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#int-intro {
  position: relative;
  height: 100%;
  overflow: hidden !important;
  -webkit-background: url('../img/bg-intro.webp') no-repeat center top fixed;
  background: url('../img/bg-intro.jpg') no-repeat center top fixed;
  background-size: cover;
  z-index: 2;
  color: #fff;
}
#int-intro #intro-tagline {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(219deg, rgba(0,253,172,0.85), rgba(111,191,64,0.85));
  background-size: 300%;
  -webkit-animation: bg-intro 10s ease infinite;
  -moz-animation: bg-intro 10s ease infinite;
  -o-animation: bg-intro 10s ease infinite;
  animation: bg-intro 10s ease infinite;
}
#int-intro span{
  display: inline-block;
  margin: 0 auto;
}
@-webkit-keyframes bg-intro {
    0%{background-position:81% 0%}
    50%{background-position:20% 100%}
    100%{background-position:81% 0%}
}
@-moz-keyframes bg-intro {
    0%{background-position:81% 0%}
    50%{background-position:20% 100%}
    100%{background-position:81% 0%}
}
@-o-keyframes bg-intro {
    0%{background-position:81% 0%}
    50%{background-position:20% 100%}
    100%{background-position:81% 0%}
}
@keyframes bg-intro {
    0%{background-position:81% 0%}
    50%{background-position:20% 100%}
    100%{background-position:81% 0%}
}


/* --------------------------------

Secondary Fixed Navigation

-------------------------------- */
.int-secondary-nav {
  position: relative;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.int-secondary-nav ul {
  /* mobile first - secondary navigation hidden by default, triggered by tap/click on .int-secondary-nav-trigger*/
  position: fixed;
  width: 90%;
  max-width: 400px;
  right: 5%;
  bottom: 20px;
  border-radius: 0.25em;
  background: rgba(3, 13, 24, 0.96);
  visibility: hidden;
  z-index: 99999;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s;
}
.int-secondary-nav ul.is-visible {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}
.int-secondary-nav li a {
  display: block;
  padding: 1.6em;
  border-bottom: 1px solid #092645;
  color: #f0eee1;
}
.int-secondary-nav li:last-child a {
  border-bottom: none;
}
.int-secondary-nav-trigger {
  position: fixed;
  bottom: 20px;
  right: 5%;
  width: 44px;
  height: 44px;
  background: #80C757;
  border-radius: 0.25em;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 2;
}
.int-secondary-nav-trigger span {
  /* the span element is used to create the menu icon */
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f0eee1;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.int-secondary-nav-trigger span::before, .int-secondary-nav-trigger span::after {
  content: '';
  position: absolute;
  background: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.int-secondary-nav-trigger span::before {
  right: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.int-secondary-nav-trigger span::after {
  left: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.int-secondary-nav-trigger.menu-is-open {
  background: transparent;
}
.int-secondary-nav-trigger.menu-is-open span {
  background: rgba(240, 238, 225, 0);
  width: 20px;
  height: 2px;
}
.int-secondary-nav-trigger.menu-is-open span::before, .int-secondary-nav-trigger.menu-is-open span::after {
  background: #f0eee1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
}
.int-secondary-nav-trigger.menu-is-open span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.int-secondary-nav-trigger.menu-is-open span::after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}


/* --------------------------------

Placeholder Sections

-------------------------------- */
#placeholder-1{
  -webkit-background: url('../img/bg-empresa.webp') center no-repeat fixed;
  background: url('../img/bg-empresa.jpg') center no-repeat fixed;
  background-size: cover;
  color: #fff;
}
#placeholder-4{
  /*-webkit-background: url('../img/bg-contato.webp') center no-repeat fixed;
  background: url('../img/bg-contato.jpg') center no-repeat fixed;*/
  background: #f5f5f5;
  /*background-size: cover;*/
  /*color: #fff;*/
  font-size: 1.3125rem;
}
.wedo, .scrum, .inspiration{
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 0;
  align-self: center;
}
.wedo{
  -webkit-order: 1; order: 1;
}
.scrum{
  -webkit-order: 2; order: 2;
}
.inspiration{
  -webkit-order: 3; order: 3;
}
.wedo p, .how-wedo p{
  font-size: 1.3rem;
  line-height: 2.125rem;
  text-align: right;
}
.wedo p b, .how-wedo p b{ color: #80C757; }
.wedo p span, .how-wedo p span{
  color: #fff;
  background: #999;
  padding: 0.2rem 0.4rem;
}
.wedo p u{
  text-decoration: none;
  color: #80C757;
  padding: 0.2rem;
}
.scrum{
  width: 200px;
  height: 200px;
  -webkit-order: 2;
  order: 2;
  margin: 0.5rem;
  background: url('../img/process.png') no-repeat center;
  background-size: auto 200px;
}
.inspiration p{
  width: 310px;
  font: 900 2.625rem/2.8rem 'Roboto', sans-serif !important;
  text-align: left !important;
  color: #80C757;
}
.inspiration.heart-shape{
    width: auto;
    height: 1.5rem;
}
.how-wedo{
  width: 100%;
  margin: 0 auto 2rem auto;
  display: inline !important;
  clear: both;

  -webkit-flex: auto;
  flex: auto;
  align-self: center;
}
.how-wedo p{
  text-align: center !important;
}
.box{
  width: 200px;
  height: 200px;
  margin: auto;
  text-align: center;

  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  align-self: center;

  /* border: 6px solid transparent; */
}
.box img {
  width: 150px; height: 150px;
}
.content-flex div{
  margin: 0 1rem;
}
.int-cliente{
  width: 180px;
  height: 180px;
  background-position: left top;
}
.int-cliente:hover{
  cursor: pointer;
  /*background-position: right top;*/
}
.guto{ background: url('../img/guto.svg') no-repeat; background-size: 360px 180px;}
.temis{ background: url('../img/temis.svg') no-repeat; background-size: 360px 180px; }
.dayka{ background: url('../img/dayka-grey.png') no-repeat; background-size: 180px 80px; background-position: right; }
.ptla{ background: url('../img/ptla-grey.png') no-repeat; background-size: 178px 50px; background-position: right; }
.trabalhe-tranquilo{ background: url('../img/trabalhe-tranquilo-grey.png') no-repeat; background-size: 189px 150px; background-position: right; }
.sest{ background: url('../img/sest.svg') no-repeat; background-size: 360px 180px; }
.ammpla{ background: url('../img/ammpla.svg') no-repeat; background-size: 360px 180px; }
.prefeitura-pe{ background: url('../img/prefeitura_petrolina.png') no-repeat; background-size: 180px; background-position: center; }
.paula-traduz{ background: url('../img/ptraduz.svg') no-repeat; background-size: 360px 180px; }
.total{ background: url('../img/total-grey.png') no-repeat; background-size: 178px 50px; background-position: right; }
.p2m{ background: url('../img/p2m.png') no-repeat; background-size: 140px 140px; background-position: center;}
.rep{ background: url('../img/rep.png') no-repeat; background-size: 220px 110px; background-position: center;}
.card-business{
  width: 1050px;
  margin: 1rem auto;
  padding: 1rem;
  background-color: #fff;

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  /*display: -webkit-flex;
  display: flex;*/

  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;

  /* flex-direction: column; */

  justify-content: center;
  align-content: center;
  align-items: center;
}
.address, .maps{
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  align-self: center;
  /*margin: auto;*/
  text-align: left;
}
.contact{
/*   -webkit-order: 2;
  order: 2; */
}
.contact img{ height: 0.8rem; }
.address{
  width: 300px;
  /*margin-right: 0;*/
  /*margin: -left: 0;*/

  margin-left: 40px;
  -webkit-order: 3;
  order: 3;
}
.address ul a{ margin: auto; color: #999; } .address ul a:hover{ opacity: 0.8; }
.address ul span{
  width: 20px;
  height: 30px;
  margin: 8px 0 -40px -30px;
  float: left;
  background: url('../img/nav-icons-grey.svg') no-repeat;
  background-position: top right;
  display: inline-block;
}
.maps{
  width: 620px;
  height: 300px;
  margin-left: 0;
  /*border-radius: 300px;*/
  /*border: 2px solid #80C757;*/
  background: url('../img/bg-maps-re.jpg') no-repeat center;
  background-size: cover;
  /*box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
              0 3px 14px 2px rgba(0, 0, 0, 0.12),
              0 5px 5px -3px rgba(0, 0, 0, 0.4);*/

  -webkit-order: 1;
  order: 1;
}
