@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Roboto+Mono:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

*{
    font-family: 'Montserrat', sans-serif;
    border-radius: 6px;
}
body {
    overflow-x: hidden;
}



:root {
  --screen-width: 320px;
  --screen-height: 560px;
  --header-bg-color: #673AB7;
  --splash-bg-color: #FF36C2;
}

.nav__toggle {
  display: inline-block;
  position: absolute;
  z-index: 10;
  padding: 0;
  border: 0;
  background: transparent;
  outline: 0;
  right: -15px;
  top: 2px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.15s linear;
  pointer-events: all;
}
.nav__toggle:hover, .nav__toggle:focus {
  background-color: transparent;
}
#nav{
    width: 100%;
    position: relative;
    z-index: 100;
    pointer-events: none;
}
.nav__menu {
  display: flex; 
  flex-direction:column;
  justify-content: center;
  height: var(--screen-height);
  position: relative;
  z-index: 5;
  visibility: hidden;
  width: 100%;
  pointer-events: all;
}
.nav__item {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0, 0.995, 0.99, 1) 0.3s;
  pointer-events: all;
}
.nav__link img{
    width: 120px;
    height: auto;
    display: block;
    margin-left: -7px;
}
.nav__item:nth-child(1) {
  transform: translateY(-40px);
}
.nav__item:nth-child(2) {
  transform: translateY(-80px);
}
.nav__item:nth-child(3) {
  transform: translateY(-120px);
}
.nav__item:nth-child(4) {
  transform: translateY(-160px);
}
.nav__item:nth-child(5) {
  transform: translateY(-200px);
}
.nav__link {
  color: white;
  display: block;
  text-align: left;
  letter-spacing: 5px;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 1rem;
  font-family: 'Roboto Mono', serif;
}
.nav__link:hover, .nav__link:focus {
  text-decoration: underline;
  /*background-color: rgba(0, 0, 0, 0.2);*/
}

.menuicon {
  display: block;
  cursor: pointer;
  color: black;
  transform: rotate(0deg);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menuicon__bar, .menuicon__circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}
.menuicon__bar {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-in-out;
}
.menuicon__circle {
  transition: stroke-dashoffset 0.3s linear 0.1s;
  stroke-dashoffset: 144.513262038;
  stroke-dasharray: 144.513262038;
}

.splash {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 1px;
  height: 1px;
}
.splash::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  background-color: var(--splash-bg-color);
  width: 284vmax;
  height: 284vmax;
  top: -142vmax;
  left: -142vmax;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
  will-change: transform;
}

.nav:target > .splash::after,
.nav--open > .splash::after {
  transform: scale(1);
}
.nav:target .menuicon,
.nav--open .menuicon {
  color: white;
  transform: rotate(180deg);
}
.nav:target .menuicon__circle,
.nav--open .menuicon__circle {
  stroke-dashoffset: 0;
}
.nav:target .menuicon__bar:nth-child(1), .nav:target .menuicon__bar:nth-child(4),
.nav--open .menuicon__bar:nth-child(1),
.nav--open .menuicon__bar:nth-child(4) {
  opacity: 0;
}
.nav:target .menuicon__bar:nth-child(2),
.nav--open .menuicon__bar:nth-child(2) {
  transform: rotate(45deg);
}
.nav:target .menuicon__bar:nth-child(3),
.nav--open .menuicon__bar:nth-child(3) {
  transform: rotate(-45deg);
}
.nav:target .nav__menu,
.nav--open .nav__menu {
  visibility: visible;
}
.nav:target .nav__item,
.nav--open .nav__item {
  opacity: 1;
  transform: translateY(0);
}

