nav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  background: #ffffff;
  border-bottom: 0.4rem solid #e40f0a;
}
nav a {
  z-index: 999;
  cursor: pointer;
}
nav a img {
  margin: 1rem;
  height: 3.5rem;
  transform: scale(4);
  transition: 250ms;
  margin-left: 2.5rem;
}
nav .menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
nav .menu-list li a {
  font-size: calc(0.6rem + 0.35vw);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: 250ms;
}
nav .menu-list li a:hover {
  color: #e40f0a;
}
nav .menu-list li:last-of-type a {
  color: #fff;
  background: #e40f0a;
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: 3px solid #e40f0a;
  transition: 250ms;
}
nav .menu-list li:last-of-type a:hover {
  background: none;
  color: #000;
}
nav .menu-list.open {
  position: fixed;
  top: 5.6rem;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0;
  padding: 2rem 0 0 0;
}
nav .menu-list.open li a {
  font-size: calc(1.5rem + 0.7vw);
}
nav .burger {
  z-index: 999;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
nav .burger svg {
  color: #000;
  transition: all 250ms ease-in-out;
}
nav .burger svg .top,
nav .burger svg .middle,
nav .burger svg .bottom {
  transition: all 250ms ease-in-out;
}
nav .burger svg.open .top {
  transform: rotate(45deg);
  transform-origin: center;
  y: 4.5px;
}
nav .burger svg.open .middle {
  opacity: 0;
}
nav .burger svg.open .bottom {
  transform: rotate(-45deg);
  transform-origin: center;
  y: 6px;
}

@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }
  nav .menu-list {
    display: none;
  }
  nav .burger {
    display: flex;
  }
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1f1f1f;
  padding: 3rem 5rem;
}
footer .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  width: 100%;
}
footer .content .block {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .content .block .title {
  font-weight: 700;
}
footer .content .block p,
footer .content .block a {
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: calc(0.7rem + 0.4vw);
}
footer .content .block a {
  cursor: pointer;
}
footer .content .block a:hover {
  text-decoration: underline;
}
footer .content .block .email {
  color: #e40f0a;
}
footer .content .block .menu-item-cookie span button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: calc(0.7rem + 0.4vw);
  font-weight: 400;
}
footer .content .block .menu-item-cookie span button:hover {
  text-decoration: underline;
}
footer .content .block .menu-item-cookie span button:focus, footer .content .block .menu-item-cookie span button:active {
  outline: none;
  --brlbs-tw-ring-offset-shadow: none;
  --brlbs-tw-ring-shadow: none;
}
footer .divider {
  height: 1px;
  width: 100%;
  background-color: #fff;
  margin: 2rem 0;
  opacity: 0.2;
}
footer .copyright p {
  text-align: center;
  color: #fff;
  font-size: calc(0.6rem + 0.35vw);
}
footer .copyright p a {
  color: #e40f0a;
  text-decoration: none;
  font-size: calc(0.6rem + 0.35vw);
  font-weight: 700;
}
footer .copyright p a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  footer {
    padding: 3rem 2rem;
  }
  footer .content {
    flex-direction: column;
    gap: 2rem;
  }
}
.error {
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 5rem;
  gap: 2rem;
}
.error h1,
.error p {
  margin: 0;
}
.error h1 {
  color: #000;
  font-size: calc(1.5rem + 0.7vw);
  font-weight: 700;
}
.error p {
  text-align: center;
  font-size: #6e6e6e;
  font-size: calc(0.7rem + 0.4vw);
}

