@keyframes fade_nav{
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate(0px, -10px);
        -ms-transform: translate(0px, -10px);
            transform: translate(0px, -10px);
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";    
    -webkit-transform: translate(0px, 0px);    
        -ms-transform: translate(0px, 0px);    
            transform: translate(0px, 0px);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate(0px, -30px);
        -ms-transform: translate(0px, -30px);
            transform: translate(0px, -30px);
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";    
    -webkit-transform: translate(0px, 0px);    
        -ms-transform: translate(0px, 0px);    
            transform: translate(0px, 0px);  
  }
}


header {
  display: block;
  position: fixed;
  width: 95%;
  height: 60px;
  left: 0;
  top: 0;
  background-color: #FFF;
  padding: 0 2.5%;
  z-index: 1030;
}
header.open {
  background-color: transparent;
}
.logo {
  display: inline-block;
  position: relative;
  height: 50px;
  padding: 5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 5;
}
.logo img {
  height: 100%;
}
header.open .logo {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(100%);
          filter: brightness(0) invert(100%);
  filter: progid:DXImageTransform.Microsoft.Light() invert;
}

#nav{
  display:none;
  -webkit-transition:all 300ms linear;
  transition: all 300ms linear;
}
.show_nav {
  display: -webkit-box!important;
  display: -webkit-flex!important;
  display: -ms-flexbox!important;
  display: flex!important;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-animation: fade_nav 1.5s;
          animation: fade_nav 1.5s;
  -webkit-animation-iteration-count:1;
          animation-iteration-count:1;
  -webkit-animation-fill-mode:forwards;
          animation-fill-mode:forwards;
}

nav{
   position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 4;
  top: 0;
  background-image: url(../img/nav_bg.jpg);
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
nav ul{
  padding-left: 40px;
}
nav ul h3{
  font-family: 'Biotif';
  font-size: 7vw;
  color: white;
  font-weight: 500;
  margin-bottom: 60px;
}

nav ul li a{
  font-family: 'Biotif';
  font-size: 2.5vw;
  color: white;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

nav ul li a:after {
  content: '';
  position: relative;
  bottom: 2.9vh;
  height: 4px;
  width: 0%;
  background-color: #f5205f;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 2;
  display: block;
}
nav ul li a:hover:after{
  width: 100%;
}

#nav-icon span:nth-child(1) {
  top: 11px;
}
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 20px;
}
#nav-icon span:nth-child(4) {
  top: 29px;
}
#nav-icon.open span:nth-child(1) {
  top: 20px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(4) {
  top: 29px;
  width: 0%;
  left: 50%;
}
#nav-icon {
  position: relative;
  width: 50px;
  height: 50px;
  top: 10px;
  padding: 7.5px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  float: right;
  z-index: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#nav-icon:before {
  content: "Menú";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 100%;
  color: #5f259f;
  font-size: 1.1em;
  font-family: 'Biotif-SemiBold';
  transform: translateY(-50%);
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 80%;
  background: #5f259f;
  -webkit-border-radius: 9px;
          border-radius: 9px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  left: 10%;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon.open:before {
  content: "Cerrar";
  color: #FFF;
}
#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background: white!important;
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: white!important;
}

.content {
  position: absolute;
}

#copyright {
  position: absolute;
  left: 50%;
  bottom: 0;
  color: #999;
  font-size: 1em;
  font-family: 'Biotif';
  text-align: center;
  line-height: 48px;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}
#copyright a {
  display: inline-block;
  color: #999;
  text-decoration: none !important;
}
#copyright a b {
  color: #5f269f;
  font-family: 'Biotif-Book';
}
#copyright a:last-of-type {
  display: block;
  line-height: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
}


/*
 * GENERAL
 */
 body {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 1.2s;
  transition: 1.2s;
  overflow-x: hidden;
  overflow-y: auto;
 }

.section {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  height: -webkit-calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
}

.lightbox {
  display: none;
  position: absolute;
  width: 100vw;
  height: 100vh;
  height: -webkit-calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
  top: 0;
  background: #FFF;
}
.lightbox .cerrar {
  position: absolute;
  width: 48px;
  top: 10px;
  right: 2%;
  padding: 5px;
  z-index: 9;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lightbox .cerrar img { 
  width: 100%;
}


/*
 * SECTION 1
 */
#section1 {
  background: url(../img/main/home_bg.svg) no-repeat 2.5% 40px;
  background-size: contain;
}

