main .content {
  height: 100vh;
  align-content: center;
}
main .content img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  height: 600px;
  max-width: 100%;
}
main .content h1 {
  color: rgb(218, 31, 161);
  text-align: center;
  font-weight: 800;
  font-size: 40px;
}
main .content .main-text {
  font-size: 20px;
  color: rgb(218, 31, 161);
  margin-top: 20px;
}
main .content .main-text p {
  text-align: center;
}
main .imprint, main .privacy {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  main .imprint, main .privacy {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}

/*** White and Black Color Variables ***/
/*** Primary Color Variables ***/
/*** Gray Color Variables ***/
* {
  font-family: "Quicksand";
}

.absolute-nav {
  position: fixed;
  z-index: 2;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0px 5px rgba(8, 25, 165, 0.3);
}

.blue-stripe {
  background-color: #0819A5;
  display: none;
}
@media (min-width: 992px) {
  .blue-stripe {
    display: block;
  }
}
.blue-stripe .content {
  display: flex;
  justify-content: end;
  padding: 9px 20px;
}
.blue-stripe .content a {
  text-decoration: none;
}
.blue-stripe .content p {
  color: white;
  margin-bottom: 0;
  font-size: 18px;
}
.blue-stripe .content p:last-child {
  margin-left: 60px;
}

nav .content img {
  max-height: 40px;
}
@media (min-width: 992px) {
  nav .content img {
    max-height: 60px;
  }
}
nav .content .custom {
  align-items: center;
}
nav .content .navbar-toggler:focus {
  box-shadow: none;
}
nav .main-navigation {
  justify-content: end;
}
nav .main-navigation ul.padding-nav {
  padding: 20px 0px;
}
nav .main-navigation ul li {
  width: fit-content;
  margin-left: 0;
  margin-top: 17px;
}
@media (min-width: 992px) {
  nav .main-navigation ul li {
    width: auto;
    margin-left: 30px;
    margin-top: 0;
  }
}
nav .main-navigation ul li:first-child {
  margin-left: 0;
}
nav .main-navigation ul li:hover {
  background-color: #0819A5;
  border-radius: 21px;
  transition: background-color 0.8s ease-in-out;
}
nav .main-navigation ul li:hover a.nav-link {
  color: white;
}
nav .main-navigation ul li.active {
  background-color: #0819A5;
  border-radius: 21px;
}
nav .main-navigation ul li.active a.nav-link {
  color: white;
}
nav .main-navigation ul li a.nav-link {
  font-size: 21px;
  color: #0819A5;
  border-radius: 21px;
  padding: 2px 15px;
  width: fit-content;
}
@media (min-width: 992px) {
  nav .main-navigation ul li a.nav-link {
    padding: 5px 20px !important;
    margin-top: 0;
  }
}
nav .main-navigation ul li a.nav-link:focus {
  color: white;
  background-color: #0819A5;
}
nav .main-navigation ul li a.nav-link:active {
  color: white;
}

* {
  font-family: "Quicksand";
}

footer {
  font-size: 21px;
  color: #0819A5;
  background-color: #EFEFEF;
}
@media (min-width: 1770px) {
  footer .container {
    max-width: 1450px;
  }
}
footer .content {
  padding-top: 120px;
  padding-bottom: 120px;
}
footer .footer-logo img {
  max-height: 40px;
}
@media (min-width: 992px) {
  footer .footer-logo img {
    max-height: 60px;
  }
}
footer .footer-content {
  margin-top: 20px;
}
footer .footer-content a {
  text-decoration: underline;
  color: rgb(218, 31, 161);
}
footer .footer-content a:hover {
  text-decoration: none;
}
footer .footer-content .footer-links a {
  text-decoration: none;
  color: #0819A5;
}
footer .footer-content .footer-links ul {
  display: grid;
  justify-content: space-between;
}
@media (min-width: 768px) {
  footer .footer-content .footer-links ul {
    display: flex;
  }
}
footer .footer-content .footer-links ul li {
  list-style: none;
}
footer .footer-content .footer-links ul li a {
  padding-left: 0;
}
footer .footer-content .footer-menu {
  padding-left: 0;
}
@media (min-width: 992px) {
  footer .footer-content .footer-menu {
    padding-left: 32px;
  }
}

@media (min-width: 1770px) {
  .swiper .container {
    max-width: 1450px;
  }
}
.swiper .container-size {
  height: 100%;
}
.swiper .container-size .slides {
  position: relative;
}
.swiper .container-size .slides img {
  width: 100%;
  object-position: center;
  object-fit: cover;
  height: 50vh;
}
@media (min-width: 576px) {
  .swiper .container-size .slides img {
    height: 60vh;
  }
}
@media (min-width: 1200px) {
  .swiper .container-size .slides img {
    height: 100vh;
  }
}
.swiper .container-size .slides .desktop {
  background-color: transparent;
  position: absolute;
  bottom: 70px;
  max-width: 400px;
}
@media (min-width: 992px) {
  .swiper .container-size .slides .desktop {
    display: flex;
    background-color: #DA1FA1;
    border-radius: 35px;
    bottom: 140px;
    max-width: 100%;
  }
}
.swiper .container-size .slides .desktop span.mobil {
  color: white;
  font-weight: 500;
  background-color: #DA1FA1;
  border-radius: 35px;
  padding: 5px 40px;
  font-size: 31px;
}
@media (min-width: 992px) {
  .swiper .container-size .slides .desktop span.mobil {
    font-size: 42px;
    background-color: transparent;
    border-radius: 0;
  }
  .swiper .container-size .slides .desktop span.mobil:first-child {
    padding-right: 10px;
  }
  .swiper .container-size .slides .desktop span.mobil:nth-child(2) {
    padding-left: 0;
  }
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background: white;
  opacity: unset;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #DA1FA1;
}

.navbar-toggler {
  width: 26px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: unset;
  outline: unset;
  box-shadow: unset;
  background: unset;
}
.navbar-toggler span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background-color: #0819a5;
  position: absolute;
  width: 100%;
  left: 0;
  transition: all 0.25s ease-in-out;
}
.navbar-toggler span:nth-child(1) {
  top: 0;
}
.navbar-toggler span:nth-child(2) {
  top: 9px;
}
.navbar-toggler span:nth-child(3) {
  top: 9px;
}
.navbar-toggler span:nth-child(4) {
  top: 18px;
  width: 70%;
}
.navbar-toggler.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
.navbar-toggler.open span:nth-child(2) {
  transform: rotate(45deg);
}
.navbar-toggler.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.navbar-toggler.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

