/** Fonts **/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap");
/** Responsive breakpoints **/
/** Variables **/
:root {
  --mc-color-red: #C14645;
  --mc-color-bright-red: #E14642;
  --mc-color-dark-blue: #242240;
  --mc-color-dark-blue-RGB: 36, 34, 64;
  --mc-color-black: #010026;
  --mc-color-black-RGB: 1, 0, 38;
  --mc-color-grey: #D9DEE1;
  --mc-color-light-grey: #E4E9EB;
  --mc-color-placeholder: var(--mc-color-grey);
  --mc-color-text-main: var(--mc-color-black);
  --mc-color-text-error: var(--mc-color-bright-red);
  --mc-font-main: "Inter", sans-serif;
  --mc-font-featured: "Space Grotesk", sans-serif;
  --mc-font-size-main: 16px;
  --mc-font-size-highlighted: 22px;
  --mc-line-height-main: 1.4;
  --mc-container-width: 1820px;
  --mc-container-padding: calc((100cqw - var(--mc-container-width)) / 2);
  --mc-gutter-x: 25px;
  --mc-gutter-x-negative: calc(-1 * var(--mc-gutter-x));
}
@media (min-width: 768px) {
  :root {
    --mc-gutter-x: 40px;
  }
}

/** Mixins **/
/** Styles **/
/** typography **/
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-top: 0 !important; /* stop wpadminbar to push the layout */
}

body {
  margin: 0;
  color: var(--mc-color-text-main);
  font-family: var(--mc-font-main);
  font-size: var(--mc-font-size-main);
  font-weight: 300;
  line-height: var(--mc-line-height-main);
}

@media (min-width: 1440px) {
  body.home {
    font-size: 18px;
  }
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--mc-font-featured);
  font-weight: 400;
  line-height: 1.3;
}

h1:not(.h2, .h3, .h4), .h1 {
  font-size: 34px;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  h1:not(.h2, .h3, .h4), .h1 {
    font-size: 48px;
  }
}
@media (min-width: 1440px) {
  h1:not(.h2, .h3, .h4), .h1 {
    font-size: 58px;
  }
}

h2:not(.h1, .h3, .h4), .h2 {
  font-size: 26px;
  line-height: 1.15;
}
@media (min-width: 1024px) {
  h2:not(.h1, .h3, .h4), .h2 {
    font-size: 30px;
  }
}
@media (min-width: 1440px) {
  h2:not(.h1, .h3, .h4), .h2 {
    font-size: 36px;
  }
}

h3:not(.h1, .h2, .h4), .h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 8%;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  h3:not(.h1, .h2, .h4), .h3 {
    font-size: 19px;
  }
}
@media (min-width: 1440px) {
  h3:not(.h1, .h2, .h4), .h3 {
    font-size: 22px;
  }
}

h4:not(.h1, .h2, .h3), .h4 {
  font-family: var(--mc-font-main);
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  h4:not(.h1, .h2, .h3), .h4 {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  h4:not(.h1, .h2, .h3), .h4 {
    font-size: 22px;
  }
}

.subheading.with-line {
  margin-bottom: 40px;
  padding: 0 0 15px;
  border-bottom: solid 1px var(--mc-color-red);
  color: var(--mc-color-red);
}
@media (min-width: 1024px) {
  .subheading.with-line {
    margin-bottom: 80px;
    padding: 0 0 22px;
  }
}
.subheading.with-line.bright-red {
  border-bottom: solid 1px var(--mc-color-bright-red);
  color: var(--mc-color-bright-red);
}

p {
  margin: 0 0 0.6rem;
}

strong {
  font-weight: 600;
}

blockquote {
  margin: 2rem 0 1em;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 1440px) {
  blockquote {
    font-size: 22px;
  }
}
blockquote:before, blockquote:after {
  display: none;
}
blockquote a {
  font-weight: 500 !important;
}

a, a:hover, a:focus {
  color: var(--mc-color-text-main);
  text-decoration: none;
  outline: none;
}

a {
  transition: all 0.25s;
}

.more-link {
  display: inline-block;
  font-family: var(--mc-font-featured);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 10%;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.more-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.full-link {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  cursor: pointer;
}

hr {
  height: 1px;
  margin: 60px 0;
  background: var(--mc-color-grey);
  border: none;
  color: var(--mc-color-grey);
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

iframe {
  max-width: 100%;
}

ul.menu,
ul.menu ul,
ul.slick-dots,
.socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/** END typography **/
/** page-content **/
.entry-content h1, .entry-content .h1, .entry-content h2, .entry-content .h2, .entry-content h3, .entry-content .h3, .entry-content h4, .entry-content .h4 {
  margin-top: 2em;
  margin-bottom: 1em;
}
.entry-content h1, .entry-content .h1 {
  margin-bottom: 0.85em;
}
.entry-content h1:first-child, .entry-content .h1:first-child, .entry-content h2:first-child, .entry-content .h2:first-child, .entry-content h3:first-child, .entry-content .h3:first-child, .entry-content h4:first-child, .entry-content .h4:first-child, .entry-content blockquote:first-child, .entry-content p:first-child {
  margin-top: 0;
}
.entry-content h1:last-child, .entry-content .h1:last-child, .entry-content h2:last-child, .entry-content .h2:last-child, .entry-content h3:last-child, .entry-content .h3:last-child, .entry-content h4:last-child, .entry-content .h4:last-child, .entry-content blockquote:last-child, .entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content h2 + h3, .entry-content h2 + h4, .entry-content h3 + h4 {
  margin-top: 0;
}
.entry-content a:not(.button):not(.more-link):not(.page-numbers) {
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:not(.button):not(.more-link):not(.page-numbers):hover {
  text-underline-offset: 5px;
}
.entry-content .button {
  margin: 30px 0;
}
.entry-content ul:not([class]) {
  margin: 0 0 1.5rem 12px;
  padding: 0;
  list-style: none;
}
.entry-content ul:not([class]) li {
  position: relative;
  padding: 2px 0 2px 16px;
}
.entry-content ul:not([class]) li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--mc-color-text-main);
  border-radius: 50%;
}
.background-dark .entry-content ul:not([class]) li:before {
  background-color: #fff;
}
.entry-content table:not([class]) {
  width: 100%;
  margin: 2rem 0;
  border: none;
  border-collapse: collapse;
}
.entry-content table:not([class]) thead, .entry-content table:not([class]) tbody {
  border: none;
}
.entry-content table:not([class]) tr {
  border-bottom: 1px solid var(--mc-color-grey);
}
.entry-content table:not([class]) tr th, .entry-content table:not([class]) tr td {
  padding-left: 0;
  padding-right: 40px;
  border: none;
}
.entry-content table:not([class]) tr th {
  padding-top: 23px;
  padding-bottom: 22px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.entry-content table:not([class]) tr td {
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 1.4;
}
.entry-content div.table-responsive {
  margin-bottom: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/** END page-content **/
/** WP DEFAULT **/
.alignnone {
  margin: 30px 0;
}

.aligncenter {
  display: block;
  margin: 30px auto;
}

.alignright {
  float: right;
  margin: 5px 0 30px 40px !important;
}

.alignleft {
  float: left;
  margin: 5px 40px 30px 0 !important;
}

@media (max-width: 1023px) { /* mobile only */
  .aligncenter, .alignright, .alignleft, .alignnone {
    display: block;
    float: none;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.wp-caption {
  max-width: 100%;
  margin: 50px 0;
  padding: 0;
  border: 0;
  line-height: 0;
  text-align: left;
}
.wp-caption .wp-caption-text {
  margin: 0;
  padding-top: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.pagination {
  margin: 80px 0 0 -4px;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 18px;
  line-height: 1;
}
.pagination .nav-links .page-numbers {
  display: inline-block;
  margin-right: 12px;
  padding: 4px;
  font-weight: 600;
}
.pagination .nav-links .page-numbers:hover, .pagination .nav-links .page-numbers.current {
  color: var(--mc-color-red);
}
.pagination .nav-links .page-numbers.prev, .pagination .nav-links .page-numbers.next {
  font-size: 16px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  z-index: 100000;
  top: 5px;
  left: 5px;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  font-size: 1em;
  line-height: normal;
  text-decoration: none;
}

/** END WP DEFAULT **/
/** Gallery - WP build-in gallery **/
.gallery {
  margin: 80px -10px !important;
}
.gallery dl.gallery-item {
  width: 50% !important;
  margin: 0 !important;
  line-height: 0;
  text-align: left !important;
}
.gallery dl.gallery-item .gallery-icon {
  margin: 10px;
}
.gallery dl.gallery-item .gallery-icon a {
  display: block;
  width: 100%;
  padding-bottom: 70%;
  position: relative;
}
.gallery dl.gallery-item .gallery-icon a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery dl.gallery-item .gallery-icon a img {
  border: none !important;
}
.gallery dl.gallery-item .gallery-caption {
  display: none;
  padding: 18px;
  font-size: 14px;
  line-height: 1.4;
}
.gallery br:not(:last-child) {
  display: none;
}

@media (min-width: 1024px) {
  .gallery dl.gallery-item {
    width: 33.333% !important;
  }
}
/** END Gallery - WP build-in gallery **/
/** Magnific Popup **/
.mfp-container .mfp-title {
  color: #ccc;
  font-size: 14px;
}

/** END Magnific Popup **/
/** button **/
.button,
#searchsubmit {
  position: relative;
  display: inline-block;
  padding: 12px 20px 11px;
  background: var(--mc-color-dark-blue);
  border: solid 1px var(--mc-color-dark-blue);
  border-radius: 50px;
  color: #fff !important;
  font-family: var(--mc-font-featured);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 10%;
  line-height: 1 !important;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.5s;
  cursor: pointer;
}
.button:after,
#searchsubmit:after { /* arrow */
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 39px;
  height: 39px;
  background: var(--mc-color-dark-blue) url(../svg/arrow--white.svg) no-repeat center center;
  background-size: 13px auto;
  border: solid 1px var(--mc-color-dark-blue);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s;
}
.button:hover, .button:focus,
#searchsubmit:hover,
#searchsubmit:focus {
  margin-right: 46px;
}
.button:hover:after, .button:focus:after,
#searchsubmit:hover:after,
#searchsubmit:focus:after { /* arrow */
  right: -46px;
  opacity: 1;
}
.button.red,
#searchsubmit.red {
  background-color: var(--mc-color-red);
  border-color: var(--mc-color-dark-blue);
}
.button.red:after,
#searchsubmit.red:after { /* arrow */
  background-color: var(--mc-color-red);
  border-color: var(--mc-color-dark-blue);
}
.button.black,
#searchsubmit.black {
  background-color: var(--mc-color-black);
  border-color: var(--mc-color-bright-red);
}
.button.black:after,
#searchsubmit.black:after { /* arrow */
  background-color: var(--mc-color-black);
  border-color: var(--mc-color-bright-red);
}
.button.white,
#searchsubmit.white {
  background-color: #fff;
  border-color: #fff;
  color: var(--mc-color-black) !important;
}
.button.white:after,
#searchsubmit.white:after { /* arrow */
  background-color: #fff;
  background-image: url(../svg/arrow--black.svg);
  border-color: #fff;
}
.button.bright-red,
#searchsubmit.bright-red {
  background-color: var(--mc-color-bright-red);
  border-color: var(--mc-color-bright-red);
  color: var(--mc-color-black) !important;
}
.button.bright-red:after,
#searchsubmit.bright-red:after { /* arrow */
  background-color: var(--mc-color-bright-red);
  background-image: url(../svg/arrow--black.svg);
  border-color: var(--mc-color-bright-red);
}

input[type=button],
input[type=submit] { /* iOS fix */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/** END button **/
/** form **/
input, button, textarea {
  outline: none;
}

.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper textarea,
.gform_wrapper select,
.searchform input[type=text],
.searchform input[type=email],
.searchform textarea,
.searchform select {
  width: 100%;
  height: 42px;
  padding: 10px 15px !important;
  background: none;
  border: 1px solid var(--mc-color-grey);
  border-radius: 5px;
  color: var(--mc-color-text-main);
  font-family: var(--mc-font-main);
  font-size: 16px !important;
  /* to remove inner shadow on iOS */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gform_wrapper textarea,
.searchform textarea {
  height: 140px;
}
.gform_wrapper select,
.searchform select {
  color: #9F9F9F;
}
.gform_wrapper ::placeholder,
.searchform ::placeholder {
  color: #9F9F9F;
  opacity: 1;
}

.gform_wrapper {
  margin: 100px 0;
}
.gform_wrapper h2.gform_title {
  margin: 0 0 30px;
  font-family: var(--mc-font-main);
  font-size: 22px;
  font-weight: 500;
}
.gform_wrapper .gfield_label {
  color: var(--mc-color-text-main) !important;
  font-weight: 300 !important;
}
.gform_wrapper .gfield_description {
  font-size: 16px !important;
}
.gform_wrapper .ginput_container_select {
  position: relative;
}
.gform_wrapper .ginput_container_select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 19px;
  height: 19px;
  margin-top: -10px;
  background: url(../svg/dropdown-icon--white.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  pointer-events: none;
}
.gform_wrapper .ginput_container_select select {
  padding-right: 50px !important;
  appearance: none;
  outline: none;
}
.gform_wrapper .ginput_container_select select::-ms-expand {
  display: none;
}
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  font-size: 16px !important;
}
.gform_wrapper .gfield_checkbox .gchoice,
.gform_wrapper .gfield_radio .gchoice {
  padding: 7px 0;
}
.gform_wrapper input[type=checkbox] {
  top: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 12px 0 0;
  vertical-align: middle;
}
.gform_wrapper .gfield_consent_description {
  max-height: none !important;
  margin: 0 !important;
  padding: 0 0 16px 0 !important;
  overflow: auto !important;
  border: none !important;
}
.gform_wrapper .ginput_container_consent .gfield_required {
  padding-left: 5px !important;
  font-weight: 700;
}
.gform_wrapper .gform_validation_errors {
  margin: 0 0 40px 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.gform_wrapper .gform_validation_errors:focus, .gform_wrapper .gform_validation_errors:focus-visible {
  outline: none !important;
}
.gform_wrapper .gform_validation_errors > h2 {
  color: var(--mc-color-text-error) !important;
  font-size: 18px !important;
  font-weight: normal !important;
  line-height: 1.4 !important;
}
.gform_wrapper .gform_validation_errors > h2:focus, .gform_wrapper .gform_validation_errors > h2:focus-visible {
  outline: none !important;
}
.gform_wrapper .gform_validation_errors > h2 .gform-icon {
  display: none !important;
}
.gform_wrapper .gfield_error [aria-invalid=true] {
  border: solid 1px var(--mc-color-text-error) !important;
}
.gform_wrapper .validation_message {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  color: var(--mc-color-text-error) !important;
  font-size: 14px !important;
  line-height: 1 !important;
}
.gform_wrapper .gfield_required {
  color: var(--mc-color-text-main) !important;
}
.gform_wrapper .gform_required_legend {
  position: relative;
  display: none;
  font-size: 0;
  line-height: 0;
}
.gform_wrapper .gform_required_legend:after {
  content: "Required Fields";
  margin-left: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}
.gform_wrapper .gform-footer {
  margin: 20px 0 0 !important;
  padding: 0 !important;
}
.gform_wrapper .gform-footer .button {
  margin: 0 !important;
}

.gform_confirmation_message {
  margin: 80px 0;
  padding: 40px;
  background: var(--mc-color-red);
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
}
.gform_confirmation_message p:first-child {
  margin-top: 0;
}
.gform_confirmation_message p:last-child {
  margin-bottom: 0;
}

/** END form **/
/** HEADER **/
#header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 14px 0;
  background-color: var(--mc-color-dark-blue);
  border-bottom: solid 1px var(--mc-color-bright-red);
}
#header > .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}
#header .logo {
  line-height: 0;
}
#header .logo a {
  display: inline-block;
}
#header .logo img {
  max-width: 114px;
}
#header .logo__wrap {
  flex-grow: 1;
}
#header .toggle-menu {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: url(../svg/menu-icon--white.svg) no-repeat center center;
  background-size: 20px auto;
  border: solid 1px var(--mc-color-bright-red);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s;
}
#header .toggle-menu:hover {
  background-color: var(--mc-color-bright-red);
}