#section1 .lightbox-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left top;
     object-position: left top;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
#section1 .lightbox-cont.open {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#section1 .lightbox-info {
  display: none;
  position: relative;
  width: 90%;
  left: 5%;
  top: -webkit-calc(25% + 48px);
  top: calc(25% + 48px);
  background-color: #5F259F;
  padding: 5%;
  -webkit-border-radius: 0.5em;
          border-radius: 0.5em;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  pointer-events: none;
}
#section1 .lightbox-info.open {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  pointer-events: initial;
}
#section1 .lightbox-info p {
  display: block;
  color: #FFF;
  font-size: 1.125em;
  font-family: 'Biotif';
  line-height: 1.5;
}
#section1 .lightbox-info p b {
  font-family: 'Biotif-Book';
  font-size: 115%;
}

#section1 .lightbox .expand {
  display: none;
  position: absolute;
  width: 48px;
  left: 5%;
  top: 22.5%;
  padding: 10px;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  pointer-events: initial;
}
#section1 .lightbox .expand.hidden {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
}
#section1 .lightbox .expand img {
  width: 100%;
}
#section1 .lightbox .control {
  display: inline-block;
  position: absolute;
  width: 48px;
  top: 60px;
  right: 2%;
  padding: 5px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#section1 .lightbox .control.next {
  top: 110px;
}
#section1 .lightbox .control img {
  width: 100%;
}

#section1 span {
  display: inline-block;
  position: absolute;
  width: 13.5%;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  cursor: pointer;
}
#section1 span:not(.open):hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
#section1 span.open {
  left: 54%;
  top: 18%;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
  cursor: default;
  pointer-events: none;
}
#section1 span.hidden {
  opacity: 0 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
}
#section1 span:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.1vw;
  height: 60%;
  background-color: #5f259f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
#section1 span:after {
  display: inline-block;
  position: absolute;
  color: #5f259f;
  font-size: 0.8em;
  font-family: 'Biotif-SemiBold';
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
#section1 span.open:before,
#section1 span.open:after {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
#section1 span img {
  width: 100%;
  height: 100%;
}

#alim {
  left: 9%;
  top: 42%;
  -webkit-animation: fadein 1.5s;
          animation: fadein 1.5s;
}
#alim:before {
  left: 0;
  top: -20%;
}
#alim:after {
  content: "Alimentos y bebidas";
  left: 5%;
  top: -20%;
  white-space: nowrap;
}

#ener {
  left: 22%;
  top: 60%;
  -webkit-animation: fadein 2s;
          animation: fadein 2s;
  z-index: 2;
}
#ener:before {
  right: 0;
  bottom: -20%;
}
#ener:after {
  content: "Energia";
  left: 105%;
  bottom: -20%;
}

#lo {
  left: 23%;
  top: 34%;
  -webkit-animation: fadein 2.5s;
          animation: fadein 2.5s;
}
#lo:before {
  right: 0;
  top: 0;
}
#lo:after {
  content: "Logística";
  left: 105%;
  top: 0;
}

#ret {
  left: 36.4%;
  top: 52%;
  -webkit-animation: fadein 3s;
          animation: fadein 3s;
}
#ret:before {
  right: 0;
  top: 0;
}
#ret:after {
  content: "Retail \A (Proximidad)";
  left: 105%;
  top: 0;
  white-space: pre;
}

#gob {
  left: 48.4%;
  top: 69%;
  -webkit-animation: fadein 3.5s;
          animation: fadein 3.5s;
}
#gob:before {
  height: 40% !important;
  right: 0;
  bottom: -5%;
}
#gob:after {
  content: "Gobierno";
  left: 105%;
  bottom: -5%;
}

#ele {
  left: 62.2%;
  top: 56.4%;
  -webkit-animation: fadein 4s;
          animation: fadein 4s;
  z-index: 2;
}
#ele:before {
  right: 0;
  bottom: -20%;
}
#ele:after {
  content: "Gobierno-Electoral";
  left: 105%;
  bottom: -20%;
  white-space: nowrap;
}

