/** Breakpoint: 576px+ */
@media (min-width: 36em) {
}

/** Breakpoint: 768px+ */
@media (min-width: 48em) {
}

/** Breakpoint: 992px+ */
@media (min-width: 62em) {
}

/** Breakpoint: 1200px+ */
@media (min-width: 75em) {
}

/** Breakpoint: 1400px+ */
@media (min-width: 87.5em) {
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 1em;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

.header__logo {
  color: black;
  width: 100%;
}
.header {
  background-image: url("../images/header/image1.jpg");
  background-repeat: no-repeat;
  background-position: 90% 0%;
  background-size: cover;
  padding-bottom: 3rem;
}
@media (min-width: 62em) {
  .header {
    background-image: url("../images/header/image1.jpg");
  }
}

.header__nav-link {
  display: block;
  color: white;
  text-decoration: none;

  font-weight: normal;
}

.header__nav-li {
  display: inline-block;
  width: 10rem;
  font-size: 1rem;
  list-style-type: none;
  text-align: center;
  margin: 1rem;
}
.header__nav-ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
/* .header__logo-link {
  display: block;
  width: 9rem;
  margin-left: auto;
  margin-right: auto;
} */

@media (min-width: 62em) {
  .header__logo-link {
    margin-left: 0;
    margin-right: 0;
  }
}
.header__nav {
  display: inline-block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  /* padding-bottom: 0.5rem; */
}

@media (min-width: 62em) {
  .header__nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 8rem;
  }
}
.container {
  max-width: 75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: #6390c7;
  border-radius: 999999px;
  font-weight: bold;
  padding: 0.75rem 2rem;
}
.button:hover {
  background-color: #ad2a0d;
  text-decoration: underline;
}
.header__heading {
  display: block;
  text-align: center;

  color: white;
  font-size: 2rem;
  margin: 0;
  padding: 0;

  /* padding-bottom: 17.5rem; */
}

@media (min-width: 36em) {
  .header__heading {
    display: inline-block;
    font-size: 3rem;
    margin: 0;
    padding: 0;
  }
}

.header::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 0.25rem;
  background-color: #6390c7;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

@media (min-width: 62em) {
  .header::after {
    width: 7.5rem;
  }
}
@media (max-width: 500px) {
  .header__heading-sub {
    display: none;
  }
}
.adventures {
  padding-bottom: 4rem;
  background-color: rgb(225, 220, 206);
  background-image: url("../images/adventures/image2.jpg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.heading {
  color: white;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  padding: 3rem 0rem 4rem 0rem;
}
.adventures_card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-bottom: 12rem;
}

.adventures__card {
  position: relative;
  background-color: white;
  flex: 0 0 16.75rem;

  margin: 1rem;
  border-radius: 2rem;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
  transform: scale(1);
  transition: transform 0.25s ease-in-out;
}
.adventures__card:hover {
  transform: scale(1.05);
}

.adventures__card-img {
  display: block;
  height: 18rem;
  width: 100%;
  object-fit: contain;
  object-position: 50% -20%;
}

.aventures__card-heading {
  margin: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  text-align: center;
}
.adventures_card-bottom {
  position: absolute;
  padding-bottom: 1.5rem;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00000080;
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
}
.zertifikate {
  background-image: url("../images/story/image3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 50%;
  padding-bottom: 4rem;
}

.zertifikate::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 0.25rem;
  background-color: #6390c7;
  margin-left: auto;
  margin-right: auto;
}

.zertifikate__card-img {
  display: block;
  width: 10rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 12rem;
}
@media (min-width: 75em) {
  .zertifikate__card-container {
    display: flex;
    flex-direction: column;
    padding-left: 46%;
  }
}
@media (min-width: 75em) {
  .zertifikate__card-img {
    width: 40rem;
    transition: transform 2s ease-in-out;
  }
}
@media (min-width: 75em) {
  .zertifikate__card-img:hover {
    transform: scale(1.3);
  }
}
.container2 {
  background-color: black;
  min-height: 100%;
}

.lebenslauf-background {
  background-color: black;
  background-image: url("../images/Lebenslauf/waves-blue-cropped.svg");
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: 100% 100%;
  padding: 0rem 2rem 4rem 2rem;
}

@media (min-width: 62em) {
  .lebenslauf-background {
    width: 100%;
    padding-right: 50%;
    background-color: black;
    background-image: url("../images/Lebenslauf/waves-blue-cropped.svg");
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: 100% 100%;
  }
}

.heading-story {
  display: inline-block;
  color: white;
  width: 100%;
  text-align: center;
  padding: 0 2rem 2rem 2rem;
  margin: 0;
  line-height: 1.5rem;
}

/* .heading--centered {
  display: block;
  text-align: center;
  color: white;
  background-color: black;
} */

.contact {
  background-color: black;
  color: white;

  text-align: center;
  padding-bottom: 3rem;
}

@media (min-width: 62em) {
  .contact::after {
    content: "";
    display: block;
    background-color: #6390c7;
    width: 7.5rem;
    height: 0.25rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
  }
}

.contact__image {
  display: inline-block;
  background-size: cover;
  width: 25vw;
}

/* .contact__info {
  margin: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
} */

.contact__phone {
  margin: 0;
  padding-bottom: 3rem;
  color: white;
}
.contact__items::before {
  display: block;
  content: "";
  width: 7.5rem;
  height: 0.25rem;
  background-color: #6390c7;
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 62em) {
  .contact__items::before {
    content: none;
  }
}

@media (min-width: 62em) {
  .contact__container {
    display: flex;
    flex-direction: row;
    background-image: linear-gradient(
      90deg,
      transparent calc(50% - 0.125rem),
      #6390c7 calc(50% - 0.125rem),
      #6390c7 calc(50% + 0.125rem),
      transparent calc(50% + 0.125rem)
    );
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 62em) {
  .contact__image {
    flex: 0 0 40%;
  }
}
@media (min-width: 62em) {
  .contact__items {
    flex: 0 0 60%;
  }
}

.footer {
  background-color: black;
  color: white;
  padding-bottom: 3rem;
  margin: 0;
}
.footer__text {
  margin: 0;
  text-align: center;
}

.footer__ende {
  color: white;
  text-decoration: none;
}
/* .
/* .lebenslauf__container {
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
/*  min-height: 100%; */
/* } */
/* .lebenslauf-left {
  width: 50%;
  min-height: 100%;
  /* background-color: rgb(100, 100, 100);  */
/* height: 80rem; */
/* } */
/* .lebenslauf-right {
  width: 50%; */
/* background-image: url("../images/Lebenslauf/waves-blue-cropped.svg"); */

/* background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100% auto;
  background-color: black;
  text-align: center;
  padding-top: 10%;
  color: rgb(99, 144, 199); */
/* }
.lebenslauf__right-heading {
  text-transform: uppercase;
  font-size: 5rem;
  color: white;
} */
