/*==========================================

CSS CLOUDTOWAY

==========================================*/

/*==========================================
* GLOBAL
==========================================*/

@import url(http://fonts.googleapis.com/css?family=Hind:300,400|Montserrat:100,300,400:700);

*
{
    margin:0;
    padding:0;
    box-sizing:border-box;
    -webkit-font-smoothing: antialiased;
}

.clear
{
    clear:both;
    display:block;
    overflow:hidden;
    visibility:hidden;
    width:0;
    height:0;
}

::-moz-selection
{
    background-color:#afcd5b;
    color:#fff;
}

::selection
{
    background-color:#afcd5b;
    color:#fff;
}

body
{
    margin:0;
    padding:0;
    font-family:'Hind',sans-serif;
    font-weight:400;
}

body.quieto
{
    overflow-y:hidden;
}

h1 { font-family:'Montserrat',sans-serif; font-size: 60px; line-height: 70px; }
h2 { font-family:'Montserrat',sans-serif; font-size: 48px; line-height: 70px; font-weight:300; }
h3 { font-family:'Montserrat',sans-serif; font-size: 28px; line-height: 42px; }
h4 { font-family:'Montserrat',sans-serif; font-size: 24px; line-height: 38px; }
h5 { font-family:'Montserrat',sans-serif; font-size: 20px; line-height: 34px; }
h6 { font-family:'Montserrat',sans-serif; font-size: 16px; line-height: 30px; }

section
{
    margin-bottom:150px;
    z-index:2;
    position:relative;
    background:#89b5dc;
}

.loading
{
    width:100%;
    height:100%;
    position:fixed;
    z-index:20;
    background:#fff;
    top:0;
    left:0;
}

.no-js .loading { display:none; }

.loading .crg
{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width:50%;
    height:20%;
    margin:auto;
    text-align:center;
}

@-webkit-keyframes swinging
{
    0%{-webkit-transform: rotate(0deg);}
    100%{-webkit-transform: rotate(360deg)}
}
 
@keyframes swinging
{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg)}
}

.menu
{
    position:fixed;
    top:90px;
    right:0;
    width:100%;
    height:0;
    background:rgba(255,255,255,1);
    z-index:100;
    overflow-y:hidden;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity:1;
    box-shadow: -2px 3px 3px rgba(0,0,0,0.2);
}

.menu .texto
{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width:100%;
    height:100%;
    margin:auto;
    color:#333;
    text-align:center;
    font-size:30px;
    font-family:'Montserrat',sans-serif;
}

.menu .texto a
{
    display:block;
    width:100%;
    color:#333;
    -webkit-transition: .30s ease-in-out;
    -moz-transition: .30s ease-in-out;
    -ms-transition: .30s ease-in-out;
    -o-transition: .30s ease-in-out;
    transition: .30s ease-in-out;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#333;
    text-decoration:none;
    height:90px;
    line-height:90px;
    font-weight:700;
    font-size:14px;
    position:relative;
}

.menu .texto a:hover
{
    color:#afcd5b;
    letter-spacing:5px;
}

.menu .texto a::after
{
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    right:0;
    width:100px;
    height:1px;
    background-color:#e9e9e9;
    margin-left:-50px;
}

.menu.show
{
    z-index:100;
    opacity:1;
    height:20%;
    min-height:200px;
}

.menu #menus { display:none; }

.menu ul { list-style:none; }
.menu ul li { width:50%; float:left; padding:6px; }
.menu h3 { margin-top:20px; }

.menu .texto ul a::after { display:none; }

/*==========================================
* HEADER
==========================================*/