#acc {
  left: 71.5%;
  top: 34%;
  -webkit-animation: fadein 4.5s;
          animation: fadein 4.5s;
}
#acc.open {
  top: 35% !important;
}
#acc:before {
  content: "Otros" !important;
  width: auto !important;
  height: 50% !important;
  left: 12.5%;
  top: -24%;
  color: #5f259f;
  font-size: 0.8em;
  font-family: 'Biotif-SemiBold';
  background-color: transparent !important;
  padding-left: 3.5%;
  border-left: 0.15vw solid #5f259f;
}
#acc:after {
  content: "Química y petroquímicas\A Educación\A Comerciales y de Servicios\A Metal-mecánoca\A Automotriz";
  left: 39%;
  top: -36.5%;
  font-size: 0.7em !important;
  white-space: pre;
  padding-left: 3.5%;
  border-left: 0.15vw solid #5f259f;
}


/*
 * SECTION 2
 */
#section2 {
  background: url(../img/servicios/servicios_bg.svg) no-repeat 2.5% 40px;
  background-size: contain;
}
#section2>span {
  display: inline-block;
  position: absolute;
  width: 13.5%;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  cursor: pointer;
}
#section2>span:not(.open):hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
#section2>span.open {
  cursor: default;
}
#section2>span.hidden {
  opacity: 0 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
}
#section2>span:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.1vw;
  height: 60%;
  background-color: #5f259f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
#section2>span:after {
  display: inline-block;
  position: absolute;
  color: #5f259f;
  font-size: 0.8em;
  font-family: 'Biotif-SemiBold';
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
#section2>span.open {
  left: 66%;
  top: 17%;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
}
#section2>span.open:before,
#section2>span.open:after {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
#section2>span img {
  position: relative;
  width: 100%;
  height: 100%;
}
#section2 .lightbox-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 1vw 0;
     object-position: 1vw 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#section2 .lightbox-cont.open {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#section2 .lightbox-info {
  display: none;
  position: relative;
  width: 90%;
  left: 5%;
  top: -webkit-calc(25% + 48px);
  top: calc(25% + 48px);
  background-color: transparent;
  -webkit-border-radius: 0.5em;
          border-radius: 0.5em;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  pointer-events: none;
}
#section2 .lightbox-info.open {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  pointer-events: initial;
}
#section2 .lightbox-info>img {
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#section2 .lightbox .expand {
  display: none;
  position: absolute;
  width: 48px;
  left: 5%;
  top: 25%;
  padding: 10px;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#section2 .lightbox .expand.hidden {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
}
#section2 .lightbox .expand img {
  width: 100%;
}
#plan {
  position: absolute;
  top: 50%;
  left: 25%;
}
#plan:before {
  height: 50% !important;
  left: 0;
  top: 0;
}
#plan:after {
  content: "Planeación Estratégica";
  top: -10%;
  right: 100%;
  white-space: nowrap;
}
#sys {
  position: absolute;
  top: 45%;
  left: 45%;
}
#sys:before {
  height: 90% !important;
  left: 85%;
  top: -20%;
}
#sys:after {
  content: "Sistemas de gestión";
  left: 85%;
  top: -29%;
  white-space: nowrap;
}

#etapas {
  position: absolute;
  top: 100%;
  padding: 2.5% 4%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#etapas.open {
  top: 0;
  transform: none;
  z-index: 10;
}
#etapas h2 {
  color: #5F259F;
  font-size: 2.3em;
  font-family: 'Biotif-Bold';
  margin-bottom: 5%;
}
#etapas h2 small {
  display: block;
  font-size: 33.33%;
  font-family: 'Biotif-Book';
}
.regresar {
  display: none;
  position: fixed;
  width: 48px;
  top: 10px;
  right: 2%;
  padding: 5px;
  z-index: 9;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.regresar img { 
  width: 100%;
}
#etapas span {
  display: inline-block;
  background: url(../img/servicios/etapas_bg.svg) no-repeat center center;
  background-size: 100% 100%;
}
#etapas span img {
  display: inline-block;
  max-width: 15vw;
  max-height: 22.5vh;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  cursor: pointer;
}
#etapas.open span img {
  max-width: 20vw;
  max-height: 27.5vh;
}
#etapas span img.selected {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: initial;
  pointer-events: none;
}
.ss {
  display: none;
  position: absolute;
  width: 33.33%;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}


/*
 * SECTION 3
 */
