@charset "UTF-8";
@font-face {
  font-family: "Jost";
  font-weight: 100 900;
  src: url(../../fonts/Jost/Jost-VariableFont_wght.ttf) format("truetype");
}
* {
  font-family: "Jost", sans-serif;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

/*1200px*/
/*992px*/
/*768px*/
/*576px*/
/*353px*/
@keyframes shadow-drop-2-center {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px);
    transform: translateZ(50px);
    -webkit-box-shadow: 0 0 20px 0px black;
    box-shadow: 0 0 20px 0px black;
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
/*Header*/
.header {
  height: 30rem;
  margin-top: 0rem;
  background-image: url("LogoSmal.jpg");
  /*#8F0E37*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
}

@media (max-width: 800px) {
  .header {
    height: 20rem;
    margin-top: 1px;
    background-position: center 60%;
    background-size: 50%;
  }
}
@media (max-width: 720px) {
  .header {
    height: 15rem;
    margin-top: 1px;
    background-position: center 60%;
    background-size: 50%;
  }
}
@media (max-width: 600px) {
  .header {
    height: 7rem;
    margin-top: 1px;
    background-position: center 65%;
    background-size: 50%;
  }
}
.header__list {
  z-index: 100;
  display: flex;
  justify-content: center;
  align-self: flex-start;
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #8F0E37;
  color: white;
  list-style: none;
  animation-name: shadow-drop-2-center;
  animation-duration: 2s;
  animation-delay: 0.25s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

.header__icon {
  vertical-align: middle;
  width: 3rem;
  height: 3rem;
  margin-top: auto;
  margin-bottom: auto;
  animation-name: rotate-center, header__navBar-size;
  animation-duration: 2s;
  animation-delay: 0.25s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

@media (max-width: 800px) {
  .header__icon {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 600px) {
  .header__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 400px) {
  .header__icon {
    position: absolute;
    visibility: hidden;
  }
}
.header__list--item {
  float: left;
  margin-left: 4rem;
  margin-right: 4rem;
}

@media (max-width: 1300px) {
  .header__list--item {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media (max-width: 1000px) {
  .header__list--item {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 800px) {
  .header__list--item {
    margin-left: 0.9rem;
    margin-right: 0.9rem;
  }
}
@media (max-width: 600px) {
  .header__list--item {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 500px) {
  .header__list--item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.header__list--item-link {
  font-size: 2rem;
  text-decoration: none;
  color: white;
  font-weight: inherit;
  animation-name: header__navBar-fontWeight;
  animation-duration: 2s;
  animation-delay: 0.25s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

.header__list--item-link:hover {
  transition: all 1s ease-in-out;
  text-decoration: underline;
}

@media (max-width: 800px) {
  .header__list--item-link {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .header__list--item-link {
    font-size: 1rem;
  }
}
@media (max-width: 350px) {
  .header__list--item-link {
    font-size: 0.8rem;
  }
}
@keyframes header__navBar-fontWeight {
  0% {
    font-weight: 100;
    color: rgba(255, 255, 255, 0);
  }
  100% {
    font-weight: 400;
    color: white;
  }
}
@keyframes header__navBar-size {
  0% {
    transform: scale(0%), rotate(0);
    color: rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(100%), rotate(360deg);
    color: white;
  }
}
.container {
  max-width: 100rem;
  margin: 0px auto;
  padding: 0 2.5rem;
}
.container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 23em) {
  .container {
    padding: 0 1rem;
  }
}

.container_background-red {
  background-color: #8F0E37;
}

.cookie {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: black;
  color: white;
  width: 100%;
  height: 12rem;
  z-index: 50;
  animation-name: showCookie;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  animation-fill-mode: both;
}
.cookie_container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie_container-info {
  width: 80%;
}
.cookie_container-heading {
  text-align: center;
  margin: 1rem auto;
}
.cookie_container-text {
  margin-left: 1rem;
}
.cookie_container-btn {
  margin: auto 0;
}
@media (max-width: 1300px) {
  .cookie_container-btn {
    margin: 2rem auto;
  }
}
.cookie_container-accept {
  align-self: center;
  text-decoration: none;
  color: lightgreen;
  border: 1px solid lightgreen;
  padding: 0.5rem 0.75rem;
  margin-left: 2rem;
}
@media (max-width: 740px) {
  .cookie_container-accept {
    margin-left: 0rem;
  }
}
.cookie_container-denie {
  align-self: center;
  text-decoration: none;
  color: #aa0000;
  border: 1px solid #aa0000;
  padding: 0.5rem 0.75rem;
  margin-left: 2rem;
}
@media (max-width: 1300px) {
  .cookie {
    height: 17rem;
  }
}
@media (max-width: 1000px) {
  .cookie {
    height: 20rem;
  }
}
@media (max-width: 740px) {
  .cookie {
    height: 22rem;
  }
}
@media (max-width: 690px) {
  .cookie {
    height: 23rem;
  }
}
@media (max-width: 555px) {
  .cookie {
    height: 25rem;
  }
}
@media (max-width: 444px) {
  .cookie {
    height: 27rem;
  }
}
@media (max-width: 395px) {
  .cookie {
    height: 32rem;
  }
}
@media (max-width: 300px) {
  .cookie {
    height: 35rem;
  }
}

@keyframes showCookie {
  0% {
    transform: translateY(20rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
.motivation {
  margin-top: 15rem;
}
@media (max-width: 1400px) {
  .motivation {
    margin-bottom: 15rem;
  }
}
@media (max-width: 48em) {
  .motivation {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.motivation__text {
  float: left;
  width: 25%;
  color: #565654;
  margin-top: 5rem;
  /*Look for txt-length*/
}
@media (max-width: 62em) {
  .motivation__text {
    width: 40%;
    font-size: 0.8rem;
    margin: 1rem 0;
  }
}
@media (max-width: 48em) {
  .motivation__text {
    width: 40%;
    margin: 9rem 0;
    font-size: 0.75rem;
  }
}
@media (max-width: 36em) {
  .motivation__text {
    width: 40%;
    margin: 6rem 0;
    font-size: 0.5rem;
  }
}

.motivation__text-headline {
  color: #1D1D1B;
  font-weight: 500;
  font-size: 2rem;
}
.motivation__text-headline::before {
  display: block;
  content: "";
  width: 5rem;
  height: 0.25rem;
  background-color: #bd1349;
  margin-bottom: 0.5rem;
}
@media (max-width: 62em) {
  .motivation__text-headline::before {
    width: 2.5rem;
  }
}
@media (max-width: 48em) {
  .motivation__text-headline::before {
    width: 2rem;
  }
}
@media (max-width: 62em) {
  .motivation__text-headline {
    font-size: 1rem;
  }
}
@media (max-width: 48em) {
  .motivation__text-headline {
    font-size: 0.8rem;
  }
}

.motivation__text-block {
  margin-top: 0.75rem;
}

.motivation_images {
  margin-top: -2rem;
  float: left;
  width: 75%;
  height: clamp(15rem, 30vw + 15rem, 55rem);
  position: relative;
}
@media (max-width: 62em) {
  .motivation_images {
    margin-bottom: 25%;
    width: 60%;
    height: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    filter: drop-shadow(10px 10px 15px black);
  }
}
@media (max-width: 48em) {
  .motivation_images {
    margin: 10rem 0;
    width: 50%;
    height: 15rem;
    justify-content: center;
    align-items: flex-end;
  }
}
@media (max-width: 36em) {
  .motivation_images {
    margin: 5rem 0;
    width: 50%;
    height: 15rem;
    align-items: flex-end;
  }
}

.motivation_images--image {
  position: absolute;
  box-shadow: 0 0 1rem black;
  filter: grayscale(50%);
  transform: scale(1);
  margin: 0.25rem 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 62em) {
  .motivation_images--image {
    position: inherit;
    box-shadow: none;
  }
}
.motivation_images--image--first {
  width: 65%;
  /*Größe dann zu Bild anpassen*/
  z-index: 0;
  right: 0;
}
@media (max-width: 62em) {
  .motivation_images--image--first {
    right: inherit;
    top: inherit;
    width: 60%;
  }
}
@media (max-width: 48em) {
  .motivation_images--image--first {
    right: inherit;
    top: inherit;
    width: 70%;
  }
}
.motivation_images--image--second {
  z-index: 1;
  width: 55%;
  right: 5%;
  top: 15rem;
}
@media (max-width: 62em) {
  .motivation_images--image--second {
    right: inherit;
    top: inherit;
    width: 60%;
  }
}
@media (max-width: 48em) {
  .motivation_images--image--second {
    right: inherit;
    top: inherit;
    width: 70%;
  }
}
.motivation_images--image--third {
  z-index: 2;
  width: 40%;
  right: 40%;
  top: 17rem;
}
@media (max-width: 62em) {
  .motivation_images--image--third {
    right: inherit;
    top: inherit;
    width: 60%;
  }
}
@media (max-width: 48em) {
  .motivation_images--image--third {
    right: inherit;
    top: inherit;
    width: 70%;
  }
}
@media (min-width: 990px) {
  .motivation_images--image:hover {
    z-index: 3;
    border: 0.33rem solid #bd1349;
    padding: 0.33rem;
    filter: grayscale(0%);
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
  }
}
@media (max-width: 990px) {
  .motivation_images--image:hover {
    z-index: 3;
    filter: grayscale(0%);
    transform: scale(2);
    transition: all 0.5s ease-in-out;
  }
}

.services {
  color: white;
  background-image: linear-gradient(180deg, #8f0e37, #940532);
  /*background-color: $color-primary-red;*/
}
.services_header {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 3rem;
  font-size: 2rem;
  filter: drop-shadow(10px 10px 15px black);
}
@media (max-width: 48em) {
  .services_header {
    font-size: 1.5rem;
  }
}
.services_containerCards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: space-evenly;
  flex-wrap: wrap;
  filter: drop-shadow(10px 10px 15px black);
}
.services_containerCards-card {
  position: relative;
  width: 19rem;
  height: 23rem;
  overflow: hidden;
  transition: all 1s ease-in-out;
  margin-top: 2rem;
}
.services_containerCards-card-image {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  object-fit: cover;
  transform: translateY(-2rem);
}
.services_containerCards-card-icon {
  background-color: #8F0E37;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem 0.5rem;
  width: 3rem;
  height: 3rem;
  color: white;
  display: block;
  transition: width 1s ease-in-out;
}
.services_containerCards-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem 1rem 0 1rem;
  transform: translateY(32%);
  transition: transform 1s ease-in-out;
}
.services_containerCards-card-content-headingtext {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  filter: drop-shadow(10px 10px 10px black);
}
.services_containerCards-card-content-headingtext::after {
  content: "";
  display: block;
  width: 10rem;
  height: 0.25rem;
  background-color: #8F0E37;
  margin-top: 0.75rem;
}
.services_containerCards-card-content-headingtextlong {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  transform: translateY(-1rem);
  filter: drop-shadow(10px 10px 10px black);
}
.services_containerCards-card-content-headingtextlong::after {
  content: "";
  display: block;
  width: 10rem;
  height: 0.25rem;
  background-color: #8F0E37;
  margin-top: 0.5rem;
}
.services_containerCards-card-content-text {
  color: black;
  max-width: 15rem;
  font-size: 1rem;
  padding-bottom: 2rem;
}
.services_containerCards-card:hover .services_containerCards-card-content {
  transition: all 1s ease-in-out;
  transform: translateY(0);
}
.services_containerCards-card:hover .services_containerCards-card-icon {
  transition: all 1s ease-in-out;
  width: 100%;
  padding: 0.5rem 0;
}
.services_containerCards-card:hover {
  transition: all 1s ease-in-out;
  z-index: 2;
  transform: scale(1.1);
  box-shadow: 0 0 15px black;
}
@media (min-width: 1600px) {
  .services {
    height: 65rem;
  }
}
@media (max-width: 1600px) {
  .services {
    height: 65rem;
  }
}
@media (max-width: 1300px) {
  .services {
    height: 95rem;
  }
}
@media (max-width: 991px) {
  .services {
    height: 120rem;
  }
}
@media (max-width: 691px) {
  .services {
    height: 220rem;
  }
}

