
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

@import "cursor.css?v=1.01";


@font-face {
    font-family: "Ade Display";
    src: url(/Fonts/Ade-Display.otf) format("opentype");
}

/* version 1.06 */

:root{
    /* COLORS */
    --PrimaryWhite: #f9f9f9;
    --SecoundaryWhite: #F8F9FA;
    --PrimaryBlack: #131313;
    --EigenGrau: #16161d;
    --MTJA-Blue:#4D7EEB;
    --SecondaryColorBlue:#00A6FB;
    --FontColorBlack: #212121;
    --SecoundaryFontColor: #22282f;
    --FontColorWhite: #ededed;
    --DescriptionFontColor: #979DAC;


    --FontSizeText: clamp(9px, 2.3vw - 2rem, 1.75rem);
    --FontSizeText--2k: clamp(8px, 1vw, 0.7rem);
    --FontSizeText--4k: clamp(8px, 1vw, 1rem);


    --marginBottom_10: 10rem;
    --marginBottom_4: 4rem;
    --marginBottom_2: 2rem;

    /* Transitions */

    --primary-transition: transition: .8s cubic-bezier(.22,1,.36,1);
}

* {
    scroll-behavior: smooth;
    box-sizing: border-box;
  }

html{
    cursor: none;
    scrollbar-width: none; 
}
.--white{
    background-color: var(--PrimaryWhite);
    color: var(--SecoundaryFontColor);
}
.--padding{
    padding-top: 2em;
    padding-right: 2em;
    padding-left: 2em;
}
.--margin{
    margin-top: var(--marginBottom_4);
    margin-bottom: var(--marginBottom_4);
}

.--underline{
    text-decoration: underline;
}
a:visited {
    color: inherit;
   /*  color: var(--FontColorBlack); */
}

a:link{
    color: inherit;
}

a:hover{
    cursor: none;
}




/*                              DOM                             */

body{
    margin: 0;
    font-size: var(--FontSizeText);
    font-family: "Inter", sans-serif;
    font-weight: 500;
    letter-spacing: -0.04em;
    background-color: var(--EigenGrau);
    color: var(--SecoundaryFontColor);
    text-transform: uppercase;
    -ms-overflow-style: none;
    scrollbar-width: none; 
    overscroll-behavior-y: none;
    overflow-x: hidden;
    transition: background-color .3s cubic-bezier(.22,1,.36,1);
}



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

body.--black{
    color: var(--PrimaryWhite);
    background-color: var(--EigenGrau);
}

body.--white{
    color: var(--SecoundaryFontColor) !important;
    background-color: var(--PrimaryWhite);
}


.hero-grid{
    display: grid;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
    grid-template-columns:   15% 20% 30% 20% minmax(15%, max-content);
    grid-template-rows: auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  
    -webkit-box-align: center;
    -webkit-align-items: center;
    box-sizing: border-box;

}


.header{
    align-items: center;
    position: relative;
}


.header a {
    text-decoration: none;
}


.logo{
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;

    margin-top: 0.3em;
    display: block;
    height: 2rem;
    justify-self: stretch;
    
}
.word_logo{
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;

    width: 100%;
    display: block;
    justify-self: start;  
}

.word_logo:hover:before{
    text-decoration: underline;
    content: " ← BACK TO INDEX";
}


.word_logo:hover span{
    display: none;
}


.header_text{
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
    justify-self: end;
    position: relative;
    
}

.work_container{
    grid-column-start: 4;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;

    transition: all 0.5s;
    position: relative; 

    display: flex;
    justify-content: start;

}


.work_wrapper{
    justify-self: start;
    align-items: center;
    display: flex;
    align-self: flex-start;
    padding: .8em 1em .8em 1.5em;
    border-radius: 5px;
}
.work_wrapper:hover{
    background-color:#22282f;
  /*   background-color:#E9ECEF; */
}


.work_wrapper .work{
    align-items: center;
    margin-right: 1.5em;
}


.work_wrapper .dot{
    background-color: antiquewhite;
    animation: dotAnim 5s linear infinite;
    transition: all 0.2s;
}

