/*
  Theme Name:   Pearl & Dean (HTML5 Boilerplate v8.0.0)
  Theme URI:    https://html5boilerplate.com/
  Description:  Pearl & Dean Custom (HTML5 Boilerplate v8.0.0 Theme)
  Author:       Packed House
  Author URI:   https://digital.pearlanddean.ie/
  Version:      1.0.0
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
  Text Domain:  HTML5 Boilerplate
  GitHub Theme URI: h5bp/main.css#readme
*/

/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */


html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
   scroll-behavior: smooth
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}



:root {
  --blue: #0089B4;
  --yellow: #EAB818;
  --magenta: #AA047C;
  --blue-rgb: 0,137,180;
  --yellow-rgb: 234,184,24;
  --magenta-rgb: 170,4,124;

}
body.group-scope,
body.outdoor-scope{
  --basecolor: var(--magenta);
  --basecolor-rgb: var(--magenta-rgb);

}
body.digital-scope{
  --basecolor: var(--yellow);
  --basecolor-rgb: var(--yellow-rgb);
}
body.cinema-scope{
  --basecolor: var(--blue);
  --basecolor-rgb: var(--blue-rgb);
}

::selection {
  background: rgba(var(--basecolor-rgb),0.4);
}

h1,h2,h3,h4,h5,h6{
  text-wrap: balance;
}

a{
  color:var(--blue);
}
.btn{
  color:#fff;
  text-decoration:none;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-block;
  margin: 20px 0;
  transition: 0.1s all ease-out;
  border-width: 1px;
  border-color: var(--blue);
  background: var(--blue);
  border-radius: 5px;
  padding: 13px 20px 10px;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align:center
}
.btn.yellow{
  background:var(--yellow);
  border-color:var(--yellow);
  color:#000;
}
.btn.magenta{
  background:var(--magenta);
  border-color:var(--magenta);
}
.btn.blue{
  background:var(--blue);
  border-color:var(--blue);
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 0.8s opacity ease, 0.6s all ease-out;

}

.reveal.up{
  transform: translateY(-150px) translateX(0);
  opacity: 0;

}

.reveal.left{
  transform: translateY(0) translateX(-100px);
  opacity: 0;

}
.reveal.right{
  transform: translateY(0) translateX(150px);
  opacity: 0;

}


.reveal.active{
  transform: translateY(0) translateX(0);
  opacity: 1;
}
.reveal.fade{
  transform: translateY(0);
  transition: 1.8s all ease;
}

#animateCircles {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom:0;
  right:0;
  opacity:0.6;
  width:100%;
  height:100vh;
  z-index: -1;
}


.unfinished{
  color:red !important;
}


img.lazyload:not([src]) {
  visibility: hidden;
}
/* fade image in after load */
.lazyload,
.lazyloading {
	opacity: 0;
}
.lazyloaded {
  transition: opacity 300ms, box-shadow 400ms;
	opacity: 1;
}



html, body{
  margin:0;
  padding:0;
}
body{
  background:#0D0D0D;
  font-family: "museo-sans", sans-serif;

  color:#fff;
      -webkit-font-smoothing: antialiased;
}
body:before {
    content: " ";
    background: linear-gradient(56deg, rgba(34,34,34,1) 0%, rgba(0,137,180,0.7) 24%, rgba(34,34,34,1) 50%, rgba(170,4,124,0.7) 80%, rgba(34,34,34,1) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
    opacity: 0.3;

}

body:has(.splash.screens)::before {
  opacity: 0.4;
}


.cinema-scope body:before {
  background: radial-gradient(circle, rgba(0,137,180,1) 0%, rgba(0,137,180,0) 100%);
  opacity:0.08;
}
.outdoor-scope body:before {
  background: radial-gradient(circle, rgba(var(--magenta-rgb),1) 0%, rgba(var(--magenta-rgb),0) 100%);
  opacity:0.08;

}
header.true{
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background:transparent;
  transition:background 0.2s ease-out;
  z-index: 2;
  border: 1px solid #ffffff3b;
  margin: 1%;
  border-radius: 15px;
  width: calc(100% - 2%);
  background: rgba(var(--magenta-rgb),0.05);
  border: 1px solid rgba(var(--magenta-rgb),0.3);
  align-items: center;
}
header.true.fade-in{
  background: rgba(13,13,13,0.9);
}

header.true h1 {
  margin-left: 30px;
  padding:0;
  margin: 0 0 0 30px;
}
.logohead a{
  width: 170px;
  height: 73px;
  display:block;
  text-indent:-9999px;
  background-image:url('img/logos/ondark/pd-ireland.svg');
  background-position: center left;
  background-size:contain;
  background-repeat:no-repeat;
}
.cinema-scope header .logohead a{
  background-image:url('img/logos/ondark/pd-cinema.svg');
}
.digital-scope header .logohead a{
  background-image:url('img/logos/ondark/pd-digital.svg');
}
.outdoor-scope header .logohead a{
  background-image:url('img/logos/ondark/pd-outdoor.svg');
}


.menu-toggle{
  display:none;
}

header.true nav > ul{
  display:flex;
  flex-direction:row;
  flex-wrap:no-wrap;
  list-style-type:none;

}


header.true nav > ul > li > a{
  color:#fff;
  text-transform:uppercase;
  font-size:16px;
  line-height:16px;
  display:block;
  padding: 20px 15px;
  text-decoration:none;
  position:relative;
  font-weight: 600;
  letter-spacing: 0.05em;
}
header.true nav > ul > li.current_page_item > a:after,
header.true nav > ul > li.current-page-ancestor > a:after{
  content: "";
  position: absolute;
  background: var(--basecolor);
  width: calc(100%);
  left: 0px;
  height: calc(100% - 10px);
  border-radius: 5px;
  opacity: 0.2;
  bottom: 5px;
  z-index: -1;

  opacity:1;

  height: calc(100% - 20px);
  bottom: 10px;
  width: calc(100% - 10px);
  left: 5px;

}
.digital-scope header.true nav > ul > li.current_page_item > a,
.digital-scope header.true nav > ul > li.current-page-ancestor > a{
  color:#000;
}




header.true nav > ul li ul{
  position:absolute;
  background:#fff;
  top:90px;
  width:auto;
  opacity:0;
  visibility:hidden;
  -webkit-transition: opacity 300ms, visibility 300ms;
  transition: opacity 300ms, visibility 300ms;
  gap:0;
  margin:0 0 0 10px;
  list-style-type:none;
  padding:0;


}

header.true nav > ul li ul li{
  margin:0;
  padding:0;
}
header.true nav > ul li ul li a{
  color: #000;
  display: block;
  padding: 5px 15px;
  text-decoration: none;
  display: flex;
  gap:7px;
  min-width:58px;
}





header.true nav > ul li.country-choice ul li a img{
  width:16px;
  height:auto;
}

header.true nav > ul li.country-choice ul li:first-child a{
  padding-top:15px;
}
header.true nav > ul li.country-choice ul li:last-child a{
  padding-bottom:15px;
}

header.true nav > ul li.country-choice:hover ul,
header.true nav > ul li.country-choice:focus ul{
    opacity:1;
    visibility:visible;
}
header.true nav > ul li.country-choice:hover > a .arrow,
header.true nav > ul li.country-choice:focus > a .arrow{
  transform: rotate(180deg);
}

header.true nav > ul li.country-choice{
  cursor:pointer;
}
header.true nav > ul li.country-choice > a{
  background:rgba(255,255,255,0.1);
  color:#fff;
  padding:15px;
  margin:30px 10px 25px;
  border-radius:2px;
  display:flex;
  gap:7px;
  position:relative;
}
header.true nav > ul li.country-choice > a img{
  width:16px;
  height:auto;
}
header.true nav > ul li.country-choice > a .arrow {
  width: 16px;
  height: 16px;
  position: relative;
}
header.true nav > ul li.country-choice > a .arrow::before,
header.true nav > ul li.country-choice > a .arrow::after {
  position: relative;
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background: #fff;
  top: 7px;
}
header.true nav > ul li.country-choice > a .arrow::before {
  transform: rotate(45deg);
}
header.true nav > ul li.country-choice > a .arrow::after {
  left: 7px;
  transform: rotate(-45deg);
  top: 6px;
}

header.true nav > ul{
  padding-right:20px;
}
/*
header.true nav > ul > li:last-child > a{
  display:block;
  width:60px;
  height:60px;
  border-radius:50%;
  text-indent:-9999px;
  padding:0;
  margin:-3px 30px 0 10px;
}
header.true nav > ul > li:last-child > a:after{
  content:"";
  width:100%;
  height:100%;
  background-image:url('img/logos/logo-chunk.png');
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
  position:absolute;
  top:0;
  left:0;
  transition:all 0.2s ease;
}
header.true nav > ul > li:last-child:hover > a:after{
  filter:invert(100);
}

header.true nav > ul > li:last-child > a:before {
    border: 2px solid #fff;
    border-radius: 50px 50px 0 0;
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 31.5px);
    border-width: 2px 2px 0 2px;
    box-sizing:border-box;
    background:#fff;
    transition:all 0.2s ease;
    opacity:0;
    visibility:hidden;
    -webkit-transition: opacity 300ms, visibility 300ms;
    transition: opacity 300ms, visibility 300ms;

}
header.true nav > ul > li:last-child:hover > a:before {
  opacity:1;
  visibility:visible;
}


header.true nav > ul > li:last-child:hover .group-show{

    opacity:1;
    visibility:visible;

}
*/
.group-show{
  display:flex;
  gap: 20px;
  margin: 0 -30px;
  width: calc(100% + 60px);

}

.group-show a,
.group-show > div{
  padding:10px 30px 10px;
  text-decoration:none;
  color:#fff;
  transition:0.2s all ease-out;
  flex: 1 1 0px;
  backdrop-filter: blur(10px);
  border-radius: 10px !important;
}
.group-show a:hover,
.group-show > div:hover{
  transform: scale(0.985);
  background:rgba(0,0,0,0.02);
}


.group-show a.cinema,
.group-show > div.cinema{
  background:rgba(var(--blue-rgb),0.03);
  border: 1px solid rgba(var(--blue-rgb),0.3);
  border-radius: 2px;
}
.group-show a.outdoor,
.group-show > div.outdoor{
  background: rgba(var(--magenta-rgb),0.05);
  border: 1px solid rgba(var(--magenta-rgb),0.3);
  border-radius: 3px;
}

.group-show a.digital,
.group-show > div.digital{
  background: rgba(var(--yellow-rgb),0.08);
  border: 1px solid rgba(var(--yellow-rgb),0.2);
  border-radius: 3px;
}

.group-show a:hover ~ .groupfuzz .swirl div{
  opacity:0.6;
}

.group-show a.cinema:hover ~ .groupfuzz .swirl div.blue{
  opacity:1 !important;
}

.group-show a.outdoor:hover ~ .groupfuzz .swirl div.magenta{
  opacity:1 !important;
}

.group-show a.digital:hover ~ .groupfuzz .swirl div.yellow{
  opacity:1 !important;
}






.group-show a h3,
.group-show > div h3{
  width:190px;
  height:83px;
  display:block;
  text-indent:-9999px;
  background-position:center center;
  background-size:contain;
  background-repeat:no-repeat;
  transition:all 0.2s ease-out;
  margin-left:-10px;
}
/*
.group-show a:hover h3{
  transform: scale(1.05);

}*/
.group-show a.cinema h3,
.group-show > div.cinema h3{
  background-image:url('img/logos/ondark/pd-cinema.svg');
}
.group-show a.outdoor h3,
.group-show > div.outdoor h3{
  background-image:url('img/logos/ondark/pd-outdoor.svg');
}
.group-show a.digital h3,
.group-show > div.digital h3{
  background-image:url('img/logos/ondark/pd-digital.svg');
}

.group-show a h4,
.group-show > div h4{
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  margin:0 0 6px 0;
}
.group-show a p,
.group-show > div p{
  font-size:16px;
  line-height:22px;
  margin:0;
}


header.true nav .group-show{
  position:absolute;
  background:#fff;
  top:90px;
  opacity:0;
  visibility:hidden;
  -webkit-transition: opacity 300ms, visibility 300ms;
  transition: opacity 300ms, visibility 300ms;
  gap:0;
  width: 102%;
  margin:0 -1%;
  left:1%;
  right:1%;
  width:100%;
  border-radius:0 0 15px 15px;
  top:115px;
  overflow:hidden;

}
header.true nav .group-show a.ireland,
header.true nav .group-show a.cinema,
header.true nav .group-show a.outdoor,
header.true nav .group-show a.digital{
  color:#000;
  background:transparent;
  border:0;
  backdrop-filter: blur(0);
  border-radius:0 !important;
  border-bottom:10px solid transparent;
}
header.true nav .group-show a:hover{
  transform:scale(1);
}
header.true nav .group-show a.ireland:hover{
  border-color:#000;

}
header.true nav .group-show a.cinema:hover{
  background:rgba(var(--blue-rgb),0.03);
  border-color:rgba(var(--blue-rgb),1);

}
header.true nav .group-show a.outdoor:hover{
  background:rgba(var(--magenta-rgb),0.05);
  border-color:rgba(var(--magenta-rgb),1);

}
header.true nav .group-show a.digital:hover{
  background:rgba(var(--yellow-rgb),0.03);
  border-color:rgba(var(--yellow-rgb),1);

}

header.true nav .group-show a.ireland h3{
  background-image:url('img/logos/onwhite/pd-ireland.svg');
}
header.true nav .group-show a.cinema h3{
  background-image:url('img/logos/onwhite/pd-cinema.svg');
}
header.true nav .group-show a.outdoor h3{
  background-image:url('img/logos/onwhite/pd-outdoor.svg');
}
header.true nav .group-show a.digital h3{
  background-image:url('img/logos/onwhite/pd-digital.svg');
}
header.true nav .group-show a h4{
  font-size:18px;
  line-height:24px;
}
header.true nav .group-show a p{
  font-size:14px;
  line-height:19px;
}



header.true nav .group-show a.ireland .btn{
    background:#000;
    border-color:#000;
}

header.true nav .group-show a.cinema .btn{
    background:var(--blue);
    border-color:var(--blue);
}
header.true nav .group-show a.outdoor .btn{
  background:var(--magenta);
  border-color:var(--magenta);

}
header.true nav .group-show a.digital .btn{
  background:var(--yellow);
  border-color:var(--yellow);
  color:#000;

}



.page-intro .graphic{

position:absolute;
height:100%;
width:50%;
top:0;
right:0;
z-index:-1;
background-size: 140%;
background-position: 20px bottom;
background-repeat: no-repeat;
opacity: 0.7;
}

.page-intro .demo{
  left: unset;
  width: 55vw;
  z-index: -2;
  border-width: 1px;
  box-sizing: border-box;
  align-items: flex-start;
  justify-content: left;
  border-radius: 15px;
  background-color: rgba(13,13,13, 0.3);
  bottom: unset;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  gap: 0 2%;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  border: 5px solid rgba(170,4,124,0.30);
  padding: 12% 5% 70%;
  right: -30%;
  box-shadow: 0 0 10px rgba(170,4,124,0.30);
}


.page-intro .demo:after{
  content:"";
  position:absolute;
  top:4%;
  left:2%;
  right:2%;
  bottom:4%;
  border:1px solid rgba(255,255,255,0.2);
  border-width:1px;
  border-radius:5px;
}
.page-intro .demo:before{
  content:"";
  position:absolute;
  top:10%;
  left:calc(2% + 1px);
  right:calc(2% + 1px);
  bottom: 0;
  border-top:1px solid rgba(255,255,255,0.2);
}

.page-intro .demo > span{
  opacity: 0;
  transition:0.3s opacity ease-in;
  background:#0089B4;
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid rgba(var(--blue-rgb),1);
  position:relative;
  overflow:hidden;
  width: unset;
  margin: 0;
  flex: 0 0 calc(13% + -8px);
  width: unset;
  margin-bottom: 2%;
  height: 0;
  padding-bottom: calc(13% + -8px);
}
.page-intro .demo > span.show{
  opacity:1;
}

.page-intro .demo > span:nth-child(6){
  margin-right:0;
}
.page-intro .demo > span:nth-child(4),.page-intro .demo > span:nth-child(9){
  flex: 0 0 calc((13% * 2) + 2%);
  border-radius: 5px !important;
}
.page-intro .demo > span:nth-child(4):after,
.page-intro .demo > span:nth-child(9):after,
.page-intro .demo > span:nth-child(4):after,
.page-intro .demo > span:nth-child(9):after{
  display:none;
}

.page-intro .demo#laptop-demo > span:nth-child(5) {
    padding-bottom: calc(28% - 12px);
    border-radius: 5px !important;
    margin-bottom: calc(-100%);
}
.page-intro .demo#laptop-demo > span:nth-child(11) {
  margin-left:calc(14%);
}






