body {
  font-family: "UniversCom", sans-serif;
  color: #444444;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}

a:hover {
  color: #999999;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "UniversCom", sans-serif;
}

.pt8 {
  padding-top: 8px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px;
}

@font-face {
  font-family: SenatDem;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SenatDem.eot");
}

@font-face {
  font-family: SenatDem;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SenatDem.ttf");
}

@font-face {
  font-family: UniversCom;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/UniversCom.eot");
}

@font-face {
  font-family: UniversCom;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/UniversCom.ttf");
}

/*** Seitenaufbau */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #06335c;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2d93ed;
  border-top-color: #095ca6;
  border-bottom-color: #095ca6;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*** Page Up Button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0078ff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #999999;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top-small {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0078ff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

/*** Header */
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background-color: #04294a;
  box-shadow: 0px 10px 20px rgb(66 57 48 / 24%);
}

#header.header-scrolled,
#header.header-inner-pages {
  background-color: #095ca6;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
}

/*** Navigation */
/* Desktop */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus,
.dropdown .dropdown-title,
.dropdown .dropdown-title:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: #efefef;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i,
.dropdown .dropdown-title i,
.dropdown .dropdown-title:focus i {
  font-size: 12px;
  text-decoration: none;
  line-height: 0;
  margin-left: 5px;
}

.dropdown-title {
  padding: 0 !important;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #398eed;
  text-decoration: none;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #4e4e4e;
}

.navbar .dropdown ul li a {
  padding: 5px 20px !important;
  font-size: 16px;
}

.navbar .dropdown ul li a:hover {
  color: #0d6efd !important;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: orange;
}

.navbar .dropdown ul a.first {
  padding: 2px 20px;
  font-size: 16px;
  text-transform: none;
  color: #4e4e4e;
}

@media (min-width: 768px) {
  a.first {
    /*font-size: 22px !important;*/
  }
}

.navbar .dropdown ul li ul a:hover,
.navbar .dropdown ul li ul li:hover > a {
  color: orange;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile */
.mobile-nav-toggle {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 41, 74, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile .mobile-dropdown-toggle {
  width: 100%;
  padding: 10px 20px;
  font-size: 26px;
  color: rgba(74, 50, 24);
  text-align: end;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 26px;
  color: rgba(74, 50, 24);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #398eed;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a.first {
  font-size: 22px !important;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*** Home */
.home {
  height: 100vh;
  position: relative;
  color: #fff;
}

.home .home-content {
  text-align: center;
  position: absolute;
}

.home .overlay-itro {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
}

.home .home-title {
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
}

@media (min-width: 768px) {
  .home .home-title {
    font-size: 4.5rem;
  }
}

.home .home-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .home .home-subtitle {
    font-size: 2.5rem;
  }
}

.home .text-slider-items {
  display: none;
}

.home-single {
  height: 350px;
}

.home-single .home-content {
  margin-top: 30px;
}

.home-single .home-title {
  text-transform: uppercase;
  font-size: 3rem;
}

@media (min-width: 768px) {
  .home-single .home-title {
    font-size: 3.5rem;
  }
}

.home-single .breadcrumb {
  background-color: transparent;
  color: #0078ff;
}

.home-single .breadcrumb .breadcrumb-item:before {
  color: #cde1f8;
}

.home-single .breadcrumb .breadcrumb-item.active {
  color: #cde1f8;
}

.home-single .breadcrumb a {
  color: #fff;
}

/*** Start */
#start {
  width: 100%;
  height: 100vh;
  background: #423930;
  background-image: url(../images/luzern-blau-dunkel.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 575px) {
  #start {
    /*  height: 160vh !important;*/
    height: 100% !important;
  }
}

#start .container {
  padding-top: 72px;
}

#start h1 {
  margin: 0 0 50px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#start h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 42px;
}

#start p {
  font-size: 18px;
  color: #ffffff;
}

#start .btn-get-started {
  font-family: "UniversCom", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#start .btn-get-started:hover {
  background: #209dd8;
}

#start .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#start .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#start .btn-watch-video:hover i {
  color: #47b2e4;
}

#start .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #start {
    height: 100% !important;
    text-align: center;
  }

  #start .animated {
    -webkit-animation: none;
    animation: none;
  }

  #start .hero-img {
    text-align: center;
  }

  #start .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #start h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #start h2 {
    font-size: 42px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  #start .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #start h2 {
    font-size: 42px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  #start .hero-img img {
    width: 80%;
  }

  #start .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }

  #start .mobile-display-none {
    display: none;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.start-icon {
  color: #fff;
}

