/*----------- CSS by BMestudio 2018 -----------*/
/*-----------start KEYFRAMES-----------*/
/*start RESET*/
@-webkit-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@-moz-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@-o-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
/*end RESET*/

/*start STICK*/
@-webkit-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@-moz-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@-o-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
/*end STICK*/

/*start FADE IN*/
@-webkit-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@-o-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
/*end FADE IN*/

/*start SCROLL ANIMATION*/
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
            transform: translateY(26px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
            transform: translateY(26px);
  }
}
/*end SCROLL ANIMATION*/


/*start SPIN*/
@-moz-keyframes spin {
    0% { -moz-transform:rotate(0deg); }
    100% { -moz-transform:rotate(360deg); }
}
@-webkit-keyframes spin {
    0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(360deg); }
}
/*end SPIN*/
/*-----------end KEYFRAMES-----------*/

/*-----------start GLOBALS-----------*/
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    font-smooth: antialiased !important;
    -webkit-text-size-adjust: none;
    font-smooth: always !important;
    -webkit-font-smooth: always !important;
    -moz-font-smooth: always !important;
    text-rendering: optimizeLegibility !important;
    -moz-osx-font-smoothing: grayscale;
}

body{
    font-size: 14px;
    -webkit-animation: reset, fade-in 2s 1 ease;
    -moz-animation: reset, fade-in 2s 1 ease;
    background:#ffffff;
    color:#454545;
    outline: none;
    -webkit-animation: reset, fade-in 2s 1 ease;
    -moz-animation: reset, fade-in 2s 1 ease;
    animation: reset, fade-in 2s 1 ease;
    -o-animation: reset, fade-in 2s 1 ease;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-top: 100px;
}


*{
    outline: none
}

a{
    color:#454545;
    text-decoration: none;
    transition:All 0.5s ease;
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;
}

a:hover, a:active, a.active, a:focus{
    color: #88B74E;
    text-decoration: none;
}

p{
    line-height: 1.7em;
}
    p span{
        color: #00a47f;
        font-weight: bold;
    }
    p strong{
        font-weight: 700;
    }

strong{
    font-weight: 700;
}

ul{
    padding: 0;
    list-style: none;
    margin: 0
}
h1, h2, h3, h4, h5, h6{
    margin:0px;
    padding: 0px;
    font-weight: 600
}
h2{
    font-size: 2.8em;
}
h3{
    font-size: 1.4em;
}
h4{
    font-size: 1.1em;
}

/*start FORM*/
.form-group{
    overflow: hidden;
    float: left;
    width: 100%;
}
.form-group-30{
    width: 30%;
}
.form-group-50{
    width: 49%;
}
.form-group-50-right{
    float: right;
}
.form-group-30-margin{
    margin: 0 5%;
}
.clear{
    clear: both;
}
input,
textarea,
.form-control,
select{
    border:none;
    background: transparent;
    border: none;
    border-radius: 0px;
    width: 100%;
    padding:12px;
    min-height: 40px;
    box-shadow: none;
    font-size: 1em;
    background: #fff
}
select.form-control{
    -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   padding: 5px 20px 5px 12px;
   position: relative;
   background: url(../images/down-caret.svg) no-repeat 95% center transparent;
   background-size: 17px;
}
textarea{
    resize: none;
    height: 150px!important;
}
input:focus,
textarea:focus,
.form-control:focus{
    outline:none;
    box-shadow: none;
    border-color:#88B74E;
    background: #fff
}

.section-wrap{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee
}

legend{
    color: #88B74E;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
}

form label{
    display: none!important;
}

.help-block{
    font-size: 0.8em;
    font-style: italic;
    margin-top: 0;
}

.help-block.form-field-error-label{
    color: #fff!important
}

form > span{
    display: block;
    text-align: center;
}
/*end FORM*/

.img img{
    width: 100%;
}
    .editor p,
    .editor ul{
        margin-bottom: 30px;
    }
        .editor ul li{
            margin-bottom: 5px;
            position: relative;
            padding-left: 20px;
        }
            .editor ul li:before{
                position: absolute;
                left: 0;
                top:0;
                content: '\f101';
                font-family: "Font Awesome 5 Free";
                color: #88B74E;
                font-weight: 900
            }