.page-intro .demo .circle{
  border-radius:50%;
  position:relative;
}
.page-intro .demo .circle:after{
  content:"";
  border-radius:50%;
  background-color:var(--yellow);
  width:95.5%;
  height:0;
  padding:0 0 0 95.5%;
  top:1%;
  left:1%;
  box-sizing:border-box;
  z-index:9

}

.page-intro .demo .lines{
  position:relative;

}

.page-intro .demo .lines:after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0d0d0d !important;
  width: 50%;
  height: 40%;
}

.page-intro .demo .moon:after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
}

/*Up pointing*/
.page-intro .demo .triangle {
    height: 0;
    padding-left:6%;
    overflow: hidden;
    background:transparent !important;
    position:relative;
}
.page-intro .demo .triangle:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background: transparent;
  border: 500px solid transparent;
  border-top: 0;
  border-bottom: 1000px solid red;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:0.5vw;
}

.page-intro .demo .blue,
.page-intro .demo .blue:after{
  background: rgba(var(--blue-rgb),0.03);
  border-color: rgba(var(--blue-rgb),1);
}

.page-intro .demo .magenta,
.page-intro .demo .magenta:after{
  background: rgba(var(--magenta-rgb),0.05);
  border-color:rgba(var(--magenta-rgb),1);

}
.page-intro .demo .yellow,
.page-intro .demo .yellow:after{
  background: rgba(var(--yellow-rgb),0.03);
  border-color:rgba(var(--yellow-rgb),1);

}
.page-intro .demo .triangle.blue:after,
.page-intro .demo .triangle.magenta:after,
.page-intro .demo .triangle.yellow:after{
  background:transparent !important;
  border-left-color:transparent;
  border-right-color:transparent;
  border-top-color:transparent;

}
.page-intro .demo .lines.blue{
  background: linear-gradient(to left, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              linear-gradient(to right, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              linear-gradient(to top, #0d0d0d, #0d0d0d 20px, transparent 20px, transparent),
              linear-gradient(to bottom, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              repeating-linear-gradient(to top, var(--blue), var(--blue) 2px, #0d0d0d 2px, #0d0d0d 8px) !important;
  position:relative;
}
.page-intro .demo .lines.magenta{
  background: linear-gradient(to left, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              linear-gradient(to right, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              linear-gradient(to top, #0d0d0d, #0d0d0d 20px, transparent 20px, transparent),
              linear-gradient(to bottom, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              repeating-linear-gradient(to top, var(--magenta), var(--magenta) 2px, #0d0d0d 2px, #0d0d0d 8px) !important;
  position:relative;
}
.page-intro .demo .lines.yellow{
  background: linear-gradient(to left, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              linear-gradient(to right, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              linear-gradient(to top, #0d0d0d, #0d0d0d 20px, transparent 20px, transparent),
              linear-gradient(to bottom, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
              repeating-linear-gradient(to top, var(--yellow), var(--yellow) 2px, #0d0d0d 2px, #0d0d0d 8px) !important;
  position:relative;
}

.page-intro .demo .moon.blue:after{
  background-color:var(--blue);
}
.page-intro .demo .moon.magenta:after{
  background-color:var(--magenta);
}
.page-intro .demo .moon.yellow:after{
  background-color:var(--yellow);
}

.page-intro .demo .moon.bottom:after{
  left:0;
  bottom:-50%;
}
.page-intro .demo .moon.top:after{
  left:0;
  top:-50%;
}
.page-intro .demo .moon.left:after{
  top:0;
  left:-50%;
}
.page-intro .demo .moon.right:after{
  top:0;
  right:-50%;
}




.page-intro{
  display:flex;
  flex-wrap:nowrap;
  padding-top:100px;
  max-width:90%;
  margin:0 0 4% 0;
  gap:20px;
}
.page-intro.tight{
  padding-top:0;
}

@media only screen and (max-height: 850px) {
    .page-intro {
      padding-top: 30px;
      margin: 0 0 2% 0;
    }
}

.page-intro.homesplash{
  /*min-height: 500px;*/
  align-items:center;

}
.page-template-digital .page-intro.homesplash{
  min-height: 500px;
}


.page-intro.center{
  max-width:100%;
  justify-content: center;
  text-align:center;
}
.page-intro .title-head{
  flex:0 0 calc((100% / 3) - 12px);
  display:flex;
  flex-direction:column;
  justify-content: space-between;
  border-bottom:3px solid var(--magenta);
  padding:12px 0;
}
.page-intro .title-head h2{
  font-size: 48px;
  line-height: 48px;
  margin:3px 0 0 0;
}
.page-intro .text{
  flex: 0 0 calc((100% / 3 * 2) - 13px);
  padding:12px 0;
}
.page-intro.homesplash .text{
  flex: 0 0 calc((100% / 3 * 2) - 13px);

}

.group-scope .page-intro.homesplash .text{
  flex: 0 0 calc((100% / 3 * 2.5) - 13px);
}

.page-intro .text p{
  font-size: 24px;
  line-height: 30px;
  margin:24px 0 12px;
}
.page-intro .text p a{
color:var(--magenta)
}
.page-intro .text p a.cinema{
color:var(--magenta)

}
.page-intro .text p a.outdoor{
color:var(--blue)

}
.page-intro .text p a.digital{
color:var(--yellow)

}


.page-intro .text h1{
  font-size: 60px;
  font-weight:600;
  line-height: 54px;
  margin:0 0 12px 0;
  letter-spacing: -0.01em;
  font-weight: 600;

}
.page-intro .text h2{
  font-size: 48px;
  font-weight:600;
  line-height: 48px;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin:0;
}
.page-intro .text h1 + h2{
  font-size: 36px;
  line-height: 36px;


}
.page-intro .title-head h3{
  margin:0 0 12px 0;
  padding:0;
  text-transform:uppercase;
  font-size:36px;
  line-height:30px;
  font-weight:700;
}
.page-intro .title-head h3 span.cinema{
  color:var(--blue);
}
.page-intro .title-head h3 span.outdoor{
  color:var(--magenta);
}
.page-intro .title-head h3 span.digital{
  color:var(--yellow);
}

.page-intro .text h1.ei{
  background-image:url('img/entertainment-ie-logo2x.png');
  background-size:contain;
  background-position:bottom left;
  background-repeat:no-repeat;
  text-indent:-9999px;

}
/*
.circle {
    background: rgba(0,0,0,0.2);
    width: 28%;
    height: 0;
    padding-bottom: 28%;
    position: absolute;
    border-radius: 100%;
    right: 8%;
    background-size:cover;
    background-position:center center;
    opacity: 1;
    border: 1px solid var(--magenta);
    opacity: 0.4;
    background: transparent;
    box-shadow: 0 10px 10px rgba(var(--magenta-rgb),0.2);

}

.circle.two {
    width: 12%;
    padding-bottom: 12%;
    right: unset;
    left: 16%;
    top: 35%;
}

.circle.three {
    width: 20%;
    padding-bottom: 20%;
    right: unset;
    left:33%;
    top: 9%;
}
*/



.container{
  margin:2% auto;
  max-width:1800px;
  padding:0 calc(100% * (1 / 12));
}
.container.wide{
  padding:0 calc(100% * (1 / 24));
}
.container.tight{
  margin:2% auto;
}

canvas + .container{
  margin:10% auto 5vh;
}

header.true + .container{
  margin-top:140px;
  /*min-height:calc(100vh - 710px);*/
  margin-bottom:5%;
  position:relative;
  /*overflow-x: hidden;*/
}
/*
.group-scope.page-template-homepage header.true + .container{
  margin-top: 170px;
  min-height:calc(100vh - 710px);
  background-size: 90%;
  background-position: 340px center;
  background-repeat: no-repeat;
  margin-bottom: 0;
  padding-bottom: 4%;
  position:relative;
}
.group-scope.page-template-homepage header.true + .container:after{
    content:"";
    position:absolute;
    height:100%;
    width:50%;
    top:0;
    right:0;
    z-index:-1;
    background-image: url('https://pearlanddean.ie/wp-content/uploads/2024/11/pexels-cottonbro-8272154.png');
    background-size: 140%;
    background-position: 20px bottom;
    background-repeat: no-repeat;
    box-shadow: 50px 60px 38px -2px #1a1418 inset;
    opacity: 0.7;
}
*/





/*mostly for cinema but maybe everywhere? A splash*/
.splash{
  width: 100%;
  top: 0;
  left: 0;
  height: 60vw;
  margin: 0;
  position: relative;
  z-index: -4;
}
.splash:after{
  content:"";
  position:absolute;
  height:55%;
  width:100%;
  bottom:0;
  left:0;
  background: linear-gradient(180deg,rgba(13, 13, 13, 0) 1%, rgba(13, 13, 13, 1) 96%, rgba(13, 13, 13, 1) 100%);
  background:linear-gradient(180deg,rgba(13, 13, 13, 0) 1%, rgba(13, 13, 13, 1) 66%, rgba(13, 13, 13, 1) 100%);

  z-index:1;
}
.splash:before{
  content: "";
  position: absolute;
  height: 30%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  top: 0;
  bottom: unset;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0) 1%, rgba(13, 13, 13, 1) 86%, rgba(13, 13, 13, 1) 100%);
}

.splash img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;

}

.splash img.active.lazyload {
  opacity: 0;
  z-index: unset;
}

.splash img.active.lazyloaded {
  opacity: 1;
  z-index: 1;
}


.splash:not(.screens) + *{
  margin-top:-30vw;
}

.splash + .container .page-intro .text{
  text-shadow:0 0 30px rgba(13,13,13,0.3);
}

.splash img + .description{
  position: absolute;
  right: 20px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
  top: 170px;
  padding: 10px;
  border-radius: 2px;
  font-size: 16px;
  line-height: 18px;

}
.splash img.active + .description{
  visibility:visible;
  opacity:1;
}


.splash.screens{
  display: flex;
  padding-top: 180px;
  max-height: 900px;
  margin-bottom: 10%;
  overflow: hidden;
  z-index: 0;
  border-bottom: 1px solid #fff;
  height: calc(90vh - 180px);
}
.splash.screens.single{
  height: calc(60vh - 180px);

}
.splash.screens:before{
  display:none;
}
.splash.screens:after{
  height: 10px;
  z-index: 2;
  opacity: 0.2;
}
.splash.screens > .text{
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.splash.screens .text .page-intro {
    text-align: left;
    max-width: unset;
    width: 100%;
    justify-content: flex-end;
}

.splash.screens .page-intro .text{
  flex: 0 0 80%;
}
.splash.screens .visuals{
    flex: 0 0 60%;
    position: relative;
}

.splash.screens .visuals picture img{
  width: 60%;
  left: 50%;
  position: absolute;
  object-fit: unset;
  height: auto;
  transform: translate(-75%, 0);
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  opacity:0;
  transition:opacity 0.4s ease-in-out, transform 0.3s ease-in;
  border-radius:10px;
}
.splash.screens .visuals picture img{
  transform: translate(-75%, 0);
}
.splash.screens .visuals picture img.lazyloaded{
  opacity:1;
}
.splash.screens .visuals picture img:hover{
  z-index:3;
  transform:scale(1.02) translate(-75%, 0);
}
.splash.screens .visuals picture img:hover{
  transform: translate(-50%, 0);

}

.splash.screens .visuals picture + picture img{
  transform: translate(-50%, 15vh);
}
.splash.screens .visuals picture + picture img:hover{
  z-index:3;
  transform:scale(1.02) translate(-50%, 15vh );
}

.splash.screens .visuals picture + picture + picture img{
  transform: translate(-25%, 30vh );
}
.splash.screens .visuals picture + picture + picture img:hover{
  z-index:3;
  transform:scale(1.02) translate(-25%, 30vh);
}


.splash.screens .visuals.fanned picture:nth-child(1) img{
  transform: translate(-25%, 15vh);
  z-index: 2;
}
.splash.screens .visuals.fanned picture:nth-child(2) img{
  transform: translate(-75%, 0);
  z-index: 1;
}

.splash.screens.single .visuals picture img{
  width:80%;
  transform:translate(-50%, 0) !important;
}



.splash.screens.case-study{
  height:unset;
  min-height:80vh;
  max-height:unset;
  border-bottom:0;
  padding-top:5%;
  margin:0;
}
.splash.screens.case-study + .case-study{
  border-top:1px solid #fff;

}

.splash.screens.case-study > .text{
}

.splash.screens.case-study .page-intro .text .cat{
  color:rgba(var(--blue-rgb),0.9);
  text-transform:uppercase;
  margin:0 0 5px 0;
  display:block;
  font-size:13px;
  line-height:13px;
}

.splash.screens.case-study .page-intro .text h2{

}
.splash.screens.case-study .page-intro .text p{
  font-size:18px;
  line-height:24px;
}
.splash.screens.case-study .page-intro .text .results{
  margin-top:20px;
  background:rgba(var(--blue-rgb),0.1);
  padding:20px;
  border-radius:10px;
}
.splash.screens.case-study .page-intro .text .results h3{
  font-size:30px;
  line-height:36px;
  margin:12px 0 0;
}
.splash.screens.case-study .page-intro .text .results ul{
  list-style-type:none;
  margin:0;
  padding:0;
}
.splash.screens.case-study .page-intro .text .results ul li{
  border-bottom:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content: flex-start;
  align-items:center;
  padding:15px 0;
  gap:10px;

}
.splash.screens.case-study .page-intro .text .results ul li:last-child{
  border-bottom:0;
}
.splash.screens.case-study .page-intro .text .results ul li svg{
  flex:0 0 5%;
  fill:none;
  stroke:var(--yellow);
  stroke-width:1;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.splash.screens.case-study.app > .text{
  justify-content:flex-start;
}
.splash.screens.case-study.app .visuals{
  display:flex;
  flex-wrap:wrap;
  gap:2%;
  padding:0 5% 5%;


}
.splash.screens.case-study.app .visuals picture{
  flex:0 0 calc(84% / 3);
  margin-bottom:2%;
}
.splash.screens.case-study.app .visuals picture img{
  position:relative;
  top:unset;
  left:unset;
  transform:none !important;
  border:5px solid rgba(255,255,255,0.1);
  width:100%;
  height:auto;

}




.badge-of-honour
{
  position:absolute;
  top:4%;
  right:53%;
  background-color: var(--yellow);
  border-radius:50%;
  height:10vw;
  width:10vw;
  z-index: 2;
  color: rgba(13,13,13,1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);

}
.badge-of-honour .figures {
  text-align:center;
  text-transform:uppercase;
  font-size:0.9vw;
  font-weight:600;
  display:flex;
  flex-direction:column;
  justify-content: center;
  position:absolute;
  top:0;right:0;left:0;bottom:0;

}

.badge-of-honour .figures span.number {
  font-size:2.5vw;
  letter-spacing:-0.03em;
  line-height:1em;
}





.thumbnails{
  display:flex;
  gap:1%;
  flex-wrap:wrap;

}
.thumbnails picture{
  flex:0 0 11%;
  margin-bottom:1%;
  height:0;
  padding-bottom:6.7%;
  position:relative;
  cursor:pointer;
  overflow:hidden;
}
.thumbnails picture:hover img{
  transform:scale(1.05);
}
.thumbnails picture img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  transition:transform 0.1s ease-in;

}

.groupfuzz{
  position:absolute;
  height:0;
  width:66%;
  padding-bottom:66%;
  top: 0;
  right: 0;
  z-index:-1;
  opacity: 0.7;
  overflow:hidden;

  opacity: 1;
  top:-10%;
  }


.groupfuzz .swirl{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  animation: spin1 90s infinite linear;
   transform-origin: center;

}

@keyframes spin1 {
0% { transform: rotate(0deg);}
100% { transform: rotate(360deg);}
}

.groupfuzz .swirl > div{
  background: rgba(0,0,0,0.2);
  width: 50%;
  height: 0;
  padding-bottom: 50%;
  position: absolute;
  border-radius: 100%;
  opacity: 1;
  background: transparent;
  box-shadow: 0 10px 10px rgba(var(--magenta-rgb),0.2);
  transition:all 0.4s ease-in;
}
.groupfuzz .swirl > div.yellow{
  background: rgba(234,184,24,0.20);
  box-shadow: 0 0 64px 0 rgba(234,184,24,0.34);
  left: 25%;
  top: 6.5%;
  animation-delay:10s;
}
.groupfuzz .swirl > div.magenta{
  background: rgba(170,4,124,0.30);
  box-shadow: 0 0 34px 0 rgba(170,4,124,0.74);
  top: 40.5%;
  left: 6.5%;
  right:unset;
  animation-delay:40s;

}
.groupfuzz .swirl > div.blue{
  background: rgba(0,137,180,0.30);
  box-shadow: 0 0 34px 0 rgba(0,137,180,0.59);
  left: 43.5%;
  top: 40.5%;
  right:unset;
}

.generic-text{
  width:calc(80% - 7px);
  position:relative;
  padding-bottom:24px;
  padding-bottom:30px;
  padding-bottom:12px;

}
.generic-text:after{
  content:" ";
  position:absolute;
  width:50%;
  height:3px;
  left:0;
  bottom:0;
  background:var(--basecolor);
}
.generic-text.double:after{
  width:calc(125% + 10px);
}

.generic-text h1{
  font-size: 60px;
  line-height:60px;

/*  font-size: 120px;
  line-height:112px;
*/
  font-weight:600;
  letter-spacing: -0.03em;
  margin:0 0 12px 0;
}
.generic-text h1 .expanse{
  display: block;
  font-size: 48px;
  letter-spacing: -0.02em;
  padding: 0;
  line-height: 48px;
}

.generic-text p.byline{
  font-size: 24px;
  line-height: 30px;

/*  font-size: 30px;
  line-height: 30px;
*/
  margin:0;
  padding-bottom:12px;

}



.image-scatter{
  margin:8% 0;
}
.image-scatter > div{
  width:calc(60% - 10px);
  height:0;
  padding-bottom:40%;
  position:relative;
}
.image-scatter > div img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit: cover;
}
.image-scatter > div:nth-child(even){
  margin-left:calc(40% + 10px);
  margin-top:-33%;
  z-index:-1;
}
.image-scatter > div:nth-child(even):hover{

}
.image-work{
  height: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 0 10%;
}
.image-work img{
  position: absolute;
    width: 130%;
    height: 100%;
    object-fit: contain;
    transform: translateX(-15%);

}

.text-left{
  /*border:5px solid rgba(var(--blue-rgb),0.2);
  border-top: 1px solid rgba(255,255,255,0.3);
*/
  border-width:5px 0;
  margin:0 0 2%;
  position:relative;
  padding:0 0 5% 0;
  overflow:hidden;
  font-size:24px;
  line-height:30px;
}

.text-left .container .text{width: calc(60% - 10px);}
.text-left .container .text h4{
  font-size: 60px;
  line-height: 54px;
  font-weight: 600;
  margin:0 0 28px;
  letter-spacing: -0.02em;
}
.text-left .image{
  position:absolute;
  right:0;
  top:0;
  width:25%;
  height:100%;

}
.text-left .image img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.text-block-list-item{
  position:relative;
  overflow:hidden;
  max-width:1800px;
  margin:0 auto;
  color:#fff;
  text-decoration:none;
}


.text-block-list-item .container{
  min-height: 20vw;
  display: flex;
  align-items: stretch;

  background: rgba(13,13,13, 0.3);

  margin: 0 calc(100%*(1 / 12) - 4%) 4%;
  padding:0;
  position: relative;
  border-radius: 15px;
  overflow:hidden;
  max-width:unset;
  gap:2%;

}
.text-block-list-item.reverse .container{
  flex-direction:row-reverse;
}
.text-block-list-item.center .container{
  text-align:center;
}
.text-block-list-item > span.anchor {
margin-top: -210px; /* Size of fixed header */
padding-bottom: 210px;
display: block;
}


.text-block-list-item .container .text{
  flex: 1 0 calc(49% - 10px);
  padding: 5% 4%;
  box-sizing:border-box;
}
.text-block-list-item:not(:has(.image)) .container{
  background:rgba(13,13,13, 0.5);
  height:100%;
}
.text-block-list-item:not(:has(.image)) .container .text{
  padding:7% 6% 5%;
}


.text-block-list-item .container .text h4{
  font-size:36px;
  line-height:36px;
  font-weight:700;
  margin:0 0 28px;
}
.text-block-list-item .container .text h2{
  font-size:48px;
  line-height:48px;
  font-weight:600;
  margin:0 0 28px;
}
.text-block-list-item .container .text h3{
  font-size:24px;
  line-height:24px;
  font-weight:600;
  margin:28px 0 0;
  color:var(--basecolor);
}

.text-block-list-item .container .text p{
  font-size: 18px;
  line-height: 24px;
  margin:5px 0 20px;
}
.text-block-list-item .container .text ol,
.text-block-list-item .container .text ul{
  font-size: 18px;
  line-height: 24px;

}
.text-block-list-item .container .text ol li,
.text-block-list-item .container .text ul li{
  margin-bottom:6px;
}
.text-block-list-item .container .text a.btn.more{
  color:#fff;
  text-decoration:none;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-block;
  margin: 20px 0;
  transition: 0.1s all ease-out;
  border-width: 1px;
  border-color: var(--blue);
  background: var(--blue);
  border-radius: 5px;
  padding: 13px 20px 10px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.text-block-list-item .container .text a.btn.more.outdoor{
  border-color: var(--magenta);
  background: var(--magenta);

}
.text-block-list-item .container .text a.btn.more.digital{
  border-color: rgba(var(--yellow-rgb),0.8);
  background:rgba(var(--yellow-rgb),0.8);


}

.text-block-list-item .container .text pre{
  background: rgba(var(--basecolor-rgb),0.1);
  border: 1px solid rgba(var(--basecolor-rgb),0.4);
  page-break-inside: avoid;
  font-family: monospace;
  font-size: 16px;
  line-height: 1.6;
  border-radius:2px;
  margin:5px 0 10px;
  clear:both;
  max-width: 100%;
  overflow: auto;
  padding: 0.5em 1em;
  display: inline-block;
  word-wrap: break-word;
  white-space:pre-wrap;
}
.text-block-list-item .container .text p + pre{
  margin:-5px 0 10px;
}

.text-block-list-item .container .text figure{
  margin:15px 0;
}
.text-block-list-item .container .text figure *{
  border-color: rgba(255,255,255,0.2);
}

.text-block-list-item .container .text figure figcaption{
  font-size:14px;
  line-height:14px;
  margin:10px 0;
}


.text-block-list-item .image{
  flex:0 1 100%;
  overflow: hidden;

}
.text-block-list-item.reverse .image{
}
.text-block-list-item .image figure,
.text-block-list-item .image figure picture{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
}
.text-block-list-item .image img{
  width:100%;
  height:100%;
  object-fit: cover;
  transition: 0.2s all ease-out;
}

a.text-block-list-item:hover .image img{
  transform: scale(1.05);
}

.text-block-list-item .image.logo img{
  object-fit:contain;
  width:80%;
  height:80%;
  margin:10%;
}



.text-block-list-item .image.screens{
  position:relative;
  overflow:hidden;
  min-height:400px;
  background:rgba(var(--blue-rgb),0.2);
}
.mason .text-block-list-item .image.screens{
  min-height:unset;
}

.unit .photo.image.screens{
  background:rgba(var(--blue-rgb),0.2);

}

.text-block-list-item .image.screens picture img,
.unit .image.screens picture img{
  width: 60%;
  left: 50%;
  position: absolute;
  object-fit: unset;
  height: auto;
  transform: translate(-70%, 0);
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  opacity:0;
  transition:opacity 0.4s ease-in-out, transform 0.3s ease-in;
  border-radius:10px;
}
.text-block-list-item .image.screens picture img.lazyloaded,
.unit .image.screens picture img.lazyloaded{
  opacity:1;
}

.text-block-list-item .image.screens picture img,
.unit .image.screens picture img{
  transform: translate(-70%, 0);
  top:10%
}
.text-block-list-item .image.screens picture + picture img,
.unit .image.screens picture + picture img{
  transform:translate(-30%, 0);
  top:30%
}

.text-block-list-item .image.screens picture:nth-last-child(n+3) img,
.unit .image.screens picture:nth-last-child(n+3) img{
  transform: translate(-75%, 0);
  top:10%;

}
.text-block-list-item .image.screens picture:nth-last-child(n+3) + picture img,
.unit .image.screens picture:nth-last-child(n+3) + picture img{
  transform: translate(-50%, 0);
  top:30%;


}
.text-block-list-item .image.screens picture:nth-last-child(n+3) + picture + picture img,
.unit .image.screens picture:nth-last-child(n+3) + picture + picture img{
  transform: translate(-25%, 0);
  top:50%;


}
.text-block-list-item .image.screens.single picture img,
.unit .image.screens.single picture img{
  width:80%;
  transform: translate(-50%, 0);
  top:10%

}



.mason{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  gap:2%;
  max-width: 1400px;
  margin: 0 auto;
}
.mason.small{
  justify-content: center;
}
.mason.doubled.small{
  max-width: unset;
  margin:0 2%;

}
.mason.small .text-block-list-item{
  flex:0 0 calc((80% / 3));
  margin:0;
}
.mason .text-block-list-item{
  flex:0 0 calc((96% / 3));
  margin:0 0 2% 0;
}
.mason.doubled .text-block-list-item{
  flex:0 0 calc((96% / 2));
  margin:0 0 2% 0;
  /*flex:0 0 calc((94% / 4));*/
  flex:0 0 calc((96% / 2));

}
.mason.doubled.small .text-block-list-item{
  flex:0 0 calc((94% / 4));
}
/*
.mason.doubled .text-block-list-item .image{
  padding-bottom: 120%;
}*/

.mason .text-block-list-item .container{
  display:flex;
  flex-direction:column-reverse;
  margin:0;
  gap:20px;
  height:100%;
}
.mason .text-block-list-item .image{
  flex: 0%;
  padding-bottom: 60%;
  position: relative;
}
.mason .text-block-list-item .image img{
  position:absolute;
  width:100%;
  height:100%;

}
.mason .text-block-list-item .image.logo{
  background:#fff;
}
.mason .text-block-list-item .image.logo img{
  object-fit: contain;
  width: 80%;
  height: calc(100% / 3 * 2);
  margin: 10%;
  position: absolute;
}
.mason .text-block-list-item .container .text h2{
  font-size:36px;
  line-height:36px;
  margin:0 0 14px 0;
}
.mason.small .text-block-list-item .container .text h2{
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 7px 0;
}
.source{
  font-size:60%;
  display:inline-block;
}

.category-rail{
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -ms-overflow-style: none;
  display: flex;
  flex-wrap: nowrap;
  margin: 0 0 2%;
  overflow: hidden;
  overflow: auto;
  padding: 0;
  scrollbar-width: none;
  transition: opacity 1s;
  overflow-y:hidden;
  gap: 1%;
  padding: 0 2%;
}
.category-rail.wrap{
  flex-wrap:wrap;
}

.category-rail::-webkit-scrollbar {
  display: none;
  width:0 !important;
}
.category-rail.wrap .unit{
  margin-bottom:1%;

}
.unit{
  text-decoration:none;
  color:#fff;
  flex: 0 0 calc(24%);
  padding:0;
  background: rgba(13, 13, 13, 0.3);
  border-radius: 15px;
  overflow: hidden;
}
.unit .photo{
  width:100%;
  position:relative;
  height:0;
  padding-bottom:60%;
  overflow:hidden;
  transition:0.2s all ease-out;

}

.unit .photo img{
  width:100%;
  height:100%;
  position:absolute;
  object-fit:cover;
  transition:0.2s all ease-out;
}
.unit .text{
  margin:30px 52px 30px 24px;
}

.unit h3 {
  font-size:30px;
  line-height:30px;
  font-weight: 600;
  margin:0;
  padding:0;
}

.unit p {
    font-size: 16px;
    line-height: 20px;
    margin:6px 0 0;
    font-weight:400;
}
.unit:hover .photo{
  transform: scale(1.05);
}


.study{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin:48px 0;
  border-bottom:1px solid var(--basecolor);
  border-bottom:1px solid rgba(255,255,255,0.3);
  padding:0 0 48px 0;


}
.study:last-child{
  border-bottom:0;
}
.study .title{
  max-width:600px;
}
.study .title .cat{
  display: block;
  font-size: 14px;
  text-transform: uppercase;
}
.study .title h2{
  font-size:60px;
  line-height:60px;
  margin:0;
  display:inline;
/*  background-image: linear-gradient(rgba(var(--basecolor-rgb),0.4), rgba(var(--basecolor-rgb),0.4));
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 100% 24px;
*/
  transition: background-size .3s;

}


.study .content{
  display:flex;
  flex-wrap:wrap;
}
.study .content .text{
  display:flex;
  gap:20px;

}
.study .content .text p,
.study .content .text ul
{
  font-size:16px;
  line-height:24px;
  margin:0 0 12px 0;
  padding:0;
}
.study .content .text ul li{
  margin:0 0 6px 20px;
}
.study .content .text h3{
  font-size: 36px;
  line-height: 48px;
  margin:0 0 6px 0;
}

.study .content .text .description{
  border-right:1px solid rgba(var(--basecolor-rgb),0.5);
  border-right:1px solid rgba(255,255,255,0.3);
  padding:0 20px 0 0;
  flex:0 0 50%;

}
.study .content .text .results{
  padding-bottom:24px;
  flex:0 1 50%;

}
.study .content .text .results .improvement {
    margin: 0 0px 24px 20px;
    border: 1px solid var(--basecolor);
    border: 3px solid rgba(var(--yellow-rgb),0.3);
    border-radius:5px;

    padding: 5% 20px;
    text-align: center;
    width: calc(40%);
    box-sizing: border-box;
    float: right;
    border:1px solid rgba(255,255,255,0.3);
    border-radius:10px;

}

.study .content .text .results .improvement span:first-child {
    display: block;
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    color:var(--basecolor)

}
.study .content .testimonial{
  flex: 0 0 calc(100% - 40px);
  border:1px solid rgba(255,255,255,0.3);
  border: 1px solid rgba(var(--basecolor-rgb),0.5);
  border-width: 1px 0;
  font-style: italic;
  padding: 24px 20px;
}
.study .content .testimonial blockquote{
  margin:0;
  padding:0;
}
.study .content .testimonial > p{
  text-align:right;
}


.study .content .chart{
  flex:0 0 100%;
  margin:24px 0 0 0;
}

.study .content .chart canvas{
  width:100%;
}

.client-logos{
    background:#fff;
    margin-bottom: 5%;
}

.client-logos {
    display: flex;
    flex-wrap:wrap;
    gap: 20px;
    background:#fff;
    justify-content:center;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 1%;
}
.client-logos span{
    flex: 0 0 calc(12% - 20px);
}
.client-logos span img{
        width:100%;
        height:100%;
        object-fit:contain;
        /* filter: grayscale(1) saturate(1); */
        /* filter: grayscale(1) saturate(0%) brightness(100%) contrast(110%); */
}


.youtube-embed{
  width:100%;
  height:0;
  padding-bottom:56%;
  position:relative;
}
.youtube-embed iframe{
  position:absolute;
  top:0;right:0;bottom:0;left:0;
  width:100%;
  height:100%;
}

.contact-banner {
  background: rgba(var(--blue-rgb), 0.9);
      width: 100%;
      height: 80px;
      position: sticky;
      bottom: 0;
      box-shadow: 0 -10px 10px rgba(13, 13, 13, 0.4);
      margin-top: 100vh;
}
.contact-banner:before {
    content: "";
    margin-top: -100vh;
    display: block;
    height: 1px;
}
.contact-banner .container{
  margin:0;
  margin: 0;
display: flex;
align-items: center;
gap: 20px;
justify-content: center;
height:100%;
}
.contact-banner .container svg{
  stroke:#fff;
}

.contact-banner .container svg path:first-child{
  stroke:var(--yellow);
}

.contact-banner .container .message{
  font-size:18px;
  line-height:21px;
}
.contact-banner .container .btn{
  margin:0;
}
footer{
  border-top:1px solid var(--basecolor);
  font-size:16px;
  line-height:24px;
}
footer .container{
  display:flex;
  flex-direction:row;
}
footer .address{
  flex: 0 0 calc(30% - 14px);
  border-right: 1px solid rgba(255,255,255,0.3);
  margin-right:20px;
}
footer .logohead{
  margin:0;
  padding:0;
}
footer .address > p{
  margin:0 0 12px 80px;
  display:block;
}


footer .footer-nav{
  flex: 0 0 calc(20% - 18px);
  border-right: 1px solid rgba(255,255,255,0.3);
  margin-right:20px;

}
footer .footer-nav ul{
  list-style-type:none;
  margin:0;
  padding:0;
}
footer .footer-nav ul a{
  font-size:16px;
  line-height:16px;
  text-transform:uppercase;
  text-decoration:none;
  color:#fff;
  display:block;
  padding:6px 10px 6px 0;
}
footer .masthead{
  font-size:16px;
  line-height:21px;
}
footer .masthead p{
  margin:0;
  padding:0;
}
footer .masthead a{
  color:#fff;
  font-weight:600;
  text-decoration:none;
}
footer .masthead a.cinema{
  color:var(--blue);
}
footer .masthead a.outdoor{
  color:var(--magenta);
}
footer .masthead a.digital{
  color:var(--yellow);
}


footer .masthead .group-logos{
  flex-wrap: wrap;
  display: flex;
  gap: 30px;
  margin: 30px 0;
  max-width:590px;

}
footer .masthead .group-logos > *{
  flex:0 0 calc((100% / 3) - 30px);
}


footer .masthead .group-logos > * img{
  height:auto;
  width:100%;
}


article.type-post{
  width:calc(90% - 5px);
  display:flex;
  gap: 20px;
  padding: 40px 0;
  border-bottom:3px solid var(--basecolor);

}
article.type-post .entry-header{
  flex: 0 0 calc(30% - 15px);
  position: sticky;
  top: 140px;
  align-self: flex-start;
}
article.type-post .entry-content{
  flex: 0 0 calc(70% + -5px);
}

article.type-post .entry-header ul.post-categories{
  list-style-type:none;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  justify-content: flex-end;
  margin:14px 0 7px;
  padding:0;

}
article.type-post .entry-header ul.post-categories li{

}
article.type-post .entry-header ul.post-categories li a{
  text-decoration:none;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color:#fff;
  border: 1px solid rgba(var(--magenta-rgb),0.5);
  border-radius:2px;
  padding: 10px 15px;
  display: inline-block;
  margin: 0;
  transition: 0.1s all ease-out;
}
article.type-post .entry-header ul.post-categories li a.digital{
  background: rgba(var(--yellow-rgb),0.03);
  border: 1px solid rgba(var(--yellow-rgb),0.2);
  color:var(--yellow);
}
article.type-post .entry-header ul.post-categories li a.cinema{
  background: rgba(var(--blue-rgb),0.03);
  border: 1px solid rgba(var(--blue-rgb),0.3);
  color:var(--blue);

}
article.type-post .entry-header ul.post-categories li a.outdoor{
  background: rgba(var(--magenta-rgb),0.05);
  border: 1px solid rgba(var(--magenta-rgb),0.5);

}




article.type-post .entry-header h1,
article.type-post .entry-header h2{
  font-size:36px;
  line-height:36px;
  text-align:right;
  margin:0;
  padding:0;
}

article.type-post .entry-header h1 a,
article.type-post .entry-header h2 a{
  color:#fff;
  text-decoration:none;
}

article.type-post .entry-header .entry-meta .posted-on a {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
     border-top:1px solid var(--basecolor);
    padding:10px 0;
  display:inline-block;
  text-decoration:none;

}

article.type-post .entry-header .entry-meta {
    text-align: right;
    padding:10px 0 0;
}

article.type-post .entry-content p{
  font-size:18px;
  line-height:28px;
  margin:0 0 14px 0;

}

.blog .generic-text.double:after{
  width:calc(112% + 10px);
}

article.type-post .entry-content .post-thumbnail{
  width:100%;
  height:0;
  padding-bottom:56%;
  position:relative;

}
article.type-post .entry-content .post-thumbnail figure,
article.type-post .entry-content .post-thumbnail figure picture{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
}
article.type-post .entry-content .post-thumbnail figure picture img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
}


article.type-post .entry-header .social-share-list{
	margin: 30px 0 0 0;
	padding:0;
	display:flex;
	flex-direction: row;
	list-style-type:none;
	align-items: end;
	gap: 10px;
	justify-content: flex-end;
}

article.type-post .entry-header .social-share-list li{
	margin:0 0 10px 0;
	padding:0;
	cursor:pointer;

}
article.type-post .entry-header .social-share-list li span{
	width: 44px;
	height: 44px;
	border-radius:50%;
	border: 1px solid rgba(255,255,255,0.4);
	text-indent:-999px;
	display:block;
	overflow:hidden;
	background-size:24px;
	background-repeat:no-repeat;
	background-position:center center;
	opacity:0.8;
}
article.type-post .entry-header .social-share-list li.facebook span{
	 background-image:url('img/facebook-f-white.svg');
	 background-size:10px;
}
article.type-post .entry-header .social-share-list li.twitter span{
	 background-image:url('img/twitter-white.svg');
   background-size:18px;

}
article.type-post .entry-header .social-share-list li.linkedin span{
	 background-image:url('img/linkedin-in-white.svg');
	 background-size:22px;
   background-size:18px;
}







.serfs{
    display:flex;
    flex: 0 0 100%;
    gap: 20px;
    flex-wrap: wrap;
    position:relative;
    margin:0;
}
.serfs:before {
    /* content: ""; */
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.3);
    left: -5%;
}
.serfs h2,
.serfs h3{
  flex:0 0 100%;
  font-size: 36px;
  line-height:48px;
  font-weight: 600;
  margin: 30px 0 10px;
  text-align:center;
}
.employee {
    flex: 0 0 calc(50% - 10px);
    position: relative;
    /* border: 1px solid rgba(var(--yellow-rgb),0.1); */
    /* background:rgba(var(--yellow-rgb),0.04); */
    display: flex;
    background:rgba(13,13,13, 0.3);
}

.employee .image {
    /* width: 100%; */
    height: 0;
    padding-bottom: 50%;
    position: relative;
    overflow: hidden;
    background:#000;
    flex: 0 0 50%;
    border-radius: 10px 0 0 10px;
}

.employee .image img {
    width: 100%;
    /* -webkit-filter: grayscale(100%) contrast(1.15) brightness(1.3); */
    /* object-fit: contain; */
    width: 100%;
    height: auto;
    position: absolute;
    /* transform: scale(1.2); */
    /* top: 10%; */
    transition:0.2s all ease-out;
}

.employee:hover .image img{
  transform: scale(1.05);
}

.employee .text{
  display: block;
  position: relative;
  padding: 0px;
  text-align: right;
  padding: 20px;
  text-align: left;
  border-top: 0;
  flex-grow:2;
}
.employee .text h3 {
    margin: 0;
    padding: 0;
    padding: 10px;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    padding: 10px 10px 0;
    /* background: var(--yellow); */
    /* color: #000; */
    font-size: 21px;
    font-weight: 600;
}
.employee .text span.title {
    display: block;
    font-size: 18px;
    margin: 3px 10px 20px;
    line-height: 20px;
    font-weight: 400;
    color: var(--yellow););
    display: block;
    border-bottom: 1px solid #fff;);
    padding-bottom: 20px;
    text-wrap: balance;
}
.employee .text > p{
  margin: 10px 10px 20px;

}
.employee .text a{
  margin: 5px 9px 0;
  font-size: 14px;
  line-height: 14px;
  color: var(--blue);
  display: inline-block;
  text-decoration: none;
  white-space: break;
  /*border: 1px solid rgba(var(--blue-rgb),0.5);
  border-width: 0 0 1px;*/
  padding-bottom: 3px;
  overflow-wrap:anywhere;
  text-decoration:underline;
  text-decoration-color: rgba(var(--blue-rgb),0.5);
}
.employee .text a.tel{
  color:#fff;
  text-decoration:none;
  border:0;
  margin-top:6px;
}
.contact-details {
    flex: 0 0 calc(40% - 12px);
}
.contact-form{

}
.contact-details h2{
  flex: 0 0 100%;
  font-size: 48px;
  line-height: 48px;
  font-weight:600;
  margin: 20px 0;
}
.contact-details form{
  margin:0;
}
.contact-details form p{
  margin:0 !important;
  padding:0 !important;
}
.contact-details form input,
.contact-details form textarea{
  width: 100%;
  background: transparent;
  color: #fff;
  padding: 15px;
  margin: 0 0 25px 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0px;
  border-width: 1px;
  font-size: 16px;
  font-family: "museo-sans", sans-serif;
  box-sizing: border-box;
  border-radius: 2px;
}
.contact-details form textarea{
  border-width:1px;
  padding:15px;
}
.contact-details form input::placeholder,
.contact-details form textarea::placeholder {
  letter-spacing:0.03em;
  color: rgba(255,255,255,0.6);
  font-size:16px;
}
.contact-details form input:focus,
.contact-details form textarea:focus {
  border-color:var(--blue);
  outline:none;
}
.contact-details form input[type="submit"] {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-block;
  margin: 20px 0;
  transition: 0.1s all ease-out;
  border-width: 1px;
  border-color: var(--blue);
  background: var(--blue);
  border-radius: 5px;
  padding: 13px 20px 10px;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin:0;
}

.contact-details form label{
  display:none;
}
.contact-details form label + br{
  display:none;
}
.contact-details .address{
  padding-top:30px;
}


/*film planner */

.grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    display:grid;
}

@media only screen and (max-width: 1485px) {
    .grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media only screen and (max-width: 1020px) {
    .grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media only screen and (max-width: 600px) {
    .grid {
        grid-template-columns:1fr
    }
}

.film-card {
    flex-direction: column;
    height: 100%;
    box-shadow: rgba(0,0,0,.1) 4px 0px 7px;
    background-color: #fff;
    border-radius:5px;
    overflow:hidden;
}

.film-card__image-container {
    position: relative;
    overflow: hidden;
    z-index: 1;
    outline: none;
    display:block;
    height:0;
    padding-bottom:150%;
}

.film-card__image-container:after {
    content: "";
    display: block;
    padding-bottom: 125%
}

.film-card__image {
    position:absolute;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s
}

.film-card__image-placeholder {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--colour, #e90546);
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.film-card__image-placeholder:after {
    content: "";
    display: block;
    height: 150%;
    width: 100%;
    position: absolute;
    top: 0%;
    right: -40%;
    background-color: rgba(0,0,0,.1);
    transform-origin: center;
    -webkit-transform: rotate(36.6deg);
    -moz-transform: rotate(36.6deg);
    -ms-transform: rotate(36.6deg);
    -o-transform: rotate(36.6deg);
    transform: rotate(36.6deg);
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s
}

.film-card__image-logo {
    position: relative;
    z-index: 3;
    width: 130px;
    height: 130px;
    opacity: .85;
    margin-bottom: 30px;
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s
}

@media only screen and (max-width: 1650px) {
    .film-card__image-logo {
        width:100px;
        height: 100px;
        margin-bottom: 15px
    }
}

.film-card__artwork-coming-soon {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none
}

@media only screen and (max-width: 1650px) {
    .film-card__artwork-coming-soon {
        font-size:20px
    }
}

.film-card__detail-container {
    flex-direction: column;
    padding: 10px 70px 10px 15px;
    flex: 1;
    position:relative;
}

.film-card__title {
    font-size: 21px;
    line-height:24px;
    margin-bottom: 8px
}

.film-card__title-link {
    color: #000;
    text-decoration: none;
    outline: none
}

.film-card__star-rating {
    font-size: 13px;
    margin-bottom: 15px
}

.film-card__star {
    margin: 0px 2px;
    color: #e90546
}

.film-card__star:first-child {
    margin-left: 0px
}

.film-card__star:last-child {
    margin-right: 0px
}

.film-card__genres {
    margin-bottom: 10px
}

.film-card__genres--top-ten {
    margin-top: auto;
    margin-bottom: 0px
}

.film-card__release-date {
    line-height: 1;
    color: #e90546;
    margin:0;
    text-transform:uppercase;
    margin-bottom:14px;
}

.film-card__certificate-logo {
    width: 45px;
    height: auto;
    display: block;
    margin-top: auto;
    position: absolute;
    top: 25px;
    right: 15px;
}

.film-card:hover .film-card__image {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2)
}

@media only screen and (max-width: 1250px) {
    .film-card:hover .film-card__image {
        -webkit-transform:scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
}

.film-card:hover .film-card__image-placeholder:after {
    -webkit-transform: rotate(40.6deg);
    -moz-transform: rotate(40.6deg);
    -ms-transform: rotate(40.6deg);
    -o-transform: rotate(40.6deg);
    transform: rotate(40.6deg)
}

.film-filters {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
    display:grid;
    margin:0 0 3%;
}

@media only screen and (max-width: 1320px) {
    .film-filters {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media only screen and (max-width: 755px) {
    .film-filters {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media only screen and (max-width: 500px) {
    .film-filters {
        grid-template-columns:1fr;
        grid-gap: 8px
    }
}

.film-filters__field-container--dropdown {
    position: relative
}

.film-filters__field-container--dropdown:before {
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.film-filters__field-container--search {
    grid-column: span 2;
    border:1px solid rgba(var(--blue-rgb),1);
    border-radius:5px;
    display:flex;
}

@media only screen and (max-width: 500px) {
    .film-filters__field-container--search {
        grid-column:span 1
    }
}

.film-filters__select {
    width: 100%;
    border-radius:5px;
    color: #fff;
    border:1px solid rgba(var(--blue-rgb),1);
    background:rgba(var(--blue-rgb),0.1);

    cursor: pointer;
    outline: none;
    padding: 16px 20px 13px;
    font-size: 16px;
    text-transform: capitalize;
    appearance: none;

    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}
.film-filters__select option{
  color:#000;
}
@media only screen and (max-width: 500px) {
    .film-filters__select {
        padding:12px 35px 12px 10px
    }
}

.film-filters__title-search {
    width: calc(100% - 61px);
    border: none;
    background-color: rgba(var(--blue-rgb),0.1);
    outline: none;
    color: #fff;
    font-size: 16px;
    padding: 15px 20px;
    appearance: none;
    border-radius: 0px;

}

.film-filters__title-search::-webkit-input-placeholder {
    color: #fff;
    font-size:14px;
}

.film-filters__title-search:-moz-placeholder {
  color: #fff;
  font-size:14px;
}

.film-filters__title-search::-moz-placeholder {
  color: #fff;
  font-size:14px;
}

.film-filters__title-search:-ms-input-placeholder {
  color: #fff;
  font-size:14px;
}

@media only screen and (max-width: 500px) {
    .film-filters__title-search {
        padding:10px
    }
}

.film-filters__search-submit {
    font-size: 22px;
    width: 61px;
    cursor: pointer;
    border: none;
    background-color: var(--blue);
    outline: none;
    appearance: none;
    border-radius: 0px;
    position:relative;
}
.film-filters__search-submit:after {
  content:"";
  position:absolute;
  top:0;right:0;left:0;bottom:0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1zZWFyY2giIGZpbGw9Im5vbmUiIGhlaWdodD0iMjQiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iOCIvPjxsaW5lIHgxPSIyMSIgeDI9IjE2LjY1IiB5MT0iMjEiIHkyPSIxNi42NSIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  filter: invert(1);

}

.film-filters__search-submit:before {
    display: block;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.film-filters__search-submit:hover:before {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08)
}

.film-trailer {
    margin-bottom: 70px
}

.film-similar__slider {
    margin-left: -10px;
    margin-right: -10px
}

.film-similar__slider .slick-list {
    padding: 5px 0px
}

.film-similar__slider-item {
    margin: 0px 10px;
    outline: none
}

.pagination {
    margin-top: 50px
}

.pagination ul {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px;
    list-style: none;
    display:flex;
}

.pagination ul li {
    justify-content: center;
    align-items: center;
    margin: 0px 10px 10px;
    text-align: center
}

.pagination ul li a {
    width: 35px;
    height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    display: block;
    line-height: 1;
    text-decoration: none;
    padding: 10px 0px;
    box-sizing:border-box;
}

.pagination ul li.active a {
    background-color: #e90546;
    color: #fff
}

.pagination ul li.first,.pagination ul li.last {
    font-size: 25px
}

.pagination ul li.first a,.pagination ul li.last a {
    padding: 0px;
    width: auto;
    height: auto
}

.no-results {
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.no-results__title {
    margin-bottom: 30px;
    font-size: 35px
}

.category-block {
    background-color: var(--colour, #010402);
    color: #fff;
    position: relative;
    padding: 6px 15px;
    line-height: 1;
    font-size: 12px;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    outline: none;
    overflow: hidden
}

.category-block:before {
    content: "";
    background-color: rgba(0,0,0,.2);
    left: -50%;
    right: -50%;
    top: -20%;
    bottom: 110%;
    display: block;
    position: absolute;
    transform-origin: 25% 25%;
    transform: rotate(-36deg);
    -webkit-transition: all .35s .21s;
    -moz-transition: all .35s .21s;
    -ms-transition: all .35s .21s;
    -o-transition: all .35s .21s;
    transition: all .35s .21s
}

.category-block:hover:before {
    bottom: -300%
}

.category-block__text {
    position: relative;
    z-index: 2
}

.genre-list {
    flex-wrap: wrap;
    font-size: 12px;
    text-transform: uppercase;
    display:flex;
    margin:0;
    padding:0;
    list-style:none;
}

.genre-list__item {
    margin: 0px 5px 5px 0px
}


.film-banner {
    padding-top: 100px;
    padding-bottom: 140px;
    position: relative;
    /*background-color: var(--colour, #e90546)*/
}

@media only screen and (max-width: 1350px) {
    .film-banner {
        padding-bottom:40px
    }
}

.film-banner:before {
    content: "";
    display: block;
    z-index: 2;
    background-color: rgba(0,0,0,.55)
}


.film-banner__image {
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.85)
}

.film-banner__content {
    position: relative;
    align-items: center;
    justify-content: space-between;
    align-items:flex-start;
    display:flex;
}



.film-banner__detail-container {
    flex-direction: column;
    width: 50%;
    color: #fff
}

@media only screen and (max-width: 1350px) {
    .film-banner__detail-container {
        width:85%
    }
}

@media only screen and (max-width: 950px) {
    .film-banner__detail-container {
        width:95%
    }
}

@media only screen and (max-width: 750px) {
    .film-banner__detail-container {
        width:100%
    }
}

.film-banner__title-block {
    align-items: flex-start;
    display:flex;
}

@media only screen and (max-width: 750px) {
    .film-banner__title-block {
        flex-direction:column
    }
}

.film-banner__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 54px;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  font-weight: 600;
}

@media only screen and (max-width: 1320px) {
    .film-banner__title {
        font-size:55px;
        line-height: 65px;
        margin-bottom: 20px
    }
}

@media only screen and (max-width: 700px) {
    .film-banner__title {
        font-size:40px;
        line-height: 50px;
        margin-bottom: 10px
    }
}

@media only screen and (max-width: 400px) {
    .film-banner__title {
        font-size:30px;
        line-height: 45px;
        margin-bottom: 10px
    }
}

.film-banner__certificate-logo {
    width: auto;
    height: 30px;
    margin-left: 20px;
    margin-top:unset;
}

@media only screen and (max-width: 750px) {
    .film-banner__certificate-logo {
        margin-left:0px
    }
}

.film-banner__details {
    flex-direction: column;
    margin-bottom: 30px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 21px;
    margin-bottom:40px;
}


.film-banner__detail-item {
    margin-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
    display: flex;
    margin: 0;
    gap: 20px;
}

@media only screen and (max-width: 900px) {
    .film-banner__detail-item {
        flex-wrap:wrap
    }
}

.film-banner__detail-item:last-child {
    margin-bottom: 0px
}

.film-banner__detail-item-label {
    width: 150px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.03em;
    font-weight: 700;
}

@media only screen and (max-width: 900px) {
    .film-banner__detail-item-label {
        width:100%;
        margin-bottom: 8px
    }
}

.film-banner__detail-item-content {
    width: calc(100% - 150px)
}


@media only screen and (max-width: 900px) {
    .film-banner__detail-item-content {
        width:100%
    }
}

.film-banner__trailer-link-container {
    margin-top: 40px
}

@media only screen and (max-width: 1350px) {
    .film-banner__trailer-link-container {
        margin-top:0px
    }
}

@media only screen and (max-width: 750px) {
    .film-banner__trailer-link-container--cert-margin {
        margin-top:-40px;
        margin-left: 55px
    }
}

.film-banner__description {
  font-size: 24px;
  line-height: 30px;
  margin: 24px 0 12px;
}




.film-banner__trailer-link {
    align-items: center;
    cursor: pointer;
    color: #fff;
    text-decoration: none
}

.film-banner__trailer-link:hover .film-banner__trailer-link-circle {
    background-color: #fff
}

.film-banner__trailer-link:hover .film-banner__trailer-link-text {
    text-decoration: none
}

.film-banner__trailer-link-circle {
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 25px;
    background-color: #e90546;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

@media only screen and (max-width: 1500px) {
    .film-banner__trailer-link-circle {
        width:50px;
        height: 50px
    }
}

@media only screen and (max-width: 1350px) {
    .film-banner__trailer-link-circle {
        margin-right:15px
    }
}

@media only screen and (max-width: 750px) {
    .film-banner__trailer-link-circle {
        width:40px;
        height: 40px
    }
}

@media only screen and (max-width: 380px) {
    .film-banner__trailer-link-circle {
        margin-right:0px
    }
}

.film-banner__trailer-link-play {
    color: #171717;
    font-size: 21px;
    width: 15px;
    height: 17px
}

@media only screen and (max-width: 1500px) {
    .film-banner__trailer-link-play {
        font-size:17px;
        width: 13px;
        height: 15px
    }
}

@media only screen and (max-width: 750px) {
    .film-banner__trailer-link-play {
        font-size:13px;
        width: 10px;
        height: 12px
    }
}

.film-banner__trailer-link-text {
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px
}

@media only screen and (max-width: 380px) {
    .film-banner__trailer-link-text {
        display:none
    }
}

.film-banner__genres {
    margin-bottom: 25px
}

.film-banner__review-info {
    align-items: center;
    margin-bottom: 40px
}

@media only screen and (max-width: 750px) {
    .film-banner__review-info {
        margin-top:20px;
        order: 2
    }
}

.film-banner__star-rating {
    font-size: 13px;
    margin-bottom: 0px;
    margin-right: 25px
}

.film-banner__star {
    margin: 0px 2px;
    color: #e90546
}

.film-banner__star:first-child {
    margin-left: 0px
}

.film-banner__star:last-child {
    margin-right: 0px
}

.film-banner__review-link-container {
    line-height: 1;
    margin-bottom: 0px
}

.film-banner__review-link {
    color: #fff
}

.film-banner__review-link:hover {
    text-decoration: none
}

.film-banner__artwork-panel-container {
    width: 45%;
    align-items: center;
    flex-direction: column;
    display:flex;
}

@media only screen and (max-width: 1500px) {
    .film-banner__artwork-panel-container {
        align-items:flex-end
    }
}


.film-banner__artwork-panel {
    max-width: 420px;
    width: 100%
}

@media only screen and (max-width: 1350px) {
    .film-banner__artwork-panel {
        max-width:300px
    }
}

@media only screen and (max-width: 800px) {
    .film-banner__artwork-panel {
        max-width:unset
    }
}

.film-banner__artwork-image {
    width: 100%;
    height: 100%;
    display: block
}

.film-banner__artwork-placeholder-container {
    overflow: hidden;
    position: relative;
    background-color: var(--colour, #e90546);
    display:flex;
}

.film-banner__artwork-placeholder-container:before {
    content: "";
    display: block;
    padding-bottom: 148%
}

.film-banner__artwork-placeholder-container:after {
    content: "";
    display: block;
    height: 150%;
    width: 100%;
    position: absolute;
    top: 0%;
    right: -40%;
    background-color: rgba(0,0,0,.1);
    transform-origin: center;
    -webkit-transform: rotate(36.6deg);
    -moz-transform: rotate(36.6deg);
    -ms-transform: rotate(36.6deg);
    -o-transform: rotate(36.6deg);
    transform: rotate(36.6deg);
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s
}

.film-banner__artwork-placeholder {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display:flex;
}

.film-banner__image-logo {
    position: relative;
    z-index: 3;
    width: 130px;
    height: 130px;
    opacity: .85;
    margin-bottom: 30px;
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s
}

.film-banner__artwork-coming-soon {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    font-size: 25px;
    text-decoration: none
}


ul.stages{
  width:100%;
  list-style-type: none;
  display:flex;
  display:inline-flex;
  gap:6.25%;
  margin:10% 0;
  margin:1% 0 10%;
  padding:0;
}

ul.stages li{
  flex:0 0 15%;
  text-align:center;
  display:flex;
  flex-direction:column;
  position:relative;
}
ul.stages.four{
  justify-content: center;
}
ul.stages:not(.clean) li .icon:after {
  content: "";
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: absolute;
  right: 0;
  top: 50%;
  width: 25%;
  transform: translateX(140%);
}
ul.stages li:last-child .icon:after {
  display:none;
}

ul.stages li .icon{
  border:2px solid rgba(255,255,255,0.2);
  border-radius:50%;
  width:100%;
  height:0;
  padding-bottom:100%;
  display:block;
  margin-bottom:20px;
  position:relative;

  --p: 20;
  --b: 10px;
  --c: rgba(255,255,255,1);
  aspect-ratio: 1;
  place-content: center;

}

ul.stages:not(.clean) li .icon:before {
  background: radial-gradient(farthest-side,var(--c) 98%,#0000) top/var(--b) var(--b) no-repeat,conic-gradient(var(--c) calc(var(--p)*1%),#0000 0);
  background-size: 0 0,auto;
  border-radius: 50%;
  content: "";
  inset: -5px;
  mask: radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
  position: absolute;
}

ul.stages li .icon.animate {
  animation: p 1s .5s both
}

@keyframes p {
    0% {
        --p: 0
    }
}
  ul.stages li .icon .num{
    position:absolute;
    background:#fff;
    color:#000;
    border-radius:50%;
    width:20px;
    height:20px;
    font-size:14px;
    font-weight:600;
    text-align:center;
    line-height:20px;
    top:0;
    left:50%;
    transform:translate(-50%,-50%);
  }
  ul.stages li .icon svg{
    position:absolute;
    width:50%;
    height:auto;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    stroke:var(--blue);
    stroke-width:1;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .outdoor-scope ul.stages li .icon svg{
    stroke:var(--magenta);
  }

ul.stages li .title{
  display:block;
  font-weight:600;
  font-size:21px;
  line-height:24px;
  margin:10px 0 10px 0;
}

ul.stages li .desc{
  font-size:16px;
  line-height:21px;

}

ul.stages.long{
  flex-wrap:wrap;
}
ul.stages.long li .icon:after{
  display:none;
}
ul.stages.long li{
  padding-bottom: 5%;
  flex-direction: row;
  flex: 0 0 29%;
  text-align: left;
  gap: 20px;
  align-items: center;
}
ul.stages.long li .icon{
  flex: 0 0 30%;
  padding-bottom: 30%;
  margin: 0px;
  border: 0;
}
ul.stages.long li .icon svg{
  width:70%;
}
ul.stages.long li .title{
  margin:0 0 5px 0;
}
ul.stages li:nth-child(4n) .icon svg {
    stroke: var(--yellow);
}
ul.stages li:nth-child(5n) .icon svg {
        stroke: var(--magenta);
}


ul.stages.long li:after {
    content":";content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.2);
    right: -15%;
}
ul.stages.long li:before {
    content":";
    content: "";
    position: absolute;
    width: calc(100% + 21.5%);
    height: 1px;
    position: absolute;
    top: 0;
    right: unset;
    background: rgba(255,255,255,0.2);
    left: -6.25%;
    top: -15%;
}

ul.stages.long li:nth-child(-n+3):before{
    display:none;
}

    ul.stages.long li:nth-child(3n):after{
    display:none;
}

.slate{
  width:80%;
  margin:0 10%;
}

.logo-spread {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content:center;
    align-items:center;
    gap:3%;
    margin: 5% 0 0 0;
}

.logo-spread img{
    width: 8%;
    margin-bottom:3%;
    max-height:70px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}


@media screen and (max-width: 1300px) {
  .page-intro.homesplash{
    min-height:380px;
  }
}


@media screen and (max-width: 1000px) {
    .container{
      padding:0 20px;
    }
    header.true + .container,
    header.true + canvas + .container{
      margin-top:60px;
    }

    .menu-toggle{
      display: flex;
      flex-direction: column;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 40px;
      overflow: hidden;
      padding: 0 20px;
      width: 66px;
      height: 73px;
      transition: all 0.2s ease-in;
      justify-content: center;
      gap: 5px;
    }

    .menu-toggle span {
      background: #fff;
      border-radius: 3px;
      height: 2px;
      margin: 0;
      transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .menu-toggle span:nth-of-type(1) {
    		width: 100%;
    }

    .menu-toggle span:nth-of-type(2) {
    		width: 100%;
    }

    .menu-toggle span:nth-of-type(3) {
    		width: 100%;
    }

    .toggled .menu-toggle span:nth-of-type(1) {
    		transform-origin: bottom;
    		transform: rotatez(45deg) translate(5px,5px);
    }

    .toggled .menu-toggle span:nth-of-type(2) {
    		transform-origin: top;
    		transform: rotatez(-45deg)
    }

    .toggled .menu-toggle span:nth-of-type(3) {
    		transform-origin: bottom;
    		width: 50%;
    		transform: translate(10px,-3px) rotatez(45deg);
    }

    .menu-toggle:focus{
    	outline: none;

    }


    header.true nav > ul{
    	position:fixed;
    	transform:translateX(calc(100vw - 66px));
    	transition:all 0.2s ease-in;
    	background:#fff;
    	height:100vh;
      width: calc(100vw - 66px);
      padding-top: 24px;
      z-index: 2;
      overflow:auto;
      right:0;
      top:0;
      display: block;
      list-style: none;
      margin: 0;
      padding-left: 0;

    }
    header.true nav.main-navigation.toggled > ul{
    	transform:none;
    	transition:all 0.2s ease-out;

    }

    header.true nav.main-navigation.toggled .menu-toggle{
    	transform:translateX(calc(-100vw + 66px));
    	transition:all 0.2s ease-out;
      background-color:var(--basecolor);

    }



    header.true nav > ul li {
    	position: relative;
    }

    header.true nav > ul > li a {
      display: block;
      text-decoration: none;
      text-transform: uppercase;
      color: #000;
      padding: 18px 20px;
      position: relative;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      margin: 0 10px;

    }
    header.true nav > ul > li.current_page_item > a:after,
    header.true nav > ul > li.current-page-ancestor > a:after{
      display:none;
    }
    header.true nav > ul > li.current_page_item > a,
    header.true nav > ul > li.current-page-ancestor > a{
      color:var(--magenta);
    }

    header.true{
      height: 73px;
      width: 100%;
      border-radius: 0;
      border-width: 0 0 1px 0;
      margin: 0;
    }
    header.true h1{
      margin:0 0 0 10px;
    }
    .logohead a{
      width:121px;
      height:53px;
    }


    .page-intro .graphic{
      display:none;
    }
    .page-template-digital .page-intro.homesplash{
      min-height: unset;
    }


    .page-intro .demo{
      width: 74%;
      left: 13%;
      padding: 5.5% 3% 37%;
      z-index:-1;
    }
    .page-intro .demo > span{
      padding-bottom:calc(12.57% - 2px);
      border-width:1px;
    }



    .page-intro .demo .lines.blue{
      background: linear-gradient(to left, #0d0d0d, #0d0d0d 3px, transparent 3px, transparent),
                  linear-gradient(to right, #0d0d0d, #0d0d0d 3px, transparent 3px, transparent),
                  linear-gradient(to top, #0d0d0d, #0d0d0d 3px, transparent 3px, transparent),
                  linear-gradient(to bottom, #0d0d0d, #0d0d0d 2px, transparent 2px, transparent),
                  repeating-linear-gradient(to top, var(--blue), var(--blue) 1px, #0d0d0d 1px, #0d0d0d 4px) !important;
      position:relative;
    }
    .page-intro .demo .lines.magenta{
      background: linear-gradient(to left, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
                  linear-gradient(to right, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
                  linear-gradient(to top, #0d0d0d, #0d0d0d 20px, transparent 20px, transparent),
                  linear-gradient(to bottom, #0d0d0d, #0d0d0d 5px, transparent 5px, transparent),
                  repeating-linear-gradient(to top, var(--magenta), var(--magenta) 1px, #0d0d0d 1px, #0d0d0d 4px) !important;
      position:relative;
    }
    .page-intro .demo .lines.yellow{
      background: linear-gradient(to left, #0d0d0d, #0d0d0d 3px, transparent 3px, transparent),
                  linear-gradient(to right, #0d0d0d, #0d0d0d 3px, transparent 3px, transparent),
                  linear-gradient(to top, #0d0d0d, #0d0d0d 3px, transparent 3px, transparent),
                  linear-gradient(to bottom, #0d0d0d, #0d0d0d 2px, transparent 2px, transparent),
                  repeating-linear-gradient(to top, var(--yellow), var(--yellow) 1px, #0d0d0d 1px, #0d0d0d 4px) !important;
      position:relative;
    }

    .generic-text{
      padding-bottom:18px;
      width:auto;
    }
    .generic-text.double:after{
      width:100%;
    }


    .generic-text h1{
      font-size:48px;
      line-height:48px;
      margin: 0 0 6px 0;
    }
    .generic-text p.byline{
      font-size: 21px;
      line-height: 24px;
      margin: 0;
    }

    .splash{
      height:100vw;
    }
    .splash:before{
      height:40%
    }
    .splash:after{
      height:35%;
    }
    body:before{
      opacity:0.3;
    }
    .splash img + .description{
      right: 15px;
      top: 85px;
      font-size: 12px;
      padding: 5px;
    }

    .splash.screens{
      flex-direction: column-reverse;
      margin-top:80px;
      padding:0;
      height:unset;

    }
    .splash.screens .visuals{
      overflow:hidden;
      border-bottom:1px solid #fff;
      flex:unset;
      height:80vw;
    }
    .splash.screens > .text{
      padding:0 20px;
    }
    .splash.screens .text .page-intro{
      padding-top:0;
    }
        .splash.screens.case-study{
          padding-top:5vh;
        }
    .splash.screens.case-study .page-intro .text p{
      font-size: 16px;
      line-height: 21px;
    }
    .splash.screens.case-study .page-intro .text .results{
      padding:10px 20px;
    }
    .splash.screens.case-study .page-intro .text .results h3{
      font-size: 24px;
      line-height: 30px;

    }
    .splash.screens.case-study .visuals{
      border-bottom:0
    }
    .splash.screens.case-study .visuals:before{
      content:"";
      position:absolute;
      bottom:0;
      left:10px;
      width:calc(100% - 20px);
      height:1px;
      background:#fff;

    }
    .splash.screens.case-study.app .visuals{
      flex-wrap:nowrap;
      height:unset;
    }
    .splash.screens.case-study .page-intro .text .results ul li{
      font-size:14px;
      padding:10px 0;
    }
    .splash.screens.case-study .page-intro .text .results ul li svg{
      flex:0 0 8%;
    }
    ul.stages.long{
      padding:0;
    }
    ul.stages.long li{
      flex-direction:column;
      flex:0 0 45%;
      text-align:center;
      gap:5px;
      margin-bottom:0;
    }
    ul.stages.long li .desc{
      font-size:12px;
      line-height:14px;
    }
    ul.stages.long li .title{
      font-size:16px;
      line-height:19px;
    }
    ul.stages.long li .icon{
      flex: unset;
      padding-bottom: unset;
      height: auto;
    }
    ul.stages.long li .icon svg{
      width:50%;
    }
    ul.stages.long li:after,
    ul.stages.long li:before{
      display:none;
    }



    .badge-of-honour{
      top: 75vw;
      right: 5vw;
      z-index:3;
      height: 20vw;
      width: 20vw;
    }
    .badge-of-honour .figures{
      font-size:2vw;
    }
    .badge-of-honour .figures span.number{
      font-size:4.5vw;
    }


    .thumbnails picture{
      flex:0 0 32%;
      padding-bottom:20%;
    }


    .page-intro{
      flex-direction:column;
      gap:0;
      max-width:unset;
      padding-top:30px;
    }
    .page-intro.homesplash{
      min-height:unset;
    }
    .page-intro .text{
      padding-top:26px;
    }

    .page-intro .text h1{
      font-size: 36px;
      line-height: 36px;
      margin: 0 0 6px;
    }


    .page-intro .text h2,
    .page-intro .text h1 + h2{
      font-size: 24px;
      line-height: 30px;
      margin: 0 0 6px;
    }
    .page-intro .text h3{
      margin:24px 0 12px 0;
      /*text-align: right; whaaat*/
    }
    .page-intro .text p{
      font-size: 16px;
      line-height: 22px;
      margin: 0 0 6px;
    }
    .page-intro .text p:first-child{
      font-size: 21px;
      font-weight: 600;
      line-height: 24px;
    }


    .group-show{
      flex-direction: column;
      gap: 15px;
      margin: 0;
      width: 100%;

    }
    .group-show a,
    .group-show > div{
      padding:5px 20px 10px;
    }
    .group-show a.cinema,
    .group-show > div.cinema{
      background:rgba(var(--blue-rgb),0.1);
    }
    .group-show a.outdoor,
    .group-show > div.outdoor{
      background:rgba(var(--magenta-rgb),0.15)
    }
    .group-show a.digital,
    .group-show > div.digital{
      background:rgba(var(--yellow-rgb),0.1);
    }
    .group-show a h3,
    group-show > div h3{
      width:170px;
      height:74px;
      margin:15px 0 10px;
    }
    .group-show a h4,
    .group-show > div h4{
      font-size: 18px;
      line-height: 18px;
      margin: 0 0 6px 0;
    }
    .group-show a p,
    .group-show > div p{
      font-size: 14px;
      line-height: 19px;
    }
    .group-show a .btn,
    .group-show > div .btn{
      font-size:12px;
    }

    .mason{
      margin:10% auto;
    }
    .mason .text-block-list-item,
    .mason.doubled .text-block-list-item,
    .mason.doubled.small .text-block-list-item{
      flex:0 0 100%;
    }
    .mason .text-block-list-item .container{
      margin:0 20px;
      gap:0;
    }

    .text-block-list-item .container{
      flex-direction:column-reverse;
      border-radius: 5px;
      margin:0 20px;
    }
    .text-block-list-item.reverse .container{
      flex-direction:column-reverse;
    }


    .text-block-list-item .container .text{
      width:100%;
      padding:7% 4%;
    }
    .text-block-list-item .container .text h2,
    .mason .text-block-list-item .container .text h2{
      font-size: 30px;
      line-height: 30px;
      font-weight: 700;
      margin: 0 0 14px;
    }
    .text-block-list-item .container .text p{
      font-size: 16px;
      line-height: 21px;
      margin: 0 0 6px 0;
    }
    .text-block-list-item .container .text ul{
      font-size: 16px;
      line-height: 21px;

    }
    .text-block-list-item .container .text p + pre{
      margin:5px 0;
    }
    .text-block-list-item .image{
      position: relative;
      width: 100%;
      height: 100%;
    }


    .btn{
      margin: 10px 0;
    }
    ul.stages{
      flex-wrap:wrap;
      gap:8%;
      padding:0 4%;
    }
    ul.stages li{
      flex:0 0 45%;
      margin-bottom:10%;
    }
    ul.stages li .icon{
      width:80%;
      padding-bottom:80%;
      margin:0 10% 8%;
    }
    ul.stages li .icon:after{
      display:none;
    }
    ul.stages li .title{
      font-size:18px;
      line-height:21px;
      margin:5px 0;
    }
    ul.stages li .desc{
      font-size: 14px;
      line-height: 18px;
    }

    .unit{
      flex:0 0 70%;
    }
    .unit .text{
      margin:15px 30px 15px 15px;
    }
    .unit h3{
      font-size:18px;
      line-height:24px;
    }
    .unit p{
      font-size:14px;
      line-height:18px;
    }

    .serfs{
      margin:0;
      gap:50px;
    }
    .employee{
      flex:0 0 100%;
      background:transparent;
      align-items: stretch;
    }
    .employee .image{
      height:unset;
      padding:0;
      border-radius:0;
    }
    .employee .text{
      padding:5px;
    }
    .employee .text h3{
      font-size:16px;
    }
    .employee .text span.title{
      font-size:14px;
    }

    .category-rail.wrap{
      flex-wrap:nowrap;
    }

    .study{
      flex-direction: column;
      margin:24px 0;
    }
    .study .title{
      flex: 0 0 100%;
      text-align: left;
    }
    .study .title h2{
      font-size: 36px;
      line-height: 36px;
      padding:0;
    }
    .study .content{
      flex-direction:column;
    }
    .study .content .text{
      flex-direction:column;
    }
    .study .content .text p, .study .content .text ul{
      margin:0 0 6px 0;
    }
    .study .content .text h3{
      font-size: 21px;
      line-height: 24px;
      margin:0 0 6px 0;
    }
    .study .content .text .description{
      border-right:0;
      padding:0;
    }
    .study .content .chart{
      overflow:auto;
      margin-right:-20px;
      width:calc(100% + 20px);
    }
    .study .content .chart canvas{
      width:200%;
    }


    .contact-banner{
      height:70px;
    }
    .contact-banner .container .message{
      font-size: 14px;
      line-height: 16px;
    }
    .contact-banner .container svg{
      flex:0 0 10%;

    }

    footer .container{
      flex-direction:column;
      padding:0 10px;
    }
    footer .logohead{
      margin-bottom:15px;
    }
    footer .address{
      order:2;
      margin:10px 0;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      padding:10px;
    }
    footer .address > p{
      margin:0 0 12px 0;
      font-size: 14px;
      line-height: 18px;
    }

    footer .address > p.tel{
      margin-bottom:0;
    }
    footer .footer-nav{
      order: 1;
      flex: 0 0 100%;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      margin: 0;
      padding-bottom:12px;
      padding:20px 0 20px;
    }
    footer .footer-nav{
      column-count:2;
    }
    footer .footer-nav ul a{
      font-size:14px;
      line-height:14px;
      padding-left:10px;
    }

    footer .masthead{
      order:3;
      padding:10px 10px 20px;
    }
    footer .masthead p{
      font-size:14px;
      line-height:19px;
    }

    footer .masthead .group-logos{
      gap:15px;
    }
    footer .masthead .group-logos > *{
      flex:0 0 calc((100% / 3) - 15px)
    }
}
