* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  background: none;
  font-family: "Titillium Web", Arial, sans-serif;
  color: #212121;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}

#wrapper {
  max-width: 900px;
  margin: 16px auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
  background-color: #fff;
  overflow: hidden;
}

#wrapper .slider-wrap {
  max-width: 100%;
  width: auto;
  height: auto;
  position: relative;
}

#wrapper .slideshow {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}

#wrapper .slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  animation: slideshow 12s linear 0s infinite;
}

#wrapper .slideshow img:nth-child(2) {
  z-index: 2;
  animation-delay: 4s;
}

#wrapper .slideshow img:nth-child(3) {
  z-index: 1;
  animation-delay: 8s;
}

#wrapper .slideshow img:nth-child(4) {
  z-index: -1;
  animation-delay: 12s;
}

@keyframes slideshow {
  25% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  91.66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#wrapper .mySlides {
  display: none;
}

#wrapper .color {
  color: #00497f;
}

#wrapper .hide {
  display: none;
}

#wrapper .block {
  display: block;
}

#wrapper .nobr {
  white-space: nowrap;
}


#wrapper .logo {
  padding: 20px 40px;
}


#wrapper article {
  padding: 70% 40px 20px;
}


#wrapper p {
  margin-bottom: 16px;
}

#wrapper strong {
  font-weight: 700;
}

#wrapper h1 {
  margin: 20px -40px;
  font-size: 28px;
  font-weight: 700;
  background: #00497f;
  padding: 20px 40px;
  text-align: center;
  color: #fff;
}

#wrapper h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #00497f;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
  color: #00497f;
  text-decoration: none;
}

#wrapper ul {
  margin: 0 0 20px 15px;
  list-style: none;
}

#wrapper ul li {
  padding-left: 21px;
  position: relative;
}

#wrapper ul li:before {
  content: "\2022";
  font-size: 22px;
  font-family: Arial, sans-serif;
  position: absolute;
  top: 0px;
  line-height: 1;
  left: 0;
}

#wrapper img {
  max-width: 100%;
  vertical-align: middle;
}

#wrapper .bew_button {
  background: #00497f;
  color: #fff;
  border-radius: 5px;
  padding: 8px 15px;
}

#wrapper .bew_button:is(a:link, a:visited, a:hover, a:active) {
  color: #fff;
  text-decoration: none;
}

#wrapper :hover.bew_button {
  color: #fff;
}

#wrapper .spec {
  text-align: center;
  margin: 25px 0px;
}

@media (max-width: 899px) {
  #wrapper {
    margin: 0;
    box-shadow: none;
  }

  #wrapper :is(p, ul) {
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  #wrapper .logo {
    padding: 16px;
  }

  #wrapper .block {
    display: inline-block;
  }
}

@media (max-width: 499px) {
  #wrapper ul {
    margin-left: 0;
  }

  #wrapper .logo {
    display: flex;
    justify-content: center;
  }
}