/* Navbar Toggle Icon Bar*/
.navbar-toggle{
    padding: 0;
    margin: 0;
    color: #959595;
    font-size: 2em;
    z-index: 9999!important
}
    .navbar-toggle .icon-bar{
        background-color: #00a47f;
    }
        .navbar-toggle .icon-bar {
            width: 30px;
            height: 4px;
            border-radius: 0;
        }
/* end Navbar Toggle Icon Bar*/

/*start FLEX*/
.flex{
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   flex-direction: row;
   -webkit-flex-direction: row;
   -moz-flex-direction: row;
   flex-wrap: wrap;
   -webkit-flex-wrap: wrap;
   -moz-flex-wrap: wrap;
   justify-content: space-between;
   -webkit-justify-content: space-between;
   -moz-justify-content: space-between;
   align-items: center;
   -moz-align-items: center;
   -webkit-align-items: center;
}
/*end FLEX*/

/* GoTop */
#gotop{
    position: absolute;
    bottom: -20px;
    right: 15px;
    display: inline-block;
    width: 40px;
    margin: 0;
    z-index: 999;
}
    #gotop:hover{
        opacity: .7;
    }
        #gotop img{
            width: 100%;
        }
/* end GoTop */

/* start Btn */
.btn-custom{
    background: #0061a5;
    border: 1px solid transparent;
    border-radius: 0;
    color: #fff;
    text-align: center;
    padding: 7px 25px;
    box-shadow: none;
    text-shadow: none;
    transition:All 0.5s ease;
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;
}
.btn-custom:hover{
    border-color: #0061a5;
    background: #fff;
    color: #0061a5
}
/* end Btn */

/*start TITLE*/
.title{
    font-weight: 800;
    font-size: 2.6em;
    text-transform: uppercase;
    color: #536e7a;
    margin: 0 0 20px 0;
}
.white .title{
    color: #fff
}
    .title span{
        color: #88B74E!important
    }
/*end TITLE*/

/*start Button Responsive Menu*/
.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 25px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    float: left;
    margin-top: 4px
}
.c-hamburger:focus {
    outline: none;
}
    .c-hamburger span {
        display: block;
        position: absolute;
        top: 8px;
        left: 0;
        right: 0;
        height: 3px;
        background: #88B74E;
        transform: rotate(-180deg);
        border-radius: 3px;
    }
    .home-body .c-hamburger span,
    .home-body .c-hamburger span::before,
    .home-body .c-hamburger span::after{
        background: #88B74E
    }
        .c-hamburger span::before,
        .c-hamburger span::after {
            position: absolute;
            display: block;
            left: 0;
            width: 70%;
            border-radius: 3px;
            height: 3px;
            background-color: #88B74E;
            content: "";
        }
        .c-hamburger span::before {
            top: -8px;
        }
        .c-hamburger span::after {
            bottom: -8px;
        }
    .c-hamburger--htx {
        background-color: transparent;
    }
        .c-hamburger--htx span {
            transition: background 0s 0.3s;
        }
            .c-hamburger--htx span::before,
            .c-hamburger--htx span::after {
                transition-duration: 0.3s, 0.3s;
                transition-delay: 0.3s, 0s;
            }
            .c-hamburger--htx span::before {
                transition-property: top, transform;
            }
            .c-hamburger--htx span::after {
                transition-property: bottom, transform;
            }

    /* active state, i.e. menu open */
    .c-hamburger--htx.is-active {
        background-color: transparent;
    }
        .c-hamburger--htx.is-active span {
            background: none;
        }
            .c-hamburger--htx.is-active span::before {
                top: 0;
                transform: rotate(45deg);
                background: #88B74E
            }
            .c-hamburger--htx.is-active span::after {
                bottom: 0;
                transform: rotate(-45deg);
                background: #88B74E
            }
            .c-hamburger--htx.is-active span::before,
            .c-hamburger--htx.is-active span::after {
                transition-delay: 0s, 0.3s;
            }
/*end Button Responsive Menu*/

/*start BXSLIDER*/
.bx-wrapper{
    border: none;
    box-shadow: none;
    margin: 0;
    background: transparent;
}

