* {
  padding: 0;
  margin: 0;
}
body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}
h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 44px;
  border-bottom: 1px solid white;
  color: white;
  margin-left: 21%;
  width: 90%;
  text-align: left;
}
h3 {
  font-size: 2em;
  color: #06215a;
  font-weight: 100;
  margin-bottom: 10px;
}
p {
  color: #06215a;
  font-size: 1.25em;
  line-height: 150%;
}
a {
  color: #001542;
}
.mobile-hide {
  display: none;
}
/********************** GLOBAL STYLES **********************/
.container {
  width: 902px;
  text-align: center;
  margin: 0 auto;
  padding: 100px 0;
}
.grey {
  background-color: #f3f4f6;
}
.white {
  background-color: white;
}
.blue {
  color: #00ace3;
  border-color: #00ace3;
  margin-top: 50px;
}
.clear {
  clear: both;
}
.row {
  width: 902px;
  margin: 0 auto;
}
.left {
  float: left;
}
.right {
  float: right;
}
.align-left {
  text-align: left;
}
.pull-left {
  margin-left: -50px;
  margin-bottom: 20px;
}
.container.align-left {
  padding-left: 0;
}
/********************** **************** **********************/

/********************** NAV STYLES **********************/
.logo {
  position: fixed;
  left: 2%;
  top: 5%;
  z-index: 2;
}
nav {
  position: fixed;
  left: 2%;
  top: 30%;
  z-index: 2;
}
nav a {
  display: block;
  text-transform: uppercase;
  color: #06215a;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 25px;
  position: relative;
}
nav a::after, .info a::after {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #06215a;
  content: '';
  opacity: 0;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}
nav a:hover::after, .info a:hover::after {
  height: 5px;
  opacity: 1;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  transform: translateY(5px);
}
/********************** **************** **********************/

/********************** MODAL STYLES **********************/
#modal, #coming {
  position: fixed;
  z-index: 1001;
  background-color: rgba(0,20,69,.95);
  width:100%;
  display: none;
  cursor: pointer;
  height: 100%;
}
#coming {
  width: 600px;
  height: 400px;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: white;
}
#coming .container {
  width: 100%;
}
#closer {
  color: white;
  font-size: 2em;
  width: auto;
  height: auto;
  display: inline-block;
  position: absolute;
  top: 5%;
  right: 10%;
  border: 1px solid white;
  box-sizing: border-box;
  padding: 10px 5px 17px 5px;
  line-height: 0;
}
#modal .container {
  max-height: 750px;
  min-height: auto;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 85%;
}
#modal .container img {
  float: left;
  padding: 7px 10px 0 0;
}
#modal h5 {
  font-size: 1.25em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
}
#modal h6, .content h6 {
  font-size: 1.5em;
  letter-spacing: 1px;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
  line-height: 175%;
}
#modal ol, .content ol {
  color: #ffffff;
  margin-left: 40px;
}
#modal li, .content li {
  margin-bottom: 15px;
}
#modal h5 span {
  display: block;
  font-weight: normal;
}
#modal .container h5, #modal .container p, .content p {
  color: white;
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 175%;
}
/********************** **************** **********************/

/********************** HERO STYLES **********************/
#hero video {
  background-size: cover;
  min-height: 100%;
  min-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  overflow-x: hidden;
}
#hero h2 {
  font-size: 72px;
}
.hero-text {
  position: absolute;
  top: 27%;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.hero-text h2 {
  position: relative;
}
.hero-text div {
  margin-left: 21%;
  display: none;
  top: -5px;
  position: relative;
  font-size: 1.5em;
  width: 70%;
  color: white;
  line-height: 150%;
}
/********************** **************** **********************/

/********************** SCROLL DOWN STYLES **********************/
.icon-scroll {
	position: absolute;
	top: 90%;
	left: 50%;
	margin-left: -8px;
	width: 16px;
	height: 50px;
	-webkit-transition: opacity: .4s;
}
.icon-scroll span {
	display: block;
	width: 5px;
	height: 5px;
	border-right: 1px solid rgba(255,255,255,.8);
	border-bottom: 1px solid rgba(255,255,255,.8);
	margin: 0 0 2px 5px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
    -webkit-animation-direction: alternate;
	animation-direction: alternate;
}
.icon-scroll .a1 {
	margin-top: 6px;
	-webkit-animation-delay: .1s;
	-moz-animation-delay: .1s;
	animation-delay: .1s;
}
.icon-scroll .a2 {
	-webkit-animation-delay: .2s;
	-moz-animation-delay: .2s;
	animation-delay: .2s;
}
.icon-scroll .a3 {
	-webkit-animation-delay: .3s;
	-moz-animation-delay: .3s;
	animation-delay: .3s;
}
.icon-scroll .mouse {
	height: 27px;
	width: 14px;
	border: 1px solid rgba(255,255,255,.8);
	border-radius: 10px;
}
.icon-scroll .wheel {
  position: relative;
  display: block;
  height: 3px;
  width: 3px;
  margin: 2px auto 0;
  background: rgba(255,255,255,.8);
  -webkit-animation: mouse-wheel 1.2s ease infinite;
  -moz-animation: mouse-wheel 1.2s ease infinite;
  animation: mouse-wheel 1.2s ease infinite;
  border-radius: 50%;
}
@-webkit-keyframes mouse-wheel {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}
}
@-moz-keyframes mouse-wheel {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-moz-transform: translateY(5px);
		transform: translateY(5px);
	}
}
@keyframes mouse-wheel {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(6px);
	}
}
@-webkit-keyframes mouse-scroll {
	0%   { opacity: 0;}
	50%  { opacity: .5;}
	100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {
	0%   { opacity: 0; }
	50%  { opacity: .5; }
	100% { opacity: 1; }
}
@keyframes mouse-scroll {
	0%   { opacity: 0; }
	50%  { opacity: .5; }
	100% { opacity: 1; }
}
/********************** **************** **********************/

/********************** PARALLAX BLUE BOX STYLES **********************/
#content-wrap {
  position: relative;
}
.fixed {
  height: 390px;
  position: relative;
}
#bluebox{
  border: 1px solid #001a47;
  background-color: transparent;
  box-sizing: border-box;
  padding: 20px;
  max-width: 943px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.box-inside {
  padding: 50px;
  font-size: 1em;
  background-color: #001a47;
  width: auto;
}
.box-inside p {
  color: white;
  margin-bottom: 25px;
}
/********************** **************** **********************/

