/* GENERIC CSS */ 

html {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    height: 100%;
    margin: 0;
    scroll-snap-type: y proximity;
}

body {
    padding: 0;
    height: 100%;
    max-width: 100vw;
    margin: 0;
    overscroll-behavior-y: none;
}


h1 {
    font-size: 12.5vh;
    padding: 0;
    display: block;
    text-decoration: none;
}


h2 {
    font-weight: 600;
    font-size: 40px;
    margin: 0px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

h6 {
    font-size: 14px;
    display: inline;
}

p {
    font-size: 12px;
    font-weight: 300;
}

a {
    font-size: 14px;
    text-decoration: none;
}



/* HEADER */


.headerhello {
    position: fixed;
    color: black;
    padding: 30px 100px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
    box-sizing: border-box;
}



.hellolinks { 
    padding: 0px 30px;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.letschat {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 5px 30px;
    text-align: center;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    width: 60px;
}

.logomobile {
    display: none;
    width: 30px;
}

.burgerwhite {
    display: none;
    width: 25px;
}

.mobilenavcont {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    
    height: 80%;
    width: 90%;
    left: 5%;
    top: 9%;
    background-color: #F5F5F5;
    border-radius: 10px;
    z-index: 20;
    overflow-x: hidden;
    padding-top: 30%;
    padding-bottom: 10%;
    box-sizing: border-box;

    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobilenavlinkscont a {
    font-size: 18px;
    color: black;
    display: block;
    border: 1px solid black;
    margin-bottom: 20px;
    padding: 5px 0px;
    width: 195px;
    text-align: center;
    border-radius: 15px;
}

.mobilenavconnectcont {
    text-align: center;
    width: 60%;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobilesnavconnect {
    font-weight: 400;
    font-size: 12px;
    margin: 0;
}

.mobilenavsocialiconscont {
    height: 40px;
    display: flex;
    justify-content: space-evenly;
}

.mobilenavsocialiconscont a {
    font-size: 0;
}

/* ANIMATED BURGER ICON */ 

.animatedburgerwhite {
    z-index: 30;
    display: none;
}

.animatedburgerwhitebar1, .animatedburgerwhitebar2, .animatedburgerwhitebar3 {
    width: 27px;
    height: 3px;
    margin-bottom: 6px;
    transition: 0.4s;
    background-color: white;
}

/* Rotate first bar */
.change .animatedburgerwhitebar1 {
    -webkit-transform: rotate(-45deg) translate(-8px, 4px) ;
    transform: rotate(-45deg) translate(-8px, 4px) ;
  }
  
/* Fade out the second bar */
.change .animatedburgerwhitebar2 {
    opacity: 0;
  }

/* Rotate last bar */
.change .animatedburgerwhitebar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -4px) ;
    transform: rotate(45deg) translate(-8px, -4px) ;
  }





/* HEADER FOR MOBILE */

@media only screen and (max-width: 815px) {
    .burgerwhite {
        display: none;
    }

    .animatedburgerwhite {
        display: block;
    }

    .hellolinks {
        display: none;
    }

    .letschat {
        display: none;
    }

    .logo {
        display: none;
    }

    .logomobile {
        display: initial;
    }

    .headerhello {
        padding: 15px 5%;
        width: 100vw;
        z-index: 15;
    }


} 



/* LETS CHAT BUTTON + FORM */ 

.letschat {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 5px 30px;
    text-align: center;
    font-weight: 300;
    text-decoration: none;
}

.letschatform {
    position: fixed;
    width: 0;
    height: 510px;
    background-color: white;
    right: 0;
    top: 20%;
    z-index: 5;
    border-radius: 25px 0 0 25px;
    transition: 1s;
    overflow: hidden;
}

.letschatform .closebtn {
    position: absolute;
    right: 40px;
    top: 30px;
    text-decoration: none;
    color: grey;
}

.kwes-form {
    padding: 30px 30px 30px 45px;
}

.formtitle {
    color: black;
    margin: 0 0 30px 0;
}

.submitbutton {
    position: relative;
    display: block;
    background-color: black;
    color: white;
    border: none;
    padding: 5px 30px;
    font-family: 'Poppins', sans-serif;
    border-radius: 30px;
    margin-top: 30px;
    margin-bottom: 100px;
}

.singlelineinput {
    background-color: #F7F7F7;
    border: none;
    color: black;
    height: 44px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding-left: 20px;
    width: 80%;
    margin-top: 10px;
}

.messageinput {
    background-color: #F7F7F7;
    color: black;
    border: none;
    border-radius: none;
    width: 80%;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    padding-left: 20px;
    padding-top: 20px;
    font-size: 14px;
    resize: none;
}








/* LANDING SECTION */

.landing {
    color: white;
    border-bottom: 0px solid white;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
    background-image: url("Images/01_Index/UX\ Ball\ Render\ V2-Current\ View.png");
    background-position: center;
    background-size: cover;

    background-color: #0c0c0c;
    overflow: hidden;
}

.headshotdesktop {
    height: 95%;
    position: fixed;
    bottom: 0px;
    left: 50%;
    padding-left: 0px;
    z-index: 0;
}

.headshotmobile {
    display: none;
    height: 90%;
    position: fixed;
    bottom: 0px;
    left: 50%;
    padding-left: 40px;
    z-index: 0;
}

/* MOBILE */

@media only screen and (max-width: 767px) {
    .headshotdesktop {
        display: none;
    }

    .headshotmobile {
        display: initial;
    }
}



.scrolldown {
    position: fixed;
    bottom: 5vh;
    height: 60px;
    z-index: 1;
    left: 50%;
    margin-left: 400px;
    padding-left: 20px;
    border-left: white;
    border-left-style: solid;
    border-width: 1px;
}

.scrolldown p {
    margin: 0;
}

.lettergridcont {
    position: fixed;
    display: inline-flex;
    width: 50%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 100px;
}

.largecctcont {
    text-align: left;
}

.largecctcont h1 {
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: white;
    color: transparent;
    font-size: 13.5vh;
    line-height: 12vh;
    margin: 0;
}

.lettergrid {
    display: none;
    width: 400px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lettergrid h2 {
    font-size: 48px;
    margin: 0px 7px 0px 7px;
    width: 38px;
}

.gl {
    color:#2F2F2F;
}

.landingdescont h3 {
    font-size: 4vh;
    line-height: 1vh;
}

.landingdescont p {
    margin-top: 10vh;
}

.whitestripe {
    background-color: #F5F5F5;
    z-index: 10;
    width: 100vw;
    height: 5vh;
    bottom: 0rem;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    padding-left: 140px;
    box-sizing: border-box;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}


/* LANDING SECTION MOBILE */ 

.landingwordscont {
    display: none;
    padding-left: 5%;
    padding-bottom: 25%;
    position: fixed;
    bottom: 0;
    
}

.landingwordmobile {
    font-size: 9vh;
    line-height: 2.2vh;
    font-weight: 600;
    margin-top: 0;
}

#landingletsmobile {
    font-size: 4.5vh;
    margin-bottom: 4.2vh;
    color: #454545;
}

/* MOBILE */

@media only screen and (max-width: 815px) {
    .landing {
        position: relative;
        overflow: hidden;
    }

    .lettergridcont {
        display: none;
    }

    .whitestripe {
        display: none;
    }

    .headshot {
        padding-left: 0px;
        position: absolute;
    }

    .landingwordscont {
        display: initial;
    }

    .landingwordscont {
        position: absolute;
    }

}


/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {

    .largecctcont {
        padding-left: 200px;
    }

    .largecctcont h1 {
        line-height: 9vh;
    }

    .landingdescont h3 {
        font-size: 30px;
    }

}



/* PROJECTS SECTION */

.projects {
    position: relative;
    border-bottom: 0px solid #F5F5F5;
    height: 100%;
    padding: 0px 50px; 
    box-sizing: border-box;
    scroll-snap-align: start;
    background-color: #F5F5F5; 
    scroll-snap-stop: always;
    z-index: 10;
    overflow: hidden;
}

.projectslogo {
    width: 60px;
    cursor: pointer;
}

.headerprojects {
    position: absolute;
    color: black;
    padding: 30px 50px;
    display: inline-flex;
    justify-content: left;
    align-items: center;
    z-index: 5;
}

.projectscont {
    width: 100%;
    height: 100%; 
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.projectsdescont {
    width: 305px;
    padding-left: 50px;
    padding-bottom: 50px;
}

.projectname {
    line-height: 11vh;
    margin: 0;
    color: black;
    padding-left: 5px;
}

.projectname:hover {
    background-color: black;
    color: white;
}

.projectslistcont {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}


@media (max-aspect-ratio: 26/16) {
    .projectname {
        font-size: 10vh;
        line-height: 10vh;
    }
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .projectsdescont {
        padding-left: 0;
    }

    .projectslistcont {
        padding-left: 40px;
    }

    .projectname {
        font-size: 7.5vh;
        line-height: 8.5vh;
    }

    .projects {
        padding-left: 100px;
    }

    .projectslogo {
        display: none;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    
    .largecctcont h1 {
        font-size: 10vh;
    }
    
    .projectslogo {
        display: none;
    }

    .projectsdescont {
        display: none;
    }

    .projectname {
        font-size: 8vh;
        line-height: 7vh;
    }

    .projectslistcont {
        padding-left: 0;
    }

    .projects {
        padding-left: 50px;
    }
}

/* IPAD IN PORTRAIT */

@media only screen and (max-width: 768px) and (orientation: portrait) {
    .projectsdescont {
        display: none;
    }

    .projectslistcont {
        padding-left: 0;
    }

    .projectname {
        font-size: 8vh;
        line-height: 7vh;
    }

    .projectslogo {
        display: none;
    }
}



/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .projectname {
        font-size: 11vw;
        line-height: 11vw;
        margin: 3px 0;
    }

    .projects {
        display: none;
        padding: 0 20px;
    }
}






/* SHOW DESCRIPTION ON HOVER SECTION */ 

#one {
    display: none;
}

#two {
    display: none;
}

#three {
    display: none;
}

#four {
    display: none;
}

#five {
    display: none;
}

#six {
    display: none;
}

#seven {
    display: none;
}

#eight {
    display: none;
}

#nine {
    display: none;
}











/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
.projectslist::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
.projectslist {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }


  /* Hide scrollbar for Chrome, Safari and Opera */
  .cvinfo::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
.cvinfo {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