@media (max-width: 1024px) {
  .error {
    padding: 5rem 2rem;
  }
}
.btn {
  background: none;
  border: 2px solid #000;
  border-radius: 0.5rem;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin: 0;
  background: linear-gradient(to right, #e40f0a, #e40f0a) left/0% 100% no-repeat;
  transition: background-size 250ms, color 250ms, border-color 250ms;
  cursor: pointer;
}
.btn:hover {
  color: #fff;
  border-color: #e40f0a;
  background-size: 100% 100%;
}

.btn-dark {
  background: none;
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin: 0;
  background: linear-gradient(to right, #1f1f1f, #1f1f1f) left/0% 100% no-repeat;
  transition: background-size 250ms, color 250ms, border-color 250ms;
  cursor: pointer;
}
.btn-dark:hover {
  color: #fff;
  border-color: #1f1f1f;
  background-size: 100% 100%;
}

.btn-primary {
  background: none;
  border: 2px solid #e40f0a;
  border-radius: 0.5rem;
  color: #e40f0a;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin: 0;
  background: linear-gradient(to right, #ffffff, #ffffff) left/0% 100% no-repeat;
  transition: background-size 250ms, color 250ms, border-color 250ms;
  cursor: pointer;
}
.btn-primary:hover {
  color: #000;
  border-color: #ffffff;
  background-size: 100% 100%;
}

.hero-default {
  background: #1f1f1f;
  flex-direction: column;
  height: 40vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-default .titles {
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: baseline;
}
.hero-default .titles h2,
.hero-default .titles h1 {
  margin: 0;
  background: #e40f0a;
  font-size: calc(1.5rem + 0.7vw);
  color: #fff;
  text-transform: uppercase;
  padding: 1rem;
}
.hero-default .titles h2 {
  font-weight: 300;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.hero-default .titles h1 {
  font-weight: 700;
  position: relative;
  left: 2rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.impressum-datenschutz {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.impressum-datenschutz h1 {
  font-size: calc(1.5rem + 0.7vw);
  font-weight: 700;
  color: #000;
}
.impressum-datenschutz .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.impressum-datenschutz .content h2 {
  margin: 0;
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 700;
  color: #000;
}
.impressum-datenschutz .content .block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.impressum-datenschutz .content .block p {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  font-size: calc(0.6rem + 0.35vw);
  color: #000;
}
.impressum-datenschutz .content .block p a {
  color: #e40f0a;
  text-decoration: none;
}
.impressum-datenschutz .content .block p a:hover {
  text-decoration: underline;
}
.impressum-datenschutz .content .block .title {
  font-weight: 700;
}
.impressum-datenschutz .content .block ul li {
  font-size: calc(0.6rem + 0.35vw);
  color: #000;
}

.hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: -1rem;
  margin-bottom: -1.3rem;
  height: 100vh;
  background: #1f1f1f;
}
.hero img {
  object-fit: cover;
  object-position: 20% 50%;
  height: 100%;
  width: 100%;
  clip-path: ellipse(100% 60% at 50% 40%);
}

@media (max-width: 1024px) {
  .hero {
    border-bottom: 0.4rem solid #e40f0a;
  }
  .hero img {
    clip-path: ellipse(100% 70% at 50% 50%);
  }
}
.ueber {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  background: #1f1f1f;
  padding: 3rem 5rem;
}
.ueber .titles {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: baseline;
}
.ueber .titles h1,
.ueber .titles h2 {
  margin: 0;
  background: #ffffff;
  color: #000;
  padding: 1rem;
}
.ueber .titles h1 {
  font-weight: 300;
  font-size: calc(1.5rem + 0.7vw);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.ueber .titles h2 {
  font-weight: 700;
  font-size: calc(1.2rem + 0.6vw);
  position: relative;
  left: 2rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.ueber p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b3b3b3;
  width: 65%;
}

@media (max-width: 1024px) {
  .ueber {
    padding: 3rem 2rem;
    flex-direction: column;
  }
  .ueber .titles,
  .ueber p {
    width: 100%;
  }
}
.startseite-services {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.startseite-services .service {
  display: flex;
  gap: 4rem;
}
.startseite-services .service .content {
  width: 50%;
}
.startseite-services .service .img {
  width: 50%;
}
.startseite-services .service .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.startseite-services .service .content {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 1.5rem;
}
.startseite-services .service .content h2,
.startseite-services .service .content h3,
.startseite-services .service .content p {
  margin: 0;
}
.startseite-services .service .content h2 {
  font-size: calc(1.2rem + 0.6vw);
  font-weight: 700;
  color: #000;
}
.startseite-services .service .content h3 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 400;
  color: #000;
}
.startseite-services .service .content p {
  color: #6e6e6e;
  font-size: calc(0.7rem + 0.4vw);
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .startseite-services {
    padding: 3rem 2rem;
    flex-direction: column;
  }
  .startseite-services .service {
    flex-direction: column;
  }
  .startseite-services .service .content,
  .startseite-services .service .img {
    width: 100%;
  }
}
.kontakt {
  background: #e40f0a;
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.kontakt h2,
.kontakt h3,
.kontakt p {
  margin: 0;
  text-align: center;
}
.kontakt h2 {
  font-size: calc(1.5rem + 0.7vw);
  color: #fff;
  font-weight: 700;
}
.kontakt h3 {
  font-size: calc(0.9rem + 0.5vw);
  color: #fff;
  font-weight: 400;
}
.kontakt p {
  font-size: calc(0.7rem + 0.4vw);
  color: #fff;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .kontakt {
    padding: 3rem 2rem;
  }
}
.galerie {
  columns: 300px;
  padding: 3rem 5rem;
}
.galerie img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

@media (max-width: 1024px) {
  .galerie {
    padding: 3rem 2rem;
  }
}
.kontakt-form {
  background: #1f1f1f;
  padding: 3rem 5rem;
  display: flex;
}
.kontakt-form .content,
.kontakt-form form {
  width: 50%;
}
.kontakt-form .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt-form .content h2,
.kontakt-form .content p {
  margin: 0;
}
.kontakt-form .content p {
  font-size: calc(0.7rem + 0.4vw);
  color: #fff;
}
.kontakt-form .content h2 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 700;
  color: #fff;
}
.kontakt-form .content .block {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5rem;
}
.kontakt-form .content .block .title {
  font-weight: 700;
}
.kontakt-form .content .block a {
  color: #fff;
  font-size: calc(0.7rem + 0.4vw);
  text-decoration: none;
  cursor: pointer;
}
.kontakt-form .content .block a:hover {
  text-decoration: underline;
}
.kontakt-form .content .block .email {
  color: #e40f0a;
}
.kontakt-form form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt-form form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kontakt-form form .field label {
  font-size: calc(0.7rem + 0.4vw);
  color: #fff;
}
.kontakt-form form .field label span {
  color: #e95252;
}
.kontakt-form form .field input,
.kontakt-form form .field textarea {
  background: none;
  border: 1px solid #6e6e6e;
  padding: 1rem;
  font-size: calc(0.7rem + 0.4vw);
  color: #fff;
}
.kontakt-form form .field input:focus,
.kontakt-form form .field textarea:focus {
  outline: none;
  border: 1px solid #e40f0a;
}
.kontakt-form form .field input:-webkit-autofill,
.kontakt-form form .field textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: text;
}
.kontakt-form form .field .checkbox span {
  color: #fff;
  font-size: calc(0.7rem + 0.4vw);
}
.kontakt-form form .field .checkbox span a {
  color: #e40f0a;
  text-decoration: none;
}
.kontakt-form form .field .checkbox span a:hover {
  text-decoration: underline;
}
.kontakt-form form #loading {
  display: none;
  border: 0.5rem solid #f0f0f0;
  border-top: 0.5rem solid #e40f0a;
  border-radius: 50%;
  width: 0.3rem;
  height: 0.3rem;
  animation: spin 2s linear infinite;
}
.kontakt-form form .messages #sucess_message,
.kontakt-form form .messages #error_message {
  display: none;
  font-size: calc(0.6rem + 0.35vw);
}
.kontakt-form form .messages #error_message {
  color: #e95252;
}
.kontakt-form form .messages #sucess_message {
  color: #90ee90;
}

@media (max-width: 1024px) {
  .kontakt-form {
    flex-direction: column;
    gap: 2rem;
  }
  .kontakt-form .content,
  .kontakt-form form {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .kontakt-form {
    background: #1f1f1f;
    padding: 3rem 2rem;
  }
}
.leistungen {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}
.leistungen h2 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 400;
  color: #000;
}
.leistungen .leistung {
  display: flex;
  width: 100%;
}
.leistungen .leistung .img {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.leistungen .leistung .img svg {
  padding: 3rem;
  background: #e40f0a;
  border-radius: 30%;
  color: #fff;
}
.leistungen .leistung .content {
  width: 70%;
}
.leistungen .leistung .content h3 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 600;
  color: #000;
}
.leistungen .leistung .content p {
  font-size: calc(0.7rem + 0.4vw);
  font-weight: 400;
  color: #000;
}

@media (max-width: 1024px) {
  .leistungen {
    padding: 3rem 2rem;
  }
  .leistungen .leistung {
    flex-direction: column;
    gap: 2rem;
  }
  .leistungen .leistung .img,
  .leistungen .leistung .content {
    width: 100%;
  }
}
.services {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}
.services h2 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 400;
  color: #000;
}
.services h3 {
  font-size: calc(0.7rem + 0.4vw);
  font-weight: 400;
  color: #fff;
  padding: 1rem 2rem;
  background: #e40f0a;
  border-radius: 0.5rem;
}
.services .service {
  display: flex;
  width: 100%;
}
.services .service .img {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .service .img svg {
  padding: 3rem;
  background: #e40f0a;
  border-radius: 30%;
  color: #fff;
}
.services .service .content {
  width: 70%;
  display: flex;
  justify-content: baseline;
  align-items: center;
}
.services .service .content h4 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 600;
  color: #000;
}

