@charset "utf-8";
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-regular.woff') format('woff'),
        url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-700.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-700.woff') format('woff'),
        url('../fonts/poppins-v20-latin-700.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg');
}
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-italic.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-italic.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-italic.woff') format('woff'),
        url('../fonts/poppins-v20-latin-italic.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-italic.svg#Poppins') format('svg');
}
:root {
    font-size: 15px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #011755;
    font: 400 1em/1.3 'Poppins', Arial, sans-serif;
    background: url('../images/bg_body.jpg') no-repeat fixed, #F3F3F3;
    hyphens: auto;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    padding: 2rem;
}
p {
    padding-bottom: 1rem;
}
p img, p span.mr {
    margin-right: 0.5rem;
}
strong, h1, h2 {
    font-weight: 700;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.7em;
    line-height: 1.3;
    color: #0299AF;
}
h2 {
    font-size: 1.133em;
    line-height: 1.3;
    border-top: 2px solid #CFD6E7;
    padding-top: 1rem;
    color: #0069b4;
    margin-bottom: 1rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: #0069b4;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 2rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
.logo img {
    display: block;
    border-radius: 10px;
}
.logo {
    border: 1px solid #CFD6E7;
    display: inline-block;
    border-radius: 10px;
}
header {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 1rem;
    margin: 0 0 1rem;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    16.6% {
        left: 0%;
    }
    33.2% {
        left: -100%;
    }
    49.8% {
        left: -100%;
    }
    66.4% {
        left: -200%;
    }
    83% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    16.6% {
        left: 0%;
    }
    33.2% {
        left: -100%;
    }
    49.8% {
        left: -100%;
    }
    66.4% {
        left: -200%;
    }
    83% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
.slider {
    overflow: hidden;
    border-radius: 30px;
    margin: 2rem 0;
}
.slider figure img {
    width: 25%;
    float: left;
}
.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 15s;
    -webkit-animation-delay: 5s;
    -webkit-animation-iteration-count: infinite;
    animation: 15s slidy infinite;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    } 
    p :is(a,span){
      display: inline-block;
    }
    header {
        flex-direction: column;
    }
    .logo {
        margin: 0 auto;
        width: fit-content;
        margin-bottom: 1rem;
    }
    h1{
      font-size: 1.5em;
    }
}