body {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 14px;
}

@media (min-width: 1600px) {
.container {
    max-width: 1420px!important;
}
}

/* Slides */
.mySlides {
  display: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.vertical-center {
  min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

html {
  scroll-behavior: smooth;
}

.dienstleistungen {
  margin-bottom: 20px;
}

#site-header{
  height:350px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  #site-header{
    height:200px;
  }
}

@media (min-width: 768px) {
  .footer-text {
    text-align: right;
  }
}

.btn-blue {
  background-color: #29abe2;
  border: none;
  color: #ffffff;
}

.btn-blue:hover {
  background-color: #2e3192;
  border: none;
  color: #ffffff;
}

.btn-outline-light:hover {
  color: #2e3192;
}

a {
  color: #29abe2;
}

a:focus, a:hover {
  color: #2e3192;
  text-decoration: none;
}

h1 {
  font-size: 28px;
  font-style: normal;
  color: #2e3192;
  margin-bottom: 20px;
}

h2 {
  font-size: 17px;
  font-style: normal;
  color: #2e3192;
}

h3 {
  font-size: 15px;
  font-style: normal;
  color: #2e3192;
}

h4 {
  font-size: 14px;
  font-style: oblique;
  color: #000000;
}

.card-img-top {
  margin-top: 20px;
}

.card {
  margin-bottom: 30px;
  border: none;
  -webkit-box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
}

.btn-dark {
  color: #ffffff;
  background-color: #29abe2;
  border: none;
}

.btn-dark:hover {
  background-color: #2e3192;
}

.dropdown-item {
  font-size: 14px;
}

.dropdown-item:hover {
  color: #2e3192;
}

.nav-link {
  color: #000000;
  font-size: 16px;
}

.nav-link:hover {
  color: #2e3192;
}

.nav-link.active {
  color: #29abe2;
}

.custom-toggler.navbar-toggler {
    border-color: rgb(46, 49, 146);
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(46, 49, 146)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.footer {
  background-color: #2e3192;
  padding: 24px;
  color: #ffffff;
}

.footer a {
  color: #29abe2;
}

.footer a:hover {
  color: #ffffff;
}

.dropdown .active {
  background-color: #e84e0f;
}

.style2 {
  background-color: #ffffff;
  border-bottom: 1px solid #2e3192;
}

.logo {
	position: absolute;
    width: 100px;
}

.card {
  padding: 0;
}

.box{
  box-model: border-box;
  border: 10px solid transparent;
  background-clip:padding-box;
}


@media (min-width: 34em) {
    .card-columns {
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }
}

@media (min-width: 48em) {
    .card-columns {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
    }
}

@media (min-width: 62em) {
    .card-columns {
        -webkit-column-count: 3;
           -moz-column-count: 3;
                column-count: 3;
    }
}

.referenzen {
  max-height: 120px;
  margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.disclaimer-footer {
  text-align: right;
}

@media (max-width: 768px) {
.disclaimer-footer {
  text-align: left;
}
}