@media (min-width: 1280px) {
  #header {
    height: 100px;
    padding: 0;
  }
  #header .logo {
    margin: 18px 0;
  }
  #header .logo img {
    max-width: 172px;
  }
  #header .toggle-menu {
    display: none;
  }
}
/** END HEADER **/
/** Desktop Menu **/
#menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#menu > ul.menu {
  display: flex;
  align-items: stretch;
}
#menu > ul.menu > li:last-child > a {
  background-color: var(--mc-color-red);
  color: #fff;
}
#menu > ul.menu > li:hover > a {
  background-color: #fff;
  color: var(--mc-color-red);
}
#menu > ul.menu > li:hover > div.mega-menu {
  opacity: 1;
  visibility: visible;
}
#menu > ul.menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 10px;
  padding: 21px 20px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-family: var(--mc-font-featured);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 10%;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.35s;
}
#menu div.mega-menu {
  position: absolute;
  top: 99px;
  z-index: 10;
  left: var(--mc-gutter-x);
  right: var(--mc-gutter-x);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 18px 20px;
  background-color: #fff;
  border-top: solid 1px var(--mc-color-bright-red);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}
#menu div.mega-menu.has-mega-menu-footer {
  min-height: 365px;
}
#menu div.mega-menu .mega-menu__items {
  flex-grow: 1;
}
#menu div.mega-menu .mega-menu__items ul.menu-level-2 {
  display: flex;
  flex-wrap: nowrap;
}
#menu div.mega-menu .mega-menu__items ul.menu-level-2 > li {
  flex: 1; /* All items will take up equal width */
}
#menu div.mega-menu .mega-menu__items ul.menu-level-2 > li > a {
  display: inline-block;
  padding: 12px 5px;
  color: var(--mc-color-red);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
#menu div.mega-menu .mega-menu__items ul.menu-level-2 > li > a:hover {
  text-decoration: underline;
}
#menu div.mega-menu .mega-menu__items ul.menu-level-2 > li.no-link > a {
  cursor: default;
}
#menu div.mega-menu .mega-menu__items ul.menu-level-2 > li.no-link > a:hover {
  text-decoration: none;
}
#menu div.mega-menu .mega-menu__items ul.menu-level-3 li a {
  display: inline-block;
  padding: 11px 5px;
  color: var(--mc-color-black);
  font-size: 18px;
  line-height: 1.3;
}
#menu div.mega-menu .mega-menu__items ul.menu-level-3 li a:hover {
  text-decoration: underline;
}
#menu div.mega-menu .mega-menu__detailed {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 0;
}
#menu div.mega-menu .mega-menu__detailed .col-1 {
  width: 38%;
}
#menu div.mega-menu .mega-menu__detailed .col-2 {
  width: 38%;
}
#menu div.mega-menu .mega-menu__detailed .col-3 {
  width: 53%;
}
#menu div.mega-menu .mega-menu__detailed .col-3.full-width {
  width: 100%;
}
#menu div.mega-menu .mega-menu__detailed .col-3.full-width .level-2-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}
#menu div.mega-menu .mega-menu__detailed .col-3.full-width .level-2-items .item {
  display: block;
  width: calc(33.333% - 20px);
  margin: 0;
}
#menu div.mega-menu .mega-menu__detailed .col-3.full-width .level-2-items .item .level-2-image {
  width: 100%;
  height: 200px;
  border-radius: 20px;
}
#menu div.mega-menu .mega-menu__detailed .col-3.full-width .level-2-items .item .level-2-text {
  position: relative;
  width: 100%;
  padding-right: 40px;
}
#menu div.mega-menu .mega-menu__detailed .col-3.full-width .level-2-items .item .level-2-title {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 500;
}
#menu div.mega-menu .mega-menu__detailed .col-3.full-width .level-2-items .item .level-2-link {
  position: absolute;
  top: 6px;
  right: 0;
  margin: 0;
}
#menu div.mega-menu .mega-menu__detailed .level-1-image {
  position: relative;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
}
#menu div.mega-menu .mega-menu__detailed .level-1-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#menu div.mega-menu .mega-menu__detailed .level-1-title {
  font-family: var(--mc-font-featured);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}
#menu div.mega-menu .mega-menu__detailed .level-1-description {
  margin-top: 20px;
}
#menu div.mega-menu .mega-menu__detailed .level-1-link {
  margin-top: 30px;
}
#menu div.mega-menu .mega-menu__detailed .level-2-items {
  margin-top: 8px;
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item:hover .level-2-image {
  transform: scale(1.04);
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item:last-child {
  margin-bottom: 0;
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item .level-2-image {
  position: relative;
  flex-shrink: 0;
  width: 153px;
  height: 105px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s;
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item .level-2-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item .level-2-text {
  width: calc(100% - 170px);
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item .level-2-title {
  font-size: 18.5px;
  font-weight: 600;
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item .level-2-description {
  font-size: 18px;
}
#menu div.mega-menu .mega-menu__detailed .level-2-items .item .level-2-link {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 15px;
  background: var(--mc-color-bright-red) url(../svg/arrow--white.svg) no-repeat center center;
  background-size: 10px auto;
  border-radius: 50%;
}
#menu div.mega-menu .mega-menu__footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: solid 1px var(--mc-color-bright-red);
}
#menu div.mega-menu .mega-menu__footer ul {
  display: flex;
}
#menu div.mega-menu .mega-menu__footer ul li {
  margin-right: 25px;
}
#menu div.mega-menu .mega-menu__footer ul li a {
  position: relative;
  display: inline-block;
  padding: 5px 35px 5px 0;
  font-family: var(--mc-font-featured);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 10%;
  line-height: 1;
  text-transform: uppercase;
}
#menu div.mega-menu .mega-menu__footer ul li a:hover:after { /* icon */
  right: 0;
}
#menu div.mega-menu .mega-menu__footer ul li a:after { /* icon */
  content: "";
  position: absolute;
  top: 2px;
  right: 5px;
  display: block;
  width: 20px;
  height: 20px;
  background: var(--mc-color-black) url(../svg/arrow--white.svg) no-repeat center center;
  background-size: 10px auto;
  border-radius: 50%;
  transition: all 0.25s;
}

.menu-backdrop {
  position: fixed;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--mc-color-black-RGB), 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

body.show-menu-backdrop .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1440px) {
  #menu {
    position: relative;
  }
  #menu div.mega-menu {
    top: 60px;
    left: 10px;
    right: 0;
  }
}
@media (max-width: 1279px) { /* mobile only */
  #menu ul.menu {
    display: none;
  }
}
/** END Desktop Menu **/
/** Mobile Menu **/
#side-menu {
  position: fixed;
  z-index: 1050;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
  visibility: hidden;
  outline: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
#side-menu.show {
  transform: none;
}
#side-menu .side-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  height: 70px;
  padding: 0 var(--mc-gutter-x);
  background-color: var(--mc-color-dark-blue);
  border-bottom: solid 1px var(--mc-color-bright-red);
}
#side-menu .side-menu__header a.logo {
  display: inline-block;
}
#side-menu .side-menu__header a.logo img {
  max-width: 114px;
}
#side-menu .side-menu__header .logo__wrap {
  flex-grow: 1;
  line-height: 0;
}
#side-menu .side-menu__header .close-button {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: url(../svg/close-icon--white.svg) no-repeat center center;
  background-size: 20px auto;
  border: solid 1px var(--mc-color-bright-red);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s;
}
#side-menu .side-menu__header .close-button:hover {
  background-color: var(--mc-color-bright-red);
}
#side-menu .side-menu__main {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--mc-color-dark-blue);
}
#side-menu ul.menu-primary {
  flex-grow: 1;
  padding: 20px 0 40px;
}
#side-menu ul.menu-primary li {
  overflow: hidden;
}
#side-menu ul.menu-primary li.menu-item-has-children > a:after { /* arrow */
  content: "";
  position: absolute;
  top: 23px;
  right: var(--mc-gutter-x);
  width: 12px;
  height: 12px;
  background: url(../svg/arrow--white.svg) no-repeat center center;
  background-size: contain;
}
#side-menu ul.menu-primary li.menu-item-has-children.open > ul.sub-menu {
  transform: translateX(0);
}
#side-menu ul.menu-primary li a {
  position: relative;
  display: block;
  padding: 15px 70px 15px var(--mc-gutter-x);
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  #side-menu ul.menu-primary li a {
    padding-right: 100px;
  }
}
#side-menu ul.menu-primary li a:hover {
  color: var(--mc-color-bright-red);
}
#side-menu ul.menu-primary li ul.menu-level-2 {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px var(--mc-gutter-x) 35px;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.25s ease-in-out;
}
#side-menu ul.menu-primary li ul.menu-level-2 .back-button {
  position: relative;
  display: inline-block;
  margin: 0 0 15px;
  padding: 5px 5px 5px 28px;
  font-family: var(--mc-font-featured);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 10%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
#side-menu ul.menu-primary li ul.menu-level-2 .back-button:hover {
  color: var(--mc-color-bright-red);
}
#side-menu ul.menu-primary li ul.menu-level-2 .back-button:hover:before { /* arrow */
  background-color: var(--mc-color-bright-red);
}
#side-menu ul.menu-primary li ul.menu-level-2 .back-button:before { /* arrow */
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--mc-color-black) url(../svg/arrow--white.svg) no-repeat center center;
  background-size: 9px auto;
  border-radius: 50%;
  transform: rotate(180deg);
  transition: all 0.25s;
}
#side-menu ul.menu-primary li ul.menu-level-2 .menu-title {
  margin-bottom: 10px;
}
#side-menu ul.menu-primary li ul.menu-level-2 .menu-title a {
  color: var(--mc-color-black);
  font-size: 22px !important;
  font-weight: 500;
}
#side-menu ul.menu-primary li ul.menu-level-2 li.menu-item-has-children > a:after { /* arrow */
  display: none;
}
#side-menu ul.menu-primary li ul.menu-level-2 li.no-link > a {
  cursor: default;
}
#side-menu ul.menu-primary li ul.menu-level-2 li.no-link > a:hover {
  text-decoration: none;
}
#side-menu ul.menu-primary li ul.menu-level-2 li a {
  display: inline-block;
  padding: 10px 0;
  color: var(--mc-color-red);
  font-size: 19px;
}
#side-menu ul.menu-primary li ul.menu-level-2 li a:hover {
  text-decoration: underline;
}
#side-menu ul.menu-primary li ul.menu-level-3 {
  padding-bottom: 8px;
  padding-left: 25px;
}
#side-menu ul.menu-primary li ul.menu-level-3 li a {
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--mc-color-black);
  font-size: 16px;
  font-weight: 300;
}
#side-menu .side-menu__footer {
  padding: 22px 0 17px;
  background-color: #fff;
  border-top: solid 1px var(--mc-color-bright-red);
}
#side-menu .side-menu__footer ul.megamenu-footer-link {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
#side-menu .side-menu__footer ul.megamenu-footer-link > li {
  padding: 5px var(--mc-gutter-x);
}
#side-menu .side-menu__footer ul.megamenu-footer-link > li > a {
  position: relative;
  display: inline-block;
  padding: 5px 32px 5px 0;
  font-family: var(--mc-font-featured);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5%;
  line-height: 1;
  text-transform: uppercase;
}
#side-menu .side-menu__footer ul.megamenu-footer-link > li > a:hover:after { /* icon */
  right: 0;
}
#side-menu .side-menu__footer ul.megamenu-footer-link > li > a:after { /* icon */
  content: "";
  position: absolute;
  top: 2px;
  right: 5px;
  display: block;
  width: 16px;
  height: 16px;
  background: var(--mc-color-black) url(../svg/arrow--white.svg) no-repeat center center;
  background-size: 8px auto;
  border-radius: 50%;
  transition: all 0.25s;
}
#side-menu .side-menu__footer .megamenu-footer-button {
  display: inline-block;
  margin: 0 var(--mc-gutter-x) 18px;
  padding: 15px 15px 13px;
  background-color: var(--mc-color-red);
  border-radius: 8px;
  color: #fff;
  font-family: var(--mc-font-featured);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 10%;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.25s;
}
#side-menu .side-menu__footer .megamenu-footer-button:hover {
  background-color: var(--mc-color-dark-blue);
}

@media (min-width: 1280px) {
  #side-menu {
    display: none;
  }
}
/** END Mobile Menu **/
/** Modules **/
#modules {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

