@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2);button,
.button {
  display: table;
  padding: 1rem 1.5rem;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  letter-spacing: 1.2px;
  line-height: inherit;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid #00A94F;
  color: inherit;
}

button:hover,
.button:hover {
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

button:focus,
.button:focus {
  outline: 0;
}

button.primary,
.button.primary {
  background: #00A94F;
  color: #ffffff;
}

button.border,
.button.border {
  background: transparent;
  -webkit-box-shadow: inset 0 0 0 1px #00A94F;
          box-shadow: inset 0 0 0 1px #00A94F;
  border: none;
  color: #00A94F;
}

button.border:hover,
.button.border:hover {
  background: #00A94F;
  color: #ffffff;
}

form *:focus {
  outline: none;
}

form .full {
  float: left;
  width: 100%;
}

form .half {
  float: left;
  width: 50%;
  padding: 0 0.5em;
}

form .half:nth-of-type(2n) {
  padding-right: 0;
}

form .half:nth-of-type(2n+1) {
  padding-left: 0;
}

form .half.offset-right {
  margin-right: 50%;
}

form .half.offset-left {
  margin-left: 50%;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

label {
  color: #1c4c56;
  font-size: 0.8em;
  display: table;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  display: block;
  width: 100%;
  height: auto;
  padding: 1em;
  clear: left;
  outline: none;
  resize: vertical;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  color: #212121;
  font-family: "Montserrat", sans-serif;
}

select {
  display: block;
  background: #ffffff url("/img/arrow.gif") no-repeat;
  background-position: right 0.75em top 50%;
  width: 100%;
  height: auto;
  padding: 1em;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  clear: left;
  border: 1px solid #dfdfdf;
  color: #212121;
  font-family: "Montserrat", sans-serif;
}

.checkbox {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  z-index: -1;
}

.checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.checkbox + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  border: 1px solid #00A94F;
  background: #ffffff;
}

.checkbox:hover + label:before {
  background: #00A94F;
}

.checkbox:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.checkbox:checked + label:before {
  background: #00A94F;
}

.checkbox:disabled + label {
  color: #ffffff;
  cursor: auto;
}

.checkbox:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}

.checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  background: #ffffff;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 #ffffff, 4px 0 0 #ffffff, 4px -2px 0 #ffffff, 4px -4px 0 #ffffff, 4px -6px 0 #ffffff, 4px -8px 0 #ffffff;
          box-shadow: 2px 0 0 #ffffff, 4px 0 0 #ffffff, 4px -2px 0 #ffffff, 4px -4px 0 #ffffff, 4px -6px 0 #ffffff, 4px -8px 0 #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}*/

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #00A94F;
  border-radius: 100%;
  background: #ffffff;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #00A94F;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.message {
  padding: 0.75em 0;
  text-align: center;
  clear: both;
}

.message p {
  margin: 0 auto;
}

