
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');
html,body{
    font-family: 'Montserrat', sans-serif;
    color: #09443b;
    font-size: 14px;
}

@media(min-width: 578px){
    html,body{ 
        font-size: 16px;
    }
}
@media(min-width: 768px){
    html,body{ 
        font-size: 18px;
    }
}
@media(min-width: 992px){
    html,body{ 
        font-size: 20px;
    }
}
h2{ 
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: bold;
}
h3{ 
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #60bd62;
}
p{    
    font-size: 1rem;
}

@media(min-width: 992px){
    h2{ 
        font-size: 24px;
    }
    h3{ 
        font-size: 20px;
    }
    p{    
        font-size: 18px;
    }

}

.bg-white-transparent{
    background: rgba(255,255,255,0.7);
    padding: 15px;
}
img{
    max-width: 100%;
}

.container{
    width: 100%;
    max-width: 1300px;
}

.header{
    position: fixed;
    padding: 15px 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.7);
    z-index: 100;
    transition: all 300ms ease;
    box-shadow: 0 0 0 rgba(255,255,255,0.7);
}

.header .logo{
    display: inline-block;
    width: 350px;
    max-width: 100%;
    transition: all 300ms ease;
}


.scrolled .header{
    padding: 5px 0;
    background: rgba(255,255,255,1);
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
}
.scrolled .header .logo{
    width: 150px;
}
@media(max-width: 992px){
    .header{
        padding: 5px 0;
    }
    .header .logo{
        width: 150px;
    }
}
.header .menu{ 
}
.header .menu ul{
    margin: 0;
    padding: 0;
}
.header .menu ul li{
    display: block;
}
.header .menu ul li a{
    display: inline-block;
    color: #09443b;
    padding: 5px 7px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 2px solid transparent;
}
.header .menu ul li a.current{
    border-color: #09443b;
}
@media(min-width: 578px){
    .header .menu ul li a{
        padding: 7px 0;
    }
}
.openMenu .header{
    background: #fff;
}

.header .menu-wrapper{
    height: 0;
    padding: 0;
    opacity: 0;
    transition: all 300ms ease;
    overflow: hidden;
    border-top: 1px solid transparent;
    max-height: calc(100vh - 70px);
    margin: 0;
} 
.openMenu .header .menu-wrapper {
    height: auto;
    opacity: 1;
    padding: 15px 0;
    border-color: #09443b; 
    overflow-y: auto;
    margin: 10px 0 0 0;
} 
.intro{
    background: #16342c url('../res/images/bg-intro.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.intro:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0e443b;
    z-index: 9;
    opacity: 0.55;
    border-radius: 0%;
    animation: bgIntro 600ms ease;
    animation-iteration-count: 1; 
}

@keyframes bgIntro {
    0%   {
        top: 50%;
        right: 50%;
        bottom: 50%;
        left: 50%;
        border-radius: 100%;
        opacity: 0.25;
    } 
    100% {
        top: 0%;
        right: 0%;
        bottom: 0%;
        left: 0%;
        border-radius: 0%;
        opacity: 0.55;
    }
}
.intro .logo-intro{
    position: absolute;
    width: 100%; 
    max-height: 100%;
    object-fit: contain;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 


}
.intro .image{
    position: absolute; 
    z-index: 10;
    top: 25%;
    right: 25%;
    bottom: 25%;
    left: 25%; 
    transform: scale(0);
    opacity: 0;
    animation: scale 2000ms ease-in-out forwards;
    animation-delay: 600ms;
}

@keyframes scale {
    from{
        opacity: 0;
        transform: scale(0.25);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.ce-este{
    padding: 50px 0;
    background: #16342c url('../res/images/bg-section-what-is.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.ce-este h2{
    text-transform: uppercase;
    font-weight: bold; 
}
.ce-este h3{
    text-transform: uppercase;
    font-weight: bold;
    color: #60bd62; 
}
.ce-este h3 span{
    font-size: 50px;
    display: inline-block;
    line-height: 0.7;
    padding-left: 10px;
    vertical-align: bottom;
}

.ce-este p{
    color: #60bd62;
}

.ce-este .text{
    padding-top: 40px; 
}
.ce-este .text p{
    color: #474747;
}

.de-ce{
    position: relative;
    overflow: hidden;
}
.de-ce:before{
    display: block;
    content: ''; 
    width: 100%;
    padding-top: 50%;
    background: #16342c url('../res/images/bulbs.png') no-repeat center center;
    background-size: cover; 
    overflow: hidden;
}

@media(min-width: 992px){
    .de-ce:before{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 33%;
        height: 100%;
        background: #16342c url('../res/images/bulbs.png') no-repeat center center;
        background-size: cover; 
        overflow: hidden;
    }
}

@media(min-width: 1200px){

}

.de-ce h2{
    text-transform: uppercase;
    font-weight: bold;
}

.de-ce .content{
    padding: 30px 0;
}

.de-ce .content p{
    color: #60bd62;
}

.de-ce .content h2{
    margin-bottom: 20px;
}
.de-ce .content h3{
    margin-bottom: 20px;
    color: #60bd62;
    text-transform: uppercase;
}

.beneficii{
    padding: 50px 0;
}
.beneficii .image{
    margin-bottom: 20px;
    padding-top: 60%;
    position: relative;
}

.beneficii .image img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}
.beneficii h3{
    margin-bottom: 20px;
    color: #60bd62;
    text-transform: uppercase;
}
.beneficii p{
    font-size: 14px;
}
.viziune{
    padding: 50px 0;
    background: #16342c url('../res/images/bg-grau.png') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed;
}
.viziune .logo-viziune{
    background: #fff;
    padding: 15px;
    margin-bottom: 30px;
}

.viziune .logo-viziune img{
    display: block;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}


.viziune .text{
    background: #fff;
    padding: 15px;
    height: 100%;
    transition: all 300ms ease;
}
.viziune .text h3{
    margin-bottom: 20px;
    color: #60bd62;
    text-transform: uppercase;
}
.viziune .text p,
.viziune .text li{
    font-size: 16px;
}
.viziune .text li{
    margin-bottom: 10px;
}
.viziune .text:hover{
    color: #fff !important;
    background: #60bd62;
}

.viziune .text:hover > *{
    color: #fff !important;
} 
.obiective .top{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}
.obiective .top:before{
    content: '';
    display: block; 
    width: 100%;
    padding-top: 50%;
    background: #16342c url('../res/images/sfecla.png') no-repeat center bottom;
    background-size: cover; 
}

@media(min-width: 578px){
    .obiective .top:before{
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 50%;
        padding-top: 0;
        background: #16342c url('../res/images/sfecla.png') no-repeat center bottom;
        background-size: cover; 
    }
}

.obiective h2{
    padding-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;
}

.obiective .image{
    position: relative;
    height: 0;
    padding-top: 60%;
    margin-bottom: 20px;
}
.obiective .image img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
}

