@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');
}

: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: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, #f2fafb 800px), url('../images/bg_body.jpg') no-repeat, #F3F3F3;
    hyphens: auto;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    padding: 1rem 2rem;
}

p {
    padding-bottom: 1rem;
}

p img,
p span.mr {
    margin-right: 0.5rem;
}

strong,
h2 {
    font-weight: 700;
}

h1,
h2 {
    color: #4096ee;
}

h1 {
    margin: 0 0 .625rem;
    font-size: 1.7em;
    line-height: 1.3;
    font-weight: 400;
}

h2 {
    font-size: 1.133em;
    line-height: 1.3;
    border-top: 2px solid #CFD6E7;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

:is(a:link, a:hover, a:visited, a:active) {
    color: #4096ee;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    padding: 0 0 1.5rem;
    list-style: none;
}

ul li {
    padding-left: 2rem;
}

ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}

.slider {
    overflow: hidden;
    border-radius: 30px;
    margin: 2rem 0;
    position: relative;
}

.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}

.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}


@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    body {
        background: none;
    }

    p :is(a, span) {
        display: inline-block;
    }

    h1 {
        font-size: 1.5em;
    }

    .logo {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }

    ul li {
        padding-left: 1rem;
    }
}