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


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

@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: 10;
    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 */ 

.seconecont {
    position: relative;
    background-color: #F0EFEB;
    width: 100%;
    padding-bottom: 200px;
}

.heromodels {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.disdesc {
    max-width: 305px;
    margin-top: 10vh;
    color: #354F73;
}

.titlecont {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 17vh 200px 8vh 200px;
}

.titlecont h1 {
    margin: 0;
    font-size: 6.8vh;
    color: #354F73;
}

.titlecont h3 {
    max-width: 45%;
    font-size: 18px;
    margin: 0;
    color: #354F73;
}

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

.downloaddisslink a {
    font-size: 12px;
    color: #354F73;
    font-weight: 300;
}

.downloadarrow {
    padding: 0;
    display: inline;
    line-height: 1px;
    padding-left: 20px;
}

.heromodelsipadpro {
    display: none;
}

.heromodelsipadproport {
    display: none;
}

.heromodelsmobile {
    display: none;
}


/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .heromodels {
        display: none;
    }
    
    .heromodelsipadpro {
        display: flex;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
}


/* IPAD */

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

    .disdesc {
        margin-top: 50px;
    }
}

/* IPAD PRO IN POR */ 

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

    .heromodelsipadpro {
        display: none;
    }
    
    .heromodelsipadproport {
        display: flex;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .titlecont {
        padding-top: 10vh;
    }

    .titlecont h1 {
        font-size: 5vh;
    }
}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .titlecont {
        padding: 100px 20px;
    }

    .titlecont h3 {
        max-width: 100%;
        padding-top: 20px;
    }

    .heromodels, .heromodelsipadpro, .heromodelsipadproport {
        display: none;
    }

    .heromodelsmobile {
        display: flex;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .seconecont {
        padding-bottom: 100px;
    }
}





/* 2.0 */

.diaandmotmastercont {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin-top: 50vh;
    padding: 0 100px;
}

.diacont {
    width: 600px;
}

.cocdia {
    width: 100%;
    position: relative;
    padding-top: 100px;
}

.motandabtextcont {
    max-width: 610px;
    color: #354F73;
    padding-left: 150px;
    position: sticky;
    position: -webkit-sticky;
    top: 20vh;
    box-sizing: content-box;
}

.costpublicdia {
    margin-top: 300px;
}


/* IPAD */

@media only screen and (max-width: 1024px) {
    .motandabtextcont {
        max-width: 400px;
        padding-left: 50px;
    }
}

/* IPAD PRO IN POR */ 

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .diaandmotmastercont {
        margin-top: 25vh;
    }
}

/* MOBILE */ 

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

    .diacont {
        width: 100%;
    }

    .motandabtextcont {
        position: relative;
        top: 0;
        padding: 0;
        max-width: 100%;
    }

    .costpublicdia {
        margin-top: 100px;
    }

    .cocdia {
        padding-top: 50px;
    }
}








/* 3.0 */ 

.secthreecont {
    position: relative;
}

.allmodels {
    width: 100%;
    height: auto;
    display: block;
}

.architect {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15vh;
    z-index: 2;
    width: 100%;
}

.architectsubcont {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}

.architectsubcont h4 {
    font-size: 60px;
    margin: 0;
    color: white;
}

.elonname {
    font-size: 12px;
    padding-right: 17px;
    margin-top: 0;
    color: white;
}


/* IPAD */

@media only screen and (max-width: 1024px) {
    .architectsubcont h4 {
        font-size: 40px;
    }  
}



/* 4.0 */ 

.secfourcont {
    width: 100%;
    background-color: black;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.renderscont {
    position: relative;
    width: 30%;
    display: flex;
    flex-direction: column;
}

.renderone {
    width: 50%;
    margin: 20px 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.rendertwo {
    width: 50%;
    margin: 20px 0;
}

.para {
    margin: 10px 0;
    color: white;
}

.para p {
    line-height: 20px;
}

.concone h3 {
    color: white;
}

.conclusioncontone {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.conclusionconttwo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.concone {
    width: 610px;
    padding-right: 100px;
    padding-left: 100px;
    display: flex;
    justify-content: space-between;
    box-sizing: content-box;
}

.conctwo {
    width: 610px;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: content-box;
}


/* IPAD */

@media only screen and (max-width: 1024px) {
    .renderone {
        width: 40%;
    }

    .rendertwo {
        width: 40%;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    
    .concone {
        padding-right: 50px;
    }

    .conctwo {
        padding-right: 50px;
    }


    .fone {
        order: 2;
    }

    .ftwo {
        order: 1;
    }

}

/* MOBILE */ 

@media only screen and (max-width: 767px) {
    .secfourcont {
        padding: 200px 20px 20px 20px;
    }
    
    .conclusioncontone, .conclusionconttwo {
        flex-direction: column;
    }

    .concone, .conctwo {
        width: 100%;
        padding: 0;
    }

    .renderone, .rendertwo {
        width: 100%;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    .architectsubcont {
        width: 100%;
        padding: 20px;
    }

    .architect {
        top: 30vh;
    }
}









/* 5.0 */ 

.boring {
    width: 100%;
    display: flex;
}




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