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

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

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: 3;
    box-sizing: border-box;
}


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

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









/* 1.0 */ 

.seconemaster {
    position: relative;
    height: 190vw;
}

.herobackgroundred {
    width: 100vw;
    height: 100vh;
    background-color: #DE323A;
}

.section1cont {
    width: 100vw;
    height: auto;
    padding: 0 250px;
    position: absolute;
    top: 20vh;
    left: 0;
}

.herocont {
    width: 100%;
    height: auto;
    padding: 0 10vw;
    position: relative;
    overflow: hidden;
}

.herotextandlogo {
    position: relative;
    width: auto;
    height: 30vh;
}

.splatelogohero {
    height: 11vh;
    display: block;
}

.herotextandlogo p {
    font-size: 16px;
    margin-top: 20px;
    max-width: 220px;
    color: white;
}

.softwareicons {
    width: 140px;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.heroblackbike {
    position: absolute;
    right: 9vw;
    top: 0;
    width: 40vw;
    height: auto;
}

.falsechromebarlanding {
    padding: 0;
    margin: 0;
    display: block;
}

.landingpageimg {
    width: 100%;
    padding: 0;
    margin: 0;
}


/* IPAD PRO */

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

    .seconemaster {
        height: 210vw;
    }
}



/* IPAD */

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

    .herocont {
        padding: 0 5vw;
        padding-bottom: 5vh;
    }

    .seconemaster {
        height: 215vw;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .heroblackbike {
        bottom: 20px;
        top: auto;
    }

    .herocont{
        padding: 0 100px;
    }
    
    .seconemaster {
        height: 235vw;
    }
}



/* IPAD POR */ 

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

    .heroblackbike {
        right: 0;
    }

    .seconemaster {
        height: 220vw;
    }

    .homepagedescont {
        padding: 0 15px;
    }

    .backtoprojectsarrow, .backtoprojectstext {
        display: none;
    }
}


/* MOBILE */

@media only screen and (max-width: 767px) {
    .section1cont {
        padding: 0 20px;
        top: 10vh;
    }

    .herotextandlogo {
        margin-bottom: 10vh;
        z-index: 10;
    }

    .heroblackbike {
        width: 60vw;
    }

    .softwareicons {
        z-index: 10;
    }

    .seconemaster {
        height: 305vw;
    }
}













/* 2.0 */

.sectwomaster {
    position: relative;
    display: block;
    z-index: -1;
}

.sectwobackgroundred {
    height: 75vh;
    width: 100vw;
    background-color: #DE323A;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.customeasytext h4 {
    display: block;
    margin: 0;
    padding: 0;
}

.homepagedescont {
    max-width: 305px;
    display: block;
    color: white;
}

.macimgcont {
    width: 100%;
    height: 35vw;
    margin: 0 auto;
    position: relative;
    padding: 0 200px;
}

.custompagemac {
    width: 65vw;
    height: auto;
    position: absolute;
    top: -10vw;
    left: 130px;
    display: block;
}

.macdescont {
    max-width: 305px;
    float: right;
    padding-top: 60px;
}

.macdescont h3 {
    color: #DE323A;;
}


/* IPAD PRO */

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

    .macimgcont {
        padding: 0 150px;
    }

    .custompagemac {
        left: 50px;
    }
}

/* IPAD */

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

    .macimgcont {
        padding: 0 100px;
    }

    .custompagemac {
        width: 55vw;
    }

    .macdescont {
        padding-top: 30px;
    }

    .custompagemac {
        left: 30px;
    }
}

/* IPAD PRO IN PORTRAIT */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .sectwobackgroundred {
        height: 50vh;
    }
}

/* IPAD POR */ 

@media only screen and (max-width: 768px) {
    .custompagemac {
        position: relative;
        top: -10vh;
        width: 100%;
        left: 0;
    }

    .macimgcont {
        height: 55vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .macdescont {
        padding-top: 0;
        transform: translateY(-40px);
        max-width: 100%;
    }
}


/* MOBILE */

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

    .sectwobackgroundred {
        height: 150vw;
    }

    .customeasytext {
        flex-direction: column;
    }

    .homepagedescont {
        max-width: 100%;
        padding: 0;
    }

    .macimgcont {
        padding: 0 20px;
    }
}








/* 3.0 */ 

.secthreemaster {
    position: relative;
    width: 100%;
    padding: 100px 200px;
    padding-bottom: 15vh;
}

.parthightlightcont {
    display: flex;
    justify-content: center;
    box-sizing: content-box;
    align-items: center;
}

.zoomedpartcont {
    margin-top: 10vh;
}

.threedescont {
    max-width: 305px;
}

.threedescont h3 {
    color: #DE323A;
}

.parthighlightimgcont {
    width: 50vw;
    margin: -100px 0;
}

.parthighlightbar {
    width: 100%;
    height: auto; 
    display: block;
    padding: 0;
    margin: 0;
}

.makebottomcurved {
    border-radius: 0 0 22px 22px;
}


/* IPAD PRO */

@media only screen and (max-width: 1367px) {
    .secthreemaster {
        padding: 0 150px;
        padding-bottom: 15vh;
    }
}

/* IPAD */

@media only screen and (max-width: 1024px) {
    .secthreemaster {
        padding: 0 100px;
        padding-bottom: 15vh;
    }

    .parthighlightimgcont {
        width: 45vw;
    }
}


/* IPAD POR */ 

@media only screen and (max-width: 768px) {
    .parthightlightcont {
        flex-direction: column-reverse;
        align-items: center;
    }

    .parthighlightimgcont {
        width: 100%;
        margin-bottom: 20px;
    }
}


/* MOBILE */

@media only screen and (max-width: 767px) {
    .secthreemaster {
        padding: 0 20px 40px 20px;
    }
}












/* 4.0 */ 

.secfourmaster {
    width: 100%;
    box-sizing: content-box;
    height: auto;
    position: relative;
}

.addaccesscont {
    width: 100%;
    padding: 0 250px;
}

.accessbar {
    width: 100%;
    display: block;
}

.addimg {
    width: 100%;
}

.productmockcont {
    position: relative;
    width: 100%;
    padding: 0 250px 100px 250px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.custombikepro {
    width: 50vw;
    transform: translateY(-50px);
}

.previewcont {
    width: 100%;
    padding: 0 250px 100px 250px;
}

.previewimg {
    width: 100%;
}

.bottomredbackground {
    z-index: -10;
    background-color: #DE323A;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45vh;
}


/* IPAD PRO */

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

    .productmockcont {
        padding: 0 150px 100px 150px;
    }

    .previewcont {
        padding: 0 150px 100px 150px;
    }
}


/* IPAD */

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

    .productmockcont {
        padding: 0 100px 100px 100px;
    }

    .previewcont {
        padding: 0 100px 100px 100px;
    }
}

/* IPAD PRO IN PORTRAIT */

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


/* IPAD POR */ 

@media only screen and (max-width: 768px) {
    .productmockcont {
        flex-direction: column-reverse;
    }
}


/* MOBILE */

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

    .productmockcont {
        padding: 0 20px 20px 20px;
    }

    .previewcont {
        padding: 0 20px 40px 20px;
    }

    .custombikepro {
        width: 100%;
        transform: translateY(-30px);
    }

    
}










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