.message.negative {
  background: #e64747;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}

.message.negative p {
  margin: 0;
}

.message.positive,
.message.success {
  background: #0ab04b;
  color: #ffffff;
}

span.error {
  float: left;
  display: block;
  width: 100%;
  margin: 0.5em 0 1em 0;
  font-size: 80%;
  color: #e64747;
}

span.error:empty {
  display: none;
}

p.error {
  text-align: center;
  color: #e64747;
}

@font-face {
  font-family: "FontAwesome";
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2") format("woff2");
}

body {
  min-width: 100%;
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  background-color: #ffffff;
  color: #4A4A4A;
  opacity: 1;
  -webkit-transition: 0.7s opacity;
  transition: 0.7s opacity;
}

.fade {
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}

a {
  color: #00A94F;
  text-decoration: none;
}

a:hover {
  color: #007637;
}

a .inactive {
  color: #4A4A4A;
}

p {
  font-size: 1em;
  line-height: 1.65rem;
  letter-spacing: 0.25;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  color: #5F6062;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 960px;
  padding-right: 10px;
  padding-left: 10px;
}

.banner-page .container {
  padding-left: 0;
}

.small {
  font-size: 0.75em;
}

.btn {
  font-family: "Lato", sans-serif;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: medium;
  padding: 0 18px;
  line-height: 36px;
  letter-spacing: 0.01em;
  height: auto;
  display: inline-block;
  text-align: center;
  background-color: #00A94F;
  border-radius: 18px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  background-color: #009f4a;
  color: #ffffff;
}

.btn-outline {
  font-family: "Lato", sans-serif;
  text-decoration: none;
  color: #4A4A4A;
  font-weight: 400;
  font-size: 12px;
  font-weight: medium;
  padding: 0 18px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.045em;
  height: auto;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  border: 1px solid #00A94F;
  border-radius: 20px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  background-color: #00A94F;
  color: #ffffff;
}

.btn-sml-inactive {
  font-family: "Lato", sans-serif;
  text-decoration: none;
  color: #4A4A4A;
  font-size: 14px;
  font-weight: medium;
  padding: 0 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  height: auto;
  display: inline-block;
  text-align: center;
  border: 1px solid #00A94F;
  border-radius: 16px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-sml-inactive:hover {
  background-color: #009f4a;
  color: #ffffff;
}

.btn-sml-active {
  font-family: "Lato", sans-serif;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: medium;
  padding: 0 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  height: auto;
  display: inline-block;
  text-align: center;
  border: 1px solid #00A94F;
  border-radius: 16px;
  background-color: #00A94F;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.btn-sml-active:hover {
  color: #ffffff;
}

.chevron {
  display: inline-block;
  margin: 0;
  padding: 0 0 0 10px;
  vertical-align: text-bottom;
  line-height: 18px;
  font-size: 18px;
}

#featured-img {
  position: relative;
  z-index: -1;
  width: 100%;
}

.downArrow {
  position: absolute;
  bottom: 2%;
  left: 49%;
  opacity: 0.6;
}

.bounce {
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

#menuToggle {
  display: block;
  position: absolute;
  top: 25px;
  right: 50px;
  z-index: 10;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 10;
  -webkit-transform-origin: 4px 0px;
          transform-origin: 4px 0px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menuToggle span:first-child {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */

#menuToggle input:checked ~ span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-2px, -1px);
          transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */

#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  -webkit-transform: rotate(-45deg) translate(0, -1px);
          transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */

#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */

#menuToggle input:checked ~ ul {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}

.navbar img {
  margin: 1em 5px;
  height: 3em;
  width: auto;
}

.nav {
  margin-top: 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style-type: none;
  padding-left: 0;
  float: right;
}

.nav li {
  padding: 1em;
}

.nav a {
  font-size: 12px;
  color: #4A4A4A;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  padding-bottom: 0.25em;
  border-bottom: 1.5px solid #ffffff;
}

.nav a:hover {
  border-bottom: 1.5px solid #00A94F;
  -webkit-transition: border-bottom 0.3s;
  transition: border-bottom 0.3s;
}

.banner h1 {
  font-size: 48px;
}

.banner p {
  margin-top: 0.5em;
  font-size: 24px;
}

section.mission,
section.services,
section.ethical-returns,
section.who-we-are {
  padding: 6em 0;
}

section.mission {
  text-align: center;
}

.ethical-returns-graph,
.who-we-are-team {
  height: 15em;
  width: auto;
}

section.call-to-action {
  position: relative;
  width: 100%;
  background-color: #9ed8d5;
  border-top: #5F6062 solid 8px;
  padding: 4em 0;
}

section.call-to-action h3 {
  color: #4A4A4A;
  font-size: 24px;
  letter-spacing: 1.02;
  position: relative;
  vertical-align: middle;
}

section.call-to-action .btn {
  margin-top: 3em;
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #9ed8d5;
  border: 1px solid #55bbb6;
  color: #4A4A4A;
  font-weight: bold;
}

section.call-to-action .btn:hover {
  background-color: #7ac9c5;
}

.causes {
  padding-top: 4em;
}

.who-we-are {
  position: relative;
  background-color: #daedd9;
}

.who-we-are svg {
  position: absolute;
  top: -50px;
  left: -10;
  right: 0;
  width: 120vw;
  height: 50px;
  fill: #daedd9;
}

#map {
  height: 200px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}

.contact-container {
  margin-top: 3em;
  margin-bottom: 5em;
}

.contact-container ul {
  list-style: none;
  line-height: 1.02em;
}

.contact-container ul li {
  letter-spacing: 1px;
}

.contact-container .map {
  -ms-flex-line-pack: center;
      align-content: center;
}

footer {
  color: #dfdfdf;
  background-color: #5F6062;
  padding-top: 1em;
}

footer a {
  color: #c6c5c5;
}

footer a:hover {
  color: #b9b9b9;
}

footer ul {
  margin: 0;
  padding-left: 0;
}

footer li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style-type: none;
  padding: 0 1em 0 0;
  vertical-align: middle;
}

footer .address {
  font-family: "Montserrat", sans-serif;
  padding: 1em 0 2em 0;
}

footer .address h4 {
  color: #b9b9b9;
  margin-top: 0;
  margin-bottom: 6px;
}

footer .address p {
  margin: 2px;
  padding: 0;
  font-size: 1em;
  line-height: 1.35;
}

footer .copyright {
  padding: 0;
  font-size: 0.75em;
  margin: 0;
}

footer .copyright p {
  margin: 0;
  line-height: 1;
}

footer .footer-db,
footer .abn-afsl {
  font-size: 0.75em;
  margin: 0;
}

footer .bottom {
  padding-top: 2em;
}

footer .legal {
  margin-top: 1rem;
  text-align: center;
  font-size: 75%;
}

footer .legal a {
  color: #dfdfdf;
}

footer .legal a.disclosure {
  margin: 0 0.5rem;
}

footer .legal .copy,
footer .legal .abn,
footer .legal .afsl {
  margin: 0 0.5rem;
  white-space: nowrap;
}

.banner-page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1em;
  padding-left: 1rem;
  width: 100vw;
  height: 30vh;
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.banner-page:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#000000));
  background-image: linear-gradient(to bottom right, #000000);
  opacity: 0.4;
  z-index: 1;
}

.banner-page h1 {
  text-align: left;
  position: relative;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1.1;
  margin: 0;
  color: #ffffff;
  z-index: 5;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  background-color: #f0f0f0;
  border-radius: 3px;
  border: 1px solid #b0b0b0;
  padding: 0.6em;
  margin: 0.5em 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus {
  background-color: #f7f7f7;
  border: 1px solid #646363;
}

#home h3 {
  margin-top: 0;
}

.mailing-list {
  border-radius: 2px;
  background-color: #dfdfdf;
  padding: 20px;
}

.mailing-list h4 {
  margin-top: 0;
}

.mailing-list p {
  font-size: 0.75em;
  line-height: 1.25;
  color: #4A4A4A;
}

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em;
  width: 100vw;
  height: 60vh;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner h1 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.015em;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0;
}

