@import url('https://fonts.googleapis.com/css?family=Montserrat:900|Roboto');
* {
    box-sizing: border-box;
}
a.boton {
    background: hsla(72, 57%, 54%, 1);
    color: #ffffff;
    font-size: 1.4em;
    padding: 0.5em;
    margin: 0.5em;
    display: inline-block;
    border-radius: 0.5em;
    box-shadow: 0 3px 0 4px #c7e05e, 0 9px 0 4px #819627;
}
body{
    margin: 0px;
    font-family: 'Roboto', sans-serif;
}
header{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding: 1em 3.5em;
    position: fixed;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2b3438;
    z-index: 100;
    color: #b2cc46;
}
section{
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7em;
    padding-top: 10em;
}
#inicio {
    background: linear-gradient(rgba(255, 255, 255, 1),rgba(255, 255, 255, 0.6)),url(../images/bg-cafe.jpg);
    color: #819627;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 38%;
    background-attachment: fixed;
}
#servicios {
    background: url(../images/bg-geo.png);
    color: #819627;
}
#metodo {
    background: linear-gradient(rgba(0, 0, 0, 0.62),rgba(0, 0, 0, 0.6)),url(../images/bg-tech.jpg);
    color: #d3dea5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 38%;
    background-attachment: fixed;
}
#clientes {
    background: url(../images/bg-white.png);
    color: #819627;
    display: block;
}
#contacto {
    background: linear-gradient(rgba(140, 190, 70, 0.5),rgba(140, 190, 70, 0.5)),url(../images/bg-granos.jpg);
    color: #819627;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: 38%;
}
img#logo {
    width: 300px;
}
nav {
    text-align: center;
    flex-wrap: wrap;
}
a {
    color: inherit;
    text-decoration: none;
}

nav a {
    padding: 0.5em;
    margin: 0.5em;
    display: inline-block;
    border-bottom: solid transparent;
    transition: border 0.2s;
}

nav a:hover{border-color: inherit;}

label.menu {
    display: none;
    padding: 1em;
    background: linear-gradient(white 20%,transparent 0,transparent 40%,white 0,white 60%,transparent 0,transparent 80%,white 0,white);
}

input#burguer {
    display: none;
}

@media all and (max-width: 768px){

    header {
        display: flex;
        flex-wrap: wrap;
        padding: 0.5em 2em;
    }
    section{
        padding:1em;
        padding-top: 6em;
    }
    img#logo {
        width: 5em;
    }

    nav {
        display: none;
    }

    input#burguer:checked ~ nav {
        display: initial;
        background: black;
        position: fixed;
        width: 100%;
        top: 6em;
        margin: 0;
        left: 0;
    }
    #firstsight{
        background-size:cover;
    }
    label.menu {
        display: block;
    }
}

form {
    display: flex;
    flex-direction: column;
}

form > * {
    border: none;
    font-size: 1.1em;
    border-left: solid 8px #b9d154;
    padding: 1em;
    margin: 1px;
    outline: none;
    resize: vertical;
    background: #ffffff;
    color: #93b115;
    -webkit-text-fill-color: #93b115;
}
form > input[type=submit] {
    font-weight:600;
    cursor: pointer;
}

div#loading {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}
div#thanks {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.89);
    z-index: 200;
}
div#loading img {
    animation-name: load;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.74, 0.01, 0.34, 0.99);
}
@keyframes load{
    0%{
        transform:rotate(0deg) scale(1);
    }
    100%{
        transform:rotate(360deg) scale(1);
    }
}

.ug-thumb-wrapper {
    background: none !important;
}

.ug-lightbox-overlay {
    background-color: rgba(255, 255, 255, 0.69) !important;
}

#clientes h1 {
    font-size: 3em;
    text-align: center;
}

.flexy {
    display: flex;
    flex-flow: row wrap;
}

.flexy > div {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    flex: 1 15em;
    margin: 5px;
}

footer {
    text-align: center;
    background: black;
    color: gray;
    padding: 1px;
}