/* FONTS */
@font-face {
    font-family: 'gotLig';
    src: url('../fonts/Gotham-Light.otf') format('opentype');
    font-weight: 100;
}
@font-face {
    font-family: 'gotBook';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: 100;
}
@font-face{
    font-family: 'gotMed';
    src: url('../fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 100;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    color: #666;
    font-family: 'gotBook';
    font-size: 13px;
}
.out{
    display: none;
}
body{
    height: 100%;
}
.fila{
    width: 100%;
    padding: 5rem;
}
.blanco{
    background: #fff;
}
.gris{
    background: #f9f9f9!important;
}
.img100{
    display: block;
    width: 100%;
}
header{
    background: #fff;
    padding: 1rem 0;
    width: 100%;
}
.header-wrapp{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-flow: wrap row;
    justify-content: space-between;
    align-items: center;
}
nav ul{
    display: flex;
    list-style: none;
}
nav a{
    color: #039BE5;
    display: block;
    font-size: 15px;
    font-family: 'gotMed';
    padding: 1rem;
    text-decoration: none;
}
nav a:hover{
    color: #00C853;
}
.btnmenu{
    color: #00C853;
    cursor: pointer;
    font-size: 25px;
    display: none;
}
.slider{
    width: 100%;
    background: #fff;
}
.slider p{
    color: #fff;
    font-family: 'gotMed';
    font-size: 65px;
    text-align: right;
    text-shadow: 1px 1px 5px rgba(0,0,0,.6);
    position: absolute;
    top: 10rem;
    right: 2rem;
}
/* Options Owl DOTS */
.owl-dots{
    margin: auto;
    text-align: center;
    padding-top: 1rem;
}
.owl-dots .owl-dot{
    border-radius: 50px;
    height: 8px;
    margin: 5px;
    width: 8px;
    background: #039BE5!important;
}
.owl-dots .owl-dot:hover{
    background: #00C853!important;
}
.owl-dots .owl-dot.active{
    background: #00C853!important;
}

/* Internas */
.titulos{
    color: #039BE5;
    font-size: 45px;
    font-family: 'gotLig';
    margin-bottom: 1rem;
}
.stit{
    color: #00C853;
    font-family: 'gotLig';
    font-size: 21px;
}
.content-two{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
/* Boton */
.boton-border-wrap{
    background: linear-gradient(to right, #00C853, #039BE5);
    border-radius: 5px;
    font-size: 13px;
    margin-top: 3rem;
    padding: 1px;
    width: 180px;
}
.boton{
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    color: #00C853!important;
    padding: 8px;
    text-align: center;
    width: 100%;
    transition: all .5s linear;
}
.boton:hover{
    background: none;
    color: #fff!important;
}
.boton a{
    color: #00C853;
    text-decoration: none;
}
.boton a:hover{
    color: #fff;
}
footer{
    background: #039BE5;
    color: #fff;
    font-size: 15px;
    padding: 3rem;
    width: 100%;
}
footer a{
    color: #fff;
    font-size: 21px;
    padding-left: 1rem;
}
.right{
    text-align: right;
}
.gp{
    position: fixed;
    left: 0;
    top: 14rem;
    z-index: 10;
}
.txt-sec{
    background: linear-gradient(45deg, #00C853, #039BE5);
    color: #fff;
    font-size: 35px;
    font-family: 'gotLig';
    padding: 2rem;
}

/* proyectos */
.grid-for{
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .1rem;
}
    .grid-for div{
        position: relative;
    }
    .grid-for .mask{
        overflow: hidden;
    }
    .grid-for .sombra{
        /*background: rgba(3,155,229,.9);
        background: rgba(0,200,83,.9);*/
        background: rgba(0,0,0,.8);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        cursor: pointer;
        font-family: 'gotMed';
        text-align: center;
        transition: all linear .3s;
    }
    .sombra:hover{
        /*background: rgba(3,155,229,0);*/
        background: rgba(0,0,0,0);
    }
    .sombra:hover .txt-pro,
    .sombra:hover .txt-tipo{
        color: rgba(255, 255, 255, 0);
    }
    .txt-pro{
        font-size: 35px;
        transition: all linear .3s;
    }
    .txt-tipo{
        font-size: 25px;
        transition: all linear .3s;
        font-family: 'gotBook';
    }
    .grid-for img{
        display: block;
        width: 100%;
        transition: all linear .3s;
    }

/* clientes */
.grid-cli{
    display: grid;
    grid-template-columns: repeat(5,1fr);
}
.grid-cli div{
    border: 1px solid rgba(0,0,0,.1);
    margin: 2rem;
}
.grid-cli img{
    display: block;
    filter: grayscale(1);
    width: 100%;
}
.grid-cli img:hover{
    cursor: pointer;
    filter: grayscale(0);
}

/* contactos */
.grid-con{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.grid-con .item{
    padding: 4rem 8rem;
}
.grid-con .item:nth-child(2){
    display: flex;
    flex-direction: row;
    background: #f9f9f9;
    align-items: center;
}
.algo{
    color: #039BE5;
    font-size: 18px;
}
.algo a{
    font-size: 25px!important;
    margin-right: 1rem;
    color: #00C853;
}
.clear{
    clear: both;
}
form input,
form textarea{
    border-radius: .5rem;
    border: 1px solid #E4E8F0;
    font-size: 15px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    width: 100%;
}
form input[type=submit]{
    margin: 0;
}
::placeholder{
    color: #E4E8F0;
}
textarea{
    resize: none;
    height: 150px;
    font-family: 'gotBook';
}

/* querires */
@media screen and (max-width: 736px){
    nav{
        background: rgba(255, 255, 255, .98);
        position: fixed;
        height: 100%;
        width: 100%;
        z-index: 999;
        top: 0;
        left: -100%;
        transition: all ease-in-out .3s;
    }
        nav ul{
            display: flex;
            flex-flow: column;
        }
        nav li a{
            border-bottom: 1px solid #039BE5;
            padding: 2rem;
            font-family: 'gotLig';
            font-size: 21px;
        }
    .out{
        display: block;
        position: absolute;
        z-index: 1000;
        right: 1.8rem;
        top: 1.5rem;
        font-size: 30px;
        color: #00C853;
        cursor: pointer;
    }
    .btnmenu{
        display: block;
    }
    .header-wrapp{
        padding: 0 2rem;
    }
    .content-two{
        padding: 2rem;
    }
    .content-two,
    .grid-for{
        grid-template-columns: 1fr;
        gap: 0;
    }
    .grid-for div{
        margin-bottom: .1rem;
    }
    .content-two div{
        text-align: center;
    }
    .boton-border-wrap{
        margin: 3rem auto 0 auto;
    }
    footer .content-two{
        gap: 2rem;
    }
    .grid-cli{
        grid-template-columns: repeat(3,1fr);
    }
    .slider p{
        font-size: 41px;
        top: 5rem;
    }
    .fila{
        padding: 3rem .5rem;
    }
}
@media screen and (max-width: 414px){
    .content-two img{
        width: 100%;
    }
    .titulos{
        font-size: 35px;
    }
    .grid-cli{
        grid-template-columns: repeat(2,1fr);
    }
    .slider p{
        font-size: 25px;
        top: 3rem;
    }
}