iframe.map {
    width: calc(100% - 40px);
    height: 350px;
    border: 0;
    clear: both;
    float: none;
    margin: 20px;
}

article {
    width: 90%;
    height: auto;
    display: flex;
    margin: 50px auto;  
    border-radius: 16px;
    box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
    background: #fff;
}

form {
    width: calc(100% - 350px);
    padding: 20px;
}
form input[type="text"] {
	width: 100%;
	height: auto;
	padding: 15px;
    border-radius: 15px;
    border: solid 1px #000;
}
form textarea {
	width: 100%;
	height: 200px;
	font-size: 1em;
	padding: 10px;
    border-radius: 15px;
    border: solid 1px #000;
}
form button {
	width: auto;
	height: auto;
	padding: 15px 30px;
	border-radius: 15px;
	color: #fff;
	font-weight: bold;
    border: solid 1px #000;
	background: #000;
    transition: 0.5s;
}
form button:hover {
	color: #000;
	background: #fff;
    transition: 0.5s;
}

main svg { fill: #fff; }
div.coordonnees {
    width: 350px;
    background: #1e80b4;
    background: #000;
	padding: 20px;
	color: #fff;
    border-radius: 0 16px 16px 0;
    box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
}
div.coordonnees p {
	font-size: 1.2em;
}
div.coordonnees p.image {
	line-height: 150px;
    vertical-align: middle;
}
div.coordonnees p.head {
	font-size: 1.5em;
	border-bottom: solid 1px #fff;
}
div.coordonnees p a {
	color: #fff;
	text-decoration: none;
}

div.coordonnees ul.socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
div.coordonnees ul.socials a {
    font-size: 1.5em;
    color: #fff;
    text-decoration: none;
}