#modules .module {
  margin: 100px 0;
}
@media (min-width: 1024px) {
  #modules .module {
    margin: 150px 0;
  }
}
#modules .module.text-only.background-grey {
  margin: 0;
  padding: 100px 0;
  background-color: var(--mc-color-grey);
}
@media (min-width: 1024px) {
  #modules .module.text-only .content .container {
    display: flex;
    justify-content: space-between;
  }
  #modules .module.text-only .content .heading {
    width: 42%;
    margin: 0;
  }
  #modules .module.text-only .content .text {
    width: 48%;
  }
  #modules .module.text-only.background-grey {
    padding: 120px 0 160px;
  }
}
#modules .module.image-text .image {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 70%;
  background-color: var(--mc-color-placeholder);
  border-radius: 20px;
  overflow: hidden;
}
#modules .module.image-text .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  #modules .module.image-text .image {
    padding-bottom: 60%;
  }
}
@media (min-width: 768px) {
  #modules .module.image-text .image {
    padding-bottom: 50%;
  }
}
#modules .module.image-text .text .button {
  margin-bottom: 0;
}
#modules .module.image-text.background-grey {
  margin: 0;
  padding: 80px 0 100px;
  background-color: var(--mc-color-grey);
}
#modules .module.image-text.background-dark {
  margin: 0;
  padding: 80px 0 100px;
  background-color: var(--mc-color-dark-blue);
  color: #fff;
}
@media (min-width: 1024px) {
  #modules .module.image-text .content .container {
    display: flex;
    justify-content: space-between;
  }
  #modules .module.image-text .image {
    position: sticky;
    top: 150px;
    flex-shrink: 0;
    width: 42%;
    height: 360px;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  #modules .module.image-text .image {
    height: 450px;
  }
}
@media (min-width: 1024px) and (min-width: 1920px) {
  #modules .module.image-text .image {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  #modules .module.image-text .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    width: 48%;
    padding: 0 5% 0 0;
  }
  #modules .module.image-text.image-right .image {
    order: 2;
    margin-right: 6%;
  }
  #modules .module.image-text.image-right .text {
    order: 1;
  }
  #modules .module.image-text.background-grey, #modules .module.image-text.background-dark {
    padding: 120px 0 200px;
  }
}
#modules .module.diamond-image-text {
  position: relative;
}
#modules .module.diamond-image-text:after { /* shape */
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 39cqw;
  height: 39cqw;
  background: url(../svg/mask-1--grey.svg) no-repeat top right;
  background-size: 200% auto;
  opacity: 0.2;
}
#modules .module.diamond-image-text .content {
  position: relative;
  z-index: 2;
}
#modules .module.diamond-image-text .image-wrap .image {
  position: relative;
  width: 75cqw;
  height: 75cqw;
  max-width: 560px;
  max-height: 560px;
  margin: 40px auto 0;
  -webkit-mask-image: url(../svg/mask-1--white.svg);
  mask-image: url(../svg/mask-1--white.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
#modules .module.diamond-image-text .image-wrap .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modules .module.diamond-image-text.background-white:after { /* shape */
  bottom: -100px;
}
#modules .module.diamond-image-text.background-dark {
  margin: 0;
  padding: 80px 0 100px;
  background-color: var(--mc-color-dark-blue);
  color: #fff;
}
#modules .module.diamond-image-text.background-dark:after { /* shape */
  background-image: url(../svg/mask-1--black.svg);
  opacity: 0.3;
}
@media (min-width: 1024px) {
  #modules .module.diamond-image-text .content {
    padding: 30px 0;
  }
  #modules .module.diamond-image-text .content .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  #modules .module.diamond-image-text .image-wrap {
    position: sticky;
    top: 200px;
    order: 2;
    width: 45%;
  }
  #modules .module.diamond-image-text .image-wrap .image {
    width: 31cqw;
    height: 31cqw;
    margin-top: 0;
  }
  #modules .module.diamond-image-text .text {
    order: 3;
    width: 49%;
    padding-right: 5%;
  }
  #modules .module.diamond-image-text.background-white:after { /* shape */
    bottom: -150px;
  }
  #modules .module.diamond-image-text.background-dark {
    padding: 120px 0 200px;
  }
}
#modules .module.blocks {
  padding: 100px 0;
  background: var(--mc-color-grey) url(../svg/contours--white.svg) no-repeat top center;
  background-size: 300% auto;
}
@media (min-width: 768px) {
  #modules .module.blocks {
    background-size: 200% auto;
  }
}
@media (min-width: 1024px) {
  #modules .module.blocks {
    background-size: 150% auto;
  }
}
@media (min-width: 1440px) {
  #modules .module.blocks {
    background-size: 100% auto;
  }
}
#modules .module.blocks .content {
  margin: 0 0 60px;
}
#modules .module.blocks .content .image {
  position: relative;
  margin: 40px 0 -30px;
  padding-bottom: 80%;
  background-color: var(--mc-color-placeholder);
  border-radius: 20px;
  overflow: hidden;
}
#modules .module.blocks .content .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  #modules .module.blocks .content .image {
    padding-bottom: 70%;
  }
}
@media (min-width: 768px) {
  #modules .module.blocks .content .image {
    padding-bottom: 60%;
  }
}
#modules .module.blocks .items .items-inner {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
#modules .module.blocks .items .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 15px;
  padding: 40px 25px;
  background-color: #fff;
  border-radius: 20px;
}
#modules .module.blocks .items .item .title {
  flex-grow: 1;
  margin: 0 0 30px;
  line-height: 1;
}
#modules .module.blocks .items .item .button {
  margin-top: 30px;
}
#modules .module.blocks .items .button {
  margin-top: 30px;
}
#modules .module.blocks.background-dark {
  background: var(--mc-color-dark-blue) url(../svg/contours--grey.svg) no-repeat top center;
  color: #fff;
}
#modules .module.blocks.background-dark .items .item {
  background-color: var(--mc-color-black);
}
@media (min-width: 768px) {
  #modules .module.blocks .items .item {
    width: calc(50% - 30px);
  }
  #modules .module.blocks .items .button {
    margin-top: 70px;
  }
}
@media (min-width: 1024px) {
  #modules .module.blocks {
    padding: 140px 0 160px;
  }
  #modules .module.blocks .content {
    margin-bottom: 120px;
  }
  #modules .module.blocks .content > .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  #modules .module.blocks .content .image {
    flex-shrink: 0;
    width: 32%;
    min-height: 380px;
    margin: 0;
    padding: 0;
  }
  #modules .module.blocks .content .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    width: 48%;
    padding: 30px 0;
  }
  #modules .module.blocks .items .item {
    width: calc(33.333% - 30px);
  }
  #modules .module.blocks .items .item .title {
    margin-bottom: 50px;
  }
}
@media (min-width: 1440px) {
  #modules .module.blocks .items .item {
    width: calc(25% - 30px);
  }
}
#modules .module.steps .items .item {
  margin: 60px 0 0;
}
#modules .module.steps .items .item .step-number {
  display: inline-block;
  min-width: 70px;
  margin: 0 0 24px;
  padding: 11px 24px;
  border: solid 1px var(--mc-color-grey);
  border-radius: 10px;
}
#modules .module.steps .items .item .title {
  margin: 0 0 24px;
}
#modules .module.steps.background-grey {
  margin: 0;
  padding: 100px 0;
  background-color: var(--mc-color-grey);
}
#modules .module.steps.background-grey .items .item .step-number {
  border-color: #fff;
}
@media (min-width: 768px) {
  #modules .module.steps .items .items-inner {
    display: flex;
    flex-wrap: wrap;
    margin-right: -40px;
  }
  #modules .module.steps .items .item {
    width: calc(50% - 80px);
    margin: 80px 80px 0 0;
  }
}
@media (min-width: 1024px) {
  #modules .module.steps.background-grey {
    padding: 120px 0 160px;
  }
  #modules .module.steps .items .item {
    width: calc(33.333% - 80px);
  }
}
@media (min-width: 1280px) {
  #modules .module.steps .content .text {
    width: 48%;
  }
  #modules .module.steps .items .item {
    width: calc(33.333% - 100px);
    margin: 100px 100px 0 0;
  }
}
@media (min-width: 1440px) {
  #modules .module.steps.four-cols .items .item {
    width: calc(25% - 60px);
    margin-right: 60px;
  }
}
#modules .module.list .items {
  padding: 55px 0;
}
#modules .module.list .items .item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 60px;
}
#modules .module.list .items .item:before { /* tick icon */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: url(../svg/tick-icon--red.svg) no-repeat center center;
  background-size: 26px auto;
  border: solid 1px var(--mc-color-grey);
  border-radius: 10px;
}
#modules .module.list .items .item .title {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 10px 20px;
  border: solid 1px var(--mc-color-grey);
  border-radius: 10px;
}
@media (min-width: 1024px) {
  #modules .module.list {
    overflow: hidden;
  }
  #modules .module.list.two-cols .items {
    display: flex;
    justify-content: space-between;
  }
  #modules .module.list.two-cols .items .col {
    width: calc(50% - 15px);
  }
}
@media (min-width: 1440px) {
  #modules .module.list.one-col .items .item {
    margin-bottom: 15px;
    padding-left: 83px;
  }
  #modules .module.list.one-col .items .item:before { /* tick icon */
    width: 68px;
    border-radius: 20px;
    background-size: 30px auto;
  }
  #modules .module.list.one-col .items .item .title {
    min-height: 68px;
    padding: 20px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
  }
}
#modules .module.list-detailed .image {
  position: relative;
  margin: 40px 0 0;
  padding-bottom: 80%;
  background-color: var(--mc-color-placeholder);
  border-radius: 20px;
  overflow: hidden;
}
#modules .module.list-detailed .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  #modules .module.list-detailed .image {
    padding-bottom: 70%;
  }
}
@media (min-width: 768px) {
  #modules .module.list-detailed .image {
    padding-bottom: 60%;
  }
}
#modules .module.list-detailed .heading {
  margin: 26px 0 34px;
}
#modules .module.list-detailed .items .item {
  margin: 0 0 15px;
  padding: 20px;
  border: solid 1px var(--mc-color-grey);
  border-radius: 20px;
}
#modules .module.list-detailed .items .item .description {
  margin-top: 10px;
}
#modules .module.list-detailed .items .item .item-image {
  max-width: 380px;
  margin: 25px 0 0;
}
#modules .module.list-detailed.background-grey {
  margin: 0;
  padding: 100px 0;
  background-color: var(--mc-color-light-grey);
}
#modules .module.list-detailed.background-grey .items .item {
  border-color: #fff;
}
@media (min-width: 1024px) {
  #modules .module.list-detailed .container {
    display: flex;
    justify-content: space-between;
  }
  #modules .module.list-detailed .image {
    flex-shrink: 0;
    width: 42%;
    min-height: 420px;
    margin: 0;
    padding: 0;
  }
  #modules .module.list-detailed .text {
    width: 48%;
  }
  #modules .module.list-detailed .heading {
    margin: 26px 0 60px;
  }
  #modules .module.list-detailed.background-grey {
    padding: 120px 0 160px;
  }
}
#modules .module.accordion-with-background-image {
  position: relative;
  margin: 0;
  padding: 100px 0;
  background-color: var(--mc-color-dark-blue);
  color: #fff;
}
#modules .module.accordion-with-background-image .image-wrap {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#modules .module.accordion-with-background-image .image-wrap .image {
  position: relative;
  position: sticky;
  top: 70px;
  width: 100%;
  height: 100vh;
}
#modules .module.accordion-with-background-image .image-wrap .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1280px) {
  #modules .module.accordion-with-background-image .image-wrap .image {
    top: 100px;
  }
}
#modules .module.accordion-with-background-image .image-wrap .image:before { /* mask */
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--mc-color-dark-blue-RGB), 0.4);
}
#modules .module.accordion-with-background-image .image-wrap .image:after { /* gradient mask */
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--mc-color-dark-blue-RGB), 0.8);
  background: linear-gradient(90deg, rgba(var(--mc-color-black-RGB), 1) 27%, rgba(var(--mc-color-black-RGB), 0.2) 55%);
}
#modules .module.accordion-with-background-image .text {
  position: relative;
  z-index: 2;
}
#modules .module.accordion-with-background-image .text .subheading {
  margin-bottom: 26px;
}
#modules .module.accordion-with-background-image .text .heading {
  margin: 0;
}
#modules .module.accordion-with-background-image .text .description {
  margin-top: 34px;
}
#modules .module.accordion-with-background-image .text .description + .button {
  margin-top: 34px;
}
#modules .module.accordion-with-background-image .text .button {
  margin: 28px 0 0;
}
#modules .module.accordion-with-background-image .items {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
#modules .module.accordion-with-background-image .items .item {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 20px;
  color: var(--mc-color-text-main);
}
#modules .module.accordion-with-background-image .items .item .title {
  position: relative;
  display: block;
  padding: 30px 25px;
}
#modules .module.accordion-with-background-image .items .item .title:hover .arrow {
  background-color: var(--mc-color-bright-red);
}
#modules .module.accordion-with-background-image .items .item .title .title__main {
  display: block;
  padding-right: 50px;
  transition: padding 0.25s;
}
#modules .module.accordion-with-background-image .items .item .title .title__description {
  display: block;
  padding-top: 20px;
}
#modules .module.accordion-with-background-image .items .item .title .arrow {
  position: absolute;
  top: 30px;
  right: 20px;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--mc-color-dark-blue);
  border-radius: 50%;
  transition: all 0.25s;
}
#modules .module.accordion-with-background-image .items .item .title .arrow:before, #modules .module.accordion-with-background-image .items .item .title .arrow:after { /* plus icon */
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  display: block;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.25s;
}
#modules .module.accordion-with-background-image .items .item .title .arrow:after {
  transform: rotate(90deg);
}
#modules .module.accordion-with-background-image .items .item .title:not(.collapsed) .arrow {
  background-color: var(--mc-color-bright-red);
}
#modules .module.accordion-with-background-image .items .item .title:not(.collapsed) .arrow:after {
  transform: rotate(0deg);
}
#modules .module.accordion-with-background-image .items .item .content .content__inner {
  padding: 30px 25px;
  border-top: solid 1px var(--mc-color-black);
}
#modules .module.accordion-with-background-image.background-grey {
  background-color: var(--mc-color-grey);
  color: var(--mc-color-text-main);
}
#modules .module.accordion-with-background-image.background-grey .image:before { /* mask */
  background: var(--mc-color-grey);
  opacity: 0.85;
}
#modules .module.accordion-with-background-image.background-grey .image:after { /* gradient mask */
  display: none;
}
#modules .module.accordion-with-background-image.background-grey .image img {
  filter: grayscale(1);
}
@media (min-width: 1024px) {
  #modules .module.accordion-with-background-image {
    position: relative;
    display: block;
    padding: 160px 0;
  }
  #modules .module.accordion-with-background-image > .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  #modules .module.accordion-with-background-image .text {
    position: sticky;
    top: 200px;
    width: 40%;
  }
  #modules .module.accordion-with-background-image .text .description {
    margin-top: 60px;
  }
  #modules .module.accordion-with-background-image .text .description + .button {
    margin-top: 60px;
  }
  #modules .module.accordion-with-background-image .text .button {
    margin-top: 32px;
  }
  #modules .module.accordion-with-background-image .items {
    width: 50%;
    margin: 0;
  }
  #modules .module.accordion-with-background-image .items .item .title {
    padding: 30px;
  }
  #modules .module.accordion-with-background-image .items .item .content .content__inner {
    padding: 30px;
  }
}
@media (min-width: 1440px) {
  #modules .module.accordion-with-background-image {
    padding: 220px 0;
  }
  #modules .module.accordion-with-background-image .items .item:hover .title__main {
    padding-left: 6px;
    padding-right: 64px;
  }
  #modules .module.accordion-with-background-image .items .item .title {
    display: flex;
    justify-content: space-between;
  }
  #modules .module.accordion-with-background-image .items .item .title .title__main {
    padding-right: 70px;
  }
  #modules .module.accordion-with-background-image .items .item .title .title__description {
    flex-shrink: 0;
    width: 50%;
    padding-top: 0;
    padding-right: 70px;
  }
  #modules .module.accordion-with-background-image .items .item .title .arrow {
    right: 30px;
    width: 40px;
    height: 40px;
  }
  #modules .module.accordion-with-background-image .items .item .title .arrow:before, #modules .module.accordion-with-background-image .items .item .title .arrow:after { /* plus icon */
    left: 13px;
    width: 14px;
  }
}
#modules .module .collapse:not(.show) {
  display: none;
}
#modules .module .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s;
}

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

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--mc-gutter-x);
  padding-right: var(--mc-gutter-x);
}
@media (min-width: 1920px) {
  .container {
    max-width: var(--mc-container-width);
    padding-left: 0;
    padding-right: 0;
  }
}

#main, #header {
  container-type: inline-size;
}

body {
  padding-top: 70px;
}
@media (min-width: 1280px) {
  body {
    padding-top: 100px;
  }
}

