.splash-container {
  /* width: 100%;
  height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: end; */
  padding-top: 8rem;
  height: 75vh;
  max-height: 600px;
}

.splash-outer {
  grid-column-gap: var(--space2);
  grid-row-gap: var(--space2);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.splash-inner {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.splash-txt-header {
  width: 59.67%;
}

.splash-txt-subhead {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 34.25%;
  display: flex;
  gap: var(--space3);
}

.splash-book {
  display: flex;
  flex-direction: row;
  gap: var(--spacehalf);
  transform: translateY(calc(2 * var(--border)));
  border-bottom: var(--border) solid var(--background-colour);
  transition: 0.5s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
.splash-book .arrow_icon {
  transform: translateY(4px);
}

.splash-book:hover {
  border-bottom: var(--border) solid var(--primary-colour);
  color: var(--primary-colour);
  transform: translateY(0px);
}
.splash-book:hover svg {
  color: var(--primary-colour);
}
.splash-book:hover a {
  color: var(--primary-colour);
}

.arrow_icon {
  width: 1.2rem;
  aspect-ratio: 1/1;
  display: inline-block;
  flex-shrink: 0;
  transform: translate(-3px, 2px);
  transition: 0.5s ease-in-out;
}

.arrow_icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.services {
  width: 100%;
}

.services-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
}

.services-vid {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
  padding-bottom: var(--space4);
  border-radius: var(--radius);
  overflow: hidden;
}

.services-vid video {
  width: 100% !important;
  height: auto !important;
  border-radius: var(--radius);
  overflow: hidden;
}

.services-sub {
  width: 50%;
  min-width: 400px;
}

.services-diagram {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--space2);
}

.dia-left {
  display: flex;
  flex-direction: row;
  padding-top: var(--space4);
  gap: var(--space1);
}

.dia-right {
  height: -moz-fit-content;
  height: fit-content;
  width: 50%;
}

.dia-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-intro {
  padding-bottom: 2rem;
}

.title {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
  padding-bottom: 10px;
}

.service-wrapper {
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.service-intro-wrapper {
  padding: 0 var(--space3) 0 var(--space3);
}

.service-intro {
  max-width: 50ch;
}

.service-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space1);
  flex: 1;
  max-width: 50%;
  justify-content: center;
  gap: var(--space3);
  padding: var(--space3) 0 var(--space3) 0;
}

.service-label-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space3) 0 var(--space3);
  gap: var(--space1);
}

.label-holder {
  flex: none;
  display: flex;
  flex-direction: column;
}

.service-label {
  opacity: 0.3;
  color: rgba(11, 5, 0, 0.5);
  background-color: white;
  border-bottom: 1.5px transparent;
  border-left: 3px solid rgba(239, 234, 227, 0.8);
  transition: 0.5s;
  padding-top: 5px;
}

.on {
  border-left: 3px solid var(--primary-colour);
  opacity: 1;
  background-color: white;
  border-bottom-style: none;
  border-bottom-color: #000;
  flex-direction: row;
  max-width: 20.75em;
  padding-left: var(--space1);
  display: flex;
  color: black;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
  padding: 0 var(--space3) 0 var(--space3);
}

.service-tag-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space1);
}

.service-tag {
  display: flex;
  flex-direction: row;
  gap: var(--space1);
  width: 100%;
  justify-content: space-between;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.service-tag:not(.hidden) {
  max-height: 100px; /* It's not gonna be 1000px, but it will grow as much as it needs to */
}

.service-tag strong {
  width: 150px;
  font-weight: bold;
  letter-spacing: 0.65px;
}

.service-tag p {
  width: 75%;
}

.service-copy {
  max-width: 35ch;
}

.service-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  margin-left: var(--space1);
}

.service-img img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.method-tags {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
  padding: var(--space1) 0 var(--space2) 0;
}

.work-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.work-block {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
  width: 75%;
  padding-bottom: var(--space4);
}

.left {
  align-self: flex-start;
}

.right {
  align-self: flex-end;
}

.work-img-wrapper {
  width: 100%;
  position: relative;
}

.work-img {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.work-img img {
  border-radius: var(--radius);
  min-height: 100px;
}

.work-tags {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  gap: var(--space1);
  padding: var(--space1);
}

.work-tag {
  display: flex;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  padding: 0.375rem 0.5rem;
  border-radius: 2rem;
  background-color: var(--colour-tag-background);
  color: var(--color-inverted-text);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 75px;
}

.work-title {
  display: flex;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: calc(1.8 * var(--border));
  transition: 0.5s ease-in-out;
  transform: translateY(-2px);
  border-bottom: var(--border) solid var(--background-colour);
}
.work-title a {
  height: 24px;
  padding-left: 3px;
}

.work-title:hover {
  margin-top: 1.5px;
  border-bottom: var(--border) solid var(--primary-colour);
  transform: translateY(calc(-3.5 * var(--border)));
}
.work-title:hover svg {
  color: var(--primary-colour);
}
.work-title:hover h4 {
  color: var(--primary-colour);
}

.work-title h4 {
  transition: color 0.5s ease-in-out;
}

.work-title svg {
  transform: translateY(-2px);
  transition: color 0.5s ease-in-out;
}

.work-sub {
  max-width: 50%;
  display: flex;
  flex-direction: row;
  gap: var(--space1);
  align-items: start;
}

.work-sub .arrow_icon {
  width: 2rem;
}

.work-arrow {
  fill: var(--dark-grey);
  transition: fill 1s;
  align-self: flex-end;
  width: 30px;
  height: 30px;
}

.work-arrow:hover {
  fill: var(--primary-colour);
}

.about, .services {
  padding-top: var(--space4);
}

.about-gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--space1);
}

