.promo{
    width: 100%;
}

.content p
{
    text-align: justify;
    
}
.lado {
    
        position: absolute;
    right: 30px;
}
#modal {
	/* the modal is on top of the main content and covers the entire wieport*/
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	/* hide the modal window */
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s, visibility .2s;
}

#modal.is-visible {
	/* show the modal window */
	opacity: 1;
	visibility: visible;
}

#modal.no-visible {
	/* show the modal window */
	opacity: 0;
	visibility: hidden;
}

#modal .content {
	/* center modal content */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	/* content basic style */
	width: 90%;
	max-width: 400px;
	padding: 2em;
	background-color:  rgba(255, 255, 255, .9);
}

#modal h2 {
	margin-top: 0;
}

#modal p {
	line-height: 1.3;
}

#modal button {
	cursor: pointer;
	border: 0;
	border-radius: 2px;
	color: #FFF;
	background-color: #40508F;
	padding: .5em .8em;
	font-size: 14px;
	font-weight: bold;
	transition: background .3s;
}

#modal button:hover {
	background-color: #333545;
}

@media only screen and (max-width: 600px) {
    
.logo {
    position: fixed;
    z-index: 10;
    top: 30px;
    left: 10px;
}

.logo img {
    width: 70px;
}    

}