/** page-title **/
#page-title {
  position: relative;
  z-index: 1; /* control style-3 postions fixed image */
  padding: 100px 0;
  background-color: var(--mc-color-dark-blue);
  color: #fff;
  overflow: hidden;
}
#page-title:before, #page-title:after { /* shape */
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 50cqw;
  height: 50cqw;
  background: url(../svg/mask-1--black.svg) no-repeat bottom left;
  background-size: contain;
}
#page-title:before { /* bigger shape */
  background-image: url(../svg/mask-2--black.svg);
  background-size: 146% auto;
  opacity: 0.3;
}
#page-title:after { /* smaller shape */
  top: 8cqw;
  right: 7cqw;
  width: 34cqw;
  height: 34cqw;
}
#page-title .page-title__text {
  position: relative;
  z-index: 3;
  padding: 0 var(--mc-gutter-x);
}
#page-title .page-title__text .subheading.categories > span:last-child .separator {
  display: none;
}
#page-title .page-title__text .subheading.categories > span .separator {
  position: relative;
  top: -4px;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 20px;
  background-color: #fff;
  border-radius: 50%;
}
#page-title .page-title__text .subheading.categories .post-date {
  white-space: nowrap;
}
#page-title .page-title__text .heading {
  margin-top: 24px;
  color: var(--mc-color-bright-red);
}
#page-title .page-title__text .content {
  margin-top: 60px;
}
#page-title .page-title__text .content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
#page-title .page-title__text .content a:hover {
  text-underline-offset: 5px;
}
#page-title .page-title__text .items {
  margin-top: 60px;
}
#page-title .page-title__text .items .item {
  margin: 0 0 15px;
  padding: 20px;
  background-color: rgba(var(--mc-color-dark-blue-RGB), 0.6);
  border: solid 1px var(--mc-color-black);
  border-radius: 20px;
}
#page-title .page-title__text .items .item .description {
  margin-top: 10px;
}
#page-title .page-title__image {
  position: relative;
  position: relative;
  z-index: 2;
  margin: 0 var(--mc-gutter-x) 50px;
}
#page-title .page-title__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-title.style-1 { /* Diamond image */ }
#page-title.style-1:after { /* smaller shape */
  display: none;
}
#page-title.style-1 .page-title__image {
  width: 66cqw;
  height: 66cqw;
  max-width: 450px;
  max-height: 450px;
  -webkit-mask-image: url(../svg/mask-1--black.svg);
  mask-image: url(../svg/mask-1--black.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
#page-title.style-2 { /* Diamond + PNG image */ }
#page-title.style-2:after { /* smaller shape */
  /* mobile only */
}
@media (max-width: 1023px) {
  #page-title.style-2:after {
    display: none;
  }
}
#page-title.style-2 .page-title__image {
  height: 350px;
}
@media (min-width: 768px) {
  #page-title.style-2 .page-title__image {
    height: 400px;
  }
}
#page-title.style-2 .page-title__image img {
  object-fit: contain;
}
#page-title.style-3 { /* Full width image */ }
#page-title.style-3:before, #page-title.style-3:after { /* shape */
  display: none;
}
#page-title.style-3 .page-title__image {
  margin: -100px var(--mc-gutter-x-negative) 50px;
  padding-bottom: 70%;
}
@media (min-width: 600px) {
  #page-title.style-3 .page-title__image {
    padding-bottom: 60%;
  }
}
@media (min-width: 768px) {
  #page-title.style-3 .page-title__image {
    padding-bottom: 50%;
  }
}
#page-title.style-3 .page-title__image:before { /* gradient mask - bottom - for mobile */
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--mc-color-dark-blue-RGB), 0.4);
  background: linear-gradient(rgba(var(--mc-color-dark-blue-RGB), 0) 50%, rgba(var(--mc-color-dark-blue-RGB), 1) 95%);
}
#page-title.background-grey:not(.style-3) {
  background-color: var(--mc-color-grey);
  color: var(--mc-color-text-main);
}
#page-title.background-grey:not(.style-3):before, #page-title.background-grey:not(.style-3):after { /* shape */
  background-image: url(../svg/mask-1--white.svg);
}
#page-title.background-grey:not(.style-3):before { /* bigger shape */
  background-image: url(../svg/mask-2--white.svg);
}
#page-title.background-grey:not(.style-3) .page-title__text .subheading.categories .separator {
  background-color: var(--mc-color-text-main);
}
#page-title.background-grey:not(.style-3) .page-title__text .items .item {
  background-color: var(--mc-color-grey);
  border-color: #fff;
}
#page-title.background-white:not(.style-3) {
  background-color: #fff;
  color: var(--mc-color-text-main);
}
#page-title.background-white:not(.style-3):before, #page-title.background-white:not(.style-3):after { /* shape */
  background-image: url(../svg/mask-1--grey.svg);
}
#page-title.background-white:not(.style-3):before { /* bigger shape */
  background-image: url(../svg/mask-2--grey.svg);
}
#page-title.background-white:not(.style-3) .page-title__text .subheading.categories .separator {
  background-color: var(--mc-color-text-main);
}
#page-title.background-white:not(.style-3) .page-title__text .items .item {
  background-color: #fff;
  border-color: var(--mc-color-grey);
}

@media (min-width: 1024px) {
  #page-title {
    display: flex;
    justify-content: space-between;
    padding: 80px 0 150px;
  }
  #page-title .page-title__text {
    order: 1;
    width: 40%;
    padding-right: 0;
  }
  #page-title .page-title__image {
    order: 2;
    width: 45%;
    margin: 0;
  }
  #page-title.style-1 { /* Diamond image */ }
  #page-title.style-1 .page-title__image {
    position: absolute;
    top: 6cqw;
    right: 3cqw;
    width: 38cqw;
    height: 38cqw;
    max-width: none;
    max-height: none;
  }
  #page-title.style-2 { /* Diamond + PNG image */ }
  #page-title.style-2 .page-title__image {
    width: 45%;
    height: 30cqw;
    max-height: 550px;
    margin-top: calc(10cqw - 80px);
    margin-right: 1cqw;
  }
  #page-title.style-3 { /* Full width image */ }
  #page-title.style-3:before { /* gradient mask - bottom instead of bigger shape - for desktop */
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(var(--mc-color-dark-blue-RGB), 0.4);
    background: linear-gradient(rgba(var(--mc-color-dark-blue-RGB), 0) 50%, rgba(var(--mc-color-dark-blue-RGB), 1) 95%);
    opacity: 1;
  }
  #page-title.style-3 .page-title__image {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  #page-title.style-3 .page-title__image:before { /* gradient mask - bottom - for mobile */
    display: none;
  }
  #page-title.style-3 .page-title__image.page-title-not-inview {
    position: absolute;
  }
  #page-title.style-3 .page-title__image:after { /* gradient mask - side */
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--mc-color-dark-blue-RGB), 0.8);
    background: linear-gradient(90deg, rgba(var(--mc-color-black-RGB), 1) 27%, rgba(var(--mc-color-black-RGB), 0.2) 55%);
  }
}
@media (min-width: 1440px) {
  #page-title {
    padding-bottom: 200px;
  }
  #page-title .page-title__text .heading {
    font-size: 76px;
  }
  #page-title.style-1 { /* Diamond image */
    min-height: 1000px;
  }
  #page-title.style-1 .page-title__image {
    top: 8cqw;
    right: 7cqw;
    width: 34cqw;
    height: 34cqw;
  }
  #page-title.style-2 { /* Diamond + PNG image */
    min-height: 1000px;
  }
  #page-title.style-3 { /* Full width image */
    min-height: 750px;
  }
  .post-page #page-title .page-title__text .heading {
    font-size: 65px;
  }
}
@media (min-width: 1920px) {
  #page-title .page-title__text {
    padding-left: var(--mc-container-padding);
  }
}
@media (min-width: 2100px) {
  #page-title:before { /* bigger shape */
    height: 39cqw;
  }
  #page-title:after { /* smaller shape */
    top: 5cqw;
    right: 10cqw;
    width: 27cqw;
    height: 27cqw;
  }
  #page-title.style-1 { /* Diamond image */ }
  #page-title.style-1 .page-title__image {
    top: 5cqw;
    right: 10cqw;
    width: 27cqw;
    height: 27cqw;
  }
  #page-title.style-2 { /* Diamond + PNG image */ }
  #page-title.style-2 .page-title__image {
    margin-top: calc(7cqw - 80px);
  }
}
.page-title-without-image {
  position: relative;
  padding: 60px 0;
  background-color: var(--mc-color-dark-blue);
  color: #fff;
  overflow: hidden;
}
.page-title-without-image:before { /* shape */
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 50cqw;
  height: 50cqw;
  background: url(../svg/mask-2--black.svg) no-repeat bottom left;
  background-size: 146% auto;
  opacity: 0.3;
}
.page-title-without-image .page-title__main {
  position: relative;
  z-index: 2;
}
.page-title-without-image .heading {
  color: var(--mc-color-bright-red);
}
.page-title-without-image .content {
  margin-top: 60px;
}
.page-title-without-image.background-grey {
  background-color: var(--mc-color-grey);
  color: var(--mc-color-text-main);
}
.page-title-without-image.background-grey:before { /* shape */
  background-image: url(../svg/mask-2--white.svg);
}
.page-title-without-image.background-white {
  background-color: #fff;
  color: var(--mc-color-text-main);
}
.page-title-without-image.background-white:before { /* shape */
  background-image: url(../svg/mask-2--grey.svg);
}

@media (min-width: 1024px) {
  .page-title-without-image {
    padding: 100px 0 120px;
  }
  .page-title-without-image .page-title__main {
    display: flex;
    justify-content: space-between;
  }
  .page-title-without-image .heading {
    width: 45%;
  }
  .page-title-without-image .content {
    width: 32%;
    margin: 0;
    padding-right: 2%;
  }
}
@media (min-width: 1440px) {
  .page-title-without-image {
    padding: 140px 0 170px;
  }
  .page-title-without-image .heading {
    font-size: 76px;
  }
}
/** END page-title **/
/** page-content **/
#page-content {
  position: relative;
  z-index: 5;
  margin: 100px 0;
  background-color: #fff;
}

@media (min-width: 1024px) {
  #page-content {
    margin: 140px 0 180px;
  }
  #page-content .page-content__content {
    max-width: 1200px;
  }
}
/** END page-content **/
/** Posts 
Affects Category page, Case Studies and Search results **/
.posts__list {
  display: flex;
  flex-wrap: wrap;
}
.posts__list .post__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 50px;
  background-color: var(--mc-color-grey);
  border-radius: 20px;
  overflow: hidden;
}
.posts__list .post__item:hover .post__image .post__image-inner {
  transform: scale(1.05);
}
.posts__list .post__item .post__inner {
  flex-grow: 1;
  width: 100%;
  padding: 35px 25px;
}
.posts__list .post__item .post__categories {
  margin-bottom: 26px;
  padding-bottom: 28px;
  border-bottom: solid 1px #fff;
  font-family: var(--mc-font-featured);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 10%;
  text-transform: uppercase;
  line-height: 1.3;
}
.posts__list .post__item .post__categories > span:last-child .separator {
  display: none;
}
.posts__list .post__item .post__categories > span .separator {
  position: relative;
  top: -4px;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 20px;
  background-color: var(--mc-color-text-main);
  border-radius: 50%;
}
.posts__list .post__item .post__title {
  margin: 0 0 30px;
}
.posts__list .post__item .post__image {
  width: 100%;
  background-color: var(--mc-color-light-grey);
  border-radius: 20px;
  overflow: hidden;
}
.posts__list .post__item .post__image .post__image-inner {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  transition: all 0.25s;
}
.posts__list .post__item .post__image .post__image-inner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 600px) {
  .posts__list {
    margin: -25px -15px 0;
  }
  .posts__list .post__item {
    width: calc(50% - 30px);
    margin: 25px 15px;
  }
}
@media (min-width: 1024px) {
  .posts__list .post__item {
    width: calc(33.333% - 30px);
  }
}
@media (min-width: 1280px) {
  .posts__list .post__item {
    width: calc(25% - 30px);
  }
}
@media (min-width: 1440px) {
  .posts__list .post__item .post__inner {
    padding: 30px;
  }
}
.filter-block {
  margin: 0 0 80px 0;
  padding-bottom: 30px;
  border-bottom: solid 1px var(--mc-color-red);
}
.filter-block .heading {
  margin: 0 0 20px;
  color: var(--mc-color-red);
}
.filter-block .post-filters {
  margin: -10px;
}
.filter-block .post-filters .filter-item {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px 11px;
  background: var(--mc-color-light-grey);
  border-radius: 50px;
  font-family: var(--mc-font-featured);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 10%;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
}
.filter-block .post-filters .filter-item[data-term=gis-insights] {
  display: none;
}
.filter-block .post-filters .filter-item:hover, .filter-block .post-filters .filter-item.active {
  background-color: var(--mc-color-red);
  color: #fff;
}

@media (min-width: 1024px) {
  .filter-block > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .filter-block .heading {
    margin: 0 50px 0 0;
  }
}
.load-more-wrap {
  text-align: center;
}
@media (min-width: 600px) {
  .load-more-wrap {
    margin-top: 50px;
  }
}
@media (min-width: 1024px) {
  .load-more-wrap {
    margin-top: 80px;
  }
}

#more-posts-module {
  margin: 100px 0;
}
@media (min-width: 1024px) {
  #more-posts-module {
    margin: 120px 0;
  }
}
@media (max-width: 1279px) {
  #more-posts-module > .container {
    padding-right: 0;
  }
  #more-posts-module .posts__list {
    margin: 0;
  }
  #more-posts-module .posts__list .post__item {
    width: 80cqw;
    margin: 0 25px 0 0;
  }
}
@media (max-width: 1279px) and (min-width: 480px) {
  #more-posts-module .posts__list .post__item {
    width: 400px;
  }
}
@media (max-width: 1279px) {
  #more-posts-module .posts__list .slick-list {
    border-radius: 20px 0 0 20px;
    overflow: hidden;
  }
}
#more-posts-module .button {
  margin-top: 25px;
}

