.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.grid-layout {
  list-style: none;
  display: grid;
  grid-gap: 60px;
  grid-template-columns: 1fr;
  margin: 60px 0;
  padding: 0;
}
@media (min-width: 768px) {
  .grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
  .grid-layout--5 {
    grid-template-columns: repeat(auto-fit, minmax(453px, 1fr));
  }
}

@media screen and (min-width: 2300px) {
  .grid-layout--home li:nth-child(n+11) {
    display: none;
  }
}
.grid-layout-item h3 {
  margin: 15px 0 0 0;
}
.grid-layout-item a {
  color: #262426;
  display: block;
  text-decoration: none;
}

.grid-layout-image {
  border: 1px solid #e3e3e3;
  width: 100%;
  aspect-ratio: 2000/1203;
  overflow: hidden;
}
.grid-layout-image:hover img {
  transform: scale(1.2);
}
.grid-layout-image img {
  transition: all 0.5s;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}

.mrd-logo {
  width: 255px;
  height: auto;
}
@media (min-width: 768px) {
  .mrd-logo {
    width: 320px;
  }
}

.page-heading {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  width: calc(100% - 60px);
  padding-left: 30px;
  padding-right: 30px;
  z-index: 1;
  top: 0;
  border-bottom: 0.25px solid #888888;
}
@media (min-width: 992px) {
  .page-heading {
    flex-direction: row;
    justify-content: space-between;
  }
}

.page-footer {
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: #515151;
  border-top: 20px solid #f2f2f2;
}
.page-footer a {
  color: #ff7800;
  text-decoration: none;
}
.page-footer h3 {
  color: #ff7800;
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}
.page-footer__sign-off {
  padding-top: 1rem;
  font-size: 0.8rem;
  margin: 40px 0 0 0;
  line-height: 140%;
}
@media (min-width: 768px) {
  .page-footer__sign-off {
    display: flex;
    justify-content: space-between;
  }
}

.social-media-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 15px;
}
.social-media-icons > * + * {
  margin-left: 5px;
}
.social-media-icons li {
  display: inline-block;
}
.social-media-icons li a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #999;
  justify-content: center;
  align-items: center;
}
.social-media-icons li svg {
  fill: #ffffff;
  width: 15px;
  height: 15px;
}

.page-footer-columns > * + * {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .page-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }
  .page-footer-columns > * + * {
    margin-top: 0;
  }
  .page-footer-columns div:not(:last-child) {
    border-right: 1px solid #e3e3e3;
  }
}

.staggered-content > * + * {
  margin-top: 80px;
}
.staggered-content--slimspace > * + * {
  margin-top: 40px;
}
.staggered-content .staggered-content-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .staggered-content-item {
    display: flex;
  }
  .staggered-content-item__image {
    width: 45%;
    flex: none;
  }
  .staggered-content-item__content {
    flex: 1 auto;
    padding-right: 45px;
  }
  .staggered-content-item:nth-child(even) .staggered-content-item__content {
    padding-left: 45px;
    padding-right: 0;
  }
}
.staggered-content-item__image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #313030;
}