.aboutme {
  margin: 5rem 0;
}
.aboutme_flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.aboutme_picture {
  width: 40%;
  background-color: white;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 100%;
  margin: 4rem 0;
  transition: transform 1s ease-in-out;
}
.aboutme_picture-pb {
  padding-top: 0.25rem;
  width: 100%;
  object-fit: cover;
  transform: scale(0.6);
}
@media (max-width: 48em) {
  .aboutme_picture {
    width: 50%;
    margin: 0rem 0;
  }
}
.aboutme_text {
  float: left;
  width: 30%;
  font-size: 1.5rem;
}
@media (max-width: 62em) {
  .aboutme_text {
    font-size: 0.75rem;
  }
}
@media (max-width: 48em) {
  .aboutme_text {
    font-size: 0.5rem;
  }
}
.aboutme_text-headline {
  margin-bottom: 1rem;
}
.aboutme_text-headline::before {
  content: "";
  display: block;
  background-color: #8F0E37;
  width: 5rem;
  height: 0.25rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 62em) {
  .aboutme_text-headline::before {
    width: 3.5rem;
  }
}
@media (max-width: 48em) {
  .aboutme_text-headline::before {
    height: 0.15rem;
    width: 2rem;
    margin-bottom: 0.1rem;
  }
}
@media (max-width: 62em) {
  .aboutme_text-headline {
    font-size: 1rem;
  }
}
@media (max-width: 48em) {
  .aboutme_text-headline {
    font-size: 0.75rem;
  }
}
@media (max-width: 62em) {
  .aboutme {
    margin: 5rem 0;
  }
}
@media (max-width: 48em) {
  .aboutme {
    margin: 2.5rem 0;
  }
}

