/* Fonts */
@font-face {
  font-family: HelveticaNeueUltraLight;
  src: url(/fonts/HelveticaNeueUltraLight.otf);
}

@font-face {
  font-family: HelveticaNeueLight;
  src: url(/fonts/HelveticaNeueLight.otf);
}

@font-face {
  font-family: Quicksand;
  src: url(/fonts/News_Cycle/NewsCycle-Regular.ttf);
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

::-webkit-scrollbar {
  display: none;
}

/* Base styles */

body {
  font-family: HelveticaNeueUltraLight, sans-serif;
  letter-spacing: 1px;
  background-size: cover;
  background-attachment: fixed;
}

/* Normal styles */

.header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  font-family: HelveticaNeueLight, sans-serif;
  font-weight: 700;
  box-shadow: 1px 1px 3px rgb(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  background-color: rgb(255, 255, 255);
  transition: background-color 1s ease;
}

.header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  max-width: 95%;
  margin-left: 2%;
}

.logo_img {
  margin-top: -60px;
  position: fixed;
  height: 160px;
}

.nav_list {
  display: flex;
}

.nav_mobile {
  padding-top: 10px;
  display: none;
  flex-direction: column;
  font-family: HelveticaNeueUltraLight, sans-serif;
  background-color: rgba(58, 58, 58, 0.9);
}

.nav_link {
  display: flex;
  align-items: center;
  padding: 0px 20px 0px 20px;
  height: 114px;
  font-size: 22px;
  transition: background-color 0.6s, font-size 0.4s;
}

.nav_link:hover {
  background-color: rgba(150, 150, 150, 0.4);
  font-size: 24px;
}

.nav_link:focus {
  background-color: rgba(250, 250, 250, 0.2);
}

.nav_link.mobile {
  color: #fff;
  height: 2.5rem;
  font-size: 2rem;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.8);
}

.nav_link.mobile:hover {
  font-size: 2.2rem;
}

.nav_link.mobile.prais {
  color: rgb(190, 0, 0);
}

.nav_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(190, 0, 0);
  border-radius: 50px;
  height: 40px;
  padding: 25px;
  width: 11rem;
  margin-top: 30px;
  margin-left: 20px;
  color: white;
  font-size: 22px;
  transition: background-color 0.6s, font-size 0.3s;
}

.nav_btn:hover {
  background-color: rgb(240, 0, 10);
  font-size: 24px;
}

.nav_btn_menu {
  display: none;
  height: 60px;
}

main {
  width: 100%;
  height: 100vh;
  overflow: auto;
  scroll-snap-type: y mandatory;
}

.slider_container {
  width: 100%;
  height: 100%;
}

.slider {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  text-align: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background-size: cover;
  background-position: center center;
}

.slider:nth-child(1) {
  background-image: url(../images/back_01.jpg);
}

.slider:nth-child(2) {
  background-image: url(../images/back_02.jpg);
}

.slider:nth-child(3) {
  background-image: url(../images/back_03.jpg);
}

.slider:nth-child(4) {
  background-image: url(../images/back_04.jpg);
}

.slider_content {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: auto;
  background-size: cover;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.preis_form {
  display: flex;
  flex-direction: row;  
}

.preis_form.half {
  width: 50%;
  flex-direction: column;
  margin: 1%;
}

.preis_form.inputs   {
  width: 100%;
  flex-direction: column;
  margin-top: auto;
  height: 20vh;
  padding: 5%;
  background-color: #a0a0a050;
  border-radius: 10px;
}

.input {
  width: 90%;
  text-align: right;
  padding: 5px;
  margin-bottom: 2%;
  font-size: 150%;
  border-radius: 15px;
}

.select {
  width: 100%;
  text-align: left;
  padding: 5px;
  margin-bottom: 2%;
  font-size: 150%;
  border-radius: 15px;
}

.flex_rows {
  display: flex;
  flex-direction: row;
}

.img_container {
  background-image: url('../../images/back_06.jpg');
  height: 100vh;
  width: 30%;  
  background-size: cover;
  background-position: center center;
}

.preis_container {
  height: 100vh;
  width: 70%;
  padding-top: 8%;
  padding-bottom: 5%;
  transition: display 10s;
  animation: appear 1s;
}

@keyframes appear {
  from {opacity: 0; margin-top: 5%;}
  to {opacity: 1; margin-top: 0;}
}

.p_01 {
  display: block;
}

.p_02 {
  display: none;
}

.slider_text {
  color: #000000;
  text-shadow: 2px 2px 4px #000000;
  padding-top: 25%;
  margin: auto;
  position: relative;
  margin-left: 3%;
  width: 90%;
}

.slider_title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 15px;
  text-transform: uppercase;
}

.slider_description {
  font-size: 2rem;
  margin-top: 25px;
}

.scroll {
  margin-top: 5%;
  height: 80px;
}

hr {
  border: 1px rgba(0, 0, 0, 0.4) solid;
  margin: 3%;
}

.content_gray_top {
  width: 100%;
  height: auto;
  padding-top: 150px;
  background-color: rgb(37, 37, 37);
}

.partners_container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.partner_img {
  width: 100%;
}

.mid_text_title_b {
  font-size: 3rem;
  font-weight: 800;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0px 0 0px;
}

.mid_text_b {
  font-size: 1.6rem;
  font-weight: 1000;
  padding: 2%;
  color: #000000;
  text-align: center;
}