@media (max-width: 1024px) {
  .services {
    padding: 3rem 2rem;
  }
  .services .service {
    flex-direction: column;
    gap: 2rem;
  }
  .services .service .img,
  .services .service .content {
    width: 100%;
    justify-content: center;
  }
}
.kontakt-main {
  padding: 3rem 5rem;
  display: flex;
}
.kontakt-main .content,
.kontakt-main form {
  width: 50%;
}
.kontakt-main .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt-main .content h2,
.kontakt-main .content p {
  margin: 0;
}
.kontakt-main .content p {
  font-size: calc(0.7rem + 0.4vw);
  color: #000;
}
.kontakt-main .content h2 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 700;
  color: #000;
}
.kontakt-main .content .block {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5rem;
}
.kontakt-main .content .block .title {
  font-weight: 700;
}
.kontakt-main .content .block a {
  color: #000;
  font-size: calc(0.7rem + 0.4vw);
  text-decoration: none;
  cursor: pointer;
}
.kontakt-main .content .block a:hover {
  text-decoration: underline;
}
.kontakt-main .content .block .email {
  color: #e40f0a;
}
.kontakt-main form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt-main form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kontakt-main form .field label {
  font-size: calc(0.7rem + 0.4vw);
  color: #000;
}
.kontakt-main form .field label span {
  color: #e95252;
}
.kontakt-main form .field input,
.kontakt-main form .field textarea {
  background: none;
  border: 1px solid #6e6e6e;
  padding: 1rem;
  font-size: calc(0.7rem + 0.4vw);
  color: #000;
}
.kontakt-main form .field input:focus,
.kontakt-main form .field textarea:focus {
  outline: none;
  border: 1px solid #e40f0a;
}
.kontakt-main form .field input:-webkit-autofill,
.kontakt-main form .field textarea:-webkit-autofill {
  -webkit-text-fill-color: #000;
  -webkit-background-clip: text;
}
.kontakt-main form .field .checkbox span {
  color: #000;
  font-size: calc(0.7rem + 0.4vw);
}
.kontakt-main form .field .checkbox span a {
  color: #e40f0a;
  text-decoration: none;
}
.kontakt-main form .field .checkbox span a:hover {
  text-decoration: underline;
}
.kontakt-main form #loading {
  display: none;
  border: 0.5rem solid #f0f0f0;
  border-top: 0.5rem solid #e40f0a;
  border-radius: 50%;
  width: 0.3rem;
  height: 0.3rem;
  animation: spin 2s linear infinite;
}
.kontakt-main form .messages #sucess_message,
.kontakt-main form .messages #error_message {
  display: none;
  font-size: calc(0.6rem + 0.35vw);
}
.kontakt-main form .messages #error_message {
  color: #e95252;
}
.kontakt-main form .messages #sucess_message {
  color: #90ee90;
}

