/* GENERIC CSS */ 

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


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: 14px;
    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: 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;
}



/* HERO IMAGE */ 

.heroimage {
    border-bottom: 0px solid white;
    padding: 0px 50px; 
    box-sizing: border-box;
    min-height: 100%;
    position: relative;
    background-image: url("Images/05_Australia/IMG_2435.jpg");
    background-size: cover;
    background-position: 50% 80%;
}

.title {
    color: white;
    margin: 0 auto;
    position: absolute;
    left: 48%;
    -webkit-transform: translateX(-48%);
    -moz-transform: translateX(-48%);
    transform: translateX(-48%);
    top: 16%;
}

.title h1{
    font-size: 70px;
    line-height: 70px;
    margin: 0;
    font-weight: 600;
}

.title h3{
    margin: 0;
    text-align: right;
}

.scrolldown {
    position: absolute;
    bottom: 0;
    height: 60px;
    z-index: 10;
    left: 50%;
    padding-left: 20px;
    border-left: white;
    border-left-style: solid;
    border-width: 1px;
}

.scrolldown p {
    margin: 0;
    color: white;
}

.descriptiontext {
    color: white;
    position: absolute;
    max-width: 360px;
    padding-left: 5%;
    bottom: 0;
    margin-bottom: 75px;
}



.backtoprojects {
    display: inline-block;
    margin: 0;
    color: white;
    text-decoration: none;
}

.backtoprojectslogo {
    display: inline;
    padding-right: 20px;
}


/* IPAD POR */ 

@media only screen and (max-width: 768px) {
    .title {
        top: 17%;
    }
}

/* MOBILE */

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

    .backtoprojects {
        display: none;
    }

    .backtoprojectslogo {
        display: none;
    }
 

    .heroimage {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .descriptiontext {
        display: none;
    }
}



/* IMAGE GRID */ 

.imagegallerycont {
    width: 100%; 
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 50px;
}

.imagegallery {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    justify-content: center;
}
  
.column {
    flex: 32%;
    max-width: 32%;
    padding: 0 4px;
}
  
.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes a one column instead of 3 */ 

@media only screen and (max-width: 768px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }

    .imagegallery {
        width: 95%;
    }
    
    .column img {
        margin-top: 15px;
    }
}

.youtubecont {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.greyone {
    width: 100%;
    height: 42.6vh;
    background-color: #F5F5F5;
    margin-top: 8px;
}

.greytwo {
    width: 100%;
    height: 49.9vh;
    background-color: #F5F5F5;
    margin-top: 8px;
}

.greythree {
    width: 100%;
    height: 30vh;
    background-color: #F5F5F5;
    margin-top: 8px;
}

.ifvideo {
    font-size: 4vh;
    text-align: center;
    margin-top: 20vh;
}


/* MOBILE */

@media only screen and (max-width: 767px) {
    .imagegallerycont {
        margin-top: 0px;
    }

    .greyone, .greytwo, .greythree {
        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 */
  }