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


/* Let's Chat */ 

.letschatcont {
    background-color: #F5F5F5;
    width: 100%;
    height: 100%;
    padding: 10vh 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.letschattextcont h1 {
    font-size: 9vw;
    line-height: 8vw;
    margin: 0;
}

.letschattextcont p {
    font-weight: 600;
    color: grey;
    display: inline;
    padding-right: 15px;
}

.sociallogosletschat {
    display: flex;
    width: 100px;
    justify-content: space-between;
    align-items: center;
    margin-right: 15px;
}

.sociallogosletschat a {
    padding: 0;
    margin: 0;
}

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



.formcont {
    width: 450px; 
    margin-left: 50px;
}

.singlelineinput {
    width: 100%;
    background-color: #F5F5F5;
    border: 1px solid black;
    height: 55px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding-left: 20px;
    margin-top: 30px;
}

.messageinput {
    background-color:#F5F5F5;
    color: black;
    border: 1px solid black;
    width: 100%;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    padding-left: 20px;
    padding-top: 20px;
    font-size: 14px;
    resize: none;
}

.submitbutton {
    background-color: black;
    color: white;
    border: none;
    padding: 5px 30px;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
    width: 100%;
    height: 55px;
    text-align: left;
}


/* IPAD PRO */

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

/* MOBILE */

@media only screen and (max-width: 767px) {
    .letschatcont {
        padding: 100px 20px;
        flex-direction: column;
        justify-content: center;
        height: auto;
    }

    .formcont {
        width: 100%;
    }

    .letschattextcont p {
        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 */
  }
