@charset "utf-8";
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-slab-v24-latin-regular.eot'); 
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-slab-v24-latin-regular.woff2') format('woff2'), 
       url('../fonts/roboto-slab-v24-latin-regular.woff') format('woff'), 
       url('../fonts/roboto-slab-v24-latin-regular.ttf') format('truetype'), 
       url('../fonts/roboto-slab-v24-latin-regular.svg#RobotoSlab') format('svg'); 
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-slab-v24-latin-500.eot'); 
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-500.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-slab-v24-latin-500.woff2') format('woff2'), 
       url('../fonts/roboto-slab-v24-latin-500.woff') format('woff'), 
       url('../fonts/roboto-slab-v24-latin-500.ttf') format('truetype'), 
       url('../fonts/roboto-slab-v24-latin-500.svg#RobotoSlab') format('svg'); 
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-slab-v24-latin-700.eot'); 
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-slab-v24-latin-700.woff2') format('woff2'), 
       url('../fonts/roboto-slab-v24-latin-700.woff') format('woff'), 
       url('../fonts/roboto-slab-v24-latin-700.ttf') format('truetype'), 
       url('../fonts/roboto-slab-v24-latin-700.svg#RobotoSlab') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0094C8;
    font: 1em/1.3em 'Roboto Slab', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 970px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
p span.bg{
    display: inline-block;
    background: #AAE0F9;
    padding: 0.1rem;
}
h1,h2{
    font-weight: 500;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2.592em;
    line-height: 1.1;
}
h2 {
    font-size: 1.6em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0094C8;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.3rem 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header{
    display: flex;
    justify-content: flex-end;
    padding:  2rem 8.8rem 2rem 2rem;
}
article{
    position: relative;
    padding: 0 5rem;
    background: url('../images/bg.jpg') no-repeat bottom  right;
}
article figure{
        position: absolute;
    bottom: 1rem;
    right: 6rem;
}
.mt{
    margin-top: 5rem;
}
.mt :is(h2,p, a){
    color: #FFF !important;
}
.flex{
    display: flex;
    justify-content: space-between;
}
.left{
    width: 59%;
}
.right{
    width: 34%;
    margin-top: 2.7rem;
}
@media only screen and (max-width: 969px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    header{
        justify-content: center;
        padding: 1rem;
    }
    article{
        background: #FFF;
        padding: 1rem 2rem;
    }
    article figure{
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100% !important;
    }
    .right{
        margin: 0;
    }
    .mt{
        padding: 1rem 1rem 0;
        background: #0094C8;
        box-shadow: -0.1rem 0.1rem 1rem #52B6D9;
        border-radius: 10px;
        margin: 1rem 0;
    }
    .res_center,h1{
        text-align: center;
    }
    .hide_m{
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    h1{
        font-size: 1.6em;
    }
    h2{
        font-size: 1.3em;
    }
    article{
        padding: 1rem;
    }
}