header
{
    width:100%;
    position:fixed;
    display:block;
    height:90px;
    font-family:'Montserrat',sans-serif;
    background:#fff;
    z-index:10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

header ul
{
    list-style:none;
    width:100%;
    margin:auto;
    position:relative;
}

header ul li
{
    float:left;
    width:17%;
    text-align:center;
    font-weight:700;
    font-size:14px;
    position:relative;
    display:block;
}

header ul li.logo { width:28%; }

header ul li:first-child img
{
    display:inline-block;
    height:100%;
    vertical-align:middle;
}

header ul li a
{
    letter-spacing:4px;
    text-transform:uppercase;
    color:#333;
    text-decoration:none;
    line-height:90px;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
    display:block;
}

header ul li a:hover
{
    color:#afcd5b;
    letter-spacing:5px;
}

header ul li::after
{
    content:'';
    position:absolute;
    top:30%;
    bottom:0;
    left:0;
    right:0;
    height:40%;
    width:1px;
    background-color:#e9e9e9;
}

header ul li.logo div
{
    line-height:90px;
    margin-top:5px;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
}

header ul li.logo div:hover
{
    opacity:.6;
    cursor:pointer;
    transform:scale(.95);
}

header ul li a .inline
{
    display:inline-block;
}

header ul li a .hamburguer
{
    position:relative;
    display:inline-block;
    width:16px;
    height:2px;
    background:#888;
    top:-4px;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
}

header ul li a .hamburguer:before
{
    position:relative;
    display:block;
    content:"";
    top:-5px;
    width:16px;
    height:2px;
    background:#888;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
}

header ul li a .hamburguer:after
{
    position:relative;
    display:block;
    content:"";
    top:3px;
    width:16px;
    height:2px;
    background:#888;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
}

header ul li a:hover .hamburguer { background:#afcd5b; }
header ul li a:hover .hamburguer:before { background:#afcd5b; }
header ul li a:hover .hamburguer:after { background:#afcd5b; }

header #mas { width:10%; }
header #mas .movil { display:none; }


/*==========================================
* HERO
==========================================*/

.hero
{
    width:100%;
    height:100%;
    position:relative;
    font-family:'Montserrat',sans-serif;
    overflow-y:hidden;
}

.hero.mini { height:45%; }

.hero::before
{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-image:url(../img/hero.jpg);
    background-size:cover;
    background-position:center top;
    background-color:#eee;
    opacity:.1;
    content:"";
    z-index:-1;
}

.hero .texto
{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width:80%;
    height:40%;
    margin:auto;
    color:#4c4c61;
    text-align:center;
    font-size:50px;
    font-weight:300;
    line-height:160%;
    color:#fff;
}

.hero.mini .texto { height:0; }

.hero .texto h1
{
    font-size:9rem;
    text-transform:uppercase;
}

.hero.mini .texto h1
{
    font-size:4rem;
    text-align:left;
    float:left;
}

.hero .texto h2
{
    font-size:1.1rem;
    font-weight:100;
    margin-bottom:30px;
    text-transform:uppercase;
    letter-spacing:6px;
    opacity:.7;
}

.hero.mini .texto h2
{
    text-align:right;
    float:right;
}

.hero .texto p
{
    font-size:16px;
    opacity:1;
    line-height:160%;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    margin-top:80px;
    font-weight:300;
    font-family:'Hind', sans-serif;
}

.hero .texto p a
{
    padding-left:20px;
    padding-right:16px;
    padding-top:8px;
    padding-bottom:8px;
    border:#fff 2px solid;
    border-radius:2px;
    opacity:.9;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-top:40px;
    display:inline-block;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
    font-family:'Montserrat', sans-serif;
    font-weight:400;
}

.hero .texto p a.relleno { color:#333; background:#fff; }

.hero .texto p a:hover
{
    background:#fff;
    color:#333;
    opacity:1;
}

.hero .texto p a:hover.relleno { color:#fff; background:#333; border:#333 2px solid; }

.hero .flecha
{
    text-align:center;
    background:#fff;
    color:#333;
    border-radius:50%;
    width:80px;
    height:80px;
    position:absolute;
    bottom:-40px;
    left:50%;
    margin-left:-40px;
    padding-top:12px;
    font-size:24px;
    -webkit-transition: background .20s ease-in-out,color .20s ease-in-out,padding .20s ease-in-out;
    -moz-transition: background .20s ease-in-out,color .20s ease-in-out,padding .20s ease-in-out;
    -ms-transition: background .20s ease-in-out,color .20s ease-in-out,padding .20s ease-in-out;
    -o-transition: background .20s ease-in-out,color .20s ease-in-out,padding .20s ease-in-out;
    transition: background .20s ease-in-out,color .20s ease-in-out,padding .20s ease-in-out;
}

.hero .flecha:hover
{
    background:#333;
    color:#fff;
    cursor:pointer;
    padding-top:18px;
}

.hero.mini .flecha { display:none; }


/*==========================================
* QUE HACEMOS
==========================================*/

.que
{
    width:100%;
    background:#fff;
}

.que .contenido
{
    width:100%;
    max-width:1600px;
    margin-left:auto;
    margin-right:auto;
    font-size:20px;
    padding-left:60px;
    padding-right:60px;
    color:#444;
    padding-top:120px;
    padding-bottom:120px;
}

.titulo
{
    text-align:center;
    width:100%;
    display:block;
    position:relative;
    padding-bottom:60px;
    margin-bottom:60px;
}

.titulo::after
{
    content:'';
    width:80px;
    height:2px;
    background:#ccc;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:20px;
    border:0;
    position:absolute;
    bottom:0;
    left:50%;
    margin-left:-40px;
}

.titulo h4
{
    font-size:1.1rem;
    font-weight:100;
    text-transform:uppercase;
    letter-spacing:6px;
}

.titulo h2
{
    font-size:50px;
    font-weight:400;
    margin-top:-16px;
}

.que .contenido .row
{
    width:50%;
    float:left;
    padding:10px;
    position:relative;
}

.que .contenido .row.r6 { width:70%; }
.que .contenido .row.r4 { width:30%; }

.que .contenido .row.r4 img
{
    text-align:center;
    padding:40px;
    position:absolute;
    top:0px;
    left:40px;
}

.que .contenido .row.r6 img
{
    max-width:250px;
    width:100%;
    display:inline-block;
    float:right;
    margin-left:8px;
}

.que .contenido .row #imgsvg
{
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: swinging 8s linear infinite;
    animation: swinging 8s linear infinite;
}

.que .contenido .row #img2
{
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: swinging 12s linear infinite;
    animation: swinging 12s linear infinite;
}

.que .contenido .row p
{
    padding-left:20px;
    padding-right:20px;
    padding-top:10px;
}

.que .contenido .botonera
{
    width:100%;
    display:block;
    text-align:center;
}

.que .contenido .botonera a
{
    padding-left:20px;
    padding-right:16px;
    padding-top:12px;
    padding-bottom:12px;
    border:#333 2px solid;
    border-radius:2px;
    opacity:.9;
    color:#333;
    text-decoration:none;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-top:40px;
    display:inline-block;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
    font-family:'Montserrat', sans-serif;
    font-weight:400;
}

.que .contenido .botonera a:hover
{
    background:#333;
    color:#fff;
}

.que .contenido .serv p
{
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    padding-left:20px;
    padding-right:20px;
    padding-top:10px;
}

.que .contenido .serv span h4,.que .contenido .serv span ul
{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
}

.que .contenido .serv .feature
{
    width:100%;
    padding-top:80px;
    padding-bottom:0px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
}

.que .contenido .serv .feature div
{
    width:50%;
    float:left;
    text-align:center;
    padding-left:20px;
    padding-right:20px;
    padding-bottom:30px;
    margin-bottom:40px;
}

.que .contenido .serv .feature div p
{
    max-width:700px;
    color:#888;
    padding-left:20px;
    padding-right:20px;
    font-family:'Hind', sans-serif;
    font-weight:300;
}

.que .contenido .serv .feature div hr
{
    width:60px;
    height:2px;
    background:#ccc;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:20px;
    margin-top:20px;
    border:0;
}

.que .contenido .serv .feature div i
{
    font-size:70px;
    color:#ccc;
    margin-bottom:10px;
}

.que .contenido .serv #equipo1
{
    width:49%;
    float:left;
    border-radius:3px;
    opacity:.8;
}

.que .contenido .serv #equipo2
{
    width:49%;
    float:right;
    border-radius:3px;
    opacity:.8;
}

.que .contenido .serv #equipo3
{
    width:29%;
    float:left;
    margin-left:20%;
    border-radius:3px;
    opacity:.8;
}

.que .contenido .serv #equipo4
{
    width:29%;
    float:right;
    margin-right:20%;
    border-radius:3px;
    opacity:.8;
}


/*==========================================
* CONTACTO
==========================================*/

.contacto
{
    width:100%;
    background:#afcd5b;
}

.contacto .ct
{
    width:100%;
    position:relative;
    overflow:hidden;
}

.contacto .ct::before
{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-image:url(../img/equipo.jpg);
    background-size:cover;
    background-position:center center;
    background-color:#afcd5b;
    background-attachment:fixed;
    opacity:.1;
    content:"";
    z-index:0;
}

.contacto .contenido
{
    width:100%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    font-size:20px;
    padding-left:60px;
    padding-right:60px;
    color:#444;
    padding-top:120px;
    padding-bottom:60px;
    position:relative;
    overflow-y:hidden;
}

.contacto .titulo { text-align:left; }
.contacto .titulo::after
{
    left:0;
    margin-left:0;
    background:#fff;
}
.contacto .titulo h4 { color:#fff; opacity:.9; }
.contacto .titulo h2 { color:#fff; }

.contacto .ct .imagen
{
    width:20%;
    bottom:0;
    right:4%;
    position:absolute;
    z-index:2;
}

.contacto .contenido p
{
    color:#333;
    padding-right:22%;
}

.contacto .contenido .botonera
{
    display:block;
    text-align:center;
    padding-bottom:60px;
    padding-right:20%;
}

.contacto .contenido .botonera a
{
    padding-left:20px;
    padding-right:16px;
    padding-top:12px;
    padding-bottom:12px;
    border:#333 2px solid;
    border-radius:2px;
    opacity:.9;
    color:#333;
    text-decoration:none;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-top:40px;
    display:inline-block;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
    font-family:'Montserrat', sans-serif;
    font-weight:400;
}

.contacto .contenido .botonera a:hover
{
    background:#333;
    color:#fff;
}


/*==========================================
* FOOTER
==========================================*/

footer
{
    background:#333;
    color:#ccc;
    height:150px;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    position:fixed;
    z-index:-20;
    box-shadow: inset 0 3px 6px rgba(0,0,0,.5);
    padding-left:90px;
    padding-right:90px;
    padding-top:25px;
}

footer i
{
    display:inline-block;
    width:24px;
    color:#777;
}

footer a
{
    color:#fff;
    text-decoration:none !important;
}

.up
{
    position:absolute;
    bottom:20px;
    right:90px;
    width:100px;
    height:100px;
    background:#999;
    border-radius:100%;
    text-align:center;
    line-height:50px;
    font-size:40px;
    overflow-y:hidden;
    color:#333;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
}

.up i
{
    padding-top:25px;
    color:#555;
}

.up:hover
{
    background:#afcd5b;
    color:#fff;
    /*box-shadow:0 0 6px 2px rgba(0,0,0,0.4);*/
}

.up:hover i { color:#fff; }


/*==========================================
* CALL TO ACTION
==========================================*/

.caction
{
    width:100%;
    height:300px;
    background:#8ecfd0;
}

.caction.verde { background:#afcd5b; }

.caction .ct
{
    width:100%;
    position:relative;
    height:100%;
}

.caction .ct::before
{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-image:url(../img/action.jpg);
    background-size:cover;
    background-position:center top;
    background-color:#afcd5b;
    background-attachment:fixed;
    opacity:.1;
    content:"";
    z-index:0;
}

.caction .ct .texto
{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width:80%;
    height:15%;
    margin:auto;
    text-align:center;
}

.caction .ct .texto span
{
    font-family:'Montserrat', sans-serif;
    font-weight:700;
    font-size: 28px;
    color:#fff;
    letter-spacing:6px;
    display:inline-block;
    padding-right:25px;
}

.caction .ct .texto a
{
    padding-left:20px;
    padding-right:16px;
    padding-top:8px;
    padding-bottom:8px;
    border:#fff 2px solid;
    border-radius:2px;
    opacity:.9;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    letter-spacing:4px;
    text-transform:uppercase;
    display:inline-block;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
    font-family:'Montserrat', sans-serif;
    font-weight:400;
}

.caction .ct .texto a.relleno { color:#333; background:#fff; }

.caction .ct .texto a:hover
{
    background:#fff;
    color:#333;
    opacity:1;
}

.caction .ct .texto a:hover.relleno { color:#fff; background:#333; border:#333 2px solid; }


/*==========================================
* FORMULARIO DE CONTACTO
==========================================*/

.que div.r75 { width:75%; float:left; padding-right:10px; padding-top:60px; }
.que div.r25 { width:25%; float:left; padding-left:20px; padding-top:60px; position:relative; }
.que div.r25:before
{
    content:'';
    top:100%;
    left:0;
    width:1px;
    height:100px;
    margin-top:-50px;
    background:#ccc;
    position:absolute;
}

form
{
    width:100%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    position:relative;
    text-align:center;
}

form input[type="text"],form input[type="email"]
{
    width:48%;
    float:left;
    margin-left:1%;
    margin-right:1%;
    padding-left:40px;
    padding-right:40px;
    padding-top:12px;
    padding-bottom:12px;
    border:0;
    background:#eee;
    outline:0;
    color:#777;
    font-size:24px;
    font-family:'Hind', sans-serif;
    font-weight:300;
    border-radius:2px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    -ms-transition: all .10s ease-in-out;
    -o-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

form input[type="text"]:hover,form input[type="email"]:hover
{
    background:#e1e1e1;
}

form input[type="text"]:focus,form input[type="email"]:focus
{
    color:#333;
}

form textarea
{
    width:98%;
    margin-left:1%;
    margin-right:1%;
    background:#eee;
    outline:0;
    color:#777;
    font-size:24px;
    font-family:'Hind', sans-serif;
    font-weight:300;
    margin-top:2%;
    padding-left:40px;
    padding-right:40px;
    padding-top:12px;
    padding-bottom:12px;
    resize:vertical;
    border-radius:2px;
    -webkit-transition: all .10s ease-in-out;
    -moz-transition: all .10s ease-in-out;
    -ms-transition: all .10s ease-in-out;
    -o-transition: all .10s ease-in-out;
    transition: all .10s ease-in-out;
}

form textarea:hover
{
    background:#e1e1e1;
}

form textarea:focus
{
    color:#333;
}

form input[type="submit"]
{
    padding-left:20px;
    padding-right:16px;
    padding-top:12px;
    padding-bottom:12px;
    border:#333 2px solid;
    border-radius:2px;
    opacity:.9;
    color:#333;
    text-decoration:none;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-top:40px;
    display:inline-block;
    -webkit-transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -ms-transition: all .20s ease-in-out;
    -o-transition: all .20s ease-in-out;
    transition: all .20s ease-in-out;
    font-family:'Montserrat', sans-serif;
    font-weight:400;
    margin-top:2%;
    background:transparent;
    margin-left:auto;
}

form input[type="submit"]:hover
{
    cursor:pointer;
    background:#333;
    color:#fff;
}


/*==========================================
* MODAL
==========================================*/

.modal
{
    position:fixed;
    width:100%;
    height:100%;
    opacity:0;
    z-index:-1000;
    background:rgba(0,0,0,.5);
    -webkit-transition: .30s ease-in-out;
    -moz-transition: .30s ease-in-out;
    -ms-transition: .30s ease-in-out;
    -o-transition: .30s ease-in-out;
    transition: .30s ease-in-out;
}

.modal.show
{
    z-index:140;
    opacity:1;
}

.modal .ventana
{
    position:absolute;
    margin:auto;
    width:86%;
    height:80%;
    background:#efefef;
    border-radius:3px;
    padding:60px;
    transform:scale(.8);
    opacity:0;
    left:0;
    right:0;
    top:0;
    bottom:0;
    -webkit-transition: .50s ease-in-out;
    -moz-transition: .50s ease-in-out;
    -ms-transition: .50s ease-in-out;
    -o-transition: .50s ease-in-out;
    transition: .50s ease-in-out;
    box-shadow:0 0 12px rgba(0,0,0,.3);
    max-width:1200px;
}

.modal .ventana.show
{
    transform:scale(1);
    opacity:1;
}

.modal .ventana .info
{
    width:100%;
    height:100%;
    overflow-y:auto;
    overflow-x:hidden;
    font-size:24px;
    color:#444;
    line-height:140%;
    font-family:'Hind',sans-serif;
    font-weight:400;
    margin:auto;
    padding:10px;
}

.modal .ventana .info ul
{
    list-style:circle;
}

.modal .cerrar
{
    width:50px;
    height:50px;
    position:absolute;
    top:0;
    right:0;
    padding-top:12px;
    text-align:center;
    color:#ccc;
    border-top-right-radius:3px;
    border-bottom-left-radius:3px;
    -webkit-transition: .40s ease-in-out;
    -moz-transition: .40s ease-in-out;
    -ms-transition: .40s ease-in-out;
    -o-transition: .40s ease-in-out;
    transition: .40s ease-in-out;
    font-size:24px;
}

.modal .cerrar:hover
{
    background:#999;
    cursor:pointer;
    color:#fff;
}

/*
.modal::-webkit-scrollbar
{
    width: 12px;
}
.modal::-webkit-scrollbar-track
{
    background-color: #eaeaea;
    border-radius:3px;
}
.modal::-webkit-scrollbar-thumb
{
    background-color: #ccc;
    -webkit-transition: .50s ease-in-out;
    -moz-transition: .50s ease-in-out;
    -ms-transition: .50s ease-in-out;
    -o-transition: .50s ease-in-out;
    transition: .50s ease-in-out;
    border-radius:3px;
}
.modal::-webkit-scrollbar-thumb:hover
{
  background-color:#999;
}
*/


/*==========================================
* MEDIA QUERIES
==========================================*/

@media (max-width: 1200px)
{
    .contacto .contenido .botonera { padding-right:24%; }
    .contacto .contenido p { padding-right:24%; }
    .que .contenido .row.r4 { width:20%; }
    .que .contenido .row.r6 { width:80%; }
    .hero h2 { display:none; }
    .hero .texto h1 { font-size:8rem; }
    .hero.mini .texto h1 { font-size:6rem; }
}

@media (max-width: 1000px)
{
    .que .contenido .row { width:100%; }
    .que .contenido .row.r4 { display:none; }
    .que .contenido .row.r6 { width:100%; }
    .contacto .ct .imagen { display:none; }
    .contacto .contenido p { padding-right:0; }
    .contacto .contenido .botonera { padding-right:0; }
    .contacto .titulo { text-align:center; }
    .contacto .titulo::after
    {
        left:50%;
        margin-left:-40px;
    }
    .hero .texto h1 { font-size:5rem; }
    .hero.mini .texto h1 { font-size:4rem; }
    .hero .texto p { margin-top:40px; }
    header ul li { width:50%; text-align:right; padding-right:10px; }
    header ul li.logo { width:50%; text-align:left; padding-left:10px; }
    header ul li.hide { display:none; }
    header ul #mas { display:inline-block; width:50%; }
    header #mas .lang { display:none; }
    header #mas .movil { display:inline-block; }
    .que .contenido .serv .feature div { width:100%; }
    .caction .ct .texto span { display:block; text-align:center; margin-bottom:16px; padding-right:0; }
    .caction .ct .texto { height:25%; }
    
    .que div.r75 { width:100%; }
    .que div.r25 { width:100%; }
    .que div.r25::before { display:none; }
    form input[type="text"],form input[type="email"] { width:98%; margin-top:1%; margin-bottom:1%; }
    form textarea { margin-top:1%; }
    .menu.show { height:100%; }
    .menu #menus { display:block; }
}

@media (max-width: 700px)
{
    .titulo h2 { font-size:32px; }
    .titulo h4 { font-size:16px; }
    .up { left:80%; }
    footer { padding-left:30px; padding-right:30px; }
    .que .contenido .row p
    {
        padding-left:0;
        padding-right:0;
    }
    .que .contenido .row { padding:0; }
    .hero .texto p { margin-top:30px; }
    .hero.mini .texto h1 { font-size:2rem; text-align:center; }
}

@media screen and (max-height: 800px)
{
    .hero .texto { height:30%; }
    .hero .texto h1 { font-size:4rem; }
    .hero .texto h2 { display:none; }
    .hero .texto p { margin-top:30px; }
    .hero .texto p a { margin-top:20px; }
}

@media screen and (max-height: 500px)
{
    .hero .texto p { margin-top:20px; font-size:12px; }
    .hero .texto p a { margin-top:10px; }
    .hero .texto h1 { font-size:3rem; }
}

@media all and (orientation: portrait)
{
    .hero p span { display:none; }
    .menu .texto a { height:40; line-height:40px; }
    .caction .ct .texto { height:40%; }
    .caction .ct .texto a.relleno { display:none; }
    .hero .texto h1 { font-size:60%; }
}
#fondoeuropeo{
    width: 484px;
	height: 415px;
    border-radius: 3px;
    /*opacity: .8;*/
}
.fondo_europeo{
    text-align:center;
}
#fondoeuropeo_foot{
    position: absolute;
    left: 720px;
    bottom: 35px;
    width: 64px;
    height: 44px;
    border-radius: 3px;
    /*opacity: .8;*/
}

.decoration-none{
    text-decoration:none;
}
.float-left{
    float:left !important;
}


.g-recaptcha > div {
     margin: 0 auto;
}

.error_captcha {
     margin: 10px auto;
     width: 310px; 
     height: 81px;
}

#iso_9001{
    position: absolute;
    left: 810px;
    bottom: 25px;
    width: 150px;
    border-radius: 3px;
    /*opacity: .8;*/
}

#iso_14001{
    position: absolute;
    left: 975px;
    bottom: 25px;
    width: 150px;
    border-radius: 3px;
    /*opacity: .8;*/
}