

@font-face {
  font-family: mainFont;
  src: url(/fonts/Roboto-Italic.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: mainFont;
}


:root {
  --red: rgb(121, 7, 7);
  --blue: rgb(115, 214, 244);
  --grey: rgb(242, 242, 242);
}

.under_construction {
  height: 100vh;
  width: 100vw;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,121,13,1) 54%, rgba(0,212,255,1) 100%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.under_construction p{
  font-size: 44px;
  font-weight: bold;
  color: white;
}


.contact_construction {
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: fit-content;
  width: 25%;
}

.contact_construction p {
  font-size: 22px;
  font-weight: bold;
}

.contact_construction a {
  text-decoration: none;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: all .2s ease-in-out;
}


.contact_construction a:hover {
  color: orange;
  transform: scale(1.1);
}


/* ------------------- Navigation ----------------------- */

.main_navigation {
  background-color: var(--red);
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px
}

.header_optionst a {
  font-size: 26px;
  text-decoration: none;
  color: var(--blue);
}

.header_optionst {
  width: 40%;
  display: flex;
  justify-content: space-around;
}

.smal_logo {
  height: 80%;
}

.smal_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 20%;;
}

.smal_logo img {
  height: auto;
  width: 100%;
  object-fit: contain;
}


/* ------------------- Header ----------------------- */

.main_header {
  height: 800px;
  width: 100%;
  background-image: url("/Bilder/smal_Header_image.webp");
  background-size: cover;
  position: relative;
}

.main_header_darker {
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
}


.main_header_content p:first-of-type {
  color: white;
  font-weight: bold;
  font-size: 64px;
  opacity: 1;
  margin-bottom: 60%;
}

.main_header_content p:nth-of-type(2) {
  font-size: 32px;
  color: var(--blue);
  opacity: 1;
  font-weight: bold;
  margin-bottom: 40px
}

.main_header_content {
  height: 100%;
  width: 50%;
  text-align: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  padding-top: 120px;
}

a.a_main_button {
  text-decoration: none;
  background-color: var(--blue);
  font-size: 24px;
  padding: 10px 20px;
  border-radius: 15px;
  border: 2px solid var(--red);
  color: black;
  font-weight: bold;
}



/* ------------------- Mian Content -----------------------
-----------------------------------------------------------
----------------------------------------------------------*/


/* ------------------- About me ----------------------- */

.about_me {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 30px
}


.about_me_img {
  border: 2px solid var(--blue);
  height: 250px;
  width: 250px;
  border-radius: 250px;
  position: absolute;
  overflow: hidden;
  top: -100px;
}


.about_me_img img {
  height: 250px;
  width: 250px;
  object-fit: cover;
}

.about_me_content {
  width: 60%;
  text-align: center;
  margin-top: 200px;
}


.about_me_content p:first-of-type {
  font-size: 24px;
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 20px;
}

.about_me_content p:last-of-type {
  font-size: 18px;
}


/* ------------------- Selling Point ----------------------- */

