* {
  /* margin: 0; */
  /* padding: 0; */
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif !important;
  margin: 0;
  /* min-height: 100vh; */
}

:root {
  --nav-height: 70px;
  --main-accent: #21283f;
  --grey-accent: #3a3a3a;
  --white-accent: #ffffff;
  --contact-anim-small: 70px;
  --contact-anim-dist-small: 50px;
  --contact-anim-medium: 100px;
  --contact-anim-dist-medium: 180px;
  --contact-anim-large: 100px;
  --contact-anim-dist-large: 300px;
  --contact-anim-Xlarge: 100px;
  --contact-anim-dist-Xlarge: 500px;

  --anim-left-move: translate(-50px);
  --anim-right-move: translate(50px);
  --anim-op: 0;
  --anim-speed: all 0.6s ease-out;
}

.frame:not(#frame-home) {
  margin-top: var(--nav-height);
  display: none;
}


.grey {
  color: var(--grey-accent);
}

.frame {
  opacity: 1;
  transition: 0.5s all ease;
}

.frame-cover {
  opacity: 0.2;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.md-200 {
  font-size: 200px;
}

.white {
  color: var(--white-accent);
}

.b-blue {
  background-color: var(--main-accent);
}

.subheading {
  margin: 2rem;
}

section {
  overflow: hidden;
}

.move-left {
  opacity: var(--anim-op);
  transform: var(--anim-left-move);
  transition: var(--anim-speed);
}

.move-right {
  opacity: var(--anim-op);
  transform: var(--anim-right-move);
  transition: var(--anim-speed);
}

.std-font-family {
  font-family: 'Montserrat', sans-serif !important;
}

.info-text {
  margin: 0 2rem 2rem 2rem;
  max-width: 70ch;
  line-height: 28px;
}

.p24 {
  font-size: 24px;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.visible {
  transform: translate(0px) !important;
  opacity: 1 !important;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.row {
  flex-direction: row;
}

.col {
  flex-direction: column;
}

.flex-even {
  justify-content: space-evenly;
  align-items: center;
}

.blue {
  color: var(--main-accent);
}

.text-center {
  text-align: center;
}

p {
  font-size: 16px;
}


/*------------------------- DROPDOWN ------------------------- */

.dropdown-container {
  position: absolute;
  width: 200px;
  opacity: 0;
  left: 0;
  top: 0;
  background-color: var(--main-accent);
}

.dropdown-container li {
  list-style: none;
  margin: 1rem 1rem;
}

.dropdown-rent {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  color: var(--white-accent);
  transition: 0.3s ease;
  position: sticky;
}


/*------------------------- NAVBAR ------------------------- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 10;
}

.nav__logo {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  display: flex;
  cursor: pointer;
}

.nav__logo img {
  height: 20px;
  width: 20px;
  transform: scale(3);
}

.nav__logo__img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.nav__logo__name {
  display: none;
  font-size: 1rem;
}

.nav__links {
  overflow-x: auto;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.nav__links li {
  display: table-cell;
  position: relative;
  list-style: none;
  margin: 0rem 2rem;
}

nav a {
  display: inline-block;
  color: var(--white-accent);
  text-decoration: none;
  font-size: 16px;
}

nav a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

nav a:hover:after {
  width: 100%;
  left: 0;
}

.nav__burger div {
  width: 40px;
  height: 3px;
  margin: 5px;
  background-color: var(--white-accent);
  transition: all 0.3s ease;
}

.nav__burger {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
}

.shift .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.shift .line2 {
  opacity: 0;
}

.shift .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav--srolled {
  transition: 0.5s ease;
  background-color: var(--main-accent);
}

.nav--sroll {
  transition: 0.5s ease;
  background-color: transparent;
}

@media screen and (max-width: 1000px) {
  body {
    overflow-x: hidden;
  }

  .nav__links {
    position: fixed;
    height: calc(100vh - var(--nav-height));
    top: var(--nav-height);
    right: 0;
    background-color: var(--main-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }

  .nav__links li {
    opacity: 0;
    transform: translateX(50px);
    margin: 2rem 0;
  }

  .nav__burger {
    display: block;
  }
}

.nav--active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  form {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/*-------------------------------------------------------------- */
/*------------------------- FRAME HOME ------------------------- */
/*-------------------------------------------------------------- */

#frame-home>section:not(:first-child) {
  margin-top: 5rem;
}

/*------------------------- HERO ------------------------- */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('./images/hero_image.jpg');
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero__name {
  color: var(--white-accent);
  font-size: 1.5rem;
}

.hero__logo img {
  height: 200px;
  width: 200px;
}

/*------------------------- SHOWCASE ------------------------- */
.showcase__box {
  height: 10rem;
  width: 14rem;
  margin: 2rem 0rem;
  perspective: 600px;
}

.showcase a {
  text-decoration: none;
  border: 2px solid var(--white-accent);
  border-radius: 5px;
  width: 10rem;
  height: 3rem;
}

.card {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.card__face {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1rem;
  background-color: var(--main-accent);
}

.card__face--back {
  transform: rotateY(180deg);
}

.card--flipped {
  transform: rotateY(180deg);
}

/*------------------------- NEWS ------------------------- */
.news {
  background-color: var(--main-accent);
  color: var(--white-accent);
  padding: 5rem 0;
}

.news__container {
  max-width: 1200px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news__divider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news__feed {
  padding: 1.5rem;
  margin-bottom: 1rem;
  max-width: 70ch;
}

.images {
  flex-direction: column;

}

.news__img {
  margin: 1rem 0;
}

.news__img img {
  transform: scale(1.5);
  margin: 4rem 0;
  height: 200px;
}

/*------------------------- QUALIFICATION ------------------------- */
.qualification__single {
  padding: 2rem 2rem;
  opacity: var(--anim-op);
  transform: var(--anim-left-move);
  transition: var(--anim-speed);
}

.qualification__text {
  max-width: 40ch;
}

.qualification__icon {
  padding: 1rem;
}



/*------------------------- NUMBERS ------------------------- */
.numbers {
  background-color: var(--main-accent);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  padding: 3rem 0;
}

.numbers__single {
  color: var(--white-accent);
  padding-bottom: 2rem;
  font-size: 3rem;
}

.number {
  margin-bottom: 2rem;
}




/*------------------------- TIMELINE ------------------------- */

.steps-container {
  flex-direction: column;
}


.step {
  position: relative;
  border: 1px solid black;
  border-radius: 50%;
  height: var(--contact-anim-small);
  width: var(--contact-anim-small);

}

.step p {
  font-size: 24px;
}

.step-text {
  margin-left: 1rem;
  width: 200px;

}

.step-spacer {
  height: var(--contact-anim-dist-small);
}


.step-line {
  position: absolute;
  border: 1px solid black;
  top: 100%;
  left: 50%;
  height: var(--contact-anim-dist-small);
}

/*---------------------------------------------------------------- */
/*------------------------- FRAME IMMOSELL ------------------------- */
/*---------------------------------------------------------------- */
#frame-properties>section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/*---------------------------------------------------------------- */
/*------------------------- FRAME RENT ------------------------- */
/*---------------------------------------------------------------- */
#frame-rent>section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}







/*---------------------------------------------------------------- */
/*------------------------- ABOUT US ----------------------------- */
/*---------------------------------------------------------------- */

#frame-about-us>section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/*------------------------- HEADER ------------------------- */

.members header {
  padding-top: 2rem;
}

.member {
  padding-top: 4rem;
}

.member img {
  width: 280px;
  height: 60vh;
  min-height: 400px;
  max-height: 500px;
  background-color: grey;
  object-fit: cover;
}

.member__info {
  margin: 1rem;
}

.member--name {
  font-size: 1.5rem;
}

.member--pos {}


/*---------------------------------------------------------------- */
/*------------------------- FRAME CONTACT ------------------------ */
/*---------------------------------------------------------------- */

#frame-contact>section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/*------------------------- HEADER ------------------------- */

.contact-steps {
  background-color: var(--main-accent);
  width: 90%;
  margin: 1rem 0;
}

.contact-steps__spacer {
  width: var(--contact-anim-dist-small);
}

.single-step {
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--white-accent);
  width: var(--contact-anim-small);
  height: var(--contact-anim-small);
  opacity: 0;
  transform: translateX(-50px);
}

.single-step__line-container {
  display: inline-block;
  position: absolute;
  left: 100%;
  top: 50%;
  width: var(--contact-anim-dist-small);
  transform: translateY(-50%);
  overflow: hidden;
}

.single-step__line {
  border: 1px solid var(--white-accent);
  width: var(--contact-anim-dist-small);
  transform: translateX(calc(var(--contact-anim-dist-small) * -1));
}

.single-step__cover {
  background-color: inherit;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes contactLineFade {
  form {
    opacity: 0;
    transform: translateX(calc(var(--contact-anim-dist-small) * -1));
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes contactStepFade {
  form {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}


/*------------------------- FORMULAR ------------------------- */

.contact-formular header {
  padding: 3rem 0;
}


.contact-formular__sheet {
  padding-bottom: 3rem;
}


.contact-formular__info a {
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 2rem;
}


.contact-formular__infos img {
  width: 280px;
  height: 40vh;
  min-height: 400px;
  max-height: 500px;
  background-color: grey;
  object-fit: cover;
  margin-bottom: 2rem;
}

.contact-formular__sheet input {
  border: none;
  appearance: none;
  background-color: #f2f2f2;
  padding: 0.5rem;
  border-radius: 3px;
  width: 250px;
  font-size: 1rem;
  outline: none;
  margin: 0 0 2rem 0;
}

.contact-formular__sheet input:focus {
  border: 1px solid var(--main-accent);
}

.contact-formular__sheet input:focus::placeholder {
  color: transparent;
}

.contact-formular__sheet input::placeholder {
  color: var(--main-accent);
  transition: 0.3s ease;
}

.textarea-container {
  border: none;
  outline: none;
  width: 250px;
  padding: 10px;
  margin: 0 0 2rem 0;
  background-color: #f2f2f2;
}

.contact-formular .btn {
  border: 2px solid var(--main-accent);
  border-radius: 5px;
  color: var(--main-accent);
  background-color: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  height: 3rem;
  width: 12rem;
}

textarea {
  border: none;
  outline: none;
  resize: none;
  width: 100%;
  font-size: 1rem;
  padding-right: 10px;
  background-color: #f2f2f2;
}

.contact-formular__sheet:focus {
  border: 1px solid var(--main-accent);
}

.contact-formular__sheet textarea:focus::placeholder {
  color: transparent;
}

.contact-formular__sheet textarea::placeholder {
  color: var(--main-accent);
  transition: 0.3s ease;
}

textarea::-webkit-scrollbar {
  width: 3px;
}

textarea::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px var(--white-accent);
  -webkit-box-shadow: inset 0 0 10px var(--white-accent);
}

textarea::-webkit-scrollbar-thumb {
  background-color: var(--main-accent);
}



.contact-formular__sheet label {
  width: 250px;
  margin: 0 0 2rem 0;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}


.checkbox__input {
  display: none;
}


.checkbox__box {
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #cccccc;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}



.checkbox__box::after {
  content: 'done';
  font-family: 'Material Icons';
  color: #ffffff;
}

.checkbox__input:checked+.checkbox__box {
  background: var(--main-accent);
  background-color: var(--main-accent);
}


.not-accpted {
  opacity: 0;
  position: fixed;
  left: 50%;
  bottom: 5%;
  background-color: var(--main-accent);
  padding: 1rem;
  min-width: 300px;
  box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 50%);
  transform: translate(-50%, 200%);
  transition: 0.3s ease;
  z-index: 10;
}

.not-accpted.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}


.fields-empty {
  opacity: 0;
  position: fixed;
  left: 50%;
  bottom: 5%;
  background-color: var(--main-accent);
  padding: 1rem;
  min-width: 300px;
  box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 50%);
  transform: translate(-50%, 200%);
  transition: 0.3s ease;
  z-index: 10;
}

.fields-empty.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}


/*---------------------------------------------------------------- */
/*------------------------- PRIVACY POLICY ----------------------- */
/*---------------------------------------------------------------- */

#frame-privacy>section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}


#privacy-policy {
  width: 80%;
  max-width: 1000px;
  margin: auto;
}


/*---------------------------------------------------------------- */
/*----------------------------- IMPRINT -------------------------- */
/*---------------------------------------------------------------- */

#frame-imprint>section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#imprint {
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

/*---------------------------------------------------------------- */
/*----------------------------- FOOTER --------------------------- */
/*---------------------------------------------------------------- */


.footer-basic {
  margin-top: 5rem;
  padding: 40px 0;
}


.social a {
  margin: 1rem 1rem;
}

.footer-basic ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-basic li {
  padding: 1rem;
}

.footer-basic a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-basic a:hover {
  opacity: 1;
}

.footer-basic img {
  width: 30px;
  height: 30px;
}

.footer-basic .copyright {
  margin-top: 1rem;
  font-size: 13px;
  opacity: 0.6;
}

.cookie-banner {
  background-color: var(--main-accent);
  width: 100%;
  height: var(--nav-height);
  position: sticky;
  bottom: 0;
  box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 50%);
  padding: 0rem 1rem;
}


.cookie-banner button {
  border: 2px solid rgba(255, 255, 255, 0.5);
  background-color: var(--main-accent);
  padding: 0.5rem 1rem;
  border-radius: 5px;
}


.privacy-text {
  max-width: 800px;
}





@media screen and (min-width: 576px) {

  .nav__links a {
    font-size: 24px;
  }


  .showcase__box {
    width: 18rem;
  }

  .contact-formular__name-holder {
    width: 350px;
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-formular__sheet input {
    width: 350px;
  }

  .contact-formular__sheet label {
    width: 350px;
  }

  .textarea-container {
    width: 350px;
  }

  .contact-formular__name-holder input {
    width: 170px;

  }



}

@media screen and (min-width: 768px) {
  .numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .members-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem
  }

  .images {
    width: 500px;
    flex-direction: row;
    justify-content: space-between;

  }

  .contact-steps__spacer {
    width: var(--contact-anim-dist-medium);
  }

  .single-step__line-container {
    width: var(--contact-anim-dist-medium);
  }

  .single-step__line {
    width: var(--contact-anim-dist-medium);
    transform: translateX(calc(var(--contact-anim-dist-medium) * -1));
  }

  .footer__links {
    flex-direction: row;
  }

}

@media screen and (min-width: 992px) {
  #frame-home>section:not(:first-child) {
    margin-top: 10rem;
  }

  .showcase__box {
    width: 14rem;
    margin: 2rem 2rem;
  }

  .showcase__container {
    justify-content: center;
    flex-direction: row;
  }


  .qualification__container {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem; */
    max-width: 1200px;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 3rem;

  }

  .steps-container {
    margin: 5rem 0;
    flex-direction: row;
  }

  .step-container {
    flex-direction: column;
  }

  .step-text {
    width: 200px;
    height: 50px;
    margin-top: 1rem;
  }

  .step-line {
    top: 50%;
    left: 100%;
    width: 146px;
    height: 0px;
  }

  .members-container {
    gap: 10rem
  }

  .single-step {
    width: var(--contact-anim-medium);
    height: var(--contact-anim-medium);
  }

  .contact-formular__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    justify-content: start;
    align-items: start;
  }

  .footer-basic {
    margin-top: 10rem;
  }


}

