body {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 16px;
  margin: 0;
  background-color: rgba(0,0,0,0.02);
  color: #1a171b;
}
header, section {
  float: left;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}

.float-left {
  float: left;
}
.float-right {
  float: right;
}

.background-darkgray {
  background-color: #3e3e40;
}
.background-mediumgray {
  background-color: #b2b3b5;
}
.background-gray {
  background-color: #ededee;
}
.background-lightgray {
  background-color: #d9dadb;
}
.background-orange {
  background-color: #e8874a;
}
.background-letter {
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  color: #e67c40;
  font-size: 234px;
  line-height: 120px;
  font-weight: 700;
}
.background-image {
  background-repeat: no-repeat;
}
.background-right {
  background-position: right;
}
.background-left {
  background-position: left;
}
.orange {
  color: #e8874a;
}
.white {
  color: white;
}
.lightgray {
  color: #80807f;
}
.underline {
  display: inline-block;
  position: relative;
}
.bold {
  font-weight: 700;
}
.sans-serif, .sans-serif p {
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
h1, h2, h2 {
  margin: 0;
}
h1 {
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2px;
  font-weight: normal;
  margin: 70px 0 30px;
  color: #dc0038;
}
h1 .underline-italic {
  font-style: italic;
  position: relative;
}
h2 {
  color: white;
  font-size: 35px;
  line-height: 35px;
  font-weight: normal;
}
h3 {
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  font-size: 24px;
  margin: 10px 0 0;
}
h3.big {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 25px;
  font-weight: normal;
}
h4 {
  font-size: 19px;
  line-height: 22px;
}
p {
  margin-top: 0;
}
table.align-bottom, tr.align-bottom, td.align-bottom {
  vertical-align: bottom;
}
.display-inline {
  display: inline-block;
  margin-bottom: 15px;
}
.padding {
  padding: 0 15%;
}

/*-------------*/
header {
  padding-top: 15px;
  padding-bottom: 15px;
}
#main {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#share-header {
  margin-top: 4px;
}
#share-header span {
  margin-right: 10px;
  position: relative;
  bottom: -2px;
}


.social {
  display: inline-block;
  vertical-align: middle;
}
header .social {
  margin: 0 0 0 2px;
}

#background-escalator {
  background-size: contain;
}
#background-man {
  background-size: 300px;
  background-position: left 50px center;
}
#background-woman {
  background-size: 250px;
  background-position: right 50px center;
}
#background-people {
  background-position: bottom 50px center;
}

.logo-footer {
  font-size: 30px;
  color: #6f7071;
}
.share-tw {
  width: 15px;
  height: auto;
  margin-top: 10px;
}

/* INTRO ------------------*/
@keyframes intro {
  0% {
    top: -100px;
  }
  10% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes intro {
  0% {
    top: -100px;
  }
  10% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes introButton {
  0% {
    opacity: 0;
    transform: translateX(-250%) rotate(-270deg);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

#animation_wrap {
  overflow: hidden;
}
#intro .big span {
  position: relative;
  top: -100px;
  -webkit-animation: intro 6s 0.8s forwards;
  animation: intro 6s 0.8s forwards;
}
#yes {
  opacity: 0;
  transform: translateX(-250%) rotate(-270deg);
  position: relative;
  display: block;
  text-align: center;
  background-color: #dc0038;
  color: white;
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 34px;
  margin: 20px auto 25px;
  -webkit-animation: introButton 1s 2s 1 forwards;
  animation: introButton 1s 2s 1 forwards;
}

/* PROCESS CHART ------------------*/
#process {
  text-align: center;
  text-align-last: justify;
  vertical-align: top;
  padding-top: 25px;
}
#process .item,
#process .arrow {
  display: inline-block;
  text-align: center;
  text-align-last: center;
  vertical-align: top;
}
#process .item {
  min-width: 90px;
  margin: 0;
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  -webkit-animation: appear 1s 1 forwards;
  animation: appear 1s 1 forwards;
  opacity: 0;
}
#process .item:nth-of-type(1) {
  animation-delay: 3s;
}
#process .item:nth-of-type(2) {
  animation-delay: 3.5s;
}
#process .item:nth-of-type(3) {
  animation-delay: 4s;
}
#process .item:nth-of-type(4) {
  animation-delay: 4.5s;
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#process .item .thumb {
  display: inline-block;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
#process .item:nth-of-type(1) .thumb{
  background-image: url('assets/proceso.png');
}
#process .item:nth-of-type(2) .thumb{
  background-color: #057787;
  background-image: url('assets/cualidad.png');
}
#process .item svg {
  width: 31px;
}
#process .item:nth-of-type(3) .thumb{
  background-color: #a8c38a;
  background-image: url('assets/implicaciones.png');
}
#process .item:nth-of-type(4) .thumb{
  background-color: #ed8937;
  background-image: url('assets/conexion.png');
}
#process .arrow {
  width: 16px;
  height: 63px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('assets/arrow.png');
}


