/* root */
:root{
    --black: #1d1d1b;
    --purple: #896B95;
    --red: #D65054;
    --whitetr: rgba(255, 255, 255, 0.05);
    --border: solid var(--black) 1px;
    --border-white: solid white 1px; 
    --bs: 'din-2014' , sans-serif;
    --ivy: 'ivypresto-headline', serif;
    --caps: uppercase;
    --bgblur: blur(10px);
}

/* global */

::selection{
    color: var(--red);
    background-color: var(--black);
}




*, *::before, *::after{
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

video{
    width: 100%;
}

img{
    width: 100%;
    object-fit: contain;
    
}

@media (max-width: 1120px) {


  video{
    height: 90vh;
    object-fit: cover;
  }


}



body{
    display: flex;
    flex-direction: column;
    height: 100%;
  	width: 100vw;
    overflow-x: hidden;
}
/* Fonts */
@font-face {
    font-family: 'Bahnschrift';
    src: url(font/BAHNSCHRIFT.TTF);
}



*{
    font-family: var(--bs);
    text-transform: var(--caps);
    color: var(--black);
    letter-spacing: 0;
}

.bsr-40{
    font-weight: 400;
    font-size: 40px;
}

.bsr-35{
    font-weight: 400;
    font-size: 35px;
}

.bsr-30{
    font-weight: 400;
    font-size: 30px;
}

.bsr-25{
    font-weight: 400;
    font-size: 25px;
}

.bsr-20{
    font-weight: 400;
    font-size: 20px;
}

.bsr-12{
    font-size: 12px;
    font-weight: 400;
}



.bssb-30{
    font-weight: 600;
    font-size: 30px;
}

.bssb-25{
    font-weight: 600;
    font-size: 25px;
}

.bssb-20{
    font-weight: 600;
    font-size: 20px;
}

.bssb-15{
    font-weight: 600;
    font-size: 15px;
}

.ivyr-15{
    font-family: var(--ivy);
    font-size: 16px;
    font-weight: 300;
    text-transform: none;
}

.ivyr-18{
    font-family: var(--ivy);
    font-size: 19px;
    font-weight: 300;
    text-transform: none;
}


.ivyr-20{
    font-family: var(--ivy);
    font-size: 21px;
    font-weight: 300;
    text-transform: none;
}


.ivyr-50{
    font-family: var(--ivy);
    font-size: 50px;
    font-weight: 400;
    text-transform: none;
}

.ivysb-50{
    font-family: var(--ivy);
    font-size: 50px;
    font-weight: 600;
    text-transform: none;
}






h1,h2,h3,h4,h5,h6{
    font-family: inherit;
    font-size: inherit;
    margin: 0;
}


p{
    font-size: 15px;
    color: var(--black);
}

a{
    text-decoration: none;
    color: var(--black);
    font-size: 15px;
    transition: .3s;
}

a:hover{
    color: var(--purple);
}

/* Media */


.b-bottom{
    border-bottom: var(--border) ;
}




/* utillity */



.align-self-end{
    align-self: end;
}

.justify-self-end{
    justify-self: end;
}



.width-50{
    width: 50%;
}

.padding-10{
    padding: 10px;
}

.fit-content{
    width: fit-content;
}

.icon{
    height: 20px;
    width: auto;
}

.f-icon{
    height: 20px;
}

.logo{
    height: 2rem;
    justify-self: center;
    cursor: pointer;
}

.white{
    color: white;
}

.red{
    color: var(--red);
}

.purple{
    color: var(--purple);
}

.black-bg{
    background-color: var(--black);
    padding: 5px;
    margin: 5px -5px;
}

.button-white-medium{
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: var(--caps);
    padding: 1rem 5rem;
    background-color: white;
    border-radius: 0;
    border: var(--border);
    cursor: pointer;
    transition: .3s;
}

.button-white-medium:hover{
    background-color: var(--black);
    color: white;
}

.button-black-medium{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: var(--caps);
    padding: 1rem 5rem;
    background-color: var(--black);
    color: white;
    border-radius: 0;
    border: var(--border);
    cursor: pointer;
    transition: .3s;
}

.button-black-medium:hover{
    background-color: white;
    color: var(--black);
}



.text-link{
    color: var(--purple);
}

.text-link:hover{
    color: var(--red);
}


@media (min-width: 800px){
    .mobile-only{
        display: none;
    }


}

@media (max-width: 1200px){

    .icon{
        height: 25px;
        width: auto;
    }

}

@media (max-width: 800px){
    .dt-only{
        display: none;
    }

    .icon{
        height: 28px;
    }

    .menu-icon{
        height: 22px;
    }

    .f-icon{
        height: 20px;
    }


}
/* Fullscreen Popup */

.popup-base-100{
    z-index: 9001;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.popup-trigger-100{
    position: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: var(--whitetr);
    backdrop-filter: var(--bgblur);
    cursor: pointer;
}

.popup-main-100{
    position: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 25rem;
    height: 30rem;
    padding: 2rem;
    gap: 2rem;
    background-color: white;
    border: var(--border);
}

.popup-close-100{
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    width: 25px;
    cursor: pointer;
}

@media (max-width: 900px){
	.popup-main-100{

    width: 20rem;
    height: 25rem;
    padding: 2rem;
    gap: 2rem;

}
}

.circle{
    width: 40rem;
    animation-name: circle-anim;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes circle-anim{
    0%{
        transform: rotate(0deg);
    }

    100%{
        transform: rotate(360deg);
    }
}


/* Header */
header{
    position: sticky;
    top: 0;
    z-index: 9000;
    display: grid;

    grid-template-columns: 25% 50% 25%;
    grid-template-rows: 1fr;
    align-items: center;
    width: 100vw;
    height: 65px;
    padding: 10px 3vw 10px 3vw;
    background-color: white;
}

.header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2vw;
}

.header-icons{
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 10vw;

}

/* Menu Popup */
.modal{
    z-index: 100;
    position: fixed;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    height: 80vh;
    width: 80vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: var(--border);

}

.modal.active{
    transform: translate(-50%, -50%) scale(1);
    
}



.modal-nav{
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    
}

.close-button{
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: transparent;
    border-style: none;
    width: 10%;
}

#overlay{
    z-index: 5;
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(3.5px);
    pointer-events: none;
}

#overlay.active{
    pointer-events: all;
    opacity: 1;
}