.contenedor{
    overflow: hidden;
}
.contenedor_interna{
    overflow: hidden;
    background-color: #F8F7F4;
    height: 100vh;
}
.destacado_grilla {
    animation: fade-in 1s forwards;
    animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pop-word {
    to {
      transform: rotateX(0) translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes show {
    to {
      opacity: 1;
    }
  }

  .letra {
    opacity: 0;
    transform: translateZ(-200px) rotateX(-90deg);
    animation: entrada-letra 1s forwards;
}

.letra_out{
    opacity: 0!important;
    transform: translateZ(0) rotateX(0deg)!important;
    animation: salida-letra 0.7s backwards!important;
    transition: all 6s ease;
}

@keyframes entrada-letra {
    0% {
        opacity: 0;
        transform: translateZ(-200px) rotateX(-90deg) scaleY(0);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) rotateX(0deg) scaleY(1);
    }
}
@keyframes salida-letra {
    0% {
        opacity: 1;
        transform: translateZ(0) rotateX(0deg) scaleY(1);
    }
    100% {
        opacity: 0;
        transform: translateZ(-200px) rotateX(-90deg) scaleY(0);
    }
}
@keyframes animate-left {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .letra {
    display: inline-block;
    width: calc(100% / 5);
    height: 16vh;
    text-align: center;
    animation: show 0.6s forwards, pop-word 2.5s forwards;
    animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
    opacity: 0;
    transform: rotateX(120deg) translateY(-80%);
    transform-origin: 60% 100%;
  }
  
  .letra:nth-of-type(2) {
    padding: 0;
    animation-delay: 0.8s;
  }
  
  .letra:nth-of-type(3) {
    padding: 0;
    animation-delay: 1s;
  }
  
  .letra:nth-of-type(4) {
    padding: 0;
    animation-delay: 1.2s;
  }
  
  .letra:nth-of-type(5) {
    padding: 0;
    animation-delay: 1.4s;
  }
  
.letra svg{
    height: 100%;
    width: auto;
    display: inline-block;
    text-align: center;
}
.letra:first-child, .letra:nth-child(2){
    text-align: left!important;
}
.letra:last-child, .letra:nth-child(4){
    text-align: right!important;
}
.slick-list{padding:0 7% 0 0 !important;}
.contenedor_proyectos_destacados{
    padding: 0 0 0 9vw;
    opacity: 0;
}
.animate-left {
    animation: animate-left 1s forwards;
    animation-timing-function:cubic-bezier(0.075, 0.82, 0.165, 1);
  }
.slick-dots{
    display: none!important;
}
.slick-next{
    position: absolute;
    top: auto;
    left: 100px;
    right: auto;
    bottom: 60px;
    display: inline-block;
    background-color: #FF36C2;
    padding: 10px;
    border: none;
    z-index: 70;
    cursor: pointer;
}
.slick-prev{
    position: absolute;
    top: auto;
    left: 9vw;
    right: auto;
    bottom: 60px;
    display: inline-block;
    background-color: #FF36C2;
    padding: 10px;
    border: none;
    z-index: 70;
    cursor: pointer;
}
.slick-slide{
    filter: saturate(0%);
    cursor: grab;
    transition: all 2s ease;
    opacity: 50%;
}
.slick-slide .info_destacado_proyecto{
    opacity: 20%;
    padding-bottom: 80px;
}
.slick-current{
    filter: saturate(100%)!important;
    cursor: pointer!important;
    opacity: 100%!important;
    transition: all 2s ease;
}
.slick-current .info_destacado_proyecto{
    opacity: 100%!important;
}
.slick-disabled{
    background-color: #DFDEDC!important;
}
section{
    width: 100%;
    height: 100vh;
    display: block;
    position: relative;
    background: #ffffff;
}
.grilla{
    max-width: 82vw;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
}
.grilla_fix{
    position: absolute!important;
    left: auto;
    right: auto;
    margin: 0 auto;
}
#header-bar{
    width: 100%;
    height: 50px;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 100;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}
.header_menu{
    height: 100vh!important;
}
.header_activo{
    background-color: rgba(255, 255, 255, 1)!important;
}
.menu_bar{
    float: left;
    display: block;
    width: 10%;
    height: auto;
}
.header_accesos{
    display: none;
    position: relative;
        z-index: 98;
}
.logo_blvd{
    width: 55px!important;
    margin: 0 40px 0 0!important;
    padding: 14px 0!important;
    height: auto;
    display: block;
    float: left;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0;
    z-index: 99;
    position: relative;
}
.logo_blvd img{
    border-radius: 0;
}
.logo_blvd_small_activo{
    width: 55px!important;
    margin: 0 40px 0 0!important;
    padding: 14px 0!important;
    transition: all 0.3s ease;
}
.item_header{
    font-size: 18px;
    line-height: 50px;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    margin: 0 40px 0 0;
    transition: all 0.3s ease;
}
.item_header:hover{
    text-decoration: underline;
}
.social_bar{
    float: right;
    display: block;
    width: 70%;
    height: auto;
    text-align: right;
    padding: 0 50px 0 0;
}
.ubicacion{
    font-family: 'Roboto Mono', serif;
    font-size: 12px;
    line-height: 42px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 300;
    display: none;
    margin: 0 20px 0 0;
}
.ubicacion span{
    font-family: 'Roboto Mono', serif;
    font-size: 14px;
    line-height: 42px;
    font-weight: 700;
    color: #FF36C2;
}
.redes{
    display: inline-block;
}
.item_redes{
    width: 20px;
    height: auto;
    display: inline-block;
    margin: 15px 0 0 25px;
}
.item_redes > img{
    border-radius: 0!important;
}
#destacado_home{
    background: rgb(248,247,244);
    background: -moz-linear-gradient(0deg, rgba(248,247,244,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(248,247,244,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(0deg, rgba(248,247,244,1) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f7f4",endColorstr="#ffffff",GradientType=1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 74vh;
    padding: 0 0 20vh;
}
.pattern_destacado{
    position: absolute;
    width: 100%;
    height: auto;
    display: block;
}
.letra:first-child, .letra:nth-child(2){
    text-align: left!important;
}
.letra:last-child, .letra:nth-child(4){
    text-align: right!important;
}
.letra img{
    width: auto!important;
    height: 100%!important;
    display: inline-block!important;
}
.destacado_grilla{
    max-width: 900px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
}
.logo_destacado{
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
    margin: 40vh auto 30px;
}
.logo_destacado > img{
    border-radius: 0!important;
}
.frase_destacada{
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    font-size: 26px;
    line-height: 110%;
    font-weight: 300;
    letter-spacing: 21px;
    margin: 0 auto 20px;
    color: #222222;
}
@keyframes fade-in-char {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
  
.frase_destacada {
    text-align: center;
    opacity: 0;
}
  
.frase_destacada {
    display: inline-block;
    opacity: 0;
    animation: fade-in-char 0.5s forwards;
}
  
.comillas_destacada{
    width: 30px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}
.bajada_destacada{
    max-width: 750px;
    width: 80%;
    height: auto;
    font-family: 'Roboto Mono', serif;
    font-size: 14px;
    line-height: 122%;
    font-weight: 200;
    text-align: center;
    color: #7A7A7A;
    margin: 0 auto;
}
#proyectos_destacados{
    background-color: #F8F7F4;
    width: 100%;
    height: auto;
}
.destacado_proyecto{
    display: inline-block;
}
.imagen_destacado_proyecto{
    max-width: 95%;
    width: 100%;
    height: auto;
    display: inline-block;
    position: relative;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.20);
    margin: 0 0 20px;
}
.boton_ver_proyecto{
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    line-height: 40px;
    background-color: #01D8EB;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    position: absolute;
    left: auto;
    top: auto;
    bottom: 20px;
    right: 20px;
    transition: all 0.3s ease;
}
.boton_ver_proyecto span{
    display: none;
}
.boton_ver_proyecto:hover{
    transform: scale(1.1);
}
.flecha{
    width: 15px;
    height: auto;
    display: inline-block;
    margin: 0 10px -3px 10px;
}
.cintillo{
    width: auto;
    height: 28px;
    display: inline-block;
    background-color: #FF36C2;
    color: #ffffff;
    font-size: 12px;
    line-height: 28px;
    text-transform: uppercase;
    font-family: 'montserrat', sans-serif;
    font-weight: 300;
    padding: 0 16px;
    border-radius: 0px;
    margin: 0 0 15px;
}
.cintillo span{
    font-weight: 700;
}
.tit_proyecto{
    color: #7A7A7A;
    font-family: 'montserrat', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 108%;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 0 10px;
}
.tit_proyecto_clientes{
    color: #7A7A7A;
    font-family: 'Roboto Mono', serif;
    font-weight: 300;
    font-size: 26px;
    line-height: 108%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 30px;
    text-align: center;
}
.tit_proyecto_exp{
    color: #ffffff;
    padding-bottom: 20px;
    display: inline-block!important;
}
.tit_proyecto span{
    color: #FF36C2;
    font-weight: 600;
}
.bajada_proyecto{
    color: #7A7A7A;
    font-family: 'Roboto Mono', serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 108%;
    width: 60%;
    height: auto;
    display: block;
    margin: 0 0 50px;
}
#servicios{
    padding: 80px 0;
}
.contenedor_hacemos{
    width: 100%;
    height: auto;
    display: block;
}
.descr_serv{
    width: 100%;
    height: auto;
    display: block;
    padding: 20px 10px 10px;
}
.tit_serv_a{
    width: 50%;
    height: auto;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
    line-height: 16px;
    font-weight: 200;
    color: #7A7A7A;
}
.tit_serv_b{
    width: 50%;
    height: auto;
    display: inline-block;
    vertical-align: top;
    text-align: right;
    font-size: 14px;
    line-height: 16px;
    font-weight: 200;
    color: #7A7A7A;
}
.lista_servicios{
    width: 100%;
    height: auto;
    display: block;
}
.linea_servicio_divisor{
    width: 100%;
    height: 1px;
    display: block;
    background-color: #7A7A7A;
}
.serv{
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 38px;
    color: #7A7A7A;
    text-align: left;
    padding: 30px 0px 30px 10px;
}
.emo{
    width: 45px;
    height: auto;
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
}
.serv span{
    font-family: 'Roboto Mono', serif;
    font-size: 20px;
    line-height: 110%;
    color: #7A7A7A;
    font-weight: 300;
}
.acceso_serv{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #000000 dashed;
    border-radius: 25px;
    position: absolute;
    left: auto;
    right: 10px;
    top: 25px;
    bottom: auto;
    transition: all 0.3s ease;
}
.capa_trabajo{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);

    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
.acceso_serv2{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: auto;
    right: 20px;
    top: 20px;
    bottom: auto;
    transition: all 0.3s ease;
    opacity: 0;

    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
.capa_trabajo:hover{
    background-color: rgba(0, 0, 0, 0.6);
}
.capa_trabajo:hover .acceso_serv2{
    opacity: 1;
    width: 50px;
    height: 50px;
}
.acceso_serv:hover{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    right: 5px;
    top: 20px;
}
.acceso_serv img{
    width: 20px;
    height: auto;
    display: block;
}
.modulo_hacemos{
    width: auto;
    height: 220px;
    display: block;
    background-color: #ECECEC;
    margin: 0 0 18px;
    padding: 20px;
    position: relative;
    /*border: 1px solid #ECECEC;*/
}
.modulo_hacemos span{
    color: #7A7A7A;
    font-family: 'montserrat', sans-serif;
    font-weight: 300;
    font-size: 26px;
    line-height: 108%;
    width: 50%;
    height: auto;
    display: block;
    position: absolute;
    left: 20px;
    top: auto;
    right: auto;
    bottom: 20px;
}
.modulo_hacemos_vacio{
    width: auto;
    height: 220px;
    display: block;
    background-color: transparent;
    margin: 0 0 18px;
    padding: 20px;
    position: relative;
}
#clientes{
    height: auto!important;
    padding: 0 0 50px;
}
.contenedor_clientes{
    display: block;
    margin: 40px 0 60px;
}
.cliente{
    width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: top;
    padding: 10px 35px;
    opacity: 80%;
}
.full_black{
    width: 100%;
    height: auto;
    padding: 30px 0 20px;
    min-height: 80px;
    display: block;
    background-color: #000000;
    position: relative;
}
#experiencias{
    background-color: #000000;
    opacity: 1;
    background-image: radial-gradient(#3b3b3b 0.75px, #000000 0.75px);
    background-size: 15px 15px;
    color: #ffffff;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 70px 0;
    height: auto;
    position: relative;
}
.carousel_trabajos{
    padding: 20px 0;
    display: block;
    width: 100%;
    height: auto;
}
.proyecto_experiencia{
    width: 97vw;
    height: auto;
    display: inline-block;
    vertical-align: top;
}
.imagen_proyecto{
    width: 65%;
    height: auto;
    max-height: 215px;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    margin: 0 30px;
    position: relative;
}
.informacion_proyecto{
    width: 90%;
    height: auto;
    display: inline-block;
    vertical-align: top;
    background-color: transparent!important;
    padding: 30px 70px 30px 40px;
}
.cintillo_proyecto{
    font-family: 'Roboto Mono', serif;
    font-size: 14px;
    line-height: 110%;
    text-align: left;
    width: 100%;
    height: auto;
    display: block;
    color: #FF36C2;
    font-weight: 200;
    margin: 0 0 20px;
}
.tit_proyecto_gal{
    font-size: 22px;
    line-height: 110%;
    text-align: left;
    color: #ffffff;
    font-weight: 200;
    margin: 0 0 20px;
    width: 100%;
    height: auto;
    padding: 0 20px 0 0;
}
.bajada_proyecto_gal{
    font-family: 'Roboto Mono', serif;
    font-size: 13px;
    line-height: 118%;
    text-align: left;
    width: 100%;
    height: auto;/*23vh*/
    display: block;
    color: #ffffff;
    font-weight: 200;
    margin-bottom: 20px;
}
.boton_ver_proyecto_vertical{
    width: 110px;
    height: 40px;
    display: none;
    text-align: center;
    color: #000000;
    line-height: 40px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.boton_ver_proyecto_vertical:hover{
    transform: scale(1.1);
}
.boton_todos{
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    position: absolute;
    left: auto;
    right: 11vw;
    top: 65px;
    bottom: auto;
    transition: all 0.3s ease;
    z-index: 10;
    display: block!important;
    cursor: pointer;
}
.boton_todos:hover{
    background-color: #ffffff;
    color: #000000;
}
  
.vertical-center {
    display: table;
    height: 100%;
    width: 100%;
}
  
.vertical-center__inner {
    display: table-cell;
    vertical-align: middle;
}
  
.section--full {
    text-align: left;
}
  
.section--full,
.section--vertical {
    min-height: 100vh;
    position: relative;
}
  
.block-list, .block-list2 {
    white-space: nowrap;
}
  
.block-list__item {
    width: 100%;
    height: 300px;
    min-height: 300px;
    display: inline-block;
    white-space: normal;
    padding-right: 16px;
}
  
.block-list__item-inner {
    width: 100%;
    height: 330px;
    display: inline-block;
    padding: 15vh 0;
}
.block-list__item:first-child {
    margin-left: 0;
    width: 40vw ;
}

.block-list__item2 {
    width: 70vw;
    height: auto;
    min-height: 300px;
    display: inline-block;
    white-space: normal;
    padding-right: 20px;
}
  
.block-list__item-inner2 {
    width: 100%;
    height: auto;
    display: inline-block;
}
.block-list__item2:first-child {
    margin-left: 0;
    width: 50vw;
}
  
#third {
    background: #f5f5f5;
}
  
.scrollend {
    transform: translateX(-800px);
}
#contacto{
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
    color: #222222;
    background-color: #ffffff;
}
.mod_tit_contacto{
    width: 100%;
    height: 350px;
    display: inline-block;
    vertical-align: top;
    font-size: 26px;
    line-height: 108%;
    text-align: left;
    color: #000000;
    font-weight: 200;
    padding: 100px 0 50px;
}
.mod_tit_contacto span{
    font-weight: 600;
    display: block;
    width: 100%;
    height: auto;
}
.mod_form_contacto{
    width: 100%;
    height: auto;
    display: block;
    padding: 0 0 40px;
    text-align: left;
}
.pais{
    font-size: 20px;
    line-height: 108%;
    text-transform: uppercase;
    font-weight: 300;
    text-decoration: none;
    color: #000000;
    margin: 30px 0;
}
.bajada_contacto{
    font-family: 'Roboto Mono', serif;
    font-size: 14px;
    line-height: 108%;
    color: #000000;
    text-align: left;
    font-weight: 300;
    margin: 0 0 40px;
}
.btn_email{
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 0 0;
    width: auto;
    height: 45px;
    background-color: #01D8EB;
    text-align: left;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 45px;
    padding: 0px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn_email:hover{
    transform: scale(1.1);
}
.botonera_contacto{
    width: 120px;
    height: auto;
    display: inline-block;
}
.btn_contacto{
    display: block;
    margin: 0 20px 0 0;
    width: 45px;
    height: 45px;
    padding: 10px;
    transition: all 0.3s ease;
    font-family: 'Roboto Mono', serif;
    color: #222222;
    text-decoration: none;
}
.btn_contacto:hover{
    text-decoration: underline;
}

/*SLIDER*/
@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-350px * 7));
    }
}
@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-350px * 7));
    }
}
.slider {
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}
.slider::before, .slider::after {
    content: "";
    height: 150px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
    display: flex;
    width: calc(350px * 14);
}
.slider .slide {
    height: 150px;
    width: 350px;
}