.bx-wrapper .bx-controls-direction a{
    top: 35%;
    margin-top: 0;
    background: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #8a8a8a;
    color: #8a8a8a;
    border-radius: 100%;
    text-indent: 0;
    text-align: center;
}
.bx-wrapper .bx-controls-direction a:hover{
    border-color: #37957f;
    background: #37957f;
    color: #fff
}

.bx-wrapper .bx-controls-direction a:before{
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.bx-wrapper .bx-prev{
    left: -5px;
}

.bx-wrapper .bx-next{
    right: -5px;
}

.bx-wrapper .bx-pager{
    bottom: auto;
    width: auto;
    top: 0;
    left: 0;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .bx-wrapper .bx-pager-item{
        display: block;
        margin-bottom: 20px;
    }
        .bx-wrapper .bx-pager.bx-default-pager a{
            border-radius: 100%;
            margin: 0;
            width: 15px;
            height: 15px;
            background: #fff!important;
            opacity: 0.5;
        }
        .bx-wrapper .bx-pager.bx-default-pager a.active{
            opacity: 1;
            background: #fff!important
        }
/*end BXSLIDER*/
/*-----------end GLOBALS-----------*/

/*-----------start HEADER-----------*/
#topnav{
    background: #88B74E;
    color: #fff;
    padding: 5px 0;
    font-size: 0.85em;
}
    #topnav p{
        margin: 0;
    }
        #topnav a{
            color: #fff
        }

header{
    position: fixed;
    width: 100%;
    top:0;
    left: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 999;
}
    header #main{
        padding: 10px 0;
        background: #fff
    }
    header #logo{
        max-width: 180px;
    }

    header #navbar li{
        margin-left: 30px;
    }
    header #navbar li:first-child{
        margin-left: 0;
    }
        header #navbar a{
            color: #536e7a;
            display: inline-block;
            padding-bottom: 5px;
            border-bottom: 3px solid transparent
        }
        header #navbar a:hover,
        header #navbar a.active{
            color: #015fa3;
            border-bottom-color:#015fa3;
        }
        header #navbar a.active{
            font-weight: 700
        }
/*-----------end HEADER-----------*/

/*-----------start FOOTER-----------*/
#developer{
    display: block;
    width: 32px;
    height: 32px;
    opacity:0.4;
    float: right;
}    
#developer:hover{
-webkit-animation-name:spin;
  -webkit-animation-duration:500ms;
  -webkit-animation-iteration-count:1;
  -webkit-animation-timing-function:ease-out;
  -moz-transform:spin(360deg) scale(1);
  -moz-transition-duration:500ms;
  -moz-transition-timing-function: ease-out;
  opacity:1;
  filter: alpha(opacity = 100);
}
    #developer img{
        width: 32px;
        height: 32px;
    }

footer{
    background: #606467;
    color: #fff!important;
    padding: 10px 0;
    font-size: 0.8em;
}
    footer p{
        margin: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
        footer p span{
            color: #fff!important;
            opacity: 0.5;
        }
        footer p a{
            margin-right: 5px;
        }
            footer p img{
                width: 60px;
            }
/*-----------end FOOTER-----------*/

/*-----------start LAYOUT-----------*/
.content-block{
    padding: 80px 0
}
.content-block.white{
    color: #fff
}
/*-----------end LAYOUT-----------*/

/*-----------start HOME-----------*/
#main-banner{
    height: 450px;
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
    #main-banner .container,
    #main-banner .flex,
    #main-banner .row,
    #main-banner .col-md-8{
        height: 100%;
    }
    #main-banner .flex{
        justify-content: center;
        align-items: center;
    }
        #main-banner .container h1{
            font-size: 1.2em;
            font-weight: 300;
            margin: 0;
            letter-spacing: 0.2em;
        }
        #main-banner .container h2{
            font-size: 3em;
            margin: 40px 0;
        }
        #main-banner .container p{
            font-size: 1.2em;
            margin: 0;
        }
/*-----------end HOME-----------*/

/*-----------start ABOUT-----------*/
#nosotros{
    position: relative;
}
    #nosotros .container,
    #nosotros .col-md-6,
    #nosotros .row{
        position: static;
    }
    #nosotros #about-slider{
        position: absolute;
        right: 0;
        top: 0;
        width: 45%;
    }
