@charset "utf-8";

/* CSS Document */

@media(min-width:768px) {}

@media(min-width:992px) {}

@media(min-width:1200px) {}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  font-size: 1em;
  line-height: 1.428em;
  color: #1e1e1e;
  background-color: #fff;
}

h1 {
  text-align: left;
  color: #1f3662;
  margin-bottom: 2em;
  line-height: 1.2em
}

.container {
  width: 60%;
  margin: 50px auto;
  background: white;
  border-radius: 8px;
  padding: 50px;
  25px;
  /* border: 1px solid #eee; */
  box-shadow: 7px 7px 7px #777777;
}

.homeButton {
  background: #1f3662;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
}

.homeButtonInverse {
  background: white;
  padding: 10px 15px;
  text-decoration: none;
  color: #1e1e1e;
  font-weight: bold;
  border-radius: 8px;
}


/* *********************************
 *    Generic FlexBox Styling      *
 **********************************/
.flexContainer {
  display: flex;
}

.flexItem {
  flex: 1;
}

.flexStart {
  justify-content: flex-start;
}

.flexCenter {
  justify-content: center;
}

.flexEnd {
  justify-content: flex-end;
}

.flexWrap {
  flex-wrap: wrap;
}

.itemCenter {
  align-items: center;
}

.flexColumn {
  flex-direction: column;
}

.flexSpaceBetween {
  justify-content: space-between;
}

.flexSpaceAround {
  justify-content: space-around;
}

/* *********************************
 *    Shared Styling               *
 **********************************/
.fullHeight {
  height: 100vh;
}

.blueBackground {
  background: #1f3662;
}

.whiteBackground {
  background: white;
}

.whiteText {
  color: white;
}

.height50 {
  height: 50px;
  line-height: 50px;
}

.marginTop {
  margin-top: 50px;
}

.marginBottom {
  margin-bottom: 25px;
}

/* *********************************
 *    Navigation                   *
 **********************************/
.nav {
  list-style: none;
}

.nav a {
  text-decoration: none;
  display: block;
  /*     padding: 0 1em; */
  color: white;
}


/* *********************************
 *    Responsive Website           *
 **********************************/
.main {
  order: 2;
  padding: 40px;
  /*     border-left: 1px solid #777777; */
  /*     border-right: 1px solid #777777; */
}

.main .linkpair {
  margin-bottom: 3em;
  max-width: 40em;
}

.main .homeButton {
  margin-left: 1em;
  text-align: center;
}

.main .linkpair .flexContainer {
  align-items: baseline;
}

.main .linkpair .flexItem.flexWider {
  flex: 1 1 30%;
  font-weight: bold;
}

.sidebar {
  width: 20%;
  background: white;
  padding: 10px;
}

.sidebarLeft {
  order: 1;
  display: none;
  background-color: #1f3662;
  color: #fff;
  font-family: sans-serif;
  text-align: center;
}

.sidebarLeft .sidebar-img { text-align: center; }
.sidebarLeft .sidebar-img img { max-width: 70px; }
.sidebarLeft h3 { padding-bottom: 1em; border-bottom: 1px solid #fff; }
.sidebarLeft .phone-desc { margin-top:4em; font-size: 0.9em }
.sidebarLeft .phone-num { margin-top:1em; font-size: 1.6em; font-weight: bold; line-height: 1.2em; }

@media(min-width:768px) {
  .sidebarLeft {
  display: block;
  }
  
  .sidebarLeft .sidebar-img img { max-width: none; }

}

.sidebarRight {
  order: 3;
}

.notes { margin-top: 5em; }

.reg-inst-link { text-align: right; margin-top: 1em; }
.reg-inst-link a, .reg-inst-link a:visited { text-decoration: none; color: #00c; }

.computer-pwd-btn { margin: 1em 0 }
.computer-pwd-btn a { background-color: #ccc; color: #333 }