.headline {
  font-family: var(--poppins);
  letter-spacing: -.64px;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

@media (min-width: 768px) {
  .headline {
    letter-spacing: -1.12px;
    font-size: 56px;
    font-weight: 600;
    line-height: 64px;
  }
}

.page-title {
  font-family: var(--poppins);
  letter-spacing: -.28px;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}

@media (min-width: 768px) {
  .page-title {
    letter-spacing: -.4px;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
  }
}

.heading {
  font-family: var(--poppins);
  letter-spacing: -.28px;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}

@media (min-width: 768px) {
  .heading {
    letter-spacing: -.4px;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
  }
}

.subheading {
  font-family: var(--poppins);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

@media (min-width: 768px) {
  .subheading {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
  }
}

.card-title {
  font-family: var(--poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
}

.body-l {
  font-family: var(--poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 768px) {
  .body-l {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
}

.body-m {
  font-family: var(--poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 768px) {
  .body-m {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
}

.body-s {
  font-family: var(--poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media (min-width: 768px) {
  .body-s {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
}

.label {
  font-family: var(--poppins);
  letter-spacing: .12px;
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

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

body {
  background: #000;
  margin: 0;
  font-family: Mulish, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
  margin-top: 0;
}

a {
  text-decoration: none;
}

pre {
  width: 100%;
  overflow-x: scroll;
}

p {
  max-width: 800px;
  margin: 0 auto 1em;
  line-height: 1.6em;
}

.style-guide {
  color: #fff;
  background: #000;
  flex-direction: column;
  display: flex;
  position: relative;
}

.style-guide span {
  margin-bottom: 40px;
}

.ghost-btn {
  color: #fff;
  font-family: var(--poppins);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 12px;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: all .4s;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .ghost-btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
}

.ghost-btn:hover {
  background: var(--dark-grey-800);
}

.ghost-btn:active {
  background: var(--medium-grey-800);
}

.primary-btn-lg {
  background: var(--brand-color);
  font-family: var(--poppins);
  cursor: pointer;
  border: none;
  border-radius: 12px;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: all .4s;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .primary-btn-lg {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
}

.primary-btn-lg span {
  margin-right: 8px;
}

.primary-btn-lg.full-width {
  width: 100%;
  justify-content: space-between;
  padding: 18px 20px;
  display: flex;
}

.primary-btn-lg:hover {
  /* background: #9bffc0; */
  background-color: color-mix(in srgb, var(--brand-color), white 30%);
}

.primary-btn-lg:focus {
  /* background: #6be28d; */
  background-color: color-mix(in srgb, var(--brand-color), white 60%);
}

.primary-btn-sm {
  background: var(--brand-color);
  font-family: var(--poppins);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: all .4s;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .primary-btn-sm {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
}

.primary-btn-sm span {
  margin-right: 8px;
}

.primary-btn-sm:hover {
  background: #9bffc0;
}

.primary-btn-sm:focus {
  background: #6be28d;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.form-step {
  opacity: 0;
  flex-direction: column;
  transition: opacity .4s;
  display: none;
  /*** overflow: hidden; ***/
}

.form-step.active {
  opacity: 1;
  display: flex;
}

.progress-list {
  flex-direction: column;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .progress-list {
    margin-bottom: 40px;
  }
}

.progress-list:before {
  content: "";
  width: 1px;
  height: 70%;
  background: #fff;
  position: absolute;
  top: 20px;
  left: 15.5px;
}

.progress-list .item {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
  position: relative;
}

.progress-list .item .item-title {
  align-items: center;
  display: flex;
  position: relative;
}

.progress-list .item .index {
  height: 32px;
  width: 32px;
  border: 1px solid var(--white-800);
  background: #000;
  border-radius: 50%;
  margin-right: 18px;
  padding: 4px;
}

.progress-list .item .index.active {
  border: 1px solid var(--brand-color);
}

.progress-list .item .index .index-inner {
  height: 100%;
  width: 100%;
  background: var(--white-800);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  color: #000 !important;
}

.progress-list .item .index .index-inner.active {
  background: var(--brand-color);
}

.progress-list .item .status {
  position: relative;
}

.progress-list .item .status span {
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-block;
  position: relative;
}

.progress-list .item .status span.complete {
  background: var(--dark-grey-800);
}

label {
  color: var(--white-800);
  margin-bottom: 16px;
}

.field-label {
  color: #fff;
  margin-bottom: 24px;
}

.input-group {
  flex-direction: column;
  display: flex;
}

.form-field-group {
  background: var(--black-600);
  border-top: 1px solid var(--dark-grey-600);
  border-radius: 8px;
  flex-direction: column;
  margin-bottom: 12px;
  padding: 24px 32px 40px;
  display: flex;
}

.form-field-group.light {
  background: var(--white-800);
  border: none;
}

.two-column-field-group {
  margin-bottom: 12px;
  display: flex;
}

.two-column-field-group .input-group {
  flex: 1;
}

.two-column-field-group .input-group input {
  background: #000 !important;
}

.two-column-field-group .input-group:first-child {
  margin-right: 12px;
}

textarea {
  min-height: 170px;
}

textarea:focus {
  border-color: #fff;
  outline: none;
}

.textarea-with-button {
  position: relative;
}

.textarea-with-button textarea {
  width: 100%;
  min-height: 120px;
  padding-right: 48px;
}

.enquiry textarea {
  background: #000 !important;
}

.voice-btn {
  height: 32px;
  width: 32px;
  background: var(--dark-grey-800);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.voice-btn:hover {
  background: var(--medium-grey-800);
}

#voicePreview {
  margin-top: 24px;
}

.voice-btn svg {
  transition: transform .2s;
}

.voice-btn.recording svg {
  fill: red;
  transform: scale(1.2);
}

input, textarea {
  border: 1px solid var(--dark-grey-600);
  background: var(--black-600);
  color: var(--white-800);
  width: 100%;
  font-family: var(--poppins);
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: all .3s;
}

input.light, textarea.light {
  background: var(--white-800);
  color: var(--medium-grey-400);
  border: 1px solid var(--white-600);
  margin-bottom: 8px;
}

input::placeholder, input.light::placeholder {
  color: var(--medium-grey-400);
  outline: none;
  transition: all .3s;
}

input.light:hover, textarea.light:hover {
  border: 1px solid var(--medium-grey-600);
}

input.light:focus {
  border: 1px solid var(--dark-grey-600);
  color: var(--dark-grey-600);
  outline: none;
}

input.light:focus::placeholder {
  color: var(--dark-grey-600);
}

textarea.light:focus {
  border: 1px solid var(--dark-grey-600);
  color: var(--dark-grey-600);
  outline: none;
}

textarea.light:focus::placeholder {
  color: var(--dark-grey-600);
}

input:focus {
  border-color: #fff;
  outline: none;
}

input:focus::placeholder {
  color: #0000;
}

.input-group.error input, .input-group.error textarea, .input-group.error .dropdowns select, .form-field-group.error .checkbox-group {
  border-color: var(--error-red);
}

.form-field-group.error .error-message {
  margin-top: 8px;
  font-size: 14px;
  color: var(--error-text) !important;
  display: block !important;
}

.error-message {
  display: none;
}

.input-group.error .error-message {
  margin-top: 8px;
  font-size: 14px;
  color: var(--error-text) !important;
  display: block !important;
}

.input-with-button {
  align-items: center;
  gap: 8px;
  display: flex;
}

.add-btn {
  background: var(--dark-grey-800);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-weight: 500;
  transition: all .3s;
}

.add-btn:hover {
  background: var(--medium-grey-800);
}

.add-btn:focus {
  background: var(--medium-grey-600);
}

.colour-pills {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  display: flex;
}

.colour-pill {
  background: var(--dark-grey-800);
  color: var(--white-800);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  font-family: var(--poppins);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  transition: all .3s;
  display: flex;
}

.colour-pill:hover {
  background: var(--medium-grey-800);
}

.colour-preview {
  width: 12px;
  height: 12px;
}

.remove-pill {
  color: var(--white-800);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  display: flex;
}

.slider-group {
  padding-top: 24px;
  padding-bottom: 24px;
}

.style-slider {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.style-slider .slider-label {
  color: var(--white-800);
}

.style-slider .slider-header {
  color: var(--white-600);
  justify-content: space-between;
  display: flex;
}

.style-slider .slider-dots {
  width: 100%;
  pointer-events: none;
  justify-content: space-between;
  padding: 0 5px;
  display: flex;
  position: absolute;
  bottom: 50%;
  left: 0;
}

.style-slider .dot {
  width: 8px;
  height: 8px;
  background: var(--medium-grey-800);
  z-index: 0;
  border-radius: 50%;
  transform: translateY(50%);
}

.style-slider .slider-track {
  z-index: 1;
  height: 12px;
  pointer-events: none;
  border-radius: 999px;
  margin-top: -22px;
  position: relative;
}

.style-slider .slider-input {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  background: none;
  position: relative;
  padding: 0 !important;
}

.style-slider .slider-input::-webkit-slider-runnable-track {
  background: var(--dark-grey-600);
  height: 12px;
  border-radius: 6px;
}

.style-slider .slider-input::-moz-range-track {
  background: var(--dark-grey-600);
  height: 12px;
  border-radius: 6px;
}

.style-slider .slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--white-800);
  border: 1px solid var(--black-800);
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
  margin-top: -4px;
  display: block;
}

.style-slider .slider-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--white-800);
  border: 1px solid var(--black-800);
  cursor: pointer;
  border-radius: 50%;
  display: block;
}

.checkbox-group.light .custom-checkbox input:checked ~ .checkmark {
  background: var(--dark-grey-600);
  border-color: var(--dark-grey-600);
}

.checkbox-group.light .custom-checkbox input:checked ~ .checkmark svg path {
  fill: #fff;
}

.checkbox-group {
  border: 1px solid var(--medium-grey-800);
  border-radius: 8px;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px;
  display: flex;
}

.checkbox-group.light {
  border: none;
  padding-left: 0;
}

.checkbox-group.light .checkbox-label {
  color: var(--dark-grey-600);
}

.checkbox-group.light .checkmark {
  border: 1px solid #e5e5e5;
  transition: all .3s;
}

.checkbox-group.light .checkmark:hover {
  border: 1px solid var(--dark-grey-600);
}

.checkbox-group .custom-checkbox {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  display: flex;
  position: relative;
  margin-bottom: 0 !important;
}

.checkbox-group .custom-checkbox input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
}

.checkbox-group .custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  background: var(--white-800);
  border-radius: 2.5px;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  transition: all .2s;
  display: flex;
}

.checkbox-group .custom-checkbox .checkmark svg path {
  fill: #fff;
}

.checkbox-group .custom-checkbox input:checked ~ .checkmark {
  background: var(--brand-color);
  border-color: var(--brand-color);
}

.checkbox-group .custom-checkbox input:checked ~ .checkmark svg path {
  fill: #000;
}

.checkbox-group .custom-checkbox:hover .checkmark {
  opacity: .85;
}

.checkbox-group .checkbox-label {
  color: var(--white-800);
  font-size: 14px;
  line-height: 20px;
}

.dropdowns {
  gap: 16px;
  margin-bottom: 16px;
  display: flex;
}

.dropdowns select {
  appearance: none;
  border: 1px solid var(--dark-grey-600);
  background: var(--black-600);
  color: var(--white-800);
  font-family: var(--poppins);
  cursor: pointer;
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\"><path d=\"M10.0004 12.7164L5.24072 7.95673H14.7601L10.0004 12.7164Z\" fill=\"white\"/></svg>");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 8px;
  flex: 1;
  padding: 12px;
  font-size: 14px;
}

.dropdowns.hidden {
  display: none;
}

.dropdowns select:focus {
  border-color: #fff;
  outline: none;
}

.section {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.section .container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

section.intro {
  height: 100vh;
  background: var(--black-800);
  position: relative;
}

section.intro .grid {
  grid-template-columns: 1fr;
  display: grid;
}

@media (min-width: 768px) {
  section.intro .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

section.intro .gallery {
  height: 100%;
  position: relative;
}

@media (max-width: 768px) {
  section.intro .gallery {
    display: none;
  }
}

section.intro .gallery .gallery-inner {
  will-change: transform;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
  display: flex;
}

section.intro .gallery .img-item {
  flex: none;
  margin-bottom: 20px;
}

section.intro .gallery .img-wrapper {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 600 / 350;
  overflow: hidden;
}

section.intro .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@media (max-width: 767px) {
  section.intro .gallery .gallery-inner {
    flex-direction: row;
    align-items: flex-start;
    animation: scroll-left 18s linear infinite;
  }

  section.intro .gallery .img-item {
    min-width: 70vw;
    max-width: 420px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

section.intro .rightCol {
  color: var(--white-800);
  max-width: 488px;
  flex-direction: column;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.intro .rightCol {
    padding-top: 96px;
    padding-left: 0;
    padding-right: 40px;
  }
}

section.intro .rightCol .logo {
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.intro .rightCol .logo {
    flex-direction: row;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.intro .rightCol .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.intro .rightCol .logo span {
  border: 1px solid var(--medium-grey-600);
  width: fit-content;
  border-radius: 8px;
  padding: 8px 16px;
}

section.intro .rightCol .logo svg {
  max-width: 180px;
}

section.intro .rightCol .label {
  margin-bottom: 12px;
  position: relative;
}

section.intro .rightCol .headline {
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.intro .rightCol .headline {
    margin-bottom: 32px;
  }
}

section.intro .rightCol .copy {
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.intro .rightCol .copy {
    margin-bottom: 40px;
  }
}

section.intro .rightCol .list {
  flex-direction: column;
  display: flex;
  position: relative;
}

section.intro .rightCol .list .item {
  margin-bottom: 16px;
  display: flex;
  position: relative;
}

section.intro .rightCol .list .item svg {
  margin-right: 8px;
}

section.intro .rightCol .button {
  margin-top: 40px;
  position: relative;
}

@media (min-width: 768px) {
  section.intro .rightCol .button {
    margin-top: 56px;
  }
}

section.step-one {
  background: var(--black-800);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-one {
    height: 100vh;
    padding-top: 96px;
    padding-bottom: 0;
  }
}

section.step-one .logo {
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.step-one .logo {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.step-one .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.step-one .grid {
  grid-template-columns: 1fr;
  display: grid;
  position: relative;
}

@media (min-width: 768px) {
  section.step-one .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }
}

section.step-one .grid .leftCol {
  color: var(--white-800);
}

section.step-one .grid .leftCol .copy {
  color: var(--white-600);
}

section.step-one .grid .leftCol .label {
  color: var(--white-600);
  margin-bottom: 12px;
  position: relative;
}

section.step-one .grid .leftCol .headline {
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-one .grid .leftCol .headline {
    margin-bottom: 32px;
  }
}

section.step-one .grid .leftCol .copy {
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-one .grid .leftCol .copy {
    margin-bottom: 40px;
  }
}

section.step-one .grid .leftCol .list {
  flex-direction: column;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  section.step-one .grid .leftCol .list {
    margin-bottom: 40px;
  }
}

section.step-one .grid .leftCol .list:before {
  content: "";
  width: 1px;
  height: 90%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 15.5px;
}

section.step-one .grid .leftCol .list .item {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
  position: relative;
}

section.step-one .grid .leftCol .list .item .item-title {
  align-items: center;
  display: flex;
  position: relative;
}

section.step-one .grid .leftCol .list .item .index {
  height: 32px;
  width: 32px;
  border: 1px solid var(--white-800);
  background: #000;
  border-radius: 50%;
  margin-right: 18px;
  padding: 4px;
}

section.step-one .grid .leftCol .list .item .index.active {
  border: 1px solid var(--brand-color);
}

section.step-one .grid .leftCol .list .item .index .index-inner {
  height: 100%;
  width: 100%;
  color: #000;
  background: var(--white-800);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

section.step-one .grid .leftCol .list .item .index .index-inner.active {
  background: var(--brand-color);
}

section.step-one .grid .leftCol .list .item svg {
  margin-right: 8px;
}

section.step-one .grid .rightCol {
  position: relative;
}

section.step-one .grid .rightCol .primary-colour-group {
  margin-bottom: 24px;
}

section.step-one .grid .rightCol .buttons {
  justify-content: end;
  margin-top: 28px;
  display: flex;
  position: relative;
}

section.step-one .grid .rightCol .buttons .prev-btn {
  margin-right: 20px;
}

section.step-two {
  background: var(--black-800);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-two {
    min-height: 100vh;
    padding-top: 96px;
  }
}

section.step-two .logo {
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.step-two .logo {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.step-two .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.step-two .grid {
  grid-template-columns: 1fr;
  display: grid;
  position: relative;
}

@media (min-width: 768px) {
  section.step-two .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }
}

section.step-two .grid .leftCol {
  color: var(--white-800);
}

section.step-two .grid .leftCol .copy {
  color: var(--white-600);
}

section.step-two .grid .leftCol .label {
  color: var(--white-600);
  margin-bottom: 12px;
  position: relative;
}

section.step-two .grid .leftCol .headline {
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-two .grid .leftCol .headline {
    margin-bottom: 32px;
  }
}

section.step-two .grid .leftCol .copy {
  color: var(--white-600);
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-two .grid .leftCol .copy {
    margin-bottom: 40px;
  }
}

section.step-two .grid .rightCol {
  position: relative;
}

section.step-two .grid .rightCol .primary-colour-group {
  margin-bottom: 24px;
}

section.step-two .grid .rightCol .buttons {
  justify-content: end;
  margin-top: 28px;
  display: flex;
  position: relative;
}

section.step-two .grid .rightCol .buttons .prev-btn {
  margin-right: 20px;
}

section.step-three {
  background: var(--black-800);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-three {
    min-height: 100vh;
    padding-top: 96px;
  }
}

section.step-three .logo {
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.step-three .logo {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.step-three .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.step-three .grid {
  grid-template-columns: 1fr;
  display: grid;
  position: relative;
}

@media (min-width: 768px) {
  section.step-three .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }
}

section.step-three .grid .leftCol {
  color: var(--white-800);
}

section.step-three .grid .leftCol .copy {
  color: var(--white-600);
}

section.step-three .grid .leftCol .label {
  color: var(--white-600);
  margin-bottom: 12px;
  position: relative;
}

section.step-three .grid .leftCol .headline {
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-three .grid .leftCol .headline {
    margin-bottom: 32px;
  }
}

section.step-three .grid .leftCol .copy {
  color: var(--white-600);
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-three .grid .leftCol .copy {
    margin-bottom: 40px;
  }
}

section.step-three .grid .rightCol {
  position: relative;
}

section.step-three .grid .rightCol .primary-colour-group {
  margin-bottom: 24px;
}

section.step-three .grid .rightCol .buttons {
  justify-content: end;
  margin-top: 28px;
  display: flex;
  position: relative;
}

section.step-three .grid .rightCol .buttons .prev-btn {
  margin-right: 20px;
}

section.step-four {
  background: var(--black-800);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-four {
    min-height: 100vh;
    padding-top: 96px;
  }
}

section.step-four .logo {
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.step-four .logo {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.step-four .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.step-four .grid {
  grid-template-columns: 1fr;
  display: grid;
  position: relative;
}

@media (min-width: 768px) {
  section.step-four .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }
}

section.step-four .grid .leftCol {
  color: var(--white-800);
}

section.step-four .grid .leftCol .copy {
  color: var(--white-600);
}

section.step-four .grid .leftCol .label {
  color: var(--white-600);
  margin-bottom: 12px;
  position: relative;
}

section.step-four .grid .leftCol .headline {
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-four .grid .leftCol .headline {
    margin-bottom: 32px;
  }
}

section.step-four .grid .leftCol .copy {
  color: var(--white-600);
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.step-four .grid .leftCol .copy {
    margin-bottom: 40px;
  }
}

section.step-four .grid .rightCol {
  position: relative;
}

section.step-four .grid .rightCol .primary-colour-group {
  margin-bottom: 24px;
}

section.step-four .grid .rightCol .buttons {
  justify-content: end;
  margin-top: 28px;
  display: flex;
  position: relative;
}

section.step-four .grid .rightCol .buttons .prev-btn {
  margin-right: 20px;
}

section.step-four .grid .rightCol .budget-dropdown-field {
  margin-top: 24px;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  background: #00000080;
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
}

.modal {
  color: #000;
  width: 80vw;
  max-width: 960px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  background: #fff;
  border-radius: 20px;
  transition: all .3s;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%)scale(.95);
  box-shadow: 0 10px 40px #0000004d;
}

@media (min-width: 768px) {
  .modal {
    width: 100%;
  }
}

.modal .form-field-group {
  padding: 0 !important;
}

.modal span.error-message {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.modal .modal-grid {
  grid-template-columns: 1fr;
  display: grid;
  position: relative;
}

@media (min-width: 768px) {
  .modal .modal-grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

.modal .modal-grid .leftCol {
  max-width: 416px;
  position: relative;
}

@media (max-width: 768px) {
  .modal .modal-grid .leftCol {
    display: none;
  }
}

.modal .modal-grid .leftCol .img-wrapper {
  aspect-ratio: 416 / 548;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.modal .modal-grid .leftCol .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.modal .modal-grid .rightCol {
  flex-direction: column;
  padding: 32px 24px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .modal .modal-grid .rightCol {
    padding: 52px 40px;
  }
}

@media (min-width: 1200px) {
  .modal .modal-grid .rightCol {
    padding: 52px 72px;
  }
}

.modal .modal-grid .rightCol .modal-heading {
  margin-bottom: 12px;
}

.modal .modal-grid .rightCol .modal-description {
  max-width: 416px;
  margin-bottom: 24px;
}

.modal .modal-grid .rightCol .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.modal.active, .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal.active {
  transform: translate(-50%, -50%)scale(1);
}

.modal-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.modal-close {
  cursor: pointer;
  background: none;
  border: none;
  transition: background .2s;
}

.step-four.modal-open {
  filter: blur(2px);
}

section.imagining-the-workplace {
  background: var(--black-800);
  position: relative;
}

@media (max-width: 768px) {
  section.imagining-the-workplace {
    padding-bottom: 60px;
  }
}

@media (min-width: 768px) {
  section.imagining-the-workplace {
    min-height: 100vh;
    width: 100vw;
  }
}

section.imagining-the-workplace .logo {
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.imagining-the-workplace .logo {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.imagining-the-workplace .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.imagining-the-workplace .grid {
  grid-template-columns: 1fr;
  display: grid;
  position: relative;
}

@media (min-width: 768px) {
  section.imagining-the-workplace .grid {
    height: 100vh;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }
}

section.imagining-the-workplace .grid .leftCol {
  color: var(--white-800);
  max-width: 520px;
  padding-top: 60px;
  padding-left: 20px;
  position: relative;
}

@media (min-width: 768px) {
  section.imagining-the-workplace .grid .leftCol {
    padding-top: 96px;
    padding-left: 5vw;
  }
}

section.imagining-the-workplace .grid .leftCol .progress-line {
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 50px;
  margin-top: 230px;
  position: relative;
}

section.imagining-the-workplace .grid .leftCol .progress-line:before {
  content: "";
  height: 100%;
  width: 0%;
  background: var(--brand-color);
  border-radius: inherit;
  animation: fillProgress 20s linear forwards;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes fillProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

section.imagining-the-workplace .grid .leftCol .copy {
  color: var(--white-600);
  max-width: 280px;
}

section.imagining-the-workplace .grid .leftCol .label {
  color: var(--white-600);
  margin-bottom: 12px;
  position: relative;
}

section.imagining-the-workplace .grid .leftCol .headline {
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.imagining-the-workplace .grid .leftCol .headline {
    margin-bottom: 32px;
  }
}

section.imagining-the-workplace .grid .leftCol .copy {
  color: var(--white-600);
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.imagining-the-workplace .grid .leftCol .copy {
    margin-bottom: 40px;
  }
}

section.imagining-the-workplace .grid .rightCol {
  width: 100%;
  background: var(--black-600);
  border-radius: 60px 0 0 60px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.imagining-the-workplace .grid .rightCol {
    border-left: 1px solid var(--dark-grey-600);
    border-radius: 60px 0 0 60px;
    padding: 0 20px;
  }
}

section.imagining-the-workplace .grid .rightCol .slideshow-wrapper {
  flex-direction: column;
  display: flex;
  position: relative;
}

section.imagining-the-workplace .grid .rightCol .slideshow-wrapper .slide {
  width: 100%;
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  transition: opacity 1s ease-in-out;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

section.imagining-the-workplace .grid .rightCol .slideshow-wrapper .slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

section.imagining-the-workplace .grid .rightCol .slideshow-wrapper .slide .title {
  color: var(--white-800);
  margin-bottom: 8px;
}

section.imagining-the-workplace .grid .rightCol .slideshow-wrapper .slide .img-wrapper {
  aspect-ratio: 488 / 488;
  width: 100%;
  height: 100%;
  max-width: 488px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

section.imagining-the-workplace .grid .rightCol .slideshow-wrapper .slide .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

section.imagining-the-workplace .grid .rightCol .slideshow-wrapper .slide .details {
  color: var(--white-600);
  flex-direction: column;
  display: flex;
  position: relative;
}

section.imagining-the-workplace .grid .rightCol .slideshow-wrapper .slide .details span {
  margin-bottom: 8px;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  background: #00000080;
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
}

.modal {
  color: #000;
  width: 80vw;
  max-width: 960px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  background: #fff;
  border-radius: 20px;
  transition: all .3s;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%)scale(.95);
  box-shadow: 0 10px 40px #0000004d;
}

@media (min-width: 768px) {
  .modal {
    width: 100%;
  }
}

.modal .form-field-group {
  padding: 0 !important;
}

.modal span.error-message {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.modal .modal-grid {
  grid-template-columns: 1fr;
  display: grid;
  position: relative;
}

@media (min-width: 768px) {
  .modal .modal-grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

.modal .modal-grid .leftCol {
  max-width: 416px;
  position: relative;
}

@media (max-width: 768px) {
  .modal .modal-grid .leftCol {
    display: none;
  }
}

.modal .modal-grid .leftCol .img-wrapper {
  aspect-ratio: 416 / 548;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.modal .modal-grid .leftCol .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.modal .modal-grid .rightCol {
  flex-direction: column;
  padding: 32px 24px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .modal .modal-grid .rightCol {
    padding: 52px 40px;
  }
}

@media (min-width: 1200px) {
  .modal .modal-grid .rightCol {
    padding: 52px 72px;
  }
}

.modal .modal-grid .rightCol .modal-heading {
  margin-bottom: 12px;
}

.modal .modal-grid .rightCol .modal-description {
  max-width: 416px;
  margin-bottom: 24px;
}

.modal .modal-grid .rightCol .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.modal.active, .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal.active {
  transform: translate(-50%, -50%)scale(1);
}

.modal-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.modal-close {
  cursor: pointer;
  background: none;
  border: none;
  transition: background .2s;
}

.step-four.modal-open {
  filter: blur(2px);
}

section.download-page {
  height: 100vh;
  background: var(--black-800);
  padding-bottom: 56px;
  position: relative;
}

section.download-page .grid {
  grid-template-columns: 1fr;
  grid-template-areas: "right gallery";
  display: grid;
}

@media (max-width: 768px) {
  section.download-page .grid {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery"
                         "right";
  }
}

@media (min-width: 768px) {
  section.download-page .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

section.download-page .gallery {
  height: 100%;
  grid-area: gallery;
  position: relative;
}

@media (max-width: 768px) {
  section.download-page .gallery {
    display: none;
  }
}

section.download-page .gallery .gallery-inner {
  will-change: transform;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
  display: flex;
}

section.download-page .gallery .img-item {
  flex: none;
  justify-content: end;
  margin-bottom: 20px;
  display: flex;
}

section.download-page .gallery .img-wrapper {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 600 / 350;
  overflow: hidden;
}

@media (min-width: 1550px) {
  section.download-page .gallery .img-wrapper {
    max-width: 700px;
  }
}

section.download-page .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  section.download-page .gallery .gallery-inner {
    flex-direction: row;
    align-items: flex-start;
    animation: scroll-left 18s linear infinite;
  }

  section.download-page .gallery .img-item {
    min-width: 70vw;
    max-width: 420px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

section.download-page .rightCol {
  color: var(--white-800);
  flex-direction: column;
  grid-area: right;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.download-page .rightCol {
    padding-top: 96px;
    padding-left: 5vw;
    padding-right: 40px;
  }
}

section.download-page .rightCol .logo {
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.download-page .rightCol .logo {
    flex-direction: row;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.download-page .rightCol .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.download-page .rightCol .logo svg {
  max-width: 180px;
}

section.download-page .rightCol .headline {
  max-width: 490px;
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.download-page .rightCol .headline {
    margin-bottom: 32px;
  }
}

section.download-page .rightCol .copy {
  max-width: 452px;
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.download-page .rightCol .copy {
    margin-bottom: 16px;
  }
}

section.download-page .rightCol .button-item {
  border: 1px solid var(--dark-grey-600);
  max-width: 452px;
  width: 100%;
  border-radius: 8px;
  justify-content: space-between;
  padding: 16px 30px 16px 16px;
  display: flex;
  position: relative;
  color: #fff !important;
  background: #000 !important;
}

section.download-page .rightCol .button-item.download {
  border-radius: 0 !important;
}

section.download-page .rightCol .button-item .content {
  align-items: center;
  display: flex;
  position: relative;
}

section.download-page .rightCol .button-item .content .thumbnail-wrapper {
  aspect-ratio: 40 / 40;
  max-width: 40px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

section.download-page .rightCol .button-item .content .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

section.download-page .rightCol .button-item .content .title {
  margin-left: 12px;
}

section.download-page .rightCol .button-item .icon {
  align-items: center;
  display: flex;
  position: relative;
}

section.download-page .rightCol .bottom-links {
  margin-top: 56px;
  position: relative;
}

section.download-page .rightCol .bottom-links .links-title, section.download-page .rightCol .bottom-links .button-item {
  margin-bottom: 16px;
}

section.download-page .rightCol .contact-copy {
  margin-top: 16px;
  position: relative;
}

section.download-page .rightCol .contact-copy a {
  color: #fff;
  text-decoration: underline;
}

section.enquiry {
  height: 100vh;
  background: var(--black-800);
  padding-bottom: 56px;
  position: relative;
}

section.enquiry .grid {
  grid-template-columns: 1fr;
  grid-template-areas: "right gallery";
  display: grid;
}

@media (max-width: 768px) {
  section.enquiry .grid {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery"
                         "right";
  }
}

@media (min-width: 768px) {
  section.enquiry .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

section.enquiry .gallery {
  height: 100%;
  grid-area: gallery;
  position: relative;
}

@media (max-width: 768px) {
  section.enquiry .gallery {
    display: none;
  }
}

section.enquiry .gallery .gallery-inner {
  will-change: transform;
  flex-direction: column;
  animation: scroll-up 20s linear infinite;
  display: flex;
}

section.enquiry .gallery .img-item {
  flex: none;
  justify-content: end;
  margin-bottom: 20px;
  display: flex;
}

section.enquiry .gallery .img-wrapper {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 600 / 350;
  overflow: hidden;
}

@media (min-width: 1550px) {
  section.enquiry .gallery .img-wrapper {
    max-width: 700px;
  }
}

section.enquiry .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  section.enquiry .gallery .gallery-inner {
    flex-direction: row;
    align-items: flex-start;
    animation: scroll-left 18s linear infinite;
  }

  section.enquiry .gallery .img-item {
    min-width: 70vw;
    max-width: 420px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

section.enquiry .rightCol {
  color: var(--white-800);
  flex-direction: column;
  grid-area: right;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.enquiry .rightCol {
    padding-top: 96px;
    padding-left: 5vw;
    padding-right: 40px;
  }
}

section.enquiry .rightCol .logo {
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.enquiry .rightCol .logo {
    flex-direction: row;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.enquiry .rightCol .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.enquiry .rightCol .logo svg {
  max-width: 180px;
}

section.enquiry .rightCol .headline {
  max-width: 490px;
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.enquiry .rightCol .headline {
    margin-bottom: 32px;
  }
}

section.enquiry .rightCol .copy {
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.enquiry .rightCol .copy {
    margin-bottom: 48px;
  }
}

section.enquiry .rightCol .buttons {
  justify-content: end;
  margin-top: 28px;
  display: flex;
  position: relative;
}

section.enquiry .rightCol .buttons .prev-btn {
  margin-right: 20px;
}

section.enquiry-successful {
  height: 100vh;
  background: var(--black-800);
  padding-bottom: 56px;
  position: relative;
}

section.enquiry-successful .grid {
  grid-template-columns: 1fr;
  grid-template-areas: "right image";
  display: grid;
}

@media (max-width: 768px) {
  section.enquiry-successful .grid {
    grid-template-columns: 1fr;
    grid-template-areas: "image"
                         "right";
  }
}

@media (min-width: 768px) {
  section.enquiry-successful .grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

section.enquiry-successful .image {
  height: 100%;
  grid-area: image;
  position: relative;
}

@media (max-width: 768px) {
  section.enquiry-successful .image {
    display: none;
  }
}

section.enquiry-successful .image .img-wrapper {
  aspect-ratio: 704 / 860;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

section.enquiry-successful .image .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.enquiry-successful .rightCol {
  color: var(--white-800);
  flex-direction: column;
  grid-area: right;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.enquiry-successful .rightCol {
    padding-top: 96px;
    padding-left: 5vw;
    padding-right: 40px;
  }
}

section.enquiry-successful .rightCol .logo {
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  section.enquiry-successful .rightCol .logo {
    flex-direction: row;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  section.enquiry-successful .rightCol .logo img {
    max-width: 170px;
    margin-bottom: 18px;
  }
}

section.enquiry-successful .rightCol .logo svg {
  max-width: 180px;
}

section.enquiry-successful .rightCol .headline {
  max-width: 490px;
  margin-bottom: 24px;
  position: relative;
}

@media (min-width: 768px) {
  section.enquiry-successful .rightCol .headline {
    margin-bottom: 32px;
  }
}

section.enquiry-successful .rightCol .copy {
  max-width: 452px;
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  section.enquiry-successful .rightCol .copy {
    margin-bottom: 16px;
  }
}

section.enquiry-successful .rightCol .button-item {
  border: 1px solid var(--dark-grey-600);
  max-width: 452px;
  width: 100%;
  border-radius: 8px;
  justify-content: space-between;
  padding: 16px 30px 16px 16px;
  display: flex;
  position: relative;
  color: #fff !important;
  background: #000 !important;
}

section.enquiry-successful .rightCol .button-item.download {
  border-radius: 0 !important;
}

section.enquiry-successful .rightCol .button-item .content {
  align-items: center;
  display: flex;
  position: relative;
}

section.enquiry-successful .rightCol .button-item .content .thumbnail-wrapper {
  aspect-ratio: 40 / 40;
  max-width: 40px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

section.enquiry-successful .rightCol .button-item .content .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

section.enquiry-successful .rightCol .button-item .content .title {
  margin-left: 12px;
}

section.enquiry-successful .rightCol .button-item .icon {
  align-items: center;
  display: flex;
  position: relative;
}

section.enquiry-successful .rightCol .bottom-links {
  margin-top: 56px;
  position: relative;
}

section.enquiry-successful .rightCol .bottom-links .links-title, section.enquiry-successful .rightCol .bottom-links .button-item {
  margin-bottom: 16px;
}

section.enquiry-successful .rightCol .contact-copy {
  margin-top: 16px;
  position: relative;
}

section.enquiry-successful .rightCol .contact-copy a {
  color: #fff;
  text-decoration: underline;
}

code[class*="language-"], pre[class*="language-"] {
  color: #000;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  tab-size: 4;
  -webkit-hyphens: none;
  hyphens: none;
  background: none;
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
  font-size: 1em;
  line-height: 1.5;
}

pre[class*="language-"] {
  margin: .5em 0;
  padding: 1px;
  position: relative;
  overflow: visible;
}

pre[class*="language-"] > code {
  z-index: 1;
  background-color: #fdfdfd;
  background-image: linear-gradient(#0000 50%, #458ed10a 50%);
  background-size: 3em 3em;
  background-attachment: local;
  background-origin: content-box;
  border-left: 10px solid #358ccb;
  position: relative;
  box-shadow: -1px 0 #358ccb, 0 0 0 1px #dfdfdf;
}

code[class*="language-"] {
  max-height: inherit;
  height: inherit;
  padding: 0 1em;
  display: block;
  overflow: auto;
}

:not(pre) > code[class*="language-"], pre[class*="language-"] {
  box-sizing: border-box;
  background-color: #fdfdfd;
  margin-bottom: 1em;
}

:not(pre) > code[class*="language-"] {
  color: #c92c2c;
  white-space: normal;
  border: 1px solid #0000001a;
  border-radius: .3em;
  padding: .2em;
  display: inline;
  position: relative;
}

pre[class*="language-"]:before, pre[class*="language-"]:after {
  content: "";
  width: 40%;
  height: 20%;
  max-height: 13em;
  display: block;
  position: absolute;
  bottom: .75em;
  left: .18em;
  transform: rotate(-2deg);
  box-shadow: 0 13px 8px #979797;
}

pre[class*="language-"]:after {
  left: auto;
  right: .75em;
  transform: rotate(2deg);
}

.token.comment, .token.block-comment, .token.prolog, .token.doctype, .token.cdata {
  color: #7d8b99;
}

.token.punctuation {
  color: #5f6364;
}

.token.property, .token.tag, .token.boolean, .token.number, .token.function-name, .token.constant, .token.symbol, .token.deleted {
  color: #c92c2c;
}

.token.selector, .token.attr-name, .token.string, .token.char, .token.function, .token.builtin, .token.inserted {
  color: #2f9c0a;
}

.token.operator, .token.entity, .token.url, .token.variable {
  color: #a67f59;
  background: #ffffff80;
}

.token.atrule, .token.attr-value, .token.keyword, .token.class-name {
  color: #1990b8;
}

.token.regex, .token.important {
  color: #e90;
}

.language-css .token.string, .style .token.string {
  color: #a67f59;
  background: #ffffff80;
}

.token.important {
  font-weight: normal;
}

.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.namespace {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  pre[class*="language-"]:before, pre[class*="language-"]:after {
    box-shadow: none;
    bottom: 14px;
  }
}

pre[class*="language-"].line-numbers.line-numbers {
  padding-left: 0;
}

pre[class*="language-"].line-numbers.line-numbers code {
  padding-left: 3.8em;
}

pre[class*="language-"].line-numbers.line-numbers .line-numbers-rows {
  left: 0;
}

pre[class*="language-"][data-line] {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

pre[data-line] code {
  padding-left: 4em;
  position: relative;
}

pre .line-highlight {
  margin-top: 0;
}

/*# sourceMappingURL=index.ad1f28a1.css.map */