/*-----------end ABOUT-----------*/

/*-----------start BIOGAS-----------*/
#biogas{
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
/*-----------end BIOGAS-----------*/

/*-----------start BENEFICIOS-----------*/
#beneficios #icon-plant{
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
    padding-bottom: 0
}
    #beneficios .flex{
        align-items: flex-start;
    }
        #beneficios .flex .col-md-6{
            display: flex;
            align-items: flex-start;
        }
        #beneficios .flex .col-md-6:nth-child(even){
            justify-content: flex-end;
        }
        #beneficios .flex .col-md-6:nth-child(odd){
            justify-content: flex-start;
            }
            #beneficios .block-icon{
                width: 55%;
            }
                #beneficios .block-icon .icon{
                    width: 80px;
                    height: 80px;
                    border-radius: 100%;
                    background: #0061a5;
                    margin: 0 auto 50px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 20px;
                }
                    #beneficios .block-icon .icon img{
                        width: 100%;
                    }
                #beneficios .block-icon h4{
                    color: #0061a5;
                    margin: 0 0 20px 0;
                    font-weight: 600;
                }
                #beneficios .block-icon .editor{
                    color: #656565
                }

        #banner-beneficios{
            height: 350px;
            color: #fff;
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            text-align: center;
        }
        #banner-beneficios .container,
        #banner-beneficios .row{
            height: 100%
        }
        #banner-beneficios .row.flex{
            align-items: center;
        }
            #banner-beneficios h3{
                text-align: left;
                font-size: 2.2em;
                font-weight: 700
            }
            #banner-beneficios .banner-icon{
                text-align: center;
            }
                #banner-beneficios .banner-icon img{
                    width: 30%;
                    margin: auto;
                }
/*-----------end BENEFICIOS-----------*/

/*-----------start WORKS-----------*/
.thumbnail{
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
    .thumbnail .mask{
        color: #fff;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        background: #88B74E;
        transition:All 0.5s ease;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
        transform: translate(0, 150%);
        opacity: 0;
    }
    .thumbnail:hover .mask{
        transform: translate(0, 0);
        opacity: 1;
    }
        .thumbnail .mask .txt{
            width: 80%;
            margin: auto;
        }
            .thumbnail .mask .txt h4{
                font-size: 1.4em;
            }
            .thumbnail .mask .txt p{
                font-size: 0.85em;
                margin: 0;
            }
/*-----------end WORKS-----------*/

/*-----------start CONTACT-----------*/
#contacto{
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    padding-bottom: 0
}

#contacto .title{
    margin-bottom: 50px;
    font-weight: 500
}

#contacto #bluebar{
    background: rgba(0,97,165,0.75);
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
    font-size: 1.1em;
}
    #contacto #bluebar a,
    #contacto #bluebar span{
        color: #fff;
        opacity: 0.4;
    }
    #contacto #bluebar a:hover,
    #contacto #bluebar span:hover{
        opacity: 1;
    }
/*-----------end CONTACT-----------*/


