html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  appearance: none;
  background-color: #477dca;
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1.5em;
  text-decoration: none;
  transition: background-color 150ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background-color: #3964a2;
  color: #fff;
}
button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
button:disabled:hover, input[type="button"]:disabled:hover, input[type="reset"]:disabled:hover, input[type="submit"]:disabled:hover {
  background-color: #477dca;
}

fieldset {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  margin: 0 0 0.75em;
  padding: 1.5em;
}

input,
label,
select {
  display: block;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
}

label {
  font-weight: 600;
  margin-bottom: 0.375em;
}
label.required::after {
  content: "*";
}
label abbr {
  display: none;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea,
select[multiple=multiple] {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color 150ms ease;
  width: 100%;
}
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover,
select[multiple=multiple]:hover {
  border-color: #b1b1b1;
}
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
select[multiple=multiple]:focus {
  border-color: #477dca;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(55, 112, 192, 0.7);
  outline: none;
}
input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, input:not([type]):disabled, textarea:disabled,
select[multiple=multiple]:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}
input[type="color"]:disabled:hover, input[type="date"]:disabled:hover, input[type="datetime"]:disabled:hover, input[type="datetime-local"]:disabled:hover, input[type="email"]:disabled:hover, input[type="month"]:disabled:hover, input[type="number"]:disabled:hover, input[type="password"]:disabled:hover, input[type="search"]:disabled:hover, input[type="tel"]:disabled:hover, input[type="text"]:disabled:hover, input[type="time"]:disabled:hover, input[type="url"]:disabled:hover, input[type="week"]:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover,
select[multiple=multiple]:disabled:hover {
  border: 1px solid #ddd;
}

textarea {
  resize: vertical;
}

input[type="search"] {
  appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 0.375em;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
}

