/* COLOURS & BORDERS */
/* BREAKPOINTS */
.site-head {
  background-color: #F9F9F9;
  width: 100%;
  border-bottom: #E5E5E5 solid 1px;
  z-index: 100;
  height: 50px;
  /*
    &__nav ul li {
      color: black;
      font-size: 1rem;

      border-top: $rbd-border;
      padding: 15px 15px 15px 20px;
    }*/
}
@media screen and (min-width: 900px) {
  .site-head {
    position: fixed;
    top: 0;
    height: 71px;
    border-bottom: #E5E5E5 solid 1px;
    padding-bottom: 0;
  }
}
.site-head__wrapper {
  height: 50px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .site-head__wrapper {
    height: 70px;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-head__wrapper--button {
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  height: 40px;
  width: 40px;
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .site-head__wrapper--button {
    display: none;
  }
}
.site-head__wrapper--button__segments::before {
  background-color: black;
  width: 40px;
  height: 3px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  content: "";
  top: -10px;
}
.site-head__wrapper--button__segments {
  background-color: black;
  width: 40px;
  height: 3px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  content: "";
}
.site-head__wrapper--button__segments::after {
  background-color: black;
  width: 40px;
  height: 3px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  content: "";
  bottom: -10px;
}
.site-head__wrapper__brand {
  z-index: 100000000000000;
  float: left;
  height: 100%;
  width: auto;
}
@media screen and (min-width: 900px) {
  .site-head__wrapper__brand {
    display: flex;
    height: 100%;
    width: auto;
  }
}
.site-head__wrapper__brand--img {
  height: 100%;
}
@media screen and (min-width: 900px) {
  .site-head__wrapper__brand--img {
    height: 100%;
    width: auto;
  }
}
.site-head__nav {
  height: 100%;
}
@media screen and (min-width: 900px) {
  .site-head__nav {
    font-size: 1rem;
    height: 100%;
    width: 100vw;
    max-width: none;
    z-index: 10;
    top: 0;
    transform: translateX(0);
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    border-left: none;
    border-bottom: 0;
    overflow: visible;
  }
}
@media screen and (min-width: 1024px) {
  .site-head__nav {
    justify-content: space-between !important;
    width: 100%;
  }
}
.site-head__nav .front-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  height: 100%;
}
.site-head__nav.active .site-head__nav__list {
  transition: 0.2s ease;
  transform: translateX(0);
}
.site-head__nav__list {
  padding-left: 0;
  background-color: #F9F9F9;
  height: calc(100vh - 51px);
  min-width: 300px;
  max-width: 500px;
  width: 80vw;
  position: fixed;
  top: 51px;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: scroll;
  border-left: #E5E5E5 solid 1px;
  transform: translateX(100vw);
  transition: transform 0.2s ease, max-height 0.2s;
  /*&__2 li:last-of-type {
    border-bottom: $rbd-border;
  }*/
}
@media screen and (min-width: 900px) {
  .site-head__nav__list {
    top: 0;
    position: relative;
    height: 100%;
    min-width: 0;
    max-width: none;
    width: auto;
    border-left: none;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    transform: translateX(0);
  }
}
.site-head__nav__list li {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.site-head__nav__list li a {
  height: 100%;
  width: 100%;
  padding: 15px 20px 15px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.site-head__nav__list li a:hover {
  color: #4D4D4D;
  transition: all 0.1s ease-in-out;
}
@media screen and (min-width: 900px) {
  .site-head__nav__list li a:hover {
    color: black;
  }
}
.site-head__nav__list li a:active {
  color: #4D4D4D;
  transition: all 0.1s ease-in-out;
}
.site-head__nav__list__2 {
  opacity: 0;
  z-index: 12;
  visibility: hidden;
  padding: 0;
  width: 100%;
  transform-origin: top;
  transition: opacity 0.2s;
  height: 0;
}
.site-head__nav__list__2.active {
  animation: scaleIn;
  animation-duration: 0.2s;
  height: auto;
  visibility: visible;
  opacity: 1;
  transform-origin: top;
  transition: opacity 0.4s;
}
.site-head__nav__list__2 li {
  list-style: none;
  border-top: #E5E5E5 solid 1px;
  /*padding: 15px 15px 15px 20px;*/
  display: flex;
  align-items: center;
}
.site-head__nav__list__2 li a {
  height: 100%;
  width: 100%;
}
.site-head__nav__list__3 {
  z-index: 30;
  visibility: hidden;
  padding: 0;
  padding-left: 15px;
  width: 100%;
  max-height: 0;
  transform-origin: top;
  transition: max-height 0.2s, transform 0.2s, visibility 0.2s;
}
.site-head__nav__list__3.active {
  height: auto;
  visibility: visible;
  max-height: 500px;
  transform-origin: top;
  transition: visibility 0.2s, max-height 0.2s, transform 0.2s;
}
.site-head__nav__listitem-1 {
  background-color: #F9F9F9;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  list-style: none;
  border-top: #E5E5E5 solid 1px;
  height: auto;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .site-head__nav__listitem-1 {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    white-space: nowrap;
    width: auto;
    border: none;
  }
}
.site-head__nav__listitem-1:first-of-type {
  border-top: none;
}
.site-head__nav__listitem-1:last-of-type {
  border-bottom: #E5E5E5 solid 1px;
}
@media screen and (min-width: 900px) {
  .site-head__nav__listitem-1:last-of-type {
    border: none;
    background-color: none;
    color: white;
    margin-left: 10px;
  }
}
@media screen and (min-width: 900px) {
  .site-head__nav__listitem-1:last-of-type a {
    /*text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-indent: 0.3rem;*/
    background-color: #E41E26;
  }
}
@media screen and (min-width: 900px) {
  .site-head__nav__listitem-1 > a {
    width: auto;
    transition: background-color 0.2s ease-in-out;
  }
}
@media screen and (min-width: 900px) {
  .site-head__nav__listitem-1:hover a {
    background-color: #EBEBEB;
    transition: background-color 0.1s ease-in-out;
  }
}
.site-head__nav__listitem-2 {
  background-color: white;
  white-space: normal;
}
.site-head__nav__icon {
  background-image: url("../img/arrow.svg");
  height: 10px;
  width: 10px;
  margin-left: 10px;
  background-size: cover;
  background-position: center center;
  transform: rotate(90deg);
  transition: transform 0.2s ease-in-out;
}
.site-head__nav__icon.active {
  transform: rotate(90deg);
}

.language-picker {
  z-index: 555;
  padding: 4px;
  border: #E5E5E5 solid 1px;
  border-radius: 8px;
}
.language-picker select {
  border-radius: 4px;
  padding: 2px 6px 2px 4px;
  border: #E5E5E5 solid 1px;
  background-color: #f6f6f6;
  color: #323232;
}
.language-picker select:first-child {
  font-weight: bold;
}
.language-picker select:hover {
  background-color: #ececec;
  cursor: pointer;
}
.language-picker select:active {
  outline: none;
}
.language-picker select:focus {
  outline: none;
}
.language-picker select:focus-within {
  outline: none;
}

@media screen and (min-width: 900px) {
  /*.site-head {

    &__wrapper {


      &__brand {

      }
    }

    &__nav {


      &__list {

      }

      &__listitem-1 {


        &:last-of-type {

        }

        & > a {

        }

        &:hover {

        }

        &.active {

          & > ul {
            height: auto;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.2s ease-in-out;

          }

          & > a > .site-head__nav__icon {
            transform: rotate(0deg);
            transition: transform 0.2s ease-in-out;
          }
        }
      }

      &__listitem-1:last-of-type {

        & a {

        }

        &:hover {
        }
      }

      //Mega-Menu
      &__list__2 {
        z-index: -300;
        left: 0;
        top: 50px;

        width: 100vw;
        height: 0;

        display: flex;
        flex-flow: row wrap !important;
        align-items: flex-start;
        visibility: hidden;

        position: absolute;
        overflow: auto;

        background-color: white;
        border-top: $rbd-border;
        border-bottom: $rbd-border;
        opacity: 0;

        row-gap: 10px;

        transition: opacity 0.2s ease-in-out, visibility 0s 0.2s, padding 0.1s;

        & .site-head__nav__icon {
          display: none;
        }
      }

      &__listitem-2 {
        background-color: none;
        width: 50% !important;
        border-top: none !important;
        display: flex;
        align-items: flex-start !important;
        flex-basis: 1;
        padding: 15px 15px;

        &:last-of-type{
        }

        &:nth-child(odd){
        }

        & > a {
          text-transform: uppercase;
          font-weight: 600;
          letter-spacing: 0.2rem;

          padding: 0 !important;
          margin-bottom: 10px;

          border-bottom: $rbd-red solid 2px;
        }

        &:hover {
          background-color: $rbd-white;
        }
      }

      &__list__3 {
        max-height: none;
        visibility: visible;
        border: none !important;

        display: flex;
        flex-flow: row wrap;
        row-gap: 6px;

        padding-left: 0;
      }

      &__listitem-3 {
        border: none !important;
        width: 50% !important;

        & > a {
          padding: 0 !important;
          border: none !important;
          align-items: flex-start !important;

          &:hover {
            color: $rbd-red;
            text-decoration: underline;
          }
        }
      }
    }
  }*/
}
@media screen and (min-width: 1024px) {
  .site-head__nav__listitem-1.active > ul {
    padding: 40px 10vw;
  }

  .site-head__nav__list__2 {
    justify-content: space-between !important;
    padding: 0;
  }
}
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/*
  10. Remove built-in button styles
*/
button {
  background-color: none;
  border: none;
}

/*
  11. Remove default list styles.
*/
ul.display, li.display {
  padding: 0;
  list-style: none;
}

h3 {
  font-weight: 800;
}

/* BEGIN */
* {
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  display: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

thead {
  color: white;
  background-color: black;
  border-left: 2px solid black;
  border-right: 2px solid black;
}

tbody {
  border-left: #E5E5E5 solid 1px;
  border-right: #E5E5E5 solid 1px;
  border-bottom: 2px solid #E41E26;
}

tbody tr + tr {
  border-top: #E5E5E5 solid 1px;
}
tbody tr:hover {
  cursor: pointer;
  background-color: #E5E5E5;
}

th, td {
  text-align: left;
  padding: 12px 15px;
}
th a, td a {
  text-decoration: underline;
}
th a:hover, td a:hover {
  cursor: pointer;
  color: #E41E26;
  text-decoration: none;
}

.centred-cell {
  text-align: center;
}

/* HOME */
.article__hero {
  min-height: 730px;
  overflow: scroll;
}

.hero-text--wrapper {
  margin-top: 10vh;
}
.hero-text--wrapper h1 {
  padding-left: 20px;
  border-left: solid 2px #E41E26;
  margin-bottom: 30px;
}

.hero-image--wrapper {
  position: absolute;
  z-index: -200;
  width: 100vw;
  height: 100vh;
  right: 0px;
  top: 0px;
  overflow: scroll;
}
.hero-image--wrapper img {
  position: absolute;
  object-fit: cover;
  height: 150%;
  width: auto;
  opacity: 0.2;
  right: 10px;
}

.cta--wrapper {
  align-self: center;
  display: flex;
  flex-direction: column;
  flex-grow: -1;
  align-items: center;
  gap: 10px;
  margin-top: 10vw;
}

.copyright {
  margin-top: 40px;
  color: #e3e3e3;
}

/* PRODUCT GUIDE */
.inspector {
  display: none;
}

.categories {
  width: 100%;
  padding: 20px;
}
.categories__list__item + * {
  margin-top: 20px;
}

.prod-cat__title {
  background-color: black;
  padding: 10px;
  color: #F9F9F9;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 700;
}
.prod-cat__products__list {
  display: flex;
  flex-flow: column;
}
.prod-cat__products__list__item {
  display: flex;
  border-bottom: #E5E5E5 solid 1px;
  border-left: #E5E5E5 solid 1px;
  border-right: #E5E5E5 solid 1px;
}
.prod-cat__products__list__item a {
  height: 100%;
  width: 100%;
  padding: 10px;
}
.prod-cat__products__list__item a:hover {
  background-color: #E5E5E5;
}

/* PRODUCT PAGE */
.product-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 250px;
  overflow: auto;
  background-color: white;
  padding: 60px;
  border-bottom: #E5E5E5 solid 1px;
}
.product-img__img {
  width: auto;
  height: 100%;
}
.product-img__img.bg {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.product-img.bg {
  padding: 0;
  background-image: url(../img/BANNER_001_COLLAGE_BW.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.product-info__wrapper {
  min-height: calc(100vh - 362px);
}
.product-info__wrapper__title {
  padding: 40px;
  border-bottom: #E5E5E5 solid 1px;
}
.product-info__wrapper__title__cat {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #E41E26;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.product-info__wrapper__body {
  padding: 40px;
  width: 100%;
}
.product-info__wrapper__body h3 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 0.8rem;
}
.product-info__cta-filler {
  width: 100%;
  height: 60px;
  background-color: #E5E5E5 solid 1px;
}
.product-info__cta-wrapper {
  border-top: #E5E5E5 solid 1px;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.product-info__cta-wrapper__cta-1 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.product-info__cta-wrapper__cta-1__a {
  width: 100%;
  border-bottom: #E5E5E5 solid 1px;
}
.product-info__cta-wrapper__cta-1__a > button {
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
.product-info__cta-wrapper__cta-2 {
  display: flex;
  flex-direction: column;
  width: 50%;
  border-left: #E5E5E5 solid 1px;
}
.product-info__cta-wrapper__cta-2__a {
  width: 100%;
  height: 100%;
}
.product-info__cta-wrapper__cta-2__a > button {
  background-color: #F9F9F9;
  color: black;
  width: 100%;
  border-left: #E5E5E5 solid 1px;
  border: 0;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.product-info__cta-wrapper__cta-2__a > button:hover {
  border: 0;
}

.about-brand {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-brand__img {
  max-width: calc(100% - 40px);
  width: 350px;
  height: auto;
  background-color: orange;
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px black;
}
.about-brand__text {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 5vw;
  line-height: 4.6vw;
  text-align: center;
  color: white;
  text-shadow: 0px 0px 20px black;
}
.about-brand__text strong {
  font-weight: 900;
}

/* SERVICE PAGE */
.service-img__bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: black;
  filter: grayscale(100);
  border-bottom: #E5E5E5 solid 1px;
}
.service-img__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.service-info__wrapper__title {
  padding: 20px;
  border-bottom: #E5E5E5 solid 1px;
}
.service-info__wrapper__title__cat {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #E41E26;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.service-info__wrapper__body {
  padding: 20px;
  padding-bottom: 30px;
  width: 100%;
}
.service-info__wrapper__body h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 0.18rem;
}
.service-info__wrapper__body * + p + p {
  margin-bottom: 30px;
}
.service-info__wrapper__body * + h3 {
  margin-top: 40px;
}
.service-info__cta-wrapper {
  border-top: #E5E5E5 solid 1px;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.service-info__cta-wrapper__cta-1 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.service-info__cta-wrapper__cta-1__a {
  width: 100%;
}
.service-info__cta-wrapper__cta-1__a > button {
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
.service-info__cta-wrapper__cta-2 {
  display: flex;
  flex-direction: column;
  width: 50%;
  border-left: #E5E5E5 solid 1px;
}
.service-info__cta-wrapper__cta-2__a {
  width: 100%;
  height: 100%;
}
.service-info__cta-wrapper__cta-2__a > button {
  background-color: #F9F9F9;
  color: black;
  width: 100%;
  border-left: #E5E5E5 solid 1px;
  border: 0;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.service-info__cta-wrapper__cta-2__a > button:hover {
  border: 0;
}

/* CONTACT PAGE */
.contact-info__headline {
  padding: 20px;
  border-bottom: #E5E5E5 solid 1px;
}
.contact-info__wrapper {
  border-bottom: #E5E5E5 solid 1px;
}
.contact-info__wrapper__countries__country {
  padding: 20px;
}
.contact-info__wrapper__countries__country--title {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #E41E26;
  margin-bottom: 20px;
}
.contact-info__wrapper__countries__country__wrapper--label {
  font-size: 1rem;
}
.contact-info__wrapper__countries__country__wrapper + * {
  margin-top: 20px;
}
.contact-info__wrapper__countries__country + * {
  margin-top: 40px;
}
.contact-form__title {
  padding: 20px;
  padding-bottom: 0;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #E41E26;
}
.contact-form__form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form__form__wrapper {
  width: 100%;
  position: relative;
  padding-left: 15px;
  background-color: white;
  border: #E5E5E5 solid 1px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact-form__form__wrapper__label {
  /*
  &::after {
    left: 6rem;
    position: absolute;
    content: '';
    height: 60%;
    width: 2px;
    background-color: $rbd-lightgrey;
  }*/
}
.contact-form__form__wrapper__input {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: none;
}
.contact-form__form__wrapper + * {
  margin-top: 20px;
}

.f-message {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.f-message label {
  width: auto;
  margin-top: 10px;
  align-self: flex-start;
  padding: 10px 15px;
  margin: 0;
  background-color: #e3e3e3;
  color: black;
}
.f-message label::after {
  background-color: rgba(0, 0, 0, 0);
}
.f-message textarea {
  border: #E5E5E5 solid 1px;
  resize: vertical;
  min-height: 8rem;
}

/* TECHNICAL SERVICES */
.services-title {
  padding: 20px;
  border-bottom: #E5E5E5 solid 1px;
  width: 100%;
}
.services-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.services-service {
  height: 100%;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
}
.services-service__wrapper {
  width: 100%;
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.services-service__title {
  color: white;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}
.services-service__seperator {
  display: block;
  width: 80px;
  height: 2px;
  background-color: #E41E26;
  margin-bottom: 10px;
}
.services-service__body {
  min-height: 150px;
  color: white;
}

/* LAYOUT CLASSES */
/* GROUND LEVEL */
html {
  font-size: 16px;
  z-index: -1000;
}

body {
  background-color: #F9F9F9;
}

h1 {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 2.4rem;
}

p {
  font-size: 1rem;
  line-height: 1.8rem;
}

p + p {
  margin-top: 10px;
}

article {
  display: flex;
  flex-direction: column;
}

.article__hero {
  overflow-x: hidden;
  height: calc(100% - 71px);
  padding: 0px 20px;
}

button {
  padding: 15px 30px;
}

.btn--cta {
  color: white;
  background-color: #E41E26;
  border: 2px solid rgba(0, 0, 0, 0);
}
.btn--cta:hover {
  cursor: pointer;
  border: solid 2px #E41E26;
  background-color: rgba(0, 0, 0, 0);
  color: #E41E26;
}

.link--cta-sub {
  text-decoration: underline;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
.link--cta-sub:hover {
  transform: translateX(10px);
  transition: transform 0.2s;
}
.link--cta-sub::after {
  content: "";
  position: relative;
  background-image: url("../img/arrow-right-thin.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 1rem;
  width: 30px;
  margin-left: 8px;
}

.transition {
  transition: 0.2s;
}

.fade {
  z-index: 1;
  opacity: 0.2;
  transition: opacity 0.2s;
}

.subparent {
  width: 100%;
  padding: 15px 20px 15px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 500px) {
  .cta--wrapper {
    flex-direction: row;
    margin-top: 30px;
    gap: 0;
  }

  .link--cta-sub {
    margin-left: 35px;
  }
}
.article--404 {
  height: calc(100% - 62px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.article--404 > h1 {
  font-size: 8rem;
  font-weight: 900;
  width: 100%;
  line-height: 8rem;
  margin-bottom: 2rem;
}
.article--404 > h1 span {
  color: #E41E26;
}
.article--404 a {
  color: #E41E26;
  text-decoration: underline;
}
.article--404 a:hover {
  text-decoration: none;
}

@media screen and (min-width: 900px) {
  .fade {
    opacity: 1;
  }

  main {
    padding-top: 70px;
  }

  article {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px;
  }

  .article__hero {
    height: calc(100vh - 71px);
    width: 100%;
    padding: 0px 40px;
  }

  .hero-text--wrapper {
    margin-top: 40px;
    max-width: 42rem;
  }
  .hero-text--wrapper h1 {
    padding-left: 40px;
    font-size: 4rem;
    line-height: 4.5rem;
    margin-bottom: 3rem;
  }
  .hero-text--wrapper p {
    margin-bottom: 3rem;
  }

  .hero-image--wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
  }
  .hero-image--wrapper img {
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 1;
    object-fit: contain;
    overflow: hidden;
  }

  /* PRODUCT-GUIDE TABLET */
  .article__product-guide {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px;
    min-height: 100vh;
  }

  .inspector {
    display: flex;
    position: sticky;
    width: 100%;
    top: 71px;
    height: calc(100vh - 71px);
    left: 0;
    background-color: white;
    border-right: #E5E5E5 solid 1px;
    padding: 30px;
  }
  .inspector__display {
    height: 100%;
    width: 100%;
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .inspector__display.active {
    opacity: 1;
    transition: 0.3s ease;
  }
  .inspector__display img {
    margin: 0;
    padding: 30px;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s;
    object-fit: contain;
  }
  .inspector__display img.active {
    opacity: 1;
    transition: opacity 0.2s;
  }

  .categories {
    width: 100%;
    right: 0;
    padding-left: 30px;
  }
  /* PRODUCT PAGE TABLET */
  .product-page-article {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .product-img {
    top: 71px;
    height: calc(100vh - 70px);
    width: 50vw;
    padding: 30px;
    background-color: white;
    border-bottom: none;
    position: sticky;
  }
  .product-img.bg {
    padding: 0;
  }
  .product-img__img {
    height: 100%;
    width: auto;
  }
  .product-img__img.bg {
    object-fit: cover;
    width: 100%;
  }

  .product-info {
    min-height: calc(100vh - 70px);
    width: 50vw;
    border-left: #E5E5E5 solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-info__wrapper__body {
    max-width: 46rem;
  }
  /* SERVICE PAGE TABLET */
  .service-page-article {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .service-img__bg {
    top: 71px;
    height: calc(100vh - 70px);
    width: 40vw;
    background-color: black;
    border-bottom: none;
    position: sticky;
    filter: contrast(1.15);
  }
  .service-img__bg img {
    height: 100%;
    object-position: center top;
    object-fit: cover;
    width: 100%;
  }

  .service-info {
    min-height: calc(100vh - 70px);
    width: 60vw;
    border-left: #E5E5E5 solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .service-info__wrapper__body {
    max-width: 46rem;
  }
  /* CONTACT PAGE TABLET */
  .contact-article {
    padding: 0;
    display: flex;
    flex-flow: wrap row;
    align-items: center;
    overflow-x: hidden;
  }
  .contact-info__headline {
    width: 100%;
  }
  .contact-info__wrapper {
    width: max(50%, 100% - 450px);
    border-bottom: none;
    border-right: #E5E5E5 solid 1px;
  }
  .contact-form__wrapper {
    width: 50%;
    max-width: 450px;
  }

  /* TECHNICAL SERVICES PAGE TABLET */
  .services-article {
    display: flex;
    flex-direction: column;
    padding: 0;
    height: calc(100vh - 70px);
  }
  .services-title {
    padding: 20px;
    border-bottom: #E5E5E5 solid 1px;
    width: 100%;
    z-index: 30;
  }
  .services-wrapper {
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 10;
  }
  .services-service {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .services-service__wrapper {
    width: 33.33%;
    min-height: 100%;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
  }
  .services-service__wrapper::before {
    filter: grayscale(100%);
  }
  .services-service__wrapper:hover {
    filter: grayscale(0);
    transition: filter 0.2s ease;
    z-index: 2;
    opacity: 0.8;
  }

  .subparent {
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2rem;
    padding: 0 !important;
    margin-bottom: 10px;
    border-bottom: #E41E26 solid 2px;
  }
}
@media screen and (min-width: 1024px) {
  article {
    padding: 40px 10vw;
  }

  .article__hero {
    padding: 0 0 0 10vw;
  }

  /* PRODUCT-GUIDE DESKTOP */
  .inspector {
    max-width: 612px;
  }

  .prod-cat__products__list {
    display: flex;
    flex-flow: row wrap;
  }
  .prod-cat__products__list__item {
    width: 50%;
    display: flex;
  }
  .prod-cat__products__list__item:nth-child(even) {
    border-left: none;
  }
  /* CONTACT PAGE DESKTOP */
  .contact-info__wrapper {
    min-height: calc(100vh - 70px);
    padding: 0;
  }
  .contact-info__wrapper__countries {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    padding-top: 70px;
  }
  .contact-info__wrapper__countries__country + * {
    margin-top: 0;
  }

  .contact-info__headline {
    font-size: 4rem;
    padding: 70px;
  }

  .contact-form__wrapper {
    padding: 0 20px;
  }
}
.datatable-article {
  padding: 10px;
}
@media screen and (min-width: 900px) {
  .datatable-article {
    padding: 40px;
  }
}

.datatable-container {
  width: 100%;
}

h2 {
  margin-bottom: 20px;
}

/*

body {
  background-color: $rbd-lightgrey;
}

header {
  background-color: $rbd-lightgrey;
  width: 100%;
  height: 52px;
  border-bottom: solid 2px $rbd-grey;
  z-index: 11;
}

header .wrapper {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
}


.site-head__brand {
  position: relative;
  display: inline-flex;
}

.site-head__brand--img {
  height: 100%;
  width: auto;
  display: inline-block;
  position: relative;
}

.site-head__nav {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}

.nav__list {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
}

.nav__list li {
  height: 100%;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 0 40px;
}

.nav__list li:last-of-type {
  background-color: $rbd-red;
  color: $rbd-white;
  font-weight: bold;
  margin-left: 40px;
}

.nav__list li ul {
  display: none;
  position: absolute;
}

.nav__list li:hover ul {
  display: block;
  top: 70px;
}
*/
@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/*# sourceMappingURL=styles.css.map */