.grid {
  background-color: #8F0E37;
  color: white;
  padding: 5rem 0;
}
.grid_header {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 5rem;
  filter: drop-shadow(0 0 15px black);
}
.grid_images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 20rem 20rem 20rem 20rem;
  /*grid-template-areas: 
                      "pfat pfat p1 p2 p3"
                      "pfat pfat p4 p5 p6";*/
  column-gap: 0;
}
@media (max-width: 1800px) {
  .grid_images {
    grid-template-rows: 18rem 18rem;
  }
}
@media (max-width: 1600px) {
  .grid_images {
    grid-template-rows: 16rem 16rem;
  }
}
@media (max-width: 1400px) {
  .grid_images {
    grid-template-rows: 14rem 14rem;
  }
}
@media (max-width: 75em) {
  .grid_images {
    grid-template-rows: 12rem 12rem;
  }
}
@media (max-width: 62em) {
  .grid_images {
    grid-template-rows: 10rem 10rem;
  }
}
@media (max-width: 48em) {
  .grid_images {
    grid-template-rows: 6rem 6rem;
  }
}
@media (max-width: 36em) {
  .grid_images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid_images-imagef {
  grid-column-end: span 2;
  grid-row-end: span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}
@media (min-width: 36em) {
  .grid_images-imagef:hover {
    transition: all 1s ease-in-out;
    transform: scale(1.2);
    z-index: 2;
    filter: drop-shadow(0 0 15px black);
  }
}
@media (max-width: 23em) {
  .grid_images-imagef {
    grid-column-end: span 2;
    grid-row-end: span 2;
  }
}
@media (max-width: 576px) {
  .grid_images-imagef-first {
    grid-row-start: 1;
    grid-column-end: span 2;
    grid-row-end: span 4;
  }
}
@media (max-width: 576px) {
  .grid_images-imagef-last {
    grid-row-start: 11;
    grid-column-end: span 2;
    grid-row-end: span 2;
  }
}
.grid_images-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}
@media (min-width: 36em) {
  .grid_images-image:hover {
    transition: all 1s ease-in-out;
    transform: scale(1.2);
    z-index: 2;
    filter: drop-shadow(0 0 15px black);
  }
}