@-webkit-keyframes scroll2 {
    0% {
      transform: translateX(calc(-350px * 7));
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes scroll2 {
    0% {
      transform: translateX(calc(-350px * 7));
    }
    100% {
      transform: translateX(0);
    }
}
.slider2 {
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}
.slider2::before, .slider2::after {
    content: "";
    height: 150px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider2::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider2::before {
    left: 0;
    top: 0;
}
.slider2 .slide-track2 {
    -webkit-animation: scroll2 40s linear infinite;
            animation: scroll2 40s linear infinite;
    display: flex;
    width: calc(350px * 14);
}
.slider2 .slide {
    height: 150px;
    width: 350px;
}

.logo_pie{
    width: 100%;
    height: auto;
    display: block;
    padding: 0 40px;
}
@-webkit-keyframes scroll3 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-900px));
    }
}
@keyframes scroll3 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-900px));
    }
}
.slider3 {
    height: 350px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0 0;
}
.slider3::before, .slider3::after {
    content: "";
    height: 150px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider3::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider3::before {
    left: 0;
    top: 0;
}
.slider3 .slide-track3 {
    -webkit-animation: scroll3 20s linear infinite;
            animation: scroll3 20s linear infinite;
    display: flex;
    width: calc(1350px * 2);
}
.slider3 .slide3 {
    height: 450px;
    width: 2050px;
}
@media screen and (min-width: 768px) {
    #destacado_home {
        background: rgb(248, 247, 244);
        background: -moz-linear-gradient(0deg, rgba(248, 247, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(248, 247, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(0deg, rgba(248, 247, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f7f4",endColorstr="#ffffff",GradientType=1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 84vh;
        padding: 0 0 20vh;
    }
    .logo_destacado {
        max-width: 120px;
        width: 100%;
        height: auto;
        display: block;
        margin: 56vh auto 30px;
    }
    .letra {
        display: inline-block;
        width: calc(100% / 5);
        height: 30vh;
        text-align: center;
        animation: show 0.6s forwards, pop-word 2.5s forwards;
        animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
        opacity: 0;
        transform: rotateX(120deg) translateY(-80%);
        transform-origin: 60% 100%;
    }
    .frase_destacada {
        width: 100%;
        text-transform: uppercase;
        text-align: center;
        font-size: 70px;
        line-height: 110%;
        font-weight: 300;
        letter-spacing: 21px;
        margin: 0 auto 20px;
        color: #222222;
    }
    .slick-next {
        position: absolute;
        top: auto;
        left: 134px;
        right: auto;
        bottom: 60px;
        display: inline-block;
        background-color: #FF36C2;
        padding: 10px;
        border: none;
        z-index: 70;
        cursor: pointer;
    }
    #experiencias {
        background-color: #000000;
        color: #ffffff;
        overflow-y: hidden;
        overflow-x: auto;
        padding: 140px 0 70px;
        height: auto;
        position: relative;
    }
    .proyecto_experiencia {
        width: 97vw;
        height: auto;
        display: flex;
        vertical-align: top;
        align-content: center;
        align-items: center;
    }
    .boton_todos {
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #ffffff;
        position: absolute;
        left: auto;
        right: 10vw;
        top: 134px;
        bottom: auto;
        transition: all 0.3s ease;
        z-index: 10;
    }
    .block-list__item2 {
        width: 90vw;
        height: auto;
        min-height: 300px;
        display: inline-block;
        white-space: normal;
        padding-right: 20px;
    }
    .tit_proyecto {
        font-family: 'montserrat', sans-serif;
        font-weight: 300;
        font-size: 30px;
        line-height: 108%;
        width: 80%;
        height: auto;
        display: block;
        margin: 0 0 30px;
    }
    .informacion_proyecto {
        width: 40%;
        height: auto;
        display: inline-block;
        vertical-align: top;
        background-color: #000000;
        padding: 30px 40px 30px 40px;
    }
    .imagen_proyecto {
        width: 45%;
        height: auto;
        max-height: inherit;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin: 0 30px;
    }
    .boton_ver_proyecto_vertical {
        width: 110px;
        height: 40px;
        display: none;
        text-align: center;
        color: #000000;
        line-height: 40px;
        background-color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
    }
    @-webkit-keyframes scroll3 {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-2050px));
        }
    }
    @keyframes scroll3 {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-2050px));
        }
    }
    .slider3 {
        height: 550px;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 20px 0 0;
    }
    .slider3::before, .slider3::after {
        content: "";
        height: 550px;
        position: absolute;
        width: 200px;
        z-index: 2;
    }
    .slider3::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }
    .slider3::before {
        left: 0;
        top: 0;
    }
    .slider3 .slide-track3 {
        -webkit-animation: scroll3 25s linear infinite;
                animation: scroll3 25s linear infinite;
        display: flex;
        width: calc(2850px * 6);
    }
    .slider3 .slide3 {
        height: 450px;
        width: 2050px;
    }

}

