* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  background: none;
}

#wrapper {
  max-width: 860px;
  margin: 12px auto;
  background-color: #fff;
  overflow: hidden;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

@keyframes slidy {
  0% {
    left: 0;
  }

  28% {
    left: 0;
  }

  33% {
    left: -100%;
  }

  62% {
    left: -100%;
  }

  67% {
    left: -200%;
  }

  95% {
    left: -200%;
  }

  100% {
    left: -300%;
  }
}

#wrapper .nobr {
  white-space: nowrap;
}

#wrapper .slider {
  overflow: hidden;
}

#wrapper .slider figure img {
  width: 25%;
  display: inline-block;
}

#wrapper .slider figure {
  position: relative;
  width: 400%;
  margin: 0;
  left: 0;
  font-size: 0;
  animation: 15s slidy infinite;
}

#wrapper .box {
  background: #BEE8F8;
  padding: 15px 20px;
  margin-bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  border-radius: 0 0 10px 10px;
}

#wrapper .hide {
  display: none;
}

#wrapper .header {
  padding: 20px;
  display: flex;
  justify-content: center;
  border-top: 10px solid #5DC5ED;
}

#wrapper .article,
#wrapper .footer {
  padding: 0 50px;
}

#wrapper p {
  padding-bottom: 20px;
}

#wrapper p.pb-0 {
  padding-bottom: 0;
}

#wrapper h1 {
  margin: 20px 0;
  font-size: 32px;
  line-height: 1.1;
  color: #5DC5ED;
  text-align: center;
}

#wrapper h3 {
  padding: 6px 20px;
  font-size: 20px;
  line-height: 1.1;
  background: #5DC5ED;
  border-radius: 10px 10px 0 0;
}

#wrapper h4 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.1;
  color: #5DC5ED;
}

#wrapper a {
  color: #5DC5ED;
  text-decoration: none;
}

#wrapper ul {
  list-style: none;
}

#wrapper ul li {
  padding-left: 20px;
  position: relative;
}

#wrapper ul li:before {
  content: "\002022";
  color: #000;
  font-size: 25px;
  position: absolute;
  top: -3px;
  left: 0;
  line-height: 1;
}

#wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media all and (max-width: 859px) {
  #wrapper {
    margin: 8px;
    border: none;
  }

  #wrapper .article,
  #wrapper .footer {
    padding: 0 16px;
  }
}

@media all and (max-width: 499px) {
  #wrapper {
    font-size: 14px;
  }

  #wrapper h1 {
    font-size: 22px;
  }

  #wrapper h3 {
    font-size: 18px;
  }

  #wrapper .box {
    padding: 8px;
  }
}