@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    min-height: 1000px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 100px;
    z-index: 1000;
    transition: 0.6s;
}
header.sticky {
    padding: 5px 100px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
header .logo{
    position: relative;
    font-weight: 700;
    font-family: Slipstream Let Plain;
    color: #fff; /*Color de las letras del logo*/
    /* color: rgb(5, 107, 18); /*Color de las letras del logo*/
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
}
header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}
header ul li{
    position: relative;
    list-style: none;
}
header ul li a{
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 300;
    transition: 0.6s;
}
header.sticky .logo,
header.sticky ul li a
{
    /* color: black; */
    color: rgb(5, 107, 18);
}
.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../imagenes/bgres.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner h2 {
    color: #fff;
    font-size: 90px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1em;
}
.banner h2 span {
    color: rgb(13, 17, 190);
}
.sec {
    background: #fff;
    padding: 100px;      /*para el margen superior*/
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec .content {
    position: relative;
    text-align: center;
    width: 100%;
}
/*Sección con texto justificado*/
.sec .content2 {
    position: relative;
    text-align: justify;
    width: 100%;
}
.sec .content2 {
    position: relative;
    text-align: justify;
    width: 100%;
}
.mxw800p{
    max-width: 800px;
    margin: 0 auto;
}
h3 {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 10px;
}
p{
    position: relative;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.btn {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background: #000;
    text-decoration: none;
    color: #fff;
}
/* */
.asocBx {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 30px;
    max-width: 100%;
    margin-top: 40px;
}
.asocBx .miembro {
    position: relative;
    background: #fff;
    min-height: 150px;
    width: 150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.asocBx .miembro .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.asocBx .miembro .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.asocBx .miembro .detalles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    transition: 0.2s;
    opacity: 0;
}
.asocBx .miembro:hover .detalles {
    opacity: 1;
}
.asocBx .miembro .detalles h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}
.asocBx .miembro .detalles h2 span {
    display: block;
    font-size: 12px;
    font-weight: 300;
}
/* */
.servicios {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     /* grid-gap: 30px; */
    max-width: 100%;
    margin-top: 40px;
}
.servicios .box {
    width: 300px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,.05);
}
.servicios .box .iconBx {
    margin-top: 25px;
}
.servicios .box .iconBx img
{
    min-width: 1px;
    margin-bottom: 15px;
}
.servicios .box h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}
.stats {
    background: rgb(0, 64, 24);
    padding-top: 250px;
    margin-top: -250px;
}
.stats h3,
.stats p {
    color: #fff;
}
.statsBox {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* grid-gap: 30px; */
    max-width: 100%;
    margin-top: 40px;
}
.statsBox h2 {
    color: #fff;
    font-size: 36px;
}
.statsBox h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.trampasBx {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    max-width: 100%;
    margin-top: 40px;
}
.trampasBx .trampas {
    position: relative;
    background: #000;
    min-height: 300px;
    width: 250px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trampasBx .trampas .imgtrBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.trampasBx .trampas .imgtrBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trampasBx .trampas .detallestr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    transition: 0.2s;
    opacity: 0;
}
.trampasBx .trampas:hover .detallestr {
    opacity: .5;
}
.trampasBx .trampas .detallestr h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}


.trampasBx .trampas .detallestr h2 a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}




.trampasBx .trampas .detallestr h2 a span {
    display: block;
    font-size: 12px;
    font-weight: 300;
}

















.teamBx {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    max-width: 100%;
    margin-top: 40px;
}
.teamBx .miembro {
    position: relative;
    background: #000;
    min-height: 300px;
    width: 250px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.teamBx .miembro .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.teamBx .miembro .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.teamBx .miembro .detalles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    transition: 0.2s;
    opacity: 0;
}
.teamBx .miembro:hover .detalles {
    opacity: 1;
}
.teamBx .miembro .detalles h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}
.teamBx .miembro .detalles h2 span {
    display: block;
    font-size: 12px;
    font-weight: 300;
}
.confirmar,
.presupuesto,
.comprobar {
    background:rgb(0, 64, 24);
}
.enviar {
    background:#fff);
}
.confirmar h3,
.presupuesto h3,
.comprobar h3,
.confirmar p,
.presupuesto p,
.comprobar p {
    color: #fff;
}
.contactFormconf,
.contactFormpresup {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}
.contactFormconf form,
.contactFormpresup form {
    width: 100%;
}
.contactFormpresup .presentaDatos {
    width: 100%;
}

.contactFormpresup .presentaDatos .row100 .inputBx50 b {
    color: rgb(235, 124, 20);
}
.contactFormpresup .presentaDatos .row100 .inputBx50 small {
    color: #fff;
}

