/* GENERIC CSS */ 

*{
    box-sizing: border-box;
}

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

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


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

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    h1 {
        font-size: 7vh;
    }
}


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

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

@media only screen and (max-width: 815px) {
    h3 {
        font-size: 18px;
    }
}

h4 {
    font-size: 36px;
    font-weight: 600;
    color: #3865AE;
}

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

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

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



/* HEADER */


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


.hellolinks { 
    padding: 0px 30px;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    color: black;
    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: black;
}

/* 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: black;
    color: white;
    border-radius: 50px;
    padding: 5px 30px;
    text-align: center;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
}

.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;
}


/* BACK TO PROJECTS BUTTON */ 


.backtoprojectsarrow {
    position: fixed;
    bottom: 25px;
    left: 100px;
    z-index: 50;
    color: black;
    text-decoration: none;
  } 

.backtoprojectstext {
    display: inline-block;
    padding-left: 20px;
}

/* MOBILE */ 

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








/* 1.0 - Title Section */ 

.seconecont {
    width: 100%;
    padding: 17vh 200px 8vh 200px;
    position: absolute;
    top: 0;
    left: 0;
}

.seconecont h1 {
    margin: 0;
    font-size: 6.8vh;
    color: #117098;
}

.seconecont h3 {
    max-width: 500px;
    font-size: 18px;
    margin: 0;
    color: #117098;
}

.disdesc {
    max-width: 305px;
    margin-top: 10vh;
}

.jigrendercont {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('Images/08_JIG/Render\ Compressed.png');
    background-size: cover;
    background-position: center;
}

.renderdes {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 600;
    opacity: 0.5;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .jigrendercont {
        height: 90vh;
    }
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .seconecont h3 {
        max-width: 100%;
    }

    .seconecont {
        width: 100%;
        padding: 17vh 100px 8vh 100px;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .seconecont {
        width: 100%;
        padding: 17vh 100px 8vh 100px;
    }

    .jigrendercont {
        height: 50vh;
    }
}

/* IPAD IN PORTRAIT */ 

@media only screen and (max-width: 768px) {
    .seconecont {
        position: relative;
        padding-bottom: 0;
    }
}


/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .seconecont {
        width: 100%;
        padding: 10vh 20px 0vh 20px;
        position: relative;
    }

    .seconecont h1 {
        font-size: 5vh;
        padding-bottom: 3vh;
    }

    .jigrendercont {
        height: 30vh;
    }

    .renderdes {
        display: none;
    }
}




/* 2.0 JIG TEAM */ 

.sectwocont {
    width: 100%;
    padding: 200px 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.teampic {
    max-width: 60%;
}

.jigdesmastercont h3 {
    margin-left: 40px;
}

.jigdescont {
    display: flex;
    align-items: flex-start;
}

.jigdes {
    max-width: 305px;
    min-width: 200px;
    margin-left: 40px;
    flex-shrink: 1;
}


/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .sectwocont {
        padding: 100px 100px;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .sectwocont {
        padding: 50px 20px;
        flex-direction: column;
    }

    .jigdescont {
        flex-direction: column;
    }

    .jigdes {
        margin-left: 0;
        max-width: 100%;
    }

    .jigdesmastercont h3 {
        margin-left: 0;
    }

    .teampic {
        max-width: 100%;
    }
}








/* 3.0 Brief and Site */ 

.secthreecont {
    width: 100%;
    padding: 0 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 200px;
}


.briefdescont {
    width: 305px;
    margin-right: 40px;
    flex-shrink: 1;
}

.profilescont {
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    width: auto;
    flex-shrink: 3;
    padding: 10px;
}

.profile {
    width: 10vw;
    margin: 20px;
}

.siteimage {
    height: 55vh;
    width: 100%;
    background-image: url('Images/08_JIG/IMG_9523.JPG');
    background-size: cover;
    background-position: 50% 55%;
}

.profilescontmob {
    display: none;
}


/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .secthreecont {
        padding: 0 100px;
    }
}

/* IPAD */ 