/*-----------start MEDIA QUERIES-----------*/
/*start IPHONE VERTICAL*/
@media (min-width: 320px) and (max-width: 479px) {
    /*start HEADER*/
    #topnav .flex{
        justify-content: center;
    }
    header #logo{
        width: 130px;
    }

    #navbar{
        width: 100%;
        display: none;
    }
    #navbar.active{
        display: block;
    }
        #navbar .flex{
            flex-direction: column;
        }
            #navbar .flex li{
                margin: 20px 0 0 0;
                width: 100%;
                text-align: center;
            }
    /*end HEADER*/

    /*start FOOTER*/
    #bluebar .flex,
    footer .flex{
        flex-direction: column;
    }
        footer p{
            text-align: center;
            flex-direction: column;
            margin-bottom: 10px;
            line-height: 1.2em;
            font-size: 0.8em
        }
        footer p a{
            margin: 0 0 10px 0
        }
    /*end FOOTER*/

    /*start LAYOUT*/
    .content-block{
        padding: 50px 0
    }
    /*end LAYOUT*/

    /*start HOME*/
    #main-banner{
        height: 350px
    }
        #main-banner .container h1{
            font-size: 1em;
        }
        #main-banner .container h2{
            font-size: 2.5em;
            margin: 20px 0;
        }
        #main-banner .container p{
            font-size: 1em;
        }
    /*end HOME*/

    /*start ABOUT*/
    #nosotros .row.flex{
        display: block
    }
    #nosotros #about-slider{
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        height: 100%;
    }
        .bxslider div{
            width: 100%!important
        }

    #nosotros .container, #nosotros .col-md-6, #nosotros .row{
        position: relative;
    }
    /*end ABOUT*/

    /*start BIOGAS*/
    #biogas .txt{
        margin-top: 50px;
    }
    /*end BIOGAS*/

    /*start BENEFICIOS*/
    #beneficios .block-icon{
        width: 100%;
    }

    #banner-beneficios{
        background-attachment: scroll;
        padding: 40px 0
    }
    #beneficios #icon-plant{
        background-position: bottom center;
        background-image: none!important
    }

    #banner-beneficios .row.flex{
        flex-direction: column;
    }

    #banner-beneficios h3{
        text-align: center;
        font-size: 1.5em;
    }

    #banner-beneficios .banner-icon{
        margin-top: 30px
    }
    #banner-beneficios .banner-icon img{
        width: 80%;
    }

    #banner-beneficios{
        height: auto;
        text-align: center;
    }
    /*end BENEFICIOS*/

    
}
/*end IPHONE VERTICAL*/

/*start IPHONE HORIZONTAL*/
@media (min-width: 480px) and (max-width: 767px) {
   /*start HEADER*/
    #topnav .flex{
        justify-content: center;
    }
    header #logo{
        width: 130px;
    }

    #navbar{
        width: 100%;
        display: none;
    }
    #navbar.active{
        display: block;
    }
        #navbar .flex{
            flex-direction: column;
        }
            #navbar .flex li{
                margin: 20px 0 0 0;
                width: 100%;
                text-align: center;
            }
    /*end HEADER*/

    /*start FOOTER*/
    #bluebar .flex,
    footer .flex{
        flex-direction: column;
    }
        footer p{
            text-align: center;
            flex-direction: column;
            margin-bottom: 10px;
            line-height: 1.2em;
            font-size: 0.8em
        }
        footer p a{
            margin: 0 0 10px 0
        }
    /*end FOOTER*/

    /*start LAYOUT*/
    .content-block{
        padding: 50px 0
    }
    /*end LAYOUT*/

    /*start HOME*/
    #main-banner{
        height: 350px
    }
        #main-banner .container h1{
            font-size: 1em;
        }
        #main-banner .container h2{
            font-size: 2.5em;
            margin: 20px 0;
        }
        #main-banner .container p{
            font-size: 1em;
        }
    /*end HOME*/

    /*start ABOUT*/
    #nosotros .row.flex{
        display: block
    }
    #nosotros #about-slider{
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        height: 100%;
    }
        .bxslider div{
            width: 100%!important
        }

    #nosotros .container, #nosotros .col-md-6, #nosotros .row{
        position: relative;
    }
    /*end ABOUT*/

    /*start BIOGAS*/
    #biogas .txt{
        margin-top: 50px;
    }
    /*end BIOGAS*/

    /*start BENEFICIOS*/
    #beneficios .block-icon{
        width: 100%;
    }

    #banner-beneficios{
        background-attachment: scroll;
        padding: 40px 0
    }
    #beneficios #icon-plant{
        background-position: bottom center;
        background-image: none!important
    }

    #banner-beneficios .row.flex{
        flex-direction: column;
    }

    #banner-beneficios h3{
        text-align: center;
        font-size: 1.5em;
    }

    #banner-beneficios .banner-icon{
        margin-top: 30px
    }
    #banner-beneficios .banner-icon img{
        width: 80%;
    }

    #banner-beneficios{
        height: auto;
        text-align: center;
    }
    /*end BENEFICIOS*/
}
/*end IPHONE HORIZONTAL*/

/*start IPAD VERTICAL*/
@media (min-width: 768px) and (max-width: 959px) {    
   
    
}
/*end IPAD VERTICAL*/

/*start BIG SCREEN*/
@media (min-width: 1200px){
   
}
/*end BIG SCREEN*/
/*-----------end MEDIA QUERIES-----------*/