@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.03 */

:root{
    color-scheme: light only;

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

    --minHeight: 100vh;
    --minHeight_2:75vh;
    --minHeight_3:50vh;
    --minHeight_4:25vh;

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


    --marginTop_10: 10rem;
    --marginTop_4: 4rem;
    --marginTop_2: 2rem;

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


}

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

html{
    scrollbar-width: none; 
}

img{
    border-radius: 5px;
}

.--white{
   
    color: inherit;
}
.--padding{
    padding-top: 2em;
    padding-right: 2em;
    padding-left: 2em;
}
.--margin{
    margin-top: var(--marginBottom_4);
    margin-bottom: var(--marginBottom_4);
}

.--mB5{
    margin-bottom: 5vw;
}

.--mB15{
    margin-bottom: 15vw;
}

.--row{
    display: flex;
    justify-content: center;
    position: relative;
}

a:visited {
    color: inherit;
}

a:link{
    color: inherit;
}
a:hover{
    cursor: none;
}


.--underline{
    text-decoration: underline;
}

.--secFont{
    font-family: "Ade Display", sans-serif;
    font-weight: 100;
    font-size: 9rem;
    line-height: 1.5;
}
.--secFontTitle{
    font-family: "Ade Display", sans-serif;
    font-weight: 100;
    font-size: clamp(var(--FontSizeNormal), 7.5vw, 7.5vw);
    line-height: 1.5;
}


.btt_container{
    opacity: 0;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 7.5vw;
    right: 2vw;
    z-index: 10000;
    transition: opacity 0.2s;
}

.btt_text{
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
 
    height: 60px;
    margin-right: 15px;
    text-decoration: none;
    font-weight: 400;
    font-size: var(--FontSizeText);
    z-index: 1000;
    transition: opacity 0.2s;
}

.btt_btn{

    /* display: none; */
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 10001;
    border-radius: 50%;
    background-color: var(--SecondaryColorBlue);
    text-decoration: none;
    transition: .2s cubic-bezier(.22,1,.36,1);

}

.btt_wrapper{
    position: relative;
    font-weight: 500;
    z-index: 10002;
    color: var(--PrimaryWhite);
    font-size: var(--FontSizeText);
    transition: .2s cubic-bezier(.22,1,.36,1);
}

main{

}


body{

    margin: 0;
    font-size: var(--FontSizeText);
    font-family: "Inter", 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:hover > .cursor_inner, .cursor_outer {
    opacity: 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:#E9ECEF;
  /*   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:#E9ECEF;
}
.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);
}


/*                          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_wrapper{
    max-width: 100%;
    height: 30vw;

    display:flex;
    justify-content:center;
   /*  align-items:center; */
    position: relative;
    overflow: hidden;
    margin-bottom: 15vw;
}

.hero_img{
    max-width:100%;
    height: auto;
 /*    object-view-box: inset(27% 0% 0% 0%); */
    position: relative;
    top: -12vw;
}

.type_grid{
     
    display: grid;
    width: 100%;
    justify-content: space-between;
    grid-template-columns:  15% 20% 30% 20% minmax(15%, max-content);;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 2px;
    margin-bottom: 2rem;
    color: var(--DescriptionFontColor);
}


.-description{
    grid-column-start:  1;
    grid-column-end:  1;
    grid-row-start:  1;
    grid-row-end:  1;
    justify-self: start;
}
.-webDesign_Dev{
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
    justify-self: start;
}
.-logoDesign{
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
    justify-self: start;
}
.-webDesign_Dev{
    grid-column-start: 3;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 1;
    justify-self: center;
}
.-brand_identity{
    grid-column-start: 4;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 1;
    justify-self: end;
}
.-visual_identity{
    grid-column-start: 4;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 2;
    justify-self: end;
}
.-year{
    grid-column-start: 5;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 1;
    justify-self: end;
}

/*                             DESCRIOPTION                            */
.description_design{

    /* width: 19rem; */
   display: grid;
   grid-template-columns: 65% 35%;
   justify-content: flex-end;
    margin-top: 10vw;
    margin-bottom: 10vw;
}

.descritption_wrapper{
    grid-column-start: 2;
}

.decritption_text{
    max-width: 28vw;
    line-height: 1.35em;
    text-align: justify;
    text-align-last:justify;
    color: var(--DescriptionFontColor);
}


.decritption_text.--no-sytle{
    text-align-last: start;
}

.title_container{
    width: 100%;
    margin-top: 3vw;
    margin-bottom: 3vw;
    display: flex;
    justify-content: center;

}

.title_wrapper h2{
    line-height: 1.5em;
    font-weight: 400;
    text-align: center;
}


/*                             LOGODESIGN                           */

.logo_container{

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15vw;
    margin-bottom: 15vw;
}

.typo_container{

    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 15vw;
    margin-bottom: 15vw;
}


.logo_container img{
    width: 35vw;

}
.typo_container > img{
    width: 25%;
}



.color_wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
/*     border: 1px solid #4d29ff; */

}

