@charset "utf-8";
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/poppins-v24-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v24-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/poppins-v24-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/poppins-v24-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v24-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/poppins-v24-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v24-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v24-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/poppins-v24-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/poppins-v24-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #00217a;
    font: 400 0.875em/1.5 'Poppins', Arial, sans-serif;
    background: linear-gradient(180deg, rgba(239,239,239,0.3) 300px, #f2fafb 800px), url('../images/bg.jpg') no-repeat top center;
    background-size: 100%;
}
#wrapper {
    position: relative;
    max-width: 790px;
    margin: 1rem auto;
    background-color: #fff;
    overflow: hidden;
    padding: 0.75rem 1rem;
}
p {
    margin-bottom: 0.875rem;
}
h1 {
    margin: 0.375rem 0rem 0.625rem;
    font-size: 1.3125rem;
    line-height: 1.1em;
    color: #2883c9;
}
h1 span {
    font-size: 0.75rem;
    display: block;
    line-height: 1.25;
    margin-bottom: 0.25rem;
}
h1 span a {
    color: #0099b0 !important;
}
h1 + p i {
    color: #f56363;
}
h1 + p span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1rem;
}
h2 {
    font-size: 1rem;
    line-height: 1.5;
    padding: 2rem 0 1.25rem;
    color: #2883c9;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #2883c9;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0.5rem 0 0;
    margin-bottom: 0.625rem;
    list-style: none;
}
li {
    padding-left: 2.5rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.2rem;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
18% { left: 0%; }
36% { left: -100%; }
54% { left: -100%; }
62% { left: -200%; }
85% { left: -200%; }
100% { left: -300%; }
}

@keyframes slidy {
0% { left: 0%; }
18% { left: 0%; }
36% { left: -100%; }
54% { left: -100%; }
62% { left: -200%; }
85% { left: -200%; }
100% { left: -300%; }
}
.slider { 
    overflow: hidden; 
    margin-bottom: 1.75rem;
}
.slider figure img { 
    width: 25%; float: left; 
    border-radius: 16px;
}
.slider figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 30s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 30s slidy infinite; 
}
.logo > a {
    border: 1px solid rgba(220, 223, 226, 0.8);
    border-radius: 3px;
    width: 122px;
    height: 122px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.logo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
hr {
    border: 0;
    border-bottom: 1px solid #CFD6E7;
    margin: 1.875rem 0 0;
}
hr:last-of-type {
    margin-bottom: 2.125rem;
}
footer {
    padding: 0rem 0rem 0rem;
}
@media only screen and (max-width:789px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .logo :is(h1, p){
        text-align: center;
    }
    li {
        padding-left: 1.125rem;
    }
}