.banner p {
  color: #ffffff;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.services ul {
  padding-left: 0;
  list-style: none;
  font-size: 0.75em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 5em;
}

.services ul li {
  padding: 2em;
  text-decoration: none;
}

.ethical-returns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ethical-returns img {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.ethical-returns .text {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.charities {
  padding: 1em;
  width: auto;
}

#about-us-1col-standard ul {
  padding: 0;
  list-style: none;
}

#about-us-1col-standard ul li {
  padding-bottom: 8px;
}

#financial-advisers h2,
#support-staff h2 {
  margin-bottom: 0;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #dfdfdf;
}

#financial-advisers h5,
#support-staff h5 {
  margin-top: 0.25rem;
}

#financial-advisers p,
#support-staff p {
  margin-top: 0;
}

.staff-bio {
  margin-bottom: 3rem;
}

.staff-wrapper {
  margin: 2rem 0 5rem 0;
}

.staff-container {
  margin-top: 3rem;
  padding-right: 30px;
}

.staff-container h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #dfdfdf;
}

.people__buttonback {
  padding-bottom: 4rem;
}

.blog {
  margin-top: 2em;
  margin-bottom: 4em;
  background-color: #9ed8d5;
}

.blog--title {
  margin-top: 0.25em;
}

.blog--title a {
  color: #00A94F;
}

.img-div {
  max-width: 140px;
}

.blog--small {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
  color: gray;
  display: inline-block;
  vertical-align: baseline;
}

.blog--readmore {
  font-size: 12px;
  color: #4a4a4a;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.blog--readmore:hover {
  color: #4a4a4a;
  border-bottom: 1px solid #00A94F;
}

.blog--readmore p {
  margin: 0;
}

.blog--post,
.blog {
  margin-top: 1em;
  margin-bottom: 2em;
}

.blog--post h5 {
  font-size: 12px;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  vertical-align: baseline;
}

.page-item {
  display: inline-block;
  padding: 0px 9px;
  margin-right: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.8), 0px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.8), 0px 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.875em;
  font-weight: bold;
  text-decoration: none;
  color: #4a4a4a;
  text-shadow: 0px 1px 0px white;
}