.text-bold {
  text-shadow: 0px 0px 1px black;
}

.text-bold-white {
  text-shadow: 0px 0px 2px white;
}

/*** Sektionen */
section {
  padding: 60px 0;
  min-height: 100vh;
  overflow: hidden;
}

.start-div {
  margin-top: 100px;
}

#team,
#produkte,
#technologien {
  padding: 60px 0 260px 0;
  overflow: hidden;
}

#kontakt {
  padding: 60px 0 220px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title-home {
  text-align: center;
  padding-bottom: 30px;
}

.section-title {
  text-align: center;
  padding-bottom: 0;
}

.section-title h2 {
  font-size: 42px;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #423930;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #095ca6;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*** Produkte */
.title-box h2 {
  font-size: 42px;
}

.service-box {
  box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}

#produkte .title-box {
  margin-bottom: 2rem;
}

#produkte .nav-link {
  padding: 0.5rem 0rem;
}

a .service-box {
  background-color: #fff;
  padding: 2.5rem 1.3rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.service-box:hover .ico-circle {
  transition: all 500ms ease;
  color: #fff;
  background-color: #095ca6;
  box-shadow: 0 0 0 10px #cde1f8;
}

.service-box .service-ico {
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.service-box .service-ico a {
  color: #1e1e1e;
}

.service-box .ico-circle {
  transition: all 500ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-box .ico-circle i {
  line-height: 0;
  font-size: 40px;
}

.service-box .s-title {
  font-size: 1.4rem;
  color: #444444;
  text-align: center;
  padding: 0.4rem 0;
}

a.prod-box {
  color: #444444;
  text-decoration: none !important;
}

.service-box .s-description {
  color: #444444;
  height: 100px;
}

.service-h4 {
  padding-top: 15px;
  font-size: 24px;
  font-weight: bold;
}

.ico-circle {
  height: 80px;
  width: 80px;
  font-size: 2rem;
  border-radius: 50%;
  line-height: 1.55;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 0 10px #0f6eb5;
  display: block;
}

.product-link-list {
  padding-left: 0;
}

.product-link-list .product-link-title {
  font-size: 18px;
  list-style: none;
  padding: 0 !important;
}

.product-link-title {
  font-size: 18px;
  list-style: none;
  padding: 8px 0 0 0 !important;
}

.product-link {
  list-style: none;
}

a.product-link {
  font-size: 16px;
  padding: 0 0 0 10px;
}

a.product-link-big {
  font-size: 18px;
  color: #0d6efd;
  text-decoration: none;
}

a.product-link-big:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .service-items .col-md-4 {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .service-items .col-md-4 {
    width: 100%;
  }
}

.checklist .content ul {
  list-style: none;
  padding: 0;
}

.checklist .content ul li {
  font-size: 18px;
  padding-left: 28px;
  position: relative;
}

ul.product-link-list li {
  padding-left: 0 !important;
  position: relative;
}

.checklist .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #095ca6;
  line-height: 1;
}

.checklist .uplink,
.axendoSozial .uplink {
  text-decoration: none;
}

.checklist .uplink i,
.axendoSozial .uplink i {
  padding-right: 10px;
}

/*** Produkte */
.produkte p {
  font-size: 18px;
}

.produkte .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.produkte .content ul {
  list-style: none;
  padding: 0;
}

.produkte .content ul li {
  font-size: 18px;
  padding-left: 28px;
  position: relative;
}

.produkte .content ul li + li {
  margin-top: 10px;
}

.produkte .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: orange;
  line-height: 1;
}

.produkte .content ul ul li {
  padding-left: 56px;
  position: relative;
}

.produkte .content ul ul li + li {
  margin-top: 5px;
}

.produkte .content ul ul i {
  position: absolute;
  left: 28px;
  top: 2px;
  font-size: 20px;
  color: #888888;
  line-height: 1;
}

.produkte .content p:last-child {
  margin-bottom: 0;
}

/*** Kontaktformular */
#kontaktformular span.error {
  color: Red;
  text-decoration: underline;
}

#kontaktformular div.error {
  margin-left: 10px;
}

#kontaktformular input.error {
  border: 1px solid #ff9999;
  padding: 2px 1px;
}

.title-box-2 {
  margin-bottom: 2rem;
}

.title-left {
  font-size: 1.5rem;
  position: relative;
}

.title-left:before {
  content: "";
  position: absolute;
  height: 3px;
  background-color: #095ca6;
  width: 100px;
  bottom: -12px;
}

