.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}

  
:root {
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
}

h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    letter-spacing: 1px;
    line-height: 60px;
}

h4 {
    font-size: 25px;
    margin-bottom:20px;
}

/*NAV*/
nav {
    background-color:rgb(221, 221, 221);
    padding: 20px 0;
    position: fixed;
    width:100%;
    top:0px;
    z-index:10;
}
.inner-nav {
    margin: 0 60px;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
#logo {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}
#nav-items {

}
.nav-item {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.nav-item a {
    text-decoration: none;
    color: #000;
}
.nav-item a:hover {
    color: rgb(63,81,181);
}
/*NAV*/


section {
    width:100%;
    height:100vh;
    min-height:700px;
    position: relative;
}
.inner-content {
    padding: 100px 200px;
    height: calc(100% - 200px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

#home {
    background-image: url('../imgs/bk1a.jpg');
    background-size:cover;
    background-attachment: fixed;
    height:calc(100vh - 100px);
}

#home .inner-content {
    padding: 100px 200px;
    height: calc(100% - 200px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.screen {
    background: rgb(40,166,173);
    background: linear-gradient(307deg, rgba(40,166,173,1) 0%, rgba(64,156,191,0.4) 100%);
    width:100%;
    height:100%;
    position:absolute;
    mix-blend-mode: color;
}
.shade {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

#contact {
    box-shadow: 0px -5px 25px rgba(0, 0, 0, 0.6);
}
#contact .inner-content {
    padding: 0px 200px;
}
.contact-text {
    margin: -40px 0 100px 0;
    line-height: 30px;
}
.form{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width:100%;
}
.mdl-textfield {
    width:100%;
}

/*FOOTER*/
footer {
    width:100%;
    padding:8px 0px;
    margin:0 auto;
    position:fixed;
    bottom:0px;
    background-color: #000;
    color:#fff;
    display: flex;
    justify-content: center;
    font-size:11px;
}
/*FOOTER*/



@media only screen and (min-width: 200px) and (max-width: 1000px) {
    h1 {
        font-size: 30px;
        line-height: 50px;
    }

    #home .inner-content {
        padding: 20px 40px;
        height: calc(100% - 40px);
    }
    #contact .inner-content {
        padding: 20px 40px;
    }
}