@charset "utf-8";
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v44-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v44-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 0.9375em/1.4 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto 10rem;
    box-shadow: 0 0 5px #999;
    background-color: #fff;
    overflow: hidden;
}
p {
    margin-bottom: 1rem;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 2.25rem;
    line-height: 1.3;
}
h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
}
h2::before {
    content: "";
    width: 54px;
    height: 100px;
    background: url('../images/icon1.svg') no-repeat top center;
    background-size: contain;
    float: left;
    margin: 0 0 0 -5rem;
}
h2:nth-of-type(2)::before {
    background: url('../images/icon2.svg') no-repeat top center;
    background-size: contain;
}
h2:nth-of-type(3)::before {
    background: url('../images/icon3.svg') no-repeat top center;
    background-size: contain;
}
h1, h2 {
    font-weight: 400;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    margin: 1em 0;
    list-style: none;
}
li {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}
ul li:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url('../images/check.svg') no-repeat center;
    background-size: cover;
    float: left;
    margin: 0 0 0 -1.5rem;
}
.icon li::before {
    background: url('../images/arrow-right.svg') no-repeat center;
}
.icon1 li::before {
    background: url('../images/chevron-right.svg') no-repeat center;
}
header {
    padding: 0 0 1.25rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.right {
    width: 62%;
    padding-right: 4%;
}
.color {
    color: #0080B4;
}
.flex > p {
    background-color: #0080B4;
    padding: 1rem 0.75rem;
    color: #fff;
}
.pl {
    padding-left: 5rem;
}
.big {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-top: 1rem;
    text-align: center;
}
footer {
    padding: 1.5rem 4%;
    background-color: #0080B4;
    display: flex;
    justify-content: space-between;
}
footer p {
    color: #fff;
}
footer p:nth-of-type(2) {
    margin-bottom: 0;
}
footer div {
    width: 81%;
}
.right1 {
    text-align: right;
}
nav p {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    margin: 0;
    padding: 0.5rem 1rem;
    border-top: 1px solid #0080B4;
    text-align: center;
    color: #fff;
}
nav p a {
    display: inline-block;
    padding: 0.5em 1.2em 0.55em;
    background-color: #0080B4;
    border: 1px solid #0080B4;
    transition: all 0.1s ease;
    font-size: 1rem;
    line-height: 1.3;
}
nav p a:hover {
    background-color: #fff;
    color: #0080B4 !important;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto 7rem;
    }
    .flex {
        display: block;
    }
    .flex > p {
        width: fit-content;
        margin: 0 auto 1rem;
        text-align: center;
    }
    .right {
        width: auto;
        padding: 0 4%;
    }
    .big {
        margin: 1rem;
    }
}
@media only screen and (max-width: 780px) {
    h2::before {
        width: 40px;
        margin-left: -3.5rem;
    }
    .pl {
        padding-left: 3.5rem;
    }
    footer {
        padding: 1rem 2rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    footer div {
        width: auto;
    }
}
@media only screen and (max-width: 480px) {
    .pl {padding-left: 0;}
    h1 {
        font-size: 2em;
    }
    h2 {
        padding-top: 4rem;
        font-size: 1.375em;
    }
    h2::before {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0 !important;
    }
    h2:nth-of-type(2) {
        padding-top: 3rem;
    }
    h2:nth-of-type(3) {
        padding-top: 2.625rem;
    }
    footer {
        padding: 1rem;
    }
}