*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 62.5%;  */
  /*every rem is 10px*/
  font-size: 1em; /* 16px as default from Browser!*/
}

body {
  font-family: "Montserrat", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.header {
  /* padding: 2rem 4rem; */
  background-image: url(/images/header-background-0.5x.jpg); /*for mobile version*/
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: 50% 50%;  */
  background-position: 50% 75%;
  /*the photo will be positioned in center of our header*/

  /* filter: grayscale(0.5); */
}

.header__logo {
  /*to bring the UMA logo in the middle of the header!*/
  display: block;
  width: 9rem;
  margin: 0 auto;
  /*to bring the UMA logo in the middle of the header!*/
  margin-bottom: 2rem;

  /* filter: drop-shadow(16px 16px 20px red) invert(75%); */

  filter: drop-shadow(5px 5px 5px rgb(53, 8, 8))
    drop-shadow(-5px -5px 5px rgb(74, 7, 7))
    drop-shadow(16px 16px 20px rgb(150, 130, 130)) invert(75%);

  /* filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5)); */

  /* filter: drop-shadow(10px 10px 10px gray); => 10 pixels to the right, 10 pixels down, with a blur radius of 10 pixels, and the color gray */
}

.header__nav {
  padding: 2rem 0;
}

.header__nav-ul {
  display: flex;
  justify-content: space-between;
}

/* instead of using the .button, i use the last-child to avoid the position of the button in navbar in mobile version! */
.header__nav-ul li:last-child {
  display: none;
}

.header__nav-li {
  list-style: none;
}

.header__nav-links {
  text-decoration-line: none;
  font-weight: bold;
  color: #fff;
  font-size: 0.75rem;

  /* horizontal shadow - vertical shadow - blur radius - color of the shadow */
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);

  /* using multiple shadow: */
  /* text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue; */
}

.button {
  display: inline-block;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 999999px;
  background-color: #ed6a4e;
  font-weight: bold;
  text-decoration: none;

  /* to right shadow(X axios shadow), to bottom shadow(Y axios shadow), blur radius, spread radius, color */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
  /* box-shadow: 0 0.25rem 0.5rem 0.1rem rgba(0, 0, 0, 0.5); */

  /* backdrop-filter: grayscale(1) contrast(1.5) hue-rotate(180deg); */

  /* backdrop-filter: blur(0.5rem); */
  /*it changes only the back color of the button to the grayscale color!*/
}

.button:hover {
  text-decoration: underline;
  background-color: #c95f47;
}

.button--transparent {
  -webkit-backdrop-filter: blur(0.5rem); /*only for Safari Webbrowser*/
  backdrop-filter: blur(0.5rem);
  background-color: transparent;
  border: 0.125rem solid #fff;
}

.button--transparent:hover {
  /* background-color: transparent; */
  background-color: rgba(255, 255, 255, 0.25);
}

.button--transparent-mobile-only {
  /* for both of the below statements we have to define the container as flex and i defined it already! */
  /* margin: 0 auto; OR using the below statement, because button itself is a flex item now:*/
  align-self: center;
  margin-bottom: 1.5rem;
}

