/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Fira+Sans:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/* Global */

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

body {
	margin: 50px 0 100px;
	padding: 0;
	font-family: 'Fira Sans', sans-serif;
	line-height: normal;
	font-size: 16px;
	background: #f5f5f5;
}

img {
	max-width: 100%;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

.wmc-wrapper {
	max-width: 790px;
	margin: 0 auto;
	padding: 0 20px;
}

.wmc-logo {
	text-align: center;
    margin-bottom: 30px;
}

.wmc-logo img {
	max-width: 240px;
}

.wmc-logos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 40px;
	max-width: 500px;
	margin: 0 auto 40px auto;
	align-items: center;
	justify-items: center;
}

.wmc-logos img {
    display: block;
    max-width: 100%;
	width: 190px;
}

.wmc-content {
	line-height: 1.7em;
    text-align: center;
	margin-bottom: 30px;
}

.wmc-button {
    text-align: center;
    margin-top: 20px;
}

.wmc-button a {
	display: inline-block;
    background-color: #618e8b;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    width: 275px;
    max-width: 100%;
}

.wmc-button a:hover {
	opacity: 0.9;
}

.wmc-content-osm,
.wmc-content-wtu {
    margin-bottom: 40px;
	text-align: center;
	line-height: 1.5em;
}

/* Responsive */

@media (max-width: 400px){

	.wmc-content {
		font-size: 14px;
	}

}