#section3 {
  background: url(../img/modelo/modelo_bg.svg) no-repeat 2.5% 40px;
  background-size: contain;
}
#section3 span {
  display: inline-block;
  position: absolute;
  width: 7.5%;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  cursor: pointer;
}
#section3 span.hover {
  opacity: initial !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=NaN)"; 
  -webkit-transform: scale(1.05) !important; 
      -ms-transform: scale(1.05) !important; 
          transform: scale(1.05) !important;
}
#section3 span.blur {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}
#section3 span:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.05vw;
  background-color: #5f259f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
#section3 span:after {
  display: inline-block;
  position: absolute;
  color: #5f259f;
  font-size: 0.6em;
  font-family: 'Biotif-SemiBold';
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
#section3 span img {
  width: 100%;
}
#lightbox3 {
  z-index: 3;
}
#lightbox3 .lightbox-cont {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 1vw 0;
     object-position: 1vw 0;
}
#gobierno {
  left: 43%;
  top: 30%;
}
#gobierno:before {
  height: 44%;
  left: 86%;
  top: -15%;
}
#gobierno:after {
  content: "Gobierno";
  left: 89%;
  top: -12.5%;
}
#mejora {
  left: 48.25%;
  top: 38%;
}
#mejora:before {
  height: 40%;
  left: 85%;
  top: -7%;
}
#mejora:after {
  content: "Procesos de mejora";
  left: 89%;
  top: -6.5%;
  white-space: nowrap;
}
#estrategicos {
  left: 41%;
  top: 42%;
}
#estrategicos:before {
  height: 50%;
  left: 0;
  top: -8%;
}
#estrategicos:after {
  content: "Procesos estratégicos";
  left: -105%;
  top: -7.5%;
  white-space: nowrap;
}
#accionistas {
  left: 60.5%;
  top: 44%;
}
#accionistas:before {
  height: 50%;
  left: 99%;
  top: 11%;
}
#accionistas:after {
  content: "Accionistas/ \A Inversionistas";
  left: 103%;
  top: 12.5%;
  white-space: pre;
}
#cliente {
  left: 53.5%;
  top: 45%;
}
#cliente:before {
  height: 50%;
  left: 85%;
  top: -9%;
}
#cliente:after {
  content: "Cliente";
  left: 50%;
  top: -8.5%;
}
#organizacion {
  left: 46.25%;
  top: 49%;
}
#organizacion:before {
  height: 135%;
  left: 86%;
  top: -98%;
}
#organizacion:after {
  content: "Organización/ \A Personas";
  left: 90%;
  top: -97.5%;
  white-space: pre;
}
#proveedor {
  left: 39%;
  top: 52%;
}
#proveedor:before {
  height: 50%;
  left: 0;
  top: -1%;
}
#proveedor:after {
  content: "Proveedor";
  left: -52%;
  top: 0;
}
#comunidad {
  left: 31.75%;
  top: 58%;
}
#comunidad:before {
  height: 40%;
  left: 0;
  top: -1%;
}
#comunidad:after {
  content: "Comunidad";
  left: -57%;
  top: 0;
}
#seguimiento {
  left: 51.5%;
  top: 62.5%;
}
#seguimiento:before {
  height: 49%;
  left: 99%;
  top: -1%;
}
#seguimiento:after {
  content: "Procesos de\A seguimiento";
  left: 103%;
  top: 0;
  white-space: pre;
}
#soporte {
  left: 44.5%;
  top: 63%;
}
#soporte:before {
  height: 49%;
  left: 0;
  top: 60%;
}
#soporte:after {
  content: "Procesos de soporte";
  left: -99%;
  top: 100%;
  white-space: nowrap;
}
#colaboradores {
  left: 50.25%;
  top: 69.75%;
}
#colaboradores:before {
  height: 40%;
  left: 99%;
  top: 22%;
}
#colaboradores:after {
  content: "Colaboradores \A y familias";
  left: 103%;
  top: 22%;
  white-space: pre;
}


/*
 *
 */