.about-gallery img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 50px;
}

.about1 {
  display: flex;
  flex-direction: row;
  gap: var(--space1);
  height: 60vh;
}

.about1L {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  gap: var(--space1);
  max-width: 50%;
}

.about1R {
  flex-grow: 2;
  align-items: stretch;
  gap: var(--space1);
}

.about2 {
  display: flex;
  flex-direction: row;
  gap: var(--space1);
}

.about2L {
  flex-grow: 3;
}

.about2R {
  flex-grow: 1;
  min-width: 25%;
}

.about3 {
  height: 30vh;
}

.about-text-wrapper {
  display: flex;
  flex-direction: column;
}

.about-L {
  flex-grow: 1;
}

.about-R {
  flex-grow: 1;
}

.about-sub {
  width: 66%;
}

.about-copy {
  margin-top: var(--space2);
  max-width: 50%;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: var(--space1);
}

.contact-block {
  flex-basis: 50%;
  padding: 0 var(--space3) 0 0;
}

.contact-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: var(--space2) 0 var(--space3) 0;
}

.contact-email {
  font-weight: bold;
  min-height: 20px;
}

.contact-sub {
  display: flex;
  flex-direction: column;
  gap: var(--spacehalf);
  width: 30%;
  min-width: 220px;
}

.contact-sub h4 {
  padding: var(--spacehalf) 0 var(--space1) 0;
  border-bottom: var(--border) solid var(--dark-grey);
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
  padding: var(--space4) 0 var(--space3) 0;
}

.newsletter-label {
  padding-top: 20px;
}

.newsletter-input {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  max-width: 500px;
  gap: var(--space2);
}

.newsletter-inputbox {
  width: -moz-max-content;
  width: max-content;
  flex-grow: 4;
  padding: 0 var(--spacehalf) 0 var(--spacehalf);
  box-sizing: border-box;
  border: none;
  border-bottom: var(--border) solid var(--dark-grey);
  min-height: 24px;
}
.newsletter-inputbox:hover {
  cursor: none;
}

.newsletter-inputbox:focus {
  outline: none !important;
  border: none;
  box-shadow: none;
  border-bottom: var(--border) solid var(--border-colour);
}

.submit-btn {
  display: flex;
  flex-direction: row;
  align-items: end;
  transition: 0.5s ease-in-out;
  transform: translateY(0px);
}
.submit-btn:hover {
  color: var(--primary-colour);
  border-bottom: var(--border) solid var(--primary-colour);
  transform: translateY(calc(-2 * var(--border)));
}
.submit-btn:hover .newsletter-inputbutton {
  color: var(--primary-colour);
}

.newsletter-inputbutton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: color 0.5s ease-in-out;
  /* 
      border-style: solid;
      border-width: var(--border); */
  border: none;
  border-radius: unset;
  padding-right: 10px;
  background-color: unset;
}
.newsletter-inputbutton:hover {
  cursor: none;
}

.submit-btn .arrow_icon {
  transform: translate(-10px, -5px);
  z-index: -1;
}

br {
  border-bottom: 1px dashed black;
}

.footer-container {
  /* padding: 0 var(--space3) 0 var(--space3); */
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: var(--space3);
  margin-bottom: var(--space5);
  margin-top: var(--space4);
  justify-content: space-between;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
}

.footer-contact, .footer-link, .footer-connect {
  display: flex;
  flex-direction: column;
}

.footer-link {
  gap: var(--space1);
}

.footer-btn {
  display: flex;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space1);
}

.footer-img img {
  width: 25px;
  transform: translateY(-3px);
}

.footer-news {
  display: flex;
  flex-direction: column;
  gap: var(--space2);
  max-width: 50%;
}

.logo-img {
  background-color: unset;
}

@media screen and (max-width: 70em) {
  .splash-container {
    padding-top: var(--space4);
  }
  .splash-inner {
    grid-column-gap: var(--space2);
    grid-row-gap: var(--space2);
    flex-direction: column;
    gap: var(--space3);
  }
  .splash-txt-subhead {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    width: 75%;
    gap: var(--space3);
  }
  .splash-txt-header {
    width: 100%;
  }
  .splash-outer {
    width: 75%;
  }
  .splash-book {
    padding-top: var(--space3);
  }
  .service-label-wrapper {
    padding: 0 var(--space3) 0 0;
  }
}
@media screen and (max-width: 40em) {
  .wrapper {
    width: min(90% - 3rem, 56.25rem);
    margin-inline: auto;
  }
  .footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--space1);
  }
  .footer-container {
    flex-direction: column-reverse;
  }
  .splash-txt-subhead {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    width: 100%;
    gap: var(--space3);
  }
  .splash-container {
    height: 60vh;
  }
  .splash-outer {
    width: 100%;
  }
  .service-wrapper {
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .service-content-wrapper {
    max-width: unset;
    padding: var(--space1) 0 var(--space3) 0;
  }
  .service-img {
    margin-left: unset;
  }
  .about1 {
    flex-direction: column;
    height: unset;
  }
  .about2 {
    flex-direction: column;
  }
  .about1L {
    flex-direction: row;
  }
  .about-copy {
    width: 100%;
    max-width: unset;
  }
  .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
  .work-block {
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */