/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* global stuff */
a{
    font-style: none;
    text-decoration: none;
    color:#fefefe;
    font-size: 20px;
    transition: all 1s;
    display: block;
}
button{
    border:none;
    background-color: #055ab7;
    color:#fefefe;
    border-radius: 10px;
    cursor: pointer;
    transition: all 1s;
    height:47px;
    font-size: 25px;
}
button:hover{
    transform: scale(110%);
    background-color: #076bd5;
}
h2{
    line-height: 1.2;
}


/* fonts*/
.audiowide-regular {
  font-family: "Audiowide", sans-serif;
  font-weight: 550;
  font-style: normal;
}


.montserrat-reg {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* NavBar */
nav{
    display: flex;
    height: 50px;
    position: sticky;
    top:0px;
    background-color: #055ab7;
    justify-content: space-between;
}
#divnavright{
    display: flex;
    align-items: center;
    justify-content:right;
    text-align: center;
    height: inherit;
}
#logonav{
    width:150px;
    height: auto;
    cursor: pointer;
}
#logodiv{
    width:250px;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navdiv{
    transition: all 1s;
    width: 150px;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navdiv:hover > a{
    scale: 110%;
}
.navdiv:hover{
    background-color:  #076bd5;
    cursor: pointer;
}


/* hero section*/
#hero{
    background-color: #191716;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height:750px;
}
#herotext{
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: baseline;
    gap:10px;
}
#herotext h1{
    color: #fefefe;;
    font-size: 20px;
    letter-spacing: 1px;
}
#herotext h2{
    display: flex;
    color: #fefefe;;
    align-self:baseline;
    font-size: 70px;
}
#heroimg{
    width:auto; 
    height: 75vh;
    align-self: center;
    box-shadow: 0px 0px 30px#0066ff2a;
}   
#hero button{
    margin-top:50px;
    box-shadow: 0px 0px 15px #0066FF80;
}
#herobold{
    font-weight: 650;
}
#heronotbold{
    font-weight: 550;
}



/* OurMission */
#mission{
    background-color: #fefefe;
    height:800px;
}