#contactContainer {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/contacto/contact_bg.svg) no-repeat 2.5vw top;
  background-size: contain;
  padding: 60px 10% 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#form_contact {
  position: relative;
  top: 10%;
}
.mitad {
  width: 50%;
  float: left;
}
.completo {
  display: none;
  width: 100%;
}
#contactContainer div h4 {
  font-family: 'Biotif-SemiBold';
  font-size: 3.5rem;
  color: #5f269f;
  font-weight: 500;
  margin-bottom: 5%;
}
#contactContainer div:nth-of-type(2) {
  padding-top: 7%;
}
#form_contact div textarea {
  width: 95%;
  height: 30vh;
  color: #5f269f;
  font-size: 1.125em;
  font-family: 'Biotif-Book';
  background-color: transparent;
  padding: 2.5%;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  border: 2px solid #5f279f;
}
#form_contact div textarea:hover,
#form_contact div textarea:focus {
  background-color: #FFF;
}
#form_contact div input {
  display: block;
  width: 100%;
  color: #5f269f;
  font-size: 1.125em;
  font-family: 'Biotif-Book';
  line-height: 48px;
  background-color: transparent;
  padding: 0;
  margin: 2.5% 0 0 5%;
  border: none;
  border-bottom: 1px solid #5f269f;
}
#form_contact div input:hover,
#form_contact div input:focus {
  background-color: #FFF;
}

::placeholder { 
  color: #999;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#submit {
  border: none;
  background-color: #ec255c !important;
  color: white !important;
  width: 35% !important;
  float: right;
  -webkit-border-radius: 25px;
          border-radius: 25px;
  height: 50px;
  margin-top: 5% !important;
  font-family: 'Biotif';
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
#submit:hover,
#submit:focus {
  background-color: #5f269f !important;
}

@media (max-width: 767px) {
  #nav-icon:before {
    display: none;
  }
  nav ul h3 {
    font-size: 9vw;
    margin-bottom: 40%;
  }
  nav ul li a {
    font-size: 6vw;
    line-height: 44px;
  }

  .lightbox .cerrar {
    top: 0;
    right: 0;
    padding: 10px;
  }

  #section1 {
    background-image: url(../img/main/home_bg_mobile.svg);
    background-position: left 40px;
  }
  #section1 span::before {
    display: none
  }
  #section1 span::after {
    display: none;
  }
  #section1 .lightbox-info {
    display: block;
  }
  #section1 .lightbox .expand {
    display: inline-block;
  }
  #section1 .lightbox .control {
    display: none;
    width: 40px;
  }
  #alim {
    width: 45% !important;
    left: 7.5%;
    top: 33%;
  }
  #lo {
    width: 35% !important;
    left: 55%;
    top: 29.5%;
  }
  #ener {
    width: 42.5% !important;
    left: 4%;
    top: 47%;
    z-index: initial;
  }
  #ret {
    width: 38% !important;
    left: 49%;
    top: 45%;
  }
  #gob {
    width: 39% !important;
    left: 1.5%;
    top: 59%;
  }
  #ele {
    width: 42% !important;
    left: 43.5%;
    top: 56%;
    z-index: initial;
  }
  #acc {
    width: 50% !important;
    left: 17.5%;
    top: 70%;
  }

  #section2 {
    background-image: url(../img/servicios/servicios_bg_mobile.svg);
    background-position: left 40px;
  }
  #section2>span::before {
    display: none
  }
  #section2>span::after {
    display: none;
  }
  #section2 .lightbox-cont {
    -o-object-position: left top;
       object-position: left top;
  }
  #section2 .lightbox .expand {
    display: inline-block;
  }
  #section2 .lightbox-info {
    display: block;
  }
  #plan {
    width: 75% !important;
    left: 7.5%;
    top: 33%;
  }
  #sys {
    width: 72.5% !important;
    left: 12.5%;
    top: 55.5%;
  }
  #etapas {
    width: 100%;
    left: 0;
    top: 70vh;
    padding: 5% 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  #etapas h2 {
    display: none;
  }
  .regresar {
    top: initial;
    bottom: 25.5%;
    padding: 10px;
  }
  #etapas span img {
    max-width: 20vw;
  }
  .ss {
    width: 70%;
    left: 15% !important;
    top: 66.67% !important;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  #section3 {
    background-image: url(../img/modelo/modelo_bg_mobile.svg);
    background-position: left 40px;
  }
  #section3 span {
    width: 18%;
  }
  #section3 span::before {
    display: none
  }
  #section3 span::after {
    right: initial !important;
    bottom: initial !important; 
    color: #FFF;
    font-size: 0.8em;
    font-family: 'Biotif-Book';
    line-height: 1.1;
    text-align: center;
    padding: 2.5%;
    -webkit-border-radius: 0.5em;
            border-radius: 0.5em;
    white-space: pre !important;
  }
  .m1:after {
    background-color: rgba(168, 120, 183, 0.8);
  }
  .m2:after {
    background-color: rgba(135, 177, 149, 0.8);
  }
  .m3:after {
    background-color: rgba(134, 159, 210, 0.8);
  }
  #lightbox3 .lightbox-cont {
    -o-object-position: left top;
       object-position: left top;
  }
  #comunidad {
    left: 4.5%;
    top: 47.5%;
  }
  #comunidad:after {
    left: -15%;
    top: 50%;
  }
  #estrategicos {
    left: 25%;
    top: 44%;
  }
  #estrategicos::after {
    content: "Procesos\A estratégicos";
    left: 50%;
    top: 50%;
    white-space: pre;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #mejora {
    left: 45.5%;
    top: 41%;
  }
  #mejora::after {
    content: "Procesos de\A mejora";
    left: 50%;
    top: 50%;
    white-space: pre;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #gobierno {
    left: 50%;
    top: 33%; 
  }
  #gobierno:after {
    left: -30%;
    top: 40%;
  }
  #proveedor {
    left: 20.5%;
    top: 51%;
  }
  #proveedor:after {
    left: -30%;
    top: 70%;
  }
  #soporte {
    left: 36.5%;
    top: 58%;
  }
  #soporte::after {
    content: "Procesos de\A soporte";
    left: 50%;
    top: 50%;
    white-space: pre;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #colaboradores {
    left: 31.5%;
    top: 66%;
  }
  #colaboradores:after {
    left: -30%;
    top: 70%;
  }
  #organizacion {
    left: 41%;
    top: 48%;
  }
  #organizacion:after {
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #seguimiento {
    left: 56%;
    top: 57.5%;
  }
  #seguimiento:after {
    left: 25%;
    top: 75%;
  }
  #cliente {
    left: 60.5%;
  }
  #cliente:after {
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #accionistas {
    left: 75%;
    top: 52%;
    z-index: 2;
  }
  #accionistas:after {
    left: 35%;
    top: 60%;
  }

  #contactContainer {
    background-image: url(../img/contacto/contact_bg_mobile.svg);
    background-position: left 40px;
    padding: 120px 7.5% 5%;
  }
  #form_contact {
    top: 0;
  }
  .mitad {
    display: none;
  }
  .completo {
    display: block;
  }
  #contactContainer div input {
    width: 100%;
    font-size: 1.5em;
    line-height: 40px;
    background-color: transparent;
    margin: 0;
  }
  #contactContainer div textarea {
    width: 95%;
    height: 20vh;
    font-size: 1.5em;
    margin-top: 10vh;
  }
  #contactContainer div input#submit {
    height: 40px;
    background-color: #ec255c;
    margin-top: 5%;
    -webkit-transition: 1.2s;
    transition: 1.2s;
  }
  #contactContainer div input#submit:hover,
  #contactContainer div input#submit:focus {
    background-color: #5f269f;
  }
}