@media only screen and (max-width: 1024px) {
    .profile {
        width: 7vw;
    }

    .secthreecont {
        padding-bottom: 100px;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .secthreecont {
        padding: 0 20px;
        flex-direction: column-reverse;
    }

    .profilescont {
        display: none;
    }

    .profilescontmob {
        display: initial;
        width: 100%;
    }

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

    .briefdescont {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .profile {
        width: 45%;
        margin: 5% 0;

    }

    .siteimage {
        height: 30vh;
    }
}







/* 4.0 Indentifying Potential */ 

.secfourcont {
    position: relative;
}

.turbinedia {
    padding-top: 25vh;
    position: relative;
    display: block;
}

.turbinediamob {
    display: none;
}

.indentitydescont {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 2;
    padding: 0 200px;
    display: flex;
    align-items: center;
}

.textbox {
    background-color: white;
    border: 1px solid #117098;
    width: 305px;
    padding: 40px;
    box-sizing: content-box;
}

.textbox h3 {
    margin-top: 0;
    padding-top: 0;
}

.profitdiacont {
    width: 100%;
    background-color: #F5F5F5;
    padding: 100px 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profitdia {
    width: 45%;
    
}

.profitdescont {
    width: 305px;
}


/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .indentitydescont {
        padding: 0 100px;
    }

    .profitdiacont {
        padding: 100px 100px;
    }
}


/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .indentitydescont {
        padding: 0 20px;
        height: initial;
        position: relative;
    }

    .secfourcont {
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 0;
        padding-top: 30px;
        margin-bottom: -10px;
    }
    
    .turbinedia {
        display: none;
    }

    .turbinediamob {
        display: block;
        line-height: 0;
        width: 100%;
        height: auto;
        padding-top: 40px;
    }

    .textbox {
        padding: 0;
        border: none;
        width: 100%;
    }

    .profitdiacont {
        flex-direction: column-reverse;
        padding: 50px 20px;
    }

    .profitdia {
        width: 100%;
    }

    .profitdescont {
        width: 100%;
        margin-bottom: 30px;
    }
 
}












/* 5.0 Concept */ 

.conceptcont {
    width: 100%;
    padding: 100px 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conceptsketch {
    width: 45%;
    padding-left: 3vw;
    box-sizing: content-box;
}

.conceptdescont {
    width: 305px;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .conceptcont {
        padding: 100px 100px;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .conceptcont {
        padding: 50px 20px;
        flex-direction: column;
    }

    .conceptsketch {
        padding: 0;
        width: 80%;
    }

    .conceptdescont {
        width: 100%;
    }
}





/* 6.0 Desgin Axo */ 

.designaxomastercont {
    width: 100%;
    padding: 0 200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.axodia {
    width: 50vw;
    height: auto;
    background-color: white;
    z-index: 10;
}

.designaxodes {
    width: 305px;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .designaxomastercont {
        padding: 0 100px;
    }
}

/* IPAD */ 

@media only screen and (max-width: 1024px) {
    .axodia {
        width: 45vw;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .designaxomastercont {
        flex-direction: column;
        padding: 0 20px;
    }

    .designaxodes {
        width: 100%;
        margin-bottom: 40px;
    }

    .axodia {
        width: 100%;
    }
}





/* 7.0 Interior */ 

.interiorcont {
    background-color: #117098;
    width: 100%;
    transform: translateY(-10vh);
    padding: 300px 200px 100px 200px;
    display: flex;
    justify-content: space-between;
}

.interiordiacont {
    width: 50vw;
}

.interiordia {
    width: 100%;
    height: auto;
    background-color: white;
    margin-bottom: 40px;
}

.interiordescont {
    width: 305px;
    height: 500px;
    position: sticky;
    position: -webkit-sticky;
    top: 300px;
    margin-left: 40px;
}

.interiordescont h3, .interiordescont p {
    color: white;
}

.interiordiacont {
    position: relative;
}

.interiordiades {
    color: #117098;
    position: absolute;
    bottom: 50px;
    left: 20px;
    z-index: 10;
}

.white {
    color: white;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .interiorcont {
        padding: 300px 100px 0 100px;
    }
}

/* IPAD */ 

@media only screen and (max-width: 1024px) {
    .interiorcont {
        transform: translateY(0vh);
        padding: 100px 100px 0 100px;
        margin-top: 100px;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .interiorcont {
        padding: 100px 20px 0 20px;
        flex-direction: column-reverse;
    }

    .interiordescont {
        position: relative;
        top: 0;
        margin: 0;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }

    .interiordiacont {
        width: 100%;
    }
}




/* 8.0 Detail */ 

.secsevencont {
    width: 100%;
    height: auto;
    padding: 100px 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10vh;
}

.detaildia {
    width: 400px;
    height: auto;
}

.detaildes {
    width: 305px;
}


/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .secsevencont {
        padding: 100px 200px;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .secsevencont {
        padding: 100px 100px;
    }
}

/* IPAD */ 

@media only screen and (max-width: 1024px) {
    .secsevencont {
        margin-top: 0;
        padding: 100px;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .secsevencont {
        padding: 0px 20px 50px 20px;
        flex-direction: column;
    }

    .detaildia {
        width: 100%;
    }

    .detaildes {
        width: 100%;
        margin-bottom: 40px;
    }
}





/* 9.0 */ 

.finalsecimg {
    width: 100%;
    display: block;
    padding-top: 10vh;
}

/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .finalsecimg {
        padding-top: 25vh;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 768px) {
    .finalsecimg {
        padding-top: 0;
    }
}







/* 10.0 */ 

.downloadlinkcont {
    width: 100%;
    height: 15vh;
    background-color: #117098;
    transform: translateY(-1vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.downloadlinkcont a {
    color: white;
    text-decoration: none;
}


/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .downloadlinkcont {
        transform: translateY(-0.1vh);
    }
}





/* 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 */
  }