@charset "utf-8";

/* unna-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Unna';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/unna-v25-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/unna-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/unna-v25-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/unna-v25-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/unna-v25-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/unna-v25-latin-regular.svg#Unna') format('svg'); /* Legacy iOS */
}
/* unna-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Unna';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/unna-v25-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/unna-v25-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/unna-v25-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/unna-v25-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/unna-v25-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/unna-v25-latin-700.svg#Unna') format('svg'); /* Legacy iOS */
}

/* dm-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-sans-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/dm-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/dm-sans-v17-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/dm-sans-v17-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/dm-sans-v17-latin-regular.svg#DMSans') format('svg'); /* Legacy iOS */
}
/* dm-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/dm-sans-v17-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/dm-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/dm-sans-v17-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/dm-sans-v17-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/dm-sans-v17-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/dm-sans-v17-latin-700.svg#DMSans') format('svg'); /* Legacy iOS */
}

:root {
    font-size: 16px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link,a:visited,a:hover,a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap; 
}

p {
    margin: 0 0 20px;
}

h1, h2 {
    font-family: 'Unna', sans-serif;
}

h1 {
    text-align: center;
    font-size: 40px;
    line-height: 1.3;
    margin: 0 0 20px;
}

h2 {
    font-size: 25px;
    margin: 0 0 10px;
}

ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

header {
    border-top: solid 10px #60697A;
    display: flex;
    justify-content: center;
    padding: 16px;
}


article {
    padding: 30px;
    background: #60697A;
    color: #fff;
}

.btn {
    text-align: center;
    color: #fff;
    background: #2F3E58;
    border: solid 3px #2F3E58;
    border-radius: 5px;
    margin: 40px auto;
    padding: 8px 10px;
    font-size: 18px;
    font-weight: bold;
    width: 250px;
    display: block;
}

.btn:hover {
    background: transparent;
}

footer {
    background: #2F3E58;
    color: #fff;
    text-align: center;
    padding: 30px;
}

footer p {
    margin: 0
}


  @keyframes slidy { 
    0% { 
        left: 0%;
    }
    22% {
        left: 0%;
    }
    25% { 
        left: -100%;
    }
    47% {
        left: -100%;
    }
    50% { 
        left: -200%;
    }
    72% {
        left: -200%;
    }
    75% { 
        left: -300%;
    }
    97% {
        left: -300%;
    }
    100% {
        left: -400%;
    }
  }
  
  .slider {
    overflow: hidden;
  }
  
  .slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 24s slidy infinite;
  }
  
  figure img {
    width: 20%;
    float: left;
  }
    
.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    }

    .iframe-wrapper iframe {
        border:none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }


@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    
    article, footer {
        padding: 16px;
    }
}

@media only screen and (max-width: 510px) {
    h1 {
        font-size: 26px;
    }
    
    h2 {
        font-size: 20px;
    }
}