@media screen and (min-width: 1200px) {
  .hero__name {
    font-size: 2rem;
  }

  .hero__logo img {
    height: 400px;
    width: 400px;
  }


  .images {
    width: 1000px;
  }

  .news__img img {
    transform: scale(2);
    margin: 7rem 6rem;
  }


  .step-spacer {
    width: 100px;
  }

  .step-line {
    top: 50%;
    left: 100%;
    width: 247px;
    height: 0px;
  }

  .contact-steps__spacer {
    width: var(--contact-anim-dist-large);
  }

  .single-step {
    width: var(--contact-anim-large);
    height: var(--contact-anim-large);
  }

  .single-step__line-container {
    width: var(--contact-anim-dist-large);
  }

  .single-step__line {
    width: var(--contact-anim-dist-large);
    transform: translateX(calc(var(--contact-anim-dist-large) * -1));
  }



  .contact-formular__infos__wrapper {
    margin-left: 1rem;
  }

  .contact-formular__infos {
    flex-direction: row;
    justify-content: start;
    align-items: start;
  }



}

@media screen and (min-width: 1920px) {

  #frame-home>section:not(:first-child) {
    margin-top: 15rem;
  }


  .showcase__box {
    width: 14rem;
    margin: 2rem 8rem;
  }


  /* .qualification__container {
    gap: 1rem 20rem;
  } */

  .numbers {


    padding: 8rem 0;

    grid-template-columns: repeat(4, 1fr);
  }

  .members-container {
    gap: 10rem 20rem;
  }




  .contact-steps__spacer {
    width: var(--contact-anim-dist-Xlarge);
  }

  .single-step {
    width: var(--contact-anim-Xlarge);
    height: var(--contact-anim-Xlarge);
  }

  .single-step__line-container {
    width: var(--contact-anim-dist-Xlarge);
  }

  .single-step__line {
    width: var(--contact-anim-dist-Xlarge);
    transform: translateX(calc(var(--contact-anim-dist-Xlarge) * -1));
  }


}