.featured-post {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  background-color: var(--mc-color-dark-blue);
  border-radius: 20px;
  color: #fff;
}
.featured-post:hover .text .button {
  margin-right: 46px;
}
.featured-post:hover .text .button:after { /* arrow */
  right: -46px;
  opacity: 1;
}
.featured-post:hover .image .image-inner {
  transform: scale(1.05);
}
.featured-post .text {
  padding: 25px;
}
.featured-post .text .subheading {
  color: var(--mc-color-bright-red);
}
.featured-post .text .title {
  margin: 15px 0 25px;
}
.featured-post .text .description {
  margin-top: 10px;
}
.featured-post .text .details .detail {
  padding: 20px 0;
  border-top: solid 1px #fff;
}
.featured-post .text .details .detail .label {
  margin-bottom: 12px;
  font-family: var(--mc-font-featured);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 10%;
  text-transform: uppercase;
  line-height: 1.3;
}
.featured-post .text .details .detail.client {
  display: flex;
}
.featured-post .text .details .detail.client .label {
  margin: 2px 14px 0 0;
}
.featured-post .text .button {
  margin-top: 30px;
}
.featured-post .image {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}
.featured-post .image .image-inner {
  position: relative;
  height: 100%;
  padding-bottom: 60%;
  transition: all 0.25s;
}
.featured-post .image .image-inner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .featured-post {
    display: flex;
    justify-content: space-between;
    margin-top: 170px;
    padding: 40px;
  }
  .featured-post .text {
    width: 47%;
    padding: 0;
  }
  .featured-post .text .title {
    margin: 70px 0 60px;
  }
  .featured-post .text .details .detail {
    display: flex;
  }
  .featured-post .text .details .detail .label {
    flex-shrink: 0;
    width: 28%;
    margin-bottom: 0;
    margin-right: 40px !important;
  }
  .featured-post .text .details .detail.client .label {
    margin-top: 5px;
  }
  .featured-post .text .button {
    margin-top: 60px;
  }
  .featured-post .image {
    width: 47%;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .featured-post {
    padding: 60px;
  }
}
/** END Posts **/
/** Case Studies - Archive **/
.case-studies-page #page-content {
  margin: 0;
  padding: 60px 0 100px 0;
  background: var(--mc-color-grey) url(../svg/contours--white.svg) no-repeat top center;
  background-size: 300% auto;
}
@media (min-width: 768px) {
  .case-studies-page #page-content {
    background-size: 200% auto;
  }
}
@media (min-width: 1024px) {
  .case-studies-page #page-content {
    margin: 0;
    padding: 100px 0 180px;
    background-size: 150% auto;
  }
}
@media (min-width: 1440px) {
  .case-studies-page #page-content {
    background-size: 100% auto;
  }
}
.case-studies-page .posts__list .post__item {
  background-color: #fff;
}
.case-studies-page .posts__list .post__item .post__categories {
  border-color: var(--mc-color-grey);
}
.case-studies-page .filter-block {
  border-color: var(--mc-color-bright-red);
}
.case-studies-page .filter-block .heading {
  color: var(--mc-color-bright-red);
}
.case-studies-page .filter-block .post-filters .filter-item {
  background-color: #fff;
}
.case-studies-page .filter-block .post-filters .filter-item:hover, .case-studies-page .filter-block .post-filters .filter-item.active {
  background-color: var(--mc-color-bright-red);
}
.case-studies-page .featured-post {
  background-color: var(--mc-color-red);
}
.case-studies-page .featured-post .text .subheading {
  color: var(--mc-color-text-main);
}
.case-studies-page .featured-post .text .details .detail {
  border-color: var(--mc-color-black);
}
.case-studies-page .featured-post .text .button {
  margin-top: 10px;
}

/** END Case Studies - Archive **/
/** Case Studies - Single page **/
.single-case-study-page #page-title .case-study-details {
  margin-top: 70px;
  border-top: solid 1px var(--mc-color-grey);
}
.single-case-study-page #page-title .case-study-details .detail {
  display: flex;
  padding: 20px 0;
  border-bottom: solid 1px var(--mc-color-grey);
}
.single-case-study-page #page-title .case-study-details .detail .label {
  flex-shrink: 0;
  width: 100px;
  margin-right: 12px;
  font-family: var(--mc-font-featured);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 10%;
  text-transform: uppercase;
}
.single-case-study-page #page-title .case-study-details .detail .value {
  flex-grow: 1;
}
.single-case-study-page #page-title .case-study-details .detail.client .label {
  margin-top: 2px;
}
.single-case-study-page #page-title .case-study-details .detail.client .logo {
  display: none;
}
.single-case-study-page .case-study-challenge .content .heading {
  position: relative;
  padding-top: 60px;
}
.single-case-study-page .case-study-challenge .content .heading:before { /* icon */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: url(../svg/warning-icon.svg) no-repeat center center;
  background-size: contain;
}
.single-case-study-page .case-study-challenge .content .text ul {
  margin: 30px 0;
}
.single-case-study-page .case-study-challenge .content .text ul li {
  margin: 10px 0;
  padding: 10px 20px;
  border: solid 1px var(--mc-color-grey);
  border-radius: 10px;
}
.single-case-study-page .case-study-challenge .content .text ul li:before {
  display: none;
}
.single-case-study-page #how-it-works {
  background-image: none;
}
.single-case-study-page #how-it-works .subheading.with-line {
  border-color: var(--mc-color-text-main);
  color: var(--mc-color-text-main);
}
.single-case-study-page #how-it-works .content .heading {
  position: relative;
  padding-top: 65px;
}
.single-case-study-page #how-it-works .content .heading:before { /* icon */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 44px;
  height: 44px;
  background: url(../svg/setting-icon.svg) no-repeat center center;
  background-size: contain;
}

@media (min-width: 1024px) {
  .single-case-study-page #page-title .page-title__text {
    width: 45%;
  }
  .single-case-study-page #page-title .case-study-details .detail {
    align-items: center;
  }
  .single-case-study-page #page-title .case-study-details .detail .label {
    margin-right: 60px;
  }
  .single-case-study-page .case-study-challenge .content .heading {
    padding-top: 90px;
  }
  .single-case-study-page .case-study-challenge .content .heading:before { /* icon */
    width: 52px;
    height: 52px;
  }
  .single-case-study-page #how-it-works .content .image {
    width: 45%;
  }
  .single-case-study-page #how-it-works .content .text {
    width: 38%;
    padding: 0;
  }
  .single-case-study-page #how-it-works .content .heading {
    padding-top: 90px;
  }
  .single-case-study-page #how-it-works .content .heading:before { /* icon */
    width: 55px;
    height: 55px;
  }
}
@media (min-width: 1440px) {
  .single-case-study-page #page-title .case-study-details .detail.client {
    align-items: center;
  }
  .single-case-study-page #page-title .case-study-details .detail.client .logo {
    display: block;
    max-width: 160px;
    margin-left: 40px;
  }
}
@media (min-width: 1440px) and (min-width: 1920px) {
  .single-case-study-page #page-title .case-study-details .detail.client .logo {
    max-width: 190px;
  }
}
@media (min-width: 1440px) {
  .single-case-study-page .case-study-challenge .content .heading {
    padding-top: 110px;
  }
  .single-case-study-page .case-study-challenge .content .heading:before { /* icon */
    width: 65px;
    height: 65px;
  }
  .single-case-study-page #how-it-works .content .heading {
    padding-top: 115px;
  }
  .single-case-study-page #how-it-works .content .heading:before { /* icon */
    width: 72px;
    height: 72px;
  }
  .single-case-study-page .case-study-outcome .module.blocks .items .item {
    width: calc(20% - 30px) !important;
  }
}
/** END Case Studies - Single page **/
/** Search Results page **/
.search__params {
  margin: 0 0 40px 0;
  font-size: 20px;
  font-weight: 600;
}

.searchform {
  padding: 40px 0 0 0;
}
.searchform input[type=search],
.searchform input[type=text] {
  height: 50px;
}
.searchform #searchsubmit {
  width: 100%;
  height: 50px;
  min-width: 0;
  margin: 10px 0;
}

@media (min-width: 600px) {
  .searchform {
    display: flex;
  }
  .searchform input[type=search],
  .searchform input[type=text] {
    width: 67%;
  }
  .searchform #searchsubmit {
    width: calc(33% - 5px);
    margin: 0 0 0 5px;
  }
}
@media (min-width: 768px) {
  .searchform {
    max-width: 760px;
  }
  .searchform input[type=search],
  .searchform input[type=text] {
    width: 72%;
  }
  .searchform #searchsubmit {
    width: calc(28% - 5px);
  }
}
/** END Search Results page **/
/** Services page **/
.services-page .page-title-without-image:before { /* shape */
  display: none;
}

#services {
  padding-bottom: 50px;
  background-color: var(--mc-color-dark-blue);
  color: #fff;
}
#services .services-categories .category {
  position: sticky;
  top: 100px;
  padding: 15px 15px 0;
  background-color: var(--mc-color-black);
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 1280px) {
  #services .services-categories .category {
    top: 160px;
  }
}
@media (min-width: 768px) {
  #services .services-categories .category {
    padding: 25px 25px 10px;
  }
}
#services .services-categories .category .image {
  position: relative;
  margin: -25px -25px 30px;
  padding-bottom: 80%;
  opacity: 0.8;
}
#services .services-categories .category .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  #services .services-categories .category .image {
    padding-bottom: 70%;
  }
}
@media (min-width: 768px) {
  #services .services-categories .category .image {
    padding-bottom: 50%;
  }
}
#services .services-categories .category .image:after { /* gradient mask */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(rgba(var(--mc-color-black-RGB), 0), rgba(var(--mc-color-black-RGB), 1));
}
#services .services-categories .category > * {
  position: relative;
  z-index: 3;
}
#services .services-categories .category .text .category-description {
  margin-top: 20px;
}
#services .services-categories .category .text .button {
  margin-top: 40px;
}
#services .services-categories .category .items {
  margin-top: 25px;
}
#services .services-categories .category .items .item {
  position: relative;
  margin: 15px 0;
  padding: 15px;
  background-color: var(--mc-color-dark-blue);
  border-radius: 10px;
}
#services .services-categories .category .items .item:hover .title:after { /* icon */
  right: 0;
}
#services .services-categories .category .items .item .title {
  position: relative;
  padding-right: 50px;
}
#services .services-categories .category .items .item .title:after { /* icon */
  content: "";
  position: absolute;
  top: 2px;
  right: 5px;
  display: block;
  width: 20px;
  height: 20px;
  background: var(--mc-color-bright-red) url(../svg/arrow--white.svg) no-repeat center center;
  background-size: 10px auto;
  border-radius: 50%;
  transition: all 0.25s;
}
#services .services-categories .category .items .item .description {
  display: none;
}
#services .services-categories .category .items .item .button {
  display: none;
}
#services .services-categories .gap {
  height: 50px;
}

@media (min-width: 1024px) {
  #services {
    padding-bottom: 150px;
  }
  #services .services-categories .category {
    display: flex;
    justify-content: space-between;
    min-height: 500px;
    padding: 30px;
  }
  #services .services-categories .category .image {
    position: relative;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
  }
  #services .services-categories .category .image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #services .services-categories .category .image:after { /* gradient mask */
    width: 60%;
    height: 100%;
    background: rgba(var(--mc-color-dark-blue-RGB), 0.4);
    background: linear-gradient(90deg, rgba(var(--mc-color-dark-blue-RGB), 0.9), rgba(var(--mc-color-dark-blue-RGB), 0));
  }
  #services .services-categories .category .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 22%;
  }
  #services .services-categories .category .text .category-title {
    flex-grow: 1;
  }
  #services .services-categories .category .text .category-description {
    margin: 0;
  }
  #services .services-categories .category .items {
    display: flex;
    flex-wrap: wrap;
    align-self: flex-end;
    justify-content: flex-end;
    width: 75%;
    margin: -10px;
  }
  #services .services-categories .category .items .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(33.333% - 20px);
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
  }
  #services .services-categories .category .items .item .title {
    flex-grow: 1;
    padding: 0;
  }
  #services .services-categories .category .items .item .title:after { /* icon */
    display: none;
  }
  #services .services-categories .category .items .item .button {
    display: block;
    margin-top: 40px;
    background-color: var(--mc-color-dark-blue);
  }
  #services .services-categories .category .items .item .button:after { /* arrow */
    background-color: var(--mc-color-dark-blue);
  }
}
@media (min-width: 1440px) {
  #services {
    padding-bottom: 200px;
  }
  #services .services-categories .category {
    min-height: 550px;
  }
  #services .services-categories .category .items .item {
    min-height: 260px;
  }
  #services .services-categories .category .items .item:hover .button {
    margin-right: 46px;
  }
  #services .services-categories .category .items .item:hover .button:after { /* arrow */
    right: -46px;
    opacity: 1;
  }
  #services .services-categories .category .items .item .description {
    display: block;
    margin-top: 30px;
    font-size: 14px;
  }
}
@media (min-width: 1920px) {
  #services .services-categories .category {
    min-height: 700px;
  }
}
/** END Services page **/
/** Related Services **/
.related-services {
  margin: 0 !important;
  padding: 100px 0;
  background-color: var(--mc-color-black);
  color: #fff;
}
.related-services .content > .container {
  position: relative;
  padding-right: 0;
}
.related-services .items {
  padding-bottom: 70px;
}
.related-services .items .item {
  position: relative;
  width: 80cqw;
  min-height: 240px;
  margin-right: 25px;
  padding: 25px;
  border: solid 1px var(--mc-color-dark-blue);
  border-radius: 20px;
  transition: all 0.4s;
}
.related-services .items .item:hover .text .button {
  margin-right: 46px;
}
.related-services .items .item:hover .text .button:after { /* arrow */
  right: -46px;
  opacity: 1;
}
.related-services .items .item .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.related-services .items .item .text .title {
  flex-grow: 1;
  transition: all 0.4s;
}
.related-services .items .item .text .button {
  margin-top: 40px;
  white-space: nowrap;
}
.related-services .items .item .image {
  display: none;
}
.related-services .items .slick-list {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.related-services .items .slick-track {
  align-items: flex-start;
}
.related-services .items .slick-arrow {
  background-color: var(--mc-color-black);
  border-color: var(--mc-color-bright-red);
}
.related-services .view-all {
  margin-top: 30px;
}

@media (min-width: 480px) {
  .related-services .items {
    padding-bottom: 90px;
  }
  .related-services .items .item {
    width: 290px;
  }
  .related-services .view-all {
    position: absolute;
    bottom: 0;
    left: calc(130px + var(--mc-gutter-x));
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .related-services {
    padding: 120px 0;
  }
  .related-services .items {
    min-height: 470px;
    padding-bottom: 120px;
  }
  .related-services .items .item {
    padding: 20px;
  }
  .related-services .items .item.slick-active.size-increase {
    width: 540px;
    min-height: 350px;
    background-color: rgba(var(--mc-color-dark-blue-RGB), 0.5);
  }
  .related-services .items .item.slick-active.size-increase .text .title {
    font-size: 45px;
  }
  .related-services .items .item.slick-active.size-increase .image {
    opacity: 0.5;
  }
  .related-services .items .item .text {
    position: relative;
    z-index: 2;
    width: 70%;
  }
  .related-services .items .item .image {
    position: relative;
    position: absolute;
    z-index: 1;
    top: 80px;
    right: 15px;
    display: block;
    width: 55%;
    height: calc(100% - 110px);
    opacity: 0;
    transition: all 0.4s;
  }
  .related-services .items .item .image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .related-services .items .item .image img {
    object-fit: contain;
  }
}
@media (min-width: 1440px) {
  .related-services .items {
    min-height: 600px;
  }
  .related-services .items .item {
    width: 418px;
    min-height: 290px;
  }
  .related-services .items .item.slick-active.size-increase {
    width: 750px;
    min-height: 480px;
  }
  .related-services .items .item.slick-active.size-increase .text .title {
    font-size: 58px;
    line-height: 1.1;
  }
}
@media (min-width: 1920px) {
  .related-services .content > .container {
    max-width: none;
    padding-left: var(--mc-container-padding);
  }
  .related-services .view-all {
    left: calc(130px + var(--mc-container-padding));
  }
}
/** END Related Services **/
/** #how-it-works
Affects Why page and Case Study page **/
#how-it-works {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: var(--mc-color-light-grey) url(../svg/contours--white.svg) no-repeat top center;
  background-size: 300% auto;
}
@media (min-width: 768px) {
  #how-it-works {
    background-size: 200% auto;
  }
}
@media (min-width: 1024px) {
  #how-it-works {
    background-size: 150% auto;
  }
}
@media (min-width: 1440px) {
  #how-it-works {
    background-size: 100% auto;
  }
}
#how-it-works .content {
  margin: 0 0 60px;
}
#how-it-works .content .image {
  margin: 40px 0 0;
  border-radius: 20px;
  overflow: hidden;
}
#how-it-works .items .item {
  position: relative;
  margin-left: 35px;
  padding: 0 0 40px 60px;
  border-left: solid 1px #fff;
}
#how-it-works .items .item:last-child {
  border: none;
}
#how-it-works .items .item .step-number {
  position: absolute;
  top: 0;
  left: -35px;
  display: inline-block;
  min-width: 70px;
  padding: 11px 24px;
  background-color: var(--mc-color-light-grey);
  border: solid 1px #fff;
  border-radius: 10px;
}
#how-it-works .items .item .title {
  margin: 0 0 24px;
}
#how-it-works .items .item.items-title {
  margin: 0 0 40px;
  padding: 0;
  border: none;
  color: var(--mc-color-red);
}

