/* ===================================
Variables / imports
=================================== */
/* Colours */
/* =========================
========== Header ========== 
*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 30px;
  padding-bottom: 30px; }
  @media screen and (min-width: 64em) {
    .header {
      padding-top: 50px; } }
  .header .row {
    position: relative; }
  .header .logo {
    height: 40px;
    float: left; }
    @media screen and (min-width: 40em) {
      .header .logo {
        height: 60px; } }
    .header .logo img {
      height: inherit; }
  .header ul {
    position: absolute;
    right: 1em;
    top: 100px;
    list-style: none;
    display: none;
    background: #497693;
    z-index: 1;
    padding: 20px;
    border-radius: 10px; }
    .header ul li {
      margin: 0;
      color: white; }
      .header ul li a {
        padding: 10px;
        margin: 0;
        color: #e8eff3;
        width: 100%;
        float: left;
        text-align: right;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase; }
        .header ul li a:hover {
          color: white; }
    .header ul:after {
      bottom: 100%;
      right: 20px;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: rgba(136, 183, 213, 0);
      border-bottom-color: #497593;
      border-width: 15px;
      margin-left: -30px; }
  .header #hamburger {
    width: 50px;
    height: 50px;
    z-index: 2;
    float: right;
    top: 0;
    right: 0;
    background: #497693;
    border-radius: 100px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer; }
    @media screen and (min-width: 40em) {
      .header #hamburger {
        width: 70px;
        height: 70px; } }
    .header #hamburger span {
      display: block;
      position: absolute;
      height: 2px;
      width: 20px;
      margin-left: 15px;
      margin-top: 13px;
      background: white;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.25s ease-in-out;
      -moz-transition: 0.25s ease-in-out;
      -o-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out; }
      @media screen and (min-width: 40em) {
        .header #hamburger span {
          height: 3px;
          width: 30px;
          margin-left: 20px;
          margin-top: 23px; } }
  .header #hamburger span:nth-child(1) {
    top: 0px; }
  .header #hamburger span:nth-child(2) {
    top: 10px; }
  .header #hamburger span:nth-child(3) {
    top: 20px; }
  .header #hamburger.open span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .header #hamburger.open span {
    background: white; }
  .header #hamburger.open span:nth-child(2) {
    opacity: 0; }
  .header #hamburger.open span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }

/*_pages.scss*/
.homepage {
  background: url(../img/background-home.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.about {
  background: url(../img/background-about.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.regulatory {
  background: url(../img/background-regulatory.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.services {
  background: url(../img/background-services.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.contact {
  background: url(../img/background-contact.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  padding-bottom: 200px; }

.google-link {
  background: url(../img/google-oval.png) no-repeat center top;
  width: 100%;
  left: 0;
  padding: 35px 0 5px;
  position: absolute;
  bottom: 0;
  right: 0; }
  .google-link img {
    margin-bottom: 8px; }
  .google-link * {
    color: #F57323; }

/* _footer.scss */
.footer {
  background: #153549; }
  .footer h1, .footer h2, .footer h3, .footer h4, .footer h5 {
    color: #91ACBE;
    letter-spacing: 1px; }
  .footer p {
    color: #91ACBE; }
    .footer p a {
      font-weight: bold; }
      .footer p a:hover {
        color: #c1d0da; }
  .footer img {
    margin-bottom: 1em; }

/* ===================================
Global 
=================================== */
.row {
  max-width: 1400px; }

html, body {
  margin: 0;
  height: 100%; }

body {
  font-family: "proxima-nova", sans-serif;
  background: none; }
  body.no-scroll {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%; }

/* ===================================
Typography 
=================================== */
.intro-text,
label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .66rem;
  color: #64635f; }

h1, h2, h3, h4, h5, h6 {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: #153549;
  line-height: 1.1;
  margin-bottom: 1rem; }
  h1 .italic, h2 .italic, h3 .italic, h4 .italic, h5 .italic, h6 .italic {
    font-family: "karmina", serif;
    font-style: italic;
    font-weight: 300;
    margin-left: -1%; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #F57323; }
    h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
      /*color: $beatnik-neutral;*/ }

.quote-position {
  position: relative; }
  .quote-position .quote {
    position: absolute;
    bottom: 1em;
    right: 1em;
    width: 25%; }

h1 {
  letter-spacing: -1px;
  margin-bottom: 5%; }

p {
  color: #153549; }
  p a {
    color: inherit;
    font-weight: 700; }
  p.quote {
    font-size: 150%;
    line-height: 1.25;
    width: 66.6%;
    float: right;
    color: #F57323;
    font-family: "karmina", serif;
    font-style: italic;
    vertical-align: bottom; }

ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0; }
  ul li p {
    background: url(/img/list-item.svg) left 11px no-repeat;
    margin: 0 0 .66em;
    letter-spacing: 1px;
    padding-left: 25px; }
    @media screen and (min-width: 64em) {
      ul li p a {
        -webkit-transition: all 500ms;
        /* Safari */
        transition: all 500ms; }
        ul li p a:hover {
          padding-left: 7px; } }
  @media screen and (min-width: 64em) {
    ul.services {
      width: 66%; } }
  @media screen and (min-width: 64em) {
    ul.services li {
      width: 50%;
      float: left; } }

.button, button {
  background-color: #497693;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px; }
  .button:hover, .button:focus, button:hover, button:focus {
    background-color: #db5a0a; }

/* ===================================
Layout 
=================================== */
.full-width {
  width: 100%; }

section {
  padding: 30px; }
  @media screen and (min-width: 40em) {
    section {
      padding: 50px; } }
  @media screen and (min-width: 64em) {
    section {
      padding: 150px 100px 100px; } }
  @media screen and (min-width: 95em) {
    section {
      padding: 200px 150px 150px; } }
  section.first {
    padding-top: 150px; }
    @media screen and (min-width: 64em) {
      section.first {
        padding-top: 15%; } }

hr {
  border-color: #315165; }

input[type='text'], input[type='text']:hover, input[type='text']:focus,
textarea, textarea:hover, textarea:focus {
  border-width: 0 0 1px;
  box-shadow: none;
  padding: 0 0 1px 0; }
  input[type='text']:hover, input[type='text']:hover:hover, input[type='text']:focus:hover,
  textarea:hover, textarea:hover:hover, textarea:focus:hover {
    border-color: #F57323; }

textarea {
  height: 200px; }

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