/* PROCESSES ------------------*/
.process_section {
  margin-top: 30px;
  margin-bottom: 15px;
  background-repeat: no-repeat;
  background-position: top 20px right 25px;
  padding-right: 100px;
  font-size: 17px;
  line-height: 19px;
  position: relative;
}
#proceso_1 {
  /*background-image: url('assets/proceso_1.png');*/
}
#proceso_2 {
  /*background-image: url('assets/proceso_2.png');*/
}
#proceso_3 {
  /*background-image: url('assets/proceso_3.png');*/
}
.background-image {
  position: absolute;
  z-index: 0;
}
.process_section > .background-image {
  width: 75px;
  right: 25px;
  top: 20px;
}
#proceso_2 > .background-image {
  width: 65px;
}
#proceso_3 > .background-image {
  width: 55px;
}
#proceso_3 > .background-image svg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#bottom-left {
  -webkit-animation: bottomLeft 7s infinite;
  animation: bottomLeft 7s infinite;
}
#top-left {
  -webkit-animation: topLeft 7s infinite;
  animation: topLeft 7s infinite;
}
#bottom-right {
  -webkit-animation: bottomRight 7s infinite;
  animation: bottomRight 7s infinite;
}
#top-right {
  -webkit-animation: topRight 7s infinite;
  animation: topRight 7s infinite;
}
@keyframes bottomLeft {
  0% {
    left: -30px;
    top: 30px;
    opacity: 1;
  }
  20% {
    left: 0px;
    top: 0;
  }
  40% {
    left: 0px;
    top: 0;
  }
  70% {
    left: 0px;
    top: 0;
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  80% {
    left: -30px;
    top: 30px;
  }
  100% {
    left: -30px;
    top: 30px;
    opacity: 0;
  }
}
@keyframes topLeft {
  0% {
    left: -30px;
    top: -30px;
    opacity: 1;
  }
  20% {
    left: 0px;
    top: 0;
  }
  40% {
    left: 0px;
    top: 0;
  }
  70% {
    left: 0px;
    top: 0;
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  80% {
    left: -30px;
    top: -30px;
  }
  100% {
    left: -30px;
    top: -30px;
    opacity: 0;
  }
}
@keyframes bottomRight {
  0% {
    left: 30px;
    top: 30px;
    opacity: 1;
  }
  20% {
    left: 0px;
    top: 0;
  }
  40% {
    left: 0px;
    top: 0;
  }
  70% {
    left: 0px;
    top: 0;
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  80% {
    left: 30px;
    top: 30px;
  }
  100% {
    left: 30px;
    top: 30px;
    opacity: 0;
  }
}
@keyframes topRight {
  0% {
    left: 30px;
    top: -30px;
    opacity: 1;
  }
  20% {
    left: 0px;
    top: 0;
  }
  40% {
    left: 0px;
    top: 0;
  }
  70% {
    left: 0px;
    top: 0;
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  80% {
    left: 30px;
    top: -30px;
  }
  100% {
    left: 30px;
    top: -30px;
    opacity: 0;
  }
}
.process_section > .background-image path {
  stroke-dasharray: 50px;
  -webkit-animation: drawPath 7s infinite;
  animation: drawPath 7s infinite;
  animation-fill-mode: cubic-bezier(0,.87,1,0);
  -webkit-animation-fill-mode: cubic-bezier(0,.87,1,0);
}
#proceso_3 > .background-image circle {
  stroke-dasharray: 205px;
  -webkit-animation: drawCircle 7s infinite;
  animation: drawCircle 7s infinite;
  animation-fill-mode: cubic-bezier(0,.87,1,0);
  -webkit-animation-fill-mode: cubic-bezier(0,.87,1,0);
}
@keyframes drawPath {
  0% {
    stroke-dashoffset: 50px;
  }
  20% {
    stroke-dashoffset: 0px;
  }
  40% {
    stroke-dashoffset: 0px;
  }
  70% {
    stroke-dashoffset: 0px;
  }
  80% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 50px;
  }
}
@-webkit-keyframes drawPath {
  0% {
    stroke-dashoffset: 50px;
  }
  20% {
    stroke-dashoffset: 0px;
  }
  40% {
    stroke-dashoffset: 0px;
  }
  70% {
    stroke-dashoffset: 0px;
  }
  80% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 50px;
  }
}
@keyframes drawCircle {
  0% {
    stroke-dashoffset: 205px;
  }
  20% {
    stroke-dashoffset: 0px;
  }
  40% {
    stroke-dashoffset: 0px;
  }
  70% {
    stroke-dashoffset: 0px;
  }
  80% {
    stroke-dashoffset: 205px;
  }
  100% {
    stroke-dashoffset: 205px;
  }
}
@-webkit-keyframes drawCircle {
  0% {
    stroke-dashoffset: 205px;
  }
  20% {
    stroke-dashoffset: 0px;
  }
  40% {
    stroke-dashoffset: 0px;
  }
  70% {
    stroke-dashoffset: 0px;
  }
  80% {
    stroke-dashoffset: 205px;
  }
  100% {
    stroke-dashoffset: 205px;
  }
}

#proceso_2 > .background-image path {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
#proceso_2 > .background-image path {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
#proceso_3  > .background-image {}

.process_section h4 {
  font-size: 12px;
  line-height: 19px;
  color: white;
  background-color: #3e3e40;
  -webkit-border-top-right-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -moz-border-radius-topright: 15px;
  -moz-border-radius-bottomright: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-left: 13px;
  padding-right: 10px;
  position: relative;
  left: -50px;
  display: inline-block;
  margin-top: 0;
}
.tab {
  margin-bottom: 7px;
}
.tab .trigger {
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  background-size: 11px;
  background-position: left 10px center;
  background-repeat: no-repeat;
  font-size: 14px;
  color: white;
  line-height: 22px;
  padding-left: 40px;
  padding-right: 15px;
}
.tab .trigger img {
  float: right;
  margin-top: 9px;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.tab.open .trigger > img {
  transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}
.tab:nth-of-type(1) .trigger {
  background-color: #057787;
  background-image: url('assets/cualidad.png');
}
.tab:nth-of-type(2) .trigger {
  background-color: #a8c38a;
  background-image: url('assets/implicaciones.png');
}
.tab:nth-of-type(3) .trigger {
  background-color: #ed8937;
  background-image: url('assets/conexion.png');
}
.tab .content {
  display: none;
  margin: 20px 0;
  overflow: hidden;
  text-align: center;
}
.arrows_left, .blue_button, .arrows_right {
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.3s, left 0.5s, right 0.5s;
  -moz-transition: opacity 0.3s, left 0.5s, right 0.5s;
  -webkit-transition: opacity 0.3s, left 0.5s, right 0.5s;
  transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  position: relative;
  opacity: 0;
}
.arrows_left, .arrows_right {
  width: 30%;
}
.arrows_left {
  left: -50px;
}
.arrows_right {
  right: -50px;
}

@keyframes arrowsLeft {
  0% {
    left: 0;
  }
  50% {
    left: -5px;
  }
  100% {
    left: 0;
  }
}
@keyframes arrowsRight {
  0% {
    right: 0;
  }
  50% {
    right: -5px;
  }
  100% {
    right: 0;
  }
}


.blue_button {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background-color: rgba(5,119,135,0.1);
}
.open .arrows_left,
.open .arrows_right,
.open .blue_button {
  opacity: 1;
}
.open .arrows_left {
  left: 0;
  -webkit-animation: arrowsLeft 0.5s infinite;
  animation: arrowsLeft 0.5s infinite;
}
.open .arrows_right {
  right: 0;
  -webkit-animation: arrowsRight 0.5s infinite;
  animation: arrowsRight 0.5s infinite;
}

.green_col {
  position: relative;
  background-color: rgba(168,195,138,0.2);
  padding: 15px;
  max-width: 140px;
  display: inline-block;
  text-align: left;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: -0.5px;
  transition: opacity 0.3s, top 0.5s;
  -moz-transition: opacity 0.3s, top 0.5s;
  -webkit-transition: opacity 0.3s, top 0.5s;
  top: 50px;
  opacity: 0;
}
.green_col:nth-child(1){
  transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
}
.green_col:nth-child(2){
  margin: 0 5px;
  transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}
.green_col:nth-child(3){
  transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
#proceso_1 .green_col {
  max-width: 155px;
}
.open .green_col {
  top: 0;
  opacity: 1;
}
.tab_conexion {
  font-size: 19px;
  line-height: 18px;
}
.tab_conexion .content {
  position: relative;
  padding: 40px 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.tab_conexion .content b,
.tab_conexion .content span {
  position: relative;
  z-index: 1;
}
.tab_conexion span {
  transition: opacity 0.8s cubic-bezier(.58,.57,.03,.99);
  opacity: 0;
}
.tab_conexion.open span {
  opacity: 1;
}
/*#proceso_1 .tab_conexion .content {
  background-image: url('assets/heart.png');
}
#proceso_2 .tab_conexion .content {
  background-image: url('assets/brain.png');
}
#proceso_3 .tab_conexion .content {
  background-image: url('assets/hands.png');
}*/
.tab_conexion .background-image {
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%,-50%) scale(0.85);
  -ms-transform: translate(-50%,-50%) scale(0.85);
  -moz-transform: translate(-50%,-50%) scale(0.85);
  -webkit-transform: translate(-50%,-50%) scale(0.85);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: translate(-50%,-50%) scale(0.85);
    -ms-transform: translate(-50%,-50%) scale(0.85);
    -moz-transform: translate(-50%,-50%) scale(0.85);
    -webkit-transform: translate(-50%,-50%) scale(0.85);
  }
  50% {
    transform: translate(-50%,-50%) scale(1);
    -ms-transform: translate(-50%,-50%) scale(1);
    -moz-transform: translate(-50%,-50%) scale(1);
    -webkit-transform: translate(-50%,-50%) scale(1);
  }
  100% {
    transform: translate(-50%,-50%) scale(0.85);
    -ms-transform: translate(-50%,-50%) scale(0.85);
    -moz-transform: translate(-50%,-50%) scale(0.85);
    -webkit-transform: translate(-50%,-50%) scale(0.85);
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: translate(-50%,-50%) scale(0.85);
    -ms-transform: translate(-50%,-50%) scale(0.85);
    -moz-transform: translate(-50%,-50%) scale(0.85);
    -webkit-transform: translate(-50%,-50%) scale(0.85);
  }
  50% {
    transform: translate(-50%,-50%) scale(1);
    -ms-transform: translate(-50%,-50%) scale(1);
    -moz-transform: translate(-50%,-50%) scale(1);
    -webkit-transform: translate(-50%,-50%) scale(1);
  }
  100% {
    transform: translate(-50%,-50%) scale(0.85);
    -ms-transform: translate(-50%,-50%) scale(0.85);
    -moz-transform: translate(-50%,-50%) scale(0.85);
    -webkit-transform: translate(-50%,-50%) scale(0.85);
  }
}

#proceso_2 .tab_conexion .background-image {
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -webkit-animation: none;
  animation: none;
}
#proceso_2 .tab_conexion .background-image #connections path {
  -webkit-animation: brain 1.2s infinite;
  animation: brain 1.2s infinite;
}
@keyframes brain {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#proceso_3 .tab_conexion .background-image {
  -webkit-animation: hands 1.5s infinite;
  animation: hands 1.5s infinite;
}
@keyframes hands {
  0% {
    margin-top: 0;
  }
  20% {
    margin-top: 10px;
  }
  30% {
    margin-top: 0;
  }
  40% {
    margin-top: 10px;
  }
  45% {
    margin-top: 0;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes hands {
  0% {
    margin-top: 0;
  }
  20% {
    margin-top: 10px;
  }
  30% {
    margin-top: 0;
  }
  40% {
    margin-top: 10px;
  }
  45% {
    margin-top: 0;
  }
  100% {
    margin-top: 0;
  }
}

/* AUTHORS / MOREINFO ---------*/
#authors, #moreinfo {
  font-size: 12px;
  line-height: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}
#authors a, #moreinfo a {
  color: inherit;
  text-decoration: none;
}
#authors {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 17px;
  line-height: 20px;
  text-align: left;
  margin: 40px 0 50px;
  background-color: #efefef;
}

