@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #505559;
    font-weight: 400;
    font-family: "Arial", sans-serif;
    line-height: 1.4;
    font-size: 1rem
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

p {
    text-align: justify;
}

h1 {
    margin: .312rem 0;
    font-size: 1.7rem;
    color: #00294B;
    line-height: 1.2
}

h1 span {
    font-size: 1.2rem;
    font-weight: normal;
}

h1 small {
    font-size: 0.8em;
    font-weight: normal;
}

h2 {
    font-size: 1rem;
    font-weight: normal;
    margin: 1.875rem 0 0;
}

h3 {
    font-size: inherit;
    margin: 1.25rem 0 .625rem
}

ul {
    margin: 0 0 0.625rem;
    list-style: none;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2212";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1.1;
}

header {
    position: relative;
}

section {
    padding: .937rem 3.75rem;
}

.margin {
    margin: 0 0 .75rem
}

.aside {
    background: #EBECED;
    padding: .937rem 3.75rem;
}

.main {
    padding: 0 3.75rem;
    display: flex;
    justify-content: space-between;
    margin: 1.562rem 0
}

.element p a {
    font-weight: bold;
}

.element {
    flex: 0 0 48%;
}

.element p span {
    display: inline-block;
    font-weight: bold;
    width: 9.125rem;
}

.element p strong {
    color: #00294B;
}

footer {
    background: #00294B;
    color: #fff;
    padding: 1.25rem 3.75rem;
    font-weight: bold;
    font-size: .937rem;
    margin-top: 3.125rem;
    display: flex;
    justify-content: space-between;
    column-gap: 1rem;
}

i {
    font-size: 24px
}

.social {
    column-gap: 30px
}

.social,
.social a {
    display: flex;
    align-items: center;
}

.social a {
    column-gap: 10px;
}

@media only screen and (max-width:49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width:48rem) {

    p {
        text-align: left
    }

    section,
    .aside {
        padding: .625rem 1rem;
    }

    .main {
        padding: .625rem 1rem;
        margin: 0;
    }

    footer {
        padding: .625rem 1rem;
        margin-top: 0.625rem;
        column-gap: 0;
        justify-content: space-between;
    }
}

@media only screen and (max-width:48rem) {
    h1 {
        font-size: 1.5rem;
    }

    .top_title {
        position: static;
        text-align: center;
        font-size: 1.25rem;
    }

    .logo {
        position: static;
        padding: 0;
    }

    header>figure {
        position: static;
        left: 0;
        transform: translate(0);
        margin: .625rem auto;
        text-align: center;
        display: block;
    }

    footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .social {
        margin-top: 20px;
    }
}

@media only screen and (max-width:41rem) {
    .main {
        display: block;
    }
}

@media only screen and (max-width:30rem) {

    ul li {
        padding-left: 1.3rem
    }

    .element p span {
        width: auto;
    }
}

@media only screen and (max-width:23.5rem) {

    h1,
    h2 {
        text-align: center
    }

}