@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/open-sans-v44-latin-300.eot');
    src: url('../fonts/open-sans-v44-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-300.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-300.woff') format('woff'), url('../fonts/open-sans-v44-latin-300.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-300.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v44-latin-700.eot');
    src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-700.woff') format('woff'), url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', "Arial", sans-serif;
    font-size: 0.938rem;
    line-height: 1.5;
    font-weight: 300;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d2d2d2;
    box-shadow: 0px 0px 10px #999;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

strong {
    font-weight: 700;
}

article p {
    padding-bottom: 0.625rem;
}

h1 {
    font-size: 1.7rem;
    line-height: 1.2;
    padding-bottom: 0.625rem;
}

h1 span {
    font-size: .75em;
}

h2 {
    font-size: 1.1rem;
    color: #ed070a;
}

ul {
    list-style: none;
    padding-bottom: 1.5rem;
}

ul li {
    padding: 4px 0 0 1.25rem;
}

ul li:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999;
    float: left;
    margin-left: -1rem;
    font-size: 11px;
    line-height: 2.2;
}

hr {
    margin: .625rem 2rem;
    border-style: none;
    border-top: 1px solid #ededed;
}

.section {
    padding: 0.938rem 2rem;
}

.section h2 {
    color: #ed070a;
}

.section>*:last-child {
    padding-bottom: 0;
}

.gray {
    background-color: #b2b2b2;
    color: #fff;
}

.center {
    text-align: center;
}

.title {
    display: flex;
    background-color: #2b5967;
    color: #fff;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 20%;
    gap: .625rem;
    border-left: 2px solid #fff;
    margin-left: 1rem;
    padding-left: 1rem;
}

.info p {
    padding-bottom: 0;
}

.shadow {
    margin: 0 auto;
}

.flex {
    display: flex;
}

.flex>div {
    flex: 50%;
}

.flex h2 {
    color: #fff;
}

.plane {
    background-color: #d1d1d1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.938rem 1rem;
}

.plane i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

header {
    border-top: 30px solid #2b5967;
    display: flex;
    justify-content: center;
    padding: 3rem 2rem;
}

footer {
    background-color: #2b5967;
    color: #fff;
}

footer .section h2 {
    color: #fff;
}

@media only screen and (max-width: 49.938rem) {

    #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) {
    .title {
        display: block;
    }

    .info {
        border-left: none;
        border-top: 2px solid #fff;
        margin-left: 0;
        padding: .625rem 0 0;
    }
}

@media only screen and (max-width: 40rem) {
    header {
        padding: 2rem 1rem;
    }

    h1 {
        text-align: center;
    }

    .info {
        align-items: center;
    }

    .section {
        padding: 0.938rem 1rem;
    }

    .shadow {
        display: none;
    }

    hr {
        margin: .25rem 1rem;
    }

    .flex {
        display: block;
    }
}