body
{
    margin: 0;
    padding: 0;
    /*background-image: url(../../green-leaves-nature-background-print-vector-5413874.jpg);*/
    width: 100%;
}

header
{
    position: relative;
    top: 55px;
    left: 0;
    padding: 0 100px;
    background: #245425;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    margin-left: 10px;
    border-radius: 10px;
}

header .logo
{
    float: left;
    position: relative;
    top: -50px;

}

header nav
{
    float: right;
}

header nav ul
{
    margin: 0;
    padding: 0;
    display: flex;
    font-family: sans-serif;
}

header nav ul li 
{
    list-style-type: none;
    position: relative;
}
header nav ul li ul
{
    position: absolute;
    left: 0;
    background: #333;
    display: none;
}
header nav ul li:hover ul
{
    display: block;
}
header nav ul li ul li
{
    display: block;
    width: 250px;
}
header nav ul li a
{
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    display: block;
}
header nav ul li a:hover,
header nav ul li a.active
{
    color: #fff;
    background: #4d8800;
    text-decoration:none!important;
}
.menu-toggle
{
    color: #fff;
    float: right;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/*---------------------------TRY---------------------------------------*/

.home-photo
{   
    margin-top: 50px;
    height: 758px;
    width: 100%;
    background-image: url("../../images/carusel/0.JPG");
    background-position: center;
    background-size: cover;
    margin-left: 12px;
    //border: 5px solid rgb(10, 20, 10);
    border-radius: 10px;
}

.select-prod
{
    margin-top: 10px;
    height: 300px;
    width: 100%;
    background-color: red;
    margin-left: 10px;
    border: 5px solid rgb(10, 20, 10);
    border-radius: 10px;
}

/*---------------------------BODY---------------------------------------*/

.text-home
{   
    color: #073502;
    margin-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    border: 2px solid #eb612a;
    border-radius: 10px;
    margin-left: 12px;

}

.text-home p
{
    margin: 10px;
}
.title
{   
    margin-top: 150px;
    /*border: 1px solid yellow;*/
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container
{
    /*border: 1px solid black;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
    position: static;
}

.container .card
{
    position: static;
    margin-bottom: 50px;
}


.photo-container
{ 
    display: flex;
    justify-content: space-around;
    align-content: space-around;
    //border: 1px solid green;
    margin-top: 100px;
    width: 800px;
    position: static!important;

}


/*------------------FOOTER--------------------------*/

    footer
    {
    	display: flex;
        background-color: #245425;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 50px;
    }
    

	footer .foot-container
    {
    	display: grid;
        grid-template-columns: auto auto auto;
        justify-content: center;
        color: rgb(234, 245, 236);
        font-family: Arial, Helvetica, sans-serif;
    	font-size: 150%;
    }
    footer img
    {
    	height: 100px;
        width: 60px;
        margin-right: 0px;
    }
    .foot-container p, .info
    {	
    	margin: 0;
        padding: 5px;
        text-align: center;
        
        
    }
    
    .foot-container p 
    {
    	border-bottom: 3px solid #eb612a;
    	margin-top: 6px;
        padding-bottom: 0;
        padding-right: 100px;
        padding-left: 100px;
    }

    .foot-container .info
    {
    	grid-row-start: 2;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

@media (max-width: 1102px)
{
    .menu-toggle
    {
        display: block;
    }
    header nav
    {
        position: absolute;
        width: 100%;
        height: calc(100vh + 210px);
        background: #333;
        top: 50px;
        left: -105%;
        transition: 0.5s;
        margin-bottom: 100px;
    }
    header nav.active 
    {
        left: 0;
    }
    header nav ul
    {
        display: block;
        text-align: center;
    }
    header nav ul li a
    {
        border-bottom: 1px solid rgba(0,0,0,.2);
    }
    header nav ul li:hover ul
    {
        position: relative;
        background: #245425;
    }
    header nav ul li ul li
    {
        width: 100%;
    }
}
