body {
  background-color: #f7f6f6;
  min-height: 100vh;
}
.header {
  color: #555;
  display: block;
  height: 150px;
  border-bottom: 1px solid #b9f2ff;
  background-color: #daf8ff;
}
.header .logo-container {
  display: inline-flex;
  margin: 25px 0;
  height: 100px;
}
.header .logo-container .logo {
  width: 100px;
  height: 100px;
  margin: 0 15px 0 0;
  display: inline-block;
}
.header .logo-container h1 {
  font-size: 34px;
  font-weight: bold;
  margin: 0;
  padding: 45px 0 0 0;
  display: inline-flex;
}
.header .schutzbox {
  float: right;
  margin: 10px 0;
}
.header .schutzbox img {
  height: 130px;
  padding: 10px;
}
.content {
  height: 100%;
}
.content h2 {
  margin: 30px 0;
  color: #555;
}
.content p {
  margin: 20px 0;
  color: #555;
}
.content .card-columns {
  margin: 60px 0;
}
.card {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
}
.card:first-child {
  margin-top: 0;
}
.card-header {
  background-color: transparent;
  border-bottom: 1px dotted #ddd;
  color: #555;
}
.card-header h3 i {
  float: right;
  font-size: 24px;
  margin: 6px 0;
  color: #555;
}
.btn {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}
.btn:first-child {
  margin-top: 0;
}
.btn:last-child {
  margin-bottom: 0;
}
.btn i {
  position: absolute;
  right: 45px;
  line-height: 26px;
  opacity: 0;
  transition: 300ms all ease-in-out;
}
.btn:hover i {
  opacity: 1;
  right: 35px;
}
footer {
  width: 100%;
  color: #ddd;
  position: relative;
  bottom: 0;
  line-height: 50px;
  margin: 0;
  background-color: gray;
  text-align: center;
  font-size: 12px;
}
footer p {
  margin: 0;
}
footer .footer-link {
  color: #ddd;
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .header .logo-container h1 {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header .logo-container h1 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .header .logo-container h1 {
	font-size: 24px;
    display: inline-block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
}
@media (min-width: 1200px) {

}
