body {
  font-family: "Arial", sans-serif;
}

.wf-barlow-n3-active body,
.wf-barlow-n5-active body,
.wf-barlow-n7-active body {
  font-family: "Ubuntu", sans-serif;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3);
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3);
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.3);
}
:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3);
}

/**
 * ======================================================================================================= *
 */
.loading {
  float: left;
  width: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999999;
  background: rgba(0, 0, 0, 0.3);
}
.loading.active {
  display: block;
}
.loading .loadingbox {
  position: relative;
  float: left;
  width: 80px;
  height: 120px;
  left: 50%;
  top: 50%;
  margin: -60px -40px;
  text-align: center;
  font: 400 0.8rem "Barlow";
  text-transform: uppercase;
  color: #2fa767;
}
.loading .loadingbox div.icon {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #2fa767;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**
 *  link
 * ======================================================================================================= *
 */
.default-link {
  font-weight: 800;
  color: #2fa767;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 2px solid #2fa767;
}
.strupper {
  text-transform: uppercase;
}

/**
 * 
 * ======================================================================================================= *
 */
.float-lft {
  float: left;
}
.float-rgt {
  float: right;
}

/**
 * 
 * ======================================================================================================= *
 */
.fz0-7rem {
  font-size: 0.7rem !important;
}
.fz0-8rem {
  font-size: 0.8rem !important;
}
.fz0-9rem {
  font-size: 0.9rem !important;
}
.fz1rem {
  font-size: 1rem !important;
}
.fz1-25rem {
  font-size: 1.25rem !important;
}
.fz1-5rem {
  font-size: 1.5rem !important;
}

.bold {
  font-weight: 800;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mt-50 {
  margin-top: 50px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}

.mr-0 {
  margin-right: 0px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mr-25 {
  margin-right: 25px !important;
}

.ml-0 {
  margin-left: 0px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-25 {
  margin-left: 25px !important;
}

.pad-0 {
  padding: 0 !important;
}
.img-circle {
  border-radius: 50%;
}

.aling-rgt {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase !important;
}

/**
 * colors
 * ======================================================================================================= *
 */
.color-highlight {
  color: #2fa767 !important;
}
.color-white {
  color: #fff !important;
}
.color-red {
  color: #ff0a53 !important;
}

.hover-color-red:hover {
  color: #ff0a53 !important;
}
.hover-color-highlight:hover {
  color: #2fa767 !important;
}

/**
 * backgrounds
 * ======================================================================================================= *
 */
.bg-highlight {
  background-color: #2fa767 !important;
}
.bg-red {
  background-color: #ff0a53 !important;
}

/**
 * toggle class
 * ======================================================================================================= *
 */
.display-hide {
  display: none;
}
.display-show {
  display: block;
}

/**
 * colluns teplate
 * ======================================================================================================= *
 */
.row {
  float: left;
  width: 100%;
}
.row::after {
  content: "";
  clear: both;
  display: table;
  margin-bottom: 5px;
}
[class*="col-"] {
  float: left;
  margin: 5px;
}
.col-1 {
  width: calc(8.33% - 10px);
}
.col-2 {
  width: calc(16.66% - 10px);
}
.col-3 {
  width: calc(25% - 10px);
}
.col-4 {
  width: calc(33.33% - 10px);
}
.col-5 {
  width: calc(41.66% - 10px);
}
.col-6 {
  width: calc(50% - 10px);
}
.col-7 {
  width: calc(58.33% - 10px);
}
.col-8 {
  width: calc(66.66% - 10px);
}
.col-9 {
  width: calc(75% - 10px);
}
.col-10 {
  width: calc(83.33% - 10px);
}
.col-11 {
  width: calc(91.66% - 10px);
}
.col-12 {
  width: calc(100% - 10px);
}

/**
 * buttons
 * ======================================================================================================= *
 */
.btn-text {
  text-transform: uppercase;
  font: 800 0.9em "Barlow";
  padding: 10px;
  cursor: pointer;
}

/*!
 * 
 *  @author     -   Guilherme Aquinio <gui@aquino.ind.br> Instagram (e Facebook): @aquino.pro
 *  @release    -   FEV 2018
 *  
 */
* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
}
body {
  background: #f1f1f1;
}
a {
  cursor: pointer;
}
.message-error,
.message-success {
  float: left;
  width: 100%;
  padding: 50px 30px;
  color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 999999;
  display: none;
  font-family: "Ubuntu", sans-serif;
  list-style: none;
}
.message-error *,
.message-success * {
  list-style: none;
}
.message-error.active,
.message-success.active {
  display: block;
}
.message-error a,
.message-success a {
  float: right;
  width: 100%;
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  cursor: pointer;
}

.message-success {
  background: #3484cf;
}
.message-error {
  background: #ee0d51;
}

.message-error h3,
.message-success h3 {
  font-size: 2em;
  padding: 0;
  margin: 0;
}
.message-error p,
.message-success p {
  font-size: 1em;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cta-whatsapp {
  position: fixed;
  width: 300px;
  height: 80px;
  bottom: -100px;
  right: 3vh;
  opacity: 0;
  border-radius: 5px;
  background: #25d366;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  transition: all 1200ms ease;
  -o-transition: all 1200ms ease;
  -ms-transition: all 1200ms ease;
  -moz-transition: all 1200ms ease;
}
.cta-whatsapp.show {
  opacity: 1;
  bottom: 3vh;
}
.cta-whatsapp .icon {
  float: left;
  width: 50px;
  height: 80px;
  font-size: 2rem;
  line-height: 80px;
  text-align: right;
  color: #fff;
}
.cta-whatsapp .label {
  float: left;
  width: 250px;
  height: 80px;
  padding: 15px 20px;
}
.cta-whatsapp .label .title {
  float: left;
  width: 100%;
  font: 400 1.5rem "Ubuntu", sans-serif;
  color: #fff;
}
.cta-whatsapp .label .text {
  float: left;
  width: 100%;
  font: 400 1rem "Ubuntu", sans-serif;
  color: #fff;
}
/* font-family: 'Lato', sans-serif; */

/** 
 * ======================================================================================================= **/
.toggle-menu {
  display: none;
  position: fixed;
  right: 15px;
  top: 15px;
  width: 60px;
  height: 60px;
  color: #284355;
  line-height: 54px;
  font-size: 1.5em;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #223949;
  z-index: 999999;
}
.padding-header {
  float: left;
  width: 100%;
  height: 90px;
}
.main-header {
  float: left;
  width: 100%;
  height: 90px;
  padding: 15px 20px;
  position: fixed;
  z-index: 99999;
  background: #284355;
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.main-header ul li,
.main-header ul li a,
.main-header ul li a:before {
  float: left;
  list-style: none;
  transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
}
.main-header ul li:last-child,
.main-header ul li:last-child a {
  margin-right: 0;
}
.main-header .logo {
  float: left;
  width: 130px;
  height: 60px;
}
.main-header .logo img {
  float: left;
  width: 100%;
}
.main-header .main-menu {
  float: left;
  padding-left: 20px;
  width: calc(100% - (130px + 170px + 250px));
}
.main-header .main-menu a {
  position: relative;
  font: 300 0.9rem/60px "Ubuntu", sans-serif;
  color: #fff;
  margin-left: 10px;
}
.main-header .social-menu {
  float: left;
  height: 60px;
  width: 170px;
}
.main-header .social-menu a {
  float: left;
  width: 50px;
  margin-top: 5px;
  margin-right: 10px;
  height: 50px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  line-height: 50px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}
.main-header .social-menu ul li:last-child a {
  margin-right: 0;
}
.main-header .buttons-menu {
  float: left;
  width: 250px;
  height: 60px;
  padding-left: 10px;
}
.main-header .buttons-menu a {
  float: left;
  width: 110px;
  margin-top: 5px;
  margin-right: 10px;
  height: 50px;
  border: 2px solid #fff;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background: transparent;
  border-radius: 3px;
  text-transform: uppercase;
  font: 800 0.8rem/50px "Ubuntu", sans-serif;
}

.main-header .main-menu a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #fff;
  margin-top: 45px;
}
.main-header .main-menu a:hover:before {
  width: 100%;
}
.main-header .social-menu a:hover {
  color: #2fa767;
}
.main-header .buttons-menu a:hover {
  background: #fff;
  color: #2fa767;
}

.main-header .buttons-menu .blue-btn,
a.blue-btn {
  border: 2px solid #0c6199;
  color: #fff;
  background: #0e6aa7;
}
.main-header .buttons-menu .blue-btn:hover,
a.blue-btn:hover {
  color: #fff;
  background: #0e71b3;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.main-header .buttons-menu .green-btn,
a.green-btn {
  border: 2px solid #2fa767;
  color: #fff;
  background: #2fa767;
}
.main-header .buttons-menu .green-btn:hover,
a.green-btn:hover {
  color: #fff;
  background: #2cc071;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/**
 *  
 * ======================================================================== */
.blognav {
  float: left;
  position: fixed;
  left: 0;
  top: -420px;
  width: 100%;
  height: 340px;
  background: #203847;
  padding: 30px;
  opacity: 1;
  visibility: visible;
  backface-visibility: visible;
  z-index: 999;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
}
.blognav.active {
  top: 80px;
  opacity: 1;
  z-index: 9999999;
  visibility: visible;
  backface-visibility: visible;
}
.blognav .categories {
  float: left;
  width: 300px;
  height: 280px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.blognav ul li {
  list-style: none;
}

.blognav ul li a {
  float: left;
  list-style: none;
  width: 100%;
  font: 400 1rem "Ubuntu", sans-serif;
  margin-bottom: 5px;
  text-decoration: none;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.blognav ul li a:hover {
  color: #fff;
}
.blognav .title {
  float: left;
  width: 100%;
  font: 200 1.5rem "Ubuntu", sans-serif;
  margin-bottom: 30px;
  color: #fff;
  opacity: 0.6;
}
.blognav .recent-articles {
  float: left;
  width: calc(100% - 300px);
  padding-left: 30px;
  height: 280px;
}
.blognav .recent-articles .wrapper {
  float: left;
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  overflow-x: visible;
}
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  border-radius: 10px;
  z-index: -1;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: -1;
}
.blognav .recent-articles .wrapper::-webkit-scrollbar-thumb {
  background: #fff;
}

.blognav .recent-articles ul {
  width: auto;
  width: calc(290px * 12);
}
.blognav .recent-articles ul li {
  float: left;
  width: 280px;
  height: 200px;
  border-radius: 5px;
  padding: 25px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.02);
  /* background: red; */
  margin-right: 10px;
  margin-bottom: 10px;
}
.blognav .recent-articles ul li .category {
  float: left;
  width: 100%;
  font-size: 0.9rem;
  margin-bottom: 25px;
}
.blognav .recent-articles ul li .article-title {
  float: left;
  width: 100%;
  font-weight: 800;
  text-transform: none;
}

/**
 *  
 * ======================================================================== */
.homepage .page-cover {
}
.section-text {
  float: left;
  width: 100%;
  padding: 0 10%;
}
.homepage .counters {
  float: left;
  width: 100%;
  padding: 100px;
  background: #203847;
}
.homepage .counters ul {
  float: left;
  width: 100%;
  margin-top: 150px;
}
.homepage .counters ul li {
  float: left;
  list-style: none;
  background: rgba(0, 0, 0, 0.2);
  margin-right: 20px;
  margin-bottom: 70px;
  width: calc((100% - 80px) / 4);
  /* height: 100px; */
  padding: 30px;
  text-align: center;
}
.homepage .counters ul li:nth-of-type(4n-4) {
  margin-right: 0;
}
.homepage .counters ul li .value {
  float: left;
  width: 100%;
  margin-top: -80px;
  font: 800 5rem "Ubuntu", sans-serif;
  color: #2fa767;
  margin-bottom: 40px;
}
.homepage .counters ul li .text {
  float: left;
  width: 100%;
  text-transform: uppercase;
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #fff;
}

.homepage .white-title {
  float: left;
  width: 100%;
  text-align: center;
  font: 200 1.5rem "Ubuntu", sans-serif;
  color: rgb(114, 114, 114);
}
.homepage .focuses {
  width: 100%;
  height: auto;
  padding: 50px 0;
  min-height: 80vh;
  display: flex;
}
.homepage .focuses div {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 25%;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}
.homepage .focuses div:nth-child(1) {
  background: #284355;
}
.homepage .focuses div:nth-child(2) {
  background: #55282d;
}
.homepage .focuses div:nth-child(3) {
  background: #28553d;
}
.homepage .focuses div:nth-child(4) {
  background: #505528;
}
.homepage .focuses div h3 {
  font: 800 2.5rem/2.75rem "Ubuntu", sans-serif;
  color: #fff;
  margin-bottom: 40px;
}
.homepage .focuses div p {
  padding: 0 10px;
  margin-top: 20px;
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #fff;
}
.homepage .focuses div a {
  width: 200px;
  margin: 50px auto 0 auto;
  text-align: center;
  border-radius: 3px;
  height: 50px;
  color: #fff;
  font: 400 0.9rem/50px "Ubuntu", sans-serif;
  background: #25d366;
}

.home-poscover {
  float: left;
  width: 100%;
  margin-top: 00px;
  padding: 0 calc((100% - 1200px) / 2);
  padding-bottom: 100px;
  flex-direction: row;
}
.home-poscover .image {
  position: relative;
  float: left;
  width: 300px;
  height: 400px;
}
.home-poscover .bg {
  width: 300px;
  height: 400px;
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-poscover .image:before {
  float: left;
  position: absolute;
  content: " ";
  top: 20px;
  left: 20px;
  width: 300px;
  height: 400px;
  background: #2fa767;
  z-index: 0;
}
.home-poscover .data {
  float: left;
  position: relative;
  width: calc(100% - 300px);
}
.home-poscover .data h2 {
  float: left;
  text-align: left;
  color: #2fa767;
  padding-right: 50%;
}
.home-poscover .data p {
  float: left;
  text-align: left;
  width: 100%;
  padding-right: 100px;
  font-size: 0.9rem;
  color: #7f8381;
}
.home-poscover .data .block {
  float: left;
  width: 50%;
  margin-top: 40px;
}
.home-poscover .data .block .icon {
  font-size: 4rem;
  color: #2fa767;
}
.home-poscover .data .block p {
  width: 100%;
  padding-right: 30px;
}
.home-poscover .cover-cta {
  float: left;
  position: relative;
  margin-top: 20px;
  text-transform: uppercase;
}
.page-cover-home .text {
  /* background: blue; */
  min-height: 0 !important;
  height: auto !important;
}

/***  
 * ======================================================================== */
.graph {
  position: relative;
  display: flex;
  width: 100%;
}
svg {
  /* background: red; */
  margin: 0 auto;
  padding: 0;
  width: 740px;
  height: 340px;
}

polyline {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s ease-in forwards;
  animation-iteration-count: 1;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.labels {
  left: 20%;
  top: 70px;
  width: 250px;
  float: left;
  position: absolute;
}
.labels div {
  float: left;
  width: 100%;
}
.labels div i {
  float: left;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 50%;
}
.labels div.green i {
  background: #25d366;
}
.labels div.blue i {
  background: #3b5998;
}
.labels div span {
  text-transform: uppercase;
  font: 800 1rem/25px "Ubuntu", sans-serif;
  color: #fff;
}

/**
 *  
 * ======================================================================== */
.section-testimony {
  float: left;
  width: 100%;
  margin-top: 50px;
}
.testimonies {
  float: left;
  width: 100%;
  /* margin-top: 50px; */
}
.testimonies .testimony {
  /* float: left; */
  /* background: red; */
  padding-right: 20px;
  padding-top: 150px;
  padding-bottom: 30px;
}
.testimonies .testimony .card {
  float: left;
  width: 100%;
  height: auto;
  min-height: 420px;
  padding: 35px;
  border-radius: 5px;
  background: #fff;
}
.testimonies .testimony .card .image {
  float: left;
  width: 40%;
  margin: -100px 30% 20px 30%;
  border-radius: 50%;
  overflow: hidden;
}
.testimonies .testimony .card .image img {
  float: left;
  width: 100%;
}
.testimonies .testimony .card p,
.testimonies .testimony .card .name {
  float: left;
  font: 400 1rem "Ubuntu", sans-serif;
  text-align: center;
  color: #656565;
  width: 100%;
}
.testimonies .testimony .card .job {
  float: left;
  font: 800 1rem "Ubuntu", sans-serif;
  text-align: center;
  margin-bottom: 30px;
  color: #a82937;
  width: 100%;
}
.testimonies .testimony .card p {
  /* min-height: 180px; */
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #a82937;
}
.slick-dots li.slick-active {
  background: #a82937;
}
.slick-dots li button:before {
  display: none;
}

/**
 *  
 * ======================================================================== */
.methodology {
  float: left;
}
.methodology .blocks {
  float: left;
  width: 100%;
  height: auto;
  padding: 100px calc((100% - 1200px) / 2);
  background: #203847ee;
}
.section-text,
.methodology .blocks .text {
}
.section-text h2,
.methodology .blocks .text h2 {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}
.section-text p,
.methodology .blocks .text p {
  float: left;
  width: calc(100% - 250px);
  color: #fff;
}
.section-text a,
.methodology .blocks .text a {
  float: right;
  width: 200px;
  text-align: center;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
}

.methodology .blocks ul {
  float: left;
  width: 100%;
  margin-top: 80px;
}
.methodology .blocks ul li {
  float: left;
  padding: 30px;
  list-style: none;
  width: calc((100% - 60px) / 4);
  margin-right: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
}
.methodology .blocks ul li:last-of-type {
  margin-right: 0;
}
.methodology .blocks ul li .icon {
  color: #2fa767;
  font-size: 4rem;
  margin-top: -60px;
  margin-bottom: 20px;
}
.methodology .blocks ul li h3 {
  font: 800 1.1rem "Ubuntu", sans-serif;
  color: #2fa767;
  margin-bottom: 15px;
}
.methodology .blocks ul li p {
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #fff;
}
.methodology .steps {
}
.methodology .steps .step {
  width: 100%;
  height: auto;
  background: #203847ee;
  display: flex;
}
.methodology .steps .step .timeline {
  display: block;
  position: relative;
  width: 40%;
  height: auto;
  padding: 40px;
  padding-left: calc(40% - 400px);
  background: rgba(0, 0, 0, 0.1);
}
.methodology .steps .step .timeline .number {
  float: left;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  border: 5px solid #fff;
  font: 800 1rem "Ubuntu", sans-serif;
  color: #fff;
  padding-top: 15px;
}
.methodology .steps .step .timeline .number:before {
  content: " ";
  width: 5px;
  display: block;
  position: absolute;
  background: #fff;
  border-radius: 3px;
  margin-top: 100px;
  margin-left: 40px;
  height: calc(100% - 200px);
}
.methodology .steps .step:last-child .timeline .number:before {
  opacity: 0;
}
.methodology .steps .step .timeline .number span {
  float: left;
  width: 100%;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.methodology .steps .step .timeline .data {
  color: #fff;
  margin-top: 120px;
  margin-left: 100px;
}
.methodology .steps .step .timeline .data h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.methodology .steps .step .timeline .data p {
  font: 200 0.75rem "Ubuntu", sans-serif;
}
.methodology .steps .step .extra {
  display: flex;
  width: calc(100% - 400px);
  padding: 100px 50px;
}
.methodology .steps .step .extra .text {
  display: block;
  width: calc(100% - 300px);
  color: #fff;
}
.methodology .steps .step .extra .text h3 {
  margin-bottom: 5px;
}
.methodology .steps .step .extra .text p {
  font: 200 0.9rem "Ubuntu", sans-serif;
  margin-bottom: 30px;
}
.methodology .steps .step .extra .video {
  display: block;
  width: 300px;
}

.package {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}
.package h3 {
  color: #fff;
  float: left;
  font: 800 1.5rem "Ubuntu", sans-serif;
  border-bottom: 3px solid #fff;
  margin-bottom: 20px;
}
.package {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}
.package .video-wrapper {
  float: left;
  width: 100%;
}
.package .video {
  float: left;
  width: 50%;
  height: auto;
  position: relative;
}
.package .video .embed {
  position: relative;
  left: 0;
  top: 0;
  float: left;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.1);
}
.package .video .embed iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.package p {
  float: left;
  width: 100%;
  color: #fff;
  padding-right: 40%;
  font: 400 1rem/1.5em "Ubuntu", sans-serif;
}
.package ul {
  float: left;
  width: 100%;
  margin: 0;
}
.package li {
  color: #fff;
  position: relative;
  width: calc((100% - 30px) / 4);
  margin-right: 10px !important;
  margin-bottom: 10px;
  font: 400 1rem "Ubuntu", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.package li a {
  color: #fff;
}
.package li:nth-child(4n-4) {
  margin-right: 0;
}
.package li.cta a {
  font: 800 1.25rem "Ubuntu", sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25d366;
  color: #28553d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/**
 *  
 * ======================================================================== */
.questions {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 0 calc((100% - 600px) / 2);
  top: 0;
  left: 0;
  background: #203847ee;
  z-index: 999999;
  display: none;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.questions.active {
  display: flex;
}
.questions .step {
  display: none;
  float: left;
  width: 100%;
  height: auto;
  min-height: 350px;
  background: #fff;
  padding: 40px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
}
.questions .step.active {
  display: flex;
  flex-direction: column;
  justify-content:space-between;
}
.questions .step h5 {
  font: 200 1.25rem "Ubuntu", sans-serif;
  color: #203847;
}
.questions .step .choose {
  float: left;
  width: 100%;
  margin-top: 40px;
}
.questions .step .next,
.questions .step .choose label {
  float: left;
  width: calc(50% - 10px);
  border: 2px solid #203847;
  height: 50px;
  margin-top: 20px;
  text-align: center;
  text-transform: uppercase;
  line-height: 50px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
.questions .step .choose label:first-child {
  margin-right: 20px;
}
.questions .step .choose label input {
  opacity: 0;
}
.questions .step .choose .red {
  color: #df0b4a;
  border-color: #df0b4a;
}
.questions .step .next,
.questions .step .choose .green {
  color: #20ca5f;
  border-color: #20ca5f;
}
.questions .step .choose .red:hover {
  color: #fff;
  background: #df0b4a;
}
.questions .step .next:hover,
.questions .step .choose .green:hover {
  color: #fff;
  background: #20ca5f;
}
.questions .step .next {
  float: right;
}

.questions .step.form input,
.questions .step.form textarea {
  float: left;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  background: #f9f9f9;
  padding: 0 20px;
  color: #284355;
  margin-bottom: 10px;
  border: 1px solid #eeebeb;
  font: 400 1rem/50px "Ubuntu", sans-serif;
}
.questions .step.form textarea {
  height: 100px;
  padding: 20px;
  line-height: 1rem;
}
.questions .step.form input[type="submit"] {
  background: #2fa767;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font: 800 1rem/50px "Ubuntu", sans-serif;
  cursor: pointer;
}

/**
 *  
 * ======================================================================== */
.contact-aside {
  position: fixed;
  float: left;
  width: 690px;
  height: 100vh;
  right: -690px;
  top: 0;
  box-shadow: 0;
  background: #28553d;
  z-index: 99999;

  transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
.contact-aside.active {
  right: 0;
  top: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.contact-aside .bar {
  float: left;
  position: relative;
  width: 100px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}
.contact-aside .bar .close {
  float: left;
  width: 100%;
  font: 400 1rem "Ubuntu", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin: 20px 0;
  color: #fff;
  cursor: pointer;
}
.contact-aside .bar .close:before {
  content: "";
  margin-top: 20px;
  width: 60px;
  height: 2px;
  background: #fff;
  position: absolute;
}
.contact-aside .bar ul {
  width: 100%;
  margin-top: 60px;
  height: calc(100vh - 60px);
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-aside .bar li {
  margin-bottom: 10px;
}
.contact-aside .bar li a {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 1.75rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}

.contact-aside .content {
  position: relative;
  width: calc(100% - 100px);
  height: 100vh;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.contact-aside .content > .title {
  display: block;
  color: #fff;
  font: 400 2rem "Ubuntu", sans-serif;
}
.contact-aside .content .testimony {
  display: block;
}
.contact-aside .content .testimony .person {
}
.contact-aside .content .testimony p {
  float: left;
  width: 100%;
  color: #fff;
  margin-bottom: 10px;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif;
}
.contact-aside .content .testimony .person .avatar {
  float: left;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-size: cover;
}
.contact-aside .content .testimony .person .name {
  float: left;
  width: calc(100% - 80px);
  padding-left: 15px;
  color: #fff;
  margin-top: 10px;
  font: 400 1.5rem "Ubuntu", sans-serif;
}
.contact-aside .content .testimony .person .jobtitle {
  float: left;
  width: calc(100% - 80px);
  padding-left: 15px;
  color: #fff;
  font: 400 1rem "Ubuntu", sans-serif;
}
form.default-form {
  display: block;
  padding: 0 50px;
}
.default-form input,
.default-form button {
  float: left;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  background: #fff;
  padding: 0 20px;
  color: #284355;
  margin-bottom: 10px;
  font: 400 1rem/50px "Ubuntu", sans-serif;
}
.default-form button {
  background: #2fa767;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font: 800 1rem/50px "Ubuntu", sans-serif;
}
.contact-aside .cta-whatsapp {
  position: relative;
  /* margin-top: 40px; */
  float: left;
  display: block;
  width: 100%;
  bottom: 0;
  right: 0;
  opacity: 1;
  display: none;
}

/**
 * ======================================================================================================= *
 */
.cv-regsiter {
  float: left;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 calc((100% - 900px) / 2) 40px;
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  margin-top: -40vh;
  z-index: 99;
}
.cv-regsiter h2 {
  float: left;
  width: 100%;
  text-align: center;
  font: 200 1.5rem "Ubuntu", sans-serif;
  color: #223949;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 50px;
}
.cv-regsiter h2:first-child {
  margin-top: 0;
}
.cv-regsiter .SumoSelect,
.cv-regsiter .SumoSelect .SelectBox,
.cv-regsiter input,
.cv-regsiter select,
.cv-regsiter textarea {
  float: left;
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 2px solid #e9e9e9;
  background: #f9f9f9;
  font: 400 1rem/40px "Ubuntu", sans-serif;
  padding: 0 10px;
  color: #223949;
  appearance: none;
  -webkit-appearance: none;
}
.cv-regsiter .SumoSelect {
  padding: 0;
}
.cv-regsiter .SumoSelect .SelectBox {
  border: none;
  background: transparent;
}
.cv-regsiter .SumoSelect .opt {
  font: 400 0.9rem/20px "Ubuntu", sans-serif;
}
.cv-regsiter .SumoSelect .SelectBox:hover,
.cv-regsiter .SumoSelect .SelectBox:hover {
  box-shadow: none;
}

.cv-regsiter input:focus,
.cv-regsiter select:focus,
.cv-regsiter textarea:focus {
  border-color: #223949;
  background: #fff;
}
.cv-regsiter textarea {
  height: 160px;
}
.cv-regsiter input[type="submit"] {
  margin-top: 30px;
  background: #223949;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.cv-regsiter .group-item {
  float: left;
  width: 100%;
  margin-top: 25px;
  border-top: 1px solid #e9e9e9;
  padding-top: 10px;
}
.cv-regsiter .group-item:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

/**
 * ======================================================================================================= *
 */
.login-popup .background,
.login-popup {
  float: left;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
}
.login-popup {
  visibility: hidden;
  backface-visibility: hidden;
}

.login-popup .background {
  position: relative;
  top: -100%;
  background: #28553d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;

  transition: all 550ms ease-in-out 200ms;
  -o-transition: all 550ms ease-in-out 200ms;
  -ms-transition: all 550ms ease-in-out 200ms;
  -moz-transition: all 550ms ease-in-out 200ms;
}

.login-popup .form {
  float: left;
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 50%;
  margin-top: 000px;
  margin-left: -200px;
  border-radius: 5px;
  background: #fff;
  padding: 50px;
  z-index: 99999999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  opacity: 0;

  transition: all 550ms ease-in-out;
  -o-transition: all 550ms ease-in-out;
  -ms-transition: all 550ms ease-in-out;
  -moz-transition: all 550ms ease-in-out;
}
.login-popup.active {
  visibility: visible;
  backface-visibility: visible;

  transition: all 550ms ease-in-out;
  -o-transition: all 550ms ease-in-out;
  -ms-transition: all 550ms ease-in-out;
  -moz-transition: all 550ms ease-in-out;
}
.login-popup .form .close {
  position: absolute;
  float: left;
  width: 85px;
  right: 0px;
  top: -30px;
  font: 800 1rem "Ubuntu", sans-serif;
  color: #fff;
  opacity: 1;
  cursor: pointer;
}
.login-popup .form .close .icon {
  float: right;
  position: relative;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.login-popup .form * {
  position: relative;
  z-index: 99999;
}
.login-popup.active .background {
  top: 0;
  opacity: 1;
}
.login-popup.active .form {
  opacity: 1;
  margin-top: -200px;

  transition: all 550ms ease-in-out 200ms;
  -o-transition: all 550ms ease-in-out 200ms;
  -ms-transition: all 550ms ease-in-out 200ms;
  -moz-transition: all 550ms ease-in-out 200ms;
}
.login-popup .title {
  display: block;
  font: 200 1.75rem "Ubuntu", sans-serif;
  margin-bottom: 30px;
  color: #3f3f3f;
}
.login-popup label {
  float: left;
  position: relative;
  width: 100%;
}
.login-popup .icon {
  position: absolute;
  width: 40px;
  height: 50px;
  top: 0;
  left: 0;
  text-align: center;
  line-height: 50px;
  margin-top: 0;
  color: #ebebeb;
}
.login-popup input {
  width: 100%;
  height: 50px;
  font: 400 1.1rem/50px "Ubuntu", sans-serif;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0 0 0 50px;
  margin: 0 0 15px 0;
  border-bottom: 2px solid #f0f0f0;
  color: #28553d;
}
.login-popup footer {
  float: left;
  width: 100%;
  /* margin-top: 30px; */
}
.login-popup .warnning,
.login-popup .cta-text {
  float: left;
  width: 50%;
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #636363;
  padding-top: 10px;
}
.login-popup .warnning {
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
  padding-top: 25px;
}
.login-popup a {
  color: #28553d;
  text-decoration: none;
  text-transform: uppercase;
}
.login-popup .forgot {
  float: left;
  width: 100%;
}
.login-popup .forgot a {
  float: left;
  width: 100%;
  color: #df0b4a;
  margin-top: 20px;
  text-align: center;
  font: 800 0.9rem "Ubuntu", sans-serif;
}
.login-popup .forgot a:hover {
  color: #ee0d51;
}
.login-popup button {
  float: right;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: none;
  text-transform: uppercase;
  font: 800 1.1rem/50px "Ubuntu", sans-serif;
  text-align: center;
  color: #fff;
  background: #28553d;
}
.login-popup .facebook-auth {
  float: left;
  width: 100%;
  height: 40px;
  border: 2px solid #3b5998;
  color: #3b5998;
  border-radius: 3px;
  padding-left: 60px;
  font: 800 0.9rem/38px "Ubuntu", sans-serif;
  margin-bottom: 30px;
}
.login-popup .facebook-auth .icon {
  color: #3b5998;
  font-size: 1.25rem;
  line-height: 36px;
}

/**
 * ======================================================================================================= *
 */
.article-view {
  float: left;
  width: 100%;
}
.article-view header {
  position: relative;
  float: left;
  width: 100%;
  padding: 70px 15% 150px 15%;
  background: #203847;
}
.article-view .category {
  float: left;
  width: 100%;
  font: 400 1rem/1rem "Ubuntu", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.article-view .title {
  float: left;
  width: 100%;
  padding-right: 25%;
  font: 800 2.5rem/1.25em "Ubuntu", sans-serif;
  color: #fff;
}
.article-view .author {
  float: left;
  width: 100%;
  margin-top: 40px;
}
.article-view .author .image {
  float: left;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #fff;
  background-size: cover;
  background-position: center;
}
.article-view .author .name {
  float: left;
  margin-top: 10px;
  padding-left: 10px;
  width: calc(100% - 80px);
  font: 800 1.25rem/1em "Ubuntu", sans-serif;
  color: #fff;
}
.article-view .author small {
  float: left;
  width: 100%;
  font-weight: 400;
  font-size: 0.9rem;
}

.leadbox-cta {
  position: relative;
  float: left;
  width: 70%;
  left: 15%;
  padding: 45px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.article-view .leadbox-cta {
  position: absolute;
  bottom: -75px;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.leadbox-cta .message {
  width: 40%;
  display: block;
}
.leadbox-cta .message .cta-title {
  float: left;
  width: 100%;
  text-transform: uppercase;
  font: 200 1.5rem/1em "Ubuntu", sans-serif;
  color: #979797;
  margin-bottom: 10px;
}
.leadbox-cta .message .cta-text {
  float: left;
  width: 100%;
  padding-right: 40px;
  font: 800 1.25rem/1em "Ubuntu", sans-serif;
  color: #707070;
}
.leadbox-cta a {
  display: block;
  width: 350px;
  height: 55px;
  border-radius: 30px;
  text-align: center;
  text-transform: uppercase;
  font: 800 0.9rem/55px "Ubuntu", sans-serif;
  color: #fff;
  border: none;
  background: #2fa767;
  -webkit-appearance: none;
}

/**
 * ======================================================================================================= *
 */
.article-list {
  float: left;
  width: 80%;
  margin: 100px 10%;
  z-index: 1;
  position: relative;
}
.article-list .article-list-item {
  float: left;
  list-style: none;
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  background: #fff;
  z-index: 1;
  position: relative;
  transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.article-list .article-list-item:nth-child(3n-3) {
  margin-right: 0;
}
.article-list .article-list-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.article-list-item header {
  float: left;
  width: 100%;
}
.article-list-item header .cover {
  float: left;
  width: 100%;
  height: 0;
  margin: 0;
  padding-top: 50%;
  border-radius: 5px 5px 0 0;
  background-position: center;
  background-size: cover;
}
.article-list-item header .author {
  float: left;
  width: 100%;
  margin-top: -35px;
  padding: 0 20px;
}
.article-list-item header .author .avatar {
  float: left;
  width: 80px;
  height: 80px;
  border: 5px solid #fff;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}
.article-list-item header .author .author-name {
  float: left;
  padding-top: 50px;
  width: calc(100% - 80px);
  padding-left: 10px;
  font: 400 1rem "Ubuntu", sans-serif;
  color: #707070;
}
.article-list-item .data {
  float: left;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: center;
}
.article-list-item .data > div {
  flex: 1;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.article-list-item .data .title {
  /* float: left; */
  display: inline-block;
  width: 100%;
  font: 400 1.2rem/1.25rem "Ubuntu", sans-serif;
  color: #284355;
  margin-bottom: 10px;
}
.article-list-item .data .info {
  /* float: left; */
  float: left;
  width: 50%;
  font: 400 0.8rem/0.9rem "Ubuntu", sans-serif;
  color: #707070;
}
.article-list-item .data .info.left {
  text-align: left;
}
.article-list-item .data .info.right {
  text-align: right;
}
.article-list-item .resume {
  /* float: left; */
  flex: 1;
  width: 100%;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif;
  color: #707070;
}

.article-list-item footer {
  width: 100%;
  height: 40px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.article-list-item footer .badge .group:last-child {
  margin: 0;
}
.article-list-item footer .badge .icon {
  float: left;
  width: 25px;
  line-height: 40px;
  color: #284355;
}
.article-list-item footer .badge .icon.blue {
  color: #4385f6;
}
.article-list-item footer .badge .icon.red {
  color: #f63e76;
}
.article-list-item footer .badge .value {
  float: left;
  font: 400 0.9rem/40px "Ubuntu", sans-serif;
  text-transform: uppercase;
  color: #979797;
}
.article-list-item footer .badge .value small {
  font-size: 0.5rem;
}

/**
 * ======================================================================================================= *
 */
.article-view .page-content {
  float: left;
  width: 70%;
  margin: 40px 15%;
  margin-top: 150px;
  border-radius: 5px;
  background: #fff;
  min-height: 500px;
  padding: 100px;
}
.article-view .page-content .cover-image {
  float: left;
  width: calc(100% + 200px);
  padding-top: calc((100% + 200px) * 0.3);
  background-size: cover;
  background-position: center;
  border-radius: 5px 5px 0 0;
  margin: -100px;
  margin-bottom: 70px;
}
/**
 * Body
 * ======================================================================================================= *
 */
.body {
  font-weight: 400;
  line-height: 2rem;
  font-size: 1.1rem;
  font-family: "Ubuntu", sans-serif;
  color: #464646;
}
.body p {
  margin-bottom: 40px;
}
.body h1,
.body h2,
.body h3,
.body h4,
.body h5,
.body h6 {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #5519eb;
}
.body ul,
.body ol {
  margin-left: 25px;
}
.body a {
  color: #5519eb;
}
.body img {
  float: left;
  width: calc(100% + 80px) !important;
  margin: 20px 0;
  margin-left: -40px;
}

/**
 *  
 * ======================================================================== */
.page-cover-about .blocks {
  float: left;
  width: 100%;
  display: flex;
  /* background: red; */
}
.page-cover-about .datafull,
.page-cover-about .blocks .data {
  display: flex;
  flex-direction: column;
  align-content: center;
  margin-right: 00px;
  padding: 30px;
  flex: 4;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  flex: 1;
}
.page-cover-about .datafull {
  float: left;
  width: 100%;
  font: 300 1.75rem "Ubuntu", sans-serif;
  color: #2fa767;
}
.page-cover-about .blocks .data:last-child {
  margin-right: 0;
}
.page-cover-about .blocks .data h2 {
  margin-bottom: 40px;
  font: 300 1.75rem "Ubuntu", sans-serif;
  color: #2fa767;
}
.page-cover-about .blocks .data p {
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif;
  color: #7f8381;
}

.member-list .member {
  float: left;
  width: 100%;
  display: flex;
}
.member-list .member .cover {
  display: block;
  width: 40%;
  background: blue;
  background-size: cover;
  background-position: center;
}
.member-list .member .data {
  display: block;
  flex-direction: inherit;
  width: 60%;
  min-height: 30vh;
  padding: 50px;
  background: #284355;
}
.member-list .member .data h5 {
  float: left;
  width: 100%;
  font: 800 0.9rem "Ubuntu", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.member-list .member .data h2 {
  float: left;
  width: 100%;

  font: 800 2.5rem "Ubuntu", sans-serif;
  color: #fff;
  margin-bottom: 50px;
}
.member-list .member .data .social {
  display: flex;
  flex-direction: inherit;
  width: 100%;
  margin-bottom: 80px;
}
.member-list .member .data .social a {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  margin-right: 10px;
}
.member-list .member .data .resume {
  font: 400 1rem/1.5rem "Ubuntu", sans-serif;
  color: #fff;
}

.member-list .member:nth-of-type(even) {
  flex-direction: row-reverse;
}
.member-list .member:nth-of-type(even) .cover {
}
.member-list .member:nth-of-type(even) .data {
  text-align: right;
}
.member-list .member:nth-of-type(even) .data .social a {
  margin-right: 0px;
  margin-left: 10px;
}

/**
 *  Partner css
 * ======================================================================== */
.partner-list {
  float: left;
  width: 100%;
  background-color: #284355;
}
.partner-list .content {
  margin: 120px 20%;
  margin-bottom: 40px !important;
  width: 60%;
}
.partner-list .content .title {
  text-align: center !important;
  font: 800 1.5rem "Ubuntu", sans-serif;
  color: #fff;
}
.partner-list .content .content-line {
  float: left;
  width: 100%;
  margin-top: 160px;
}
.partner-list .content .content-line .partner-item {
  float: left;
  width: 45%;
  border-radius: 5px;
  background-color: #1f3848;
  margin-bottom: 140px;
}
.partner-list .content .content-line .partner-item:nth-of-type(2) {
  margin-left: 10%;
}
.partner-list .content .content-line .partner-item .cover {
  text-align: center;
  margin-top: -80px;
}
.partner-list .content .content-line .partner-item .cover img {
  height: 130px;
  border-radius: 4px;
}
.partner-list .content .content-line .partner-item .role {
  margin-top: 15px;
  font: 800 0.7rem "Ubuntu", sans-serif;
  text-align: center;
  color: #fff;
}
.partner-list .content .content-line .partner-item .name {
  margin-top: 5px;
  font: 800 1.4rem "Ubuntu", sans-serif;
  text-align: center;
  color: #fff;
}
.partner-list .content .content-line .partner-item .description {
  padding: 20px;
  text-align: center;
  color: #fff;
  font: 400 0.8rem "Ubuntu", sans-serif;
}
.partner-list .content .content-line .partner-item .social-title {
  font: 800 0.8rem "Ubuntu", sans-serif;
  text-align: center;
  color: #fff;
}
.partner-list .content .content-line .partner-item .icons-social {
  margin: 20px 5%;
  width: 90%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-list .content .content-line .partner-item .icons-social .social {
  width: 60px;
  text-align: center;
  background-color: #192e3b;
  height: 100%;
  font-size: 25px;
  border-radius: 2px;
  color: #fff;
  line-height: 60px;
  margin-right: 10px;
  transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
}
.partner-list
  .content
  .content-line
  .partner-item
  .icons-social
  .social:last-of-type {
  margin-right: 0px;
}
.partner-list .content .content-line .partner-item .icons-social .social:hover {
  height: 110%;
  width: 75px;
  line-height: 70px;
}

/**
 *  
 * ======================================================================== */
.customer-list {
  float: left;
  width: 100%;
  padding: 30px;
  background: #fff;
}
.customer-list .slick-dots {
  display: none;
}
.customer-list .customer {
  float: left;
  height: 160px;
  width: 160px;
  max-width: 160px;
  padding: 10px;
  filter: grayscale(1);
  cursor: pointer;
  opacity: 0.75;
  transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
}
.customer-list .customer:hover {
  filter: grayscale(0);
  opacity: 1;
}
.customer-list .customer .image {
  float: left;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/**
 *  
 * ======================================================================== */
.main-footer {
  float: left;
  width: 100%;
  padding: 100px 7vw 50px 7vw;
  background: #284355;
}
.main-footer {
}
.main-footer .content-group-infos {
  float: left;
  width: calc(100% - 270px);
  display: grid;
  grid-template-columns: 350px auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "A B"
    "C D";
}
.main-footer .logo {
  grid-area: A;
  max-width: 200px;
}
.main-footer .logo img {
  float: left;
  width: 100%;
}
.main-footer .copy {
  grid-area: C;
  padding-top: 20px;
  font: 400 1rem "Ubuntu", sans-serif;
  color: #fff;
}
.main-footer .copy span {
  float: left;
  width: 100%;
}
.main-footer .copy .flag-container {
  margin-top: 10px;
  margin-right: 0;
}
.main-footer .menus {
  grid-area: B;
  padding: 0 0 0 0;
  display: flex;
}
.main-footer .menus ul {
  float: left;
  width: 50%;
}
.main-footer .menus ul li {
  float: left;
  list-style: none;
  width: 100%;
  font: 400 1rem "Ubuntu", sans-serif;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.85);
}
.main-footer .menus ul li:hover {
  color: #fff;
}
.main-footer .menus ul li.title {
  font: 200 1.5rem "Ubuntu", sans-serif;
  margin-bottom: 25px;
  color: #fff;
  opacity: 0.6;
}
.main-footer .menus ul a {
  font: inherit;
  color: inherit;
  text-decoration: none;
}
.main-footer .social {
  grid-area: D;
  padding: 20px 10% 0 0;
}
.main-footer .social ul {
  float: right;
}
.main-footer .social ul li {
  float: left;
  list-style: none;
  margin-left: 10px;
}
.main-footer .social ul li a {
  float: left;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}

.main-footer .content-group-instagram,
.main-footer .instagram {
  float: right;
  width: 250px;
}
.main-footer .instagram {
  /* background: #fff; */
  border-radius: 3px;
  padding: 10px;
}
.main-footer .instagram ul li {
  float: left;
  /* border: 2px solid #fff; */
  width: calc((100% - 10px) / 3);
  height: auto;
  margin-right: 5px;
  margin-bottom: 5px;
  list-style: none;
  border-radius: 3px;
}
.main-footer .instagram ul li img {
  float: left;
  width: 100%;
}
.main-footer .instagram ul li:nth-of-type(3n-3) {
  margin-right: 0;
}

/**
 *  
 * ======================================================================== */
.recruitment {
  float: left;
  width: 100%;
  padding: 100px 100px;
  background: #1a2d3a;
}
.big-cta {
  float: left;
  width: 280px;
  padding: 20px;
  text-align: center;
  margin: 0 calc((100% - 280px) / 2);
  margin-bottom: 20px;
  background: #20ca5f;
  border-radius: 5px;
  font: 400 1.25rem "Ubuntu", sans-serif;
  color: #fff;
}
.big-cta small {
  float: left;
  width: 100%;
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #fff;
}
.recruitment-title {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  font: 400 1.5rem "Ubuntu", sans-serif;
  color: #fff;
}
.recruitment ul {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}
.recruitment ul li {
  float: left;
  width: calc((100% - 40px) / 3);
  list-style: none;
  padding: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #223949;
  text-align: center;
  font: 800 1rem "Ubuntu", sans-serif;
  color: #fff;
}
.recruitment ul li:nth-child(3n-3) {
  margin-right: 0;
}
.recruitment ul li .number {
  width: 80px;
  height: 80px;
  margin: 0 calc((100% - 80px) / 2);
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid #fff;
  text-align: center;
  padding-top: 15px;
  font: 800 1.5rem "Ubuntu", sans-serif;
  color: #fff;
}
.recruitment ul li .number small {
  float: left;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.recruitment-faq {
  float: left;
  width: 100%;
}
.recruitment-faq-item {
  float: left;
  width: 70%;
  margin: 10px 15%;
  color: #284355;
  background: #fff;
  padding: 30px;
  border-radius: 5px;
}
.recruitment-faq-item h2 {
  margin-bottom: 15px;
}

/**
 *  
 * ======================================================================== */
.testimony-cover .testimony-item {
  float: right;
  /* margin-right: 10%;	 */
}
.testimony-list {
}
.testimony-item {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background: #fff;
  width: 380px;
  padding: 75px 35px 35px 35px;
}
.testimony-item .avatar {
  width: 120px;
  height: 120px;
  margin-top: -130px;
  border-radius: 50%;
  margin-bottom: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.testimony-item .headline {
  font: 400 1.5rem "Ubuntu", sans-serif;
  color: #2fa767;
  text-align: center;
}
.testimony-item .name {
  font: 400 1rem "Ubuntu", sans-serif;
  color: #7f8381;
  text-align: center;
}
.testimony-item .message {
  margin-top: 15px;
  font: 200 1rem "Ubuntu", sans-serif;
  color: #7f8381;
  text-align: center;
}

/**
 *  
 * ======================================================================== */
.page-cover {
  position: relative;
  float: left;
  width: calc(100vw - 8px);
  height: auto;
  min-height: calc((100vw - 8px) * 0.389);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-cover .wrapper {
  float: left;
  position: relative;
  top: 0;
  width: 100%;
  min-height: 80vh;
  background-image: url("../image/page-cover.png");
  background-size: contain;
  background-position: 0 0px;
  background-repeat: no-repeat;
  padding: 50px 10%;
}
.page-cover .text {
  float: left;
  width: calc(100% - 400px);
  max-width: 800px;
  min-height: 300px;
  /* background: red; */
}
.page-cover .text .cover-title {
  font: 800 1.5rem "Ubuntu", sans-serif;
  margin-bottom: 20px;
  color: #fff;
}
.page-cover .text .cover-resume {
  font: 400 0.9rem/1.4rem "Ubuntu", sans-serif;
  color: #fff;
  padding-bottom: 20px;
}
.page-cover .text .cover-cta {
  float: left;
  margin-top: 00px;
  text-transform: uppercase;
  font: 800 0.9rem "Ubuntu", sans-serif;
  padding: 15px 25px;
}

/**
 *  
 * ======================================================================== */
.training-list {
}
.training-item {
  float: left;
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.training-item .color,
.training-item .data,
.training-item .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
}
.training-item .image {
  background-size: cover;
  background-position: center;
  background-repeat: none;
  z-index: 1;
}
.training-item .color {
  z-index: 2;
}
.training-item .data {
  z-index: 3;
  display: flex;
}
.training-item .data .resume {
  width: 50%;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.training-item .data .modules {
  width: 50%;
  height: 100%;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.training-item .data .resume a {
  background: #25d366;
  border: 2px solid #20ca5f !important;
}
.training-item .data .modules .module {
  display: block;
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.training-item .data .modules .module:last-of-type {
  border-bottom: none;
}
.training-item .data .modules .module small {
  display: block;
  width: 100%;
  font: 800 0.8rem "Ubuntu", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.training-item .data .modules .module span {
  display: block;
  width: 100%;
  font: 400 1.25rem "Ubuntu", sans-serif;
  color: #fff;
}

/**
 *  
 * ======================================================================== */
.cases-banners {
  float: left;
  width: 100%;
  height: 380px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.cases-banners a {
  display: inline-block;
  width: 220px;
  cursor: pointer;
}
.cases-banners a .banner {
  display: block;
  width: 220px;
  height: 330px;
}
.cases-banners a button {
  display: block;
  width: 100%;
  margin-top: 10px;
  height: 50px;
  text-align: center;
  border-radius: 3px;
  text-transform: uppercase;
  font: 800 0.9rem/50px "Ubuntu", sans-serif;
  border: 2px solid #d5d5d5;
  background: transparent;
  color: #7f8381;
  cursor: pointer;
  transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
}
.cases-banners a:hover button {
  color: #fff;
  border: 2px solid #26b167;
  background: #2cc071;
}
.case-list {
  float: left;
  width: 100%;
}
.case-list .case-item {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 80px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.case-list .case-item .video {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100%;
  left: 60%;
  padding: 50px;
}
.case-list .case-item .video .embed {
  display: block;
  width: 100%;
  padding: 0 10%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
}
.case-list .case-item .video .embed iframe {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
}
.case-list .case-item .data {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 60%;
  height: 100%;
  left: 40%;
  padding-bottom: 30%;
  padding-top: 0;
}
.case-list .case-item:nth-child(4n) .video,
.case-list .case-item:nth-child(4n-1) .video,
.case-list .case-item:nth-child(4n) .video,
.case-list .case-item:nth-child(4n-1) .video {
  left: 0%;
}
.case-list .case-item:nth-child(4n-2) .data,
.case-list .case-item:nth-child(4n-3) .data,
.case-list .case-item:nth-child(4n-2) .data,
.case-list .case-item:nth-child(4n-3) .data {
  left: 0;
}
.case-list .case-item .data .box {
  display: block;
  padding: 40px;
  width: 100%;
  height: auto;
  background: #0e6aa7;
}
.case-list .case-item:nth-child(4n-4) .data .box {
  border-radius: 0 0 0 15px;
}
.case-list .case-item:nth-child(4n-3) .data .box {
  border-radius: 0 15px 0 0;
}
.case-list .case-item:nth-child(4n-2) .data .box {
  border-radius: 0 0 15px 0;
}
.case-list .case-item:nth-child(4n-1) .data .box {
  border-radius: 15px 0 0 0;
}
.case-list .case-item:nth-child(2n-1) .data {
  justify-content: flex-end;
  align-content: flex-end;
  padding-top: 30%;
  padding-bottom: 0;
}
.case-list .case-item:nth-child(2n-1) .data .box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.case-list .case-item .data .box .logo {
  float: left;
  width: 200px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 center;
}
.case-list .case-item .data .box .info {
  float: left;
  padding-left: 20px;
  width: calc(100% - 200px);
  height: 100px;
}
.case-list .case-item .data .box .pre-title {
  float: left;
  width: 100%;
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #fff;
  text-transform: uppercase;
}
.case-list .case-item .data .box .title {
  float: left;
  width: 100%;
  font: 800 1.2rem "Ubuntu", sans-serif;
  color: #fff;
}
.case-list .case-item .data .box .memorial {
  float: left;
  margin-top: 50px;
  width: 100%;
  font: 400 0.9rem/1.25rem "Ubuntu", sans-serif;
  color: #fff;
}

/**
 *  
 * ======================================================================== */
.lecture-list {
  float: left;
  width: 100%;
}
.lecture-list ul {
  float: left;
  width: 100%;
}
.lecture-item {
  float: left;
  width: 33.33%;
  height: 33.33vw;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.training-item .data h3,
.lecture-item h3 {
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #fff;
}
.training-item .data h2,
.lecture-item h2 {
  font: 800 1.5rem "Ubuntu", sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}
.training-item .data .resume .infos,
.lecture-item .infos {
  width: 100%;
  margin: 25px 0;
}
.training-item .data .resume .infos span,
.lecture-item .infos span {
  float: left;
  width: 50%;
  font: 400 0.9rem "Ubuntu", sans-serif;
  color: #fff;
}
.training-item .data .resume .infos span .icon,
.lecture-item .infos span .icon {
  float: left;
  margin-right: 5px;
}
.training-item .data .resume,
.lecture-item p {
  font: 300 1rem/1.5rem "Ubuntu", sans-serif;
  color: #fff;
}
.training-item .data .resume a,
.lecture-item a {
  display: block;
  width: 180px;
  text-transform: uppercase;
  font: 800 0.9rem "Ubuntu", sans-serif;
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
  border-radius: 3px;
  border: 2px solid #fff;
}

/**
 * Folha de Estilhos - Paginação
 * ======================================================================================================= *
 */
.pagination {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  border: 2px solid #ececec;
  background: #fff;
  font: 800 1em "Ubuntu", sans-serif;
  text-decoration: none;
  color: #284355;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  z-index: 3;
  color: #284355;
  border-color: #284355;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 2;
  cursor: default;
  color: #284355;
  border-color: #284355;
}
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  cursor: not-allowed;
  color: #284355;
  border-color: #284355;
  opacity: 0.5;
}

.banner-invencivel {
  position: relative;
  float: left;
  width: 100%;
  height: 0;
  padding-top: 20.83%;
  margin-bottom: 20px;
}
.banner-invencivel img.mobile,
.banner-invencivel img.desktop {
  position: absolute;
  float: left;
  padding: 0 50px;
  width: 100% !important;
  left: 0;
  margin: 0 !important;
  top: 0;
  height: auto;
}
.banner-invencivel img.mobile {
  display: none;
  padding: 0;
}

/*

*/
@media (max-width: 768px) {
  .banner-invencivel {
    padding-top: 50%;
  }
  .banner-invencivel img.mobile {
    display: block;
  }
  .banner-invencivel img.desktop {
    display: none;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: calc(100% - 10px);
  }
  .cv-regsiter {
    margin: 0;
  }
  .toggle-menu {
    display: block;
  }
  .main-header {
    width: 100%;
  }
  .login-popup .form {
    width: 90%;
    margin-left: 5%;
    left: 0;
    top: 50%;
    height: auto;
    padding: 20px;
  }
  .blognav.active {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .main-header .main-menu,
  .main-header .buttons-menu,
  .main-header .social-menu {
    display: none;
  }
  .main-header.active {
    height: 100%;
    padding-bottom: 70px;
    overflow-y: auto;
  }
  .main-header.active .main-menu,
  .main-header.active .buttons-menu,
  .main-header.active .social-menu {
    width: 100%;
    display: block;
  }
  .main-header.active .main-menu {
    margin-top: 20px;
  }
  .main-header .buttons-menu ul li,
  .main-header .main-menu ul li {
    width: 100%;
  }
  .main-header .main-menu ul li a {
    font: 400 1.25rem/3rem "Ubuntu", sans-serif;
  }
  .main-header .buttons-menu {
    padding: 0;
    height: auto;
  }
  .main-header .buttons-menu a {
    width: 100%;
    margin: 20px 0 0 0;
  }
  .training-item .data {
    position: relative;
    flex-direction: column;
  }

  .training-item .data .resume {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    padding: 20px;
  }
  .training-item .data .modules {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100%;
    padding: 20px;
  }

  .article-view header {
    padding: 70px 5% 320px 5%;
  }
  .leadbox-cta {
    width: 90%;
    left: 5%;
  }
  .article-view .leadbox-cta {
    position: absolute;
    flex-direction: column;
    bottom: -50px;
  }
  .leadbox-cta .message {
    float: left;
    width: 100%;
    margin-bottom: 20px;
  }
  .leadbox-cta .message .cta-text {
    padding-right: 0;
    font: 800 1.25rem/1em "Barlow";
  }
  .leadbox-cta form {
    width: 100%;
    height: 110px;
    margin-top: 30px;
  }
  .leadbox-cta input {
    padding: 0 40px;
  }
  .leadbox-cta button {
    top: 60px;
    width: 100%;
    height: 55px;
  }
  .leadbox-cta a {
    width: 100%;
    padding: 10px 50px;
    line-height: 1rem;
    height: auto;
  }
  .article-view .page-content {
    margin: 40px 0;
    width: 100%;
    margin-top: 120px;
    padding: 40px;
  }
  .article-view .page-content .cover-image {
    float: left;
    width: calc(100% + 80px);
    padding-top: calc((100% + 80px) * 0.5);
    background-size: cover;
    background-position: center;
    border-radius: 5px 5px 0 0;
    margin: -40px;
    margin-bottom: 40px;
  }

  .blognav .categories {
    float: left;
    width: 100%;
    height: auto;
    border-right: none;
  }
  .recent-articles {
    display: none;
  }
  .article-list .article-list-item:nth-child(3n-3),
  .article-list .article-list-item:nth-child(2n-2),
  .article-list .article-list-item {
    width: 100%;
    margin-right: 0;
  }
  .page-cover {
    background: #284355 !important;
  }
  .page-cover .text {
    width: 100%;
    margin-bottom: 20px;
  }
  .page-cover-about .blocks {
    float: left;
    width: 100%;
    display: block;
  }
  .member-list .member {
    flex-direction: column;
  }
  .member-list .member .cover {
    width: 100vw;
    height: 100vw;
  }
  .member-list .member .data {
    width: 100%;
    padding: 20px;
  }
  .member-list .member .data h2 {
    margin-bottom: 20px;
  }
  .member-list .member .data .social {
    flex-direction: row;
    margin-bottom: 20px;
  }
  .testimony-cover {
    float: right;
    margin-top: 30px;
  }
  .testimony-item {
    width: 300px;
  }
  .lecture-item {
    width: 100vw;
    height: auto;
    padding: 25px;
  }

  .contact-aside {
    width: 100vw;
    right: -100vw;
    top: 0;
    z-index: 9999999;
  }
  .contact-aside .bar {
    width: 80px;
  }
  .contact-aside .content {
    width: calc(100% - 80px);
    height: 100vh;
    padding: 20px 20px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .contact-aside .content > .title {
    padding-right: 80px;
    font: 400 1.5rem "Ubuntu", sans-serif;
  }
  .contact-aside .content .testimony p {
    margin-bottom: 5px;
    font: 400 0.9rem/1rem "Ubuntu", sans-serif;
  }
  .contact-aside .content .testimony .person .avatar {
    display: none;
  }
  .contact-aside .content .testimony .person .name,
  .contact-aside .content .testimony .person .jobtitle {
    padding-left: 0;
  }
  .contact-aside .content form {
    padding: 0;
  }

  .case-list {
    float: left;
    position: relative;
  }
  .case-list .case-item {
    display: block;
    flex-direction: none;
    min-height: auto;
    height: auto;
  }
  .cases-banners {
    display: none;
  }
  .case-list .case-item .video,
  .case-list .case-item:nth-child(4n) .video,
  .case-list .case-item:nth-child(4n-1) .video,
  .case-list .case-item:nth-child(4n) .video,
  .case-list .case-item:nth-child(4n-1) .video,
  .case-list .case-item .data,
  .case-list .case-item:nth-child(2n-1) .data,
  .case-list .case-item:nth-child(4n-2) .data,
  .case-list .case-item:nth-child(4n-3) .data,
  .case-list .case-item:nth-child(4n-2) .data,
  .case-list .case-item:nth-child(4n-3) .data {
    position: relative;
    width: 100%;
    height: auto;
    left: 0 !important;
    padding: 0;
    margin: 0;
  }
  .case-list .case-item:nth-child(4n) .video,
  .case-list .case-item:nth-child(4n-1) .video,
  .case-list .case-item:nth-child(4n) .video,
  .case-list .case-item:nth-child(4n-1) .video,
  .case-list .case-item .video {
    padding: 30px;
  }
  .case-list .case-item .data .box,
  .case-list .case-item:nth-child(4n-4) .data .box,
  .case-list .case-item:nth-child(4n-3) .data .box,
  .case-list .case-item:nth-child(4n-2) .data .box,
  .case-list .case-item:nth-child(4n-1) .data .box {
    border-radius: 0 !important;
  }
  .case-list .case-item .data .box .logo {
    width: 100%;
    height: 100px;
  }
  .case-list .case-item .data .box .info {
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .methodology .blocks {
    padding: 100px 20px;
  }
  .methodology .blocks .text {
  }
  .methodology .blocks .text p {
    width: 100%;
  }
  .methodology .blocks .text a {
    margin-top: 20px;
    width: 100%;
  }
  .methodology .blocks ul li {
    padding: 20px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 60px;
  }
  .methodology .steps {
    float: left;
    width: 100%;
  }
  .methodology .steps .step {
    display: block;
  }
  .methodology .steps .step .timeline {
    /* display: none; */
    background: transparent;
    width: 100%;
    padding-left: 20px;
  }
  .methodology .steps .step .timeline .number {
    width: 80px;
    height: 80px;
    font: 800 0.9rem "Ubuntu", sans-serif;
    color: #fff;
  }
  .methodology .steps .step .timeline .number:before {
    content: " ";
    width: 5px;
    display: block;
    position: absolute;
    background: #fff;
    border-radius: 3px;
    margin-top: 100px;
    margin-left: 40px;
    height: calc(100% - 200px);
  }
  .methodology .steps .step .timeline .number span {
    font-size: 1.75rem;
    line-height: 1.75rem;
  }
  .methodology .steps .step .timeline .data {
    margin-top: 0;
  }
  .methodology .steps .step .extra {
    display: flex;
    width: 100%;
    padding: 20px;
  }
  .methodology .steps .step .extra .text {
    width: 100%;
    color: #fff;
  }
  .methodology .steps .step .extra .video {
    display: none;
  }

  .graph svg {
    zoom: 0.5;
  }
  .labels {
    left: 0;
    top: 0;
    width: 250px;
    float: left;
    position: absolute;
  }

  .home-poscover {
    float: left;
    width: 100%;
    margin-top: 30px;
    padding: 0 20px;
    padding-bottom: 0;
    flex-direction: column;
  }
  .home-poscover .image,
  .home-poscover .bg {
    width: 100%;
  }
  .home-poscover .image {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .home-poscover .image:before {
    width: 100%;
    height: 100%;
  }
  .home-poscover .data {
    width: 100%;
  }
  .home-poscover .data h2 {
    padding-right: 0%;
  }
  .home-poscover .data p {
    padding-right: 0;
  }
  .home-poscover .data .block {
    width: 100%;
    margin-top: 40px;
  }

  .homepage .counters {
    padding: 50px 20px;
  }
  .section-text p {
    width: 100%;
  }
  .section-text a {
    width: 100%;
    margin-top: 20px;
  }
  .homepage .counters ul li,
  .homepage .counters ul li:nth-of-type(4n-4) {
    margin-right: 0;
    margin-bottom: 70px;
    width: 100%;
    padding: 20px;
  }
  .testimonies .testimony {
    padding-right: 0;
    padding-bottom: 0;
    display: flex;
  }
  .homepage .focuses {
    flex-direction: column;
  }
  .homepage .focuses div {
    min-height: auto;
    width: 100%;
    padding: 30px;
  }
  .homepage .focuses div h3 {
    font: 800 2rem/2rem "Ubuntu", sans-serif;
    margin-bottom: 20px;
  }
  .main-footer .content-group-infos {
    width: 100%;
    display: block;
  }
  .main-footer .content-group-infos .logo,
  .main-footer .content-group-infos .copy,
  .main-footer .content-group-infos .menus,
  .main-footer .content-group-infos .social {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 50px;
  }
  .main-footer .menus ul {
    width: 100%;
    margin-bottom: 20px;
  }
  .main-footer .social ul li {
    margin-bottom: 10px;
  }
  .main-footer .content-group-instagram,
  .main-footer .instagram {
    float: right;
    width: 100%;
  }
  .recruitment {
    padding: 50px 20px;
  }
  .recruitment ul li:nth-child(5n-5),
  .recruitment ul li {
    width: 100%;
    padding: 20px;
    margin-right: 0;
  }
  .recruitment-faq-item {
    width: 100%;
    margin: 10px 0%;
    padding: 30px;
  }

  .package {
    margin-bottom: 20px;
  }
  .package .video {
    width: 100%;
  }
  .package p {
    padding-right: 0;
  }
  .package li {
    width: 100%;
    height: auto;
    padding: 30px !important;
    margin-bottom: 10px !important;
    margin-right: 0 !important;
    display: block;
  }

  .package li.cta a {
    height: auto;
    margin: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    position: relative;
    display: block;
    padding: 30px !important;
  }
}

@media (max-width: 520px) {
  .partner-list .content .content-line .partner-item {
    width: 100% !important;
  }
  .partner-list .content .content-line .partner-item:last-of-type {
    margin-bottom: 20px !important;
  }
  .partner-list .content .content-line .partner-item:nth-of-type(2){
    margin-left: 0px !important;
  }
  .partner-list .content .content-line .partner-item .icons-social {
    height: 40px !important;
    width: 90%;
    margin: 20px 5%;
  }
  .partner-list .content .content-line .partner-item .icons-social .social {
    margin-right: 5px !important;
    font-size: 15px !important;
    line-height: 40px;
  }
  .partner-list .content .content-line .partner-item .cover img {
    height: auto !important;
    width: 100%;
  }
}

.website-author{
    cursor: pointer;
}
#popup-aquino{
    float: left;
    width: 320px;
    height: 520px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .25);

    position: fixed;
    top: 70%;
    left: 50%;
    margin:  -260px -160px;
    z-index: 9999;

    opacity: 0;
    backface-visibility: hidden;
    visibility: hidden;
}
#popup-aquino.active{
    top: 50%;
    opacity: 1;
    backface-visibility: visible;
    visibility: visible; 

    transition:         all 750ms ease;
    -o-transition:      all 750ms ease;
    -ms-transition:     all 750ms ease;
    -moz-transition:    all 750ms ease;
}
#popup-aquino .close{
    float: left;
    position: absolute;
    margin-bottom: 10px;
    font-size: .9em;
    font-weight: 700;
    text-transform: uppercase;
    color: #CED0CC;
    cursor: pointer;
    right: 10px;
    top: 10px;

    transition:         all 250ms ease;
    -o-transition:      all 250ms ease;
    -ms-transition:     all 250ms ease;
    -moz-transition:    all 250ms ease;
}
#popup-aquino .close:hover{
    color: #EF1D41;
}
#popup-aquino img{
    float: left;
    width: 80%;
    margin: 0 10%;
}
#popup-aquino .brand-name{
    text-indent: -2000px;
    overflow: hidden;
    float: left;
    height: 0;
    width: 0;
}
#popup-aquino .subtitle{
    float: left;
    width: 100%;
    font-size: 1.2em;
    text-align: center;
    color: #383838;
    margin: 10px 0;
}
#popup-aquino .subtitle strong{
    color: #4A8AFF
}
#popup-aquino .text{
    float: left;
    width: 100%;
    font-size: .9em;
    text-align: center;
    color: #5C5D5D;
}
#popup-aquino .cta-whatsapp,
#popup-aquino .cta-website{
    float: left;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    line-height: 50px;
    margin-top: 10px;
    color: #fff;
    text-transform: uppercase;

    transition:         all 250ms ease;
    -o-transition:      all 250ms ease;
    -ms-transition:     all 250ms ease;
    -moz-transition:    all 250ms ease;
}
#popup-aquino .cta-whatsapp{
    background: #25d366;
    color: #075e54;
}
#popup-aquino .cta-whatsapp:hover{
    background: #28EC74;
}
#popup-aquino .cta-website{
    background: #5B3FFF;
    color: #fff;
}
#popup-aquino .cta-website:hover{
    background: #2921FF;
}
#popup-aquino .challenge{
    margin-top: 10px;
    float: left;
    width: 100%;
    font-size: 1em;
    text-align: center;
    color: #4A8AFF;
}















