@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 525px;
    border: solid 1px #000;
    background: #fff;
}
p {
    padding-bottom: 0.3rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
main {
    padding: 0.3rem 1.5rem 0.7rem;
}
section p {
    color: #fff;
}
section {
    margin: -137px 0 25px;
}
.logos{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0.3rem;
}
figure:last-of-type {
    margin: 0 -1.5rem 0 0;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:524px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    section{
    	margin: 1rem 0;
    	background: #000;
    	padding: 0.5rem;
    }
    section br{
    	display: none;
    }
}
@media only screen and (max-width:405px){
	.logos{
		margin: 0 0 0.3rem;
		align-items: center;
		flex-direction: column;
	}
}