@media (min-width: 1024px) {
  #how-it-works {
    padding: 140px 0 200px;
  }
  #how-it-works .content {
    margin-bottom: 160px;
  }
  #how-it-works .content > .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  #how-it-works .content .image {
    flex-shrink: 0;
    width: 40%;
    margin: 0;
  }
  #how-it-works .content .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    width: 48%;
    padding: 30px 0;
  }
  #how-it-works .items {
    border-top: solid 1px #fff;
  }
  #how-it-works .items .items-inner {
    display: flex;
    flex-wrap: nowrap;
    margin-right: -40px;
  }
  #how-it-works .items .item {
    flex: 1; /* All items will take up equal width */
    margin: 0 80px 0 0;
    padding: 80px 0 0;
    border: none;
  }
  #how-it-works .items .item .step-number {
    top: -30px;
    left: 0;
  }
  #how-it-works .items .item.items-title {
    margin: 78px 80px 0 0;
  }
}
/** END #how-it-works **/
/** Why page **/
.why-page #how-it-works {
  padding-top: 0;
  background-color: var(--mc-color-dark-blue);
  background-image: url(../svg/contours--grey.svg);
  color: #fff;
}
.why-page #how-it-works .subheading.with-line {
  background-color: var(--mc-color-dark-blue);
  border-color: var(--mc-color-bright-red);
  color: var(--mc-color-bright-red);
}
.why-page #how-it-works .heading {
  color: var(--mc-color-bright-red);
}
.why-page #how-it-works .items .item .step-number {
  background-color: var(--mc-color-dark-blue);
  color: var(--mc-color-bright-red);
}
.why-page #how-it-works .items .item.items-title {
  color: var(--mc-color-bright-red);
}
.why-page #why-page-features {
  margin-top: 100px;
}
@media (min-width: 1024px) {
  .why-page #why-page-features {
    margin-top: 120px;
  }
}

#explore-more-module {
  padding: 100px 0;
  background-color: var(--mc-color-black);
  color: #fff;
}
@media (min-width: 1024px) {
  #explore-more-module {
    padding: 120px 0;
  }
}
@media (max-width: 1279px) {
  #explore-more-module .content > .container {
    padding-right: 0;
  }
}
#explore-more-module .items .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 80cqw;
  min-height: 400px;
  margin-right: 25px;
  padding: 25px;
  background-color: var(--mc-color-dark-blue);
  border-radius: 20px;
  overflow: hidden;
}
#explore-more-module .items .item:hover .image {
  transform: scale(1.05);
}
#explore-more-module .items .item:hover .text .button {
  margin-right: 46px;
}
#explore-more-module .items .item:hover .text .button:after { /* arrow */
  right: -46px;
  opacity: 1;
}
#explore-more-module .items .item .image {
  position: relative;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.25s;
}
#explore-more-module .items .item .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#explore-more-module .items .item .image:after { /* gradient mask */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--mc-color-black-RGB), 0.4);
  background: linear-gradient(rgba(var(--mc-color-black-RGB), 0) 40%, rgba(var(--mc-color-black-RGB), 0.5) 60%, rgba(var(--mc-color-black-RGB), 0.85) 100%);
}
#explore-more-module .items .item .text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}
#explore-more-module .items .item .text .description {
  margin-top: 25px;
}
#explore-more-module .items .item .text .button {
  display: none;
  margin-top: 30px;
}
#explore-more-module .items .item.without-image {
  background-color: var(--mc-color-bright-red);
}
#explore-more-module .items .item.without-image .text .title {
  flex-grow: 1;
}
#explore-more-module .items .item.without-image .text .button {
  display: block;
}
#explore-more-module .items .slick-list {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

@media (min-width: 480px) {
  #explore-more-module .items .item {
    width: 400px;
  }
}
@media (min-width: 1280px) {
  #explore-more-module .items:not(.slick-initialized) {
    display: flex;
    justify-content: space-between;
  }
  #explore-more-module .items:not(.slick-initialized) .item {
    width: calc(25% - 20px);
    margin: 0;
  }
}
@media (min-width: 1440px) {
  #explore-more-module .items .item {
    min-height: 470px;
    padding: 30px;
  }
}
/** END Why page **/
/** Contact page **/
.contact-page #page-title:after { /* smaller shape */
  display: none;
}
.contact-page #page-title .page-title__text .heading {
  color: var(--mc-color-red);
}
.contact-page #page-title .page-title__text .contacts {
  margin-top: 30px;
}
.contact-page #page-title .page-title__text .contacts > div {
  padding: 2px 0;
}
.contact-page #page-title .page-title__text .contacts a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-page #contact-form {
  width: calc(100% - var(--mc-gutter-x) * 2);
  margin: 40px var(--mc-gutter-x) 0;
  padding: 25px;
  background-color: var(--mc-color-dark-blue);
  border-radius: 20px;
}
.contact-page #contact-form .gform_wrapper {
  margin: 0;
}
.contact-page #contact-form .gform_wrapper .gform_title {
  color: #fff;
}
.contact-page #contact-form .gform_wrapper input[type=text],
.contact-page #contact-form .gform_wrapper input[type=email],
.contact-page #contact-form .gform_wrapper textarea,
.contact-page #contact-form .gform_wrapper select {
  color: #fff;
}
.contact-page #contact-form .gform_wrapper select option {
  color: var(--mc-color-text-main);
}
.contact-page #contact-form .gform_wrapper ::placeholder {
  color: #fff;
}
.contact-page #contact-form .gform_wrapper .gfield_label {
  color: #fff !important;
}
.contact-page #contact-form .gform_wrapper .gfield_required {
  color: #fff !important;
}
.contact-page #modules .module:first-child {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .contact-page #page-title {
    align-items: flex-start;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .contact-page #page-title {
    min-height: 770px;
  }
}
@media (min-width: 1024px) {
  .contact-page #page-title .page-title__image {
    top: 0;
    right: 0;
    width: 50cqw;
    height: 50cqw;
    mask-image: url(../svg/mask-2--black.svg);
    mask-position: bottom left;
    mask-size: 146% auto;
  }
  .contact-page #contact-form {
    order: 2;
    position: relative;
    z-index: 2;
    width: 44%;
    max-width: 800px;
    margin: 30px var(--mc-gutter-x) 0 0;
  }
}
@media (min-width: 1440px) {
  .contact-page #contact-form {
    width: 40%;
    margin-top: 70px;
    padding: 30px;
  }
}
@media (min-width: 1920px) {
  .contact-page #contact-form {
    margin-right: var(--mc-container-padding);
  }
}
@media (min-width: 2100px) {
  .contact-page #page-title .page-title__image {
    height: 39cqw;
  }
}
/** END Contact page **/
/** animations **/
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes home-block-parallax-1 {
  to {
    transform: translateY(-150px);
  }
}
@keyframes home-block-parallax-2 {
  to {
    transform: translateY(-250px);
  }
}
@keyframes home-block-parallax-3 {
  to {
    transform: translateY(-350px);
  }
}
@keyframes home-block-parallax-4 {
  to {
    transform: translateY(-450px);
  }
}
@keyframes home-about-image-parallax {
  to {
    margin-top: 0;
  }
}
#home-hero .text {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 0.8s ease-in-out forwards;
  animation-delay: 0.5s;
}

#page-title .page-title__text,
#page-title #contact-form {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 0.8s ease-in-out forwards;
}

.page-title-without-image .page-title__main {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 0.8s ease-in-out forwards;
}

#modules .module.steps .items .item,
#modules .module.blocks .items .item,
#modules .module.list-detailed .items .item,
#how-it-works .items .item,
#home-about .items .item,
#industries .items .item {
  opacity: 0;
  transform: translateY(20px);
}
#modules .module.steps .items.inview .item,
#modules .module.blocks .items.inview .item,
#modules .module.list-detailed .items.inview .item,
#how-it-works .items.inview .item,
#home-about .items.inview .item,
#industries .items.inview .item {
  animation: fade-in 0.8s ease-in-out forwards;
}
#modules .module.steps .items.inview .item:nth-child(1),
#modules .module.blocks .items.inview .item:nth-child(1),
#modules .module.list-detailed .items.inview .item:nth-child(1),
#how-it-works .items.inview .item:nth-child(1),
#home-about .items.inview .item:nth-child(1),
#industries .items.inview .item:nth-child(1) {
  animation-delay: 0.2s;
}
#modules .module.steps .items.inview .item:nth-child(2),
#modules .module.blocks .items.inview .item:nth-child(2),
#modules .module.list-detailed .items.inview .item:nth-child(2),
#how-it-works .items.inview .item:nth-child(2),
#home-about .items.inview .item:nth-child(2),
#industries .items.inview .item:nth-child(2) {
  animation-delay: 0.4s;
}
#modules .module.steps .items.inview .item:nth-child(3),
#modules .module.blocks .items.inview .item:nth-child(3),
#modules .module.list-detailed .items.inview .item:nth-child(3),
#how-it-works .items.inview .item:nth-child(3),
#home-about .items.inview .item:nth-child(3),
#industries .items.inview .item:nth-child(3) {
  animation-delay: 0.6s;
}
#modules .module.steps .items.inview .item:nth-child(4),
#modules .module.blocks .items.inview .item:nth-child(4),
#modules .module.list-detailed .items.inview .item:nth-child(4),
#how-it-works .items.inview .item:nth-child(4),
#home-about .items.inview .item:nth-child(4),
#industries .items.inview .item:nth-child(4) {
  animation-delay: 0.8s;
}
#modules .module.steps .items.inview .item:nth-child(5),
#modules .module.blocks .items.inview .item:nth-child(5),
#modules .module.list-detailed .items.inview .item:nth-child(5),
#how-it-works .items.inview .item:nth-child(5),
#home-about .items.inview .item:nth-child(5),
#industries .items.inview .item:nth-child(5) {
  animation-delay: 1s;
}
#modules .module.steps .items.inview .item:nth-child(6),
#modules .module.blocks .items.inview .item:nth-child(6),
#modules .module.list-detailed .items.inview .item:nth-child(6),
#how-it-works .items.inview .item:nth-child(6),
#home-about .items.inview .item:nth-child(6),
#industries .items.inview .item:nth-child(6) {
  animation-delay: 1.2s;
}
#modules .module.steps .items.inview .item:nth-child(7),
#modules .module.blocks .items.inview .item:nth-child(7),
#modules .module.list-detailed .items.inview .item:nth-child(7),
#how-it-works .items.inview .item:nth-child(7),
#home-about .items.inview .item:nth-child(7),
#industries .items.inview .item:nth-child(7) {
  animation-delay: 1.4s;
}
#modules .module.steps .items.inview .item:nth-child(8),
#modules .module.blocks .items.inview .item:nth-child(8),
#modules .module.list-detailed .items.inview .item:nth-child(8),
#how-it-works .items.inview .item:nth-child(8),
#home-about .items.inview .item:nth-child(8),
#industries .items.inview .item:nth-child(8) {
  animation-delay: 1.6s;
}
#modules .module.steps .items.inview .item:nth-child(9),
#modules .module.blocks .items.inview .item:nth-child(9),
#modules .module.list-detailed .items.inview .item:nth-child(9),
#how-it-works .items.inview .item:nth-child(9),
#home-about .items.inview .item:nth-child(9),
#industries .items.inview .item:nth-child(9) {
  animation-delay: 1.8s;
}
#modules .module.steps .items.inview .item:nth-child(10),
#modules .module.blocks .items.inview .item:nth-child(10),
#modules .module.list-detailed .items.inview .item:nth-child(10),
#how-it-works .items.inview .item:nth-child(10),
#home-about .items.inview .item:nth-child(10),
#industries .items.inview .item:nth-child(10) {
  animation-delay: 2s;
}

@media (min-width: 1440px) {
  #home-what-we-do .items .item {
    position: relative;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 0% cover 10%; /* when it starts/finishes relative to entering the viewport */
  }
}
@media (min-width: 1440px) and (min-width: 1920px) {
  #home-what-we-do .items .item {
    animation-range: entry 0% cover 15%;
  }
}
@media (min-width: 1440px) {
  #home-what-we-do .items .item:nth-child(1) {
    top: 150px;
    animation-name: home-block-parallax-1;
  }
  #home-what-we-do .items .item:nth-child(2) {
    top: 250px;
    animation-name: home-block-parallax-2;
  }
  #home-what-we-do .items .item:nth-child(3) {
    top: 350px;
    animation-name: home-block-parallax-3;
  }
  #home-what-we-do .items .item:nth-child(4) {
    top: 450px;
    animation-name: home-block-parallax-4;
  }
  #home-about .image-2 {
    margin-top: 300px;
    animation-name: home-about-image-parallax;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%; /* when it starts/finishes relative to entering the viewport */
  }
}
/** END animations **/
/** Customization **/
.page-id-504 { /* Cybersecurity & Resilience */ }
.page-id-504 #modules .module.list + .module.text-only {
  margin-top: -100px;
}
@media (min-width: 1024px) {
  .page-id-504 #modules .module.list + .module.text-only {
    margin-top: -150px;
  }
}
.page-id-504 #modules .module.list + .module.text-only .content .text {
  width: 100%;
}

.page-id-3,
.page-id-907 { /* Privacy Policy */ }
.page-id-3 #page-title,
.page-id-907 #page-title {
  min-height: 0;
}

/** END Customization **/
/** #home-hero **/
#home-hero {
  position: relative;
  z-index: 1;
  background-color: var(--mc-color-dark-blue);
}
#home-hero .video {
  position: relative;
  z-index: 1;
  height: calc(100vh - 230px);
  max-height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  opacity: 0.8;
}
#home-hero .video:after { /* gradient mask - for mobile */
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--mc-color-dark-blue-RGB), 0.4);
  background: linear-gradient(rgba(var(--mc-color-dark-blue-RGB), 0) 60%, rgba(var(--mc-color-dark-blue-RGB), 1) 100%);
}
#home-hero .video video {
  position: absolute;
  z-index: 1;
}
#home-hero .text {
  position: relative;
  z-index: 3;
  margin-top: -100px;
  color: #fff;
}
#home-hero .text .description {
  margin-top: 50px;
}
#home-hero .text .button {
  margin-top: 24px;
}