@font-face {
  font-family: 'Biotif-Black';
  src: url('../fonts/Biotif-Black.eot');
  src: url('../fonts/Biotif-Black.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-Black.woff2') format('woff2'),
      url('../fonts/Biotif-Black.woff') format('woff'),
      url('../fonts/Biotif-Black.svg#Biotif-Black') format('svg');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Biotif-Book';
  src: url('../fonts/Biotif-Book.eot');
  src: url('../fonts/Biotif-Book.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-Book.woff2') format('woff2'),
      url('../fonts/Biotif-Book.woff') format('woff'),
      url('../fonts/Biotif-Book.svg#Biotif-Book') format('svg');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Biotif-SemiBoldItalic';
  src: url('../fonts/Biotif-SemiBoldItalic.eot');
  src: url('../fonts/Biotif-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-SemiBoldItalic.woff2') format('woff2'),
      url('../fonts/Biotif-SemiBoldItalic.woff') format('woff'),
      url('../fonts/Biotif-SemiBoldItalic.svg#Biotif-SemiBoldItalic') format('svg');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Biotif-BlackItalic';
  src: url('../fonts/Biotif-BlackItalic.eot');
  src: url('../fonts/Biotif-BlackItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-BlackItalic.woff2') format('woff2'),
      url('../fonts/Biotif-BlackItalic.woff') format('woff'),
      url('../fonts/Biotif-BlackItalic.svg#Biotif-BlackItalic') format('svg');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Biotif-LightItalic';
  src: url('../fonts/Biotif-LightItalic.eot');
  src: url('../fonts/Biotif-LightItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-LightItalic.woff2') format('woff2'),
      url('../fonts/Biotif-LightItalic.woff') format('woff'),
      url('../fonts/Biotif-LightItalic.svg#Biotif-LightItalic') format('svg');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Biotif';
  src: url('../fonts/Biotif-Regular.eot');
  src: url('../fonts/Biotif-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-Regular.woff2') format('woff2'),
      url('../fonts/Biotif-Regular.woff') format('woff'),
      url('../fonts/Biotif-Regular.svg#Biotif-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Biotif-Bold';
  src: url('../fonts/Biotif-Bold.eot');
  src: url('../fonts/Biotif-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-Bold.woff2') format('woff2'),
      url('../fonts/Biotif-Bold.woff') format('woff'),
      url('../fonts/Biotif-Bold.svg#Biotif-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Biotif-ExtraBoldItalic';
  src: url('../fonts/Biotif-ExtraBoldItalic.eot');
  src: url('../fonts/Biotif-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-ExtraBoldItalic.woff2') format('woff2'),
      url('../fonts/Biotif-ExtraBoldItalic.woff') format('woff'),
      url('../fonts/Biotif-ExtraBoldItalic.svg#Biotif-ExtraBoldItalic') format('svg');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Biotif-SemiBold';
  src: url('../fonts/Biotif-SemiBold.eot');
  src: url('../fonts/Biotif-SemiBold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-SemiBold.woff2') format('woff2'),
      url('../fonts/Biotif-SemiBold.woff') format('woff'),
      url('../fonts/Biotif-SemiBold.svg#Biotif-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Biotif-Light';
  src: url('../fonts/Biotif-Light.eot');
  src: url('../fonts/Biotif-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-Light.woff2') format('woff2'),
      url('../fonts/Biotif-Light.woff') format('woff'),
      url('../fonts/Biotif-Light.svg#Biotif-Light') format('svg');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Biotif-RegularItalic';
  src: url('../fonts/Biotif-RegularItalic.eot');
  src: url('../fonts/Biotif-RegularItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-RegularItalic.woff2') format('woff2'),
      url('../fonts/Biotif-RegularItalic.woff') format('woff'),
      url('../fonts/Biotif-RegularItalic.svg#Biotif-RegularItalic') format('svg');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Biotif-MediumItalic';
  src: url('../fonts/Biotif-MediumItalic.eot');
  src: url('../fonts/Biotif-MediumItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-MediumItalic.woff2') format('woff2'),
      url('../fonts/Biotif-MediumItalic.woff') format('woff'),
      url('../fonts/Biotif-MediumItalic.svg#Biotif-MediumItalic') format('svg');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Biotif-BoldItalic';
  src: url('../fonts/Biotif-BoldItalic.eot');
  src: url('../fonts/Biotif-BoldItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-BoldItalic.woff2') format('woff2'),
      url('../fonts/Biotif-BoldItalic.woff') format('woff'),
      url('../fonts/Biotif-BoldItalic.svg#Biotif-BoldItalic') format('svg');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Biotif-Medium';
  src: url('../fonts/Biotif-Medium.eot');
  src: url('../fonts/Biotif-Medium.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-Medium.woff2') format('woff2'),
      url('../fonts/Biotif-Medium.woff') format('woff'),
      url('../fonts/Biotif-Medium.svg#Biotif-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Biotif-BookItalic';
  src: url('../fonts/Biotif-BookItalic.eot');
  src: url('../fonts/Biotif-BookItalic.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-BookItalic.woff2') format('woff2'),
      url('../fonts/Biotif-BookItalic.woff') format('woff'),
      url('../fonts/Biotif-BookItalic.svg#Biotif-BookItalic') format('svg');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Biotif-ExtraBold';
  src: url('../fonts/Biotif-ExtraBold.eot');
  src: url('../fonts/Biotif-ExtraBold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Biotif-ExtraBold.woff2') format('woff2'),
      url('../fonts/Biotif-ExtraBold.woff') format('woff'),
      url('../fonts/Biotif-ExtraBold.svg#Biotif-ExtraBold') format('svg');
  font-weight: 800;
  font-style: normal;
}
