* {
  box-sizing: border-box;
}

#bg {
  position: fixed !important;
}


/*--------------- Hero ------------------*/

.hero {
  width: 100%;
  height: 100%;
}

.cta {
  margin-top: 2%;
}

.hero-logo {
  display: block;
  width: 15%;
  height: auto;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 3rem;
  color: rgba(4, 39, 66, 1);
  font-weight: 500;
}

h2 {
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  width: 50%;
  font-size: 2rem;
  margin: 0 auto 1.5em auto;
  color: rgba(4, 39, 66, 1);
}

.blue {
  color: #0C74C1;
}

/*----- Contact -------*/

#contact {
  width: 80%;
  height: 60%;
  background-color: #fff;
  box-shadow: rgba(0,0,0,.16) 0 4px 6px;
  border-radius: 10px;
  margin: 3em auto 0 auto;
  padding: 3em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.figures {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  height: 100%;
  align-items: center;
  border-right: 2px solid #0C74C1;
}

.person {
  height: 65%;
  width: 100%;
  display: inline-block;
}

.why {
  font-weight: 600;
  font-size: .75rem;
  float: left;
  line-height: 100%;
  width: 30%;
}

.name {
  text-align: left;
  color: rgba(4, 39, 66, 1);
  font-weight: 400;
  font-size: 1rem;
  float: left;
}

.position {
  font-weight: 200;
  color: #0C74C1;
  font-size: .75rem;

}
.email {
  font-size: .75rem;
}

.person img {
  max-height: 100%;
  border-radius: 50%;
  box-shadow: rgba(0,0,0,.16) 0 4px 10px;
  float: left;
  margin-right: 2em;
}

/*----- Form -----*/

.form-wrap {
  float: left;
  width: 100%;
  padding: 0 2em;
}

input[type=text], textarea {
  background-color: #efefef;
  width: 100%;
  padding: 1em;
  border-radius: 10px;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 1em;
  border: none;
  resize: none;
}

input[type=text]:focus, textarea:focus {
  border: 1px solid #0c74c1;
}

input[type=submit] {
  background-color: #0c74c1;
  color: #fff;
  width: 100%;
  padding: 1em;
  border-radius: 10px;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 1em;
  border: none;
  box-shadow: rgba(0,0,0,.16) 0 4px 10px;
  transition: all .2s ease-in-out;
}

input[type=submit]:hover {
  background-color: #042742;;
}