#contact label {
  font-weight: bold;
  font-size: 100%;
}

#contact input {
  margin-top: 0.45rem;
  margin-bottom: 1.2rem;
}

#contact input.checkbox {
  margin: 0;
}

#contact textarea {
  height: 15rem;
}

#contact button {
  margin-top: 1.5rem;
}

#contact #advice-required {
  margin-top: 2rem;
}

#contact #estimated-value {
  margin-top: 1rem;
}

#contact .radiochecks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 1rem 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#contact .radiochecks input[type="radio"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

#contact .radiochecks label {
  width: calc(100% - 2rem);
  margin: 0 0 1rem 0.5rem;
  font-weight: normal;
  font-size: 90%;
}

.maps-wrapper {
  width: 100%;
  margin: 0 10px 20px;
  padding: 0 10px;
}

.contact-details {
  margin: 10px;
  font-size: 0.85em;
  padding: 10px;
  border: 1px solid #4A4A4A;
  border-radius: 4px;
}

.contact-details ul {
  margin: 0;
  padding: 0;
}

.contact-details ul li {
  padding: 5px;
}

.contact-details .fas {
  display: inline-block;
}

.contact-details p {
  display: inline-block;
  margin: 0;
}

#spotlight-1col-standard {
  margin: 2em 0 1em 0;
}

#spotlight-1col-standard-1 {
  background: url("/images/eis_quote.png") no-repeat;
  background-position: top left;
  margin: 2em;
  padding: 2em;
}

#spotlight-1col-standard-1 p {
  font-family: "Zilla Slab", serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

#spotlight-1col-standard-2 {
  margin-bottom: 6em;
}

#services-1col-standard {
  margin: 2em 0;
}

#services-1col-standard-1 {
  margin-bottom: 3em;
}

#services-1col-standard-1 ul {
  margin: 0 auto;
  list-style: none;
  width: 50%;
  padding: 2em 2em;
  background-color: #ececec;
  border-radius: 5px;
}

#services-1col-standard-1 li {
  padding: 0.5em 0;
  font-weight: bold;
}

#services-1col-standard-1 h2 {
  padding-bottom: 0.25em;
  border-bottom: 1px solid #dfdfdf;
}

#services-1col-standard-2,
#about-us-1col-standard,
#clients-1col-standard,
#clients-1col-standard-1,
#clients-1col-standard-2 {
  margin-bottom: 3em;
}

#services-1col-standard-2 h2,
#about-us-1col-standard h2,
#clients-1col-standard h2,
#clients-1col-standard-1 h2,
#clients-1col-standard-2 h2 {
  padding-bottom: 0.25em;
  border-bottom: 1px solid #dfdfdf;
}

#services-1col-standard-3 {
  margin: 6em 0;
  padding: 0.25em 1em;
  background-color: #ececec;
  border-radius: 5px;
}

.spotlight__header-tag {
  position: relative;
  margin: 0;
  color: #dfdfdf;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.3;
  z-index: 3;
  padding-left: 4px;
}

#ethical-screening-2col-standard {
  margin-top: 5em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 1;
      flex-basis: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 8em;
}

#ethical-screening-2col-standard .col1of2:nth-child(1):before {
  font-family: "FontAwesome";
  text-align: center;
  font-size: 48px;
  content: "\F00C";
  color: #00A94F;
  margin: 27.5%;
  padding: 30px;
  border-radius: 150px;
  border: 1px solid #00A94F;
  background-color: #ffffff;
}

#ethical-screening-2col-standard .col1of2:nth-child(1) {
  padding-top: 10px;
  border: 1px solid #00A94F;
  border-radius: 4px;
  background-color: #d8edbb;
}

#ethical-screening-2col-standard .col1of2:nth-child(1) ul {
  list-style: none;
  padding: 15px 30px;
}

#ethical-screening-2col-standard .col1of2:nth-child(1) ul li {
  padding: 10px 10px;
}

#ethical-screening-2col-standard .col1of2:nth-child(1) ul li:before {
  font-family: "FontAwesome";
  content: "\F00C";
  margin: 0 5px 0 -15px;
  color: #9fd356;
}

#ethical-screening-2col-standard .col1of2:nth-child(2):before {
  font-family: "FontAwesome";
  text-align: center;
  font-size: 48px;
  content: "\F00D";
  color: #e64747;
  margin: 27.5%;
  padding: 30px 35px;
  border-radius: 50%;
  border: 1px solid #e64747;
  background-color: #ffffff;
}