.selling_point {
  min-height: 500px;
  height: fit-content;
  width: 100%;
  background-color: var(--grey);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.selling_point p {
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: bold;
  margin-top: 30px;
}

.sellting_scrole_wrapper {
  width: 100%;
}
.selling_content {
  height: 400px;
  width: 60%;
  background-color: var(--red);
  border-radius: 25px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 30px;
}

.selling_content p:first-of-type {
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
}

.selling_content p:nth-of-type(2) {
  font-size: 22px;
  font-weight: inherit;
}

.bounce_right {
  display: inline-block;
  position: relative;
  -moz-animation: bounce_right 0.7s infinite linear;
  -o-animation: bounce_right 0.7s infinite linear;
  -webkit-animation: bounce_right 0.7s infinite linear;
  animation: bounce_right 0.7s infinite linear;
}

@-webkit-keyframes bounce_right {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}
@-moz-keyframes bounce_right {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}
@-o-keyframes bounce_right {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}
@-ms-keyframes bounce_right {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}
@keyframes bounce_right {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}

i.fa-arrow-right {
  font-size: 32px;
  color: var(--blue);
  height: 60px;
  width: 60px;
  border-radius: 40px;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
/* .bounce_left {
  display: inline-block;
  position: relative;
  -moz-animation: bounce_left 0.7s infinite linear;
  -o-animation: bounce_left 0.7s infinite linear;
  -webkit-animation: bounce_left 0.7s infinite linear;
  animation: bounce_left 0.7s infinite linear;
}


@-webkit-keyframes bounce_left {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}
@-moz-keyframes bounce_left {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}
@-o-keyframes bounce_left {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}
@-ms-keyframes bounce_left {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
}
@keyframes bounce_left {
    0% { right: 0; }
    50% { right: -0.2em; }
    70% { right: -0.3em; }
    100% { right: 0; }
} */

.sellting_scrole_wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;


}

.selling_content {
  flex: 0 0 auto;
}

.selling_content {
  margin-right: 30px;
}

.selling_content:first-child {
  margin: 0 30px;
}


/* ------------------- Selling Point ----------------------- */


.contact_main {
  height: fit-content;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact_content {
  color: black;
  font-size: 22px;
  font-weight: normal;
  width: 50%;
  height: fit-content;
  border: 2px solid black;
  border-radius: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
}

.contact_main > p {
  color: var(--blue);
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
}

.contact_content > p {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact_content input{
border-bottom: 4px solid var(--blue);
border-right: none;
border-top: none;
border-left: none;
margin-bottom: 30px;
height: 35px;
}

.contact_content input::placeholder {
  font-size: 18px;
}


.contact_content textarea {
  border-bottom: 4px solid var(--blue);
  border-right: none;
  border-top: none;
  border-left: none;
}


.contact_content textarea::placeholder {
    font-size: 18px;
  }

a.contact_button {
  max-width: 60%;
  margin: 0 auto;
  margin-top: 30px;
}





/* ---------------------- footer ---------------------- */





.main_footer {
  height: 80px;
  width: 100%;
  background-color: var(--red);
  position: absolute;
  bottom: -122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

body{
  position: relative;
}

.footer_content {
  height: 100%;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.footer_content a {
      font-size: 26px;
      text-decoration: none;
      color: var(--blue);
}
/* -----------------------------  more information -----------------------------*/

.main_more_information {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}

p.more_information_heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;;
}

p.more_information_content {
  text-align: center;
  font-size: 16px;
}

.more_information_trenner {
  height: 2px;
  width: 100%;
  border-bottom: 2px solid var(--red);
  margin: 20px 0;
}

p.more_information_content_inner {
  font-weight: bold;
}
/* ----------------------------- Impressum -----------------------------*/
p.imp_header {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

p.imp_bold {
  font-size: 18px;
  font-weight: bold;
  width: 50%;
  border-bottom: 2px solid black;
  margin-bottom: 5px;
}

p.imp_content {
  margin-left: 15px;
}

.imp_main {
  padding-left: 10px;
  height: calc(100vh - 182px);
  width: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.imp_inner {
  height: fit-content;
  width: 30%;
  margin: 0 auto;
  border: 3px solid var(--red);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.2);
}
/* ----------------------------- Datenschutz -----------------------------*/
.data_impressum {
  padding: 20px 10px;
  height: 100vh;
  width: 50%;
  margin: 0 auto;

}

p.data_head {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

p.lower_head {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

p.data_content {
  margin-left: 20px;
  margin-bottom: 30px;
}
/* ----------------------------- device optimation -----------------------------*/


@media screen and (min-width: 1100px) {
  .main_navigation {
    height: 60px;
  }

  .header_optionst a {
    font-size: 18px;
    font-weight: normal;
  }

  .smal_logo img {
    height: 90%;
    width: auto;
  }

  .main_header_content p:first-of-type {
    margin-bottom: 20px;
  }

  .footer_content a {
    font-size: 18px;
    font-weight: normal;
  }

  .main_footer {
    height: 60px;
  }
}


@media screen and (min-width: 1450px) {
  .header_optionst a {
    font-size: 20px;
    font-weight: normal;
  }

  .header_optionst {
    width: 30%;
  }

  .about_me_content p:first-of-type, .selling_point p, .contact_main > p {
    font-size: 22px;
  }

  .sellting_scrole_wrapper {
    max-width: 1200px;
  }

  .footer_content a {
    font-size: 20px;
    font-weight: normal;
  }


  .footer_content {
    width: 30%;
  }

  .contact_content {
    max-width: 900px;
  }

  .main_header {
    height: 600px;
  }

  a.a_main_button {
    padding: 5px 10px;
    font-size: 18px;
  }

  .selling_content {
    height: 450px;
  }

  .selling_content p:nth-of-type(2) {
    font-size: 18px;
  }

}

@media screen and (max-width: 1800px) {
  .selling_content {
    height: 500px;
  }

  .selling_content p:nth-of-type(2), .contact_content input::placeholder, .contact_content textarea::placeholder,   .about_me_content p:last-of-type {
    font-size: 24px;
  }

}

@media screen and (max-width: 1000px) {
  .selling_content {
    height: 700px;
  }
  .selling_content p:nth-of-type(2), .contact_content input::placeholder, .contact_content textarea::placeholder,   .about_me_content p:last-of-type {
    font-size: 26px;
  }

  .about_me_img {
    height: 250px;
    width: 250px;
  }
}

@media screen and (min-width: 1800px) {
    .footer_content {
      width: 20%;
    }

    .header_optionst {
      width: 20%;
    }

    .about_me_content p:last-of-type {
      font-size: 18px;
    }
}







/* ----------------------------- Gallery -----------------------------*/
.container .gallery a img {
  float: left;
  width: 20%;
  height: auto;
  border: 2px solid #fff;
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;
}

.container .gallery a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 5;
}

.clear {
  clear: both;
  float: none;
  width: 100%;
}

.container {
  margin-top: 20px;
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
  height: 600px;
  overflow: hidden;
  width: 100%;
}
