@font-face {
  font-family: Graphik;
  src: url('../fonts/Graphik-Light-Web.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Graphik;
  src: url('../fonts/Graphik-Regular-Web.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Graphik;
  src: url('../fonts/Graphik-RegularItalic-Web.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Para;
  src: url('../fonts/Para-Grand-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --crimson: #ff2651;
  --white-smoke: #f8f8f8;
  --grey: #7e7e7e;
  --white: white;
  --white-smoke-2: #f8f8f880;
  --charcoal: #1b1b1b;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  font-family: Graphik, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Para, sans-serif;
  font-size: 57px;
  font-weight: 700;
  line-height: 61px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Para, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 40px;
}

a {
  color: var(--crimson);
  text-decoration: none;
}

.blackbg {
  color: var(--white-smoke);
  background-color: #0a0a0a;
  justify-content: center;
  align-items: flex-start;
}

.blackbg.grey {
  background-color: var(--white-smoke);
  flex-direction: row;
  justify-content: center;
  display: block;
}

.navbar {
  background-color: var(--black);
  width: 100%;
  position: fixed;
}

.navbar.white {
  background-color: #fff;
}

.container {
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.navdivdesk {
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: 80px;
  padding-left: 60px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.menu-button {
  padding: 20px;
}

.menu-button.w--open {
  background-color: #0000;
}

.nav-menu {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: 100vw;
  height: 100%;
  margin-top: 0;
  display: flex;
  position: absolute;
}

.nav-item {
  color: #fff;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  width: auto;
  margin-left: 60px;
  padding-left: 95px;
  font-family: Para, sans-serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 39px;
  display: flex;
}

.nav-item.w--current {
  color: #fff;
  background-image: url('../images/nav_line.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
  align-items: flex-end;
  width: auto;
  height: auto;
  margin-left: 60px;
  padding-left: 95px;
  line-height: 39px;
  display: flex;
}

.nav-item.home {
  background-image: none;
  background-position: 0 0;
}

.nav-item.home.w--current {
  background-image: url('../images/nav_line.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.nav-item.home.w--current:hover {
  background-position: 0 100%;
}

.nav-item.projects {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.nav-item.projects:hover {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.nav-item.projects.w--current {
  background-image: url('../images/nav_line.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.navdivmob {
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 250px;
  display: flex;
}

.spacerdiv40 {
  width: 40px;
  height: 40px;
}

.maxwidth1600 {
  width: 100%;
  max-width: 1600px;
  position: relative;
  overflow: visible;
}

.text-white {
  color: #fff;
  margin-bottom: 0;
  font-weight: 300;
}

.spacerdiv60 {
  width: 60px;
  min-width: 60px;
  height: 60px;
}

.textbody {
  font-size: 14px;
  line-height: 19px;
}

.textgrey {
  color: var(--grey);
}

.column {
  padding-left: 0;
  padding-right: 40px;
  display: flex;
}

.column-2 {
  padding-left: 10px;
  padding-right: 40px;
  display: flex;
}

.blackline {
  border-bottom: 1px solid #000;
  flex: none;
  width: 60px;
  height: 14px;
  margin-right: 10px;
}

.line-body-wrapper {
  display: flex;
}

.spacerdiv30 {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
}

.mugshot {
  width: 100%;
}

.text-span-2 {
  font-style: italic;
}

.spacerdiv20 {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
}

.spacerdiv20.hide {
  display: none;
}

.lidiv {
  width: auto;
  height: auto;
  margin-right: 10px;
}

.lidiv.hide {
  display: none;
}

.contacticondiv {
  flex-direction: row;
  flex: 1;
  display: flex;
}

.dividerline {
  border-bottom: 1px solid #dbdbdb;
}

.columns-2 {
  width: 50%;
}

.spacer10 {
  width: 10px;
  height: 10px;
}

.columns-3 {
  margin-left: -10px;
  margin-right: -10px;
}

.text-caption {
  font-size: 12px;
  line-height: 17px;
}

.column-3 {
  flex-direction: row;
  display: flex;
}

.intro-line {
  border-bottom: 1px solid #000;
  flex: none;
  width: 60px;
  height: 21px;
  margin-right: 20px;
}

.headerimg {
  z-index: 0;
  opacity: 1;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  inset: 0 0% 0%;
  overflow: hidden;
}

.headerimg.topleft {
  justify-content: flex-start;
  align-items: flex-start;
}

.imageheader {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  min-width: 100%;
  height: 130vh;
  min-height: 100%;
  position: absolute;
  inset: 0%;
}

.project_header {
  z-index: 2;
  color: var(--white);
  margin-bottom: 10px;
  font-size: 100px;
  font-weight: 700;
  line-height: 105px;
}

.sectionheader {
  justify-content: center;
  width: 100%;
  padding-top: 60px;
  display: flex;
}

.sectionheader.min100vh {
  min-height: 100vh;
}

._60left60right60bottom {
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

._60leftright {
  padding-left: 100px;
  padding-right: 100px;
}

.greybg {
  background-color: var(--white-smoke);
}

.section {
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: visible;
}

.section.greybg {
  background-color: #eee;
  padding-top: 60px;
  padding-bottom: 60px;
}

.htopcentre {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: static;
}

._25pc {
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
  height: 36%;
  display: flex;
}

._75pc {
  width: 75%;
}

.text-span-3 {
  color: var(--black);
}

._50pc {
  width: 50%;
  height: 100%;
}

.hcentre {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.dropinsquareright, .dropinspreadleft {
  padding-left: 120px;
  padding-right: 120px;
}

.imageamin {
  width: 100%;
  height: 100%;
  display: block;
}

.imageamin.mw300 {
  max-width: 400px;
}

.imageamin.mw300.right {
  margin-left: auto;
}

.imageamin.mw300.left {
  margin-right: auto;
}

.imageamin.autoheight {
  height: auto;
}

.imageamin.wm350 {
  max-width: 350px;
}

.divwebimage {
  background-color: #ececec;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 40px 130px 0;
  display: flex;
  overflow: visible;
}

.image-5 {
  width: 100%;
}

.image-6 {
  z-index: 1;
  opacity: 1;
  width: 100%;
  min-width: 100%;
  position: relative;
}

.image-6.absolute {
  z-index: 0;
  height: auto;
  position: absolute;
  inset: 0% auto auto 0%;
}

.divmobimage {
  background-color: #ececec;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 75%;
  padding: 60px;
  display: flex;
}

.hright {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.mobilediv {
  padding: 33px;
}

.left-arrow-2, .right-arrow-2, .slide-nav-2 {
  display: none;
}

._60pc {
  width: 65%;
  position: relative;
}

.imagecarousel {
  width: 100%;
  height: 100%;
}

.swipeblocker {
  z-index: 2;
  position: absolute;
  inset: 0%;
}

._40pc {
  width: 40%;
}

._70pc {
  width: 70%;
}

._70pc.hide {
  display: none;
}

.hbottom {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.htop {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hbottomright {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.hbottomleft {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.hcentreright {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: static;
}

.div-block-10 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-11 {
  width: 30%;
}

.logodiv {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  height: 400px;
  padding: 60px;
  display: flex;
  position: relative;
}

.logodiv.before {
  padding: 60px;
}

.div-block-12 {
  position: absolute;
  inset: 20px auto auto 20px;
}

.phinsysicon {
  width: 350px;
}

.phinsysicon.imageamin {
  background-color: #0000;
}

.div-block-41 {
  justify-content: flex-end;
  align-self: stretch;
  width: auto;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.sponsorlogolink {
  width: auto;
  display: flex;
}

.sponsorlogodiv {
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.sponsorlogo {
  max-height: none;
}

.sponsorlogo.imageamin {
  background-color: #0000;
}

.divphiicon {
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
  display: flex;
}

.htopright {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

._80pc {
  width: 80%;
}

.htopleftspread {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: static;
}

.htopleftspread.switchipad {
  display: flex;
  position: relative;
}

.footer {
  background-color: var(--white);
}

.footer.bgblack {
  background-color: var(--white);
  border-top: 1px solid #f8f8f833;
  justify-content: center;
  display: flex;
}

.footer_wrapper {
  justify-content: space-between;
  width: 100%;
  padding: 20px 100px;
  display: flex;
}

.social_container, .tscs_container {
  align-items: center;
  display: flex;
}

.spacer15 {
  width: 15px;
  min-width: 15px;
  height: 15px;
  min-height: 15px;
}

.footer_txt {
  margin-top: 0;
  font-size: 12px;
  line-height: 17px;
}

.footer_txt.text-white {
  font-weight: 400;
}

.grid {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -40px;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.griditem {
  width: 50%;
  height: 100%;
  padding: 0 10px 40px;
}

.griditem._33 {
  width: 33.33%;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.griditem.hide {
  display: none;
}

.grid-link {
  color: var(--black);
}

.grid-link:hover {
  color: var(--crimson);
  text-decoration: none;
}

._100vh {
  height: 100vh;
}

.link-block {
  width: 100%;
  height: 100%;
  display: block;
}

.div-block-42 {
  border-top: 1px solid #00000080;
  padding-top: 15px;
}

.h2 {
  font-family: Para, sans-serif;
  font-size: 30px;
  line-height: 35px;
}

.text-intro-page {
  font-size: 23px;
  font-weight: 300;
  line-height: 29px;
}

.image-9, .image-10 {
  width: 25px;
}

.footerlink {
  color: var(--black);
}

.footerlink:hover, .footerlink.w--current {
  color: var(--crimson);
}

.footerlink.whitelink {
  color: var(--white-smoke);
}

.footerlink.whitelink:hover {
  color: var(--crimson);
}

.videocontainer {
  width: 100%;
  height: auto;
}

.projectcaptions {
  width: auto;
  height: 100%;
}

.emaillink {
  color: var(--black);
}

.emaillink:hover {
  color: var(--crimson);
}

.text-span-14 {
  color: var(--black);
}

.maxwidth900 {
  width: 100%;
  max-width: 900px;
  display: flex;
  position: relative;
  overflow: visible;
}

.v_centre {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-45 {
  width: 100%;
}

.heading-2 {
  margin-top: 0;
  margin-bottom: 0;
}

.heading-3 {
  font-family: Para, sans-serif;
}

.browserscrollbbs {
  width: 100%;
  min-width: 100%;
  padding-top: 61.7%;
  position: relative;
  overflow: scroll;
}

.quote {
  color: var(--crimson);
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

.text-span-45 {
  color: var(--grey);
}

._60all {
  padding: 60px 100px;
}

.text-span-46 {
  color: var(--grey);
}

.div-block-47 {
  display: flex;
}

.navquicklinks {
  color: var(--white);
  padding-left: 60px;
  display: flex;
}

.navquicklinks:hover {
  text-decoration: none;
}

.whitelinebig {
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--white-smoke) var(--white-smoke) var(--white);
  flex: none;
  width: 80px;
  height: 14px;
  margin-right: 15px;
}

.div-block-48 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.navquicklink {
  color: var(--grey);
}

.navquicklink:hover, .navquicklink.w--current {
  color: var(--white);
}

.navquicklink.hide {
  display: none;
}

.slider_container {
  background-color: var(--charcoal);
  overflow: hidden;
}

.slider_container.harrods {
  background-color: #00cf93;
  display: none;
}

.slide {
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.slider-2 {
  background-color: #0000;
  width: auto;
  height: auto;
}

.mask-2 {
  padding: 60px 20%;
  overflow: visible;
}

.right-arrow-3, .left-arrow-3, .slide-nav-3 {
  display: none;
}

.sliderwrapper {
  padding-left: 60px;
  padding-right: 60px;
}

.fullwidthright {
  padding-left: 20%;
}

.grid-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.fullwidthleft {
  padding-right: 20%;
}

.laptopimg {
  z-index: 3;
  position: static;
}

.laptopwrapper {
  width: auto;
  max-width: 1600px;
  padding: 0;
  position: relative;
}

.laptopcontainer {
  z-index: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: relative;
  overflow: visible;
}

.laptop {
  width: 100%;
  height: 100%;
}

.laptoppagewrapper {
  z-index: 2;
  opacity: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: absolute;
}

.laptoppageheader {
  opacity: 1;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 19%;
  display: flex;
}

.laptoppagescroll {
  width: 100%;
  height: 66.3%;
  overflow: scroll;
}

.laptoppagebottomspacer {
  width: 100%;
  height: 15%;
}

.laptoppagecontainer {
  flex-direction: column;
  align-items: stretch;
  width: 76%;
  height: 100%;
  display: flex;
}

.njheader, .njhomepage {
  width: 100%;
}

.hcentrespread {
  justify-content: space-between;
  display: flex;
}

.grid-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr .5fr;
}

.griddiv {
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 920px;
  display: flex;
}

.gridimg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gridimg.shadow {
  background-color: var(--grey);
  box-shadow: 5px 5px 9px 1px var(--grey);
}

.grid-4 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

._33pccaps {
  width: 33%;
}

._33pccaps.vstretch {
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.htopleftcaps {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: static;
}

.phonewrapper {
  width: 50%;
  max-width: 360px;
  padding: 0;
  position: static;
}

.div-block-51 {
  justify-content: space-between;
  display: flex;
  position: relative;
}

.div-block-52 {
  justify-content: space-between;
  display: flex;
}

.div-block-56 {
  width: 100%;
  height: 100%;
  padding-left: 4.2%;
  padding-right: 3.32%;
  position: absolute;
}

.div-block-57 {
  width: 100%;
  height: 100%;
  overflow: scroll;
}

.div-block-58 {
  position: absolute;
  inset: auto 0% 0%;
}

._85pc {
  width: 85%;
}

._20pc {
  width: 20%;
}

.htopleft {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: static;
}

.grid-5 {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.gridicondiv {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.icontxtdiv {
  border-top: 1px solid #00000026;
  width: 100%;
  margin-top: 10px;
  padding-top: 6px;
}

.spacerdiv120 {
  width: 120px;
  min-width: 120px;
  height: 120px;
  min-height: 120px;
}

.iconimgdiv {
  max-width: 200px;
}

.div-block-59 {
  width: 80%;
  display: flex;
}

.grid-6 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.phonewrapper3 {
  padding: 0;
  position: static;
}

.browserscrollba {
  width: 100%;
  min-width: 100%;
  padding-top: 57%;
  position: relative;
  overflow: scroll;
}

.mobilescroll2 {
  max-width: 650px;
  display: flex;
}

.divwebimagescroller {
  background-color: #ececec;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 40px 16% 0;
  display: flex;
  overflow: visible;
}

.image-12 {
  width: 100%;
}

.text-span-47, .text-span-48 {
  color: var(--black);
}

.grid-7 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}

.text-span-49 {
  font-style: italic;
  font-weight: 400;
}

._60left60right60top {
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.home_grid {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.work_grid_item {
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.work_image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 125%;
  min-width: 125%;
  max-width: 125%;
  height: 125%;
  min-height: 125%;
  position: absolute;
  inset: 0% 0% 0% -20%;
}

.work_grid_text_container {
  opacity: 1;
  color: var(--black);
  background-color: #00000082;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.textred {
  color: var(--crimson);
}

.work_grid_image_container {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 60%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-block-66 {
  display: none;
}

.home_grid_item {
  color: var(--black);
  position: relative;
}

.full_image_grow_container {
  width: 100%;
  height: 200vh;
}

.image_boarder {
  justify-content: space-between;
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}

.widget_section {
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  overflow: visible;
}

.widget_section.scroller {
  display: none;
}

.slide-nav-widget {
  justify-content: center;
  font-size: 8px;
  display: flex;
}

.widget_grid_2_col {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  width: 100%;
}

.widget_grid_4_col {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.h3class {
  font-family: Para, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
}

.cover_image {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0%;
}

.cover_image.top {
  object-position: 50% 0%;
}

.image_container_65 {
  width: 100%;
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.image_container_135 {
  width: 100%;
  padding-top: 135%;
  position: relative;
  overflow: hidden;
}

.div-block-69 {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.home_video_wrapper {
  z-index: 0;
  padding-top: 60px;
  position: relative;
}

.home_video_wrapper.hide {
  display: flex;
}

.home_container {
  align-self: stretch;
  max-width: 100%;
}

.work_text {
  color: var(--white-smoke);
  font-size: 20px;
  font-weight: 400;
  line-height: 23px;
}

.text_max_width {
  width: 40%;
  height: 100%;
}

.title_text_wrapper {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 100px;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.sub_header_wrapper {
  z-index: 2;
  max-width: 480px;
  position: relative;
}

.project_sub_header {
  color: var(--white-smoke);
  font-size: 22px;
  font-weight: 300;
  line-height: 27px;
}

.header_txt {
  align-items: flex-end;
  height: 100vh;
  min-height: 100vh;
  padding-bottom: 60px;
  display: flex;
}

.header_container {
  background-color: var(--black);
  min-height: 150vh;
  overflow: visible;
}

.sub_header_txt {
  align-items: flex-start;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.project_services {
  color: var(--white-smoke);
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}

.texttest {
  z-index: 2;
  max-width: 510px;
  position: relative;
}

.nav_container {
  max-width: 100%;
  height: 100%;
  padding-left: 100px;
  padding-right: 80px;
  display: flex;
}

.navbar_new {
  background-color: var(--white);
  height: 60px;
  position: fixed;
  inset: 0% 0% auto;
}

.nav_wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.nav_item_new:hover, .nav_item_new.w--current {
  color: var(--crimson);
}

.footer_container {
  max-width: 100%;
}

.home_intro_wrapper {
  justify-content: space-between;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  padding: 100px;
  position: relative;
}

.image_grow {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.full_image_grow_boarder {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  display: flex;
  position: sticky;
  top: 0;
}

.whiteline_subhead {
  border-bottom: 1px solid var(--white);
  flex: none;
  width: 60px;
  height: 15px;
  margin-bottom: 3px;
  margin-right: 10px;
}

.div-block-70 {
  align-items: flex-end;
  display: flex;
}

.project_intro {
  color: var(--white-smoke);
  font-size: 22px;
  font-weight: 300;
  line-height: 27px;
}

.home_intro {
  max-width: 570px;
}

.text_intro {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.home_strapline {
  align-items: flex-end;
  margin-right: 60px;
  display: flex;
}

.home_video_scroll_cover {
  z-index: 2;
  position: absolute;
  inset: 0%;
}

.grid-8 {
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
}

.blackline_strapline {
  border-bottom: 1px solid #000;
  flex: none;
  width: 60px;
  height: 0;
  margin-bottom: 4px;
  margin-right: 10px;
}

.strap_txt {
  margin-right: 10px;
}

.home_intro_txt {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.home_video {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-bottom: 0;
}

.strapline_txt_wrapper {
  display: flex;
}

.work_grid_mob_caption_container {
  display: none;
}

.navline {
  border-bottom: 1px solid #000;
  flex: none;
  width: 60px;
  height: 0;
  margin-right: 15px;
  display: none;
}

.scroll_offset {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  position: absolute;
  inset: -59px auto auto 0%;
}

.website_video_container {
  background-image: url('../images/0JEP2019-copy.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding: 140px 100px;
  display: flex;
}

.video_background {
  z-index: 2;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  display: flex;
  position: relative;
}

.image_container_auto {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.auto_image {
  width: 100%;
  min-width: 100%;
  max-width: none;
}

.logo_wrapper {
  border-top: .5px solid #000;
  padding-top: 5px;
}

.logo_image {
  justify-content: center;
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.widget_grid_3_col {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.div-block-75 {
  width: 100vw;
  min-width: 100vw;
  position: sticky;
  top: 140px;
  overflow: hidden;
}

.image-14 {
  width: 120vw;
  min-width: 120vw;
  max-width: 120vw;
}

.div-block-76 {
  height: 500vh;
}

.headerimgmobile {
  z-index: 0;
  opacity: 1;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: none;
  position: sticky;
  inset: 0 0% 0%;
  overflow: hidden;
}

.widget_section_next {
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  display: flex;
  overflow: visible;
}

.next_project_link {
  background-color: var(--black);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  display: flex;
}

.next_project_link:hover {
  background-color: var(--crimson);
  color: var(--white);
}

.privacybodyheader {
  color: var(--black);
}

.preloader {
  z-index: 100;
  background-color: var(--white-smoke);
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  display: none;
  position: fixed;
  inset: 0%;
}

.loading_n {
  width: 87px;
  min-width: 87px;
  height: 76px;
  min-height: 76px;
  position: static;
  inset: 0%;
}

.loading_n_empty {
  z-index: 1;
  width: 87px;
  height: 76px;
  position: absolute;
}

.loading_n_fill {
  z-index: 2;
  align-items: flex-end;
  width: 87px;
  height: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pre_loader_icon_wrapper {
  align-items: flex-end;
  width: 87px;
  height: 50px;
  display: flex;
  position: relative;
}

.home_background_video {
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 700px;
  padding-top: 60px;
  display: none;
}

.background-video {
  width: 100%;
  height: 100%;
}

.background-video-2 {
  object-fit: cover;
  width: 100%;
  height: auto;
  padding-top: 60%;
}

._5050-text-container {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

._5050-text-container.fade_in_trigger {
  justify-content: flex-end;
  align-self: center;
}

.video-widget_grid_2_col {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
  max-width: 100%;
}

._5050-lottie-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.background-video-max-width {
  width: 100%;
  height: auto;
  padding-top: 55%;
}

.video-wrapper-lrg {
  width: 100%;
  position: relative;
}

.background-video-full-width {
  width: 100%;
  height: auto;
  padding-top: 50%;
}

.grid-layout {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.grid-01-image-01 {
  z-index: 2;
  margin-top: 24%;
  position: relative;
}

.grid-01-image-02 {
  position: relative;
}

.grid-01-image-03 {
  z-index: 1;
  margin-top: 140%;
  position: relative;
}

.grid-02-image-03 {
  z-index: 3;
  margin-top: 185%;
  position: relative;
}

.grid-01-image-05 {
  z-index: 3;
  margin-top: 350%;
  position: relative;
}

.grid-layout-wrapper-black {
  background-color: #1a1a1a;
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid-02-image-01 {
  z-index: 2;
  margin-top: 0%;
  position: relative;
}

.grid-02-image-02 {
  z-index: 1;
  margin-top: 80%;
  position: relative;
}

.grid-01-image-04 {
  z-index: 3;
  margin-top: 192%;
  position: relative;
}

.video {
  width: 100%;
  max-width: 100%;
}

.video-2-col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  width: 100%;
  min-width: 100%;
  display: flex;
}

.video-2-col-div {
  flex: 1;
}

.video-2-col-div.fade_in_trigger {
  position: relative;
}

._5050-text-max-width {
  max-width: 500px;
}

.video-mask {
  z-index: 20;
  position: absolute;
  inset: 0%;
}

.video_boarder {
  justify-content: space-between;
  padding-left: 100px;
  padding-right: 100px;
}

.services-header-section {
  height: 70vh;
  min-height: 700px;
  padding-top: 60px;
}

.services_header_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  height: 100%;
}

.services-header-txt-wrapper {
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 100px;
  display: flex;
}

.services_header {
  z-index: 2;
  margin-bottom: 20px;
  font-size: 100px;
  font-weight: 700;
  line-height: 100px;
}

.services-header-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.services-grid-item {
  z-index: 2;
  position: relative;
}

.services-grid-text {
  max-width: 370px;
  margin-top: 20px;
}

.services-grid-header {
  margin-bottom: 10px;
}

.services-grid-layout {
  grid-column-gap: 0px;
  grid-row-gap: 5vw;
  grid-template-rows: auto;
  grid-template-columns: 100px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 100px;
  width: 100%;
}

.service-header-section {
  flex-direction: column;
  height: 100vh;
  min-height: 470px;
  padding-top: 60px;
  display: flex;
}

.service-header-wrapper {
  flex: 1;
  align-items: flex-end;
  padding-bottom: 20px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  position: relative;
}

.service-header-text-wrapper {
  max-width: 550px;
}

.read-more-link {
  margin-top: 10px;
}

.read-more-link:hover {
  text-decoration: underline;
}

.service_body_section {
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: visible;
}

.services_sub_nav {
  z-index: 1000;
  background-color: var(--white);
  flex-wrap: wrap;
  min-height: 60px;
  margin-bottom: 1px;
  padding: 15px 80px;
  display: flex;
  position: sticky;
  inset: auto 0% 0%;
}

.nav-sub-item {
  color: var(--black);
  white-space: nowrap;
  align-items: center;
  padding: 5px 20px;
  display: flex;
}

.nav-sub-item:hover, .nav-sub-item.w--current {
  color: var(--crimson);
}

.services-slider {
  background-color: #ddd0;
  width: 100%;
  height: 100%;
}

.left-arrow-4, .right-arrow-4 {
  display: none;
}

.slide-nav-4 {
  justify-content: center;
  align-items: flex-start;
  height: 60px;
  padding-top: 10px;
  padding-bottom: 0;
  font-size: 10px;
  display: flex;
}

.service-body-wrapper {
  max-width: 650px;
  display: flex;
}

.service-header-intro-wrapper {
  padding-top: 60px;
  padding-bottom: 120px;
}

.project-portal-grid {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.services-portal-header {
  margin-bottom: 20px;
}

.portal-container {
  width: 100%;
  max-width: none;
  padding-left: 100px;
  padding-right: 100px;
}

.team-image {
  padding-top: 70%;
  position: relative;
}

.swiper-container {
  height: 100vh;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.link-block-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.h1-title {
  z-index: 100;
  color: #fff;
  width: 60%;
  font-size: 6em;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 1em;
}

.image-smartphone {
  display: none;
  position: absolute;
}

.image-desktop {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 110%;
  height: 110%;
  position: absolute;
  inset: 0%;
}

@media screen and (max-width: 991px) {
  .navdivmob {
    padding-top: 300px;
  }

  .spacerdiv40.hide-ipad {
    display: block;
  }

  .spacerdiv60._30ipad {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
  }

  .spacerdiv60._20ipad {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
  }

  .column {
    padding-right: 15px;
  }

  .column-2 {
    padding-left: 15px;
    padding-right: 0;
  }

  .spacerdiv20.hideipad {
    display: none;
  }

  .spacerdiv20._60ipad {
    width: 60px;
    height: 60px;
  }

  .columns-2 {
    width: 100%;
  }

  .columns-3 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .headerimg {
    background-color: var(--black);
    display: none;
  }

  .imageheader {
    opacity: 1;
  }

  ._60leftright {
    padding-left: 60px;
    padding-right: 60px;
  }

  ._60leftright._0bottomipad {
    padding-bottom: 0;
  }

  .htopcentre {
    flex-direction: column;
    align-items: flex-start;
  }

  .htopcentre.switchvertical {
    flex-direction: column-reverse;
  }

  ._25pc {
    width: 100%;
  }

  ._25pc.padding {
    padding-left: 60px;
    padding-right: 60px;
  }

  ._75pc, ._50pc {
    width: 100%;
  }

  .hcentre {
    flex-direction: column;
  }

  .dropinsquareright {
    padding-bottom: 0;
  }

  .imageamin.mw300 {
    max-width: none;
  }

  .divwebimage {
    padding-top: 30px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .divmobimage {
    width: 100%;
    padding: 30px 60px;
  }

  .hright {
    flex-direction: column;
  }

  .mobilediv {
    padding: 15px;
  }

  ._60pc, ._40pc {
    width: 100%;
  }

  .hbottom, .htop, .hbottomright, .hbottomleft {
    flex-direction: column;
  }

  .hcentreright {
    flex-direction: column;
    align-items: flex-start;
  }

  .div-block-11 {
    width: 50%;
  }

  .logodiv.before {
    padding: 144px;
  }

  .div-block-41 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .divphiicon {
    align-items: center;
    width: 50%;
  }

  ._80pc {
    width: auto;
  }

  .htopleftspread {
    flex-direction: column;
    align-items: flex-start;
  }

  .htopleftspread.switchipad {
    flex-direction: column-reverse;
  }

  .footer_wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }

  .grid {
    flex-direction: column;
  }

  .griditem {
    width: 100%;
  }

  .griditem._33 {
    width: 100%;
    padding-bottom: 40px;
  }

  .link-block {
    display: block;
  }

  .projectcaptions {
    width: 100%;
  }

  ._60all, .mask-2 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .sliderwrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .laptopwrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .laptopcontainer {
    flex-direction: column;
  }

  ._33pccaps {
    width: 50%;
  }

  .phonewrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  ._85pc {
    width: 100%;
  }

  ._20pc {
    width: 38.8%;
    height: 100%;
  }

  .htopleft {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-5 {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .phonewrapper3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .divwebimagescroller {
    padding-top: 30px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .home_grid {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .work_grid_text_container {
    display: none;
  }

  .work_grid_text {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .textred.hide {
    display: none;
  }

  .work_grid_image_container {
    width: auto;
    height: auto;
  }

  .div-block-66 {
    padding-top: 10px;
    display: none;
  }

  .full_image_grow_container {
    height: auto;
  }

  .image_boarder {
    padding-left: 60px;
    padding-right: 60px;
  }

  .widget_grid_2_col {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .div-block-68 {
    display: none;
  }

  .h3class {
    font-size: 22px;
  }

  .text_max_width {
    width: 100%;
  }

  .title_text_wrapper {
    padding-left: 60px;
  }

  .header_txt {
    padding-bottom: 60px;
  }

  .sub_header_txt {
    padding-left: 60px;
    padding-right: 60px;
  }

  .nav_container {
    padding-left: 60px;
    padding-right: 40px;
  }

  .nav_item_new {
    color: var(--white);
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    font-size: 27px;
    font-weight: 300;
    line-height: 32px;
  }

  .nav_item_new:hover, .nav_item_new.w--current {
    color: var(--black);
  }

  .home_intro_wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 60px;
  }

  .image_grow {
    height: 65vw;
  }

  .full_image_grow_boarder {
    height: auto;
  }

  .text_intro {
    font-size: 18px;
  }

  .home_strapline {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .grid-8 {
    grid-template-columns: 1fr 1fr;
  }

  .image-13 {
    filter: invert();
    display: block;
  }

  .nav-menu-2 {
    z-index: 0;
    background-color: #ff2651ed;
    width: 70vw;
    height: 100vh;
    padding-top: 120px;
    padding-left: 30px;
    inset: 0% 0% 0% auto;
  }

  .menu-button-2 {
    background-color: #0000;
  }

  .menu-button-2.w--open {
    z-index: 2;
    background-color: #0000;
  }

  .home_intro_txt {
    flex-direction: column;
    align-items: flex-start;
  }

  .work_grid_mob_caption_container {
    align-items: flex-end;
    padding-top: 10px;
    padding-left: 60px;
    display: flex;
  }

  .navline {
    border-bottom-color: var(--white-smoke);
    width: 100px;
    padding-top: 25px;
    display: flex;
  }

  .nav_item_wrapper {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .nav_menu_wrapper {
    display: flex;
  }

  .website_video_container {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .headerimgmobile {
    background-color: var(--black);
    display: flex;
  }

  ._5050-text-container {
    max-width: 500px;
  }

  ._5050-text-container.fade_in_trigger {
    align-self: flex-start;
  }

  .video-widget_grid_2_col {
    grid-template-columns: 1fr;
  }

  .grid-layout {
    grid-row-gap: 100px;
    grid-template-rows: auto auto;
  }

  .grid-01-image-01 {
    margin-top: 0%;
  }

  .grid-01-image-02, .grid-01-image-03 {
    display: none;
  }

  .grid-02-image-03 {
    margin-top: 0%;
  }

  .grid-01-image-05 {
    display: none;
  }

  .grid-layout-wrapper-light, .grid-layout-wrapper-black {
    padding-left: 60px;
    padding-right: 60px;
  }

  .grid-02-image-01, .grid-02-image-02, .grid-01-image-04 {
    margin-top: 0%;
  }

  .video-2-col {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-2-col-div {
    width: 100%;
  }

  .video_boarder {
    padding-left: 60px;
    padding-right: 60px;
  }

  .services-header-section {
    height: auto;
    min-height: auto;
  }

  .services_header_grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    height: auto;
  }

  .services-header-txt-wrapper {
    padding-bottom: 0;
    padding-left: 60px;
    padding-right: 60px;
  }

  .services-header-image {
    padding-top: 65%;
  }

  .services-grid-item {
    margin-top: 0;
  }

  .services-grid-layout {
    grid-row-gap: 60px;
    flex-direction: column;
    grid-template-rows: auto auto;
    display: flex;
  }

  .services-grid-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }

  .service-header-wrapper {
    padding-left: 60px;
  }

  .services_sub_nav {
    padding-left: 40px;
    padding-right: 40px;
  }

  .project-portal-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .services-portal-header {
    padding-left: 60px;
  }

  .portal-container {
    padding-left: 0;
    padding-right: 0;
  }

  .h1-title {
    width: 80%;
  }

  .image-smartphone {
    z-index: 4;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 110%;
    height: 110%;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    inset: 0%;
  }

  .image-desktop {
    z-index: 2;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .blackbg.grey {
    display: flex;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .navdivdesk {
    padding-left: 20px;
    padding-right: 0;
  }

  .nav-menu {
    height: 100vh;
    min-height: 100vh;
    overflow: visible;
  }

  .nav-item, .nav-item.w--current {
    margin-left: 20px;
  }

  .navdivmob {
    justify-content: flex-start;
    height: 100vh;
    padding-top: 150px;
    overflow: scroll;
  }

  .spacerdiv40._30mob {
    height: 30px;
  }

  .navtext {
    font-size: 45px;
    line-height: 27px;
  }

  .brand {
    padding-left: 0;
  }

  .navicon {
    width: 25px;
  }

  .spacerdiv60._20mob {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    display: block;
  }

  .column {
    padding-bottom: 30px;
    padding-right: 0;
  }

  .column-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .columns-3 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .headerimg {
    display: flex;
  }

  .project_header {
    font-size: 80px;
    line-height: 85px;
  }

  ._60left60right60bottom {
    height: 100%;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._60leftright {
    padding-left: 30px;
    padding-right: 30px;
  }

  .htopcentre {
    align-items: flex-start;
  }

  ._25pc.padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dropinsquareright {
    padding-left: 100px;
    padding-right: 100px;
  }

  .dropinspreadleft {
    padding: 40px 100px 100px;
  }

  .imageamin.mw300.right {
    max-width: none;
  }

  .divwebimage {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .divmobimage {
    padding: 20px;
  }

  ._70pc {
    width: 100%;
  }

  .div-block-10 {
    padding-top: 30px;
  }

  .logodiv {
    padding: 80px;
  }

  .logodiv.before {
    padding: 107px;
  }

  .div-block-41 {
    justify-content: center;
  }

  .sponsorlogolink {
    justify-content: center;
    width: 33.33%;
  }

  .footer_wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .social_container {
    flex-flow: column;
    align-items: flex-start;
  }

  .tscs_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .spacer15 {
    width: 5px;
    min-width: 5px;
    height: 5px;
    min-height: 5px;
  }

  .link-block {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  ._60all {
    padding: 60px 30px;
  }

  .navquicklinks {
    padding-left: 20px;
  }

  .div-block-49 {
    width: 150px;
    min-width: 150px;
    height: 150px;
    min-height: 150px;
  }

  .mask-2 {
    padding: 40px;
  }

  .sliderwrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .fullwidthright {
    padding-left: 0%;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .fullwidthleft {
    padding-left: 0%;
  }

  .laptopcontainer, .laptoppagewrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-52 {
    flex-direction: column;
  }

  .spacerdiv120 {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
  }

  .grid-6 {
    grid-template-columns: 1fr 1fr;
  }

  .divwebimagescroller {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-7 {
    grid-template-columns: 1fr 1fr;
  }

  ._60left60right60top {
    height: 100%;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image_boarder {
    padding-left: 30px;
    padding-right: 30px;
  }

  .image_boarder.full_width_mob, .image_boarder.full_width_tablet {
    padding-left: 0;
    padding-right: 0;
  }

  .widget_section {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .widget_grid_2_col {
    grid-row-gap: 20px;
  }

  .widget_grid_4_col {
    grid-template-columns: 1fr 1fr;
  }

  .title_text_wrapper {
    padding-left: 30px;
  }

  .header_txt {
    padding-bottom: 30px;
  }

  .sub_header_txt {
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav_container {
    padding-left: 30px;
    padding-right: 10px;
  }

  .home_intro_wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .brand-2 {
    padding-left: 0;
  }

  .work_grid_mob_caption_container {
    padding-left: 30px;
  }

  .website_video_container {
    padding: 60px 30px;
  }

  .headerimgmobile {
    display: none;
  }

  .widget_section_next {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  ._5050-text-container.fade_in_trigger {
    max-width: 100%;
  }

  .grid-layout {
    grid-row-gap: 60px;
  }

  .grid-layout-wrapper-light, .grid-layout-wrapper-black {
    padding-left: 30px;
    padding-right: 30px;
  }

  .video-2-col {
    align-items: flex-start;
  }

  .video_boarder {
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-header-txt-wrapper {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .services_header {
    font-size: 80px;
    line-height: 80px;
  }

  .services-grid-text {
    max-width: none;
  }

  .services-grid-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .service-header-section {
    min-height: 500px;
  }

  .service-header-wrapper {
    padding-bottom: 0;
    padding-left: 30px;
  }

  .services_sub_nav {
    flex-flow: column;
    padding-left: 30px;
    padding-right: 30px;
    position: static;
  }

  .nav-sub-item {
    padding-left: 0;
    padding-right: 0;
  }

  .service-header-intro-wrapper {
    padding-bottom: 60px;
  }

  .services-portal-header {
    padding-left: 30px;
  }

  .h1-title {
    font-size: 5em;
    left: .5em;
  }

  .image-desktop {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 30px;
    line-height: 33px;
  }

  a {
    text-decoration: none;
  }

  .nav-menu {
    height: 100vh;
  }

  .nav-item {
    padding-left: 75px;
  }

  .nav-item.w--current {
    background-position: -20px 100%;
    padding-left: 75px;
  }

  .nav-item.home.w--current {
    background-position: -20px 100%;
  }

  .nav-item.home.w--current:hover {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .nav-item.projects.w--current {
    background-image: url('../images/nav_line.svg');
    background-position: -20px 100%;
    background-repeat: no-repeat;
    background-size: auto;
  }

  .navdivmob {
    justify-content: flex-start;
    padding-top: 150px;
  }

  .spacerdiv40, .spacerdiv40._30mob {
    height: 30px;
  }

  .navtext {
    font-size: 45px;
    line-height: 27px;
  }

  .navicon {
    width: 26px;
  }

  .spacerdiv60._20mob {
    width: 20px;
    height: 20px;
  }

  .column {
    flex-direction: column;
  }

  .column-2 {
    flex-direction: column;
    padding-right: 0;
  }

  .blackline {
    height: auto;
    margin-bottom: 15px;
  }

  .line-body-wrapper {
    flex-direction: column;
  }

  .spacerdiv30 {
    height: 30px;
  }

  .spacerdiv20 {
    height: 20px;
  }

  .columns-3 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .column-3 {
    flex-direction: column;
  }

  .intro-line {
    height: auto;
    margin-bottom: 15px;
  }

  .headerimg {
    display: none;
  }

  .imageheader {
    object-position: 50% 50%;
  }

  .project_header {
    margin-bottom: 15px;
    font-size: 50px;
    line-height: 55px;
  }

  .sectionheader._100vh {
    height: auto;
    min-height: 100vh;
  }

  ._25pc {
    width: 100%;
  }

  ._25pc.padding {
    padding-right: 20px;
  }

  ._50pc {
    width: 100%;
  }

  .dropinsquareright {
    padding-left: 0;
    padding-right: 0;
  }

  .dropinspreadleft {
    margin-top: -30px;
    padding: 0 0 30px;
  }

  .divwebimage {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .divmobimage {
    flex-direction: row;
    padding: 15px;
  }

  .mobilediv {
    padding: 10px;
  }

  .mobilediv.hidemob {
    display: none;
  }

  ._40pc {
    width: 100%;
  }

  .logodiv {
    height: 250px;
    padding: 30px;
  }

  .logodiv.before {
    padding: 41px;
  }

  .phinsysicon {
    width: 220px;
  }

  .sponsorlogolink {
    width: 33.33%;
  }

  .sponsorlogodiv {
    padding: 15px;
  }

  .divphiicon {
    width: 100%;
  }

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

  .footer_wrapper {
    flex-direction: column;
    justify-content: space-between;
  }

  .tscs_container {
    flex-wrap: nowrap;
  }

  .footer_txt {
    padding-top: 0;
  }

  .footer_txt.text-white {
    width: auto;
  }

  .griditem {
    width: 100%;
  }

  .griditem._33 {
    flex: 0 auto;
    height: auto;
  }

  .link-block {
    display: block;
  }

  .text-intro-page {
    font-size: 25px;
    line-height: 30px;
  }

  .videocontainer {
    width: 101%;
  }

  .projectcaptions {
    width: 100%;
  }

  .maxwidth900 {
    flex-direction: column;
  }

  .div-block-47 {
    margin-bottom: 9px;
    display: flex;
  }

  .whitelinebig {
    border-top-style: none;
    border-top-color: var(--white-smoke-2);
    border-right-style: none;
    border-right-color: var(--white-smoke-2);
    border-left-style: none;
    border-left-color: var(--white-smoke-2);
  }

  .slide {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mask-2 {
    padding: 20px 15px 50px;
  }

  .fullwidthleft {
    padding-right: 0%;
  }

  .laptopwrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .laptopcontainer, .laptoppagewrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .laptoppageheader {
    padding-right: .25px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .griddiv.shadow {
    height: auto;
  }

  .gridimg.shadow {
    object-fit: scale-down;
  }

  .grid-4 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  ._33pccaps {
    width: 100%;
  }

  .htopleftcaps {
    flex-direction: column;
  }

  .phonewrapper {
    width: 60%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-56 {
    padding-right: 3.29%;
  }

  .div-block-58 {
    width: 100%;
    bottom: -.1%;
  }

  ._20pc {
    width: 60%;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .div-block-59 {
    flex-direction: column;
    width: 100%;
  }

  .grid-6 {
    grid-template-columns: 1fr;
  }

  .phonewrapper3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mobilescroll2 {
    flex-direction: row;
  }

  .divwebimagescroller {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .home_grid {
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }

  .work_grid_text_container {
    width: 100%;
    inset: auto auto 0% 0%;
  }

  .work_grid_text {
    color: var(--black);
    max-width: 100%;
  }

  .textred.hide, .div-block-66 {
    display: none;
  }

  .image_boarder {
    flex-direction: column;
  }

  .widget_grid_2_col, .widget_grid_4_col {
    grid-template-columns: 1fr;
  }

  .text_max_width {
    width: 100%;
  }

  .title_text_wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .sub_header_wrapper {
    width: 100%;
  }

  .project_sub_header {
    font-size: 20px;
    line-height: 25px;
  }

  .header_txt {
    padding-bottom: 120px;
    position: sticky;
  }

  .texttest {
    width: 100%;
  }

  .nav_item_new {
    font-size: 23px;
    line-height: 27px;
  }

  .home_intro_wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .whiteline_subhead {
    margin-bottom: 4px;
  }

  .project_intro {
    font-size: 20px;
    line-height: 25px;
  }

  .text_intro {
    font-size: 16px;
    line-height: 21px;
  }

  .home_strapline {
    align-items: flex-start;
  }

  .grid-8 {
    grid-template-columns: 1fr;
  }

  .blackline_strapline {
    height: auto;
  }

  .blackline_strapline.strap_1 {
    margin-top: 16px;
  }

  .strapline_txt_wrapper {
    flex-direction: column;
  }

  .work_grid_mob_caption_container {
    padding-left: 30px;
  }

  .navline {
    width: 60px;
    padding-top: 21px;
  }

  .widget_grid_3_col {
    grid-template-columns: 1fr;
  }

  .widget_grid_3_col._6_grid {
    grid-template-columns: 1fr 1fr;
  }

  .headerimgmobile {
    display: flex;
  }

  .video-widget_grid_2_col {
    grid-template-columns: 1fr;
  }

  .background-video-max-width {
    height: auto;
  }

  .video_boarder {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .services_header {
    margin-bottom: 15px;
    font-size: 50px;
    line-height: 50px;
  }

  .services-header-image {
    padding-top: 100%;
  }

  .services-grid-image {
    display: block;
  }

  .services-grid-text {
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-grid-layout {
    justify-items: center;
  }

  .services-grid-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .service-header-wrapper {
    padding-bottom: 10px;
  }

  .service-header-text-wrapper {
    max-width: 290px;
  }

  .service-body-wrapper {
    flex-direction: column;
  }

  .h1-title {
    left: .5em;
  }
}

#w-node-dc408725-d4c3-2ad2-9841-6ca129b52363-fb1ff33d {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_9c22b97e-cf50-6083-e812-5763e589ed1f-fb1ff33d, #w-node-f6262c1a-00b7-c643-fd14-bfa896bbd6a2-fb1ff33d, #w-node-_17bed1d1-1450-a4be-f8c6-0013e138c79c-fb1ff33d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a72cd23d-f4f0-808f-4694-d08cc570ced7-fb1ff33d {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-cd7ad573-d860-be02-72d4-104f69aa6c1f-fb1ff33d, #w-node-_87bf24a2-9ddd-9f7f-8b69-06707a6e5d31-801ff33e, #w-node-c646fe3f-4dbb-b7b0-4e43-de2cffb32ee9-801ff33e, #w-node-d33c5f98-505f-103a-7c1c-df20111f06c7-801ff33e, #w-node-aa263d58-417a-3ac4-8aa4-7645addce3ab-801ff33e, #w-node-_2ef0324d-b758-8292-b422-29b36427c2ec-801ff33e, #w-node-_046b41cf-c09b-ddaa-2f08-1dfd6a8e14b2-801ff33e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70d57711-c6ff-20c3-c1e9-ad7c37c96a36-761ff343 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-b6e9af71-7a00-6e4b-146b-f767401555e9-b91ff34a {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_97b4ac5e-1e49-826d-c72f-5a8da9ec965f-b91ff34a, #w-node-f41e8cc1-b68e-319b-31d5-a77087d6bb5b-b91ff34a, #w-node-_25946d84-3957-7f60-6649-850e1ed1e4db-b91ff34a, #w-node-ef8755a6-6d94-46de-ee05-7217cb168a78-b91ff34a, #w-node-_2c9a8e45-7767-0d7b-7c99-5643d817a604-b91ff34a, #w-node-_135b9303-58d9-9d5c-a4b6-2c9412ea0f11-b91ff34a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b7d09b7f-c6c9-3aa1-d58b-62adbe4b2900-b91ff34a {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-fd421f54-0f0d-02b9-cda3-b8a2847405f8-b91ff34a, #w-node-e97eef3f-5e0c-0324-c603-0679ca978259-b71ff34c, #w-node-e97eef3f-5e0c-0324-c603-0679ca97825b-b71ff34c, #w-node-e97eef3f-5e0c-0324-c603-0679ca97825d-b71ff34c, #w-node-e97eef3f-5e0c-0324-c603-0679ca97825f-b71ff34c, #w-node-_48a65cf7-326f-a9a4-71d3-260b82e602d6-b71ff34c, #w-node-_48a65cf7-326f-a9a4-71d3-260b82e602d8-b71ff34c, #w-node-_1055e4c4-2973-1b5d-d27e-8eb8bc31f202-b71ff34c, #w-node-_4aaee9b2-f40b-f10c-5a27-df902f003e24-b71ff34c, #w-node-_357c9fbb-e950-bab6-4f4e-04b88fe98930-b71ff34c, #w-node-_66d12045-ac80-37a4-3e85-ac4630ca75c3-b71ff34c, #w-node-_63a2d121-7175-6ca6-669c-106aa8d84e44-b71ff34c, #w-node-_210b933d-67ea-ca18-c0a8-fa130e8c3c23-b71ff34c, #w-node-_24424397-5cc1-c056-791b-64d3f84a320d-b71ff34c, #w-node-_24424397-5cc1-c056-791b-64d3f84a320f-b71ff34c, #w-node-_24424397-5cc1-c056-791b-64d3f84a3211-b71ff34c, #w-node-_24424397-5cc1-c056-791b-64d3f84a3213-b71ff34c, #w-node-c6fd8661-138b-37ae-9e31-3a53f0a91ef9-b71ff34c, #w-node-_4cef0b92-153c-556b-c71e-5e1e41b5fcb5-b71ff34c, #w-node-_72969996-8d42-2c55-7694-41bab678d241-b71ff34c, #w-node-a19b6666-162f-02f9-5147-81df55fd766a-b71ff34c, #w-node-_37af03aa-8f6c-a126-fbf8-dc23d9a21479-b71ff34c, #w-node-ca73c729-d5f7-2333-fd85-162931ac395d-b71ff34c, #w-node-_001102c2-2c44-bf50-ac87-398f966e3de0-b71ff34c, #w-node-_6118443b-5e88-d1c8-9355-1a000c30e4da-b71ff34c, #w-node-ec24ff2e-37c5-4365-6b65-e93e20181bc0-b71ff34c, #w-node-_3624b5ba-3e34-836e-62d0-d6341a3edbcb-b71ff34c, #w-node-_5d9220e3-2552-ec18-fc47-150d95cb9d14-b71ff34c, #w-node-_4134fb7d-4ca1-cacd-47bf-18d80bda3c21-b71ff34c, #w-node-_13f47f4e-ef6d-b7cc-31d5-b5eaa457c70f-b71ff34c, #w-node-_27a80cc8-57ff-5776-3ee9-8107b9c397e3-b71ff34c, #w-node-_63e5cbec-5b11-a62b-7c25-1e38bd656374-b71ff34c, #w-node-c7df8fa0-0abd-47d2-caa2-0c728b5b8067-b71ff34c, #w-node-c7df8fa0-0abd-47d2-caa2-0c728b5b806c-b71ff34c, #w-node-_396d58cb-edc6-43a9-4b29-481a1c30678d-b71ff34c, #w-node-_6a85b25d-f146-eb68-d882-d60eaf5ea831-b71ff34c, #w-node-caa1720b-758f-ff4a-5f6b-f4d155582cc9-b71ff34c, #w-node-_7a63323a-a523-3444-d853-9f7e33181c1e-b71ff34c, #w-node-c0b6ee72-4ea2-173f-5d9f-88d1214d6282-b71ff34c, #w-node-_4b0dcabf-6646-90e7-e659-651ae300a4f5-b71ff34c, #w-node-_306e4474-7368-6f7e-4f36-06f2bbddc548-b71ff34c, #w-node-_852875c9-bc52-55cc-eef6-7ee0d38b8eef-b71ff34c, #w-node-_93db26ac-5705-847a-fa21-b7fca1d312d8-b71ff34c, #w-node-_76e2c7f5-702a-ec02-1825-4ff790350bf2-b71ff34c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76e2c7f5-702a-ec02-1825-4ff790350bf4-b71ff34c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-_44a5bb55-fb70-178c-d37f-a7c01599edc5-b71ff34c {
  grid-area: 1 / 2 / 2 / 8;
}

#w-node-c30571f4-7c56-decd-158e-bf3ea14b5a55-b71ff34c {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-f7f28804-17a9-ee26-8945-33b6ebf3f7d4-b71ff34c {
  grid-area: 1 / 9 / 2 / 13;
}

#w-node-_0439ef68-5bcf-5d0d-5b6c-2aea290c6034-b71ff34c {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-ac844779-eaf6-6550-3ae7-9eb189800eae-b71ff34c {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_1e9fc161-63d2-dd87-db62-053276cdda50-b71ff34c {
  grid-area: 1 / 2 / 2 / 8;
}

#w-node-_1e9fc161-63d2-dd87-db62-053276cdda54-b71ff34c {
  grid-area: 1 / 9 / 2 / 13;
}

#w-node-_1e9fc161-63d2-dd87-db62-053276cdda56-b71ff34c {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac49951417-b71ff34c {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac49951423-b71ff34c {
  grid-area: 1 / 8 / 2 / 12;
  align-self: center;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac49951432-b71ff34c {
  grid-area: 2 / 2 / 3 / 12;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac49951441-b71ff34c {
  grid-area: 3 / 2 / 4 / 7;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac49951450-b71ff34c {
  grid-area: 3 / 8 / 4 / 12;
  align-self: center;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac4995145f-b71ff34c {
  grid-area: 4 / 4 / 5 / 12;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac4995146e-b71ff34c {
  grid-area: 5 / 2 / 6 / 7;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac4995147d-b71ff34c {
  grid-area: 5 / 8 / 6 / 13;
  align-self: center;
}

#w-node-aa7c5ef8-7220-fe34-930b-75ac4995148c-b71ff34c {
  grid-area: 6 / 2 / 7 / 11;
}

#w-node-_5fc36a1b-9b93-6a65-609d-462f33b12493-b4f58cad, #w-node-_0e657104-b932-2033-e05a-dcb3ca814527-b4f58cad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_44a5bb55-fb70-178c-d37f-a7c01599edc5-b4f58cad {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_465f39ef-6d6c-447c-e514-7ca71bc1faae-b4f58cad {
  grid-area: 1 / 8 / 2 / 12;
  align-self: center;
}

#w-node-_37ea560a-8de5-88a7-8b88-2c35e924fa99-b4f58cad {
  grid-area: 2 / 2 / 3 / 12;
}

#w-node-e909f07b-cab8-1143-47f2-4da1b8c2b7f9-b4f58cad {
  grid-area: 3 / 2 / 4 / 7;
}

#w-node-d0367edb-ea14-be27-de4f-3dd496721fb5-b4f58cad {
  grid-area: 3 / 8 / 4 / 12;
  align-self: center;
}

#w-node-_927234a5-e00f-9b5f-166e-90a29bef903f-b4f58cad {
  grid-area: 4 / 4 / 5 / 12;
}

#w-node-_2b14544a-06ab-7576-7d85-78789426ecf9-b4f58cad {
  grid-area: 5 / 2 / 6 / 7;
}

#w-node-_2498736a-d826-ed94-9216-3bda472a0c35-b4f58cad {
  grid-area: 5 / 8 / 6 / 13;
  align-self: center;
}

#w-node-f293c1cd-f2d8-3fbd-c56f-43098c4dfd52-b4f58cad {
  grid-area: 6 / 2 / 7 / 11;
}

#w-node-b02d1204-8ed4-31db-50fd-463e51bd7d15-af310036 {
  grid-area: 1 / 2 / 2 / 6;
  align-self: center;
}

#w-node-b02d1204-8ed4-31db-50fd-463e51bd7d09-af310036 {
  grid-area: 1 / 8 / 2 / 12;
  align-self: start;
}

#w-node-_189308f4-a5a6-5153-8d68-61244dcc1da1-af310036 {
  grid-area: 2 / 8 / 3 / 13;
  align-self: center;
}

#w-node-e3feba3c-d4cc-17da-61e4-cc1b759ee227-af310036 {
  grid-area: 2 / 2 / 3 / 6;
  align-self: center;
}

#w-node-_04495db6-14d4-063e-e28b-118a9c630f71-af310036, #w-node-c9d7eb1f-bc27-3d39-c057-0163dfca7f86-af310036, #w-node-f34badad-125b-8357-7ec0-394c6a31ed08-af310036 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-dc408725-d4c3-2ad2-9841-6ca129b52363-fb1ff33d, #w-node-_9c22b97e-cf50-6083-e812-5763e589ed1f-fb1ff33d, #w-node-f6262c1a-00b7-c643-fd14-bfa896bbd6a2-fb1ff33d, #w-node-_17bed1d1-1450-a4be-f8c6-0013e138c79c-fb1ff33d, #w-node-a72cd23d-f4f0-808f-4694-d08cc570ced7-fb1ff33d, #w-node-cd7ad573-d860-be02-72d4-104f69aa6c1f-fb1ff33d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b6e9af71-7a00-6e4b-146b-f767401555e9-b91ff34a, #w-node-_97b4ac5e-1e49-826d-c72f-5a8da9ec965f-b91ff34a, #w-node-f41e8cc1-b68e-319b-31d5-a77087d6bb5b-b91ff34a, #w-node-_25946d84-3957-7f60-6649-850e1ed1e4db-b91ff34a, #w-node-ef8755a6-6d94-46de-ee05-7217cb168a78-b91ff34a, #w-node-_2c9a8e45-7767-0d7b-7c99-5643d817a604-b91ff34a, #w-node-_135b9303-58d9-9d5c-a4b6-2c9412ea0f11-b91ff34a, #w-node-b7d09b7f-c6c9-3aa1-d58b-62adbe4b2900-b91ff34a, #w-node-fd421f54-0f0d-02b9-cda3-b8a2847405f8-b91ff34a {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_76e2c7f5-702a-ec02-1825-4ff790350bf4-b71ff34c {
    justify-self: start;
  }

  #w-node-_44a5bb55-fb70-178c-d37f-a7c01599edc5-b71ff34c {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_0439ef68-5bcf-5d0d-5b6c-2aea290c6034-b71ff34c {
    grid-area: span 1 / span 12 / span 1 / span 12;
  }

  #w-node-_1e9fc161-63d2-dd87-db62-053276cdda50-b71ff34c {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_1e9fc161-63d2-dd87-db62-053276cdda54-b71ff34c {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_1e9fc161-63d2-dd87-db62-053276cdda56-b71ff34c {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-aa7c5ef8-7220-fe34-930b-75ac49951417-b71ff34c, #w-node-aa7c5ef8-7220-fe34-930b-75ac49951423-b71ff34c, #w-node-aa7c5ef8-7220-fe34-930b-75ac49951432-b71ff34c, #w-node-aa7c5ef8-7220-fe34-930b-75ac49951441-b71ff34c, #w-node-aa7c5ef8-7220-fe34-930b-75ac49951450-b71ff34c, #w-node-aa7c5ef8-7220-fe34-930b-75ac4995145f-b71ff34c, #w-node-aa7c5ef8-7220-fe34-930b-75ac4995146e-b71ff34c, #w-node-aa7c5ef8-7220-fe34-930b-75ac4995147d-b71ff34c, #w-node-aa7c5ef8-7220-fe34-930b-75ac4995148c-b71ff34c {
    grid-area: span 1 / span 12 / span 1 / span 12;
  }

  #w-node-_0e657104-b932-2033-e05a-dcb3ca814527-b4f58cad {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_44a5bb55-fb70-178c-d37f-a7c01599edc5-b4f58cad, #w-node-_465f39ef-6d6c-447c-e514-7ca71bc1faae-b4f58cad, #w-node-_37ea560a-8de5-88a7-8b88-2c35e924fa99-b4f58cad, #w-node-e909f07b-cab8-1143-47f2-4da1b8c2b7f9-b4f58cad, #w-node-d0367edb-ea14-be27-de4f-3dd496721fb5-b4f58cad, #w-node-_927234a5-e00f-9b5f-166e-90a29bef903f-b4f58cad, #w-node-_2b14544a-06ab-7576-7d85-78789426ecf9-b4f58cad, #w-node-_2498736a-d826-ed94-9216-3bda472a0c35-b4f58cad, #w-node-f293c1cd-f2d8-3fbd-c56f-43098c4dfd52-b4f58cad, #w-node-b02d1204-8ed4-31db-50fd-463e51bd7d15-af310036, #w-node-b02d1204-8ed4-31db-50fd-463e51bd7d09-af310036, #w-node-_189308f4-a5a6-5153-8d68-61244dcc1da1-af310036, #w-node-e3feba3c-d4cc-17da-61e4-cc1b759ee227-af310036 {
    grid-area: span 1 / span 12 / span 1 / span 12;
  }

  #w-node-_04495db6-14d4-063e-e28b-118a9c630f71-af310036, #w-node-c9d7eb1f-bc27-3d39-c057-0163dfca7f86-af310036, #w-node-f34badad-125b-8357-7ec0-394c6a31ed08-af310036 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9c22b97e-cf50-6083-e812-5763e589ed1f-fb1ff33d, #w-node-f6262c1a-00b7-c643-fd14-bfa896bbd6a2-fb1ff33d, #w-node-_17bed1d1-1450-a4be-f8c6-0013e138c79c-fb1ff33d, #w-node-a72cd23d-f4f0-808f-4694-d08cc570ced7-fb1ff33d, #w-node-cd7ad573-d860-be02-72d4-104f69aa6c1f-fb1ff33d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b6e9af71-7a00-6e4b-146b-f767401555e9-b91ff34a, #w-node-_97b4ac5e-1e49-826d-c72f-5a8da9ec965f-b91ff34a, #w-node-f41e8cc1-b68e-319b-31d5-a77087d6bb5b-b91ff34a, #w-node-_25946d84-3957-7f60-6649-850e1ed1e4db-b91ff34a, #w-node-ef8755a6-6d94-46de-ee05-7217cb168a78-b91ff34a, #w-node-_2c9a8e45-7767-0d7b-7c99-5643d817a604-b91ff34a, #w-node-_135b9303-58d9-9d5c-a4b6-2c9412ea0f11-b91ff34a, #w-node-b7d09b7f-c6c9-3aa1-d58b-62adbe4b2900-b91ff34a, #w-node-fd421f54-0f0d-02b9-cda3-b8a2847405f8-b91ff34a {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_04495db6-14d4-063e-e28b-118a9c630f71-af310036, #w-node-c9d7eb1f-bc27-3d39-c057-0163dfca7f86-af310036, #w-node-f34badad-125b-8357-7ec0-394c6a31ed08-af310036 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Graphik';
  src: url('../fonts/Graphik-Light-Web.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('../fonts/Graphik-Regular-Web.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('../fonts/Graphik-RegularItalic-Web.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Para';
  src: url('../fonts/Para-Grand-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}