html {
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  background-color: #fafafa;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

header {
  background-image: url('../images/headerv2.png');
  background-repeat: no-repeat;
  background-position: center center;
  padding: 15% 0 14% 0;
  position: relative;
  background-size: cover;
  width: 100%;
}

nav {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  font-size: 1.25rem;
  text-transform: lowercase;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

section {
  width: 100%;
  margin: 0 auto;
  padding: 2em 0;
}

.valign-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.h-divider {
  height: 2px;
  background-color: #761CEC;
  width: 10em;
  margin: 1em auto;
}

input[type=text]:focus {
  outline: none;
}

*:focus {
  outline: none;
}