
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  font-size: 16px;
}

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: 48px 95px;
}

article {
  padding: 48px 95px 0;
}

footer {
  padding: 0 95px 64px;
}

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: 28px;
  line-height: 32px;
  color: #4c94d8;
}

h1 small {
  font-size: 26px;
  line-height: 30px;
}

h2 {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-decoration: underline;
}

h3 {
  margin: 32px 0;
  font-weight: 700;
  font-size: 17px;
  line-height: 23px;
}

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;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: #000;
  text-decoration: none;
}

@-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%; }
}
.slide { overflow: hidden; }
.slide figure img { width: 25%; float: left; }
.slide 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 all and (max-width: 798px) {
  #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;
  }
}