@media (min-width: 1024px) {
  #home-hero {
    display: flex;
    align-items: flex-end;
    height: calc(100vh - 65px);
  }
  #home-hero:after { /* gradient mask - for desktop */
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--mc-color-dark-blue-RGB), 0.4);
    background: linear-gradient(rgba(var(--mc-color-dark-blue-RGB), 0) 60%, rgba(var(--mc-color-dark-blue-RGB), 1) 100%);
  }
  #home-hero .video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: none;
  }
  #home-hero .video.video-not-inview {
    position: absolute;
  }
  #home-hero .video:after { /* gradient mask - for desktop */
    display: none;
  }
  #home-hero .text {
    width: 100%;
    margin: 0 0 100px;
  }
  #home-hero .text > .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  #home-hero .text .heading {
    width: 45%;
  }
  #home-hero .text .description {
    width: 30%;
    margin: 15px 0 0;
    font-size: 19px;
    font-weight: 400;
  }
}
@media (min-width: 1440px) {
  #home-hero .description {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  #home-hero {
    height: calc(100vh - 100px);
  }
  #home-hero .text .description {
    width: 23%;
  }
}
/** END #home-hero **/
/** #home-what-we-do **/
#home-what-we-do {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  background: var(--mc-color-dark-blue) url(../svg/contours--bright-red.svg) no-repeat left 157px;
  background-size: cover;
  color: #fff;
}
#home-what-we-do .subheading {
  position: relative;
  height: 37px;
  margin-bottom: 0;
}
#home-what-we-do .content {
  padding: 80px 0 160px;
}
@media (max-width: 1023px) {
  #home-what-we-do .content > .container {
    padding-right: 0;
  }
}
#home-what-we-do .items .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 80cqw;
  min-height: 400px;
  margin-right: 25px;
  padding: 25px;
  background-color: var(--mc-color-black);
  border-radius: 20px;
  overflow: hidden;
}
#home-what-we-do .items .item:hover .button {
  margin-right: 46px;
}
#home-what-we-do .items .item:hover .button:after { /* arrow */
  right: -46px;
  opacity: 1;
}
#home-what-we-do .items .item.image {
  position: relative;
  display: none;
}
#home-what-we-do .items .item.image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home-what-we-do .items .item .title {
  flex-grow: 1;
  margin: 0 0 40px;
}
#home-what-we-do .items .item .button {
  margin-top: 35px;
}
#home-what-we-do .items .slick-list {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

@media (min-width: 480px) {
  #home-what-we-do .items .item {
    width: 400px;
  }
}
@media (min-width: 1024px) {
  #home-what-we-do {
    padding-top: 160px;
    background-position: left 208px;
  }
  #home-what-we-do .subheading {
    height: 48px;
  }
  #home-what-we-do .content {
    padding: 120px 0 300px;
  }
  #home-what-we-do .items:not(.slick-initialized) {
    display: flex;
    justify-content: space-between;
  }
  #home-what-we-do .items:not(.slick-initialized) .item {
    width: calc(33.333% - 20px);
    margin: 0;
    padding: 30px;
  }
}
@media (min-width: 1440px) {
  #home-what-we-do {
    padding-top: 250px;
    background-position: left 298px;
  }
  #home-what-we-do .content {
    padding: 150px 0 440px;
  }
  #home-what-we-do .items:not(.slick-initialized) .item {
    width: calc(25% - 23px);
    min-height: 520px;
  }
  #home-what-we-do .items:not(.slick-initialized) .item.image {
    display: block;
  }
}
@media (min-width: 1920px) {
  #home-what-we-do .items:not(.slick-initialized) .item {
    min-height: 580px;
  }
}
/** END #home-what-we-do **/
/** #home-experience + #why-page-features **/
#home-experience .subheading,
#why-page-features .subheading {
  position: relative;
  margin-bottom: 0;
}
#home-experience .content,
#why-page-features .content {
  padding: 45px 0;
}
#home-experience .items,
#why-page-features .items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}
#home-experience .items .item,
#why-page-features .items .item {
  width: 50%;
  padding: 0 25px 45px;
}
#home-experience .items .item .title,
#why-page-features .items .item .title {
  padding: 0 0 20px;
  color: var(--mc-color-red);
  font-size: 32px;
  font-family: var(--mc-font-featured);
  font-weight: 400;
  line-height: 1.1;
}
#home-experience .items .item .description,
#why-page-features .items .item .description {
  font-weight: 500;
}
@media (min-width: 600px) {
  #home-experience .items .item .description,
  #why-page-features .items .item .description {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  #home-experience .items,
  #why-page-features .items {
    margin: 0 -40px;
  }
  #home-experience .items .item,
  #why-page-features .items .item {
    padding: 0 40px 60px;
  }
}
@media (min-width: 1024px) {
  #home-experience .content,
  #why-page-features .content {
    padding: 140px 0;
  }
  #home-experience .items .item,
  #why-page-features .items .item {
    width: 33.333%;
  }
  #home-experience .items .item .title,
  #why-page-features .items .item .title {
    padding: 0 0 35px 0;
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  #home-experience .items .item,
  #why-page-features .items .item {
    width: 20%;
  }
}
@media (min-width: 1920px) {
  #home-experience .items .item,
  #why-page-features .items .item {
    padding-right: 130px;
  }
  #home-experience .items .item .title,
  #why-page-features .items .item .title {
    font-size: 46px;
  }
}
#home-experience {
  position: relative;
  z-index: 3;
  color: #fff;
}
#home-experience .subheading {
  height: 37px;
  margin-top: -37px;
}
#home-experience .content {
  background-color: var(--mc-color-dark-blue);
}
#home-experience .items .item .title {
  color: var(--mc-color-bright-red);
}

@media (min-width: 1024px) {
  #home-experience .subheading {
    height: 48px;
    margin-top: -48px;
  }
  #home-experience .items .item {
    width: 25%;
  }
}
@media (min-width: 1440px) {
  #home-experience .content {
    padding-bottom: 220px;
  }
  #home-experience .items .item .title {
    font-size: 52px;
  }
  #home-experience .items .item .description {
    font-size: 20px;
  }
}
/** END #home-experience + #why-page-features **/
/** #industries **/
#industries {
  position: relative;
  padding: 60px 0 34cqw;
  background-color: var(--mc-color-grey);
}
#industries:before { /* shape */
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 95cqw;
  height: 95cqw;
  background: url(../svg/mask-1--white.svg) no-repeat bottom right;
  background-size: 145% auto;
  opacity: 0.2;
}
#industries > .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  #industries > .container {
    padding-right: 0;
  }
}
#industries .text {
  padding-right: var(--mc-gutter-x);
}
#industries .text .heading {
  margin: 26px 0 34px;
}
#industries .items {
  position: relative;
  margin-top: 60px;
  padding: 40px 0;
  border-top: solid 1px #fff;
}
#industries .items .item {
  display: flex;
  flex-flow: column;
  width: 80cqw;
  margin-right: 25px;
}
#industries .items .item:hover .item-text .more-link {
  text-decoration: underline;
  text-underline-offset: 5px;
}
#industries .items .item:hover .image .image-inner {
  transform: scale(1.05);
}
#industries .items .item .item-text .title {
  margin: 0 0 18px;
}
#industries .items .item .item-text .more-link {
  margin-top: 20px;
}
#industries .items .item .image {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}
#industries .items .item .image .image-inner {
  position: relative;
  padding-bottom: 65%;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s;
}
#industries .items .item .image .image-inner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 480px) {
  #industries .items .item .image .image-inner {
    padding-bottom: 55%;
  }
}
@media (min-width: 1024px) {
  #industries .items .item .image .image-inner {
    padding-bottom: 100%;
  }
}
@media (min-width: 1440px) {
  #industries .items .item .image .image-inner {
    padding-bottom: 70%;
  }
}
#industries .items .slick-list {
  border-radius: 20px 0 0 0;
  overflow: hidden;
}
#industries .items ul.slick-dots {
  margin-top: 40px;
  padding-top: 30px;
  border-top: solid 1px #fff;
}
#industries .items ul.slick-dots li:hover button, #industries .items ul.slick-dots li.slick-active button {
  background-color: var(--mc-color-black);
}
#industries .items ul.slick-dots li button {
  background-color: #fff;
  border-color: var(--mc-color-black);
}

@media (min-width: 480px) {
  #industries .items .item {
    width: 400px;
  }
}
@media (min-width: 600px) {
  #industries:before { /* shape */
    width: 46cqw;
    height: 56cqw;
    background-size: 175% auto;
  }
}
@media (min-width: 1024px) {
  #industries {
    padding: 140px 0 20cqw;
  }
  #industries > .container {
    display: flex;
    justify-content: space-between;
  }
  #industries .text {
    width: 30%;
    padding: 0;
  }
  #industries .text .heading {
    margin: 30px 0 50px;
  }
  #industries .items {
    width: 50%;
    margin: 0;
    padding: 0;
  }
  #industries .items .item {
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    margin: 0;
    padding: 20px 0;
    border-bottom: solid 1px #fff;
  }
  #industries .items .item .item-text {
    order: 1;
    width: 57%;
    padding: 8px 0 10px 0;
  }
  #industries .items .item .image {
    order: 2;
    width: 30%;
    margin: 0;
    overflow: visible;
  }
}
@media (min-width: 1440px) {
  #industries {
    padding-bottom: 320px;
  }
  #industries:before { /* shape */
    width: 43cqw;
    height: 43cqw;
  }
}
/** END #industries **/
/** home-about **/
#home-about {
  position: relative;
}
#home-about .text {
  padding: 0 var(--mc-gutter-x);
}
#home-about .text .heading {
  max-width: 95%;
  margin: 26px 0 34px;
}
#home-about .text .button {
  margin-top: 20px;
}
#home-about .items .item {
  margin: 0 0 15px;
  padding: 20px;
  border: solid 1px var(--mc-color-grey);
  border-radius: 20px;
}
#home-about .items .item .description {
  margin-top: 10px;
}
#home-about .items .item .item-image {
  max-width: 380px;
  margin: 25px 0 0;
}
#home-about .image-1-wrap {
  padding: 80cqw 0 120px;
}
#home-about .image-1 {
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  width: 55cqw;
  height: 100cqw;
  -webkit-mask-image: url(../svg/mask-3--white.svg);
  mask-image: url(../svg/mask-3--white.svg);
  mask-position: bottom left;
  mask-repeat: no-repeat;
  mask-size: auto 130%;
}
#home-about .image-1 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home-about .image-2 {
  position: relative;
  position: absolute;
  top: 0;
  transform: translateY(-60%);
  right: 55cqw;
  width: 50cqw;
  height: 50cqw;
  -webkit-mask-image: url(../svg/mask-1--white.svg);
  mask-image: url(../svg/mask-1--white.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
#home-about .image-2 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 600px) {
  #home-about .image-1-wrap {
    padding: 60cqw 0 120px;
  }
  #home-about .image-1 {
    width: 48cqw;
    height: 70cqw;
  }
  #home-about .image-2 {
    right: 45cqw;
    width: 45cqw;
    height: 45cqw;
  }
}
@media (min-width: 1024px) {
  #home-about .text {
    max-width: 50%;
    padding-right: 0;
  }
  #home-about .text .heading {
    margin: 26px 0 60px;
  }
  #home-about .image-1-wrap {
    padding: 350px 0 180px;
    overflow: hidden;
  }
  #home-about .image-2 {
    transform: translateY(-40%);
    width: 30cqw;
    height: 30cqw;
    max-width: 560px;
    max-height: 560px;
  }
}
@media (min-width: 1440px) {
  #home-about .text {
    max-width: 40%;
  }
  #home-about .text .heading {
    max-width: none;
  }
  #home-about .image-1-wrap {
    padding: 380px 0 200px;
  }
}
@media (min-width: 1920px) {
  #home-about .text {
    padding-left: var(--mc-container-padding);
  }
  #home-about .image-1-wrap {
    padding: 410px 0 300px;
  }
  #home-about .image-1 {
    height: 100%;
  }
}
/** END home-about **/
#testimonials {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
  overflow: hidden;
}
#testimonials .subheading {
  margin: 0 0 1.5em;
}
#testimonials .items {
  padding: 0 0 70px;
}
#testimonials .items .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100cqw - var(--mc-gutter-x) * 2);
  margin-right: 25px;
  padding: 25px;
  background-color: var(--mc-color-dark-blue);
  border-radius: 20px;
  color: #fff;
}
#testimonials .items .item .text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
#testimonials .items .item .text .content {
  flex-grow: 1;
  margin: 0 0 60px;
  color: #fff;
}
#testimonials .items .item .text .position {
  margin: 8px 0 0;
}
#testimonials .items .item .image {
  display: inline-block;
  margin-top: 30px;
  padding: 15px;
  background-color: var(--mc-color-grey);
  border-radius: 15px;
}
#testimonials .items .item .image .image-inner {
  position: relative;
  width: 105px;
  height: 43px;
}
#testimonials .items .item .image .image-inner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#testimonials .items .item .image .image-inner img {
  object-fit: contain;
}
#testimonials .items .slick-list {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

@media (min-width: 480px) {
  #testimonials > .container {
    padding-right: 0;
  }
  #testimonials .items .item {
    width: 80cqw;
  }
}
@media (min-width: 1024px) {
  #testimonials {
    padding-bottom: 150px;
  }
  #testimonials .items .item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 88cqw;
    margin-right: 30px;
    padding: 30px 30px 60px;
  }
  #testimonials .items .item .text {
    padding-right: 100px;
  }
  #testimonials .items .item .text .content {
    margin-bottom: 80px;
  }
  #testimonials .items .item .image {
    flex-shrink: 0;
    margin: 0;
    padding: 47px 32px;
    border-radius: 20px;
  }
  #testimonials .items .item .image .image-inner {
    width: 240px;
    height: 100px;
  }
}
@media (min-width: 1440px) {
  #testimonials {
    padding-bottom: 200px;
  }
  #testimonials .items .item .text {
    padding-right: 150px;
  }
  #testimonials .items .item .text .content {
    font-size: 45px;
  }
}
@media (min-width: 1920px) {
  .home #testimonials {
    margin-top: -100px;
  }
  #testimonials > .container {
    max-width: none;
    padding-left: var(--mc-container-padding);
  }
  #testimonials .items .item {
    width: calc(90cqw - var(--mc-container-padding));
  }
}
/** Single testimonial
Affects Case Study page **/
#single-testimonial {
  margin: 100px 0;
}
#single-testimonial .subheading {
  margin: 0 0 1.5em;
}
#single-testimonial .item {
  padding: 25px;
  background-color: var(--mc-color-grey);
  border-radius: 20px;
}
#single-testimonial .item .text .content {
  margin: 0 0 60px;
}
#single-testimonial .item .text .position {
  margin: 8px 0 0;
}
#single-testimonial .item .image {
  display: inline-block;
  margin-top: 30px;
  padding: 15px;
  background-color: #fff;
  border-radius: 15px;
}
#single-testimonial .item .image .image-inner {
  position: relative;
  width: 105px;
  height: 43px;
}
#single-testimonial .item .image .image-inner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#single-testimonial .item .image .image-inner img {
  object-fit: contain;
}