/********************** ABOUT STYLES **********************/
#about, #contact, #team {
  padding: 50px 0;
}
#about .container, #contact .container {
  padding: 20px 0;
}
#team .row {
  margin-bottom: 50px;
}
#team .row div {
  width: 400px;
}
#team .row a::after {
  content: "";
  background: url('../images/bio-hover.png') no-repeat;
  background-size: cover;
  display: block;
  width: 100%;
  height: 99%;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity .5s;
}
#team .row a {
  display: block;
  position: relative;
}
#team .row a:hover:after {
  opacity: 1;
}
#team h5 {
  color: #001542;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 1px;
}
#team h5 span {
  display: block;
  color: #a6a7a8;
}
/********************** **************** **********************/

/********************** CLOCK STYLES **********************/
#contact .col-3 {
  width: 50%;
  float: left;
}
#contact .col-3 .clock {
  width: 218px;
  height: 218px;
  background: url('../images/clock_face.jpg') no-repeat 50%;
  margin: 50px auto 20px auto;
  position: relative;
}
.secondhand {
	position: absolute;
	top: 12px;
	left: 105px;
	/* Transform Origin */
	-webkit-transform-origin: 50% 73%;
	-moz-transform-origin: 50% 73%;
	transform-origin: 50% 73%;
	z-index: 1000;
}
.minutehand, .hourhand {
	position: absolute;
	/* Transform Origin */
	-webkit-transform-origin: 50% 95%;
	-moz-transform-origin: 50% 95%;
	transform-origin: 50% 95%;
	z-index: 0;
}
.minutehand {
	top: 12px;
	left: 105px;
}
.hourhand {
	top: 47px;
  left: 102px;
}
/********************** **************** **********************/

/********************** CONTACT STYLES **********************/
#contact h3 {
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
#contact .info {
  padding: 100px 0 0 0;
}
#contact .info h2 {
  margin: 0;
  padding: 0;
  border-bottom: none;
  color: #001542;
}
#contact .info h4 {
  color: #001542;
  margin-bottom: 50px;
  font-size: 1.5em;
  font-weight: 300;
}
.info a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.info a::after {
  top: 70%;
}
.info a:hover::after {
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  transform: translateY(15px);
}
/********************** **************** **********************/

/********************** FORM STYLES **********************/
#contact form {
  text-align: left;
  position: relative;
}
#contact .left, #contact .right {
  width: 50%;
}
label {
  color: #001542;
  text-transform: uppercase;
  font-size: .85em;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
input, textarea {
  width: 85%;
  border: 1px solid #001542;
  padding: 15px;
  margin-bottom: 25px;
}
textarea {
  height: 210px;
}
input[type="submit"] {
  background-color: #001542;
  color: white;
  display: inline-block;
  width: auto;
  padding: 5px 15px;
  text-transform: uppercase;
  position: absolute;
  right: 4%;
  font-size: 1em;
}
/********************** **************** **********************/

/********************** LINKEDIN NEWS STYLES **********************/
#displayUpdates ul {
  list-style-type: none;
}
#displayUpdates ul li {
  clear: both;
  margin: 40px 0;
  text-align: left;
  border-bottom: 1px solid grey;
  box-sizing: border-box;
  padding: 0 10px 50px 10px;
}
#displayUpdates ul li img {
  float: left;
  margin-right: 20px;
}
#displayUpdates ul li a {
  color: #001542;
  text-decoration: none;
  font-size: 1.25em;
  font-weight: 600;
}
/********************** **************** **********************/

/********************** PROSPERO STYLES **********************/
h2.blue {
  margin-left: 15%;
}
#prospero .info h2 {
  margin: 0;
  padding: 0;
  border-bottom: none;
  color: #001542;
}
#prospero .info h4 {
  color: #001542;
  margin-bottom: 50px;
  font-size: 1.5em;
  font-weight: 300;
}
#prospero .container {
  width: 850px;
}
#prospero .container:last-child {
  padding-top: 0;
}
/********************** **************** **********************/

/********************** FOOTER STYLES **********************/
footer {
  background-color: #001a47;
  padding: 25px 0;
}
footer .container {
  padding: 15px 0;
}
footer img {
  padding-right: 15px;
}
footer .right {
  text-transform: uppercase;
  font-size: .75em;
  letter-spacing: 1px;
  color: white;
  text-align: right;
  position: relative;
  top: 25px;
}
/*.privpol {
   color: #ffffff;
   font-weight: bold;
   text-decoration: none;
   margin-right: 60px;
}
*//***************** ACCORDION STYLES ********************/

  /* Style the button that is used to open and close the collapsible content */
.collapsible {
  font-size: .75em;
  color: #ffffff;
   font-weight: bold;
   text-transform: uppercase;
   text-decoration: none;
   position: relative;
   top: 15px;
   /*left: 100px;*/
   float: right;
}


/* Style the collapsible content. Note: hidden by default */
.content {
  color: #fff;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left;
} 


