@import url('../assets/fonts/Open_Sans.css');
@import url('../assets/fonts/Roboto.css');  
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
main{
    /*height: calc(100vh + 800px);
    flex-basis: 0;
 flex-grow: 999;
 min-width: 60%;*/
    margin-top: 80px;  
    text-align: center;
    flex-wrap: wrap;
}
header{
    height: 80px;
    background: #f1f0f0;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center ;    
}

.logo img{
    display: flex;
    height: 80px;
}
.menu a{
    color: #777777;
    text-decoration: none;
    padding: 0 10px;
    transition: 0.4s;
    font-weight: 400;
}
.menu .tex-menu-selected{
    color:#46a2fd;
}
.mostrar-menu,
.esconder-menu{
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0,4s;
}
.mostrar-menu{
    order: 1;
}
.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
    color: #0049B1;
}
#check{
    display: none;
}
/*------------responsive del header-------------------------------*/
@media(max-width: 768px){
    /*header*/
    .mostrar-menu,
    .esconder-menu{
        display: block;
    }

    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #f1f0f0; 
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
    }

    .menu a{
        display: block;
        padding: 20px;
    }
    .esconder-menu{
        position: absolute;
        top: 40px;
        right: 40px;
    }
    #check:checked ~ .menu{
        right: 0;
    }
    #banner{
        flex-direction: column;
    }
    #info{
        flex-direction: column;
        padding: 30px 30px;
    }
    #logos{
        flex-direction: column;
        padding: 50px 90px;
    }
    .datos-form{
        flex-direction: column;
    }
}
/*-------------------------banner frontal imagen------------------------------------*/
.frontal1 {
    width: 100%;
	min-width: 200px;
	max-width: 100%;
	position: relative;
	height: auto;
	min-height: 200px;
	max-height: 100%;
    border-end-end-radius: 20px;
    border-end-start-radius: 20px;
	overflow: hidden;
  }
  .frontal1 img {
    width: 100%;
    height: auto;
    vertical-align: middle;
  }
  .texto{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);  
  }
  .texto h1{
    text-align: center;
    margin-block-end: 50px;
    font-size: 3vw;
    color: #0049B1;   
  }
  .texto p{   
    font-size: 2vw;
    text-align: center;
  }
  .responsive-banner {	
	width: 100%;
	min-width: 200px;
	max-width: 100%;
	position: relative;
	height: auto;
	min-height: 200px;
	max-height: 100%;
    border-end-end-radius: 20px;
    border-end-start-radius: 20px;
	overflow: hidden;
}

img {
	max-width : 100%;
	width: 100%;
	position: relative;
}
/*------------------------------------datos animados de hectáreas de predio--------------------------*/
.cadena{
    width: 100%;
    background-color: #A49F9F;
    margin-top:60px;
}
.grid-cont{
    display: grid;  
    position: relative;
    justify-content: stretch;
    width: 60%;  
    margin: 0 auto;
    padding: 10px;  
}
@media (min-width: 600px){
    .grid-cont{
        grid-template-columns: repeat(2, 1fr);

    }   
}
@media (min-width: 900px){
    .grid-cont{
        grid-template-columns: repeat(3, 1fr);
    }
}
.contint{
   margin: 5px;
   text-align: center;
   justify-content: center;
 }
 .contint{
       grid-template-rows: 20px;
    grid-template-columns: 50px;
    margin-left: 50px;  
    /*border: 2px solid #0048B1;*/   
    align-items: center; 
 } 
.contint form input{
     margin-left: 2px;
     margin: 10 auto;
     margin-top: 10px;
     line-height: 20px;
     font-weight: 400;   
 }
 .contint h2{
     margin-left: auto;
     margin: 10px auto;
     font-size:  50px;
     font-weight: 400;
     color: white;  
 } 
 .contint h1{
     margin-left: auto;
     margin: 10px auto;
     font-size:  25px;
     color: #004AAD;
     font-weight: 400;
 }

.contint img{
    width: 40%;  
}
 .contador{
    font-size: 30px;
}
@keyframes aparecer{
    0%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}
.ocultar{
    opacity: 0;
}
.animar{
    animation: aparecer .25s ;
    opacity: 1;
}
/*----------------------------------------------------------------------visivilidad a productores-------------------*/
.grid_layoud{
    display: grid;   
    justify-content: stretch;
    width: 75%;
    margin: 20px auto;
    padding: 20px;  
}
@media (min-width: 600px){
    .grid_layoud{
        grid-template-columns: repeat(2, 1fr);

    }  
}
@media (min-width: 900px){
    .grid_layoud{
        grid-template-columns: repeat(3, 1fr);

    }  
}
.row{
   background: #2A6EF2;
   margin: 5px;
   padding: 20px 20px;

   
 }
 .row{  
     grid-template-rows: 20px;
     grid-template-columns: 50px;
     margin-left: 50px;
     margin-top: 50px;
     border-radius: 20px;
     /*border: 2px solid #0048B1;*/
     box-shadow: 4px 4px 4px 4px rgba(7, 57, 157, 0.404);
 }
 .row form input{
     margin-left: 2px;
     margin: 10 auto;
     margin-top: 10px;
     line-height: 20px;
     font-weight: 400;
     
 }
 .row p{
     margin-left: auto;
     margin: 10px auto;
     font-size:  17px;
     font-weight: 400;
     text-align: center;
     color: white;
 }
 .row h1{
     margin-left: auto;
     margin: 1px auto;
     font-size:  25px;
     color: white;
     font-weight: 400;
     text-align: center;
 }
 .titulo{
    height: 100%;
    width: auto;
    
 }
 .titulo h1{
    text-align: center;
    font-size: 4vw;
    margin-top: 50px;
    color: #004AAD;
 }
 .frase{
    height: 100%;
    padding: 70px 70px;
    background: #004AAD;
    text-align: center;
 }
 .frase h1{
    color: white;
    height: 80%;
    line-height: 1.2;
    font-size: 34px;
 }
 /*----------------------------------------estilos logos ecoscial y ws-----------------------*/
 .grid-ini{
    display: grid;   
    justify-content: stretch;
    width: 60%;
    margin: 20px auto;
    padding: 10px;   
}
@media (min-width: 600px){
    .grid-ini{
        grid-template-columns: repeat(2, 1fr);
    }  
}
@media (min-width: 900px){
    .grid-ini{
        grid-template-columns: repeat(3, 1fr);
    }  
}
.logoint{   
   margin: 5px;  
   width: 200px;
   height: 200px; 
 }
 .logoint{
   
     grid-template-rows: 10px;
     grid-template-columns: 50px;
     margin-left: 50px;
     margin-top: 50px;
 }