.color_text{
    line-height: 1em;
    font-weight: 300;
    font-size: clamp(var(--FontSizeNormal), 8vw, 8vw); 
    z-index: 2;
}

.color_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15vw;
}

.color_row{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.color_circle{
    width:calc(100vw / 12);
    height:calc(100vw / 12);
    color: var(--FontColorBlack);
    background-color: var(--SecondaryColorBlue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle_text_wrapper{
    text-align: center;
    line-height: 1em;
    font-weight: 300;
}

.circle_1{
    background-color:#F9F9F9;
    border: 1px solid var(--FontColorBlack);
 
}
.circle_2{
    background-color:#000;
    color: var(--PrimaryWhite);
}

.wireframe_description{
    display: flex;
    justify-content: center;
    align-items: center;
}

.wireframe_wrapper{
    margin-top: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10vw;

}

.wireframe_wrapper > img{
    max-width: 60%;
    border: 1px solid black;
}

.app_img{
    margin-top: 5vw;
    width: 75vw;
}


.logo_description_container{
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    margin-bottom: 10vw;
}

.logo_description{
    width: 48%;
}

.logo_text{
    line-height: 1em;
    font-weight: 400;
}

.icon_wrapper{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.icon_wrapper img{
    width: 45vw;
}

/*                             WEBDESIGN                           */

.section_WEBDESIGN{
    margin-top: 10vw;
    margin-bottom: 10vw;
}

.webdesign_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-bottom: 10vw;
}

.products_menu_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-color: #f5f5f5;
}
.checkout_wrapper,.menu_nav_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-color: #ffffff;
}

.bliss_header{
    width: 30% !important;
    margin-top: 5vw;
    margin-bottom: 5vw;
}

.bliss_webpic{
    max-width: 60%;
    margin-bottom: 5vw;
}

.bliss_checkout{
    max-width: 90%;
    margin-bottom: 5vw;
}

.webdesign_wrapper > img{
width: 50%;
}

.webdesign_bg{
    width: 100%;
    height: 100%;
    background-color: #e5e5e5;
    position: absolute;
    top: 0%;
    z-index: -1;
}


/*                             SECTION BRANDING                           */

.branding_social{
    margin-bottom: 5vw;
}

.img_social_container{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}


.social_img_wrapper{
    width: 75%;
    max-width: 1200px;
}

.social_img_wrapper img{
    width: 100%;
}

.branding_products{
    margin-bottom: 5vw;
}

.branding_products_container{
    width: 100%;

}


.branding_wrapper{
    width: 100%;
    max-width: 1200px;
}

.branding_product_grid{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.branding_product_grid img{
    width: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 14/6;
}



.img_billboard_container{
    margin-bottom: 5vw;
}


.billboard_img_wrapper{
    width: 100%;
    height: 100%;
 /*    max-width: 2000px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.billboard_img_wrapper img{
    width: 100%;
    aspect-ratio: 15/8;
    object-fit: cover;
}





.billoard_img_2{
    margin-top: 0.7vw;
}



.img_branding_container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    grid-auto-rows: 100%;
}
.handbag_img_wrapper{
    grid-column: span 2;
    grid-row: span 1;
}

.handbag_img{   
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label_img_wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.label_img_2{
    /* margin-top: 0.8vw; */
}

.label_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/*                             SECTION DIGIRAL ART                           */

.section_DIGITAL_ART{
    margin-bottom: 15vw;
}



.art_img_container{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;

}

.art_img_wrapper{
    width: 100%;
    height: 48vw;
    max-height: 904,56px;
    max-width: 1900px ;
/*     max-height: 1130px; */
    border: 1px solid #8629ff;
}

.art_img_wrapper img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.art_title{

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 300;
    font-size: clamp(2vw, 8vw, 7vw); 

}

/*                             NEXT SECTION                             */

.next_case_container{
    height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.next_case_wrapper_grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 5px;
    justify-content: space-between;

}
.next_case{
    width: 30vw;
    position: relative;
}

.case_title{
    margin-bottom: 1vw;
}

.next_case_img{
    width: 100%;
}

.next_case_gif{
    width: 100%;
    position: absolute;
    left: 0%;
    opacity: 0;
    transition: 0.2s;
}

.next_case_gif:hover{
    transition: 0.2s;
    opacity: 1;
}

.case_uomo{
    justify-self: center;
}
.case_bliss{
    justify-self: end;
}

/*                                           */
.webdesign_project{
    background-color: white;
    padding: 2em;
    margin-bottom: 15px;
    border-radius: 15px;
    transition: .8s cubic-bezier(.22,1,.36,1);
}

.webdesign_project:hover{
    transform: scale(.95);
    transition: .8s cubic-bezier(.22,1,.36,1);
}
.webdesign_project:hover .webdesign_category{
    transform: translateY(50px);
    transition: .8s cubic-bezier(.22,1,.36,1);
}




.webdesign_title{
    display: flex;
    justify-content: space-between;
    color: var(--FontColorBlack);
    padding-bottom:1vw ;
    
}

.webdesign_category{
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    gap: 10px;
    z-index: 2;
    transition: .8s cubic-bezier(.22,1,.36,1);
}

.catergory_button{

    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--DescriptionFontColor);
    background-color: white;

    padding: .8em 1em .8em 1em;
    border-radius: 5px;
}

.img_wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.img_gallery{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: .8s cubic-bezier(.22,1,.36,1);
}


.webdesign_project:hover .img_gallery{
    transform: scale(1.15);
    transition: .8s cubic-bezier(.22,1,.36,1);
}

.img_overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: fill;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: opacity 0.2s;
    opacity: 1;
    z-index: 2;
    transition: .8s cubic-bezier(.22,1,.36,1);
}
/*                                           */