.location {
  padding: 5rem 0;
  background-color: #8F0E37;
  color: white;
  filter: drop-shadow(0 0 15px black);
}
.location_heading {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 1235px) {
  .location_heading {
    margin-bottom: 1rem;
  }
}
.location_map-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.location_map-container-info {
  float: left;
  text-align: center;
}
.location_map-container-info-heading1 {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
}
@media (max-width: 1400px) {
  .location_map-container-info-heading1 {
    text-align: center;
  }
}
.location_map-container-info-heading2 {
  margin-top: 2rem;
}
@media (max-width: 1400px) {
  .location_map-container-info-heading2 {
    text-align: center;
  }
}
.location_map-container-info-text {
  font-size: 1.25rem;
}
@media (max-width: 1400px) {
  .location_map-container-info-text {
    text-align: center;
  }
}
@media (max-width: 1400px) {
  .location_map-container-info {
    display: block;
    margin: 3rem auto;
  }
}
.location_map-container-map {
  margin-top: 2rem;
  height: 400px;
  width: 100%;
}
.location_map-container-map-none {
  height: 400px;
  display: block;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid;
}
.location_map-container-map-none-link {
  color: blue;
}

.impdat {
  position: relative;
  top: 5rem;
  height: 5rem;
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  text-align: center;
  font-size: 1.1rem;
}
.impdat-imp {
  margin-right: 20rem;
  text-decoration: none;
  color: white;
}
@media (max-width: 570px) {
  .impdat-imp {
    margin-right: 5rem;
  }
}
.impdat-dat {
  text-decoration: none;
  color: white;
}