.hero-banner {
  text-align: left;
  background-color: #313030;
  background-image: url(../images/3d-modern-background-with-rainbow-coloured-particle-design.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-banner:before {
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .hero-banner {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-banner:before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
  }
}
.hero-banner__inner {
  padding: 30px;
  position: relative;
  color: #ffffff;
}
.hero-banner__inner p {
  font-weight: 500;
}

h1 {
  margin: 0;
  line-height: 120%;
  font-size: clamp(2rem, 7vw, 3rem);
}
h1 strong {
  background: #ED6D1D;
  background: linear-gradient(to bottom, #ED6D1D 0%, #FFA44A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1.home {
  font-size: clamp(2rem, 7vw, 5.5rem);
  line-height: 100%;
}
h1.home small {
  font-size: 42%;
  display: block;
  margin-top: 1rem;
  letter-spacing: 0;
  line-height: 100%;
}

h2 {
  padding-bottom: 5px;
  margin: 0 auto;
  font-weight: 500 !important;
  letter-spacing: -1px;
}

h3 {
  font-weight: 500 !important;
}

.body-text h1, .body-text h2, .body-text h3, .body-text h4, .body-text h5, .body-text h6 {
  letter-spacing: 0;
  text-transform: none;
  margin: 2.5rem 0 0 0;
}
.body-text h1 + p, .body-text h2 + p, .body-text h3 + p, .body-text h4 + p, .body-text h5 + p, .body-text h6 + p {
  margin-top: 0;
}
.body-text h1 {
  margin-bottom: 2rem;
}
.body-text a {
  color: #ff7800;
  font-weight: 700;
}
.body-text img {
  width: 100%;
  height: auto;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 0.5rem 0 0 0;
  font-family: museo-slab, serif;
  color: currentColor;
}

a .portfolio-title {
  color: #262426;
}

a:not([class]) {
  color: #ff7800;
}

.page-footer-title {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  font-family: museo-slab, serif;
}

header nav {
  display: flex;
  justify-content: center;
}

#showMenu:checked ~ ul {
  display: flex;
}

#showMenu:checked ~ #showMenuButton:before {
  transform: translateY(10px) rotate(45deg);
}

#showMenu:checked ~ #showMenuButton span {
  opacity: 0;
}

#showMenu:checked ~ #showMenuButton:after {
  transform: translateY(-10px) rotate(-45deg);
}

#showMenuButton {
  --bar-height: 3px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
  top: 40px;
  right: 30px;
}
#showMenuButton span {
  display: block;
  width: 100%;
  height: var(--bar-height);
  background-color: #ff7800;
  transition: all 0.5s;
}
#showMenuButton:after, #showMenuButton:before {
  content: "";
  width: 100%;
  height: var(--bar-height);
  background-color: #ff7800;
  transition: all 0.5s;
}

@media (min-width: 992px) {
  #showMenuButton {
    display: none;
  }
}
ul.main-navigation {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: museo-slab, serif;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  text-transform: uppercase;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 2rem;
  width: calc(100% - 4rem);
  z-index: 5;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.17);
  border-bottom: 6px solid #ff7800;
}
@media (min-width: 992px) {
  ul.main-navigation {
    background-color: transparent;
    top: auto;
    padding: 0;
    position: relative;
    border: 0;
    gap: 40px;
    width: auto;
    flex-direction: row;
    box-shadow: none;
    display: flex;
  }
}
ul.main-navigation > li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
ul.main-navigation > li:after {
  content: "";
  display: block;
  height: 3px;
  flex: 100%;
  background-color: #ff7800;
  transition: transform 0.2s;
  transform: scaleX(0);
}
@media (max-width: 991.98px) {
  ul.main-navigation > li {
    border-bottom: 1px solid #ffffff;
  }
}
ul.main-navigation > li:last-of-type {
  border-bottom: 0;
}
@media (min-width: 992px) {
  ul.main-navigation > li:hover:after {
    transform: scaleX(1);
  }
}
ul.main-navigation label {
  display: inline-block;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.main-navigation label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #ff7800;
}
@media (min-width: 992px) {
  ul.main-navigation label:after {
    border-top-color: grey;
    transform: scale(0.6);
  }
}
ul.main-navigation input[type=checkbox] {
  display: none;
}
ul.main-navigation input[type=checkbox]:checked ~ ul {
  visibility: visible;
  opacity: 1;
  max-height: 1000px;
  padding: 7.5px 0 15px 0;
}
@media (min-width: 992px) {
  ul.main-navigation input[type=checkbox]:checked ~ ul {
    padding: 2rem;
    top: 100%;
  }
}
ul.main-navigation > li a {
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  line-height: 30px;
}
@media (min-width: 992px) {
  ul.main-navigation > li a {
    color: #262426;
  }
}
ul.main-navigation > li a:hover {
  color: #ff7800;
}
@media (min-width: 992px) {
  ul.main-navigation > li:hover ul {
    visibility: visible;
    opacity: 1;
    max-height: 1000px;
    top: 100%;
  }
}
ul.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 100%;
  max-height: 0;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
  font-size: 80%;
}
@media (min-width: 992px) {
  ul.main-navigation ul {
    position: absolute;
    display: grid;
    grid-template-rows: repeat(var(--rows), 1fr);
    grid-auto-flow: column;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 8px;
    padding: 2rem;
    right: 0;
    top: calc(100% + 2rem);
    opacity: 0;
    visibility: hidden;
    width: var(--width);
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 6px solid #ff7800;
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.17);
    font-size: 90%;
  }
  ul.main-navigation ul li {
    flex: calc(33.33% - 10px);
  }
}
@media (max-width: 991.98px) {
  ul.main-navigation ul > * + * {
    margin-top: 15px;
  }
}
ul.main-navigation ul li a {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  ul.main-navigation ul li a:before {
    display: inline-block;
    content: "-";
  }
}
ul.main-navigation ul li a:hover {
  color: #ff7800;
}
ul.main-navigation ul i {
  display: inline-block;
  width: 30px;
  height: 30px;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}
