/* =========================================================
   Fonts
========================================================= */

@font-face {
  font-family: "Google Sans Flex";
  src: url("../fonts/GoogleSansFlex_120pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("../fonts/GoogleSansFlex_120pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stack Sans Notch";
  src: url("../fonts/StackSansNotch-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* =========================================================
   Base
========================================================= */

:root {
  --font-primary: "Google Sans Flex", Arial, Helvetica, sans-serif;
  --font-display: "Stack Sans Notch", "Google Sans Flex", Arial, Helvetica, sans-serif;
  --color-text: #111111;
  --color-background: #ffffff;
  --lumore-blue: #18232a;
  --lumore-coral: #ff5156;
  --accordion: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ff5156' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --accordion-hover: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2318232a' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");

}
.accordion-button::after{
    background-image:var(--accordion);
            transition:0.5s cubic-bezier(.8,0,.38,1);

}
.accordion-button:not(.collapsed)::after{
        background-image:var(--accordion);

}

.accordion-button:hover:after{
    background-image:var(--accordion-hover);
            transition:0.5s cubic-bezier(.8,0,.38,1);

}
.accordion-button:not(.collapsed):hover::after{
            background-image:var(--accordion);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--lumore-blue);
  background: var(--color-background);
  line-height: 1.5;
}


/* =========================================================
   Typography
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

h2{
    font-size:3.5em;
    margin-bottom:1rem;
}

h3{
    font-family:var(--font-primary);
    font-weight:600;
    font-size:1.5rem;
}

p {
  margin-top: 1rem;
  margin-bottom:1rem;
  font-size:1.25em;

}

a {
  color: inherit;
  text-decoration: none;
}

strong,
b {
  font-weight: 600;
}

strong{
    font-family: var(--font-primary);
}

.buttoncontainer{
    margin-top:2rem;
    display:flex;
    gap:2rem;
    justify-content:center;
}
a.button, .btn, .btn-primary{
    padding:0.75rem 1.5rem;
    border-radius:2rem;
    font-family:var(--font-primary);
    font-weight:600;
    font-size:1.5em;
}

a.button.primary, .btn, .btn-primary{
    background-color:var(--lumore-coral);
    color:var(--lumore-blue);
    border:2px solid var(--lumore-coral);
        transition:0.5s cubic-bezier(.8,0,.38,1);

}

a.button.primary:hover, .btn:hover, .btn-primary:hover{
    background-color:var(--lumore-blue);
    border:2px solid var(--lumore-blue);
    color:var(--lumore-coral);
    transform:scale(1.05);
    box-shadow:0px 0px 2rem var(--lumore-coral);
        transition:0.5s cubic-bezier(.8,0,.38,1);

}

a.button.secondary{
    background:transparent;
    border:2px solid transparent;
    color:white;
            transition:0.5s cubic-bezier(.8,0,.38,1);
position:relative;
        }

a.button.secondary:after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:2px;
    width:calc(80% + 0.5rem);
    height:2px;
    background-color:white;
                transition:0.5s cubic-bezier(.8,0,.38,1);

}

a.button.secondary:hover{
    border:2px solid transparent;
    transform:scale(1.05);
    text-shadow:0px 0px 1.5rem var(--lumore-coral);
            transition:0.5s cubic-bezier(.8,0,.38,1);

}
a.button.secondary:hover:after{
        box-shadow:0px 0px 2rem var(--lumore-coral);
        transition:0.5s cubic-bezier(.8,0,.38,1);
            width:calc(100% + 0.5rem);
}


/**** KEYFRAME ANIMATIONS *****/
@keyframes flow{
    0%{ transform:translateX(0);opacity:0.00;}
    2%{ transform:translateX(-4%);opacity:0.05;}
    98%{ transform:translateX(-196%);opacity:0.05}
    100%{transform:translateX(-200%);opacity:0}
}

@keyframes blurInSlow{
    0%{transform:translateY(-50px)scale(1.5);filter:blur(20px);opacity:0}
    100%{transform:translateY(0)scale(1);filter:blur(0);opacity:1}
}
.blurInSlow{
    animation:blurInSlow 1s cubic-bezier(.8,0,.38,1);
}
@keyframes fadeInTopSlow{
    0%{transform:translateY(40px)scale(1.1);opacity:0}
    100%{transform:translateY(0)scale(1);opacity:1}
}
@keyframes fadeInDownSlow{
    0%{transform:translateY(-40px)scale(1.1);opacity:0}
    100%{transform:translateY(0)scale(1);opacity:1}
}
@keyframes fadeInLeftSlow{
    0%{transform:translateX(-40px)scale(1.1);opacity:0}
    100%{transform:translateY(0)scale(1);opacity:1}
}
.fadeInTopSlow{
    animation:fadeInTopSlow 1s cubic-bezier(.8,0,.38,1);
}
.fadeInDownSlow{
    animation:fadeInDownSlow 1s cubic-bezier(.8,0,.38,1);
}
.fadeInTopMed{
    animation:fadeInTopSlow 0.6s cubic-bezier(.8,0,.38,1);
}
.fadeInDownMed{
    animation:fadeInDownSlow 0.6s cubic-bezier(.8,0,.38,1);
}
.fadeInLeftMed{
    animation:fadeInLeftSlow 0.6s cubic-bezier(.8,0,.38,1);
}
/* =========================================================
   Media
========================================================= */

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}


/* =========================================================
   Layout
========================================================= */
nav{
    position:fixed;
    top:0;
    left:0;
    display:flex;
    padding: 2rem 8rem !important;
    width: 100%;
    justify-content:space-between;
    align-items:center;
    z-index:99;
    transition:0.5s cubic-bezier(.8,0,.38,1);
}

.nav--scrolled{
    background-color:var(--lumore-blue);
    transition:0.5s cubic-bezier(.8,0,.38,1);
    padding:1.5rem 4rem;
}
.logo{
    width:15rem;
        transition:0.5s cubic-bezier(.8,0,.38,1);
}

.logo:hover{
    transform:scale(1.1);
        transition:0.5s cubic-bezier(.8,0,.38,1);

}


.main-nav{
    padding:0;
    margin:0;
    display:flex;
    gap:1rem;
}

.main-nav li{
    list-style:none;
    display:flex;
    gap:1rem;
    align-items:center;
}

.main-nav li:after{
    content:"";
    width:5px;
    height:5px;
    display:block;
    background-color:var(--lumore-coral);
}

.main-nav li:last-child:after{
    display:none;
}

.main-nav li a{
    color:white;
    font-weight:600;
    font-family:var(--font-primary);
    font-size:1.5em;
    transition:0.5s cubic-bezier(.8,0,.38,1);
}

.main-nav li a:hover{
    transform:scale(1.2);
    text-shadow:0px 0px 1.5rem var(--lumore-coral);
   transition:0.5s cubic-bezier(.8,0,.38,1);
}


/* TEST */
/* =========================================================
   Mobile Menu
========================================================= */

.mobile-toggle {
  position: relative;
  z-index: 1001;

  display: none;

  width: 54px;
  height: 54px;

  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  position: absolute;
  right:1rem;

  width: 30px;
  height: 2px;

  background: #ffffff;

  transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
  top: 18px;
}

.mobile-toggle span:nth-child(2) {
  top: 26px;
}

.mobile-toggle span:nth-child(3) {
  top: 34px;
}


/* Active */

.mobile-toggle.active span:nth-child(1) {
  top: 26px;
  transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  top: 26px;
  transform: rotate(-45deg);
}


/* =========================================================
   Mobile Nav
========================================================= */



/* TEST END */

header{
    height:100vh;
    width:100%;
    display:flex;
    background-color:var(--lumore-blue);
        align-items:center;
        position:relative;
        background:linear-gradient(343deg,rgba(255, 81, 86, 1) 0%, rgba(24, 35, 42, 1) 40%);
}

.siteheader{
    height:50vh;
}

header span, .siteheader h1{
    font-size:4.5em;
    color:white;
    font-family:var(--font-display);    
    line-height: 1em;
    margin-bottom: 1rem;
    display: block;
}
header h1{
    font-size:1.5em;
    line-height:1.5em;
    color:white;
    font-family:var(--font-primary);
}


.textcaption-50{
    width:65%;
}

header .textcaption-50{
  width:100% !important;
}

.textcaption-30{
    width:30%;
}

.design-caption{
    position:absolute;
    bottom:-2rem;
    width:100%;
    overflow:hidden;
    text-wrap:nowrap;
}

.design-caption h2, .design-caption h3{
    font-size:10rem;
    color:white;
    opacity:0.05;
    animation:flow 30s linear infinite;
}



.content{
    width:80%;
    padding:6rem;
    margin: 0 auto;
}
section{
    position:relative;
}
section.contact .d-flex{
    gap:2rem;
}

section.contact .ansprechpartner{
    width:30%;
}

section.dark p,section.dark strong,section.dark h2{
    color:white;
}

section.dark.left{
        background:linear-gradient(23deg,  rgba(255, 81, 86, 1) 0%,rgba(24, 35, 42, 1) 40%);
}

section.dark.right-top{
            background:linear-gradient(200deg,  rgba(255, 81, 86, 1) 0%,rgba(24, 35, 42, 1) 40%);

}
.dark{
    background-color:var(--lumore-blue);
}

.red-box{
    background-color:var(--lumore-coral);
    padding:1.5rem;
    color:var(--lumore-blue) !important;
    border-radius:1.5rem;
    height:auto;
}

.red-box a.button.secondary{
    color:var(--lumore-blue) !important;
}

.accordion{
    margin-top:2rem;
        display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-header{
    font-size:1.5rem;
    font-family:var(--font-primary);
    font-weight:600;
    display:flex;

}
.accordion-button{
    background-color:var(--lumore-blue);
    color:white;
    font-size:inherit;
    font-weight:inherit;
    border-radius:4rem !important;
        padding:1.5rem;
                   transition:0.5s cubic-bezier(.8,0,.38,1);

}

.accordion-button:hover{
               transition:0.5s cubic-bezier(.8,0,.38,1);
background-color:var(--lumore-coral);
color:var(--lumore-blue);
}

.accordion-header h3{
        font-size:1.5rem;
    font-family:var(--font-primary);
    font-weight:600;
    margin-bottom:0;
}
.accordion-header h4{
    font-family:var(--font-primary);
    font-weight:400;
    color:white;
    font-size:1.25rem;
    margin-bottom:0;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    right:5rem;
}
.accordion-button:not(.collapsed){
    background-color:var(--lumore-blue);
    color:var(--lumore-coral);
}

.accordion-item{
    border:none;
}
.accordion-body{
    padding-top:1.5rem;
    padding-bottom:1.5rem;
    display:flex;
    gap:1.5rem;
}

.reference-img{
    width:40%;
}

.accordion-body p{
    font-size:1.25em;
    margin:0;
}

.red-dot{
    position:relative;
    max-width:fit-content;
    margin:0px auto;
    margin-bottom:1rem;
}

.red-dot:after{
    content: ".";
    position: absolute;
    bottom: 0;
    right: -1rem;
    color: var(--lumore-coral);
}

form{

    margin-top:2rem;
}

.form-group{
    margin-bottom:1.5rem;
}


select, input, textarea, .form-label, .form-control, textarea.form-control, .form-select{
    border-radius:1.5rem;
}
.form-control, .form-select{
    padding:0.75rem !important;
}
select.form-control, .form-select {
    padding-left: 1rem !important;
}
.form-control::placeholder{
    padding-left:0.25rem !important;
}
label{
    display:none;
}
.form-check{
    padding-left:0px;
}
.form-check-label{
    display:block;
}

.form-check span{
    padding-left:0.75rem;
}

span.required{
    padding-left:0px;
    font-weight:600;
    color:var(--lumore-coral);
}

label, .form-text{
    color:white;
}
.form-check-wrapping-label{
  display:flex;
  justify-content:center;
}
.form-check-label{
  margin-left:1rem;
}

.form-text, label, .form-control::placeholder, select.form-control, .form-select{
    font-family:var(--font-primary);
    font-size:1.25rem;
        line-height: 1.5rem;
}

label{
    font-weight:600;
}

.form-control::placeholder, select.form-control{
    font-weight:400;
    color:rgba(0,0,0,0.3);
}

textarea{
    height:10rem;
}

nav.form-navigation{
    position:relative;
    padding:0;
    justify-content:center;
}


footer a{
    color:white;
    font-size:1.25rem;
    font-weight:600;
}

img.contact-icon{
    width:20px;
    height:20px;
           transition:0.5s cubic-bezier(.8,0,.38,1);

}
img.social-icon{
    width:40px;
    height:40px;
}

.footercontent{
    justify-content:space-between;
    align-items:baseline;
    gap:2rem;
} 
.footercontent:first-child{
    margin-bottom:2rem;
}
.footercontact{
    gap:1.5rem;
}
footer a{
       transition:0.5s cubic-bezier(.8,0,.38,1);
       
}
footer p{
    font-size:1rem;
    color:white;
    margin:0;
}

footer a:hover, .contact-icon:hover{
    transform:scale(1.1);
       transition:0.5s cubic-bezier(.8,0,.38,1);
           text-shadow:0px 0px 1.5rem var(--lumore-coral);

}

footer ul.footercontact{
    padding:0;
    margin:0;
}

footer ul.footercontact li{
    list-style:none;
}

.anchor{
    position:absolute;
    top:-90px;
    left:0;
}
@media only screen and (max-width:1400px){
    .content{
        width:90%;
    }
        .textcaption-50{
        width:70%;
    }
            .siteheader{
        height:40vh;
    }
}

@media only screen and (max-width:1200px){
    .content{
        width:100%;
    }
        .textcaption-50{
        width:75%;
    }
}

@media only screen and (max-width:1080px){
        .siteheader{
        height:400px;
    }
    .content{
        padding:4rem;
    }
        .textcaption-50{
        width:90%;
    }
    p{
        font-size:1.3em;
    }
    nav{
        padding:2rem 2.5rem !important; 
    }
    nav.nav--scrolled{
        padding:1.5rem !important;
    }
    .logo{
        width:12rem;
    }
    h2{
        font-size:2.5rem;
    }
    p{
        font-size:1.1rem;
    }
      header span, .siteheader h1{
        font-size:3.5rem;
    }
}

@media only screen and (max-width:780px){
    .content{
        padding:2rem;
        padding-top:3.5rem;
        padding-bottom:3.5rem;
    }

    .textcaption-50{
        width:100%;
    }
    header span, .siteheader h1{
        font-size:3.2rem;
    }
    .main-nav li a, footer a, .accordion-header h3, a.button, .btn, .btn-primary, h1{
        font-size:1.25rem;
    }
    .buttoncontainer{
        gap:1rem;
    }
    p, .accordion-body p{
        font-size:1.2em;
    }
    .main-nav {
        display:block;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .main-nav li{
        text-align:center;
        display:block;
    }

    .main-nav li a{
        font-size:2rem;
    }

    nav img.contact-icon{
        height:40px;
        width:40px;
    }

    .main-nav li:after{
        display:none;
    }
    .design-caption h3, .design-caption h3 {
    font-size: 7rem;
    color: white;
    opacity: 0.05;
    animation: flow 20s linear infinite;
}
.accordion-header h4{
    font-size:1.2rem;
    right:3.5rem;
}
.accordion-body{
    flex-wrap:wrap;
    flex-direction:column;
}
section.contact .d-flex{
    flex-wrap:wrap;
}
    section.contact .ansprechpartner {
    width: 50%;
}
.red-dot:after {
    right: -0.75rem;
}

  .mobile-toggle {
    display: block;
  }


  .right-container {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #18232a;

    opacity: 0;
    visibility: hidden;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .right-container.active {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width:620px){
    .footercontent{
        flex-wrap:wrap;
        gap:2rem;
    }
    .footercontact{
        flex-wrap:wrap;
        gap:1rem;
    }
        .accordion-header h4{
        display:none;
    }
          header span, .siteheader h1{
font-size:2.8rem;
        }
}
@media only screen and (max-width:500px){
    .siteheader{
        height:300px;
    }
    .content{
        padding:1.5rem;
        padding-top:2.5rem;
        padding-bottom:2.5rem;
    }
        .textcaption-50{
        width:100%;
    }
header span, .siteheader h1{
font-size:2.2rem;
        }
  
        header h1{
            font-size:1.2rem;
        }


    h2{
        font-size:2rem;
    }

    .text-center{
        text-align:left !important;
    }
    .red-dot{
        margin:0px !important;
    }
  span.red-dot{
    margin-bottom:1rem !important;
  }
    nav, nav.nav--scrolled{
        padding:1rem !important;
    }
    .buttoncontainer, nav.form-navigation{
        justify-content:flex-start;
    }

    a.button, .btn, .btn-primary {
    padding: 0.5rem 1rem;
}
    section.contact .ansprechpartner {
    width: 100%;
}
.red-dot:after {
    right: -0.5rem;
}

   .anchor {
     top:-85px;
   }
}

@media only screen and (max-width:450px){
    .buttoncontainer{
        flex-wrap:wrap;
    }
      header span, .siteheader h1{
        font-size:1.8rem;
    }
}
@media only screen and (max-width:379px){
p, header h1{
    font-size:1rem;
}
    h2{
        font-size:1.65rem;
    }
    header span, .siteheader h1{
        font-size:1.6rem;
    }
}
