body{
    height: 100vh;
    margin:0;
    font-family: "Poppins", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

main{
    height:calc(100vh + 166px);
    background-color: #000000;
}

h1, h2, p, a{
    margin: 0;
    color: white;
    text-decoration: none;
}

#header{
    z-index: 1000;
    position: fixed;
    width:100%;
}

nav{
    background-color: #000000;
    display:flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height:100px;
    padding: 0 25px;
}

.burger{
    display:none;
}

.nav_menu{
    display:flex;
    flex-flow:row nowrap;
    align-items: center;
    justify-content: space-around;
    width: 300px;
    list-style-type: none;
}

.nav_item{
    color: #fc1c25;
    text-decoration: none;
}

.nav_img img{
    width: 300px;
}

#main_hero{
    background-image: url('./images/main_hero_bg.png');
    height:630px;
    top: 100px;
    position: relative;
}

.hero_content{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    top: 47px;
    position:relative;
}

.hero_content h1{
    left: 109px;
    position: relative;
    text-align: center;
    font-size: 30px;
    top: 60px;
}

.hero_content img{
    width: 351px;
}

#main{
    background-color: #950001;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 100px;
    position: relative;
}

.main_content{
    padding: 50px;
    text-align: center;
    max-width: 850px;
}

#contact, #footer_section, #career_hero, #career{
    position: relative;
    top: 100px;
}

.contact_content{
    background: linear-gradient(#950001, #000000);
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    height: 200px;
    padding: 50px;
    text-align: center;
}

footer{
    display:flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    background-color: #000000;
    padding: 25px 0;
}

footer a:hover{
    color:#fc1c25;
}

.footer-payments{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 75px;
    padding: 0;
    margin: 10px 0 5px;
    list-style-type: none;
}

.footer-payments li a{
    font-size: 16px!important;
}

.footer-logo, .footer-logo a{
    display:flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width:100%;
}

footer p, footer a{
    color: white;
    text-decoration: none;
    font-size: 10px;
  }

.logo img{
    width: 50px;
}

.logo h1{
    font-size: 20px;
}

/*=============*/
/* Career page */
/*=============*/

.career_h1{
    top: 0px!important;
    left: 0px!important;
}

#career_hero{
    background-image: url('./images/career_hero_bg.png');
    background-size: cover;
    height: 350px;
    background-color: #000000;
}

.hero_txt{
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    margin-left: 280px;
}

.suspenders{
    width: 275px!important;
}

#career{
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career_content{
    min-height: 500px;
    min-width: 900px;
    padding: 50px;
    display:flex;
    align-items: start;
    justify-content: center;
    text-align: center;
    border: 1px solid #950001;
}

/*===============*/
/* Small devices */
/*===============*/
@media screen and (max-width: 584px){

    #home{
        margin: 0!important;
    }

/* nav shrink */
    .nav_menu{
        display: none;
        flex-flow: column nowrap;
        top: 100px;
        position: relative;
        right: -23px;
        background-color: black;
        padding: 15px;
        width: 90px;
    }

    .nav_menu li{
        padding: 10px 0;
    }

    .active{
        display:flex;
    }

    .burger{
        display: block;
        position: fixed;
        right: 25px!important;
        background: none;
        color: white;
        border: none;
    }

    .nav_img img{
        width: 200px;
    }

/* hero image stack */
    .hero_content{
        flex-flow: column nowrap;
        align-items: center;
        top: 150px;
    }

    #main_hero{
        background-position: bottom;
        height: 800px;
        background-repeat: no-repeat;
        background-color: #000000;
        top:0;
    }

    .hero_content h1{
        top: 0px;
        left: 0px;
        padding: 0 15px;
        font-size: 28px;
    }

    #contact, #footer_section, #main, #career_hero, #career{
        top:0;
    }

/* career page small devices */

    #career_hero .hero_content .hero_txt{
        margin: 0 0 25px 0;
    }

    #career_hero .hero_content{
        top:120px;
    }

    #career_hero{
        height: 550px;
    }

    .career_content{
        min-width: 0;
        margin:0 15px 15px;
    }

/* responsive footer styles */
    #footer_section{
        position: relative;
    }


}