/* remove turnkey-credit on development server */
#turnkey-credit {
    display: none;
}

/* Actual style */

@font-face {
  font-family: "Lato";
  src: url("/fonts/Lato/Lato-Regular.ttf") format('truetype');
}

@font-face {
  font-family: "OpenSans";
  src: url("/fonts/Open_Sans/OpenSans-Regular.ttf") format('truetype');
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto/Roboto-Regular.ttf") format('truetype');
}

@font-face {
  font-family: "Cantarell";
  src: url("/fonts/Cantarell/Cantarell-Regular.ttf") format('truetype');
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #fff;
  font-family: "Cantarell";
}

a {
  color: #333;
}

h1 {
  font-size: 200%;
  font-weight: bold;
  font-family: "Roboto";
}

p {
  font-size: 16px;
  line-height: 25px;
}

ul {
  list-style-position: inside;
  padding: 0;
  max-width: 550px;
  margin: auto;
}

#content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#main {
  width: 91%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#header {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

#header_image_container {
  /*height: 220px; */
  width: 100%;
}

#header_image {
  display: block;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  min-height: 90px;
  padding-top: 10%;
  background-image: url("/images/az.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 600px) {
  #header_image {
    width: 90%;
  }
}

#header_nav {
  box-sizing: border-box;
  width: 100%;
  line-height: 40px;
  text-align: center;
  overflow: hidden;
}

#header_nav > a {
  margin: 5px 10px 5px 10px;
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

#backtotop {
  position: fixed;
  right: 25px;
  bottom: -80px;
  transition: bottom 0.5s ease 0s;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  z-index: 900;
}

#backtotop > svg {
  width: 100%;
  height: 100%;
}

#backtotop.btt_visible {
  bottom: 25px;
}

#kontakt {
  box-sizing: border-box;
  width: 100%;
  background-color: #333333;
  color: #fff;
  /*height: 200px;*/
  padding: 20px 0 20px 0;
  margin-top: 40px;
  text-align: center;
}

#kontakt > a {
  color: inherit;
}

#footer_legal {
  box-sizing: border-box;
  width: 100%;
  line-height: 40px;
  font-size: 100%;
  padding-right: 20px;
  text-align: right;
}

.contentblock {
  border-top: 2px solid #333333;
  margin-top: 40px;
  padding-top: 10px;
  width: 100%
}

.contentblock > h1 {
  text-transform: uppercase;
  margin: 40px 0 30px 0;
  /*word-break: break-word;*/
  overflow: hidden;
}

.contentblock > h3 {
  margin: 30px 0 10px 0;
}