/**/
@media screen and (min-width: 1024px) {
    #destacado_home {
        background: rgb(248, 247, 244);
        background: -moz-linear-gradient(0deg, rgba(248, 247, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(248, 247, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(0deg, rgba(248, 247, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f7f4",endColorstr="#ffffff",GradientType=1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 84vh;
        padding: 0 0 20vh;
    }
    .logo_destacado {
        max-width: 120px;
        width: 100%;
        height: auto;
        display: block;
        margin: 56vh auto 30px;
    }
    .letra {
        display: inline-block;
        width: calc(100% / 5);
        height: 30vh;
        text-align: center;
        animation: show 0.6s forwards, pop-word 2.5s forwards;
        animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
        opacity: 0;
        transform: rotateX(120deg) translateY(-80%);
        transform-origin: 60% 100%;
    }
    .frase_destacada {
        width: 100%;
        text-transform: uppercase;
        text-align: center;
        font-size: 70px;
        line-height: 110%;
        font-weight: 300;
        letter-spacing: 21px;
        margin: 0 auto 20px;
        color: #222222;
    }
    .slick-next {
        position: absolute;
        top: auto;
        left: 155px;
        right: auto;
        bottom: 60px;
        display: inline-block;
        background-color: #FF36C2;
        padding: 10px;
        border: none;
        z-index: 70;
        cursor: pointer;
    }
    #experiencias {
        background-color: #000000;
        color: #ffffff;
        overflow-y: hidden;
        overflow-x: auto;
        padding: 90px 0 70px;
        height: auto;
        position: relative;
    }
    .proyecto_experiencia {
        width: 97vw;
        height: auto;
        display: flex;
        vertical-align: top;
        align-content: center;
        align-items: center;
    }
    .boton_todos {
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #ffffff;
        position: absolute;
        left: auto;
        right: 10vw;
        top: 134px;
        bottom: auto;
        transition: all 0.3s ease;
        z-index: 10;
    }
    .block-list__item2 {
        width: 90vw;
        height: auto;
        min-height: 300px;
        display: inline-block;
        white-space: normal;
        padding-right: 20px;
    }
    .tit_proyecto {
        font-family: 'montserrat', sans-serif;
        font-weight: 300;
        font-size: 30px;
        line-height: 108%;
        width: 80%;
        height: auto;
        display: block;
        margin: 0 0 30px;
    }
    .informacion_proyecto {
        width: 40%;
        height: auto;
        display: inline-block;
        vertical-align: top;
        background-color: #000000;
        padding: 30px 40px 30px 40px;
    }
    .imagen_proyecto {
        width: 45%;
        height: auto;
        max-height: 550px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        margin: 0 30px;
    }
    .boton_ver_proyecto_vertical {
        width: 110px;
        height: 40px;
        display: none;
        text-align: center;
        color: #000000;
        line-height: 40px;
        background-color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
    }
    @-webkit-keyframes scroll3 {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-2050px));
        }
    }
    @keyframes scroll3 {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-2050px));
        }
    }
    .slider3 {
        height: 550px;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 20px 0 0;
    }
    .slider3::before, .slider3::after {
        content: "";
        height: 550px;
        position: absolute;
        width: 200px;
        z-index: 2;
    }
    .slider3::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }
    .slider3::before {
        left: 0;
        top: 0;
    }
    .slider3 .slide-track3 {
        -webkit-animation: scroll3 25s linear infinite;
                animation: scroll3 25s linear infinite;
        display: flex;
        width: calc(2850px * 6);
    }
    .slider3 .slide3 {
        height: 450px;
        width: 2050px;
    }

}
@media screen and (min-width: 1100px) {
    .destacado_grilla {
        animation: fade-in 1s forwards;
        animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
    }
    
    @keyframes fade-in {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes pop-word {
        to {
          transform: rotateX(0) translateY(0);
          opacity: 1;
        }
      }
      
      @keyframes show {
        to {
          opacity: 1;
        }
      }
    
      .letra {
        opacity: 0;
        transform: translateZ(-200px) rotateX(-90deg);
        animation: entrada-letra 1s forwards;
    }
    
    .letra_out{
        opacity: 0!important;
        transform: translateZ(0) rotateX(0deg)!important;
        animation: salida-letra 0.7s backwards!important;
        transition: all 6s ease;
    }
    
    @keyframes entrada-letra {
        0% {
            opacity: 0;
            transform: translateZ(-200px) rotateX(-90deg) scaleY(0);
        }
        100% {
            opacity: 1;
            transform: translateZ(0) rotateX(0deg) scaleY(1);
        }
    }
    @keyframes salida-letra {
        0% {
            opacity: 1;
            transform: translateZ(0) rotateX(0deg) scaleY(1);
        }
        100% {
            opacity: 0;
            transform: translateZ(-200px) rotateX(-90deg) scaleY(0);
        }
    }
    @keyframes animate-left {
        from {
          transform: translateX(100%);
          opacity: 0;
        }
        to {
          transform: translateX(0);
          opacity: 1;
        }
    }
      
    .letra {
        display: block;
        width: calc(100% / 5);
        height: 75vh;
        text-align: center;
        animation: show 0.6s forwards, pop-word 2.5s forwards;
        animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
        opacity: 0;
        transform: rotateX(120deg) translateY(-80%);
        transform-origin: 60% 100%;
    }
      
    .letra:nth-of-type(2) {
        padding: 0 2rem;
        animation-delay: 0.8s;
    }
      
    .letra:nth-of-type(3) {
        padding: 0 2rem;
        animation-delay: 1s;
    }
      
    .letra:nth-of-type(4) {
        padding: 0 2rem;
        animation-delay: 1.2s;
    }
      
    .letra:nth-of-type(5) {
        padding: 0;
        animation-delay: 1.4s;
    }
      
    .letra svg{
        height: 100%;
        width: auto;
        display: inline-block;
        text-align: center;
    }
    .letra:first-child, .letra:nth-child(2){
        text-align: left!important;
    }
    .letra:last-child, .letra:nth-child(4){
        text-align: right!important;
    }
    .slick-list{padding:0 45% 0 0 !important;}
    .contenedor_proyectos_destacados{
        padding: 0 0 0 9vw;
        opacity: 0;
    }
    .animate-left {
        animation: animate-left 1s forwards;
        animation-timing-function:cubic-bezier(0.075, 0.82, 0.165, 1);
      }
    .slick-dots{
        display: none!important;
    }
    .slick-next{
        position: absolute;
        top: auto;
        left: 13.5vw;
        right: auto;
        bottom: 60px;
        display: inline-block;
        background-color: #FF36C2;
        padding: 10px;
        border: none;
        z-index: 70;
        cursor: pointer;
    }
    .slick-prev{
        position: absolute;
        top: auto;
        left: 9vw;
        right: auto;
        bottom: 60px;
        display: inline-block;
        background-color: #FF36C2;
        padding: 10px;
        border: none;
        z-index: 70;
        cursor: pointer;
    }
    .slick-slide{
        filter: saturate(0%);
        cursor: grab;
        transition: all 2s ease;
        opacity: 50%;
    }
    .slick-slide .info_destacado_proyecto{
        opacity: 20%;
        padding-bottom: 80px;
    }
    .slick-current{
        filter: saturate(100%)!important;
        cursor: pointer!important;
        opacity: 100%!important;
        transition: all 2s ease;
    }
    .slick-current .info_destacado_proyecto{
        opacity: 100%!important;
    }
    .slick-disabled{
        background-color: #DFDEDC!important;
    }
    section{
        width: 100%;
        height: 100vh;
        display: block;
        position: relative;
        background: #ffffff;
    }
    .grilla{
        max-width: 82vw;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        position: relative;
    }
    .grilla_fix{
        position: absolute!important;
        left: auto;
        right: auto;
        margin: 0 auto;
    }
    #header-bar{
        width: 100%;
        height: 50px;
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: auto;
        z-index: 100;
        overflow: hidden;
        background-color: rgba(255, 255, 255, 1);
        transition: all 0.3s ease;
    }
    .header_activo{
        background-color: rgba(255, 255, 255, 1)!important;
    }
    .menu_bar{
        float: left;
        display: block;
        width: 50%;
        height: auto;
    }
    .header_accesos{
        display: block;
    }
    .logo_blvd{
        width: 0px;
        height: auto;
        display: block;
        float: left;
        padding: 25px 0;
        margin: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        border-radius: 0;
    }
    .logo_blvd img{
        border-radius: 0;
    }
    .logo_blvd_small_activo{
        width: 55px!important;
        margin: 0 40px 0 0!important;
        padding: 14px 0!important;
        transition: all 0.3s ease;
    }
    .item_header{
        font-size: 18px;
        line-height: 50px;
        display: inline-block;
        text-decoration: none;
        color: #000000;
        margin: 0 40px 0 0;
    }
    .social_bar{
        float: none;
        display: block;
        position: absolute;
        top: 5px;
        right: 0;
    }
    .ubicacion{
        font-family: 'Roboto Mono', serif;
        font-size: 14px;
        line-height: 42px;
        text-transform: uppercase;
        color: #000000;
        font-weight: 300;
        display: inline-block;
        margin: 0 20px 0 0;
    }
    .ubicacion span{
        font-family: 'Roboto Mono', serif;
        font-size: 14px;
        line-height: 42px;
        font-weight: 700;
        color: #FF36C2;
    }
    .redes{
        display: inline-block;
    }
    .item_redes{
        width: 18px;
        height: auto;
        display: inline-block;
        margin: 0 20px 0 0 ;
    }
    #destacado_home{
        background: rgb(248,247,244);
        background: -moz-linear-gradient(0deg, rgba(248,247,244,1) 0%, rgba(255,255,255,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(248,247,244,1) 0%, rgba(255,255,255,1) 100%);
        background: linear-gradient(0deg, rgba(248,247,244,1) 0%, rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f7f4",endColorstr="#ffffff",GradientType=1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 95vh;
        padding: 0;
    }
    .pattern_destacado{
        position: absolute;
        width: 100%;
        height: auto;
        display: block;
    }
    .letra{
        display: inline-block;
        width: calc(100% / 5);
        height: 75vh;
        text-align: center;
    
    }
    .letra:first-child, .letra:nth-child(2){
        text-align: left!important;
    }
    .letra:last-child, .letra:nth-child(4){
        text-align: right!important;
    }
    .letra img{
        width: auto!important;
        height: 100%!important;
        display: inline-block!important;
    }
    .destacado_grilla{
        max-width: 900px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        position: relative;
    }
    .logo_destacado{
        max-width: 156px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 30px;
    }
    .frase_destacada{
        width: 100%;
        text-transform: uppercase;
        text-align: center;
        font-size: 86px;
        line-height: 108%;
        font-weight: 300;
        letter-spacing: 60px;
        margin: 0 auto 40px;
        color: #222222;
    }
    @keyframes fade-in-char {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      .frase_destacada {
        text-align: center;
        opacity: 0;
      }
      
      .frase_destacada {
        display: inline-block;
        opacity: 0;
        animation: fade-in-char 0.5s forwards;
      }
      
    .comillas_destacada{
        width: 40px;
        height: auto;
        display: block;
        margin: 0 auto 40px;
    }
    .bajada_destacada{
        max-width: 750px;
        width: 100%;
        height: auto;
        font-family: 'Roboto Mono', serif;
        font-size: 18px;
        line-height: 118%;
        font-weight: 200;
        text-align: center;
        color: #7A7A7A;
        margin: 0 auto;
    }
    #proyectos_destacados{
        background-color: #F8F7F4;
        width: 100%;
        height: auto;
    }
    .destacado_proyecto{
        display: inline-block;
    }
    .imagen_destacado_proyecto{
        max-width: 95%;
        width: 100%;
        height: auto;
        display: inline-block;
        position: relative;
        box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.20);
        margin: 0 0 20px;
    }
    .boton_ver_proyecto{
        width: 150px;
        height: 40px;
        display: inline-block;
        text-align: center;
        color: #ffffff;
        line-height: 40px;
        background-color: #01D8EB;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
        position: absolute;
        left: auto;
        top: auto;
        bottom: 20px;
        right: 20px;
        transition: all 0.3s ease;
    }
    .boton_ver_proyecto span{
        display: inline-block;
    }
    .boton_ver_proyecto:hover{
        transform: scale(1.1);
    }
    .flecha{
        width: 15px;
        height: auto;
        display: inline-block;
        margin: 0 0 -3px 10px;
    }
    .cintillo{
        width: auto;
        height: 28px;
        display: inline-block;
        background-color: #FF36C2;
        color: #ffffff;
        font-size: 12px;
        line-height: 28px;
        text-transform: uppercase;
        font-family: 'montserrat', sans-serif;
        font-weight: 300;
        padding: 0 16px;
        border-radius: 0px;
        margin: 0 0 15px;
    }
    .cintillo span{
        font-weight: 700;
    }
    .tit_proyecto{
        color: #7A7A7A;
        font-family: 'montserrat', sans-serif;
        font-weight: 300;
        font-size: 36px;
        line-height: 108%;
        width: 80%;
        height: auto;
        display: block;
        margin: 0 0 10px;
    }
    .tit_proyecto_clientes{
        color: #7A7A7A;
        font-family: 'Roboto Mono', serif;
        font-weight: 300;
        font-size: 30px;
        line-height: 108%;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 0 30px;
        text-align: center;
    }
    .tit_proyecto_exp{
        color: #ffffff;
        padding-bottom: 20px;
        display: inline-block!important;
    }
    .tit_proyecto span{
        color: #FF36C2;
        font-weight: 600;
    }
    .bajada_proyecto{
        color: #7A7A7A;
        font-family: 'Roboto Mono', serif;
        font-weight: 300;
        font-size: 14px;
        line-height: 108%;
        width: 60%;
        height: auto;
        display: block;
        margin: 0 0 50px;
    }
    #servicios{
        padding: 80px 0;
    }
    .contenedor_hacemos{
        width: 100%;
        height: auto;
        display: block;
    }
    .descr_serv{
        width: 100%;
        height: auto;
        display: block;
        padding: 20px 10px 10px;
    }
    .tit_serv_a{
        width: 50%;
        height: auto;
        display: inline-block;
        vertical-align: top;
        text-align: left;
        font-size: 14px;
        line-height: 16px;
        font-weight: 200;
        color: #7A7A7A;
    }
    .tit_serv_b{
        width: 50%;
        height: auto;
        display: inline-block;
        vertical-align: top;
        text-align: right;
        font-size: 14px;
        line-height: 16px;
        font-weight: 200;
        color: #7A7A7A;
    }
    .lista_servicios{
        width: 100%;
        height: auto;
        display: block;
    }
    .linea_servicio_divisor{
        width: 100%;
        height: 1px;
        display: block;
        background-color: #7A7A7A;
    }
    .serv{
        width: 100%;
        height: auto;
        display: block;
        position: relative;
        font-family: 'Montserrat', sans-serif;
        font-size: 40px;
        line-height: 38px;
        color: #7A7A7A;
        text-align: left;
        padding: 30px 10px;
    }
    .serv span{
        font-family: 'Roboto Mono', serif;
        font-size: 30px;
        line-height: 30px;
        color: #7A7A7A;
        font-weight: 300;
    }
    .acceso_serv{
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px #000000 dashed;
        border-radius: 25px;
        position: absolute;
        left: auto;
        right: 10px;
        top: 25px;
        bottom: auto;
        transition: all 0.3s ease;
    }
    .acceso_serv:hover{
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 35px;
        right: 5px;
        top: 20px;
    }
    .acceso_serv img{
        width: 20px;
        height: auto;
        display: block;
    }
    .modulo_hacemos{
        width: auto;
        height: 220px;
        display: block;
        background-color: #ECECEC;
        margin: 0 0 18px;
        padding: 20px;
        position: relative;
        /*border: 1px solid #ECECEC;*/
    }
    .modulo_hacemos span{
        color: #7A7A7A;
        font-family: 'montserrat', sans-serif;
        font-weight: 300;
        font-size: 26px;
        line-height: 108%;
        width: 50%;
        height: auto;
        display: block;
        position: absolute;
        left: 20px;
        top: auto;
        right: auto;
        bottom: 20px;
    }
    .modulo_hacemos_vacio{
        width: auto;
        height: 220px;
        display: block;
        background-color: transparent;
        margin: 0 0 18px;
        padding: 20px;
        position: relative;
    }
    #clientes{
        height: auto!important;
        padding: 0 0 50px;
    }
    .contenedor_clientes{
        display: block;
        margin: 40px 0 60px;
    }
    .cliente{
        width: 100%;
        height: auto;
        display: inline-block;
        vertical-align: top;
        padding: 10px 35px;
        opacity: 80%;
    }
    .full_black{
        width: 100%;
        height: auto;
        padding: 30px 0 20px;
        min-height: 80px;
        display: block;
        background-color: #000000;
        position: relative;
    }
    #experiencias{
        background-color: #000000;
        opacity: 1;
        background-image: radial-gradient(#3b3b3b 0.75px, #000000 0.75px);
        background-size: 15px 15px;
        color: #ffffff;
        overflow-y: hidden;
        overflow-x: auto;
        padding: 70px 0;
        height: auto;
        position: relative;
    }
    .carousel_trabajos{
        padding: 20px 0;
        display: block;
        width: 100%;
        height: auto;
    }
    .proyecto_experiencia{
        width: 54vw;
        height: auto;
        display: flex;
        vertical-align: top;
        align-content: center;
        align-items: center;
    }
    .imagen_proyecto{
        width: 40%;
        height: 100vh;
        max-height: 550px;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
    }
    .informacion_proyecto{
        width: 50%;
        height: auto;
        display: inline-block;
        vertical-align: top;
        padding: 30px 70px 30px 40px;
    }
    .cintillo_proyecto{
        font-family: 'Roboto Mono', serif;
        font-size: 14px;
        line-height: 110%;
        text-align: left;
        width: 100%;
        height: auto;
        display: block;
        color: #FF36C2;
        font-weight: 200;
        margin: 0 0 20px;
    }
    .tit_proyecto_gal{
        font-size: 32px;
        line-height: 110%;
        text-align: left;
        color: #ffffff;
        font-weight: 200;
        margin: 0 0 30px;
        width: 100%;
        height: auto;
        padding: 0 20px 0 0;
    }
    .bajada_proyecto_gal{
        font-family: 'Roboto Mono', serif;
        font-size: 12px;
        line-height: 128%;
        text-align: left;
        width: 100%;
        height: auto;/*30vh*/
        display: block;
        color: #ffffff;
        font-weight: 200;
    }
    .boton_ver_proyecto_vertical{
        width: 150px;
        height: 40px;
        display: none;
        text-align: center;
        color: #000000;
        line-height: 40px;
        background-color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
    }
    .boton_ver_proyecto_vertical:hover{
        transform: scale(1.1);
    }
    .boton_todos{
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #ffffff;
        position: absolute;
        left: auto;
        right: 11vw;
        top: 70px;
        bottom: auto;
        transition: all 0.3s ease;
        z-index: 10;
    }
    .boton_todos:hover{
        background-color: #ffffff;
        color: #000000;
    }
      
    .vertical-center {
        display: table;
        height: 100%;
        width: 100%;
    }
      
    .vertical-center__inner {
        display: table-cell;
        vertical-align: middle;
    }
      
    .section--full {
        text-align: left;
    }
      
    .section--full,
    .section--vertical {
        min-height: 100vh;
        position: relative;
    }
      
    .block-list, .block-list2 {
        white-space: nowrap;
    }
      
    .block-list__item {
        width: 100%;
        height: 300px;
        min-height: 300px;
        display: inline-block;
        white-space: normal;
        padding-right: 16px;
    }
      
    .block-list__item-inner {
        width: 100%;
        height: 330px;
        display: inline-block;
        padding: 15vh 0;
    }
    .block-list__item:first-child {
        margin-left: 0;
        width: 40vw ;
    }
    
    .block-list__item2 {
        width: 50vw;
        height: auto;
        min-height: 300px;
        display: inline-block;
        white-space: normal;
        padding-right: 16px;
    }
      
    .block-list__item-inner2 {
        width: 100%;
        height: auto;
        display: inline-block;
    }
    .block-list__item2:first-child {
        margin-left: 0;
        width: 50vw;
    }
      
    #third {
        background: #f5f5f5;
    }
      
    .scrollend {
        transform: translateX(-800px);
    }
    #contacto{
        width: 100%;
        min-height: 100vh;
        height: auto;
        display: block;
        position: relative;
        overflow: hidden;
        color: #222222;
        background-color: #ffffff;
    }
    .mod_tit_contacto{
        width: 30%;
        height: 400px;
        display: inline-block;
        vertical-align: top;
        font-size: 40px;
        line-height: 108%;
        text-align: left;
        color: #000000;
        font-weight: 200;
        padding: 100px 0;
    }
    .mod_tit_contacto span{
        font-weight: 600;
        display: block;
        width: 100%;
        height: auto;
    }
    .mod_form_contacto{
        width: 70%;
        height: auto;
        display: inline-block;
        padding: 100px 0;
        text-align: right;
    }
    .pais{
        font-size: 20px;
        line-height: 108%;
        text-transform: uppercase;
        font-weight: 300;
        text-decoration: none;
        color: #000000;
        margin: 30px 0;
    }
    .bajada_contacto{
        font-family: 'Roboto Mono', serif;
        font-size: 14px;
        line-height: 108%;
        color: #000000;
        text-align: left;
        font-weight: 300;
        margin: 0 0 40px;
    }
    .btn_email{
        display: inline-block;
        vertical-align: top;
        margin: 0 20px 0 0;
        width: auto;
        height: 45px;
        background-color: #01D8EB;
        text-align: left;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 45px;
        padding: 0px 20px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .btn_email:hover{
        transform: scale(1.1);
    }
    .botonera_contacto{
        width: 120px;
        height: auto;
        display: inline-block;
    }
    .btn_contacto{
        display: block;
        margin: 0 20px 0 0;
        width: 100%;
        height: 45px;
        padding: 10px;
        transition: all 0.3s ease;
        font-family: 'Roboto Mono', serif;
        color: #222222;
        text-decoration: none;
    }
    .btn_contacto:hover{
        text-decoration: underline;
    }
    
    /*SLIDER*/
    @-webkit-keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-350px * 7));
        }
    }
    @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-350px * 7));
        }
    }
    .slider {
        height: 150px;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 20px 0;
    }
    .slider::before, .slider::after {
        content: "";
        height: 150px;
        position: absolute;
        width: 200px;
        z-index: 2;
    }
    .slider::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }
    .slider::before {
        left: 0;
        top: 0;
    }
    .slider .slide-track {
        -webkit-animation: scroll 40s linear infinite;
                animation: scroll 40s linear infinite;
        display: flex;
        width: calc(350px * 14);
    }
    .slider .slide {
        height: 150px;
        width: 350px;
    }
    
    @-webkit-keyframes scroll2 {
        0% {
          transform: translateX(calc(-350px * 7));
        }
        100% {
          transform: translateX(0);
        }
    }
    @keyframes scroll2 {
        0% {
          transform: translateX(calc(-350px * 7));
        }
        100% {
          transform: translateX(0);
        }
    }
    .slider2 {
        height: 150px;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 20px 0;
    }
    .slider2::before, .slider2::after {
        content: "";
        height: 150px;
        position: absolute;
        width: 200px;
        z-index: 2;
    }
    .slider2::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }
    .slider2::before {
        left: 0;
        top: 0;
    }
    .slider2 .slide-track2 {
        -webkit-animation: scroll2 40s linear infinite;
                animation: scroll2 40s linear infinite;
        display: flex;
        width: calc(350px * 14);
    }
    .slider2 .slide {
        height: 150px;
        width: 350px;
    }
    
    .logo_pie{
        width: 100%;
        height: auto;
        display: block;
        padding: 0 40px;
    }
    @-webkit-keyframes scroll3 {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-900px));
        }
    }
    @keyframes scroll3 {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-900px));
        }
    }
    .slider3 {
        height: 350px;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 20px 0 0;
    }
    .slider3::before, .slider3::after {
        content: "";
        height: 150px;
        position: absolute;
        width: 200px;
        z-index: 2;
    }
    .slider3::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }
    .slider3::before {
        left: 0;
        top: 0;
    }
    .slider3 .slide-track3 {
        -webkit-animation: scroll3 20s linear infinite;
                animation: scroll3 20s linear infinite;
        display: flex;
        width: calc(1350px * 2);
    }
    .slider3 .slide3 {
        height: 450px;
        width: 2050px;
    }
}
