/* GENERAL*/

Html {
	font-size: 100%;
}

body {
	margin:0;
	padding:0;
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-weight:300;
	color: #000000;
	font-size: 1em;
	line-height: 2em;
	text-align: center;
	background: #ffffff;
	width: 100%;
	min-height: 100vh;
	/* border: 2px solid red; */
}

.container1 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	/* border: 2px solid yellow; */
}

img {
	border: 0;
	margin-top: 5em;
	width: 350px;
	/* border: 2px solid purple; */
}

.info {
	text-align: justify;
	text-align-last: center;
	margin-top: 4em;
	width: 50%;
	padding: 1em;
	font-size: 1.425em;
	background-color: #f5f1e9;
}


.container2 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap; 
	justify-content: center;
	align-items: start;
	width: 100%;
	margin-top:20px;
	/* border: 2px solid green; */
}

.contacts{
	width: 52%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap; 
	justify-content: space-around;
	/* border: 2px solid orange; */
}

.bloc {
	flex:1;
	margin: 10px;
	font-size: 1.125em;
	/* background-color: #f5f1e9; */
	min-width:25%;
	text-align: left;
	line-height: 1.5em;
	border: 2px solid #f5f1e9;
}

.bloc p {
	padding: 10px 30px;
}

.bloc p a{
	color: #007880;
	text-decoration: none;
	transition: 0.5s;
}
.bloc p a:hover{
	text-decoration: underline;
}
.container3 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin:30px auto ;
	/* border: 2px solid blue; */
}

.container3 a {
	color: #007880;
	font-size: 1.125em;
	line-height: 1.125em;
	text-decoration: none;
	transition: 0.5s;
	padding:10px 20px;
	background-color: #f5f1e9;
}
.container3 a:hover {
	color: #ffffff;
	background-color: #007880;
}


@media (max-width: 768px) {
	
	img {
		border: 0;
		margin-top: 4em;
		width: 70%;
		/*border: 1px solid green;*/
	}

	.info {
		width: 70%;
		font-size: 1.5em;
		line-height: 1.25em;
	}
	
.contacts{
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap; 
	justify-content: space-around;
	align-items: center;
	/* border: 2px solid orange; */
}

.bloc {
	width: 80%;
	font-size: 1.25em;
	line-height: 1.125em;
	/* border: 2px solid purple; */
}

.container3 a {
	font-size: 1.25em;
	line-height: 1.25em;
	font-weight:bold;
width:76%;
margin:0 auto 50px;
padding:10px ;
}

}