@keyframes dotAnim{

    0%
    {
        background-color: antiquewhite;
    }
    10%
    {
        background-color:blueviolet;
    }
    20%
    {
        background-color: cadetblue;
    }
    30%
    {
        background-color: green;
    }
    40%
    {
        background-color: greenyellow;
    }
    50%
    {
        background-color: yellow;
    }
    60%
    {
        background-color: orange;
    }
    70%
    {
        background-color: orangered;
    }
    80%
    {
        background-color: red;
    }
    90%
    {
        background-color:rgb(240, 143, 91);
    }
    100%
    {
        background-color:bisque;
    }
}


.dot{
    width: 12px;
    height: 12px;
    border-radius: 100vw;
    margin-right: 0.85rem;
    background-color: var(--FontColorBlack);
}

.dotwhite{
    background-color: var(--SecoundaryWhite);
}

.contact_container{
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
    justify-self: end;
    align-items: start;
   /*  align-self: start; */
    display: flex;
    justify-content: space-between;

 /*    padding: .75rem 1.5rem;
    border: 1px solid var(--PrimaryWhite);
    border-radius: 100vw; */

    transition: .2s;
}

.contact_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8em 1em 0.8em 1.5em;
    border-radius: 5px;
}

.contact_wrapper:hover{
    background-color:#22282f;
}
.contact_wrapper:hover .contact{
    color: var(--PrimaryBlack);
    display: none;
} 
.contact_wrapper:hover::after{
    content: "Me";
    padding: 0em 1.7em 0em 1.5em;
}

.contact_wrapper .dot{
    background-color: var(--SecondaryColorBlue);
}


/*                             WORK MENU                           */


.work_content  span{
    opacity: 65%;
    position: relative;
    display: inline-block;

}

.work-categorie-grid ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5vw;
    row-gap: 1.5vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 0;
}


.column{
    position: relative;
    padding: 1em 1em 1em 3em;
    background-color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  
/*     border: 1px solid #efefef; */

}
.column .dot{

    position: absolute;
    top: 50%;
    left: 16%;
    transform: translate(-50%, -50%);
    margin-right: 1em;
    z-index: 2;
    opacity: 100%;
    background-color: var(--DescriptionFontColor);
}

.column:hover .dot-pulse{
    animation: dotPulse 1s linear infinite;
    transition: all 0.2s;
    opacity: 100%;
    background-color: var(--SecondaryColorBlue);
}

.dot-pulse{
     position: absolute;
     top: 50%;
     left: 16%;
     transform: translate(-50%, -50%);
     width: 12px;
     height: 12px;
     border-radius: 100vw;
     z-index: 1;
     background-color: var(--DescriptionFontColor);
}
 
@keyframes dotPulse{
 
     0%{
        width: 12px;
        height: 12px;
        background-color:#38c3e3;
        opacity: 1;
     }
 
     100%{
        width: 24px;
        height: 24px;
        background-color:#38c3e3;
        opacity: 0;
     }
}

.active-filter > .dot{
    background-color: var(--MTJA-Blue);
  /*   opacity: 100%; */
}

.active-filter > .title_text{
    opacity: 100%;
}

.title_text{
    color: var(--DescriptionFontColor);
}



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

/*                          HERO MAIN TEXT                             */