.mid_text_small_b {
  padding: 1%;
  font-family: HelveticaNeueLight;
  font-size: 0.8rem;
  font-weight: 800;
}

.mid_text_title_w {
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0px 0 0px;
}

.mid_text_w {
  font-size: 1.3rem;
  color: #ffffff;
  text-align: center;
  padding: 10px 60px 0 60px;
}

.cols2 {
  column-count: 2;
  margin: 2%;
}

.dots {
  list-style: circle;
  text-align: left;
}

.center {
  max-width: fit-content;
  margin: auto;
}

.persona {
  margin: auto;
  width: 100%;
  padding: 5%;
  height: auto;
  display: flex;
  background-color: rgb(37, 37, 37);
  justify-content: space-between;
  color: #fff;
}

.persona_item {
  padding: 1%;
}

.persona_photo {
  margin: auto;
  display: flex;
  width: 70%;
  border-radius: 50%;
  border: 10px solid #38383883;
}

.img_photo {
  position: relative;
  padding-top: 4vh;
}

.img_photo.i01 {
  margin-bottom: -9%;
  width: 40%;
}

.img_photo.i03 {
  margin-bottom: -7%;
}

.persona_description {
  margin: auto;
  width: 80%;
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.persona_title {
  padding: 5% 0 5% 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.content_white_top {
  height: auto;
  background-color: rgb(255, 255, 255);
  align-items: center;
  padding-top: 10%;
}

.content_white {
  height: auto;
  background-color: rgb(255, 255, 255);
  align-items: center;
}

.feedback_text {
  font-size: 130%;
  margin: auto;
  width: 80%;
}

fieldset {
  font-size: 100%;
  font-weight: 800;
  margin-left: 5%;
  padding: 1%;
  border: 1px solid rgb(95, 95, 95);
  width: 90%;
}

fieldset:hover {
  border: 1px solid rgb(255, 75, 75);
  box-shadow: 0px 2px 3px rgba(255, 81, 81, 0.8);
}

legend {
  font-size: 90%;
  font-weight: 800;
  text-align: left;
  margin-left: 2%;
}

textarea {
  resize: none;
  margin: 0;
  padding: 0;
  width: 100%;
  padding-left: 1%;
  font-family: HelveticaNeueLight;
  font-size: 110%;
  font-weight: 800;
  outline: 1px transparent;

}

textarea:focus {
  outline: 1px transparent;
}

button {
  width: 11rem;
  align-items: center;
  background-color: rgb(190, 0, 0);
  border-radius: 50px;
  align-self: center;
  padding: 10px;
  height: 3rem;
  margin-bottom: 2%;
  color: white;
  font-size: 22px;
  transition: background-color 0.5s, font-size 0.3s, padding 0.3s;
}

button:hover {
  font-size: 24px;
  background-color: rgb(247, 0, 0);
  cursor: pointer;
}

.footer {
  width: 100%;
  background-color: #ffffffdc;
  text-align: right;
  padding: 10px;
}

.footer_text {
  font-family: HelveticaNeueLight;
  font-size: 1.1rem;
  font-weight: 800;
  color: #000000;
  text-shadow: 1px 1px 2px #3333336c;
  padding: 1rem;
}

b {
  font-size: 1.5rem;
  color: rgb(196, 0, 0);
  text-shadow: 1px 1px 2px #3333336c;
}

/* Media Styles */
@media (max-width: 1300px) {
  .logo_img {
    margin-top: -43px;
    height: 120px;
  }

  .nav_link {
    height: 86px;
    font-size: 1rem;
    padding: 0px 15px 0px 15px;
  }

  .nav_link:hover {
    font-size: 1.1rem;
  }

  .nav_btn {
    font-size: 1rem;
    margin-top: 22px;
    padding: 0;
    width: 9rem;
  }

  .nav_btn:hover {
    font-size: 1.1rem;
  }
}

@media (max-width: 950px) {
  .logo_img {
    margin-top: -37px;
    height: 100px;
  }

  .nav_link, .nav_btn {
    display: none;
  }

  .nav_link.mobile {
    display: flex;
    padding: 10px;
  }

  .nav_btn_menu {
    display: flex;
    margin: 10% 0 10% 0;
  }

  .content_gray_top {
    padding-top: 20%;
  }

  .partners_text {
  margin-bottom: 20px;
  }

  .content_white_top {
    padding-top: 20%;
  }

  .flex_rows {
  flex-direction: column;
  }

  .img_container {
    display: none;
  }

  .preis_container {
    margin-top: 15%;
    width: 100%;
  }

  .preis_form {
    flex-direction: column;  
  }

  .preis_form.half {
    width: 90%;
    margin: 5%;
  }

  .persona {
    flex-direction: column;
  }

  .persona_description {
    width: 90%;
    padding: 1rem;
    border-bottom: 1px #747474 solid;
    margin-bottom: 2%;
  }

  .img_photo {
    width: 90%;
  }

  .img_photo.i01 {
    width: 90%;
    margin-bottom: -20%;
  }

  .img_photo.i03 {
      margin-bottom: -20%;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  input {
    width: 80%;
  }

  .mid_text_b {
    padding: 1%;
    font-size: 1rem;
  }

  .mid_text_title_b {
    font-size: 1.6rem;
  }

  .mid_text_w {
    padding: 1%;
    font-size: 1rem;
  }

  .mid_text_title_w {
    font-size: 1.6rem;
  }

  .cols2 {
    padding-left: 5%;
  }

  .footer {
    padding-bottom: 10%;
  }
}