@media (max-width: 1024px) {
  .kontakt-main {
    padding: 3rem 2rem;
    flex-direction: column;
    gap: 2rem;
  }
  .kontakt-main .content,
  .kontakt-main form {
    width: 100%;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.kontakt-maps {
  display: flex;
  padding: 3rem 5rem;
}
.kontakt-maps .map,
.kontakt-maps .content {
  width: 50%;
}
.kontakt-maps .map iframe {
  width: 100%;
  height: 100%;
}
.kontakt-maps .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.kontakt-maps .content h2 {
  margin: 0;
  font-size: calc(0.9rem + 0.5vw);
  color: #1f1f1f;
}

@media (max-width: 1024px) {
  .kontakt-maps {
    padding: 3rem 2rem;
    flex-direction: column;
    gap: 2rem;
  }
  .kontakt-maps .map,
  .kontakt-maps .content {
    width: 100%;
  }
}
.neuigkeiten {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.neuigkeiten .neuigkeit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.neuigkeiten .neuigkeit img {
  width: 30%;
  height: 100%;
  border-radius: 0.5rem;
}
.neuigkeiten .neuigkeit .content {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0.5rem;
}
.neuigkeiten .neuigkeit .content h3,
.neuigkeiten .neuigkeit .content p {
  margin: 0;
}
.neuigkeiten .neuigkeit .content h3 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 700;
  color: #000;
}
.neuigkeiten .neuigkeit .content p {
  font-size: calc(0.6rem + 0.35vw);
  font-weight: 400;
  color: #000;
}
.neuigkeiten .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.neuigkeiten .pagination .page-numbers {
  padding: 1rem 1.5rem;
  background: #1f1f1f;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: calc(0.5rem + 0.3vw);
  font-weight: 700;
  text-transform: uppercase;
  transition: 250ms;
}
.neuigkeiten .pagination .page-numbers:hover {
  background: #e40f0a;
}
.neuigkeiten .pagination .current {
  background: #e40f0a;
}

@media (max-width: 1024px) {
  .neuigkeiten {
    padding: 3rem 2rem;
  }
  .neuigkeiten .neuigkeit {
    flex-direction: column;
  }
  .neuigkeiten .neuigkeit img,
  .neuigkeiten .neuigkeit .content {
    width: 100%;
  }
}
.neuigkeiten-single {
  padding: 6rem 5rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.neuigkeiten-single img {
  width: 100%;
  height: 30%;
  border-radius: 0.5rem;
  object-fit: cover;
}
.neuigkeiten-single .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: baseline;
}
.neuigkeiten-single .content h1 {
  margin: 0;
  font-size: calc(1.5rem + 0.7vw);
  color: #000;
}
.neuigkeiten-single .content .text {
  font-size: calc(0.6rem + 0.35vw);
  color: #6e6e6e;
}

@media (max-width: 1024px) {
  .neuigkeiten-single {
    padding: 6rem 2rem;
  }
}
.jobs {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.jobs .job {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.jobs .job img {
  width: 30%;
  height: 100%;
  border-radius: 0.5rem;
}
.jobs .job .content {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 1rem;
}
.jobs .job .content h3,
.jobs .job .content p {
  margin: 0;
}
.jobs .job .content h3 {
  font-size: calc(0.9rem + 0.5vw);
  font-weight: 700;
  color: #000;
}
.jobs .job .content p {
  font-size: calc(0.6rem + 0.35vw);
  font-weight: 400;
  color: #000;
}
.jobs .job .content .actions {
  display: flex;
  gap: 2rem;
}
.jobs .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.jobs .pagination .page-numbers {
  padding: 1rem 1.5rem;
  background: #1f1f1f;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: calc(0.5rem + 0.3vw);
  font-weight: 700;
  text-transform: uppercase;
  transition: 250ms;
}
.jobs .pagination .page-numbers:hover {
  background: #e40f0a;
}
.jobs .pagination .current {
  background: #e40f0a;
}

@media (max-width: 1024px) {
  .jobs {
    padding: 3rem 2rem;
  }
  .jobs .job {
    flex-direction: column;
  }
  .jobs .job img,
  .jobs .job .content {
    width: 100%;
  }
}
.jobs-single {
  padding: 6rem 5rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.jobs-single .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: baseline;
}
.jobs-single .content h1 {
  margin: 0;
  font-size: calc(1.5rem + 0.7vw);
  color: #000;
}
.jobs-single .content .text h2 {
  font-size: calc(0.9rem + 0.5vw);
  color: #000;
}
.jobs-single .content .text p {
  font-size: calc(0.6rem + 0.35vw);
  color: #000;
}
.jobs-single .content .actions {
  display: flex;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .jobs-single {
    padding: 6rem 2rem;
  }
}
.benefits {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.benefits .titles {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 1rem;
}
.benefits .titles h2 {
  font-size: calc(1.5rem + 0.7vw);
  color: #000;
}
.benefits .benefit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}
.benefits .benefit h3 {
  width: 40%;
  text-align: center;
  text-transform: uppercase;
  font-size: calc(1.2rem + 0.6vw);
}
.benefits .benefit p {
  width: 60%;
  font-size: calc(0.6rem + 0.35vw);
}
.benefits .benefit:nth-child(even) {
  background: rgb(242, 241, 241);
}

@media (max-width: 1024px) {
  .benefits {
    padding: 3rem 2rem;
  }
  .benefits .benefit {
    flex-direction: column;
  }
  .benefits .benefit h3,
  .benefits .benefit p {
    width: 100%;
  }
}
body {
  margin: 0;
  padding: 4.3rem 0 0 0;
  overflow-x: hidden;
}

* {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

*::selection {
  background-color: #e40f0a;
  color: #fff;
}

img {
  pointer-events: none;
}

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