.footer-paralax {
  padding: 1rem 0 0 0;
  margin-bottom: 50px;
}

.contact-mf {
  margin-top: 0;
}

@media (min-width: 767px) {
  .contact-mf .box-pl2 {
    margin-top: 3rem;
    padding-left: 0rem;
  }
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.php-email-form input,
.php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: #0078ff;
}

.php-email-form input {
  padding: 1px 8px;
}

.php-email-form input.ckbox {
  margin-top: 2px;
}

.chkbox-title {
  padding: 0 0 0 2px;
}

.php-email-form textarea {
  padding: 1px 8px;
  margin-bottom: 0;
}

.php-email-form button[type="submit"] {
  background: #0078ff;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.php-email-form button[type="submit"]:hover {
  background: #999999;
}

.info-blau-grau {
  display: block;
  width: 189px;
  height: 18px;
  cursor: pointer;
  background: url(../images/mail-info-blau-grau.png) no-repeat;
}

.info-blau-grau:hover {
  background: url(../images/mail-info-blau-grau-hover.png) no-repeat;
}

.info-blau-weiss {
  display: block;
  width: 189px;
  height: 18px;
  cursor: pointer;
  background: url(../images/mail-info-blau-weiss.png) no-repeat;
  /* background-position: 2px 3px; */
}

.info-blau-weiss:hover {
  background: url(../images/mail-info-blau-weiss-hover.png) no-repeat;
  /* background-position: 2px 3px; */
}

.button {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 1rem;
  border-radius: 0.3rem;
  border: 1px solid transparent;
  transition: all 500ms ease;
  cursor: pointer;
}

.button:focus {
  outline: 0;
}

.button:hover {
  background-color: #0062d3;
  color: #fff;
  transition: all 500ms ease;
}

.button-a {
  text-decoration: none;
  background-color: #0078ff;
  color: #fff;
  border-color: #cde1f8;
}

.button-big {
  padding: 0.9rem 2.3rem;
  font-size: 1.2rem;
}

.button-rounded {
  border-radius: 2rem;
}

/*** Kontakt */
.kontakt p,
.kontakt a {
  font-size: 18px;
}

.kontakt h3 {
  font-size: 29px;
}

.kontakt .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.kontakt .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.kontakt .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.kontakt .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.kontakt .info .email p {
  padding-top: 5px;
}

.kontakt .info .social-links {
  padding-left: 60px;
}

.kontakt .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.kontakt .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.kontakt .info .email:hover i,
.kontakt .info .address:hover i,
.kontakt .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

#kontakt a.img-link {
  cursor: pointer;
}

#kontakt a.img-link img {
  vertical-align: middle;
  margin-bottom: 3px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*** Impressum */
.subtitle-dat {
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.subtitle-imp {
  font-size: 20px;
  margin-bottom: 2px !important;
}

.subtitle-imp2 {
  font-size: 24px;
  margin-bottom: 5px !important;
  margin-top: 25px;
  margin-bottom: 10px;
}

#impressum a.img-link img {
  vertical-align: middle;
  margin-bottom: 3px;
}

#impressum a.img-link {
  cursor: pointer;
}

#datenschutz a.img-link img {
  vertical-align: middle;
  margin-bottom: 3px;
}

#datenschutz a.img-link {
  cursor: pointer;
}

#datenschutz a.img-link img {
  vertical-align: middle;
  margin-bottom: 3px;
}

.indented {
  margin-left: 25px;
}

/*** Cookie Banner */
section.cookie {
  display: none;
}

.cookie-bg {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 700px;
  height: 150px;
  padding: 20px;
  background-color: rgb(255, 255, 255, 1);
}

@media (max-width: 768px) {
  .cookie-bg {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 330px;
    height: 240px;
    padding: 20px;
    background-color: rgb(255, 255, 255, 1);
  }

  .cookie-text {
    float: left;
    width: 290px !important;
  }

  .cookie-check {
    float: left !important;
    width: 190px !important;
    margin-left: 45% !important;
    cursor: pointer !important;
  }

  .cookie-bg p,
  .cookie-bg a {
    font-size: 16px !important;
  }

  .cookie-link {
    float: left;
    display: block;
  }
}

.cookie-text {
  float: left;
  display: block;
  width: 600px;
}

.cookie-check {
  float: right;
  display: block;
  width: 50px;
  cursor: pointer !important;
}

.cookie-link {
  float: left;
  display: block;
}

.cookie-bg p,
.cookie-bg a {
  font-size: 20px;
}

.cookie-bg i.bi-check-circle-fill {
  color: green;
  font-size: 40px;
}