/* SOCIAL ------*/
#social p {
  font-size: 21px;
  margin: 0;
  text-align: center;
  padding: 25px 0;
}
header a, #social a {
  text-decoration: none;
  color: inherit;
}
#logos {
  padding: 25px;
}
#logos a {
  color: rgb(224, 6, 19);
  text-decoration: none;
  font-size: 30px;
}
#share-footer .social {
  margin-left: 5px;
}
#share-footer span {
  margin-right: 5px;
  position: relative;
  bottom: -3px;
}

/* EMBED -------*/
button {
  margin: 0 0 50px 0;
  background-color: transparent;
  border: 0;
  float: right;
  cursor: pointer;
}

@media(max-width: 610px){
  .green_col {
    margin-bottom: 10px !important;
  }
}

@media(max-width: 555px){
  #process .item, #process .arrow {
    display: block;
  }
  #process .arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

@media (max-width: 500px){
  header, section {
    padding-left: 30px;
    padding-right: 30px;
  }
  .whitey {
    margin-left: -30px;
    margin-right: -30px;
  }
  h1 {
    font-size: 40px;
    line-height: 40px;
  }
  h2 {
    font-size: 25px;
    line-height: 25px;
  }
  h3.big {
    font-size: 22px;
  }
  .process_section h4 {
    left: -30px;
  }
  #intro br + br {
    display: none;
  }
}

@media(max-width: 450px){
  .process_section {
    padding-right: 30px;
  }
  .process_section > .background-image {
    opacity: 0.3;
  }
  .green_col,#proceso_1 .green_col {
    max-width: 100%;
  }
  .green_col:nth-child(2) {
    margin: 0;
  }
}

@media (max-width: 400px){
  #share-footer span {
    display: none;
  }
  .arrows_left, .arrows_right {
    display: none;
  }
}


