body {
    background-color: white;
    margin: 0;
    font-family: Tahoma, Verdana, sans-serif;
    color: #343434;
}

.container {
    margin-top: 200px;
    margin-bottom: 30px;
    /*padding: 10px;*/
    display: flex;
    width: 100%;
    justify-content: center;
}

.body {
    display: flex;
    flex-wrap: wrap;
    max-width: 985px;
    /*border: 1px solid red;*/
    justify-content: center;
}

.logo-div {
    position: fixed;
    overflow: hidden;
    top: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: white;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

.footer {
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #2b285d;
    background-color: #ebe9ea;
    position: fixed;
	bottom: 0;
	overflow: hidden;
	z-index: 1;
	width: 100%;
}

.paolo-port {
    float: right;
    width: 30%;
    margin: 10px;
    /*border: 1px solid #2b285d;*/
}

/* MENU ------------------------------------------------------------------------------------------------------------------- */

.bar    {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #2b285d;
}

.menu_bar_first {
    display: flex;
    background-color: #ebe9ea;
    font-weight: bold;
    min-height: 50px;
	position: fixed;
	top: 153px;
	width: 100%;
	overflow: hidden;
	z-index: 1;
	border-top: 1px solid #2b285d;
	border-bottom: 1px solid #2b285d;
	justify-content: center;
}

.lis {
    display: inline-block;
    /*border: 1px solid red;*/
}

a   {
    text-decoration: none;
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li{
    float: left;
}

li a{
    display: block;
    color: #2b285d;
    text-align: center;
    padding: 16px;
}

li a:hover{
    background-color: #2b285d;
    color: white;
    transition: 0.5s;
}

.hamburger  {
display: none;
cursor: pointer;
}

/* Media view ------------------------------------------------------------------ */

@media (max-width: 600px){
    
    .container {
        margin-top: 95px;
    }
    
    .body {
        max-width: 100%;
        padding: 20px;
    }
    
    .logo-img {
        width: auto;
        height: 55px;
    }
    
    .menu_bar_first {
	    top: 55px;
    }
    
    .img-resize {
    width: 35%;
    height: auto;
    }
    
    img {
        max-width: 95%;
        height: auto;
    }
    
    li {
        float: none;
        border-bottom: 1px solid black;
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 65px;
        right: 10px;
		z-index: 1;
    }

    .hamburger.active .bar:nth-child(2)  {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .links {
        display: none;
    }

    .links.active{
        display: block;
    }
		
	.table-grid	{
		max-width: none;
	}
	
	.footer {
	    font-size: 0.7em;
	}
	
	.testimage {
	    max-width: 40%;
	    height: auto;
	}
}