@charset "utf-8";
/* CSS Document */
/*######################Desktop###########################*/
@media screen and (min-width: 1024px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    min-height: 2000px;
    background-color: #2e8d86;
    height: 100vh;
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/barlow-v13-latin-regular.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/barlow-v13-latin-600.woff2') format('woff2');
  }
  video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0 100px;
    background: #000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: 1s;
    z-index: 10;
  }
  header.sticky {
    height: 80px;
    background: #000;
  }
  header .logo {
    position: absolute;
    top: 55%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.5s ease;
  }
  header .logo img {
    width: 100%;
    max-width: 70vw;
    height: auto;
    transition: all 0.5s ease;
  }
  header.sticky .logo {
    top: 50%;
    left: 50px;
    transform: translate(0, -50%);
  }
  header.sticky .logo img {
    width: 100px;
  }
  nav {
    position: relative;
    display: flex;
    z-index: 1;
    position: sticky;
  }
  nav img {
    width: 50px;
    height: 50px;
  }
  nav ul {
    position: relative;
    display: flex;
    transition: 0.25s;
    transform: translateX(100px);
    opacity: 0;
  }
  header.sticky nav ul {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.75s;
  }
  nav ul li {
    list-style: none;
  }
  nav ul li a {
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.2em;
    text-decoration: none;
    transition: 0.2s ease;
    font-weight: 600;
  }
  nav ul li a:hover {
    padding-bottom: 4px;
    box-sizing: border-box;
    border-bottom: 6px solid rgba(255, 255, 255, 0.6);
  }
  header.sticky nav ul {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.75s;
  }
  /*#################################main#####################################*/
  #main {
    display: flex;
    flex-direction: column;
  }
  .cont2 {
    height: auto;
    background: #2e8d86;
    margin: 0 0 200px 0;
    z-index: 1;
  }
  /*##################################about####################################*/
  .vita {
    margin: 45% 0 0 0;
  }
  #about {
    padding: 14% 0 0 5%;
    margin: 0 auto;
    font: 400 1.6rem Barlow, sans-serif;
    text-align: left;
    font-size: 2rem;
    line-height: 2.2rem;
    color: #fff;
    width: 55%;
    float: left;
  }
  .signature {
    width: 20%;
    padding: 2% 0 0 0;
    margin: 0 auto
  }
  .cont2, p {
    padding: 5% 0 0 5%;
  }
  h2 {
    color: #fff;
    padding: 2%;
    left: 20%;
  }
  h3 {
    font-size: 2.2rem;
    line-height: 2.2rem;
    padding: 0 0 5% 0;
    color: #071A33;
  }
  /*#############################visitenkarte###################################*/
  #visitenkarte {
    padding: 2% 0 0 0;
    margin: 2rem auto;
    width: 300px;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: white;
    border-radius: 3%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.1s ease;
  }
  #visitenkarte:hover {
    transform: translateY(-10px);
  }
  #visitenkarte img {
    width: 80%;
    height: auto;
  }
  .info {
    font: 400 1.7rem Barlow, sans-serif;
    position: static;
    width: 100%;
    padding: 0 0 7% 0;
    line-height: 30px;   
  }   
  .beruf {
    color: #2e8d86;      
  }
  .kontakt {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 9% 0 0 0;
  }
  .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    cursor: pointer;
  }
  .icon img {
    width: 100%;
    height: auto;
  }
  .telefon, .email {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .icon:hover {
    transform: scale(1.1);
    transition: 0.2s ease;
  }
  /*######################Schwebeboxen#####################################*/
  .cont {
    margin: 0% auto;
    padding: 14%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
  }
  .cont img {
    width: 500px;
    justify-content: center;
    padding: 2%;
  }
  .cont p {
    font-size: 3rem;
    color: #fff;
  }
  .box.right-box-3, h2 {
    z-index: 1;
  }
  .right-box-3 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.4rem;
  }
  .right-box-3 video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .right-box-3 h1 {
    position: absolute;
    transform: translateY(-50%) rotate(90deg);
    left: -55%;
    top: 50%;
    color: #fff;
    margin: 0;
    z-index: 2;
  }
  /*#################################Leistungen########################################*/
  .cont3 {
    color: #354051;
    font-size: 1.3rem;
    line-height: 30px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
  }
  .box {
    width: 450px;
    height: 450px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
    z-index: 1;
  }
  .box p {
    writing-mode: vertical-rl;
    margin: 0 0% 0 0
  }
  .sticky .cont .box {
    z-index: -1;
  }
  .show-left, .show-right, .show-left-2, .show-right-2 {
    opacity: 1;
  }
  .show-left {
    transform: translateX(-250px);
    opacity: 1;
    transition-delay: 0.5s;
  }
  .show-right {
    transform: translateX(300px);
    opacity: 1;
    transition-delay: 1s;
  }
  .show-left-2 {
    transform: translateX(-300px);
    opacity: 2;
    transition-delay: 2s;
  }
  .show-right-2 {
    transform: translateX(300px);
    opacity: 1;
    transition-delay: 2.5s;
  }
  section {
    padding: 60px 0;
  }
  .Leistungen {
    width: 80%;
    margin: 0 auto;
    max-width: 80%;
  }
  .Leistungen p {
    text-align: left;
    padding: 0 0 2% 0;
  }
  section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
  }
  .services, .portfolio, .about {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
  }
  .service, .portfolio-item {
    background: #fff;
    margin: 10px;
    padding: 20px;
    width: 30%;
    box-sizing: border-box;
    transition: transform 0.3s;
  }
  .service:hover, .portfolio-item:hover {
    transform: scale(1.05);
  }
  .service {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 6px;
    overflow: hidden;
  }
  .service p {
    padding: 2%;
    line-height: 1.7rem;
    color: #fff;
  }
  #services img {
    width: 100%;
    margin: 0 auto;
  }
  .galerie {
    margin-top: auto;
  }
  .galerie img {
    width: 100%;
  }
  .button a {
    display: inline-block;
    font-size: 0.8rem;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    color: #2e8d86;
    padding: 6px 14px;
    border-radius: 4px;
  }
  .button {
    text-align: center;
    font-weight: 600;
    margin: 0 auto;
    color: #2e8d86;
  }
  /*###########################whatsapp#############################*/
  .whats {
    display: block;
    margin: 0 auto;
    padding: 1%;
    width: 25%;
    text-align: center;
    background-color: orange;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
  }
  .whats:hover {
    background-color: #fff;
  }
  section {
    padding: 0 0 10% 0;
    ;
  }
  .container p {
    text-align: center;
    padding: 0 0 2% 0;
    font-size: 2rem;
  }
  .whats, a {
    color: #000;
    font-weight: 600;
  }
  .write {
    color: #fff;
    font-weight: 600;
  }
  .container .rights {
    font-size: 1rem;
  }
  footer {
    height: auto;
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
  }
  footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    text-transform: uppercase;
  }
  /*######################Impressum###########################*/
  .impressum {
    font-size: 1.7rem;
    padding: 5%;
  }
  .weblink a {
    text-decoration: none;
    color: #fff
  }
  h2 {
    font-size: 4rem;
    margin: 0 0 0 -20px;
  }
  h4 {
    font-size: 2rem;
  }
  /*######################Datenschutz###########################*/
  .datenschutz {
    font-size: 1.7rem;
    padding: 3%;
  }
  .datenschutz h2 {
    font-size: 2rem;
    margin: 2% 0 -6% 3%;
    text-align: left;
    color: #000;
  }
}
/*######################tablet###########################*/
@media screen and (min-width: 600px) and (max-width: 1023px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/barlow-v13-latin-regular.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/barlow-v13-latin-600.woff2') format('woff2');
  }
  h1 {
    color: #fff;
    text-align: center;
    font-weight: 100;
    padding: 10%
  }
  h2 {
    font-size: 9rem;
    color: orange;
    padding: 30% 0 10% 0
  }
  h3 {
    font-size: 4rem;
    text-align: center;
    color: #fff;
  }
  body {
    background-color: #2e8d86;
    height: auto;
  }
  video {
    position: relative;
  }
  .banner {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
  .banner video {
    width: 100%;
    height: 80%;
    object-fit: cover;
  }
  .logo img {
    position: absolute;
    height: auto;
    width: 450px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
  }
  /*###################### Navigation #####################*/
  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 2%;
    z-index: 1000;
  }
  nav img {
    width: 40px;
    height: 40px;
  }
  nav ul {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 50px;
  }
  #about p {
    font-size: 2rem;
    text-align: left;
    padding: 0 15% 15% 15%;
    color: #fff;
  }
  #visitenkarte img {
    display: flex;
  }
  .kontakt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
  }
  .kontakt img {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    padding: 5%;
  }
  img.profilbild {
    width: 50%;
    height: auto;
    padding: 5% 0 0 0;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
  }
  .info {
    font-size: 1.9rem;
    line-height: 50px;
    text-align: center;
    padding: 9%;
    color: #fff
  }
  .info img {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    padding: 5%;
  }
  .telefon, .email {
    display: none;
  }
  .beruf {
    padding: 0 0 9% 0;
    color: #071A33;
    font-size: 2.4rem
  }
  .ves {
    font-size: 3.3rem;
    padding: 0 0 5% 0;
  }
  .services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
  }
  .service {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
  }
  .service h3 {
    font-size: 2.2rem;
    text-align: center;
    color: #071A33;
    padding: 20px 15px 10px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service p {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    padding: 20px;
    flex-grow: 1;
  }
  #services {
    padding: 5%;
  }
  #services img {
    width: 100%;
    margin: 0 auto;
  }
  .button {
    width: 100%;
    text-align: center;
    padding: 20px 0 30px;
  }
  .button a {
    display: inline-block;
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: 12px 25px;
    font-size: 1.4rem;
    border-radius: 5px;
  }
  .galerie {
    margin-top: auto;
  }
  .galerie img {
    width: 100%;
    display: block;
    padding: 0;
  }
  .cont img {
    width: 70%;
    justify-content: center
  }
  .cont p {
    font-size: 1.9rem;
    text-align: center;
    color: #FFFFFF;
    padding: 14% 0 0 0
  }
  .cont section {
    text-align: center;
    color: #FFF;
  }
  .right-box-3 video {
    width: 70%;
  }
  /*###########################whatsapp#############################*/
  section {
    padding: 0 0 10% 0;
  }
  .whats {
    display: block;
    margin: 0 auto;
    width: 55%;
    text-align: center;
    background-color: orange;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1.7rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }
  .whats, a {
    padding: 3%;
  }
  .container p {
    text-align: center;
    width: 110%;
    color: #fff;
    padding: 0 0 15% 0;
    font-size: 1.9rem;
  }
  .container .write {
    padding: 0 0 3% 0;
    width: 60%;
    margin: 0 auto;
  }
  footer {
    height: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
  }
  footer p {
    font-size: 0.9rem;
  }
  footer a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
  }
  footer p {
    font-size: 1em;
  }
  .container .rights {
    font-size: 1.2rem;
    padding: 20px;
  }
  .impdat {
    padding: 20px;
    font-size: 1.2rem;
  }
}
/*######################mobile###########################*/
@media screen and (max-width: 599px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/barlow-v13-latin-regular.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/barlow-v13-latin-600.woff2') format('woff2');
  }
  h1 {
    color: #fff;
    text-align: center;
    font-weight: 100;
    padding: 10%
  }
  h2 {
    font-size: 9rem;
    color: orange;
    padding: 30% 0 10% 0
  }
  h3 {
    font-size: 1.9rem;
    text-align: center;
    color: #fff;
  }
  body {
    min-height: 2000px;
    background-color: #2e8d86;
    height: auto
  }
  video {
    position: relative;
  }
  .banner {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
  .banner video {
    width: 100%;
    height: 80%;
    object-fit: cover;
  }
  .logo img {
    position: absolute;
    height: auto;
    width: 250px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
  }
  /*###################### Navigation #####################*/
  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 2%;
    z-index: 1000;
  }
  nav img {
    width: 35px;
    height: 35px;
  }
  nav ul {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 10px;
  }
  #about p {
    font-size: 1.5rem;
    text-align: left;
    padding: 0 15% 15% 15%;
    color: #fff;
  }
  #visitenkarte img {
    display: flex;
  }
  .kontakt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
  }
  .kontakt img {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    padding: 5%;
  }
  img.profilbild {
    width: 90%;
    height: auto;
    padding: 5% 0 0 0;
    background: #fff;
    border-radius: 9%;
    margin: 0 auto;
  }
  .info {
    font-size: 1.9rem;
    line-height: 2rem;
    text-align: center;
    padding: 9%;
    color: #fff;
  }
  .info img {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    padding: 5%;
  }
  .telefon, .email {
    display: none;
  }
  .beruf {
    padding: 0 0 9% 0;
    color: #000;
    font-size: 1.6rem
  }
  .service p {
    font-size: 1.2rem;
    padding: 5%;
    text-align: center;
  }
  #services {
    padding: 5%;
  }
  #services img {
    width: 100%;
    margin: 0 auto;
  }
  .button {
    text-align: center;
    padding: 0 0 20% 0;
  }
  .button a {
    text-decoration: none;
    background-color: #ddd;
    font-size: 1rem;
    color: #000;
    padding: 3%;
    border-radius: 3px;
  }
  .galerie img {
    padding: 5% 5% 9% 5%;
  }
  .cont img {
    width: 70%;
    justify-content: center
  }
  .cont p {
    font-size: 1.7rem;
    text-align: center;
    color: #FFFFFF;
    padding: 14% 0 0 0
  }
  .cont section {
    text-align: center;
    color: #FFF;
  }
  .right-box-3 video {
    width: 70%;
  }
  /*###########################whatsapp#############################*/
  .whats {
    display: block;
    margin: 0 auto;
    width: 55%;
    text-align: center;
    background-color: orange;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
  }
  .whats, a {
    padding: 3%;
  }
  .container p {
    text-align: center;
    width: 110%;
    color: #fff;
    padding: 0 0 5% 0;
    font-size: 1.4rem;
  }
  .container .write {
    width: 80%;
    padding: 50px;
    margin: 0 auto;
  }
  .container .rights {
    padding: 10px;
    font-size: 1rem;
  }
  .container, .whats {
    font-size: 1rem;
    padding: 20px;
  }
  .impdat {
    padding: 10px;
    font-size: 1rem;
  }
  footer {
    height: auto;
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
  }
  footer p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    text-transform: uppercase;
  }
  footer p {
    font-size: 0.9em;
  }
}