/* Body */
.scroll-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;

}

.Hero{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.logo-ws{
    position: absolute;
    width: 25rem;
}

.who-are-we{
    display: grid;
 	width: 100%;
    grid-template-columns: 45% 55%;
    align-items: center;
  	justify-content: center;
    padding: 0px 10px;
    margin-bottom: -4px;
    overflow: hidden;
}

.img-card-55{
    display: flex;
    position: relative;
}

.img-card-50-active{
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 99.7%;
    width: 100%;
    background-color: var(--whitetr);
    backdrop-filter: var(--bgblur);
    border: var(--border);
    opacity: 0;
    transition: .3s;
}

.img-card-50-active:hover{
    opacity: 1;
}

.swirl{
    width: 50%;
    display: block;
}

.text-block-50{
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: 10rem;
}

.grid-5050{
    display: grid;
    width: 100%;
    padding: 10px;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.grid-206020{
    display: grid;
    width: 100%;
    grid-template-columns: 20% 60% 20%;
    align-items: center;
    margin: 15rem 0;
}


.running-paint{
    position: absolute;
    top: -1px;
}

.contact{
    padding-bottom: 25vh;
    position: relative;
    height: 120vh;
    gap: 6rem;
    padding-top: 20rem;
    background-color: var(--black);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.imprint{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 25rem 0;
}













.text-block-100{
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 40vw;
    margin: 23rem 3rem;
}







@media (max-width: 1120px){
  
        .text-block-100{
        width: 75vw;
        margin: 20rem 2rem;
    }

         .text-block-50{
        width: 75vw;
        margin: 20rem 2rem;
    }

    .logo-ws{
        width: 15rem;
    }

    .grid-5050{
        display: grid;
        width: 100%;
        padding: 10px;
        gap: 10px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .grid-206020{

        grid-template-columns: 1fr;
        margin: 0;
    }

    .swirl{
         display: none;
    }



}

@media (max-width: 1700px){
 

        .who-are-we{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 30% 70%;
        align-items: center;
        padding: 0px 10px;
}
}

/* Products Grid */
.product-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    width: 100%;
    padding: 10px;
    gap: 1px;
}


@media (max-width: 1700px){
    .product-grid{
        grid-template-columns: 1fr 1fr 1fr 1fr;

}
}

@media (max-width: 1200px){
    .product-grid{
        grid-template-columns: 1fr 1fr 1fr;

}
}

@media (max-width: 850px){
    .product-grid{
        grid-template-columns: 1fr 1fr;

}
}

@media (max-width: 600px){
    .product-grid{
        grid-template-columns: 1fr;

}
}

/* Data Protection */
.data-content{
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding: 6rem 3vw;
    gap: .5rem;
}







/* Footer */

footer{
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.footer-block-2{
    display: flex;
    justify-content: space-between;
    padding: 3rem 3vw;
    border-top: var(--border) ;
}

.footer-nav{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.footer-icons{
    width: 10%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: end;
}

.footer-block-1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.footer-cr{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 6vw;
}