ul.main-navigation ul svg {
  width: 17.5px;
  height: 17.5px;
}

html, body {
  height: 100%;
}

body {
  font-family: museo-sans, sans-serif;
  line-height: 1.6;
  margin: 0;
  font-size: 18px;
  margin-top: var(--offset);
}
@media (min-width: 768px) {
  body {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 22px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: museo-slab, serif;
  font-weight: 100;
  margin: 0;
  line-height: 1.3;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 320px;
  position: relative;
}

blockquote {
  font-style: italic;
  font-weight: bold;
  border-left: 10px solid #262426;
  padding-left: 30px;
  margin: 2rem 0 2rem 0;
}

.row {
  width: calc(100% - 60px);
  max-width: 2500px;
  margin: 0 auto;
}
.row--slim {
  max-width: 1200px;
}

.vertical-space {
  margin-bottom: 80px;
}
.vertical-space--half {
  margin-bottom: 40px;
}

.page-content {
  margin-top: 53.3333333333px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .page-content {
    margin-top: 80px;
  }
}

.image {
  border: 1px solid #e6e6e6;
}
.image--full-width {
  width: 100%;
  height: auto;
}

.image-loop {
  margin-top: 80px;
}

.image-loop > * + * {
  margin-top: 80px;
}

figure {
  margin: 0;
}

figcaption {
  font-size: 75%;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 180%;
}
.list--extra-space li {
  padding-bottom: 10px;
}

.contact-details {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  line-height: 130%;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.contact-details * + * {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .contact-details {
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  .contact-details {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}

dl {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-row-gap: 10px;
}
dl dt {
  font-weight: 700;
}

.header-link {
  display: inline-block;
  color: #262426;
  text-decoration: none;
}

.button, .horizonal-nav__item a {
  display: inline-block;
  border: 2px solid #ff7800;
  padding: 0.3rem 1.5rem;
  color: #ff7800;
  border-radius: 30px;
  text-decoration: none;
  text-transform: lowercase;
  align-self: flex-start;
}
.button--slim {
  padding: 0.25rem 1rem;
  border-width: 1px;
}
.button--space-top {
  margin-top: 10px;
}

.horizonal-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 40px 0;
  font-size: 80%;
}
.horizonal-nav * + * {
  margin-top: 10px;
}
.horizonal-nav__item a {
  display: inline-block;
  text-align: center;
  line-height: 120%;
}
@media (min-width: 768px) {
  .horizonal-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 0 80px 0;
  }
  .horizonal-nav * + * {
    margin-left: 25px;
    margin-top: 0;
  }
}

.portfolio-hero {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  background-color: #313030;
  color: white;
}
@media (min-width: 1600px) {
  .portfolio-hero {
    flex-direction: row;
  }
}
.portfolio-hero__images {
  min-width: 0;
  flex: 50% 1;
  font-size: 0;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.portfolio-hero__support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
@media (min-width: 1600px) {
  .portfolio-hero__support {
    padding: 3rem;
    flex: 1 1 0;
  }
}
.portfolio-hero .glide__slide img {
  aspect-ratio: 2000/1203;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-hero .glide__bullets {
  bottom: 2rem;
  z-index: initial;
}
.portfolio-hero .glide__bullet {
  border: 1px solid #e3e3e3;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
}