.header__heading {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

.header__sub-heading {
  font-size: 1rem;
  color: #fff;
  margin-top: 1rem; /*there is overlap with margin => there is exactly 1rem space between h1 and p*/
  margin-bottom: 2rem;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

.container::after {
  content: "";
  /* display: block; */
  height: 0.25rem;
  /* width: 12.5rem; */
  width: 7.5rem;
  background-color: #ed6a4e;

  /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
  /* transform: translateY(0rem); */
  margin: 0 auto;
  margin-bottom: 2rem;
  border-radius: 88888888px;

  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.adventures {
  background-color: rgb(225, 220, 206);
  background-image: url("/images/background.jpg");
  background-repeat: no-repeat;

  /* WITHOUT THE BELOW FEATURES, THE BACKGROUND IMAGE LOOKS GOOD TOO!*/
  /* sowohl in vertikal als auch in horizontal centeriert sein soll! */
  /* background-position: 50% 50%; */
  background-size: cover;
  /* height: 100vh; */

  padding-bottom: 4rem;
}

.adventures__container::after {
  display: none;
}

/* Using Block Element Modifier => BEM */
.heading--centered {
  text-align: center;
}

.heading {
  color: #014153;
  text-transform: uppercase;
  /* font-weight: bolder; */
  letter-spacing: 0.1rem;
  padding: 3rem 0;
}

.heading__pre-text {
  font-size: 1.5rem;
}

.heading__header {
  font-size: 2rem;
}

.adventures__card {
  /* height: 3rem;
  width: 3rem; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  /* margin: 0 auto; */
  list-style: none;
  /* inset(top right bottom left) => This will hide overflow on all sides */
}

.adventures__card-content {
  /* width: 25rem; */
  /* flex: 0 0 22.33rem; */
  width: 22.333333rem; /*(1136px/16 - (2+2rem gap)) => 71-4 = 67rem / 3 = 22.33rem*/
  /* height: 30rem; Browser rechnet automatisch!*/
  text-align: center;
  /* border: 0.1rem solid rgba(0, 0, 0, 0.25); */
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  /* overflow: hidden; */

  /* transition: transform 0.5s linear; */
  transition: transform 0.25s ease-in-out;
}

.adventures__card-content:hover {
  transform: scale(1.05);
}

.adventures__card-image {
  display: block; /*to remove very small padding between the image and the header after image!
  it was created because the image is initially an inline-block element!*/

  /* height: 20rem; Browser rechnet automatisch!*/
  /* width: 22.35rem; */
  /* width: 22.333333rem; OR the following: */
  width: 100%; /*it inherit 22.222222rem from its parent class => adventures__card-content*/
  /*(1136px/16 - (2+2rem gap)) => 71-4 = 67rem / 3 = 22.33rem*/

  /* ONE SOLUTION TO AVOID USING OVERFLOW:HIDDEN => that's why in card__content i commented overflow: hidden; out! => in this method, you say exactly which side of the photo you want to make the border-radius as 2rem:*/
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;

  /* border-radius: 2rem; */
  /* clip-path: inset(0 0 30px 0); */
  /* inset(top right bottom left) => Adjust the values to hide overflow on specific sides */
}

.adventures__card-header {
  font-size: 1.5rem;
  color: #014153;
  text-transform: uppercase;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.adventures__card-sub-header {
  color: #014153;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.card__date {
  /* font-weight: 600; */
  /* font-size: 1.25rem; */
}

.card__duration {
  color: #ed6a4e;
  /* font-weight: 600; */
}

.adventures__card-button {
  margin-bottom: 1.5rem;
}

/* ONYL FOR EXTRA INFO: Only to make the text with three points when the contents are bigger than the box size => there is not enough space for inhälte inside the box!*/
/* .card__content h2 {
  width: 20rem; this has to go to card__content class
  white-space: nowrap; it can not go to the next row!
  overflow: hidden; it hides what stay outside of the box!
  text-overflow: ellipsis; to make the three points at the end of the text!
} */

/* ////////////////////////new cards///////////// */
.adventures__card-new {
  margin-top: 5rem;
}

.adventures__card-content-new {
  /* width: 25rem; */
  /* flex: 0 0 22.33rem; */
  width: 22.333333rem; /*(1136px/16 - (2+2rem gap)) => 71-4 = 67rem / 3 = 22.33rem*/
  /* height: 30rem; Browser rechnet automatisch!*/
  /* height: auto; */
  height: 28.1666875rem; /*450.667px acquired from three above cards/ 16px = 28.1666875rem*/
  text-align: center;
  /* border: 0.1rem solid rgba(0, 0, 0, 0.25); */
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  /* overflow: hidden; */

  /* transition: transform 0.5s linear; */
  transition: transform 0.25s ease-in-out;

  position: relative;
  /* overflow: hidden; */
}

.adventures__card-content-new:hover {
  transform: scale(1.05);
}

.adventures__card-content-new-separated {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  /* top: 0; */

  /* -webkit- for Safari browser! */
  -webkit-backdrop-filter: blur(0.5rem) brightness(50%);
  backdrop-filter: blur(0.5rem) brightness(50%);

  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.adventures__card-header-new {
  font-size: 1.25rem;
  /* color: #014153; */
  color: #fff;
  text-transform: uppercase;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.adventures__card-sub-header-new {
  /* color: #014153; */
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.adventures__card-image-new {
  /* object-position: 90% 50%; */
  object-fit: cover; /*to avoid the scretching the photo, but a little bit truncating the photo, anyway the image aspect ration stays the same!*/

  /* object-position: 50% 50%; OR*/
  object-position: center center; /*exact positioning of the photo in X and Y position in Center!*/

  display: block; /*to remove very small padding between the image and the header after image!
  it was created because the image is initially an inline-block element!*/

  /* height: 20rem; Browser rechnet automatisch!*/
  /* width: 22.35rem; */
  /* width: 22.333333rem; OR the following: */

  /* ////////////////////////////////// */
  /*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
  Die Eltern sind: adventures__card-content-new oben*/
  width: 100%;
  height: 100%;
  /* ////////////////////////////////// */

  /*it inherit 22.222222rem from its parent class => adventures__card-content*/
  /*(1136px/16 - (2+2rem gap)) => 71-4 = 67rem / 3 = 22.33rem*/

  /* ONE SOLUTION TO AVOID USING OVERFLOW:HIDDEN => that's why in card__content i commented overflow: hidden; out! => in this method, you say exactly which side of the photo you want to make the border-radius as 2rem:*/
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;

  /* border-radius: 2rem; */
  /* clip-path: inset(0 0 30px 0); */
  /* inset(top right bottom left) => Adjust the values to hide overflow on specific sides */
}

/**************Story for mobile => 320px************/
.story {
  margin-bottom: 5rem;
  /* height: 25rem; */
  /* width: auto; */
}

.container--story::after {
  display: none;
}

.story__content {
  background-image: url(/images/background-mobile.jpg);
  /* padding: 2rem 4rem; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  /* background-position: 50% 75%; */
  /*the photo will be positioned in center of our header*/

  /* filter: grayscale(0.5); */
  /* width: 100%;
  height: 100%; */

  /* position: relative; */
  /* width: 25rem; */
  /* height: 60rem; */
}

.story__content-heading {
  color: #fff;

  /* position: absolute; */
  /* bottom: 0; */
  /* top: 3rem; */
  /* right: 0rem; */
  /* left: 2rem; */
  /* padding-top: 2.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem; */
  /* display:inline-block;
  margin: 0 auto;
  width: 30rem; */
}

.story__content-heading::before {
  content: "";
  width: 7.5rem;
  height: 0.25rem;
  background-color: #ed6a4e;
  margin-bottom: 1rem;
  margin-top: 2rem;

  display: block;
  /* Das ist die Wichtigste, weil das Element ein inline Element ist und width und height keine Auswirkung an einem inline Element hat! */
  border-radius: 88888888px;

  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.story__content-heading-preText {
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  word-spacing: 0.25rem;
  font-weight: 600;

  font-size: 1rem;
}

.story__content-heading-header {
  text-transform: uppercase;
  word-spacing: 0.25rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  font-weight: 900;

  font-size: 1rem;
}

.story__content-heading-text-1 {
  margin-bottom: 1rem;
  line-height: 1.4rem;

  /* display: inline-block; */
  max-width: 250px; /* Adjust based on your needs */
  /* overflow: hidden; */
  white-space: wrap;
  /* text-overflow: ellipsis; */
  /* text-justify: initial; */
  text-align: justify;
  text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

  font-size: 1.1rem;
}

.story__content-heading-text-2 {
  margin-bottom: 1rem;
  line-height: 1.4rem;

  max-width: 250px; /* Adjust based on your needs */
  /* overflow: hidden; */
  white-space: wrap;
  text-align: justify;
  text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

  font-size: 1.1rem;
}

.story__content-heading-button {
  font-weight: 700;
  display: block;
  margin: 0 auto;
  width: 16rem;
  text-align: center;
  /* width: 13rem; */
  margin-bottom: 2rem;

  font-size: 1rem;
}

.red-text {
  color: rgb(242, 105, 105);
}

/* .story__content-image-desktop {
  display: none;
} */

/* .story__content-image-mobile {
  object-fit: cover; */

/* object-position: 50% 50%; OR*/
/* object-position: center center;  */
/* object-position: 50% 35%; */
/*exact positioning of the photo in X and Y position in Center!*/

/* display: block; */
/* ////////////////////////////////// */
/*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
  Die Eltern sind: adventures__card-content-new oben*/
/* width: 100%;
  height: 100%; */
/* ////////////////////////////////// */
/* filter: grayscale(0); */
/* } */

/*/////////////////////////////////////////////////////*/
/* SVG Part => mobile part - 320px*/
.SVG-Part {
  /* height: 20rem; */
  /* just a temporary value! */
  margin-bottom: 5rem;
}

.SVG-Part__header {
  margin: 0 auto;

  text-transform: uppercase;
  /* max-width: 20.2rem; */
  /* white-space: wrap; */
  /* text-align: justify; */
  /* text-justify: inter-word; */
  letter-spacing: 0.15rem;
  font-weight: 800;

  font-size: 2.3rem;

  margin-bottom: 3rem;
  color: #014153;
}

.click {
  font-size: 0.5rem;
  text-transform: none;
  font-weight: normal;
}

.container--SVG-Part::after {
  display: none;
}

.SVG-Part__items {
  list-style: none;

  gap: 0rem;
  /* margin-bottom: 4rem; */

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.SVG-Part__item {
  display: block;
  /* height: 10rem; is done automatically!*/
  /* width: 20rem; */
  /* no exapnd - no shrink => it guarantee that every element has minimum width of 20rem*/
  flex: 0 1 20rem;
  border: 0.125rem solid #ed6a4e;
  /* border-left: 0.25rem solid #ed6a4e; */
  padding: 1.5rem;

  text-decoration: none;

  transition: all 0.5s ease-in-out;
}

.SVG-Part__item:hover {
  background-color: rgb(222, 222, 222);
  border: 0.25rem solid aqua;
  transform: scale(1.1) rotate(360deg);
}

/* When i hover on any part of the item, then text will be green and does also the above hover for the item! All happens togethre!*/
.SVG-Part__item:hover .SVG-Part__item-text {
  color: green;
}

/* when i hover on any partb of the item, in addition to the above hover, the background-color of the SVG will change to the blueviolet! */
.SVG-Part__item:hover .SVG-Part__item-image-content {
  background-color: blueviolet;
}

.SVG-Part__item-image-content {
  width: 4rem;
  height: 4rem;

  background-color: #ed6a4e;
  border-radius: 999999rem;
  position: relative;

  /* using only the two paddings plus margin: 0 auto; at the bottom, we will not need the position: absolute and relative anymore!*/
  /* padding-top: 1rem;
  padding-bottom: 1rem; */

  margin: 0 auto;
}

.SVG-Part__item-image {
  /* display: block; */
  width: 2rem;
  height: 2rem;

  /* margin: 0 auto; */
  position: absolute;

  left: 1rem;
  right: 0;
  top: 1rem;
  bottom: 0;
}

.SVG-Part__item-text {
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1rem;
  color: #014153;
  margin-bottom: 3rem;
  text-align: center;
}

.SVG-Part__paragraph {
  max-width: 26rem;
  display: block;
  margin: 0 auto;
  margin-top: 3rem;
  text-align: center;
}

.SVG-Part__container::after {
  content: "";
  display: block;
  height: 0.2rem;
  /* width: 12.5rem; */
  width: 5rem;
  background-color: #ed6a4e;

  /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
  /* transform: translateY(0rem); */
  margin: 0 auto;
  margin-top: 3rem;
  border-radius: 88888888px;
  /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
}

/* GUIDE SECTION for 320px, 375px and 425px => all three mobile versions - 
without using the background-image*/
.guide {
  /* height: 50rem; */
  /* height: auto; */
  /* height: 100%; */
  margin-bottom: 0rem;
}

.container--guide::after {
  display: none;
}

.image1 {
  /* width: 100%; */
  /* height: 40%; */
  object-fit: cover;
}

.bottom-content {
  position: relative;
  /* width: 100%; */
  /* height: 60%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  /* width: 100%;
  height: 100%; */
  /* background: linear-gradient(90deg, #014153, #014153); */

  background: linear-gradient(90deg, rgba(13, 61, 74, 0.5), transparent);
  /* z-index: 1; */

  /* mix-blend-mode: overlay;  */
  /* You can change this to other blend modes like 'multiply', 'screen', etc. */

  color: #fff;
  /* padding: calc(50% - 10rem); */
  padding: 2rem;
}

.overlay__heading {
  text-transform: uppercase;
}

.overlay__heading::after {
  display: block;
  content: "";
  width: 5rem;
  height: 0.1rem;
  background-color: #ed6a4e;
  border-radius: 9999999px;

  margin: 0 auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.overlay__heading-preheader {
  margin-bottom: 0.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1rem;
}

.overlay__heading-header {
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
}

.overlay__content {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.overlay__button {
  /* background-color: #ed6a4e; */
  display: block;
  width: 11rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
}

.overlay__button:hover {
  text-decoration: none;
}

.image2 {
  position: absolute;
  width: 100%;
  height: 100%; /*with 70% instead of 100%, the "find your guide" button works => because of z-index*/
  z-index: -10000;
  object-fit: cover;

  mix-blend-mode: overlay;
  /* You can change this to other blend modes to see different effects */
}

@media screen and (min-width: 768px) {
  .guide {
    /* height: 50rem; */
    height: auto;
    /* height: 100%; */
    margin-bottom: 0rem;

    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
  }

  .container--guide {
    display: flex;
    flex-direction: row;
  }

  .image1 {
    width: 40%;
    height: 100%;
    /* height: auto; */
    object-fit: cover;
  }

  .bottom-content {
    position: relative;
    width: 60%;
    /* height: 100%; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay {
    width: 100%;
    height: 100%;
    /* height: auto; */
    /* background: linear-gradient(90deg, #014153, #014153); */

    background: linear-gradient(90deg, rgba(13, 61, 74, 0.5), transparent);
    /* z-index: 1; */

    /* mix-blend-mode: overlay;  */
    /* You can change this to other blend modes like 'multiply', 'screen', etc. */
    /* padding: 5rem 5rem; */
    /* padding: 2rem; */
    padding: calc(50% - 10rem);
  }

  .overlay__heading::after {
    display: block;
    content: "";
    width: 5rem;
    height: 0.1rem;
    background-color: #ed6a4e;
    border-radius: 9999999px;

    margin: 0 auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .overlay__heading-preheader {
    margin-bottom: 0.1rem;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }

  .overlay__heading-header {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
  }

  .overlay__content {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .overlay__button {
    /* background-color: #ed6a4e; */
    display: block;
    width: 11rem;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8rem;
  }

  .image2 {
    position: absolute;
    width: 100%;
    height: 100%;
    /* height: auto; */
    z-index: -10000;
    object-fit: cover;

    mix-blend-mode: overlay;
    /* You can change this to other blend modes to see different effects */
  }
}

@media screen and (min-width: 1024px) {
  .guide {
    /* height: 50rem; */
    height: auto;
    /* height: 100%; */
    margin-bottom: 0rem;

    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
  }

  .image1 {
    width: 40%;
    height: 100%;
    /* height: auto; */
    object-fit: cover;
  }

  .bottom-content {
    position: relative;
    width: 60%;
    /* height: 100%; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay {
    width: 100%;
    height: 100%;
    /* height: auto; */
    /* background: linear-gradient(90deg, #014153, #014153); */
    background: linear-gradient(90deg, rgba(13, 61, 74, 0.5), transparent);
    /* z-index: 1; */

    /* mix-blend-mode: overlay;  */
    /* You can change this to other blend modes like 'multiply', 'screen', etc. */
    /* padding: 5rem 5rem; */
    padding: calc(50% - 12.5rem);
    /* padding: 2rem; */
  }

  .overlay__heading::after {
    display: block;
    content: "";
    width: 5rem;
    height: 0.1rem;
    background-color: #ed6a4e;
    border-radius: 9999999px;

    margin: 0 auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .overlay__heading-preheader {
    margin-bottom: 0.1rem;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
  }

  .overlay__heading-header {
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
  }

  .overlay__content {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .overlay__button {
    /* background-color: #ed6a4e; */
    display: block;
    width: 13rem;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
  }

  .image2 {
    position: absolute;
    width: 100%;
    height: 100%;
    /* height: auto; */
    z-index: -10000;
    object-fit: cover;

    mix-blend-mode: overlay;
    /* You can change this to other blend modes to see different effects */
  }
}
@media screen and (min-width: 1440px) {
  .guide {
    /* height: 50rem; */
    height: auto;
    /* height: 100%; */
    margin-bottom: 0rem;

    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
  }

  .image1 {
    width: 40%;
    height: 100%;
    /* height: auto; */
    object-fit: cover;
  }

  .bottom-content {
    position: relative;
    width: 60%;
    /* height: 100%; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay {
    width: 100%;
    height: 100%;
    /* height: auto; */
    background: linear-gradient(90deg, rgba(13, 61, 74, 0.5), transparent);
    /* z-index: 1; */

    /* mix-blend-mode: overlay;  */
    /* You can change this to other blend modes like 'multiply', 'screen', etc. */
    /* padding: 5rem 5rem; */
    /* padding: 2rem; */
    padding: calc(50% - 15rem);

    z-index: 1000;
  }

  .overlay__heading::after {
    display: block;
    content: "";
    width: 5rem;
    height: 0.1rem;
    background-color: #ed6a4e;
    border-radius: 9999999px;

    margin: 0 auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .overlay__heading-preheader {
    margin-bottom: 0.1rem;
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }

  .overlay__heading-header {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }

  .overlay__content {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    /* max-width: 35rem; */
  }

  .overlay .overlay__button {
    /* background-color: #ed6a4e; */
    display: block;
    width: 13rem;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;

    z-index: 1000;
  }

  .image2 {
    position: absolute;
    width: 100%;
    height: 100%;
    /* height: auto; */
    z-index: -1000;
    object-fit: cover;

    mix-blend-mode: overlay;
    /* You can change this to other blend modes to see different effects */
  }
}
/* ******************************** */
/* SKILL guide */
.skill {
  margin-bottom: 0rem;
  margin-top: 0rem;
}

.skill__backgroundImage {
  background-color: rgb(225, 220, 206);
  background-image: url("/images/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

/* .skill__container {
  height: 70rem;
} */

.skill__container::after {
  display: none;
}

.skill__headerContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */

  margin-top: 3rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  color: #014153;
}

.skill__preheader {
  font-size: 1rem;
  font-weight: bold;
}

.skill__header {
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  font-weight: 900;
}

.hover {
  font-size: 0.5rem;
  text-transform: none;
  font-weight: normal;
}

/* .skill__backgroundImage {
  height: 65rem;
  object-fit: cover;
} */

.skill__content {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;

  gap: 2rem;
  align-items: center;
  justify-content: center;

  margin-top: 2rem;
  margin-bottom: 5rem;
}

.skill__card {
  /* flex: 1 1 14rem; */
  /* flex: 1 1 22.222222222rem; */
  /* width: 13rem; */
  flex: 0 0 13rem;
  height: 20rem;
  background-color: #fff;
  list-style-type: none;
  border-radius: 10px;
  box-shadow: 2px 2px 2px 2px rgb(150, 130, 130);
  transition: transform 0.5s ease-in-out;
}

.skill__card:hover {
  transform: scale(1.5) rotate(720deg);
  background-color: aqua;
  color: red;
  border: 0.2rem solid darkgreen;

  /* place the contents of the card in the center after hovering! */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.skill__card:hover .skill__card--frame {
  transform: scale(1.5) rotate(-180deg);
  background-color: dodgerblue;
}

.skill__card:hover .skill__card--header::after {
  background-color: orange;
}

.skill__card--frame {
  width: 5rem;
  height: 5rem;
  border-radius: 9999999999px;
  background-color: #ed6a4e;
  /* position: relative; */
  padding: 1rem; /*SVG iocn comes inside for 1rem!*/
  margin: 1rem; /*the entire icon comes inside the card for 1rem!*/
  display: inline-block;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.skill__card--iconOneStar {
  /* display: block; */
  /* position: absolute; */
  /* top: 0;
  bottom: 0;
  right: 0;
  left: 0; */
  /* background-color: #014153; */
  /* width: 2.5rem;
  height: 2.5rem; */
  /* margin: 0 auto; */
  /* border-radius: 9999999999px; */
}

.skill__card--header {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1rem;
  margin: 1rem;
}

.skill__card--header::after {
  content: "";
  width: 5rem;
  height: 0.15rem;
  background-color: red;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.skill__card--info {
  /* margin: 0 2rem; */
  /* list-style-type: none; */
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.skill__card--info--item {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 375px) {
  .skill__card {
    /* flex: 1 1 14rem; */
    /* flex: 1 1 22.222222222rem; */
    /* width: 15rem; */
    flex: 0 0 15rem;
    height: 20rem;
    background-color: #fff;
    list-style-type: none;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px rgb(150, 130, 130);
    transition: transform 0.5s ease-in-out;
  }
}

@media screen and (min-width: 425px) {
  .skill__card {
    /* flex: 1 1 14rem; */
    /* flex: 1 1 22.222222222rem; */
    /* width: 17rem; */
    flex: 0 0 17rem;
    height: 20rem;
    background-color: #fff;
    list-style-type: none;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px rgb(150, 130, 130);
    transition: transform 0.5s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .skill {
    margin-bottom: 0rem;
    margin-top: 0rem;
  }

  .skill__backgroundImage {
    background-color: rgb(225, 220, 206);
    background-image: url("/images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* .skill__container {
    height: 70rem;
  } */

  .skill__container::after {
    display: none;
  }

  .skill__headerContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */

    margin-top: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #014153;
  }

  .skill__preheader {
    font-size: 1rem;
  }

  .skill__header {
    font-size: 2rem;
    letter-spacing: 0.05rem;
  }

  .hover {
    font-size: 0.5rem;
    text-transform: none;
    font-weight: 500;
  }

  /* .skill__backgroundImage {
    height: 65rem;
    object-fit: cover;
  } */

  .skill__content {
    display: flex;
    /* flex-direction: row; */
    flex-wrap: wrap;

    gap: 2rem;
    align-items: center;
    justify-content: space-evenly;

    margin-top: 2rem;
    margin-bottom: 5rem;
  }

  .skill__card {
    /* flex: 1 1 22.222222222rem; */
    flex: 0 0 12rem;
    /* width: 12rem; */
    height: 20rem;
    background-color: #fff;
    list-style-type: none;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px rgb(150, 130, 130);
    transition: transform 0.5s ease-in-out;
  }

  .skill__card:hover {
    transform: scale(1.5) rotate(720deg);
    background-color: aqua;
    color: red;
    border: 0.2rem solid darkgreen;
  }

  .skill__card:hover .skill__card--frame {
    transform: scale(1.5) rotate(-180deg);
    background-color: dodgerblue;
  }

  .skill__card:hover .skill__card--header::after {
    background-color: orange;
  }

  .skill__card--frame {
    width: 5rem;
    height: 5rem;
    border-radius: 9999999999px;
    background-color: #ed6a4e;
    /* position: relative; */
    padding: 1rem; /*SVG iocn comes inside for 1rem!*/
    margin: 1rem; /*the entire icon comes inside the card for 1rem!*/
    display: inline-block;
    /* display: flex;
    align-items: center;
    justify-content: center; */
  }

  .skill__card--iconOneStar {
    /* display: block; */
    /* position: absolute; */
    /* top: 0;
    bottom: 0;
    right: 0;
    left: 0; */
    /* background-color: #014153; */
    /* width: 2.5rem;
    height: 2.5rem; */
    /* margin: 0 auto; */
    /* border-radius: 9999999999px; */
  }

  .skill__card--header {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1rem;
    margin: 1rem;
  }

  .skill__card--header::after {
    content: "";
    width: 5rem;
    height: 0.15rem;
    background-color: red;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .skill__card--info {
    /* margin: 0 2rem; */
    /* list-style-type: none; */
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 0rem;
  }

  .skill__card--info--item {
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .skill {
    margin-bottom: 0rem;
    margin-top: 0rem;
  }

  .skill__backgroundImage {
    background-color: rgb(225, 220, 206);
    background-image: url("/images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* .skill__container {
    height: 70rem;
  } */

  .skill__container::after {
    display: none;
  }

  .skill__headerContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */

    margin-top: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #014153;
  }

  .skill__preheader {
    font-size: 1rem;
  }

  .skill__header {
    font-size: 2rem;
    letter-spacing: 0.05rem;
  }

  .hover {
    font-size: 0.5rem;
    text-transform: none;
    font-weight: 500;
  }

  /* .skill__backgroundImage {
    height: 65rem;
    object-fit: cover;
  } */

  .skill__content {
    display: flex;
    /* flex-direction: row; */
    flex-wrap: wrap;

    gap: 2rem;
    align-items: center;
    justify-content: space-evenly;

    margin-top: 2rem;
    margin-bottom: 5rem;
  }

  .skill__card {
    /* flex: 1 1 22.222222222rem; */
    flex: 0 0 15rem;
    /* width: 12rem; */
    height: 20rem;
    background-color: #fff;
    list-style-type: none;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px rgb(150, 130, 130);
    transition: transform 0.5s ease-in-out;
  }

  .skill__card:hover {
    transform: scale(1.5) rotate(720deg);
    background-color: aqua;
    color: red;
    border: 0.2rem solid darkgreen;
  }

  .skill__card:hover .skill__card--frame {
    transform: scale(1.5) rotate(-180deg);
    background-color: dodgerblue;
  }

  .skill__card:hover .skill__card--header::after {
    background-color: orange;
  }

  .skill__card--frame {
    width: 5rem;
    height: 5rem;
    border-radius: 9999999999px;
    background-color: #ed6a4e;
    /* position: relative; */
    padding: 1rem; /*SVG iocn comes inside for 1rem!*/
    margin: 1rem; /*the entire icon comes inside the card for 1rem!*/
    display: inline-block;
    /* display: flex;
    align-items: center;
    justify-content: center; */
  }

  .skill__card--iconOneStar {
    /* display: block; */
    /* position: absolute; */
    /* top: 0;
    bottom: 0;
    right: 0;
    left: 0; */
    /* background-color: #014153; */
    /* width: 2.5rem;
    height: 2.5rem; */
    /* margin: 0 auto; */
    /* border-radius: 9999999999px; */
  }

  .skill__card--header {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1rem;
    margin: 1rem;
  }

  .skill__card--header::after {
    content: "";
    width: 5rem;
    height: 0.15rem;
    background-color: red;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .skill__card--info {
    /* margin: 0 2rem; */
    /* list-style-type: none; */
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 0rem;
  }

  .skill__card--info--item {
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 1440px) {
  .skill__headerContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */

    margin-top: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #014153;
  }

  .skill__card {
    /* flex: 1 1 22.222222222rem; */
    flex: 0 0 18rem;
    /* width: 12rem; */
    height: 20rem;
    background-color: #fff;
    list-style-type: none;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px rgb(150, 130, 130);
    transition: transform 0.5s ease-in-out;
  }
}

/* Der Zitat / Quote-Abschnitt  */
.zitat {
  margin-bottom: 0rem;
  /* transition: transform 0.1s ease-in-out; */
}

/* .zitat:hover {
transform: scale(1.05) translate(4rem, 1rem);
} */

.zitat__container::after {
  display: none;
}

.zitat__backgroundImage {
  background: linear-gradient(90deg, #014153, #014153);
  /* height: 30rem; */
}

.zitat__backgroundImage:hover {
  background: linear-gradient(360deg, #014153, #1983a1);
}

.zitat__content {
  padding: 2rem;
  /* display: inline; */
  color: #ed6a4e;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2rem;
  /* margin: 5rem; */
}

.zitat__content-header {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 1.3rem;
  text-align: left;
}

.zitat__content-header::before {
  /* content: "„"; */
  content: "“";
}

.zitat__content-header::after {
  /* content: "“"; */
  content: "”";
}

.author {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  /* Der Zitat / Quote-Abschnitt  */
  .zitat {
    margin-bottom: 0rem;
    /* transition: transform 0.1s ease-in-out; */
  }

  /* .zitat:hover {
transform: scale(1.05) translate(4rem, 1rem);
} */

  .zitat__container::after {
    display: none;
  }

  .zitat__backgroundImage {
    background: linear-gradient(90deg, #014153, #014153);
    /* height: 30rem; */
  }

  .zitat__backgroundImage:hover {
    background: linear-gradient(360deg, #014153, #1983a1);
  }

  .zitat__content {
    padding: 2rem;
    /* display: inline; */
    color: #ed6a4e;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.2rem;
    /* margin: 5rem; */
  }

  .zitat__content-header {
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    text-align: center;
  }

  .zitat__content-header::before {
    /* content: "„"; */
    content: "“";
  }

  .zitat__content-header::after {
    /* content: "“"; */
    content: "”";
  }

  .author {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
  }
}

/* ////////////////////////////////////////////// */
/* Der Kontakt Bereich */
.kontakt {
  margin-bottom: 0rem;
}

.kontakt__container::after {
  display: none;
}

.kontakt__backgroundImage {
  background: linear-gradient(90deg, #ed6a4e, #ed6a4e);
}

.kontakt__content {
  height: 40rem;
  /* flex: 0 0 40rem; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0rem;

  position: relative;
}

.kontakt__content::after {
  content: "";
  /* display: block; */
  height: 0.2rem;
  /* width: 12.5rem; */
  width: 5rem;
  background-color: rgb(71, 45, 45);

  /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
  /* transform: translateY(0rem); */
  /* margin: 0 auto; */
  /* margin-top: 3rem; */
  border-radius: 88888888px;
  /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
  position: absolute;
  bottom: 51.5%;
  right: 35%;
}

.kontakt__content__uma-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 2rem;
  /* border-bottom: 1px solid #fff; */
  padding: 0rem;
}

.uma-info__header__logo {
  /*to bring the UMA logo in the middle of the header!*/
  display: block;
  width: 9rem;
  margin: 0 auto;
  /*to bring the UMA logo in the middle of the header!*/
  margin-bottom: 2rem;
  margin-top: 2rem;

  /* filter: drop-shadow(16px 16px 20px red) invert(75%); */

  filter: drop-shadow(5px 5px 5px rgb(170, 150, 170))
    drop-shadow(-5px -5px 5px rgb(174, 167, 222))
    drop-shadow(16px 16px 20px rgba(44, 6, 22, 0.23)) invert(75%);

  /* filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5)); */

  /* filter: drop-shadow(10px 10px 10px gray); => 10 pixels to the right, 10 pixels down, with a blur radius of 10 pixels, and the color gray */
}

.uma-info__text {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.3rem;
}

.uma-info__telNumber {
  font-size: 1.25rem;
  font-weight: 500;
  /* text-shadow: 2px 2px 2px 2px rgba (0, 0, 0, 0.5); 
  */
  text-shadow: 1px 1px 1px black;
  margin-bottom: 4rem;
  text-decoration: none;
}

.uma-info__telNumber:hover {
  text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 1rem;
}

.kontakt__content__kontakt-info {
  /* border-top: 1px solid #fff; */
  padding: 0rem;
}

input[type="text"],
input[type="email"],
.kontakt-info__textarea {
  font-family: inherit;
  /* padding: 0.25rem 2rem; */
  width: 15rem;
  height: 2.5rem;
  padding: 0.5rem;
  /* display: block; */
  border-radius: 5px;
  /* margin-bottom: 1rem; */
  border: none;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
.kontakt-info__textarea:focus {
  border: 3px solid dodgerblue;
  box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
}

input[type="submit"] {
  padding: 0.7rem 1.5rem;
  border-radius: 9999999px;
  align-self: flex-end;
  border: none;
  background-color: rgb(71, 45, 45);
  color: white;
  font-weight: bold;
  letter-spacing: 0.05rem;
  /* margin-bottom: 2rem; */
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: rgb(29, 2, 2);
}

.kontakt-info__textarea {
  font-family: inherit;
  height: 10rem;
  margin-bottom: -0.5rem;
}

@media screen and (min-width: 375px) {
  .kontakt__content::after {
    content: "";
    /* display: block; */
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    background-color: rgb(71, 45, 45);

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    /* margin: 0 auto; */
    /* margin-top: 3rem; */
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
    position: absolute;
    bottom: 55%;
    right: 37%;
  }

  input[type="text"],
  input[type="email"],
  .kontakt-info__textarea {
    font-family: inherit;
    /* padding: 0.25rem 2rem; */
    width: 18rem;
    height: 2.5rem;
    /* display: block; */
    border-radius: 5px;
    /* margin-bottom: 1rem; */
    border: none;
    outline: none;
  }

  .kontakt-info__textarea {
    font-family: inherit;
    height: 10rem;
    margin-bottom: -0.5rem;
  }
}

@media screen and (min-width: 425px) {
  .kontakt__content::after {
    content: "";
    /* display: block; */
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    background-color: rgb(71, 45, 45);

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    /* margin: 0 auto; */
    /* margin-top: 3rem; */
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
    position: absolute;
    bottom: 55%;
    right: 39%;
  }

  input[type="text"],
  input[type="email"],
  .kontakt-info__textarea {
    font-family: inherit;
    /* padding: 0.25rem 2rem; */
    width: 21rem;
    height: 2.5rem;
    /* display: block; */
    border-radius: 5px;
    /* margin-bottom: 1rem; */
    border: none;
    outline: none;
  }

  .kontakt-info__textarea {
    font-family: inherit;
    height: 10rem;
    margin-bottom: -0.5rem;
  }
}

@media screen and (min-width: 768px) {
  /* ////////////////////////////////////////////// */
  /* Der Kontakt Bereich */
  .kontakt {
    margin-bottom: 0rem;
  }

  .kontakt__container::after {
    display: none;
  }

  .kontakt__backgroundImage {
    background: linear-gradient(90deg, #ed6a4e, #ed6a4e);
  }

  .kontakt__content {
    height: 35rem;
    /* flex: 0 0 40rem; */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0rem;

    position: relative;
  }

  .kontakt__content::after {
    content: "";
    /* display: block; */
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    background-color: rgb(71, 45, 45);

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    /* margin: 0 auto; */
    /* margin-top: 3rem; */
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
    position: absolute;
    bottom: 55.5%;
    right: 43%;
  }

  .kontakt__content__uma-info {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 2rem;
    /* border-bottom: 1px solid #fff; */
    padding: 0rem;
    margin-top: 4rem;
  }

  .uma-info__header__logo {
    /*to bring the UMA logo in the middle of the header!*/
    display: block;
    width: 9rem;
    margin: 0 auto;
    /*to bring the UMA logo in the middle of the header!*/
    margin-bottom: 2rem;
    margin-top: 2rem;

    /* filter: drop-shadow(16px 16px 20px red) invert(75%); */

    filter: drop-shadow(5px 5px 5px rgb(170, 150, 170))
      drop-shadow(-5px -5px 5px rgb(174, 167, 222))
      drop-shadow(16px 16px 20px rgba(44, 6, 22, 0.23)) invert(75%);

    /* filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5)); */

    /* filter: drop-shadow(10px 10px 10px gray); => 10 pixels to the right, 10 pixels down, with a blur radius of 10 pixels, and the color gray */
  }

  .uma-info__text {
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
  }

  .uma-info__telNumber {
    font-size: 1.25rem;
    font-weight: 500;
    /* text-shadow: 2px 2px 2px 2px rgba (0, 0, 0, 0.5); 
  */
    text-shadow: 1px 1px 1px black;
    margin-bottom: 4rem;
    text-decoration: none;
  }

  .uma-info__telNumber:hover {
    text-decoration: underline;
  }

  form {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 1rem;
  }

  .kontakt__content__kontakt-info {
    /* border-top: 1px solid #fff; */
    padding: 0rem;
  }

  input[type="text"],
  input[type="email"],
  .kontakt-info__textarea {
    font-family: inherit;
    /* padding: 0.25rem 2rem; */
    width: 20rem;
    height: 2.5rem;
    /* display: block; */
    border-radius: 5px;
    /* margin-bottom: 1rem; */
    border: none;
    outline: none;
  }

  input[type="text"]:focus,
  input[type="email"]:focus,
  .kontakt-info__textarea:focus {
    border: 3px solid dodgerblue;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
  }

  input[type="submit"] {
    padding: 0.7rem 1.5rem;
    border-radius: 9999999px;
    align-self: flex-end;
    border: none;
    background-color: rgb(71, 45, 45);
    color: white;
    font-weight: bold;
    letter-spacing: 0.05rem;
    /* margin-bottom: 2rem; */
    cursor: pointer;
  }

  input[type="submit"]:hover {
    background-color: rgb(29, 2, 2);
  }

  .kontakt-info__textarea {
    font-family: inherit;
    height: 10rem;
    margin-bottom: -0.5rem;
  }
}

@media screen and (min-width: 1024px) {
  /* ////////////////////////////////////////////// */
  /* Der Kontakt Bereich */
  .kontakt {
    margin-bottom: 0rem;
  }

  .kontakt__container::after {
    display: none;
  }

  .kontakt__backgroundImage {
    background: linear-gradient(90deg, #ed6a4e, #ed6a4e);
  }

  .kontakt__content {
    height: 35rem;
    /* flex: 0 0 50rem; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0rem;

    position: relative;

    background-image: linear-gradient(
      90deg,
      transparent calc(50% - 0.125rem),
      rgba(255, 255, 255, 0.5) calc(50% - 0.125rem),
      rgba(255, 255, 255, 0.5) calc(50% + 0.125rem),
      transparent calc(50% + 0.125rem)
    );
  }

  .kontakt__content::after {
    content: "";
    /* display: block; */
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    /* background-color: rgb(71, 45, 45); */
    background-color: green;

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    /* margin: 0 auto; */
    /* margin-top: 3rem; */
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
    position: absolute;
    bottom: -5%;
    right: 45.5%;
  }

  .kontakt__content__uma-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 3rem;
    /* border-right: 1px solid #fff; */
    padding: 3rem;
  }

  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    /* gap: 1.6rem; */
    /* gap: 0rem; */
  }

  .kontakt__content__kontakt-info {
    /* border-left: 1px solid #fff; */
    padding: 3rem;
  }

  .uma-info__header__logo {
    /*to bring the UMA logo in the middle of the header!*/
    display: block;
    width: 9rem;
    margin: 0 auto;
    /*to bring the UMA logo in the middle of the header!*/
    margin-bottom: 2rem;

    /* filter: drop-shadow(16px 16px 20px red) invert(75%); */

    filter: drop-shadow(5px 5px 5px rgb(170, 150, 170))
      drop-shadow(-5px -5px 5px rgb(174, 167, 222))
      drop-shadow(16px 16px 20px rgba(44, 6, 22, 0.23)) invert(75%);

    /* filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5)); */

    /* filter: drop-shadow(10px 10px 10px gray); => 10 pixels to the right, 10 pixels down, with a blur radius of 10 pixels, and the color gray */
  }

  .uma-info__text {
    text-align: center;
    color: #fff;
    font-weight: 500;
  }

  .uma-info__telNumber {
    font-size: 1.5rem;
    font-weight: 500;
    /* text-shadow: 2px 2px 2px 2px rgba (0, 0, 0, 0.5); 
  */
    text-shadow: 1px 1px 1px black;
  }

  input[type="text"],
  input[type="email"],
  .kontakt-info__textarea {
    font-family: inherit;
    /* padding: 0.25rem 2rem; */
    width: 21rem;
    height: 2.5rem;
    /* display: block; */
    border-radius: 5px;
    /* margin-bottom: 1rem; */
    border: none;
    outline: none;
  }

  .kontakt-info__textarea {
    font-family: inherit;
    height: 10rem;
    margin-bottom: -0.5rem;
  }

  /* input[type="text"],
  input[type="email"] {
    padding: 0.25rem 3.5rem;
  } */

  input[type="text"]:focus,
  input[type="email"]:focus,
  .kontakt-info__textarea:focus {
    border: 3px solid dodgerblue;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
  }

  input[type="submit"] {
    padding: 0.7rem 1.5rem;
    border-radius: 9999999px;
    align-self: flex-end;
    border: none;
    background-color: rgb(71, 45, 45);
    color: white;
    font-weight: bold;
    letter-spacing: 0.05rem;
  }
}
@media screen and (min-width: 1440px) {
  /* ////////////////////////////////////////////// */
  /* Der Kontakt Bereich */
  .kontakt {
    margin-bottom: 0rem;
  }

  .kontakt__container::after {
    display: none;
  }

  .kontakt__backgroundImage {
    background: linear-gradient(90deg, #ed6a4e, #ed6a4e);
  }

  .kontakt__content {
    height: 35rem;
    /* flex: 0 0 50rem; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0rem;

    position: relative;

    background-image: linear-gradient(
      90deg,
      transparent calc(50% - 0.125rem),
      rgba(255, 255, 255, 0.5) calc(50% - 0.125rem),
      rgba(255, 255, 255, 0.5) calc(50% + 0.125rem),
      transparent calc(50% + 0.125rem)
    );
  }

  .kontakt__content::after {
    content: "";
    /* display: block; */
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    /* background-color: rgb(71, 45, 45); */
    background-color: green;

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    /* margin: 0 auto; */
    /* margin-top: 3rem; */
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
    position: absolute;
    bottom: -5%;
    right: 46%;
  }

  .kontakt__content__uma-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 3rem;
    /* border-right: 1px solid #fff; */
    padding: 3rem;
  }

  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    /* gap: 1.6rem; */
    /* gap: 0rem; */
  }

  .kontakt__content__kontakt-info {
    /* border-left: 1px solid #fff; */
    padding: 3rem;
  }

  .uma-info__header__logo {
    /*to bring the UMA logo in the middle of the header!*/
    display: block;
    width: 9rem;
    margin: 0 auto;
    /*to bring the UMA logo in the middle of the header!*/
    margin-bottom: 2rem;

    /* filter: drop-shadow(16px 16px 20px red) invert(75%); */

    filter: drop-shadow(5px 5px 5px rgb(170, 150, 170))
      drop-shadow(-5px -5px 5px rgb(174, 167, 222))
      drop-shadow(16px 16px 20px rgba(44, 6, 22, 0.23)) invert(75%);

    /* filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5)); */

    /* filter: drop-shadow(10px 10px 10px gray); => 10 pixels to the right, 10 pixels down, with a blur radius of 10 pixels, and the color gray */
  }

  .uma-info__text {
    text-align: center;
    color: #fff;
    font-weight: 500;
  }

  .uma-info__telNumber {
    font-size: 1.5rem;
    font-weight: 500;
    /* text-shadow: 2px 2px 2px 2px rgba (0, 0, 0, 0.5); 
  */
    text-shadow: 1px 1px 1px black;
  }

  input[type="text"],
  input[type="email"],
  .kontakt-info__textarea {
    font-family: inherit;
    /* padding: 0.25rem 2rem; */
    width: 21rem;
    height: 2.5rem;
    /* display: block; */
    border-radius: 5px;
    /* margin-bottom: 1rem; */
    border: none;
    outline: none;
  }

  .kontakt-info__textarea {
    font-family: inherit;
    height: 10rem;
    margin-bottom: -0.5rem;
  }

  /* input[type="text"],
  input[type="email"] {
    padding: 0.25rem 3.5rem;
  } */

  input[type="text"]:focus,
  input[type="email"]:focus,
  .kontakt-info__textarea:focus {
    border: 3px solid dodgerblue;
    box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
  }

  input[type="submit"] {
    padding: 0.7rem 1.5rem;
    border-radius: 9999999px;
    align-self: flex-end;
    border: none;
    background-color: rgb(71, 45, 45);
    color: white;
    font-weight: bold;
    letter-spacing: 0.05rem;
  }
}

.footer {
  padding-bottom: 1rem;
  font-size: 0.8rem;
}

.footer__content {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 1rem;
}

.footer__container::after {
  display: none;
}

.footer__backgroundImage {
  /* height: 5rem; */
  background-color: #ed6a4e;
}

@media screen and (min-width: 768px) {
  .SVG-Part__items {
    list-style: none;
    gap: 0rem;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .SVG-Part__item {
    display: block;
    /* height: 10rem; is done automatically!*/
    /* width: 20rem; */
    /* no exapnd - no shrink => it guarantee that every element has minimum width of 20rem*/
    flex: 0 0 20rem;
    border: 0.125rem solid #ed6a4e;
    /* border-left: 0.25rem solid #ed6a4e; */
    padding: 1.5rem;
  }

  .SVG-Part__item-1,
  .SVG-Part__item-3,
  .SVG-Part__item-5 {
    border-left: none;
  }

  .SVG-Part__item-2,
  .SVG-Part__item-4,
  .SVG-Part__item-6 {
    border-right: none;
  }

  .SVG-Part__item-1,
  .SVG-Part__item-2 {
    border-top: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-5,
  .SVG-Part__item-6 {
    border-bottom: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-text {
    text-align: center;
    padding-top: 1.5rem;
    margin-bottom: 0rem;
  }

  /* first vertical line */
  /* .SVG-Part__item-1::before {
    content: "";
    border-left: 0.2rem solid #ed6a4e;
    width: 70%;
    height: 9rem;
    margin: 0 auto;
    display: block;

    position: absolute;
    left: 14rem;
    right: 0;
    top: -2rem;
    bottom: 0;
  } */

  /* .SVG-Part__item-1 {
    position: relative;
  } */

  .SVG-Part__paragraph {
    max-width: 26rem;
    display: block;
    margin: 0 auto;
    margin-top: 3rem;
    text-align: center;
  }

  .SVG-Part__container::after {
    content: "";
    display: block;
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    background-color: #ed6a4e;

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    margin: 0 auto;
    margin-top: 3rem;
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
  }
}

@media screen and (min-width: 1024px) {
  .SVG-Part__items {
    list-style: none;
    gap: 0rem;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .SVG-Part__item {
    display: block;
    /* height: 10rem; is done automatically!*/
    /* width: 20rem; */
    /* no exapnd - no shrink => it guarantee that every element has minimum width of 20rem*/
    flex: 0 0 20rem;
    border: 0.125rem solid #ed6a4e;
    /* border-left: 0.25rem solid #ed6a4e; */
    padding: 1.5rem;
  }

  .SVG-Part__item-1,
  .SVG-Part__item-3,
  .SVG-Part__item-5 {
    border-left: none;
  }

  .SVG-Part__item-2,
  .SVG-Part__item-4,
  .SVG-Part__item-6 {
    border-right: none;
  }

  .SVG-Part__item-1,
  .SVG-Part__item-2 {
    border-top: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-5,
  .SVG-Part__item-6 {
    border-bottom: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-text {
    text-align: center;
    padding-top: 1.5rem;
  }

  /* first vertical line */
  /* .SVG-Part__item-1::before {
    content: "";
    border-left: 0.2rem solid #ed6a4e;
    width: 70%;
    height: 9rem;
    margin: 0 auto;
    display: block;

    position: absolute;
    left: 14rem;
    right: 0;
    top: -2rem;
    bottom: 0;
  } */

  /* .SVG-Part__item-1 {
    position: relative;
  } */

  .SVG-Part__paragraph {
    max-width: 26rem;
    display: block;
    margin: 0 auto;
    margin-top: 3rem;
    text-align: center;
  }

  .SVG-Part__container::after {
    content: "";
    display: block;
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    background-color: #ed6a4e;

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    margin: 0 auto;
    margin-top: 3rem;
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
  }
}

/* @media screen and (width >= 1040px) { */
@media screen and (min-width: 1040px) {
  .SVG-Part__items {
    list-style: none;
    gap: 0rem;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .SVG-Part__item {
    display: block;
    /* height: 10rem; is done automatically!*/
    /* width: 20rem; */
    /* no exapnd - no shrink => it guarantee that every element has minimum width of 20rem*/
    flex: 0 0 20rem;
    border: 0.125rem solid #ed6a4e;
    /* border-left: 0.25rem solid #ed6a4e; */
    padding: 1.5rem;
  }

  .SVG-Part__item-1,
  .SVG-Part__item-4 {
    border-left: none;
  }

  .SVG-Part__item-3,
  .SVG-Part__item-6 {
    border-right: none;
  }

  .SVG-Part__item-5,
  .SVG-Part__item-6,
  .SVG-Part__item-4 {
    border-bottom: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-5,
  .SVG-Part__item-6,
  .SVG-Part__item-4 {
    border-top: none;
  }

  .SVG-Part__item-3,
  .SVG-Part__item-1,
  .SVG-Part__item-2 {
    border-bottom: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-1,
  .SVG-Part__item-3,
  .SVG-Part__item-2 {
    border-top: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-text {
    text-align: center;
    padding-top: 1.5rem;
  }

  /* first vertical line */
  /* .SVG-Part__item-1::before {
    content: "";
    border-left: 0.2rem solid #ed6a4e;
    width: 70%;
    height: 9rem;
    margin: 0 auto;
    display: block;

    position: absolute;
    left: 14rem;
    right: 0;
    top: -2rem;
    bottom: 0;
  } */

  /* .SVG-Part__item-1 {
    position: relative;
  } */

  .SVG-Part__paragraph {
    max-width: 26rem;
    display: block;
    margin: 0 auto;
    margin-top: 3rem;
    text-align: center;
  }

  .SVG-Part__container::after {
    content: "";
    display: block;
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    background-color: #ed6a4e;

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    margin: 0 auto;
    margin-top: 3rem;
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
  }
}

@media screen and (min-width: 1440px) {
  .SVG-Part__items {
    list-style: none;
    gap: 0rem;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .SVG-Part__item {
    display: block;
    /* height: 10rem; is done automatically!*/
    /* width: 20rem; */
    /* no exapnd - no shrink => it guarantee that every element has minimum width of 20rem*/
    flex: 0 0 20rem;
    border: 0.125rem solid #ed6a4e;
    /* border-left: 0.25rem solid #ed6a4e; */
    padding: 1.5rem;
  }

  .SVG-Part__item-1,
  .SVG-Part__item-4 {
    border-left: none;
  }

  .SVG-Part__item-3,
  .SVG-Part__item-6 {
    border-right: none;
  }

  .SVG-Part__item-5,
  .SVG-Part__item-6,
  .SVG-Part__item-4 {
    border-bottom: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-5,
  .SVG-Part__item-6,
  .SVG-Part__item-4 {
    border-top: none;
  }

  .SVG-Part__item-3,
  .SVG-Part__item-1,
  .SVG-Part__item-2 {
    border-bottom: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-1,
  .SVG-Part__item-3,
  .SVG-Part__item-2 {
    border-top: 0.2rem solid #ed6a4e;
  }

  .SVG-Part__item-text {
    text-align: center;
    padding-top: 1.5rem;
  }

  /* first vertical line */
  /* .SVG-Part__item-1::before {
    content: "";
    border-left: 0.2rem solid #ed6a4e;
    width: 70%;
    height: 9rem;
    margin: 0 auto;
    display: block;

    position: absolute;
    left: 14rem;
    right: 0;
    top: -2rem;
    bottom: 0;
  } */

  /* .SVG-Part__item-1 {
    position: relative;
  } */

  .SVG-Part__paragraph {
    max-width: 26rem;
    display: block;
    margin: 0 auto;
    margin-top: 3rem;
    text-align: center;
  }

  .SVG-Part__container::after {
    content: "";
    display: block;
    height: 0.2rem;
    /* width: 12.5rem; */
    width: 5rem;
    background-color: #ed6a4e;

    /* margin: 2rem auto; OR USING THE TRANSFORM AND TRANSLATE TO DO THE SAME!*/
    /* transform: translateY(0rem); */
    margin: 0 auto;
    margin-top: 3rem;
    border-radius: 88888888px;
    /* box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5); */
  }
}

@media screen and (min-width: 375px) {
  .story__content-heading {
    font-size: 1.4em;
  }
  .header__nav-links {
    font-size: 0.9rem;
  }

  .heading__pre-text {
    font-size: 1.5rem;
  }

  .heading__header {
    font-size: 2.5rem;
  }

  /**************Story for mobile 375px************/
  .story {
    margin-bottom: 5rem;
    /* height: 25rem; */
    /* width: auto; */
  }

  /* .container::after {
    display: none;
  } */

  .story__content {
    background-image: url(/images/background-mobile.jpg);
    /* padding: 2rem 4rem; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    /* background-position: 50% 75%; */
    /*the photo will be positioned in center of our header*/

    /* filter: grayscale(0.5); */
    /* width: 100%;
    height: 100%; */

    /* position: relative; */
    /* width: 25rem; */
    /* height: 60rem; */
  }

  .story__content-heading {
    color: #fff;

    /* position: absolute; */
    /* bottom: 0; */
    /* top: 3rem; */
    /* right: 0rem; */
    /* left: 2rem; */
    /* padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem; */
    /* display:inline-block;
    margin: 0 auto;
    width: 30rem; */
  }

  .story__content-heading::before {
    content: "";
    width: 7.5rem;
    height: 0.25rem;
    background-color: #ed6a4e;
    margin-bottom: 1rem;
    margin-top: 2rem;

    display: block;
    /* Das ist die Wichtigste, weil das Element ein inline Element ist und width und height keine Auswirkung an einem inline Element hat! */
  }

  .story__content-heading-preText {
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    word-spacing: 0.25rem;
    font-weight: 600;

    font-size: 1rem;
  }

  .story__content-heading-header {
    text-transform: uppercase;
    word-spacing: 0.25rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    font-weight: 900;

    font-size: 1.3rem;
  }

  .story__content-heading-text-1 {
    margin-bottom: 1rem;
    line-height: 1.6rem;

    /* display: inline-block; */
    max-width: 300px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    /* text-overflow: ellipsis; */
    /* text-justify: initial; */
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.2rem;
  }

  .story__content-heading-text-2 {
    margin-bottom: 1rem;
    line-height: 1.6rem;

    max-width: 300px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.2rem;
  }

  .story__content-heading-button {
    font-weight: 700;
    /* display: block;
    margin: 0 auto; */
    text-align: center;
    /* width: 13rem; */
    margin-bottom: 2rem;

    font-size: 1rem;
  }

  .red-text {
    color: rgb(242, 105, 105);
  }

  /* .story__content-image-desktop {
    display: none;
  } */

  /* .story__content-image-mobile {
    object-fit: cover; */

  /* object-position: 50% 50%; OR*/
  /* object-position: center center;  */
  /* object-position: 50% 35%; */
  /*exact positioning of the photo in X and Y position in Center!*/

  /* display: block; */
  /* ////////////////////////////////// */
  /*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
    Die Eltern sind: adventures__card-content-new oben*/
  /* width: 100%;
    height: 100%; */
  /* ////////////////////////////////// */
  /* filter: grayscale(0); */
  /* } */
}

@media screen and (min-width: 425px) {
  .header__nav-links {
    font-size: 1.1rem;
  }

  .heading__pre-text {
    font-size: 1.5rem;
  }

  .heading__header {
    font-size: 2.5rem;
  }

  /**************Story for mobile 425px************/
  .story {
    margin-bottom: 5rem;
    /* height: 25rem; */
    /* width: auto; */
  }

  /* .container::after {
    display: none;
  } */

  .story__content {
    background-image: url(/images/background-mobile.jpg);
    /* padding: 2rem 4rem; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    /* background-position: 50% 75%; */
    /*the photo will be positioned in center of our header*/

    /* filter: grayscale(0.5); */
    /* width: 100%;
    height: 100%; */

    /* position: relative; */
    /* width: 25rem; */
    /* height: 60rem; */
  }

  .story__content-heading {
    color: #fff;

    /* position: absolute; */
    /* bottom: 0; */
    /* top: 3rem; */
    /* right: 0rem; */
    /* left: 2rem; */
    /* padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem; */
    /* display:inline-block;
    margin: 0 auto;
    width: 30rem; */
  }

  .story__content-heading::before {
    content: "";
    width: 7.5rem;
    height: 0.25rem;
    background-color: #ed6a4e;
    margin-bottom: 1rem;
    margin-top: 2rem;

    display: block;
    /* Das ist die Wichtigste, weil das Element ein inline Element ist und width und height keine Auswirkung an einem inline Element hat! */
  }

  .story__content-heading-preText {
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    word-spacing: 0.25rem;
    font-weight: 600;

    font-size: 1rem;
  }

  .story__content-heading-header {
    text-transform: uppercase;
    word-spacing: 0.25rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    font-weight: 900;

    font-size: 1.5rem;
  }

  .story__content-heading-text-1 {
    margin-bottom: 1rem;
    line-height: 1.6rem;

    /* display: inline-block; */
    max-width: 350px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    /* text-overflow: ellipsis; */
    /* text-justify: initial; */
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.2rem;
  }

  .story__content-heading-text-2 {
    margin-bottom: 1rem;
    line-height: 1.6rem;

    max-width: 350px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.2rem;
  }

  .story__content-heading-button {
    font-weight: 700;
    /* display: block;
    margin: 0 auto; */
    text-align: center;
    /* width: 13rem; */
    margin-bottom: 2rem;

    font-size: 1rem;
  }

  .red-text {
    color: rgb(242, 105, 105);
  }

  /* .story__content-image-desktop {
    display: none;
  } */

  /* .story__content-image-mobile {
    object-fit: cover; */

  /* object-position: 50% 50%; OR*/
  /* object-position: center center;  */
  /* object-position: 50% 35%; */
  /*exact positioning of the photo in X and Y position in Center!*/

  /* display: block; */
  /* ////////////////////////////////// */
  /*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
    Die Eltern sind: adventures__card-content-new oben*/
  /* width: 100%;
    height: 100%; */
  /* ////////////////////////////////// */
  /* filter: grayscale(0); */
  /* } */
}

@media screen and (min-width: 768px) {
  .header {
    background-image: url(/images/header-background.jpg); /*for desktop version*/
  }

  .container::after {
    width: 12.5rem;
    /* transform: translateY(0rem); */
    /* margin-bottom: 0.5rem; */
  }

  .header__logo {
    width: 9rem;
    margin: 0;
  }

  .header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 2rem 0;
  }

  .header__heading {
    font-size: 3rem;
    padding-top: 5rem;
  }

  .header__sub-heading {
    font-size: 1.25rem;
    /* padding-bottom: 5rem; */
    padding-bottom: 7.5rem;
  }

  /* Last child is button - I have to use last child here because i used it already in Mobile version! */
  .header__nav-ul li:last-child {
    display: inline-block;
  }

  .button--transparent-mobile-only {
    display: none;
  }

  .header__nav-ul {
    gap: 2rem;
  }

  .header__nav-li {
    align-self: center; /*to set the testimonials and tel number in the middle of the flex flow align with the button*/
  }

  .adventures {
    background-color: rgb(225, 220, 206);
    background-image: url("/images/background.jpg");
    background-repeat: no-repeat;

    /* WITHOUT THE BELOW FEATURES, THE BACKGROUND IMAGE LOOKS GOOD TOO!*/
    /* sowohl in vertikal als auch in horizontal centeriert sein soll! */
    /* background-position: 50% 50%; */
    background-size: cover;
    /* height: 100vh; */

    padding-bottom: 4rem;
  }

  .adventures__container::after {
    display: none;
  }

  /* Using Block Element Modifier => BEM */
  .heading--centered {
    text-align: center;
  }

  .heading {
    color: #014153;
    text-transform: uppercase;
    /* font-weight: bolder; */
    letter-spacing: 0.1rem;
    padding: 3rem 0;
  }

  .heading__pre-text {
    font-size: 1.5rem;
  }

  .heading__header {
    font-size: 2.5rem;
  }

  .adventures__card {
    /* height: 3rem;
    width: 3rem; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    /* margin: 0 auto; */
    list-style: none;
    /* inset(top right bottom left) => This will hide overflow on all sides */
  }

  .adventures__card-content {
    /* width: 25rem; */
    /* flex: 0 0 22.33rem; */
    width: 22.333333rem; /*(1136px/16 - (2+2rem gap)) => 71-4 = 67rem / 3 = 22.33rem*/
    /* height: 30rem; Browser rechnet automatisch!*/
    text-align: center;
    /* border: 0.1rem solid rgba(0, 0, 0, 0.25); */
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    /* overflow: hidden; */

    /* transition: transform 0.5s linear; */
    transition: transform 0.25s ease-in-out;
  }

  .adventures__card-content:hover {
    transform: scale(1.05);
  }

  .adventures__card-image {
    display: block; /*to remove very small padding between the image and the header after image!
    it was created because the image is initially an inline-block element!*/

    /* height: 20rem; Browser rechnet automatisch!*/
    /* width: 22.35rem; */
    /* width: 22.333333rem; OR the following: */
    width: 100%; /*it inherit 22.222222rem from its parent class => adventures__card-content*/
    /*(1136px/16 - (2+2rem gap)) => 71-4 = 67rem / 3 = 22.33rem*/

    /* ONE SOLUTION TO AVOID USING OVERFLOW:HIDDEN => that's why in card__content i commented overflow: hidden; out! => in this method, you say exactly which side of the photo you want to make the border-radius as 2rem:*/
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;

    /* border-radius: 2rem; */
    /* clip-path: inset(0 0 30px 0); */
    /* inset(top right bottom left) => Adjust the values to hide overflow on specific sides */
  }

  .adventures__card-header {
    font-size: 1.5rem;
    color: #014153;
    text-transform: uppercase;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .adventures__card-sub-header {
    color: #014153;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .card__date {
    /* font-weight: 600; */
    /* font-size: 1.25rem; */
  }

  .card__duration {
    color: #ed6a4e;
    /* font-weight: 600; */
  }

  .adventures__card-button {
    margin-bottom: 1.5rem;
  }

  /* ONYL FOR EXTRA INFO: Only to make the text with three points when the contents are bigger than the box size => there is not enough space for inhälte inside the box!*/
  /* .card__content h2 {
    width: 20rem; this has to go to card__content class
    white-space: nowrap; it can not go to the next row!
    overflow: hidden; it hides what stay outside of the box!
    text-overflow: ellipsis; to make the three points at the end of the text!
  } */

  /* ////////////////////////new cards///////////// */
  .adventures__card-new {
    margin-top: 5rem;
  }

  .adventures__card-content-new {
    /* width: 25rem; */
    /* flex: 0 0 22.33rem; */
    width: 22.333333rem; /*(1136px/16 - (2+2rem gap)) => 71-4 = 67rem / 3 = 22.33rem*/
    /* height: 30rem; Browser rechnet automatisch!*/
    /* height: auto; */
    height: 28.1666875rem; /*450.667px acquired from three above cards/ 16px = 28.1666875rem*/
    text-align: center;
    /* border: 0.1rem solid rgba(0, 0, 0, 0.25); */
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    /* overflow: hidden; */

    /* transition: transform 0.5s linear; */
    transition: transform 0.25s ease-in-out;

    position: relative;
    /* overflow: hidden; */
  }

  .adventures__card-content-new:hover {
    transform: scale(1.05);
  }

  .adventures__card-content-new-separated {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    /* top: 0; */

    /* -webkit- for Safari browser! */
    -webkit-backdrop-filter: blur(0.5rem) brightness(50%);
    backdrop-filter: blur(0.5rem) brightness(50%);

    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .adventures__card-header-new {
    font-size: 1.25rem;
    /* color: #014153; */
    color: #fff;
    text-transform: uppercase;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .adventures__card-sub-header-new {
    /* color: #014153; */
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .adventures__card-image-new {
    /* object-position: 90% 50%; */
    object-fit: cover; /*to avoid the scretching the photo, but a little bit truncating the photo, anyway the image aspect ration stays the same!*/

    /* object-position: 50% 50%; OR*/
    object-position: center center; /*exact positioning of the photo in X and Y position in Center!*/

    display: block; /*to remove very small padding between the image and the header after image!
    it was created because the image is initially an inline-block element!*/

    /* height: 20rem; Browser rechnet automatisch!*/
    /* width: 22.35rem; */
    /* width: 22.333333rem; OR the following: */

    /* ////////////////////////////////// */
    /*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
    Die Eltern sind: adventures__card-content-new oben*/
    width: 100%;
    height: 100%;
    /* ////////////////////////////////// */

    /*it inherit 22.222222rem from its parent class => adventures__card-content*/
    /*(1136px/16 - (2+2rem gap)) => 71-4 = 67rem / 3 = 22.33rem*/

    /* ONE SOLUTION TO AVOID USING OVERFLOW:HIDDEN => that's why in card__content i commented overflow: hidden; out! => in this method, you say exactly which side of the photo you want to make the border-radius as 2rem:*/
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;

    /* border-radius: 2rem; */
    /* clip-path: inset(0 0 30px 0); */
    /* inset(top right bottom left) => Adjust the values to hide overflow on specific sides */
  }

  /**************Story for mobile 768px************/
  .story {
    margin-bottom: 5rem;
    /* width: auto; */
  }

  /* .container::after {
    display: none;
  } */

  .story__content {
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 10%,
        transparent 90%,
        rgba(0, 0, 0, 0.5) 100%
      ),
      url(/images/background-desktop.jpg);
    /* padding: 2rem 4rem; */
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, cover;
    background-position: center center, 50% 50%;
    /* background-position: 50% 75%; */
    /*the photo will be positioned in center of our header*/

    /* filter: grayscale(0.5); */
    /* width: 100%;
    height: 100%; */

    /* position: relative; */
    /* width: 25rem; */
    /* height: 60rem; */
    background-attachment: local, fixed;
    /* local means: the linear-gradient moves itself and fixed means: the desktop image would be fixed and will not move anymore! */
  }

  .story__content-heading {
    height: 100rem;
    color: #fff;
    /* padding-left: 22.5rem; */
    padding-left: 50%;
    /* padding-top: 5rem; */
    padding-top: 90%;
    /* left: -50rem; */
    /* position: absolute; */
    /* bottom: 0; */
    /* top: 3rem; */
    /* right: 0rem; */
    /* left: 2rem; */
    /* padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem; */
    /* display:inline-block;
    margin: 0 auto;
    width: 30rem; */

    /* make the background of all items which are coming in this section a tiny darker to read it easier using text-shadow: */
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
  }

  .story__content-heading::before {
    content: "";
    width: 7.5rem;
    height: 0.25rem;
    background-color: #ed6a4e;
    margin-bottom: 1rem;
    margin-top: 2rem;

    display: block;
    /* Das ist die Wichtigste, weil das Element ein inline Element ist und width und height keine Auswirkung an einem inline Element hat! */
  }

  .story__content-heading-preText {
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    word-spacing: 0.25rem;
    font-weight: 600;

    font-size: 1rem;
  }

  .story__content-heading-header {
    text-transform: uppercase;
    word-spacing: 0.25rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    font-weight: 900;

    font-size: 1.5rem;
  }

  .story__content-heading-text-1 {
    margin-bottom: 2rem;
    line-height: 1.6rem;

    /* display: inline-block; */
    max-width: 350px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    /* text-overflow: ellipsis; */
    /* text-justify: initial; */
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1rem;
  }

  .story__content-heading-text-2 {
    margin-bottom: 2rem;
    line-height: 1.6rem;

    max-width: 350px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1rem;
  }

  .story__content-heading-button {
    font-weight: 700;
    /* display: block;
    margin: 0 auto; */
    text-align: center;
    /* width: 13rem; */
    /* margin-bottom: 2rem; */

    font-size: 1rem;
  }

  .red-text {
    color: rgb(242, 105, 105);
  }

  /* .story__content-image-desktop {
    display: none;
  } */

  /* .story__content-image-mobile {
    object-fit: cover; */

  /* object-position: 50% 50%; OR*/
  /* object-position: center center;  */
  /* object-position: 50% 35%; */
  /*exact positioning of the photo in X and Y position in Center!*/

  /* display: block; */
  /* ////////////////////////////////// */
  /*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
    Die Eltern sind: adventures__card-content-new oben*/
  /* width: 100%;
    height: 100%; */
  /* ////////////////////////////////// */
  /* filter: grayscale(0); */
  /* } */
}

@media screen and (min-width: 1024px) {
  /**************Story for mobile 1024px************/
  .story {
    margin-bottom: 5rem;
    /* height: 25rem; */
    /* width: auto; */
  }

  /* .container::after {
    display: none;
  } */

  .story__content {
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 10%,
        transparent 90%,
        rgba(0, 0, 0, 0.5) 100%
      ),
      url(/images/background-desktop.jpg);
    /* padding: 2rem 4rem; */
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, cover;
    background-position: center center, 50% 50%;
    /* background-position: 50% 75%; */
    /*the photo will be positioned in center of our header*/

    /* filter: grayscale(0.5); */
    /* width: 100%;
  height: 100%; */

    /* position: relative; */
    /* width: 25rem; */
    /* height: 60rem; */
    background-attachment: local, fixed;
    /* local means: the linear-gradient moves itself and fixed means: the desktop image would be fixed and will not move anymore! */
  }

  .story__content-heading {
    color: #fff;
    /* margin-left: 10rem; */

    padding-left: 50%;
    /* padding-top: 5rem; */
    padding-top: 60%;
    /* left: -50rem; */
    /* position: absolute; */
    /* bottom: 0; */
    /* top: 3rem; */
    /* right: 0rem; */
    /* left: 2rem; */
    /* padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem; */
    /* display:inline-block;
    margin: 0 auto;
    width: 30rem; */
  }

  .story__content-heading::before {
    content: "";
    width: 7.5rem;
    height: 0.25rem;
    background-color: #ed6a4e;
    margin-bottom: 1rem;
    margin-top: 2rem;

    display: block;
    /* Das ist die Wichtigste, weil das Element ein inline Element ist und width und height keine Auswirkung an einem inline Element hat! */
  }

  .story__content-heading-preText {
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    word-spacing: 0.25rem;
    font-weight: 600;

    font-size: 1.1rem;
  }

  .story__content-heading-header {
    text-transform: uppercase;
    word-spacing: 0.25rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    font-weight: 900;

    font-size: 1.8rem;
  }

  .story__content-heading-text-1 {
    margin-bottom: 2rem;
    line-height: 1.8rem;

    /* display: inline-block; */
    max-width: 450px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    /* text-overflow: ellipsis; */
    /* text-justify: initial; */
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.2rem;
  }

  .story__content-heading-text-2 {
    margin-bottom: 2rem;
    line-height: 1.8rem;

    max-width: 450px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.2rem;
  }

  .story__content-heading-button {
    font-weight: 700;
    width: 18rem;
    /* display: block;
    margin: 0 auto; */
    text-align: center;
    /* width: 13rem; */
    margin-bottom: 2rem;

    font-size: 1.2rem;
  }

  .red-text {
    color: rgb(242, 105, 105);
  }

  /* .story__content-image-desktop {
    display: none;
  } */

  /* .story__content-image-mobile {
    object-fit: cover; */

  /* object-position: 50% 50%; OR*/
  /* object-position: center center;  */
  /* object-position: 50% 35%; */
  /*exact positioning of the photo in X and Y position in Center!*/

  /* display: block; */
  /* ////////////////////////////////// */
  /*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
    Die Eltern sind: adventures__card-content-new oben*/
  /* width: 100%;
    height: 100%; */
  /* ////////////////////////////////// */
  /* filter: grayscale(0); */
  /* } */
}

@media screen and (min-width: 1440px) {
  /**************Story for mobile 1440px************/
  .story {
    margin-bottom: 5rem;
    /* width: auto; */
  }

  .container--1440px {
    display: flex;
    flex-direction: column;
    /* max-width: 75rem; */
    max-width: 100rem; /*90*16px = 1440px*/
    margin-left: auto;
    margin-right: auto;
    /* padding-left: 2rem;
    padding-right: 2rem; */
  }

  /* .container::after {
    display: none;
  } */

  .story__content {
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 10%,
        transparent 90%,
        rgba(0, 0, 0, 0.5) 100%
      ),
      url(/images/background-desktop.jpg);
    /* padding: 2rem 4rem; */
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, cover;
    background-position: center center, 50% 50%;
    /* background-position: 50% 75%; */
    /*the photo will be positioned in center of our header*/

    /* filter: grayscale(0.5); */
    /* width: 100%;
  height: 100%; */

    /* position: relative; */
    /* width: 25rem; */
    /* height: 60rem; */
    background-attachment: local, fixed;
    /* local means: the linear-gradient moves itself and fixed means: the desktop image would be fixed and will not move anymore! */
  }

  .story__content-heading {
    color: #fff;
    /* margin-left: 27rem; */
    padding-left: 60%;
    /* padding-top: 5rem; */
    padding-top: 40%;
    /* left: -50rem; *
    /* left: -50rem; */
    /* position: absolute; */
    /* bottom: 0; */
    /* top: 3rem; */
    /* right: 0rem; */
    /* left: 2rem; */
    /* padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem; */
    /* display:inline-block;
    margin: 0 auto;
    width: 30rem; */
  }

  .story__content-heading::before {
    content: "";
    width: 7.5rem;
    height: 0.25rem;
    background-color: #ed6a4e;
    margin-bottom: 1rem;
    margin-top: 2rem;

    display: block;
    /* Das ist die Wichtigste, weil das Element ein inline Element ist und width und height keine Auswirkung an einem inline Element hat! */
  }

  .story__content-heading-preText {
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    word-spacing: 0.25rem;
    font-weight: 600;

    font-size: 1.1rem;
  }

  .story__content-heading-header {
    text-transform: uppercase;
    word-spacing: 0.25rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    font-weight: 900;

    font-size: 1.8rem;
  }

  .story__content-heading-text-1 {
    margin-bottom: 2rem;
    line-height: 1.8rem;

    /* display: inline-block; */
    max-width: 450px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    /* text-overflow: ellipsis; */
    /* text-justify: initial; */
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.2rem;
  }

  .story__content-heading-text-2 {
    margin-bottom: 2rem;
    line-height: 1.8rem;

    max-width: 450px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.2rem;
  }

  .story__content-heading-button {
    font-weight: 700;
    width: 18rem;
    /* display: block;
    margin: 0 auto; */
    text-align: center;
    /* width: 13rem; */
    margin-bottom: 2rem;
    margin-left: 5rem;

    font-size: 1.2rem;
  }

  .red-text {
    color: rgb(242, 105, 105);
  }

  /* .story__content-image-desktop {
    display: none;
  } */

  /* .story__content-image-mobile {
    object-fit: cover; */

  /* object-position: 50% 50%; OR*/
  /* object-position: center center;  */
  /* object-position: 50% 35%; */
  /*exact positioning of the photo in X and Y position in Center!*/

  /* display: block; */
  /* ////////////////////////////////// */
  /*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
    Die Eltern sind: adventures__card-content-new oben*/
  /* width: 100%;
    height: 100%; */
  /* ////////////////////////////////// */
  /* filter: grayscale(0); */
  /* } */
}

@media screen and (min-width: 1600px) {
  /* Story Section for 1600px*/
  .story {
    margin-bottom: 5rem;
    /* height: 30rem; */
  }

  .container--1440px {
    /* height: 50rem; */
    display: flex;
    flex-direction: column;
    /* max-width: 75rem; */
    max-width: 160rem;
    /*100*16px = 1600px*/
    margin-left: auto;
    margin-right: auto;
    /* padding-left: 20rem;
    padding-top: 20rem;
    padding-right: 2rem; */
  }

  .story__content {
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 10%,
        transparent 90%,
        rgba(0, 0, 0, 0.5) 100%
      ),
      url(/images/background-desktop.jpg);
    /* padding: 2rem 4rem; */
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, cover;
    background-position: center center, 50% 50%;
    /* background-position: 50% 75%; */
    /*the photo will be positioned in center of our header*/

    /* filter: grayscale(0.5); */
    /* width: 100%;
  height: 100%; */

    /* position: relative; */
    /* width: 25rem; */
    /* height: 60rem; */
    background-attachment: local, fixed;
    /* local means: the linear-gradient moves itself and fixed means: the desktop image would be fixed and will not move anymore! */
  }

  /* .story__content-image-desktop {
      background-image: url(/images/background-desktop.jpg);
    } */

  .story__content-heading {
    color: #fff;
    padding-left: 60%;
    /* padding-top: 5rem; */
    padding-top: 30%;
    /* margin-left: 30rem;
    padding-bottom: 40rem; */
    /* margin-bottom: 0rem; */
    /* position: absolute; */
    /* bottom: 0; */
    /* top: 13rem; */
    /* right: 0rem; */
    /* left: 60rem; */
    /* padding-top: 10rem;
    padding-left: 55rem;
    padding-right: 11.5rem; */
  }

  .story__content-heading::before {
    content: "";
    width: 7.5rem;
    height: 0.25rem;
    background-color: #ed6a4e;
    margin-bottom: 1rem;

    display: block;
    /* Das ist die Wichtigste, weil das Element ein inline Element ist und width und height keine Auswirkung an einem inline Element hat! */
  }

  .story__content-heading-preText {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    word-spacing: 0.25rem;

    font-size: 1.2rem;
  }

  .story__content-heading-header {
    text-transform: uppercase;
    word-spacing: 0.25rem;
    letter-spacing: 0.2rem;

    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .story__content-heading-text-1 {
    margin-bottom: 2rem;
    line-height: 1.8rem;

    /* display: inline-block; */
    max-width: 430px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    /* text-overflow: ellipsis; */
    /* text-justify: initial; */
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.3rem;
  }

  .story__content-heading-text-2 {
    margin-bottom: 2rem;
    line-height: 1.8rem;

    max-width: 430px; /* Adjust based on your needs */
    /* overflow: hidden; */
    white-space: wrap;
    text-align: justify;
    text-justify: inter-word; /* Options: auto, inter-word, inter-character, none */

    font-size: 1.3rem;
  }

  .red-text {
    color: rgb(242, 105, 105);
  }

  .story__content-heading-button {
    font-weight: 600;
    font-size: 1.3rem;
    width: 20rem;
  }
  /* .story__content-image-mobile {
      display: none;
    } */

  /* .story__content-image-desktop {
      object-fit: cover; */

  /* object-position: 50% 50%; OR*/
  /* object-position: center center;  */
  /* object-position: 50% 35%; */
  /*exact positioning of the photo in X and Y position in Center!*/

  /* display: block; */
  /* ////////////////////////////////// */
  /*100% für width und height bedeutet: es bezieht sich auf die Eltern mit width: 22.333rem und height: 28,1666875rem.
      Die Eltern sind: adventures__card-content-new oben*/
  /* width: 100%;
      height: 100%; */
  /* ////////////////////////////////// */
  /* filter: grayscale(0);
    } */
}
