html,
body {
  width: 100%;
  background-color: #263147;
  margin: 0;
  padding: 0;
  color: whitesmoke;
  font-family: "Open Sans", sans-serif;
  background-color: #141414;
  position: relative;
  overflow-x: hidden;
}

body {
  overflow-y: auto;
}

h1 {
  margin: 0;
  font-size: 1.7rem;
}

h2 {
  margin: 0;
  font-size: 1.5rem;
}

p {
  margin: 0;
  color: #d4d4d4;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 300ms;
  cursor: pointer;
  font-weight: 500;
}

a:hover {
  color: #e8900c;
}

.infoPanel {
  height: 3rem;
  width: 100%;
  background-color: whitesmoke;
  color: black;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  font-weight: 500;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.fa-solid{
  color: black;
}

nav {
  height: 9rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  background-color: #1c1c1c;
  position: sticky;
  top: 0rem;
  z-index: 5;
}

nav img {
  max-width: 12rem;
}

section {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0rem;
  box-sizing: border-box;
}

section:nth-last-of-type(even) {
  background-color: #1c1c1c;
}

header {
  height: 35rem;
  width: 100%;
  background-color: rgba(137, 43, 226, 0.26);
  background-image: linear-gradient(0deg, #080808ab 0%, #0808085e 100%), url(background.jpg);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .content {
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 45rem;
  text-align: center;
  row-gap: 1rem;
}

header .content h1 {
  width: 50rem;
}

header .content .btn {
  height: 2.5rem;
  width: 8rem;
  background-color: white;
  border-radius: 0.5rem;
  color: black;
  text-align: center;
  align-content: center;
}


.features {
  padding-bottom: 0;
  display: flex;
}

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

.features .blockHolder {
  display: flex;
  flex-wrap: wrap;
  height: 20rem;
  width: 100%;
}

.features .blockHolder .block {
  height: 100%;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #1c1c1c;
}

.features .blockHolder .block p {
  width: 30rem;
}

.features .blockHolder .block::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  filter: blur(0.075rem) opacity(0.45);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.features .blockHolder .block:nth-of-type(1)::before {
  background-image: linear-gradient(0deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.5) 100%), url(feature1.jpg);
}

.features .blockHolder .block:nth-of-type(2)::before {
  background-image: linear-gradient(0deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.5) 100%), url(feature2.jpg);
}

.features .blockHolder .block:nth-of-type(3)::before {
  background-image: linear-gradient(0deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.5) 100%), url(feature3.jpg);
}

.features .blockHolder .block:nth-of-type(4)::before {
  background-image: linear-gradient(0deg, rgba(8, 8, 8, 0.5) 0%, rgba(8, 8, 8, 0.5) 100%), url(feature1.jpg);
}


.galerie .itemHolder {
  padding: 0 3rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 1.7rem;
  column-gap: 1.7rem;
}

.galerie .itemHolder .obj {
  height: 25rem;
  width: 20rem;
  background-color: #191e24;
  flex-grow: 1;
  border-radius: 0.3rem;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.galerie .itemHolder .obj:nth-of-type(1) img {
  width: 200%;
}

.galerie .itemHolder .obj:nth-of-type(4) img {
  width: 200%;
}

.galerie .itemHolder .obj:nth-of-type(6) img {
  width: 200%;
}

.galerie .itemHolder .obj:nth-of-type(10) img {
  width: 200%;
}

.galerie .itemHolder .obj:nth-of-type(12) img {
  width: 200%;
}

.galerie .itemHolder .obj:nth-of-type(13) img {
  width: 200%;
}

.galerie .itemHolder .obj:nth-of-type(15) img {
  width: 200%;
}

.galerie .itemHolder .obj:nth-of-type(3) img {
  height: 100%;
  width: auto;
}

.galerie .itemHolder .obj img {
  width: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dienstleistungen {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dienstleistungen video {
  position: absolute;
  min-width: 100%;
  z-index: -1;
  filter: blur(0.3rem) opacity(0.45);
}

.dienstleistungen .itemHolder {
  width: 100%;
  display: flex;
  padding: 0 5rem 0 5rem;
  box-sizing: border-box;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 1.7rem;
  column-gap: 1.7rem;
}

.dienstleistungen .itemHolder .item {
  height: 17rem;
  width: 15rem;
  flex-grow: 1;
  background-color: #191e24;
  background-color: #141414;
  border-radius: 0.3rem;
  text-align: center;
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  background-image: linear-gradient(180deg, #141414 0%, transparent 100%);
  overflow: hidden;
}

.dienstleistungen .itemHolder .item::before {
  content: "";
  font-size: 20rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  opacity: 0.3;
  z-index: -1;
}

.dienstleistungen .itemHolder .item:nth-child(1)::before {
  content: "1";
}

.dienstleistungen .itemHolder .item:nth-child(2)::before {
  content: "2";
}

.dienstleistungen .itemHolder .item:nth-child(3)::before {
  content: "3";
}

.dienstleistungen .itemHolder .item:nth-child(4)::before {
  content: "4";
}

.contact {
  padding-bottom: 0;
}

.contact #map {
  height: 25rem;
  width: 100%;
}

.contact .info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5rem 15rem;
  box-sizing: border-box;
}

.contact .info .left {
  min-width: 20rem;
  display: flex;
  justify-content: center;
}

.contact .info .left img {
  max-width: 12rem;
}

.contact .info .right {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  justify-content: space-around;
  flex-grow: 1;
  flex-wrap: wrap;
  padding-right: 15rem;
}

.contact .info .right .contactOptions a {
  color: #d4d4d4;
}

.contact .info .right .contactOptions a:hover {
  color: #e8900c;
}

.contact .info .right .contactOptions p {
  color: #6e6e6e;
}

.contact .info .right h2 {
  margin-bottom: 0.5rem;
}

.textHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

footer {
  padding: 3rem;
  box-sizing: border-box;
}

@media only screen and (max-width: 1750px) {
  .contact .info .right {
    padding: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .contact .info .right {
    text-align: center;
    row-gap: 2rem;
  }
}

@media only screen and (max-width: 540px) {
  .infoPanel {
    display: none;
  }

  .hidenavitem{
    display: none;
  }

  .item{
    padding-right: 22rem;
  }

  nav img{
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
  }

  header .content{
    max-width: 20rem;
  }

  header .content h1 {
    max-width: 22.5rem;
  }


  .textHeader{
    text-align: center;
    max-width: 23rem
  }
  
.blockHolder{
   margin: 31rem;
  }

  .features {
    display: none;
  }

  .right{
    min-width: 20rem;
  }

  .dienstleistungen .itemHolder .item{
    padding: 0rem;
  }

  .obj{
    display: hidden;
  }

  .textHeader p{
    max-width: 24rem;
  }

  h2 {
    margin: 0;
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 1445px) {
  .features {
    display: none;
  }
}