.contact {
  padding: 20rem 0;
}
.contact_heading {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 5rem;
}
.contact_information {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #8F0E37;
  color: white;
  padding: 2rem 0px;
  width: 100%;
}
.contact_information-container-kontakt {
  padding: 0 2rem;
  text-align: center;
}
.contact_information-container-kontakt-heading {
  letter-spacing: 0.5rem;
}
.contact_information-container-kontakt-heading::before {
  content: "";
  display: block;
  width: 4rem;
  height: 0.25rem;
  background-color: #8F0E37;
  margin-top: 0.75rem;
}
.contact_information-container-termin {
  padding: 0 2rem;
  text-align: center;
}
.contact_information-container-termin-heading {
  letter-spacing: 0.5rem;
}
.contact_information-container-termin-heading::before {
  content: "";
  display: block;
  width: 4rem;
  height: 0.25rem;
  background-color: #8F0E37;
  margin-top: 0.75rem;
}
.contact_price {
  margin: 0 auto;
  padding-top: 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "tl tr" "bl br";
  justify-items: start;
  align-items: stretch;
  column-gap: 0rem;
  row-gap: 0rem;
}
.contact_price-container {
  width: 18vw;
}
@media (max-width: 940px) {
  .contact_price-container {
    width: 100%;
  }
}
.contact_price-Portrai {
  justify-self: end;
  padding: 1rem;
  grid-area: tl;
  border-right: 2px solid #8F0E37;
  border-bottom: 2px solid #8F0E37;
}
@media (max-width: 940px) {
  .contact_price-Portrai {
    width: 100%;
    align-self: center;
  }
  .contact_price-Portrai-Heading {
    text-align: right;
  }
  .contact_price-Portrai-Desc-ul {
    list-style-type: none;
    text-align: right;
  }
  .contact_price-Portrai-Desc-ul-li {
    width: 100%;
  }
}
.contact_price-Kinder {
  border-bottom: 2px solid #8F0E37;
  border-left: 2px solid #8F0E37;
  padding: 1rem;
  grid-area: tr;
}
.contact_price-Passbilder {
  justify-self: end;
  border-top: 2px solid #8F0E37;
  border-right: 2px solid #8F0E37;
  padding: 1rem;
  grid-area: bl;
}
@media (max-width: 940px) {
  .contact_price-Passbilder {
    width: 100%;
    border-top: none;
    align-self: center;
  }
  .contact_price-Passbilder-Heading {
    text-align: right;
  }
  .contact_price-Passbilder-Desc {
    text-align: right;
  }
}
.contact_price-Bewerbung {
  border-top: 2px solid #8F0E37;
  border-left: 2px solid #8F0E37;
  padding: 1rem;
  grid-area: br;
}
@media (max-width: 940px) {
  .contact_price-Bewerbung {
    width: 100%;
  }
}
@media (max-width: 940px) {
  .contact_price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    margin: 0 0;
  }
}
@media (max-width: 940px) {
  .contact {
    padding: 5rem 0;
  }
}

