@charset "utf-8";
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v51-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v51-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font: 400 1em/1.5 'Roboto', Arial, sans-serif;
}

#wrapper {
  max-width: 800px;
  margin: 1rem auto;
  border: 1px solid #ccc;
  background-color: #fff;
  position: relative;
}

.logo {
  display: flex;
  justify-content: flex-end;
  padding: 3rem 5.9375rem;
}

@-webkit-keyframes slidy {
0% { left: 0%; }
10% { left: 0%; }
20% { left: -100%; }
25% { left: -100%; }
35% { left: -200%; }
40% { left: -200%; }
50% { left: -300%; }
55% { left: -300%; }
65% { left: -400%; }
70% { left: -400%; }
80% { left: -500%; }
90% { left: -500%; }
100% { left: -600%; }
}

@keyframes slidy {
0% { left: 0%; }
10% { left: 0%; }
20% { left: -100%; }
25% { left: -100%; }
35% { left: -200%; }
40% { left: -200%; }
50% { left: -300%; }
55% { left: -300%; }
65% { left: -400%; }
70% { left: -400%; }
80% { left: -500%; }
90% { left: -500%; }
100% { left: -600%; }
}
.slider { overflow: hidden; }
.slider figure img { width: 14.2857%; float: left; }
.slider figure { 
  position: relative;
  width:700%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 42s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 42s slidy infinite; 
}
article {
  padding: 3rem 5.9375rem 0;
}

footer {
  padding: 0 5.9375rem 4rem;
}

footer p img {
  position: relative;
  top: -4px;
}

.iframe-wrapper {
  width: 100%;
  position: relative;
  padding: 0 0 56.25%;
  height: 0;
  overflow: hidden;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

p {
  margin: 0 0 1rem;
}

strong {
  font-weight: 700;
}

h1 {
  margin: 0 0 1rem;
  font-weight: 400;
  font-size: 1.75em;
  line-height: 1.1;
  color: #4c94d8;
}

h1 small {
  font-size: 1.625rem;
  line-height: 1.15;
}

h2 {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.3;
  text-decoration: underline;
}

h3 {
  margin: 32px 0;
  font-weight: 700;
  font-size: 1.063em;
  line-height: 1.25;
}

ul {
  margin: 0 0 1rem;
  list-style: none;
}

ul li {
  padding-left: 1rem;
  margin: 0 0 6px;
}

li:before {
  content: '\2022';
  float: left;
  font-size: 20px;
  text-indent: -1rem;
  margin-top: -3px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
}

@media all and (max-width: 799px) {
  #wrapper {
    margin: 0;
    border: none;
  }

  .logo {
    padding: 1rem;
  }

  article {
    padding: 1rem 1rem 0;
  }

  footer {
    padding: 0 1rem 1rem;
  }

  :is(p, ul) {
    hyphens: auto;
    text-wrap: pretty;
  }

  :is(a, span) {
    white-space: nowrap;
  }

  br:not(footer br) {
    display: none;
  }
}