:root {
  --green-dark: #2e004d;
  --green-medium: #6a0dad;
  --pure-white: white;
  --green-accent-1: #6a0dad;
  --green-accent-2: #b266ff;
  --grey: #5a5a70;
  --green-light: #e6ccff;
  --pure-black: black;
  --yellow: #fcd34d;
  --orange: #fb923c;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: var(--green-dark);
  font-family: Basiersquare, sans-serif;
  font-size: 24px;
  line-height: 1.5em;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 72px;
  font-weight: 700;
  line-height: 1em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4em;
}

h4 {
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1em;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
}

p {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.5em;
}

a {
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  transition: color .2s cubic-bezier(.19, 1, .22, 1);
}

a:hover {
  color: var(--green-medium);
}

a:visited {
  color: var(--green-dark);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 0 #ebebeb;
  margin-bottom: 0;
  padding: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.5em;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 80px;
}

.sg-content {
  margin-top: 3rem;
  position: relative;
}

.sg-label {
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: .5rem;
  margin-bottom: 1rem;
  font-family: Source Sans Pro;
  font-size: 11px;
  line-height: 1em;
}

.sg-section {
  max-width: 60rem;
  background-color: var(--pure-white);
  border: 3px solid #000;
  border-radius: .25rem;
  margin: 3rem auto;
  padding: 2rem;
  display: block;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.sg-title {
  color: #0d151c;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Source Sans Pro;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5em;
  display: inline-block;
  position: static;
  top: 0;
  left: 0;
}

.sg-color-block {
  height: 5rem;
  background-color: #ebebeb;
  border-radius: 4px;
  margin-top: 0;
}

.sg-color-block.sg-body-color {
  color: #2e004d;
  background-color: #2e004d;
}

.sg-color-block.sg-primary-color {
  background-color: var(--green-accent-1);
  color: var(--green-accent-1);
}

.sg-color-block.sg-secondary-color {
  background-color: var(--green-accent-2);
  color: var(--green-accent-2);
}

.sg-color-block.sg-header-color {
  background-color: var(--grey);
  color: var(--grey);
}

.sg-color-block.sg-green-light-color {
  background-color: var(--green-light);
  color: var(--green-light);
}

.sg-color-block.sg-green-medium-color {
  background-color: var(--green-medium);
  color: var(--green-medium);
}

.sg-color-block.sg-green-dark-color {
  background-color: var(--green-dark);
  color: var(--green-dark);
}

.sg-color-block.sg-grey-color {
  background-color: var(--grey);
  color: var(--grey);
}

.sg-color-block.sg-white-color {
  background-color: var(--pure-white);
  color: var(--pure-white);
}

.sg-description {
  color: #323f4b;
  background-color: #ffec00;
  border-radius: 4px;
  margin-bottom: 3rem;
  padding: 1rem;
  font-family: Source Sans Pro;
  font-size: 1rem;
  line-height: 1.5em;
}

.sg-logo-container {
  border: 1px solid #aaa;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: relative;
}

.sg-divider {
  width: 100%;
  height: 1px;
  background-color: #f3f3f5;
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.utility-page-wrapper {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  max-width: 20rem;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.sg-column {
  padding-left: .75rem;
  padding-right: .75rem;
}

.sg-columns {
  margin-left: -1rem;
  margin-right: -1rem;
}

.sg-subtitle {
  color: #222;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Source Sans Pro;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
  display: inline-block;
  position: static;
  top: 0;
  left: 0;
}

.sg-form-element {
  margin-bottom: 2rem;
}

.input {
  width: 100%;
  height: 2.5rem;
  border: 1px solid var(--grey);
  border-radius: 3px;
  margin-bottom: 1rem;
  padding: 0 .5rem 0;
  line-height: 2.5rem;
  transition: border-color .2s cubic-bezier(.77, 0, .175, 1);
}

.input:hover, .input:focus {
  border-color: var(--green-dark);
}

.input::-ms-input-placeholder {
  color: var(--grey);
}

.input::placeholder {
  color: var(--grey);
}

.input.search-input {
  margin-right: 1rem;
}

.field-label {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.textarea {
  border: 1px solid var(--grey);
  border-radius: 3px;
  margin-bottom: 1rem;
  padding: .5rem;
  line-height: 1.5em;
  transition: border-color .2s cubic-bezier(.77, 0, .175, 1);
}

.textarea:hover, .textarea:focus {
  border-color: var(--green-dark);
}

.textarea::-ms-input-placeholder {
  color: var(--grey);
}

.textarea::placeholder {
  color: var(--grey);
}

.checkbox-field {
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-left: 0;
  display: flex;
}

.checkbox {
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
  position: relative;
}

.radio-button {
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
  display: block;
}

.radio-button-field {
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-right: 0;
  padding-left: 0;
  display: flex;
}

.select-field {
  background-color: var(--pure-white);
}

.button {
  height: 2.5rem;
  background-color: var(--green-light);
  color: var(--pure-white);
  cursor: pointer;
  border-radius: 3px;
  padding: 0 1rem;
  font-size: 16px;
  line-height: 2.5rem;
  transition: background-color .2s cubic-bezier(.77, 0, .175, 1), color .2s cubic-bezier(.77, 0, .175, 1);
}

.button:hover {
  background-color: var(--green-medium);
}

.button:active {
  background-color: var(--green-dark);
}

.button:focus {
  background-color: var(--green-medium);
}

.sg-label-link {
  color: #616e7c;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  line-height: 1em;
  transition: color .2s cubic-bezier(.77, 0, .175, 1);
}

.sg-label-link:hover {
  color: #ffec00;
}

.wearegoat-container {
  width: 100%;
  display: flex;
}

.wearegoat-link {
  width: 100%;
  max-width: 6rem;
  cursor: pointer;
  margin-left: auto;
}

.wearegoat-link:hover {
  color: #ffec00;
}

.sg-additional-element {
  margin-bottom: 2rem;
}

.rich-text ul, .rich-text ol {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.rich-text h1 {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.rich-text h2 {
  max-width: 42rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text h4, .rich-text h5 {
  max-width: 42rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
}

.rich-text blockquote {
  max-width: 52rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.rich-text p {
  max-width: 38rem;
  margin-bottom: 1.2em;
}

.rich-text figcaption {
  color: var(--grey);
  text-align: left;
  margin-bottom: 2rem;
  font-size: 16px;
  line-height: 1.3em;
}

.rich-text figure {
  width: 100%;
  max-width: 52rem;
  margin: 2rem 0 1rem;
}

.rich-text h6 {
  max-width: 42rem;
  margin-top: 2rem;
}

.rich-text li {
  max-width: 40rem;
  margin-bottom: .6em;
}

.rich-text p {
  max-width: 52rem;
  margin-bottom: 1em;
}

.rich-text h3 {
  max-width: 42rem;
  margin-bottom: 0;
}

.rich-text.introduction-text {
  width: 100%;
  max-width: 49.25rem;
  margin-top: 60rem;
  margin-left: auto;
  padding-bottom: 20rem;
}

.rich-text.cookie-text {
  margin-top: 5rem;
}

.rich-text figcaption {
  color: #5a5a70;
  text-align: left;
  margin-bottom: 2rem;
  font-size: 16px;
  line-height: 1.3em;
}

.rich-text p {
  max-width: 42rem;
  margin-bottom: 1em;
}

.rich-text.body-text {
  margin-top: 5rem;
}

.logo-container {
  width: 100%;
  max-width: 14rem;
}

.cookie-policy-link {
  color: var(--green-light);
}

.cookie-policy-link:hover {
  color: var(--green-dark);
}

.protected-heading {
  margin-bottom: 1rem;
}

.error-notice {
  color: red;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  margin-top: .5rem;
  padding: 0;
}

.search {
  display: flex;
}

.search-result-item {
  margin-bottom: 2rem;
}

.search-result-title {
  font-size: 24px;
  font-weight: 600;
}

.search-result-snippet {
  max-width: 52rem;
  font-size: 20px;
  line-height: 1.4em;
}

.search-results {
  margin-top: 5rem;
}

.cookie-notice {
  max-width: 20rem;
  background-color: var(--pure-white);
  border-radius: .5rem;
  align-items: center;
  padding: .75rem 1rem;
  font-size: 18px;
  line-height: 1.5em;
  transition: opacity .2s cubic-bezier(.19, 1, .22, 1), transform .2s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: fixed;
  top: auto;
  bottom: 2rem;
  left: 3rem;
  right: auto;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, .3);
}

.cookie-close-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green-light);
  cursor: pointer;
  flex: none;
  margin-right: 1rem;
  font-size: 16px;
  line-height: 1.5em;
  transition: color .2s cubic-bezier(.645, .045, .355, 1);
}

.cookie-close-icon:hover {
  color: var(--green-medium);
}

.cookie-close-icon:active {
  color: var(--green-dark);
}

.cookie-close-icon:focus {
  color: var(--green-medium);
}

.cookie-embed {
  width: 0;
  height: 0;
  opacity: 0;
  margin-bottom: 0;
  display: none;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

.container.services-container {
  align-items: flex-start;
  display: flex;
}

.container.statement-container {
  height: 170vh;
}

.container.footer-container {
  margin-top: 10rem;
  margin-bottom: 3rem;
}

.container.page-container {
  margin-top: 10rem;
}

.section {
  margin-bottom: 24rem;
}

.section.logos-section {
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 49.25rem;
  margin-top: 12rem;
  margin-left: auto;
}

.color-green-accent-1 {
  color: var(--green-accent-2);
}

.client-logos-wrapper {
  margin-bottom: 5rem;
}

.client-logos {
  align-items: center;
  display: flex;
}

.client-logo-image {
  height: 5rem;
  max-width: none;
  margin-left: 1rem;
  margin-right: 1rem;
}

.homepage-stat {
  padding-left: 0;
  padding-right: 0;
}

.homepage-stat-number {
  font-size: 144px;
  font-weight: 700;
  line-height: 1em;
}

.homepage-stat-description {
  max-width: 16.25rem;
  margin-top: .5rem;
  font-size: 18px;
}

.section-introduction {
  max-width: 16.25rem;
  color: var(--grey);
  flex: none;
}

.description-text {
  max-width: 16.25rem;
  margin-top: 1.5rem;
  font-size: 18px;
  line-height: 1.5em;
}

.services-wrapper {
  width: 100%;
  margin-left: 5.25rem;
}

.service {
  max-height: 10rem;
  border-bottom: 1px solid var(--green-accent-1);
  align-items: flex-start;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  transition: max-height 1s cubic-bezier(.19, 1, .22, 1);
  position: relative;
  overflow: hidden;
}

.service.opened {
  max-height: none;
}

.point-number {
  width: 2rem;
  align-items: baseline;
  margin-top: .2rem;
  margin-right: 2.25rem;
  display: flex;
}

.service-header {
  align-items: center;
  display: flex;
}

.service-trigger {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green-accent-1);
  cursor: pointer;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1), color .2s;
  position: absolute;
  top: 1.3rem;
  bottom: auto;
  left: auto;
  right: 0%;
}

.service-trigger:hover {
  color: var(--green-medium);
}

.service-points {
  opacity: 0;
  margin-top: 2rem;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1), opacity .5s cubic-bezier(.19, 1, .22, 1);
  transform: translate(0, 2rem);
}

.statement {
  font-size: 130px;
  line-height: 1.1em;
}

.statement.color-gradient-1 {
  font-size: 10vh;
  position: -webkit-sticky;
  position: sticky;
  top: 6rem;
}

.say-hello {
  width: 14rem;
  height: 14rem;
  border: 1px solid var(--green-accent-1);
  color: var(--green-accent-1);
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 14rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -7rem;
  margin-left: -7rem;
  font-weight: 400;
  line-height: 1.1em;
  text-decoration: none;
  transition: background-color .2s, color .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
  position: absolute;
  top: 70%;
  left: 50%;
}

.say-hello:hover {
  color: var(--green-accent-1);
  background-color: rgba(23, 243, 199, .2);
}

.consultant-point-title {
  width: 100%;
  flex: 23.25rem;
  margin-right: 2.25rem;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1em;
}

.consultant-point {
  border-top: 1px solid var(--green-accent-1);
  align-items: flex-start;
  margin-bottom: 5rem;
  padding-top: 1rem;
  display: flex;
}

.consultant-points-wrapper {
  width: 100%;
  margin-left: 5.25rem;
}

.consultant-point-description {
  flex: 23.25rem;
  margin-top: .2rem;
  font-size: 18px;
}

.footer-contents {
  grid-column-gap: 2rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
  display: grid;
}

.footer-column {
  width: 100%;
  max-width: 23.25rem;
  flex-direction: column;
}

.contact-link {
  text-decoration: none;
}

.code-embed {
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.styles-embed {
  width: 0;
  height: 0;
  opacity: 0;
  display: none;
  overflow: hidden;
}

.point-title {
  max-width: 36rem;
  margin-top: .2rem;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

.homepage-stat-number-wrapper {
  color: var(--green-accent-1);
  align-items: center;
  display: flex;
}

.homepage-stat-plus {
  width: 4rem;
  height: 4rem;
  margin-left: 1rem;
}

.homepage-stats {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.intro-points {
  position: relative;
}

.intro-point {
  transition: transform .4s cubic-bezier(.19, 1, .22, 1), opacity .4s cubic-bezier(.19, 1, .22, 1);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.four-oh-four-text {
  margin-top: 1rem;
}

.header {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  padding-top: 2rem;
  display: flex;
}

.div-block {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.contact-detail {
  color: #000;
  margin-bottom: .25rem;
  margin-left: 1rem;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1em;
  text-decoration: none;
}

.contact-detail:hover {
  color: var(--green-medium);
}

.cv-section {
  border-bottom: 1px solid #cbd5e0;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}

.experience {
  margin-bottom: 3rem;
}

.thank-you {
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 2rem;
  padding-bottom: 5rem;
  display: flex;
}

.cv-body {
  font-size: 20px;
}

.meta-image {
  width: 0;
  height: 0;
  display: none;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.empty {
  display: none;
}

.blog-preview-link {
  align-items: baseline;
  padding-top: 1rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.blog-collection {
  width: 100%;
  margin-left: 5.25rem;
}

.blog-preview {
  border-top: 1px solid var(--green-accent-1);
  align-items: flex-start;
  margin-bottom: 5rem;
}

.blog-preview-title {
  flex: 23.25rem;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3em;
}

.blog-preview-description {
  flex: 23.25rem;
  font-size: 18px;
}

.blog-preview-date {
  margin-bottom: .5rem;
  font-size: 16px;
  line-height: 1.4em;
}

.blog-preview-title-container {
  width: 100%;
  flex: 23.25rem;
  margin-right: 2.25rem;
}

.blog-introduction {
  max-width: 16.25rem;
  color: var(--grey);
  flex: none;
}

.meta-value {
  display: none;
}

.blog-title {
  max-width: 58rem;
  margin-bottom: 2rem;
  line-height: 1.2em;
}

.canvas-embed {
  z-index: -1;
  width: 60vh;
  max-width: 40rem;
  margin-left: -5rem;
}

.hero-image-container {
  z-index: -1;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-scripts {
  width: 0;
  height: 0;
  opacity: 0;
  display: none;
  overflow: hidden;
}

.canvas-container {
  width: 100%;
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

.navigation-container {
  z-index: 100;
  width: 100%;
  text-align: right;
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
}

.navigation-link {
  margin-right: 2rem;
  text-decoration: none;
}

.testimonial-container {
  border-top: 1px solid var(--green-accent-1);
  padding-top: 5rem;
}

.testimonial-text {
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: 24px;
}

.testimonial-author {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
}

.text-block-2 {
  font-size: 20px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 52px;
  }

  .rich-text p {
    font-size: 20px;
  }

  .rich-text.introduction-text {
    max-width: 100%;
    margin-top: 30rem;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 20rem;
  }

  .rich-text.cookie-text {
    margin-top: 3rem;
  }

  .rich-text p {
    font-size: 20px;
  }

  .rich-text.body-text {
    margin-top: 3rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container.services-container {
    display: block;
  }

  .section, .section.hero-section {
    margin-bottom: 12rem;
  }

  .hero-content {
    margin-top: 0;
    margin-left: 0;
    padding-top: 20rem;
    padding-left: 15rem;
    position: relative;
  }

  .client-logos-wrapper {
    margin-bottom: 3rem;
  }

  .client-logo-image {
    height: 4rem;
  }

  .homepage-stat {
    flex-direction: column;
    flex: none;
    margin-right: 3.25rem;
    padding-bottom: 2rem;
    display: flex;
  }

  .section-introduction {
    max-width: 100%;
    margin-bottom: 5rem;
    margin-left: 3.25rem;
  }

  .description-text {
    max-width: 100%;
  }

  .services-wrapper {
    margin-left: 0;
  }

  .service {
    max-height: 7rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
  }

  .point-number {
    margin-top: 0;
    margin-right: 1.25rem;
  }

  .service-trigger {
    margin-top: 0;
    top: .4rem;
  }

  .statement.color-gradient-1 {
    font-size: 9vh;
  }

  .consultant-point-title {
    max-width: 80%;
    font-size: 32px;
  }

  .consultant-point {
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .consultant-points-wrapper {
    margin-left: 0;
  }

  .consultant-point-description {
    max-width: 100rem;
    margin-left: 3.25rem;
  }

  .footer-contents {
    margin-left: 3.25rem;
    display: block;
  }

  .footer-column {
    margin-bottom: 1rem;
  }

  .point-title {
    font-size: 32px;
  }

  .homepage-stats {
    width: 100vw;
    margin-left: -1rem;
    padding-left: 4.25rem;
    padding-right: 3.25rem;
    display: flex;
    overflow: scroll;
  }

  .blog-preview-link {
    display: block;
  }

  .blog-collection {
    margin-left: 0;
  }

  .blog-preview {
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .blog-preview-title {
    max-width: 80%;
    font-size: 32px;
  }

  .blog-preview-description {
    max-width: 32rem;
    margin-top: 1rem;
  }

  .blog-preview-title-container {
    max-width: 42rem;
    margin-bottom: 1rem;
  }

  .blog-introduction {
    max-width: 100%;
    margin-bottom: 5rem;
  }

  .canvas-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navigation-container {
    margin-left: 0;
    padding-left: 15rem;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 56px;
  }

  .rich-text.introduction-text {
    margin-top: 14rem;
    margin-left: 0;
    padding-left: 0;
  }

  .cookie-notice {
    left: 1rem;
  }

  .section, .section.hero-section {
    margin-bottom: 7rem;
  }

  .hero-content {
    margin-top: 7rem;
    padding-top: 0;
    padding-left: 0;
  }

  .client-logo-image {
    height: 4rem;
    margin-left: 0;
    margin-right: 0;
  }

  .section-introduction {
    margin-left: 0;
  }

  .description-text {
    margin-top: 1rem;
  }

  .statement.color-gradient-1 {
    font-size: 8vh;
  }

  .footer-contents {
    margin-left: 0;
  }

  .header {
    display: block;
  }

  .div-block {
    align-items: flex-start;
    margin-top: 2rem;
  }

  .thank-you {
    display: block;
  }

  .blog-introduction {
    margin-left: 0;
  }

  .hero-image-container {
    display: none;
  }

  .navigation-container {
    text-align: left;
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 32px;
  }

  h3, p {
    font-size: 18px;
  }

  li {
    font-size: 18px;
    line-height: 1.5em;
  }

  blockquote {
    font-size: 24px;
  }

  .rich-text.introduction-text {
    margin-top: 7rem;
  }

  .rich-text.cookie-text {
    margin-top: 1rem;
  }

  .rich-text.body-text {
    margin-top: 0;
  }

  .cookie-notice {
    right: 1rem;
  }

  .section.hero-section {
    margin-bottom: 12rem;
  }

  .client-logos-wrapper {
    margin-bottom: 2rem;
  }

  .client-logo-image {
    height: 3rem;
  }

  .homepage-stat {
    margin-right: 2rem;
  }

  .homepage-stat-number {
    font-size: 92px;
  }

  .section-introduction {
    margin-bottom: 3rem;
    margin-left: 0;
  }

  .service-header {
    display: block;
  }

  .statement.color-gradient-1 {
    font-size: 6vh;
  }

  .consultant-point-title {
    max-width: 100%;
    font-size: 24px;
  }

  .consultant-point-description {
    margin-top: 1rem;
    margin-left: 0;
  }

  .footer-contents {
    margin-left: 0;
  }

  .contact-link {
    font-size: 18px;
    line-height: 1.5em;
  }

  .point-title {
    font-size: 24px;
  }

  .homepage-stat-plus {
    width: 3rem;
    height: 3rem;
    margin-left: .5rem;
  }

  .homepage-stats {
    padding-left: 1rem;
  }

  .cv-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .blog-preview-title {
    max-width: 100%;
    font-size: 24px;
  }

  .blog-preview-description {
    margin-top: 1rem;
    margin-left: 0;
  }

  .blog-introduction {
    margin-bottom: 3rem;
    margin-left: 0;
  }

  .navigation-container {
    text-align: left;
  }

  .navigation-link {
    margin-right: 1rem;
    font-size: 16px;
  }
}


@font-face {
  font-family: 'Basiersquare';
  src: url('../fonts/basiersquare-bold-webfont.woff2') format('woff2'), url('../fonts/basiersquare-bold-webfont.woff') format('woff'), url('../fonts/basiersquare-bold-webfont.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Basiersquare';
  src: url('../fonts/basiersquare-regular-webfont.woff2') format('woff2'), url('../fonts/basiersquare-regular-webfont.woff') format('woff'), url('../fonts/basiersquare-regular-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Basiersquare';
  src: url('../fonts/basiersquare-regularitalic-webfont.woff2') format('woff2'), url('../fonts/basiersquare-regularitalic-webfont.woff') format('woff'), url('../fonts/basiersquare-regularitalic-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Basiersquare';
  src: url('../fonts/basiersquare-semibold-webfont.woff2') format('woff2'), url('../fonts/basiersquare-semibold-webfont.woff') format('woff'), url('../fonts/basiersquare-semibold-webfont.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Basiersquare';
  src: url('../fonts/basiersquare-semibolditalic-webfont.woff2') format('woff2'), url('../fonts/basiersquare-semibolditalic-webfont.woff') format('woff'), url('../fonts/basiersquare-semibolditalic-webfont.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: auto;
}