@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400');

body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: 'Source Sans Pro', Lato, "Lucida Grande", Tahoma, Sans-Serif;
    font-weight: 300;
    color: rgba(45,45,45,1);
}

#home {
    display: table;
    width: 100vw;
    height: 100vh;
    text-align: center;
    background-color: rgba(0,0,0,0.32), #37555F ;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.32)), url("../assets/background.jpg");
    background-size: cover;
}


#home_container {
    display: table-cell;
    vertical-align: middle;
    width: 100vw;
}

#logo_container {
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 3px 5px black;
}

#logo { 
    height: 14vh;
    padding: 1.5em;
    border-bottom: 2px solid rgb(232, 189, 188);
}

#logo_container > span{
    font-family: 'Source Sans Pro', Lato, "Lucida Grande", Tahoma, Sans-Serif;
    font-weight: 300;
    font-size: 120%;
    display: block;
    letter-spacing: 1px;
    padding-top: 20px;
    padding-bottom: 10px;
}

#home_content {
    background-color: rgba(255, 255, 255, 0.8);
    font-family: 'Source Sans Pro', Lato, "Lucida Grande", Tahoma, Sans-Serif;
    font-weight: 300;
    text-align: center;
    padding: 10px;
}

#home_content > nav > ul {
    list-style-type: none;
    margin: auto;
    display: inline-block;
    padding: 0;
    overflow: hidden;
    font-size: 120%;
}

#home_content > nav > ul > li {
    float: left;
}

#home_content > nav > ul > li > a {
    display: inline-block;
    color: rgb(12, 45, 45);
    text-align: center;
    padding: 12px 18px;
    text-decoration: none;
    -webkit-tap-highlight-color:  rgb(255, 255, 255, 0); 
}

#home_content > nav > ul > li > a:hover {
    color: #37555F;
}


#home_content > nav > ul > li.active > a {
    color: black;
    font-family: 'Source Sans Pro', Lato, "Lucida Grande", Tahoma, Sans-Serif;
    font-weight: 400;
}

#product ,#team ,#contact{
    width: 100vw;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
    position: relative;
}

#product_body, #team_body, #contact_body {
    font-size: 110%;
    font-family: 'Source Sans Pro', Lato, "Lucida Grande", Tahoma, Sans-Serif;
    font-weight: 300;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    line-height: 1.5em;
}

#product {
    background-color: #F1F1F1;
    background-image: linear-gradient(180deg, white, lightgrey);
    box-shadow: 0px 4px 7px rgba(124,124,124,0.55);
    z-index: 2;
}

#team {
    background-color: #EACACA;
    background-image: linear-gradient(180deg, #EACACA, #F2F2F2);
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    z-index: 1;
}

#contact {
    padding-bottom: 240px;
    background-color: white;
    box-shadow: 0px 4px 7px rgba(0,0,0,0.2);
    z-index: 0;
}

input[id = name], input[id = email] {
  border: none;
  border-bottom: 0.5px solid pink;
  width: 80%;
  max-width: 335px;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  outline: none !important;
}

.error {
    display: none;
    width: 80%;
    max-width: 335px;
    text-align: left;
    font-size: 0.83em;
    color: rgb(234, 15, 15)
}

.feedback {
    display: inline-block !important;
}

#response {
    font-size: 1.2em;
    margin-bottom: 32px;
}

.message {
    font-weight: 400;
}

textarea {
    width: 80%;
    max-width: 335px;
    height: 70px;
    resize: none;
    border: 0.5px solid rgb(232, 189, 188);
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    outline: none !important;
}

input[type = button] {
    border-radius: 8px;
    border: 1px solid white;
    max-width: 340px;
    width: 80%;
    height: 40px;
    font-family: inherit;
    font-size: inherit;
    font-weight: 300;
    background-image: linear-gradient(180deg, #EACACA, #F2F2F2);
    cursor: pointer;
    outline: none !important;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-image: linear-gradient(180deg, white, white);
  z-index: 9999;
}

.sticky + .content {
  padding-top: 200px;
}

::-webkit-input-placeholder { 
    color: rgba(45, 45, 45, 1); 
} 
 
:-moz-placeholder { 
    color: rgba(45, 45, 45, 1); 
} 
 
::-moz-placeholder { 
    color: rgba(45, 45, 45, 1); 
} 
 
:-ms-input-placeholder { 
    color: rgba(45, 45, 45, 1); 
} 
 
form.submit-form ::-webkit-input-placeholder { 
    color: grey; 
} 
 
form.submit-form :-moz-placeholder { 
    color: grey; 
} 
 
form.submit-form ::-moz-placeholder { 
    color: grey; 
} 
 
form.submit-form :-ms-input-placeholder { 
    color: grey; 
} 

@media (min-width: 320px) and (orientation: portrait) {
    input[type = text], input[type = email], input[type = button], textarea {
        width: 80%;
    }

    #product_body, #team_body, #contact_body {
        padding-left: 15vw;
        padding-right: 15vw;
    }
}

@media (orientation: landscape) and (max-width: 1340px){
    #logo{
        height:15vh;
        padding: 0.8em;
    }

    #logo_container > span{
        padding-top: 10px;
    }

    #home_content{
        padding: 12px;
    }
}

@media (orientation: portrait){
    #home{
        background-image: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.32)), url("../assets/background-mobile.jpg");
    }  
}    