/*
&::before{
                display: block;
                content: "";
                width: 100%;
                height: 2px;
                text-align: left;
                background-color: $color-primary-red;
                margin-bottom: 2rem;
            }*/
.news {
  width: 100%;
  height: 100rem;
}
.news_header {
  margin-top: 5rem;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  text-align: center;
}
.news_block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 0 15px black;
  margin: 5rem auto;
  border: 1px solid #8F0E37;
  border-radius: 0.5rem;
  width: 70%;
  padding: 0 2.5rem;
}
.news_block-imagecontainer {
  width: 45%;
  margin: 2.5rem 2.5rem 2.5rem 0;
}
.news_block-imagecontainer-image {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .news_block-imagecontainer {
    width: 100%;
    object-fit: contain;
    margin: 2.5rem;
  }
}
@media (max-width: 400px) {
  .news_block-imagecontainer {
    width: 100%;
    object-fit: contain;
    margin: 1rem;
  }
}
.news_block-textcontainer {
  width: 45%;
  margin: 2.5rem 0rem 2.5rem 0rem;
}
.news_block-textcontainer-heading {
  display: inline-block;
  width: 100%;
  text-align: center;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .news_block-textcontainer-heading {
    font-size: 0.75rem;
    margin: 0 auto;
    letter-spacing: 0.15rem;
  }
}
.news_block-textcontainer-heading::after {
  content: "";
  display: block;
  width: 8rem;
  background-color: #8F0E37;
  height: 0.25rem;
  margin: 1rem auto 1rem auto;
}
@media (max-width: 700px) {
  .news_block-textcontainer-heading::after {
    width: 100%;
    margin: 1rem 0 1rem 0;
  }
}
.news_block-textcontainer-text {
  text-align: center;
}
@media (max-width: 700px) {
  .news_block-textcontainer-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 1200px) {
  .news_block-textcontainer {
    width: 100%;
    margin: 2.5rem;
  }
}
@media (max-width: 450px) {
  .news_block-textcontainer {
    width: 100%;
    margin: 1rem;
  }
}
@media (max-width: 650px) {
  .news_block {
    width: 70%;
    padding: 0;
  }
}

.login {
  height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login_header {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.login_data-username {
  margin: 0 1rem;
}
.login_data-button {
  display: block;
  text-decoration: none;
  color: black;
  border: 1px solid black;
  border-radius: 2rem;
  padding: 0.15rem 1rem;
  margin-top: 1rem;
  text-align: center;
  width: 7rem;
  margin-left: auto;
}
.login_data-button:hover {
  transition: all 1s ease-in-out;
  background-color: #dfdfdf;
}

.admActions {
  padding: 5rem 0;
}
.admActions_heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 5rem;
}
.admActions_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.admActions_container-setNew-heading {
  margin-bottom: 2rem;
  width: 32.5rem;
  font-size: 1.5rem;
}
.admActions_container-setNew-desc {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.admActions_container-setNew-btn {
  border: 1px solid black;
  padding: 0.25rem 2rem;
  border-radius: 20px;
  text-decoration: none;
  color: black;
}
.admActions_container-delete {
  margin-top: 5rem;
}
.admActions_container-delete-id {
  width: 32.5rem;
  font-size: 1.5rem;
}

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