input[type="file"] {
  margin-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
dl {
  margin-bottom: 0.75em;
}
dl dt {
  font-weight: bold;
  margin-top: 0.75em;
}
dl dd {
  margin: 0;
}

table {
  border-collapse: collapse;
  font-feature-settings: "kern", "liga", "tnum";
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #a6a6a6;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #ddd;
  padding: 0.75em 0;
}

tr,
td,
th {
  vertical-align: middle;
}

body {
  color: #333;
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-feature-settings: "kern", "liga", "pnum";
  font-size: 1em;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

p {
  margin: 0 0 0.75em;
}

a {
  color: #477dca;
  text-decoration: none;
  transition: color 150ms ease;
}
a:active, a:focus, a:hover {
  color: #355e98;
}

hr {
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.5em 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

form fieldset {
  border: none;
  background-color: transparent;
  padding-left: 0px;
  padding-right: 0px;
}
form fieldset label {
  font-weight: normal;
}

.login-form {
  margin-left: 250px;
  margin-right: 250px;
}
@media screen and (max-width: 768px) {
  .login-form {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.Actions #ForgotPassword {
  display: inline-block;
  margin-left: 15px;
}

.flash-alert {
  background-color: #fff6bf;
  color: #8c7800;
  display: block;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}
.flash-alert a {
  color: #594c00;
  text-decoration: underline;
}
.flash-alert a:focus, .flash-alert a:hover {
  color: black;
}

.flash-error {
  background-color: #fbe3e4;
  color: #97161b;
  display: block;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}
.flash-error a {
  color: #6a0f13;
  text-decoration: underline;
}
.flash-error a:focus, .flash-error a:hover {
  color: #110203;
}

.flash-notice {
  background-color: #e5edf8;
  color: #244e87;
  display: block;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}
.flash-notice a {
  color: #19375f;
  text-decoration: underline;
}
.flash-notice a:focus, .flash-notice a:hover {
  color: #04080e;
}

.flash-success {
  background-color: #e6efc2;
  color: #56651a;
  display: block;
  margin-bottom: 0.75em;
  padding: 0.75em;
  text-align: center;
}
.flash-success a {
  color: #333c10;
  text-decoration: underline;
}
.flash-success a:focus, .flash-success a:hover {
  color: black;
}

.parallax-window {
  max-height: 30em;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}

.parallax-static-content {
  color: #9A9A8A;
  padding: 8em 0;
  position: relative;
  z-index: 9;
}

.parallax-background {
  background: url("/themes/mattboddy/asset/image/hero.jpg") repeat;
  background-position: top;
  background-size: cover;
  background-color: beige;
  height: 60em;
  left: 0;
  position: absolute;
  top: -10em;
  width: 100%;
}

.hero {
  background-color: #324766;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 3em;
}
.hero .hero-logo img {
  height: 4em;
  margin-bottom: 1em;
}
.hero .hero-inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin: auto;
  padding: 3.5em;
  text-align: center;
}
.hero .hero-inner::after {
  clear: both;
  content: "";
  display: table;
}
.hero .hero-inner::after {
  clear: both;
  content: "";
  display: table;
}
.hero .hero-inner .hero-copy {
  text-align: center;
}
.hero .hero-inner .hero-copy h1 {
  color: white;
  font-size: 1.6em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 53.75em) {
  .hero .hero-inner .hero-copy h1 {
    font-size: 1.8em;
  }
}
.hero .hero-inner .hero-copy p {
  color: white;
  line-height: 1.4em;
  margin: 0 auto 3em auto;
}
@media screen and (min-width: 53.75em) {
  .hero .hero-inner .hero-copy p {
    font-size: 1.1em;
    max-width: 40%;
  }
}

.footer {
  background: #40526b;
  padding: 3em 1.618em;
  width: 100%;
}
.footer .footer-logo {
  margin-bottom: 2em;
  text-align: center;
}
.footer .footer-logo img {
  height: 3em;
}
.footer .footer-links {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
.footer ul {
  -webkit-flex-basis: 13em;
  -moz-flex-basis: 13em;
  flex-basis: 13em;
  -ms-flex-preferred-size: 13em;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  margin-bottom: 3em;
  padding: 0;
}
.footer li {
  line-height: 1.5em;
  list-style: none;
  text-align: center;
}
.footer li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer li a:focus, .footer li a:hover {
  color: white;
}
.footer li h3 {
  color: white;
  font-size: 1em;
  margin-bottom: 0.4em;
}
.footer hr {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 1.5em;
  width: 12em;
}
.footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9em;
  line-height: 1.5em;
  margin: auto;
  max-width: 35em;
  text-align: center;
}

body {
  margin: 0px;
  padding: 0px;
}

a {
  color: #000;
}
a:hover {
  color: #1e7cba;
}

.container.container--responsive {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}
.container.container--responsive::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 1200px) {
  .container.container--responsive {
    max-width: 970px;
  }
}
@media screen and (max-width: 992px) {
  .container.container--responsive {
    max-width: 750px;
  }
}
@media screen and (max-width: 768px) {
  .container.container--responsive {
    max-width: none;
  }
}

.page {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 120px;
  margin-right: 120px;
}
.page .title {
  font-size: 1.5625rem;
  font-weight: normal;
  margin-bottom: 50px;
  text-align: center;
  color: #5b5b5b;
}

.my-work {
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}
.my-work::after {
  clear: both;
  content: "";
  display: table;
}
.my-work .title {
  font-size: 1.5625rem;
  font-weight: normal;
  margin-bottom: 50px;
  text-align: center;
  color: #5b5b5b;
}
.my-work .projects {
  display: block;
}
.my-work .projects::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 768px) {
  .my-work .projects {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.my-work .projects .projects__project {
  float: left;
  display: block;
  margin-right: 1.87727%;
  width: 32.08182%;
  margin-bottom: 20px;
  font-size: 0.75rem;
  color: #767676;
}
.my-work .projects .projects__project:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .my-work .projects .projects__project:nth-child(3n) {
    margin-right: 0;
  }
  .my-work .projects .projects__project:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (max-width: 768px) and (min-width: 0px) {
  .my-work .projects .projects__project {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .my-work .projects .projects__project:last-child {
    margin-right: 0;
  }
  .my-work .projects .projects__project:nth-child(2n) {
    margin-right: 0;
  }
  .my-work .projects .projects__project:nth-child(2n+1) {
    clear: left;
  }
}
.my-work .projects .projects__project .project__details {
  padding: 15px;
}
.my-work .projects .projects__project .project__details .title {
  font-size: 1.125rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: #5b5b5b;
  text-align: left;
}
.my-work .projects .projects__project .project__details .project__details-list {
  list-style: none;
  margin-top: 5px;
  margin-bottom: 15px;
}
.my-work .projects .projects__project .project__details .project__details-list .value {
  color: #000;
}

/*# sourceMappingURL=application.css.map */