.link_btn {

    padding: 0.8em 1em 0.8em 1em;
    border-radius: 5px;
    background-color: #E9ECEF;
    text-decoration: none;
}

.link_text{
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


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


/*                             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: 1440px){
    body{
        font-size: var(--FontSizeText--2k);
    }

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

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

@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: 1230px){

}

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

    .contact_blue_btn{

        width: 20vw;
        min-height: 20vw;
    }

    .branding_handbag {
        margin-bottom: 15vw;
    }

    .img_handbag_container{
        display: flex;
        flex-direction: column;
    }
    .handbag_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 13/8;
    }

}

@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{
        margin-bottom: 6em;
    }
    
    .logo{

        height: 25px;

    }
    .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: #E9ECEF;
    }
    .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: #E9ECEF;
    }

    .colorDot{
        width: 2rem;
        height: 2rem;
        border-radius: 100vw;

    }

    .hero_main_text {
        height: 50vh;
        max-height: 100%;
        margin-bottom: 5em;
    }



    
    .description_design{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 15em;
    }

    .descritption_wrapper {
        width: 65%;
    }

    .title_container {
        
        margin-top: 15vw;
        margin-bottom: 15vw;
    }

    .decritption_text{
        max-width: none;
        text-align: justify;
        text-align-last:justify;
    }

    .logo_container img {
        width: 60vw;
    }
    .logo_container {
        margin-bottom: 25em;
    }

    .typo_container{
        flex-direction: column;
    }

    .typo_container > img {
        width: 60vw;
        margin-bottom: 15em;
    }

    .color_container{
        flex-direction: column;
        gap: 5vw;
    }

    .color_circle{
        width: 28vw;
        height: 28vw;
    }
    
    .color_row{
        width: 75%;
    }

    .wireframe_wrapper > img {
        max-width: 100%;
        border: 1px solid var(--DescriptionFontColor);
    }
    .wireframe_wrapper{
        margin-bottom: 15em;
    }

    .webdesign_wrapper > img{
        width: 95%;
    }

    .img_wrapper{
        height: 70vw !important;
    }

    .img_branding_container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .branding_billboards, .branding_products,.branding_img, .img_billboard_container{
        padding: 0em;
    }
    .branding_product_grid img {
        aspect-ratio: 0/0;
    }
    
 


       /*                                      NEXT CASE                               */


    .next_case_container {
        height: 180vh;
        max-height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin-bottom: 0vw;
    }

    .next_case_wrapper_grid{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    
    }

    .webdesign_project {
        margin-bottom: 0px;
    }

    .next_case{
        width: 90vw;
    }
    .img_wrapper {
        height: 70vw !important;
    }


    /*                                         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: 475px){


.header{
   margin-bottom: 6em;
}

.description_text {
    font-size: 8px;
}
.header_text{
  
    grid-column-start: 2;
    grid-column-end: 2;
    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;
}

/*                              CONTENT                             */

.typo_container > img {
    width: 70%;
    margin-bottom: 10vw;
}

.wireframe_wrapper > img {
    max-width: 90%;
}

.bliss_webpic {
    max-width: 90%;
    margin-bottom: 5vw;
}

.branding_products,.img_billboard_container,.branding_img {
    padding: 0em;
}

.branding_product_grid img {
    aspect-ratio: 0/0;
}

.billboard_img_wrapper img {
    width: 100%;
    aspect-ratio: 7/5;
    object-fit: cover;
}


.logo_column{
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
    justify-self: start;
}
.branding_column{
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 2;
    justify-self: start;
}

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

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

.work_text{
    color: var(--PrimaryWhite);
}


.next_case{
    width: 90vw;
    position: relative;
}

 /*                                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{
    color: var(--PrimaryWhite);
}

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

    
    .header_text{

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

}


@media(prefers-color-scheme: dark){

    body,main{
        background-color: var(--PrimaryWhite);
    }
}

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