.obiective .text{
    margin-bottom: 20px;
}
.avantaje{
    padding: 50px 0;
    background: #0e443b url('../res/images/bg-avantaje.png') no-repeat right bottom;
    background-size: 40%;
    background-attachment: fixed;
}
.avantaje h2{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
}

.avantaje .grid .box{
    border-radius: 10px;
    background: #60bd62;
    padding: 15px;
    color: #fff; 
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agricultura{
    background: url('../res/images/bg-human.png') no-repeat left top;
    background-size: cover;
    background-attachment: fixed;
}
@media(max-width: 992px){
    .agricultura{
        padding: 40% 20px 50px;
    }
}
.agricultura .bg-white-transparent{
    padding: 15px 15px;
    background: #fff;
}
@media(min-width: 992px){
    .agricultura .bg-white-transparent{
        padding: 50px 15px; 
    }
}
.agricultura h2{
    text-transform: uppercase;
    font-weight: bold;
}

.agricultura .image {
    position: relative;
    height: 0;
    padding-top: 60%;
    margin-bottom: 20px;
}
.agricultura .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
}

.agricultura h3 {
    margin-bottom: 20px;
    color: #60bd62;
    text-transform: uppercase;
}

.aderare{
    padding: 50px 0;
}
.aderare .image{
    max-width: 800px;
    margin: 0 auto;
}

.boxes{
    padding: 50px 0;
    background: url('../res/images/bg-gradina.png') no-repeat left top;
    background-size: cover;
    background-attachment: fixed;
}

.boxes .text{
    background: #fff;
    padding: 15px;
    height: 100%;
}

.footer{
    padding: 50px 0 20px;
    background: #0e443b;
}

.footer .copy{
    color: #fff;
    text-align: center;
}

.footer .link-text{
    color: #fff;
}
.footer .menu-wrapper{
    border-top: 1px solid #60bd62;
    padding-top: 20px;
    margin-bottom: 60px;
}

.footer .menu ul{
    padding: 0;
    margin: 0;
}
.footer .menu a{
    display: block;
    padding: 7px 0;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 300ms ease;
}
.footer .menu a:hover{
    color: #60bd62;
}
.social-links a{
    display: inline-block;
    padding: 7px;
}


/* menu button begin */
.toggleMenu {
    display: inline-block;
    width: 36px;
    height: 36px;
    position: relative;  
    transform: rotate(0deg); 
    transition: .5s ease-in-out;
    cursor: pointer;   
    border: 1px solid transparent;
    vertical-align: middle;
}

.toggleMenu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #09443b;
    border-radius: 9px;
    opacity: 1;
    left: 0; 
    transform: rotate(0deg); 
    transition: .25s ease-in-out;

}


.toggleMenu span:nth-child(1) {
    top: 6px;
}

.toggleMenu span:nth-child(2),
.toggleMenu span:nth-child(3) {
    top: 50%;
    margin-top: -1px;
}

.toggleMenu span:nth-child(4) {
    bottom: 6px;
}
.openMenu .toggleMenu{
    /*border-color: #fff;*/
}
.openMenu .toggleMenu span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.openMenu .toggleMenu span:nth-child(2) { 
    transform: rotate(45deg);
}

.openMenu .toggleMenu span:nth-child(3) { 
    transform: rotate(-45deg);
}

.openMenu .toggleMenu span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* menu button end */

 /*  safari doesn't support  background-attachment: fixed; begin */
@supports (-webkit-overflow-scrolling: touch) {
    .intro,
    .ce-este,
    .viziune,
    .avantaje,
    .agricultura,
    .boxes{
        background-attachment: scroll;
    }
    .ce-este{
        border-top: 10px solid #fff;
    }
}
/*  safari doesn't support  background-attachment: fixed; end */