.contactFormconf .row100,
.contactFormpresup .row100{
    display: flex;
    width: 100%;
}
.contactFormpresup .rowpla{
    display: flex; /* Alinea en 2 columnas*/
    width: 100%;
    justify-content: center;
}
.contactFormpresup .rowniv{
    width: 100%;
    justify-content: center;
}
.contactFormpresup .rowpla .inputBxrp{
    text-align: left;
}
.contactFormpresup .rowpla .inputBxrp p{
    font-size: smaller;
}
.contactFormpresup .rowniv .inputBxniv{
    text-align: left;
    font-size: medium;
    color: #fff;
}
.contactFormconf .row100 .inputBx50,
.contactFormpresup .row100 .inputBx50 {
    width: 50%;
    margin: 0 20px;
}
.contactFormpresup .row100 .inputBx50 .comprueba {
    color: #fff;
}
.contactFormconf .row100 .inputBx100,
.contactFormpresup .row100 .inputBx100 {
    width: 100%;
    margin: 0 20px;
}
.contactFormpresup .row100 .inputBx1000 {
    width: 100%;
    margin: 0 5px;
}
.contactFormconf .row100 input,
.contactFormpresup .row100 input,
.contactFormpresup .row100 textarea {
    position: relative;
    border: none;
    border-bottom: 1px solid #fff; /* La linea que cierra la caja de cierre*/
    color: #fff; /* Color de la letra*/
    background: transparent;
    width: 100%;
    padding: 10px 0;
    outline: none;
    font-size: 16px;
    font-weight: 200;
    margin: 20px 0;
    resize: none;
}
.contactFormpresup .row100 select {
    position: relative;
    border: none;
    border-bottom: 1px solid #fff; /* La linea que cierra la caja de cierre*/
    color: #fff; /* Color de la letra*/
    background: rgb(0, 64, 24);
    width: 100%;
    padding: 10px 0;
    outline: none;
    font-size: 16px;
    font-weight: 200;
    margin: 20px 0;
    resize: none;
}
.contactFormpresup .row100 textarea {
    height: 100px;
}
.contactFormconf .row100 input::placeholder,
.contactFormpresup .row100 input::placeholder,
.contactFormpresup .row100 textarea::placeholder {
    color: #fff; /* Color del texto placeholder*/
}
.contactFormconf .row100 input[type="submit"] {
    background: #007bff;
    color: #fff;
    max-width: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 5px;
}
.contactFormpresup .row100 input[type="submit"] {
    background: #007bff;
    color: #fff;
    max-width: 250px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 300;
    border-radius: 5px;
}
.contactFormpresup .row100 input[type="reset"] {
    background: #dc3545;
    color: #fff;
    max-width: 250px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 300;
    border-radius: 5px;
}
.rowpla .row100 .etiqueta .inputBx50 {
    color:rgb(235, 124, 20);
}



.sci {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}
.sci ul {
    display: flex;
}
.sci ul li {
    list-style: none;
}
.sci ul li a {
    text-decoration: none;
    display: inline-block;
    margin: 0 30px;
}
.sci ul li a img {
    filter: invert(1);
    max-width: 40px;
}
.sci ul li a:hover img {
    opacity: 0.5;
}










.pie {
    background:rgb(249, 249, 250);
}

.redes {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}
.redes ul {
    display: flex;
}
.redes ul li {
    list-style: none;
}
.redes ul li a {
    text-decoration: none;
    display: inline-block;
    margin: 0 30px;
}
.redes ul li a img {
    /* filter: invert(1); invierte los colores de los logos*/
    max-width: 40px;
}
.sci ul li a:hover img {
    opacity: 0.5;
}













.copyright {
    color: black;
    text-align: center;
}
.toggle {
    display: toggle;
}
@media (max-width: 1235px){
    .toggle {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    .toggle:before {
        content: '';
        position: absolute;
        top: 4px;
        width: 100%;
        height: 2px;
        background: #000;
        z-index: 1;
        box-shadow: 0 10px 0 #000;
        transition: 0.5s;
    }
    .toggle:after {
        content: '';
        position: absolute;
        bottom: 4px;
        width: 100%;
        height: 2px;
        background: #000;
        z-index: 1;
        transition: 0.5s;
    }
    header,
    header.sticky {
        padding: 5px 50px;
        background: #fff;
    }
header ul {
    position: absolute;
    top: 59px;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: auto;
    background: #fff;
    visibility: hidden;
    opacity: 0;
}
header.active ul {
    visibility: visible;
    opacity: 1;
    display: block;
    padding-top: 20px;
}
header.active ul li a {
    display: inline-block;
    margin: 10px 0;
    font-size: 20px;

}
header .logo,
header ul li a {
    color: #000;
}
.banner {
    background-position: center;
}
.banner h2 {
    font-size: 40px;
    padding: 0 50px;
}
.sec {
    padding: 100px 50px 50px 50px;
}
.servicios .box{
    width: 100%;
}
.stats {
    padding-top: 250px;
}
.row100 {
    flex-direction: column;
}
.contactFormconf .row100 .inputBx50,
.contactFormpresup .row100 .inputBx50,
.contactFormconf .row100 .inputBx100,
.contactFormpresup .row100 .inputBx100 {
    width: 100%;
    margin: 0;
}
.sci {
    margin: 20px;
}
.sci ul li a img {
    font-size: 24px;
}
h3 {
    font-size: 36px;
}
}