

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body{
    padding-top: 0;
    padding-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    line-height: 1.7em;
    font-weight: 300;
}

h1, h2, h3, h4{
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

h2{
    font-size: 40px;
}

strong{
    font-weight: 700;
}

a{
    text-decoration: none !important;
    color: inherit;
}

header{
    width: 100%;
}

.gradient{
    height: 50px;
    width: 100%;
    float: left;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

.navContainer{
    padding-bottom: 30px;
}

h1{
    margin-bottom: 32px;
    margin-top: 60px;
}

article{
    position: absolute;
    top: 0;
}

.navContainer .row{
    display: flex;
    align-items: center;
}


nav ul li a{
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 50px;
}

nav{
    width: 100%;
    left: 0;
    height: 0;
    overflow: hidden;
    position: fixed;
    background: black;
    z-index: 1;
}

nav ul {
    padding: 60px 0 0 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

nav ul li{
   list-style: none;
    text-align: center;
}

label.burger {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 0;
    cursor: pointer;
    width: 65px;
    height: 65px;
    z-index: 2;
}

.logoWrap{
    z-index: 2;
}

input#burger {display:none}

.line {
    position: absolute;
    right: 15px;
    height: 4px;
    width: 40px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: 0.5s;
    transform-origin: center;
}

.line:nth-child(1) { top: 20px; }
.line:nth-child(2) { top: 30px; }
.line:nth-child(3) { top: 40px; }

#burger:checked + .burger .line:nth-child(1){
    transform: translateY(10px) rotate(-45deg);
}

#burger:checked + .burger .line:nth-child(2){
    opacity:0;
}

#burger:checked + .burger .line:nth-child(3){
    transform: translateY(-10px) rotate(45deg);
}



.navContainer .row div:nth-of-type(2){
    display: flex;
    justify-content: flex-end;
}

footer{
    background: black;
    color: white;
    font-size: 15px;
    padding: 30px 0;
    line-height: 25px;
    text-align: center;
}

footer h3{
    margin-top: 0;
    text-transform: uppercase;
}

.socialIcon{
    display: block;
    height: 30px;
    width: 30px;
    margin-bottom: 30px;
}

.socialIcon img{
    height: 100%;
}

footer .flex{
    display: flex;
    justify-content: space-around;
}

footer input[type="submit"]{
    background: black;
    text-transform: uppercase;
    margin-left: -5px;
    height: 40px;
    border: 1px solid white;
    font-family: 'draft_abold', sans-serif;
    margin-bottom: 30px;
    top: -2px;
    position: relative;
    color: white;
}

footer input[placeholder="E-Mail"]{
    border: none;
    height: 40px;
    padding: 1px 10px;
    color: black;
}

nav li:last-of-type img{
    padding-top: 0;
}

iframe{
    margin-top: -1px;
}

/* XS Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

}

/* MD Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    nav li:last-of-type img{
        padding-top: 12px;
    }
    h2{
        font-size: 70px;
    }
    footer{
        text-align: left;
    }
    footer input[type="submit"]{
        top: -1px;
        position: relative;
    }
    .navContainer {
        padding-top: 30px;
    }
    .burger{
        display: none;
    }
    nav ul{
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    nav ul li{
        float: left;
        margin-left: 20px;
    }
    nav ul li a{
        font-size: 15px;
    }
    .navContainer .row {
        align-items: center;
    }
    nav {
        position: initial;
        height: auto !important;
        background: transparent;
    }
}

/* LG Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* XL Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    h1{
        margin-top: 100px;
    }

    .logoWrap{
        padding-right: 45px;
        padding-bottom: 27px;
    }
}




