
/*import fonts and icons*/
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/*body styling*/
body {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
}

/*header and navigation bar styling*/
body > header{
  background: url('../images/Banner2.jpg') no-repeat;
  background-size: cover;
  height:650px; }

nav, ul {
  list-style: none;
   margin: 0;
  }

nav {
  background: #ffffff;
  margin: 0 auto;
  }

nav ul.nav-primary {
  height: 80%;
  display: flex;
  }

.nav-item {
display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 50px 0 auto; }

.nav-item a {
  color: #00063F;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px; }

.nav-item a:hover{
  color: #ff8c00;
  }

  .nav-item p {
  color: #00063F;
  font-weight: 900;
  text-decoration: none;
  font-size: 16px; }

.flex-container.nav {
justify-content: left;
align-items: stretch;
}

.flex-container.nav div{
    justify-content: center;
}

.flex-container.nav > div:first-of-type{
    border-right: solid 3px #00063F;
    background: #ffffff;
}

.flex-item.nav-primary {

width: 40%;
}

.img-logo {
width: 60px;
}

.landing-title {
    width: 500px;
    margin-left: 6%;
    text-align: left}

.landing-title h1 {
  color: #ffffff;
  font-size: 40px;
  margin-top: 100px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.landing-title a {
  text-decoration: none; }

.landing-title p {
  font-size: 24px;
  color: #ffffff;
}

.landing-title p:hover
 {
  color: #ff8c00;
}

/*section styling*/
section {
  text-align: center;
  padding-top: 20px; }

section.leader {
    border-bottom: solid 2px #00063F;
}

.section-title {
   text-transform: uppercase;
   font-size: 1.6em;
   font-weight: bold;
}

/*flex container general styling*/
.flex-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

/*team members styling*/
.flex-container.all{
    align-items: flex-end;
}

.flex-container.person {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 30px 40px 30px;
    justify-content: center;
}

.flex-container.links {
    padding-top: 10px;
}

.flex-item.btn{
    padding: 10px 20px 10px 20px;
    background: #00063F;
    border-radius: 10px;
    margin-left: 10px;
}

.flex-item.btn a{
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.flex-item.btn a:hover{
    color: #ffffff;
}


.lead {
    color: #ff8c00;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom:0;
}

.img-person {
    width: 250px;
    border-radius: 50%;
}

.name {
    color: #00063F;
    font-weight: bold;
    font-size: 16px;
}

/*footer styling*/


.footer {
    background: #040720;
    display: flex;
    justify-content: center;
    color: #ffffff;
}

.footer .flex-item {
padding: 0 30px 0 30px;
}

.footer .flex-item:first-of-type p{
text-transform: uppercase;
}

.footer > .flex-container > .flex-item:first-of-type {
    text-align: right;
}

.flex-container.contacts{
    flex-direction: column;
    margin-right: 20%;
}

.flex-container.contacts p{
   text-size: 0.7em;
   margin-bottom: 2px;
}

.material-icons {
  color: #FFFFFF;
  position: relative;
  top: 5px;
  left: 5px;
  margin-right: 5px;
  margin-left: -5px;
}