@media (min-width: 1024px) {
  #single-testimonial {
    margin: 150px 0;
  }
  #single-testimonial .item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px;
  }
  #single-testimonial .item .text {
    padding-right: 100px;
  }
  #single-testimonial .item .text .content {
    margin-bottom: 80px;
  }
  #single-testimonial .item .image {
    flex-shrink: 0;
    margin: 0;
    padding: 47px 32px;
    border-radius: 20px;
  }
  #single-testimonial .item .image .image-inner {
    width: 240px;
    height: 100px;
  }
}
@media (min-width: 1440px) {
  #single-testimonial .item .text {
    padding-right: 150px;
  }
  #single-testimonial .item .text .content {
    font-size: 50px;
  }
}
/** END Single testimonial **/
/** clients **/
#clients .content {
  padding: 0 0 120px var(--mc-gutter-x);
}
#clients .items {
  display: flex;
}
#clients .items .item {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  margin-right: 40px;
  position: relative;
}
#clients .items .item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#clients .items .item:hover img {
  opacity: 1;
  filter: grayscale(0);
}
#clients .items .item img {
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
  transition: all 0.25s;
}

@media (min-width: 1024px) {
  #clients .content {
    padding-bottom: 180px;
  }
  #clients .items .item {
    width: 220px;
    height: 100px;
    margin-right: 80px;
  }
}
@media (min-width: 1440px) {
  #clients .content {
    padding-bottom: 280px;
  }
  #clients .items .item {
    width: 268px;
    height: 118px;
  }
}
@media (min-width: 1920px) {
  #clients .content {
    padding-left: var(--mc-container-padding);
  }
}
#clients .infinite-scroll-container {
  overflow: hidden;
}
#clients .infinite-scroll-container .infinite-scroll {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: infinite-scroll 45s linear infinite;
  animation-delay: 1s;
}
#clients .infinite-scroll-container .infinite-scroll .text-scroll {
  display: inline-flex;
  margin: 0;
}

@keyframes infinite-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
/** END clients **/
/** Case Studies Module **/
#home-case-studies-module {
  position: relative;
  padding: 35px 0;
  background-color: var(--mc-color-dark-blue);
  overflow: hidden;
}
#home-case-studies-module .heading {
  position: relative;
  z-index: 2;
}
#home-case-studies-module .items {
  position: relative;
  z-index: 2;
  padding: 160px 0 70px;
}
#home-case-studies-module .items .item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100cqw - var(--mc-gutter-x) * 2);
  margin-right: 25px;
  padding: 25px;
  background-color: var(--mc-color-red);
  border-radius: 20px;
  color: #fff;
}
#home-case-studies-module .items .item:hover .text .button {
  margin-right: 46px;
}
#home-case-studies-module .items .item:hover .text .button:after { /* arrow */
  right: -46px;
  opacity: 1;
}
#home-case-studies-module .items .item .image {
  margin: -200px -25px 30px;
}
#home-case-studies-module .items .item .title {
  margin: 0 0 25px;
}
#home-case-studies-module .items .item .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
#home-case-studies-module .items .item .text .details {
  flex-grow: 1;
  width: 100%;
}
#home-case-studies-module .items .item .text .details .detail {
  padding: 20px 0;
  border-top: solid 1px var(--mc-color-black);
}
#home-case-studies-module .items .item .text .details .detail .label {
  margin-bottom: 12px;
}
#home-case-studies-module .items .item .text .details .detail.client {
  display: flex;
}
#home-case-studies-module .items .item .text .details .detail.client .label {
  margin: 0 14px 0 0;
}
#home-case-studies-module .items .item .text .button {
  margin-top: 10px;
}
#home-case-studies-module .items .slick-list {
  border-radius: 20px;
  overflow: hidden;
}
#home-case-studies-module .items .slick-arrow {
  border-color: var(--mc-color-bright-red);
}
#home-case-studies-module .item-images {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
}
#home-case-studies-module .item-images:after { /* gradient mask */
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(var(--mc-color-dark-blue-RGB), 0.4);
  background: linear-gradient(rgba(var(--mc-color-dark-blue-RGB), 0), rgba(var(--mc-color-dark-blue-RGB), 1));
}
#home-case-studies-module .item-images .image {
  position: relative;
  position: relative;
  z-index: 1;
  width: 100cqw;
  height: 500px;
}
#home-case-studies-module .item-images .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  #home-case-studies-module {
    padding: 50px 0;
  }
  #home-case-studies-module .items {
    padding-top: 250px;
  }
  #home-case-studies-module .items .item .text {
    align-items: flex-end;
  }
  #home-case-studies-module .items .item .text .details .detail {
    display: flex;
  }
  #home-case-studies-module .items .item .text .details .detail .label {
    flex-shrink: 0;
    width: 28%;
    margin-bottom: 0;
    margin-right: 40px !important;
  }
  #home-case-studies-module .items .item .text .button {
    margin-top: 30px;
  }
  #home-case-studies-module .item-images .image {
    height: 600px;
  }
}
@media (min-width: 1280px) {
  #home-case-studies-module .items:not(.slick-initialized) {
    display: flex;
    margin-right: -30px;
    padding: 280px 0 0;
  }
  #home-case-studies-module .items:not(.slick-initialized) .item {
    width: calc(17cqw - 30px);
    height: 430px;
    margin-right: 30px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.5s;
  }
  #home-case-studies-module .items:not(.slick-initialized) .item:not(.active) {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--mc-color-red);
  }
  #home-case-studies-module .items:not(.slick-initialized) .item.active {
    width: calc(66cqw - 30px);
    padding-left: 17cqw;
  }
  #home-case-studies-module .items:not(.slick-initialized) .item.active .text.show {
    opacity: 1;
    display: flex;
  }
  #home-case-studies-module .items:not(.slick-initialized) .item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    margin: 0;
    padding: 30px;
    transform: rotate(-90deg) translateY(100%);
    transform-origin: left bottom;
  }
  #home-case-studies-module .items:not(.slick-initialized) .item .text {
    opacity: 0;
    display: none;
  }
  #home-case-studies-module .item-images:not(.slick-initialized) {
    height: 750px;
  }
  #home-case-studies-module .item-images:not(.slick-initialized) .image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    transition: all 0.8s;
  }
  #home-case-studies-module .item-images:not(.slick-initialized) .image.active {
    opacity: 1;
  }
}
@media (min-width: 1920px) {
  #home-case-studies-module .items:not(.slick-initialized) {
    padding-top: 350px;
  }
  #home-case-studies-module .item-images:not(.slick-initialized) {
    height: 850px;
  }
}
/** END Case Studies Module **/
/** FOOTER **/
#footer {
  position: relative;
  z-index: 2;
  background-color: var(--mc-color-dark-blue);
  color: #fff;
}
#footer a:not(.button) {
  color: #fff;
}
#footer a:not(.button):hover {
  color: var(--mc-color-bright-red);
}
#footer .row-1 {
  padding: 80px 0 110px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#footer .row-1 .description {
  margin-top: 20px;
}
#footer .row-1 .button {
  margin-top: 25px;
}
#footer .row-2 {
  padding: 46px 0 25px;
  border-top: solid 1px var(--mc-color-bright-red);
}
#footer .row-2 .footer__menu ul.menu > li > a {
  display: inline-block;
  padding: 9px 0;
  font-family: var(--mc-font-featured);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
#footer .row-2 .footer__menu ul.menu > li div.mega-menu,
#footer .row-2 .footer__menu ul.menu > li ul.sub-menu,
#footer .row-2 .footer__menu ul.menu > li button.toggle-submenu {
  display: none;
}
#footer .row-2 .footer__contacts {
  margin-top: 30px;
}
#footer .row-2 .footer__contacts > div {
  padding: 5px 0;
}
#footer .row-2 .socials ul li a.facebook {
  background-image: url(../svg/facebook--white.svg);
}
#footer .row-2 .socials ul li a.linkedin {
  background-image: url(../svg/linkedin--white.svg);
}
#footer .row-2 .footer__logo {
  margin-top: 50px;
  line-height: 0;
}
#footer .row-2 .footer__logo a {
  display: inline-block;
}
#footer .row-2 .footer__logo img {
  max-width: 100px;
}
#footer .row-2 .footer__copyright {
  margin-top: 60px;
  font-size: 13px;
}
#footer .row-2 .footer__copyright .copyright {
  margin-top: 7px;
}
#footer .row-2 .footer__copyright .links {
  display: flex;
  flex-wrap: wrap;
}
#footer .row-2 .footer__copyright .links a {
  margin: 7px 20px 0 0;
}
#footer .row-2 .footer__copyright .siteby {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.5);
}
#footer .row-2 .footer__copyright .siteby a {
  color: rgba(255, 255, 255, 0.5);
}
#footer .row-2 .footer__copyright .siteby a:hover {
  color: var(--mc-color-bright-red);
}

@media (min-width: 1024px) {
  #footer .row-1 {
    padding: 120px 0;
  }
  #footer .row-1 .heading {
    font-size: 48px;
  }
  #footer .row-1 .description {
    max-width: 500px;
    margin: 40px auto 0;
    font-size: 18px;
    font-weight: 500;
  }
  #footer .row-1 .button {
    margin-top: 45px;
  }
  #footer .row-2 > .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #footer .row-2 .footer__menu {
    width: 30%;
  }
  #footer .row-2 .footer__contacts {
    width: 50%;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 400;
  }
  #footer .row-2 .footer__logo {
    margin-top: 10px;
  }
  #footer .row-2 .footer__copyright {
    width: 100%;
    margin: 110px 0 0 0;
    display: flex;
  }
  #footer .row-2 .footer__copyright .copyright {
    margin-right: 20px;
  }
}
@media (min-width: 1440px) {
  #footer .row-1 {
    padding: 155px 0;
  }
  #footer .row-1 .heading {
    font-size: 70px;
  }
  #footer .row-1 .description {
    font-size: 22px;
  }
  #footer .row-2 .footer__menu ul.menu > li > a {
    font-size: 32px;
  }
  #footer .row-2 .footer__contacts {
    font-size: 20px;
  }
  #footer .row-2 .footer__logo img {
    max-width: 124px;
  }
}
.socials { /* affects footer and contact us page */
  margin-top: 20px;
}
.socials ul {
  display: flex;
}
.socials ul li:not(:last-child) {
  padding-right: 20px;
}
.socials ul li a {
  display: block;
  width: 40px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 17px 17px;
  border: solid 1px var(--mc-color-bright-red);
  border-radius: 50%;
}
.socials ul li a:hover {
  background-color: var(--mc-color-bright-red);
}
.socials ul li a.facebook {
  background-image: url(../svg/facebook--dark-blue.svg);
}
.socials ul li a.facebook:hover {
  background-image: url(../svg/facebook--white.svg);
}
.socials ul li a.linkedin {
  background-image: url(../svg/linkedin--dark-blue.svg);
}
.socials ul li a.linkedin:hover {
  background-image: url(../svg/linkedin--white.svg);
}

/** END FOOTER **/
/** Hide/Show element **/
.d-none {
  display: none;
}

@media (min-width: 768px) {
  .d-none-sm {
    display: none;
  }
}
@media (min-width: 1024px) {
  .d-none-md {
    display: none;
  }
}
@media (min-width: 1280px) {
  .d-none-lg {
    display: none;
  }
}
@media (min-width: 1440px) {
  .d-none-xl {
    display: none;
  }
}
.d-block {
  display: block;
}

@media (min-width: 768px) {
  .d-block-sm {
    display: block;
  }
}
@media (min-width: 1024px) {
  .d-block-md {
    display: block;
  }
}
@media (min-width: 1280px) {
  .d-block-lg {
    display: block;
  }
}
@media (min-width: 1440px) {
  .d-block-xl {
    display: block;
  }
}
.d-flex {
  display: flex;
}

@media (min-width: 768px) {
  .d-flex-sm {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .d-flex-md {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .d-flex-lg {
    display: flex;
  }
}
@media (min-width: 1440px) {
  .d-flex-xl {
    display: flex;
  }
}
/** END Hide/Show element **/
/** Position **/
.c-position-relative {
  position: relative;
}

/** END Position **/
/** Margins **/
.c-margin-0 {
  margin: 0 !important;
}

.c-margin-vert-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.c-margin-sides-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.c-margin-top-0 {
  margin-top: 0 !important;
}

.c-margin-bottom-0 {
  margin-bottom: 0 !important;
}

.c-margin-left-0 {
  margin-left: 0 !important;
}

.c-margin-right-0 {
  margin-right: 0 !important;
}

.c-clear-p-margins p:first-child {
  margin-top: 0;
}
.c-clear-p-margins p:last-child {
  margin-bottom: 0;
}

/** END Margins **/
/** Paddings **/
.c-padding-0 {
  padding: 0 !important;
}

.c-padding-vert-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.c-padding-sides-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.c-padding-top-0 {
  padding-top: 0 !important;
}

.c-padding-bottom-0 {
  padding-bottom: 0 !important;
}

.c-padding-left-0 {
  padding-left: 0 !important;
}

.c-padding-right-0 {
  padding-right: 0 !important;
}

/** END Paddings **/
/** Text styles **/
.c-text-left {
  text-align: left !important;
}

.c-text-center {
  text-align: center !important;
}

.c-text-right {
  text-align: right !important;
}

.c-word-break {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}

.c-no-wrap {
  white-space: nowrap;
}

.c-text-red {
  color: var(--mc-color-red) !important;
}

.c-text-bright-red {
  color: var(--mc-color-bright-red) !important;
}

.c-text-dark-blue {
  color: var(--mc-color-dark-blue) !important;
}

/** END Text styles **/
/** Slick **/
.slick-slider ul.slick-dots {
  display: flex !important;
  margin-top: 30px;
  line-height: 0;
}
.slick-slider ul.slick-dots li {
  padding: 6px;
}
.slick-slider ul.slick-dots li:hover button, .slick-slider ul.slick-dots li.slick-active button {
  background-color: var(--mc-color-bright-red);
}
.slick-slider ul.slick-dots li button {
  width: 13px;
  height: 13px;
  padding: 0;
  background-color: var(--mc-color-black);
  border: solid 1px var(--mc-color-bright-red);
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  transition: all 0.25s;
  cursor: pointer;
}
.slick-slider ul.slick-dots li button:after {
  display: none;
}
.slick-slider .slick-arrow {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--mc-color-dark-blue) url(../svg/arrow--white.svg) no-repeat center center;
  background-size: 16px auto;
  border: solid 1px var(--mc-color-dark-blue);
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.slick-slider .slick-arrow.slick-prev {
  transform: rotate(-180deg);
}
.slick-slider .slick-arrow.slick-next {
  left: 50px;
}
.slick-slider .slick-arrow:hover, .slick-slider .slick-arrow:focus {
  background-color: var(--mc-color-bright-red);
  border-color: var(--mc-color-bright-red);
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-equal-height.slick-initialized .slick-track {
  display: flex;
}
.slick-equal-height.slick-initialized .slick-track:before, .slick-equal-height.slick-initialized .slick-track:after {
  display: none;
}
.slick-equal-height.slick-initialized .slick-track .slick-slide {
  display: flex;
  height: auto;
}

/** END Slick **/