@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #414042;
    font-family: "Roboto Slab", Arial, serif;
    font-size: 1em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    max-width: 950px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #414042;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1, h2, h3 {
    font-weight: 700;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2.2em;
    line-height: 1.1em;
}
h1, p.color {
    color: #00294F;
}
p.color {
    font-size: 1.4em;
    line-height: 1.3em;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    color: #00294F;
}
h3 {
    font-size: 1.1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    color: #fff;
    padding: 2rem 1rem;
    width: fit-content;
    margin: 0rem -1rem 0 auto;
    background: #F58465;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    bottom: 23rem;
    right: 3rem;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.3rem;
    margin-bottom: 0.5rem;
}
ul li:before {
    content: "›";
    display: inline-block;
    font-size: 1.000em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.3rem;
}
article {
    padding: 2rem 4rem 0;
}
article section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 1rem 0 2rem;
}
article section p {
    width: 48%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
figure {
    position: absolute;
    bottom: 37rem;
    right: 1.8rem;
}
footer {
    padding: 0 4rem;
}
footer section {
    padding: 1rem 5rem 0 1.5rem;
    background: #00294F url('bg.jpg') bottom right no-repeat;
    margin: 0 0 2rem;
}
footer section h2 {
    color: #fff;
    margin-bottom: 2rem;
}
footer section div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
footer section p {
    color: #fff;
    padding-bottom: 0.5rem;
}
.social {
    display: flex;
    gap: 1rem;
}
.social a {
    display: inline-block;
    padding: 0.5rem;
    background: #00294F;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 1.25em;
    text-align: center;
}
@media only screen and (max-width:949px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    article>p br {
        display: none;
    }
    h1 {
        font-size: 1.7em;
    }
    h3 {
        bottom: 20rem;
    }
    figure {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:768px) {
    article, footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    article section p {
        width: 100%;
    }
    h3 {
        position: static;
        display: block;
        margin: 1rem auto;
    }
}