@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 0.938em/1.3em Verdana, Calibri, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 760px;
    border: solid 1px #000;
    background: #fff;
    padding: 1.5rem 2rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.375em;
    line-height: 1.1em;
    text-align: center;
}

.blue,
p a.blue {
    color: #1D84D8;
}

.blue {
    width: 400px;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
}

h2 img {
    vertical-align: -2px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 20px;
}

ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -20px;
}

header {
    position: absolute;
    right: 10.5rem;
    top: 4rem;
}

.box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

section {
    width: 357px;
    padding-top: 144px;
}

.gray {
    color: #A6A6A6;
    padding: 1rem 2rem 1rem;
    text-align: right;
    font-size: 0.65em;
    line-height: 1.3;
}

section p:first-of-type {
    color: #585858;
    text-align: justify;
    font-size: 0.65em;
    line-height: 1.3;
}

article {
    padding: 0 2rem 0;
}

.contact {
    padding: 0 4rem 1rem 3rem;

}

.contact p {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer {
    padding: 0 0 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:759px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.7rem;
    }

    p {
        text-align: left;
    }

    p :is(span, a) {
        display: inline-block;
    }
    .contact{
        padding: 0 0 1rem;
    }
    .box{
        display: block;
    }
    .blue{
        width: 100%;
    }
    figure{
        margin: 1rem 0;
        display: flex;
        justify-content: center;
    }
    header{
        position: static;
        display: flex;
        justify-content: center;
    }
    .gray{
        text-align: center;
    }
    section{
        width: 100%;
        padding: 0;
    }
    section p:first-of-type{
        text-align: left;
    }
    article,footer{
        padding: 0 1rem;
    }
}