@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: 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: #006180;
    font: 400 1em/1.3em 'Roboto Slab', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
.fsi, h2, h3{
    font-style: italic;
}
p {
    padding-bottom: 1rem;
}
p a.ins{
    text-decoration: underline;
}
p span.bg{
    display: inline-block;
    background: #9FD9DB;
    padding: 0.2rem 0;
}
.color1, h2{
    color: #22BDBD;
}
h1, h2,h3{
    font-weight: 400;
}
h1, h3 {
    margin: 0 0 1rem;
    font-size: 2.492em;
    line-height: 1.1;
}
h2 {
    font-size: 1.4em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h3 {
    padding-left: 1rem;
}
h3:before {
    content: url('../images/icon.png');
    font-size: 1.3em;
    float: left;
    margin: -5px 0 0 -1rem;
    font-family: Arial, sans-serif;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #006180;
    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.5rem 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header{
    display: flex;
    justify-content: flex-end;
    margin: 1rem 2rem;
}
article{
    padding: 2rem 2rem 5rem;
    background: url('../images/bg.png') no-repeat bottom 3rem right;
}
article figure{
    margin: 4rem 3rem;
}
.flex{
    display: flex;
    justify-content: space-between;
}
.left{
    width: 510px;
}
.right{
    width: 250px;
    padding-top: 3rem;
}
.box{
    margin-top: 5rem;
}
.box :is(p,a,h2){
    color: #FFF;
}
@media only screen and (max-width: 839px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    header{
        display: flex;
        justify-content: center;
        margin: 1rem;
    }
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100% !important;
    }
    article {
        background-image: none;
    }
    .box{
        background: #006180;
        border-radius: 10px;
        padding: 1rem 1rem 0;
        margin: 1rem 0;
    }
    article figure{
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    .hide_m{
        display: none;
    }
    .right{
        padding-top: 0;
    }
}
@media only screen and (max-width: 500px) {
    h1, h3{
        font-size: 1.7em;
    }
}
@media only screen and (max-width: 480px) {
     article{
        padding: 1rem;
     }
}