#ethical-screening-2col-standard .col1of2:nth-child(2) {
  padding-top: 10px;
  border: 1px solid #e64747;
  border-radius: 4px;
  background-color: #ffcfc7;
}

#ethical-screening-2col-standard .col1of2:nth-child(2) ul {
  list-style: none;
  padding: 15px 30px;
}

#ethical-screening-2col-standard .col1of2:nth-child(2) ul li {
  padding: 10px 10px;
}

#ethical-screening-2col-standard .col1of2:nth-child(2) ul li:before {
  font-family: "FontAwesome";
  content: "\F00D";
  margin: 0 5px 0 -15px;
  color: #f00;
}

#ethical-screening-2col-standard p {
  font-size: 18px;
}

nav {
  display: none;
}

@media only screen and (max-width: 1600px) {
  nav {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  nav {
    display: none;
  }

  .banner h1 {
    font-size: 3em;
  }

  .banner p {
    font-size: 1.25em;
  }

  .mission {
    text-align: center;
    margin: 4em 0;
  }

  .mission p {
    margin-bottom: 2em;
  }

  .services {
    margin: 4em 0;
  }

  .ethical-returns {
    margin: 0;
  }

  .call-to-action {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3em 0 4em 0;
  }

  .who-we-are {
    text-align: center;
  }

  footer ul {
    padding-left: 0;
  }

  footer .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media only screen and (max-width: 767px) {
  #services-1col-standard-1 ul {
    width: 90%;
  }

  nav {
    display: block;
  }

  .banner h1 {
    font-size: 2em;
  }

  .banner p {
    font-size: 1em;
  }

  .navbar {
    width: 100%;
    height: 4em;
  }

  .navbar img {
    margin: 5px 5px;
    height: 3em;
    width: auto;
  }

  .navbar .nav {
    display: none;
  }

  .mobile-hamburger {
    display: none;
  }

  .mission {
    text-align: center;
    padding: 4em 0;
  }

  .mission p {
    padding-bottom: 1em;
  }

  .services {
    padding: 4em 0;
  }

  .ethical-returns {
    padding: 4em 0;
  }

  .who-we-are img {
    margin-bottom: 3em;
  }

  .who-we-are .btn-outline {
    margin-top: 1.5em;
  }

  .who-we-are .btn-outline:last-of-type {
    margin-bottom: 1em;
  }

  .call-to-action {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3em 0 4em 0;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .call-to-action .btn {
    -ms-flex-preferred-size: 1;
        flex-basis: 1;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }

  #contact .radiochecks label {
    width: calc((100% / 3) - 0.5rem);
  }

  footer .legal {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 480px) {
  #services-1col-standard-1 ul {
    width: 90%;
  }

  #home .ethical-returns h3 {
    margin-top: 4rem;
  }

  .mobile-hamburger {
    right: 0;
  }

  .mobile-hamburger img {
    width: 0.7em;
    height: 1em;
  }

  .navbar {
    width: 100%;
    height: 4em;
  }

  .navbar img {
    margin: 5px 5px;
    height: 3em;
    width: auto;
  }

  .navbar .nav {
    display: none;
  }

  .banner {
    height: 50vh;
  }

  .mission {
    text-align: center;
    margin: 1em 0;
  }

  .mission p {
    margin-bottom: 1em;
  }

  .services {
    margin: 1em 0;
    text-align: center;
  }

  .services ul {
    margin-bottom: 5em;
  }

  .services ul li {
    padding: 1em;
  }

  .services img {
    margin-bottom: 4em;
  }

  .ethical-returns {
    margin: 0;
    text-align: center;
  }

  .ethical-returns img {
    margin-top: 3em;
  }

  .who-we-are {
    text-align: center;
  }

  .who-we-are img {
    margin-bottom: 3em;
  }

  .who-we-are .btn-outline {
    margin-top: 1.5em;
  }

  .who-we-are .btn-outline:last-of-type {
    margin-bottom: 1em;
  }

  .charities {
    padding: 0.2em;
    height: 60px;
    width: auto;
  }

  .call-to-action {
    text-align: center;
    padding: 2em 0 3em 0;
  }

  #contact .radiochecks label {
    width: calc(50% - 0.5rem);
  }

  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1em 0;
    text-align: center;
  }

  footer ul {
    padding-left: 0;
  }

  footer .legal .copy {
    display: block;
  }
}