.hero_main_text{
    margin-top: 4vw;
    width: 100%;
    height: 50vh;
    max-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.hero_text{
    font-weight: 500;
    font-size: var(--FontSizeText);
    color: var(--FontColorWhite);
}

/*                          HERO IMG                                  */
.hero_img_container{

    width: 100%;
    display:flex;
    justify-content:center;
    align-items:center;
    position: relative;

    margin-bottom: 15vw;
}

.hero_img_wrapper{
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 1900px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.hero_img{

    max-width:100%;
    width: 40%;
    height: 100%;
    position: relative;
   /* background: url(graphics/Gallery/Selfbranding/HERO_PCITURE_2.png) no-repeat center center; */
    object-fit: cover;

}


/*                             SECTION FOOTER                           */
.section_FOOTER{
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    /* height: calc(var(--vh, 1px) * 100); */
    position: relative;
    color: var(--PrimaryWhite);
    background-color: var(--EigenGrau);
}

.footer_container{
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;

    width: 100%;
    height: 100%;
}

.trigger_hover{
/*     border:  1px solid #f9f9f9; */

    width:calc(100vw / 5.5);
    height:calc(100vw / 5.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .1s linear;
    border-radius: 50%;
    z-index: 10;
}


.contact_blue_btn{

    width:calc(100vw / 8);
    height:calc(100vw / 8);
    color: var(--PrimaryWhite);
    background-color: var(--SecondaryColorBlue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 51%;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.175, .85, .52, 2.275);
    z-index: 999;

}

.trigger_hover:hover .contact_blue_btn{
    background-color:#0353A4;
    transition: 0.3s cubic-bezier(0.175, .85, .52, 2.275);
}

.contact_text{
    color: var(--PrimaryWhite);
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.email_container{
    margin-bottom: 5vw;
}

.email_talk_text{
    color:#6C757D;
   /*  font-size: clamp(1vw,var(--FontSizeText), 2vw); */ /* 2vw var, 5vw */
}

.email_text{
    font-size: clamp(8px, 2vw, 32px); 
   /*  font-size: clamp(1vw, var(--FontSizeText), 2vw);  */
    transition: .8s cubic-bezier(.22,1,.36,1);
}
.email_text:hover{
    letter-spacing: .1em;
    color:#6C757D;
    transition: .8s cubic-bezier(.22,1,.36,1);
}


.social-grid{
    justify-self: end;
    display: grid;
    width: 100%;
    grid-template-columns: 20% 15% 30% 15% 20%;
}

.social_btn{
    grid-column-start: 1;
    grid-column-end: 1;
    justify-self: flex-start;
    opacity: 65%;
}
.instagram_btn{
    grid-column-start: 2;
    grid-column-end: 2;
    justify-self: flex-start;
}

.behance_btn{
    grid-column-start: 3;
    grid-column-end: 3;
    justify-self: center;
}

.dribble_btn{
    grid-column-start: 4;
    grid-column-end: 4;
    justify-self: end;
}
.footer_date{
    grid-column-start: 5;
    grid-column-end: 5;
    justify-self: flex-end;
}
.social_text{
    color: var(--PrimaryWhite);
}


@media only screen and (max-width: 2560px){
    body{
        font-size: var(--FontSizeText--4k);
    }

    .hero_text{
        font-size: var(--FontSizeText--4k);
    }
    .work_content span {
        font-size: var(--FontSizeText--4k);
    }

    .title_wrapper h2, .title_wrapper p {
        font-weight: 400;
        font-size: var(--FontSizeText--4k);
        text-align: center;
    }
    
}

@media only screen and (max-width: 1920px){
    body{
        font-size: var(--FontSizeText);
    }

    .hero_text{
        font-size: var(--FontSizeText);
    }

    .work_content span {
        font-size: var(--FontSizeText);
    }

    .title_wrapper h2, .title_wrapper p {
        font-weight: 400;
        font-size: var(--FontSizeText);
        text-align: center;
    }

}

@media only screen and (max-width: 980px){


}

@media only screen and (max-width: 800px){


    .color_circle{
        width:calc(100vw / 8);
        height:calc(100vw / 8);
    }

    .section_DIGITAL_ART{
        margin-bottom: 15vw;
    }


}
@media only screen and (max-width: 675px){

    .hero-grid{
    
        display: grid;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        grid-auto-flow: row;
        grid-auto-columns: 1fr;
        grid-template-columns: 65% 35%;
        grid-template-rows: 50px auto auto;;
      
        grid-row-gap: 4vw;
      
        -webkit-box-align: center;
        -webkit-align-items: center;
        box-sizing: border-box;
       
    }
    
    .header{
        font-size: var(--FontSizeText);
        margin-bottom: 6em;
    }

    .header_text{
        width: 100%;
        grid-column-start: 2;
        grid-column-end: 2;
        justify-self: start;
        text-align: justify;
        text-align-last:justify;
    }
    
    .work_container{
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 2;
        grid-row-end: 2;
        justify-self: end;
    }
    .work_wrapper {
        padding: 0.8em 1em .8em 1.5em;
        border-radius: 5px;
        background-color: #2d2d2d;
    }
    .work_wrapper .work {
        margin-right: 2.1em;
    }
    
    .contact_container{

        margin-top: 1em;
        grid-column-start: 2;
        grid-column-end: 2;
        grid-row-start:  3;
        grid-row-end: 3;
        justify-self: end;
    }

    .contact_wrapper {
        padding: 0.8em 1.4em .8em 1.5em;
        border-radius: 5px;
        background-color: #2d2d2d;
    }
    
    .colorDot{
        width: 2rem;
        height: 2rem;
        border-radius: 100vw;

    }

    .hero_main_text {
        height: 30vh;
        max-height: 100%;
    }



/*                                         FOOTER 675                            */


    .trigger_hover {
            width: calc(100vw / 2.5);
            height: calc(100vw / 2.5);
            margin-bottom: 0;
    }

    .email_container{
        margin-bottom: 0;
    }
    .email_talk_text {
        font-size: clamp(12px ,var(--FontSizeText), 5vw);
    }
    .email_text {
        font-size: clamp(2vw, 5vw, 5vw);
    }
    
    .social-grid{
        margin-top: 10vw;
    }

}
@media only screen and (max-width: 600px){

 
    


}
@media only screen and (max-width: 550px){



.--description_design{
    width: 50%;
}

.hastag{
    margin-top: 2.5rem;
    font-size: var(--FontSizeText_MIN)
}

}
@media only screen and (max-width: 475px){

    .header{
       margin-bottom: 6em;
    }
        
    .description_wrapper{
        font-size: 8px;
    }
    
    .header_text{
        grid-column-start: 2;
        grid-column-end: 4;
        justify-self: start;
        text-align: justify;
        text-align-last:justify;
    }
    
    .hero_scroll_grid{
        margin-right:1em;
        justify-content: start;
        align-self: start;
    }
    
    .work-grid{
        justify-self: end;
        display: grid;
        width: 100%;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto;
        row-gap: 2vw;
        /* border: 1px solid #444; */
    }
    
    .work_column{
        grid-column-start: 1;
        grid-column-end: 1;
        grid-row-start: 1;
        grid-row-end: 1;
        justify-self: flex-start;
    }
    
    .work_text span{
        padding-left: 2rem;
    }

  

 /*                                FOOTER   475                       */


 .contact_blue_btn{

    width: 25vw;
    min-height: 25vw;
    aspect-ratio: 1 / 1;
}

.social-grid{
    justify-self: end;
    display: grid;
    width: 100%;
    grid-template-columns: 65% 35%;
    grid-template-rows: auto;
    row-gap: 2vw;

}

.social_btn{
    grid-column-start: 1;
    grid-column-end: 1;
    justify-self: flex-start;
    grid-row-start: 1;
    grid-row-end: 1;
}

.instagram_btn{
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
    justify-self: flex-start;
}

.behance_btn{
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 2;
    justify-self: flex-start;
}

.dribble_btn{
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 3;
    justify-self: flex-start;
}

.footer_date{
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
    justify-self: flex-start;
}

.social_text{
    font-size: var(--FontSizeText);
    color: var(--PrimaryWhite);
}
    
}

@media only screen and (max-width: 420px){

    .header_text{
        grid-column-start: 2;
        grid-column-end: 4;
        justify-self: center;
    }



}

@media only screen and (max-width: 375px){



  

    .about_img_title {
        margin-bottom: 5vw;
    }

    .about_description {
        width: 80%;
        line-height: 1.4em;
        margin-top: 5vw;
    }

    .img-flex {
        margin-top: 10vw;
        margin-bottom: 10vw;
    }

    .logo_img {
        width: 20vw;
        height: 20vw;
    }

    .logo_description {
        width: 80%;
    }

    .font_wrapper {
        margin-bottom: 10vw;
    }
}

/*border: 1px solid #444; */