@media (min-width: 1770px) {
  .image-header .container {
    max-width: 1450px;
  }
}
.image-header .header-container-size {
  max-height: 400px;
}
@media (min-width: 992px) {
  .image-header .header-container-size {
    max-height: 1000px;
  }
}
.image-header .header-container-size .header-image {
  position: relative;
}
.image-header .header-container-size .header-image img {
  width: 100%;
  object-position: center;
  object-fit: cover;
  max-height: 400px;
}
@media (min-width: 992px) {
  .image-header .header-container-size .header-image img {
    max-height: 1000px;
  }
}
.image-header .header-container-size .container-text {
  position: relative;
}
.image-header .header-container-size .container-text .header-desktop {
  background-color: transparent;
  position: absolute;
  bottom: 70px;
  max-width: 400px;
}
@media (min-width: 992px) {
  .image-header .header-container-size .container-text .header-desktop {
    display: flex;
    background-color: #DA1FA1;
    border-radius: 35px;
    bottom: 140px;
    max-width: 100%;
  }
}
.image-header .header-container-size .container-text .header-desktop span.header-mobil {
  color: white;
  font-weight: 500;
  background-color: #DA1FA1;
  border-radius: 35px;
  padding: 5px 30px;
  font-size: 31px;
}
@media (min-width: 992px) {
  .image-header .header-container-size .container-text .header-desktop span.header-mobil {
    font-size: 42px;
    background-color: transparent;
    border-radius: 0;
  }
  .image-header .header-container-size .container-text .header-desktop span.header-mobil:first-child {
    padding-right: 10px;
  }
  .image-header .header-container-size .container-text .header-desktop span.header-mobil:nth-child(2) {
    padding-left: 0;
  }
}
.image-header .header-container-size .container-text .header-desktop span.header-padding:first-child {
  padding-right: 30px;
}

.elementor-shortcode .wpcf7 form.wpcf7-form label {
  display: grid;
  color: #0819A5;
  font-family: "Quicksand";
  font-size: 21px;
  margin-bottom: 18px;
}
.elementor-shortcode .wpcf7 form.wpcf7-form label span input {
  width: 100%;
  border-radius: 21px;
  border: 1px solid #0819A5;
}
.elementor-shortcode .wpcf7 form.wpcf7-form label span input:focus-visible {
  border: 1px solid #DA1FA1;
  outline: none;
}
.elementor-shortcode .wpcf7 form.wpcf7-form label span textarea {
  width: 100%;
  max-height: 230px;
  border-radius: 21px;
  border: 1px solid #0819A5;
}
.elementor-shortcode .wpcf7 form.wpcf7-form label span textarea:focus-visible {
  border: 1px solid #DA1FA1;
  outline: none;
}
.elementor-shortcode .wpcf7 form.wpcf7-form input.wpcf7-submit {
  width: 100%;
  padding: 8px 85px;
  border: none;
  border-radius: 21px;
  color: white;
  background-color: #0819A5;
}
@media (min-width: 576px) {
  .elementor-shortcode .wpcf7 form.wpcf7-form input.wpcf7-submit {
    width: fit-content;
  }
}

/*# sourceMappingURL=main.css.map */
