@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 100%;
  overflow-y: scroll;
}

body {
  background: #fff;
}

article, aside, details, figcaption, figure,
footer, header, main, nav, section {
  display: block;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: 400;
  text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

a img {
  border: 0;
}

* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

/**
 * Breakpoints
 * ----------------
 * For each breakpoint styles will be applied
 * from the size e.g. for "large" styles will
 * be applied once the width of the viewport
 * is 1200px.
 *
 * Use default styles that are applicable
 * from 0px and only override
 * styles using breakpoints
 * when needed.
 */
/**
 * Spacings
 */
/**
 * Fonts
 */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}
/**
 * Boxgrid variables
 */
/**
 * Colours
 */
/**
 * Animation
 */
/**
 * General
 */
/**
 * Buttons
 */
/**
 * Sizes
 */
/**
 * Applys a breakpoint around the provided content
 * @param  {string} $size size of the breakpoint
 * @return {null}       nothing returned breakpoint code wrapped around content
 */
/**
 * Applys a breakpoint around the provided content
 * @param  {string} $size size of the breakpoint
 * @return {null}       nothing returned breakpoint code wrapped around content
 */
/*
@mixin delay($time) {
    -webkit-transition-delay: $time;
    transition-delay: $time;
}

@mixin delayZero() {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

@mixin cubic-bezier($duration) {
    transition: $duration cubic-bezier(0.4, 0, 0.2, 1);
}

@mixin show-on-view-top($px) {
    opacity: 0;
    position: relative;
    top: $px;
    &.onScreen {
        opacity: 1;
        top: 0;
    }
}

@mixin show-on-view-bottom($px) {
    opacity: 0;
    position: relative;
    bottom: $px;
    &.onScreen {
        opacity: 1;
        bottom: 0;
    }
}

@mixin show-on-view-right($px) {
    opacity: 0;
    position: relative;
    right: $px;
    &.onScreen {
        opacity: 1;
        right: 0;
    }
}

@mixin show-on-view-left($px) {
    opacity: 0;
    position: relative;
    left: $px;
    &.onScreen {
        opacity: 1;
        left: 0;
    }
}*/
/*
----------------------------------
BoxGrid
----------------------------------
Author: Stuart Lindley
Description: A CSS Grid based grid
Version: 1.0
License: MIT
*/
.boxgrid {
  width: 100%;
  display: grid;
  flex-wrap: wrap;
  box-sizing: border-box;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-rows: auto;
}
.boxgrid > .col {
  width: 100%;
  box-sizing: border-box;
}
.boxgrid > .col > .inner {
  display: block;
  box-sizing: border-box;
}
.boxgrid.no-gap {
  gap: 0;
}

@media screen and (min-width: 300px) {
  .boxgrid > .xs_12 {
    grid-column: span 12;
  }
  .boxgrid > .xs_11 {
    grid-column: span 11;
  }
  .boxgrid > .xs_10 {
    grid-column: span 10;
  }
  .boxgrid > .xs_9 {
    grid-column: span 9;
  }
  .boxgrid > .xs_8 {
    grid-column: span 8;
  }
  .boxgrid > .xs_7 {
    grid-column: span 7;
  }
  .boxgrid > .xs_6 {
    grid-column: span 6;
  }
  .boxgrid > .xs_5 {
    grid-column: span 5;
  }
  .boxgrid > .xs_4 {
    grid-column: span 4;
  }
  .boxgrid > .xs_3 {
    grid-column: span 3;
  }
  .boxgrid > .xs_2 {
    grid-column: span 2;
  }
  .boxgrid > .xs_1 {
    grid-column: span 1;
  }
  .boxgrid > .xs_0 {
    display: none;
  }
  .boxgrid > .xs_first {
    order: -1;
  }
  .boxgrid > .xs_last {
    order: 999;
  }
  .boxgrid > .xs_left {
    display: flex;
    justify-content: flex-start;
  }
  .boxgrid > .xs_center {
    display: flex;
    justify-content: center;
  }
  .boxgrid > .xs_right {
    display: flex;
    justify-content: flex-end;
  }
  .boxgrid_xs_gap_10 {
    gap: 10px;
  }
  .boxgrid_xs_gap_20 {
    gap: 20px;
  }
  .boxgrid_xs_gap_30 {
    gap: 30px;
  }
  .boxgrid_xs_gap_40 {
    gap: 40px;
  }
  .boxgrid_xs_gap_50 {
    gap: 50px;
  }
  .boxgrid_xs_gap_60 {
    gap: 60px;
  }
  .boxgrid_xs_gap_70 {
    gap: 70px;
  }
  .boxgrid_xs_gap_80 {
    gap: 80px;
  }
  .boxgrid_xs_gap_100 {
    gap: 100px;
  }
  .boxgrid > .xs_text_left {
    text-align: left;
  }
  .boxgrid > .xs_text_center {
    text-align: center;
  }
  .boxgrid > .xs_text_right {
    text-align: right;
  }
  .boxgrid > .xs_top {
    display: flex;
    align-items: flex-start;
  }
  .boxgrid > .xs_middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .boxgrid > .xs_bottom {
    display: flex;
    align-items: flex-end;
  }
  .xs_gap_20 {
    gap: 20px;
  }
}
@media screen and (min-width: 550px) {
  .boxgrid > .sm_12 {
    grid-column: span 12;
  }
  .boxgrid > .sm_11 {
    grid-column: span 11;
  }
  .boxgrid > .sm_10 {
    grid-column: span 10;
  }
  .boxgrid > .sm_9 {
    grid-column: span 9;
  }
  .boxgrid > .sm_8 {
    grid-column: span 8;
  }
  .boxgrid > .sm_7 {
    grid-column: span 7;
  }
  .boxgrid > .sm_6 {
    grid-column: span 6;
  }
  .boxgrid > .sm_5 {
    grid-column: span 5;
  }
  .boxgrid > .sm_4 {
    grid-column: span 4;
  }
  .boxgrid > .sm_3 {
    grid-column: span 3;
  }
  .boxgrid > .sm_2 {
    grid-column: span 2;
  }
  .boxgrid > .sm_1 {
    grid-column: span 1;
  }
  .boxgrid > .sm_0 {
    display: none;
  }
  .boxgrid > .sm_first {
    order: -1;
  }
  .boxgrid > .sm_last {
    order: 999;
  }
  .boxgrid > .sm_left {
    display: flex;
    justify-content: flex-start;
  }
  .boxgrid > .sm_center {
    display: flex;
    justify-content: center;
  }
  .boxgrid > .sm_right {
    display: flex;
    justify-content: flex-end;
  }
  .boxgrid_sm_gap_10 {
    gap: 10px;
  }
  .boxgrid_sm_gap_20 {
    gap: 20px;
  }
  .boxgrid_sm_gap_30 {
    gap: 30px;
  }
  .boxgrid_sm_gap_40 {
    gap: 40px;
  }
  .boxgrid_sm_gap_50 {
    gap: 50px;
  }
  .boxgrid_sm_gap_60 {
    gap: 60px;
  }
  .boxgrid_sm_gap_70 {
    gap: 70px;
  }
  .boxgrid_sm_gap_80 {
    gap: 80px;
  }
  .boxgrid_sm_gap_100 {
    gap: 100px;
  }
  .boxgrid > .sm_text_left {
    text-align: left;
  }
  .boxgrid > .sm_text_center {
    text-align: center;
  }
  .boxgrid > .sm_text_right {
    text-align: right;
  }
  .boxgrid > .sm_top {
    display: flex;
    align-items: flex-start;
  }
  .boxgrid > .sm_middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .boxgrid > .sm_bottom {
    display: flex;
    align-items: flex-end;
  }
  .sm_gap_20 {
    gap: 20px;
  }
}
@media screen and (min-width: 850px) {
  .boxgrid > .md_12 {
    grid-column: span 12;
  }
  .boxgrid > .md_11 {
    grid-column: span 11;
  }
  .boxgrid > .md_10 {
    grid-column: span 10;
  }
  .boxgrid > .md_9 {
    grid-column: span 9;
  }
  .boxgrid > .md_8 {
    grid-column: span 8;
  }
  .boxgrid > .md_7 {
    grid-column: span 7;
  }
  .boxgrid > .md_6 {
    grid-column: span 6;
  }
  .boxgrid > .md_5 {
    grid-column: span 5;
  }
  .boxgrid > .md_4 {
    grid-column: span 4;
  }
  .boxgrid > .md_3 {
    grid-column: span 3;
  }
  .boxgrid > .md_2 {
    grid-column: span 2;
  }
  .boxgrid > .md_1 {
    grid-column: span 1;
  }
  .boxgrid > .md_0 {
    display: none;
  }
  .boxgrid > .md_first {
    order: -1;
  }
  .boxgrid > .md_last {
    order: 999;
  }
  .boxgrid > .md_left {
    display: flex;
    justify-content: flex-start;
  }
  .boxgrid > .md_center {
    display: flex;
    justify-content: center;
  }
  .boxgrid > .md_right {
    display: flex;
    justify-content: flex-end;
  }
  .boxgrid_md_gap_10 {
    gap: 10px;
  }
  .boxgrid_md_gap_20 {
    gap: 20px;
  }
  .boxgrid_md_gap_30 {
    gap: 30px;
  }
  .boxgrid_md_gap_40 {
    gap: 40px;
  }
  .boxgrid_md_gap_50 {
    gap: 50px;
  }
  .boxgrid_md_gap_60 {
    gap: 60px;
  }
  .boxgrid_md_gap_70 {
    gap: 70px;
  }
  .boxgrid_md_gap_80 {
    gap: 80px;
  }
  .boxgrid_md_gap_100 {
    gap: 100px;
  }
  .boxgrid > .md_text_left {
    text-align: left;
  }
  .boxgrid > .md_text_center {
    text-align: center;
  }
  .boxgrid > .md_text_right {
    text-align: right;
  }
  .boxgrid > .md_top {
    display: flex;
    align-items: flex-start;
  }
  .boxgrid > .md_middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .boxgrid > .md_bottom {
    display: flex;
    align-items: flex-end;
  }
  .md_gap_20 {
    gap: 20px;
  }
}
@media screen and (min-width: 1650px) {
  .boxgrid > .lg_12 {
    grid-column: span 12;
  }
  .boxgrid > .lg_11 {
    grid-column: span 11;
  }
  .boxgrid > .lg_10 {
    grid-column: span 10;
  }
  .boxgrid > .lg_9 {
    grid-column: span 9;
  }
  .boxgrid > .lg_8 {
    grid-column: span 8;
  }
  .boxgrid > .lg_7 {
    grid-column: span 7;
  }
  .boxgrid > .lg_6 {
    grid-column: span 6;
  }
  .boxgrid > .lg_5 {
    grid-column: span 5;
  }
  .boxgrid > .lg_4 {
    grid-column: span 4;
  }
  .boxgrid > .lg_3 {
    grid-column: span 3;
  }
  .boxgrid > .lg_2 {
    grid-column: span 2;
  }
  .boxgrid > .lg_1 {
    grid-column: span 1;
  }
  .boxgrid > .lg_0 {
    display: none;
  }
  .boxgrid > .lg_first {
    order: -1;
  }
  .boxgrid > .lg_last {
    order: 999;
  }
  .boxgrid > .lg_left {
    display: flex;
    justify-content: flex-start;
  }
  .boxgrid > .lg_center {
    display: flex;
    justify-content: center;
  }
  .boxgrid > .lg_right {
    display: flex;
    justify-content: flex-end;
  }
  .boxgrid_lg_gap_10 {
    gap: 10px;
  }
  .boxgrid_lg_gap_20 {
    gap: 20px;
  }
  .boxgrid_lg_gap_30 {
    gap: 30px;
  }
  .boxgrid_lg_gap_40 {
    gap: 40px;
  }
  .boxgrid_lg_gap_50 {
    gap: 50px;
  }
  .boxgrid_lg_gap_60 {
    gap: 60px;
  }
  .boxgrid_lg_gap_70 {
    gap: 70px;
  }
  .boxgrid_lg_gap_80 {
    gap: 80px;
  }
  .boxgrid_lg_gap_100 {
    gap: 100px;
  }
  .boxgrid > .lg_text_left {
    text-align: left;
  }
  .boxgrid > .lg_text_center {
    text-align: center;
  }
  .boxgrid > .lg_text_right {
    text-align: right;
  }
  .boxgrid > .lg_top {
    display: flex;
    align-items: flex-start;
  }
  .boxgrid > .lg_middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .boxgrid > .lg_bottom {
    display: flex;
    align-items: flex-end;
  }
  .lg_gap_20 {
    gap: 20px;
  }
}
@media screen and (min-width: 1800px) {
  .boxgrid > .xl_12 {
    grid-column: span 12;
  }
  .boxgrid > .xl_11 {
    grid-column: span 11;
  }
  .boxgrid > .xl_10 {
    grid-column: span 10;
  }
  .boxgrid > .xl_9 {
    grid-column: span 9;
  }
  .boxgrid > .xl_8 {
    grid-column: span 8;
  }
  .boxgrid > .xl_7 {
    grid-column: span 7;
  }
  .boxgrid > .xl_6 {
    grid-column: span 6;
  }
  .boxgrid > .xl_5 {
    grid-column: span 5;
  }
  .boxgrid > .xl_4 {
    grid-column: span 4;
  }
  .boxgrid > .xl_3 {
    grid-column: span 3;
  }
  .boxgrid > .xl_2 {
    grid-column: span 2;
  }
  .boxgrid > .xl_1 {
    grid-column: span 1;
  }
  .boxgrid > .xl_0 {
    display: none;
  }
  .boxgrid > .xl_first {
    order: -1;
  }
  .boxgrid > .xl_last {
    order: 999;
  }
  .boxgrid > .xl_left {
    display: flex;
    justify-content: flex-start;
  }
  .boxgrid > .xl_center {
    display: flex;
    justify-content: center;
  }
  .boxgrid > .xl_right {
    display: flex;
    justify-content: flex-end;
  }
  .boxgrid_xl_gap_10 {
    gap: 10px;
  }
  .boxgrid_xl_gap_20 {
    gap: 20px;
  }
  .boxgrid_xl_gap_30 {
    gap: 30px;
  }
  .boxgrid_xl_gap_40 {
    gap: 40px;
  }
  .boxgrid_xl_gap_50 {
    gap: 50px;
  }
  .boxgrid_xl_gap_60 {
    gap: 60px;
  }
  .boxgrid_xl_gap_70 {
    gap: 70px;
  }
  .boxgrid_xl_gap_80 {
    gap: 80px;
  }
  .boxgrid_xl_gap_100 {
    gap: 100px;
  }
  .boxgrid > .xl_text_left {
    text-align: left;
  }
  .boxgrid > .xl_text_center {
    text-align: center;
  }
  .boxgrid > .xl_text_right {
    text-align: right;
  }
  .boxgrid > .xl_top {
    display: flex;
    align-items: flex-start;
  }
  .boxgrid > .xl_middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .boxgrid > .xl_bottom {
    display: flex;
    align-items: flex-end;
  }
  .xl_gap_20 {
    gap: 20px;
  }
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.15;
  color: #123037;
}
@media only screen and (min-width: 850px) {
  body {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1650px) {
  body {
    font-size: 16px;
  }
}

h5, .h5, a.h5, h4, .h4, a.h4, h3, .h3, a.h3, h2, .h2, a.h2, h1, .h1, a.h1, .h0 {
  margin-bottom: 1.2em;
  display: block;
  line-height: 1.2em;
}
h5.restore-link-style a, .restore-link-style.h5 a, h4.restore-link-style a, .restore-link-style.h4 a, h3.restore-link-style a, .restore-link-style.h3 a, h2.restore-link-style a, .restore-link-style.h2 a, h1.restore-link-style a, .restore-link-style.h1 a, .restore-link-style.h0 a {
  text-decoration: underline;
}
h5 a, .h5 a, h4 a, .h4 a, h3 a, .h3 a, h2 a, .h2 a, h1 a, .h1 a, .h0 a {
  margin-bottom: 0;
  text-decoration: none;
  color: inherit;
}

/**
 * Headings
 */
.h0 {
  font-size: 100px;
  margin: 0 0 0.5em;
  line-height: 100px;
}
@media only screen and (min-width: 550px) {
  .h0 {
    font-size: 150px;
  }
}

@media only screen and (min-width: 850px) {
  h1, .h1, a.h1 {
    font-size: 60px;
    margin-bottom: 40px;
  }
}

h2, .h2, a.h2 {
  font-weight: 100;
}
@media only screen and (min-width: 850px) {
  h2, .h2, a.h2 {
    font-size: 40px;
    line-height: 55px;
  }
}

h3, .h3, a.h3 {
  font-weight: normal;
}
@media only screen and (min-width: 850px) {
  h3, .h3, a.h3 {
    font-size: 30px;
    line-height: 45px;
  }
}

h4, .h4, a.h4 {
  font-weight: normal;
}
@media only screen and (min-width: 850px) {
  h4, .h4, a.h4 {
    font-size: 18px;
  }
}

h5, .h5, a.h5 {
  font-weight: normal;
}
@media only screen and (min-width: 850px) {
  h5, .h5, a.h5 {
    font-size: 20px;
  }
}

/**
 * Paragraphs
 */
p {
  font-family: inherit;
  margin-bottom: 1em;
  line-height: 1.3em;
}
p.subheading {
  font-size: 20px;
  line-height: 30px;
}

sup {
  font-size: 0.5em;
}

/**
 * Links
 */
a {
  color: inherit;
  transition: color 0.3s;
}
a:hover {
  transition: color 0.3s;
}

/**
 * Styling
 */
b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

.white-text {
  color: #fff;
}

/**
 * Lists
 */
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
ul.address-list, ol.address-list {
  list-style-type: none;
  padding-left: 0;
}
ul li, ol li {
  padding: 0 0 5px 5px;
  line-height: 1.5em;
}

.news .post:after, hr {
  border: 1px solid #ebedee;
  margin: 40px 0;
}

hr.spacer {
  border: none;
}

.spacing_xs {
  margin-bottom: 10px;
}

.spacing_sm {
  margin-bottom: 20px;
}

.spacing_md {
  margin-bottom: 40px;
}

.spacing_lg {
  margin-bottom: 80px;
}

.spacing_xl {
  margin-bottom: 160px;
}

.teal-colour {
  color: #00A5C6;
}

.light-weight {
  font-weight: 300;
}

.icon-after.icon:after, .icon-before.icon:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 60px;
  height: 60px;
  background: transparent url(../img/favicon.png) center/contain no-repeat;
}
.icon-before.icon:before {
  margin: 0 20px 0 0;
}
.icon-after.icon:after {
  margin: 0 0 0 20px;
}
.icon-small.icon:after, .icon-small.icon:before {
  width: 25px;
  height: 25px;
}

.icon.alcohol-icon:after, .icon.alcohol-icon:before {
  background-image: url(../img/alcohol-icon.png);
}

.icon.ancillary-icon:after, .icon.ancillary-icon:before {
  background-image: url(../img/ancillary-icon.png);
}

.owl-carousel-logo-slider .owl-nav button:after, .btn.btn-arrow:after, .page-template-page-search .quick-search .btn-arrow.button:after, .btn.arrow:after, .page-template-page-search .quick-search .arrow.button:after, .icon.arrow-icon:after, .icon.arrow-icon:before {
  background-image: url(../img/arrow-icon.png);
}

.icon.chemicals-icon:after, .icon.chemicals-icon:before {
  background-image: url(../img/chemicals-icon.png);
}

.icon.chemical-formula-icon:after, .icon.chemical-formula-icon:before {
  background-image: url(../img/chemical-formula-icon.png);
}

.icon.contract-icon:after, .icon.contract-icon:before {
  background-image: url(../img/contract-icon.png);
}

.icon.energy-icon:after, .icon.energy-icon:before {
  background-image: url(../img/energy-icon.png);
}

.icon.environmental-icon:after, .icon.environmental-icon:before {
  background-image: url(../img/environmental-icon.png);
}

.icon.food-icon:after, .icon.food-icon:before {
  background-image: url(../img/food-icon.png);
}

.icon.materials-icon:after, .icon.materials-icon:before {
  background-image: url(../img/materials-icon.png);
}

.icon.medical-icon:after, .icon.medical-icon:before {
  background-image: url(../img/medical-tech-icon.png);
}

.icon.other-icon:after, .icon.other-icon:before {
  background-image: url(../img/ancillary-icon.png);
}

.icon.science-icon:after, .icon.science-icon:before {
  background-image: url(../img/dna-icon.png);
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.alert {
  padding: 0.85em 1em;
  margin: 0.35em 0;
  border-radius: 25px;
}
.alert.error {
  background-color: #D4323E;
  color: #fff;
}
.alert.success {
  background-color: #7fb905;
  color: #fff;
}
.alert.warning {
  background-color: #7fb905;
  color: #fff;
}
.alert.info {
  background-color: #ccedf4;
  color: #123037;
}

#notification_container .alert {
  position: fixed;
  margin: 0 auto;
}

.btn, .page-template-page-search .quick-search .button, .wp-block-button__link {
  font-size: 16px;
  font-family: inherit;
  display: inline-block;
  background: transparent;
  border: 1px solid #00A5C6;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  text-align: center;
  border-radius: 25px;
  padding: 7px 35px;
  text-transform: uppercase;
  width: 100%;
}
@media only screen and (min-width: 850px) {
  .btn, .page-template-page-search .quick-search .button, .wp-block-button__link {
    width: auto;
  }
}
.btn:hover, .page-template-page-search .quick-search .button:hover, .wp-block-button__link:hover {
  background: #00A5C6;
  color: #fff;
}

.btn.primary, .page-template-page-search .quick-search .button {
  background: #00A5C6;
  color: #fff;
}

.btn.arrow, .page-template-page-search .quick-search .arrow.button {
  border: none;
  padding: 0;
  text-align: left;
}
.btn.arrow:after, .page-template-page-search .quick-search .arrow.button:after {
  display: inline-block;
  content: "";
  width: 38px;
  height: 27px;
  background-size: contain;
}
.btn.arrow:hover, .page-template-page-search .quick-search .arrow.button:hover {
  background: none;
}
.btn.arrow span, .page-template-page-search .quick-search .arrow.button span {
  display: none;
}

.btn.btn-arrow, .page-template-page-search .quick-search .btn-arrow.button {
  padding: 7px 35px;
}
.btn.btn-arrow:after, .page-template-page-search .quick-search .btn-arrow.button:after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 18px;
  vertical-align: bottom;
  margin: 0 0 0 70px;
  background-size: contain;
  background-position: center;
}
.btn.btn-arrow:hover:after, .page-template-page-search .quick-search .btn-arrow.button:hover:after {
  background-image: url(../img/arrow-white-icon.png);
}

.btn.arrow-text, .page-template-page-search .quick-search .arrow-text.button {
  border: none;
  padding: 0;
  line-height: 18px;
}
.btn.arrow-text:after, .page-template-page-search .quick-search .arrow-text.button:after {
  display: inline-block;
  vertical-align: top;
  content: "";
  width: 25px;
  height: 18px;
  margin: 0 0 0 20px;
  background: transparent url(../img/arrow-icon.png) center/contain no-repeat;
}
.btn.arrow-text:hover, .page-template-page-search .quick-search .arrow-text.button:hover {
  background: none;
  color: #123037;
}

.editor-arrow-btn {
  max-width: 38px;
}

input[type=checkbox],
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=hidden],
input[type=image],
input[type=month],
input[type=number],
input[type=password],
input[type=radio],
input[type=range],
input[type=reset],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week], select {
  border-radius: 25px;
  border: 2px solid #00A5C6;
  padding: 8px 20px;
  font-size: 18px;
  background: #fff;
  width: 100%;
}
input[type=checkbox]:focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=hidden]:focus,
input[type=image]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=radio]:focus,
input[type=range]:focus,
input[type=reset]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus, select:focus {
  outline: 2px solid #00A5C6;
}

textarea {
  font-family: "Open Sans", sans-serif;
  border: 2px solid #00A5C6;
  border-radius: 25px 25px 0 25px;
  min-height: 300px;
  width: 100%;
  padding: 10px 20px;
  font-size: 18px;
  resize: vertical;
}
textarea:focus {
  outline: 2px solid #00A5C6;
}

label {
  padding: 0 0 0 10px;
  margin: 0 0 8px;
  display: block;
}

input[type=radio] {
  display: none;
}
input[type=radio] + label {
  width: auto;
  cursor: pointer;
  margin-right: 1em;
  margin-bottom: 0.5em;
  display: inline-block;
}
input[type=radio] + label:before {
  content: " ";
  display: inline-block;
  background-color: #fff;
  vertical-align: middle;
  border: #00A5C6 solid 2px;
  border-radius: 1em;
  width: 18px;
  height: 18px;
  margin: 0 0.5em 0.5em 0;
  transition: border-color 0.3s;
}
input[type=radio]:checked + label:before {
  background-color: #00A5C6;
  background: radial-gradient(ellipse at center, #00A5C6 35%, #fff 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$text_colour",endColorstr="$background_colour",GradientType=1);
}
input[type=radio] + label:focus:before {
  transition: border-color 0.3s;
  border-color: #00A5C6;
}
input[type=radio].errors + label:before {
  border-color: #D4323E;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  position: relative;
  width: auto;
  cursor: pointer;
  margin-right: 1em;
  margin-bottom: 0.4em;
  display: inline-block;
  line-height: 22px;
  vertical-align: middle;
}
input[type=checkbox] + label:before {
  content: " ";
  display: inline-block;
  top: 0.1em;
  background-color: #fff;
  vertical-align: middle;
  border: #00A5C6 solid 2px;
  width: 18px;
  height: 18px;
  margin: 0 0.5em 0 0;
  transition: border-color 0.3s;
}
input[type=checkbox]:checked + label:before {
  text-align: center;
  background-color: #00A5C6;
}
input[type=checkbox] + label:focus:before {
  transition: border-color 0.3s;
  border-color: #00A5C6;
}
input[type=checkbox].errors + label:before {
  border-color: #D4323E;
}

.wpcf7-form-control-wrap input {
  margin-top: 5px;
}

@media only screen and (min-width: 550px) {
  #wpcf7-f33726-o1 {
    width: 50%;
  }
}

.errors {
  padding: 0 0 0 10px;
  color: #D4323E;
}

.menu-wrapper {
  padding: 20px 0 0;
}
@media only screen and (min-width: 850px) {
  .menu-wrapper {
    padding: 0;
  }
}

nav.site {
  margin: 0 0 0 auto;
}

.site-title {
  width: 195px;
  height: 28px;
  background: url(../img/talentmark-white.png) center/195px 28px no-repeat;
  margin: 20px 0 30px 10px;
}
@media only screen and (min-width: 850px) {
  .site-title {
    margin: 80px auto 0 0;
  }
}
.site-title a {
  display: block;
  height: 100%;
}
.site-title span {
  display: none;
}

.site-header {
  padding: 0 10px;
  background: #8FEAFF linear-gradient(90deg, #081D4D 0%, #fff 50%);
  background-blend-mode: multiply;
}
@media only screen and (min-width: 850px) {
  .site-header {
    padding: 0;
  }
}
.site-header.home, .site-header.phages, .site-header.tubes {
  background-blend-mode: multiply, normal;
}
.site-header.home {
  background: linear-gradient(90deg, #081D4D 0%, #fff 50%), url(../img/home-header.jpg) center/cover no-repeat;
}
@media only screen and (min-width: 850px) {
  .site-header.home {
    height: 750px;
  }
}
.site-header.client {
  background: linear-gradient(90deg, #081D4D 0%, #fff 50%), url(../img/client-header.jpg) center/cover no-repeat;
}
.site-header.phages {
  background: linear-gradient(90deg, #081D4D 0%, #fff 50%), url(../img/phages.jpg) center/cover no-repeat;
}
.site-header.tubes {
  background: linear-gradient(90deg, #081D4D 0%, #fff 50%), url(../img/tubes.jpg) center/cover no-repeat;
}
.site-header.section-biotechnology {
  background: linear-gradient(90deg, #081D4D 0%, #fff 50%), url(../img/biology.jpg) center/cover no-repeat;
}
.site-header.chemicals {
  background: linear-gradient(90deg, #081D4D 0%, #fff 50%), url(../img/chemicals.jpg) center/cover no-repeat;
}
.site-header.medtech {
  background: linear-gradient(90deg, #081D4D 0%, #fff 50%), url(../img/medtech.jpg) center/cover no-repeat;
}
@media only screen and (min-width: 850px) {
  .site-header .menu-wrapper {
    display: flex;
    /*            min-height: 400px;*/
  }
}
.site-header .menu-primary-navigation-container,
.site-header .menu {
  height: 100%;
}
.site-header .menu-primary-navigation-container {
  padding: 0 0 20px 0;
}
@media only screen and (min-width: 850px) {
  .site-header .menu-primary-navigation-container {
    padding: 0;
  }
}
.site-header .sub-menu {
  padding: 0 0 0 20px;
}
.site-header .menu,
.site-header .sub-menu {
  list-style-type: none;
  margin: 0;
}
@media only screen and (min-width: 850px) {
  .site-header .menu,
  .site-header .sub-menu {
    padding: 0;
  }
}
.site-header .sub-menu {
  margin: 20px 0 0 0;
}
@media only screen and (min-width: 850px) {
  .site-header .sub-menu {
    margin: 0;
  }
}
.site-header .menu-item {
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.site-header .menu-item a {
  display: block;
}
@media only screen and (min-width: 850px) {
  .site-header .menu-item a {
    text-align: center;
  }
}
.site-header .menu {
  display: none;
}
@media only screen and (min-width: 850px) {
  .site-header .menu {
    display: flex;
    gap: 15px;
    position: relative;
  }
}
.site-header .menu > .menu-item {
  padding: 15px 0 0;
}
@media only screen and (min-width: 850px) {
  .site-header .menu > .menu-item:before {
    display: none;
    content: "";
    border-radius: 4px;
    height: 5px;
    visibility: 0;
    background: transparent;
  }
}
.site-header .menu > .menu-item > a {
  margin: 0 0 20px;
}
@media only screen and (min-width: 850px) {
  .site-header .menu > .menu-item > a {
    margin: 75px 0 0;
    padding: 11px 30px;
    border-radius: 25px;
  }
}
@media only screen and (min-width: 850px) {
  .site-header .menu > .menu-item:first-of-type {
    margin: 0 0 0 auto;
  }
}
.site-header .menu > .menu-item:nth-of-type(n):before, .site-header .menu > .menu-item:nth-of-type(n) > a {
  background: #fff;
}
.site-header .menu > .menu-item:nth-of-type(n):hover:before {
  background: #123037;
}
.site-header .menu > .menu-item:nth-of-type(1) > a, .site-header .menu > .menu-item:nth-of-type(2) > a {
  background: #123037;
  color: #fff;
}
.site-header .menu > .menu-item:nth-of-type(3) > a, .site-header .menu > .menu-item:nth-of-type(4) > a {
  background: rgba(255, 255, 255, 0.5019607843);
}
.site-header .menu > .menu-item.social a {
  padding: 11px 0 0;
  background: none;
}
.site-header .menu a {
  text-decoration: none;
}
.site-header .menu .children {
  padding: 30px 0 0;
}
@media only screen and (min-width: 850px) {
  .site-header .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}
@media only screen and (min-width: 850px) {
  .site-header .sub-menu:hover {
    display: block;
  }
}
@media only screen and (min-width: 850px) {
  .site-header .sub-menu {
    display: none;
    padding: 20px 0 0;
    margin: 0 auto;
    max-width: 100px;
  }
}

.menu-open .header-wrapper {
  background: rgba(255, 255, 255, 0.7529411765);
}
@media only screen and (min-width: 850px) {
  .menu-open .header-wrapper {
    min-height: 340px;
  }
}
.menu-open .site-header #menu-primary-navigation {
  display: block;
}
@media only screen and (min-width: 850px) {
  .menu-open .site-header #menu-primary-navigation {
    display: flex;
  }
}
.menu-open .site-header .menu > .menu-item {
  padding: 10px 0 0;
}
@media only screen and (min-width: 850px) {
  .menu-open .site-header .menu > .menu-item:before {
    display: block;
  }
}
.menu-open .site-header .menu > .menu-item.social {
  padding: 15px 0 0;
}
.menu-open .site-header .menu > .menu-item.social:before {
  display: none;
}
.menu-open .site-header .menu > .menu-item > a {
  background: none !important;
  color: #123037;
}

.header-wrapper {
  transition: background-color 500ms;
}
@media only screen and (min-width: 850px) {
  .header-wrapper {
    position: absolute;
    width: 100%;
    z-index: 100;
  }
}

.header-text {
  color: #fff;
}
.header-text.case-study-single {
  margin-bottom: 150px;
}
@media only screen and (min-width: 550px) {
  .header-text.case-study-single {
    margin-bottom: unset;
  }
}

.mobile-menu-toggle {
  position: absolute;
  top: 50px;
  right: 20px;
}
@media only screen and (min-width: 850px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle button {
  border: none;
  background: transparent;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 1px 1px 2px #123037;
}

@media only screen and (min-width: 850px) {
  .home .header-text-wrapper {
    padding: 340px 0 0;
  }
}
.home .header-text-wrapper .header-text {
  display: block;
  max-width: 560px;
}

.sector .header-text-wrapper .header-text {
  display: block;
  max-width: 500px;
  margin: 0 0 80px;
}
.sector .header-text-wrapper .h4 {
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

@media only screen and (min-width: 550px) {
  .home .header-text-wrapper .content,
  .sector .header-text-wrapper .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 850px) {
  .home .header-text-wrapper .content,
  .sector .header-text-wrapper .content {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
.home .header-text-wrapper .search-title,
.sector .header-text-wrapper .search-title {
  font-size: 18px;
  color: #fff;
  margin: 0 0 30px;
  font-weight: 600;
}
.home .header-text-wrapper .searchfield,
.sector .header-text-wrapper .searchfield {
  flex-grow: 2;
}
.home .header-text-wrapper .searchfield label,
.sector .header-text-wrapper .searchfield label {
  display: none;
}
.home .header-text-wrapper .searchfield input,
.sector .header-text-wrapper .searchfield input {
  border: none;
  background: none;
}
.home .header-text-wrapper .searchfield input:focus,
.sector .header-text-wrapper .searchfield input:focus {
  outline: none;
}
.home .header-text-wrapper .search-wrapper,
.sector .header-text-wrapper .search-wrapper {
  align-self: center;
  padding: 0 0 40px;
}
@media only screen and (min-width: 850px) {
  .home .header-text-wrapper .search-wrapper,
  .sector .header-text-wrapper .search-wrapper {
    padding: 0;
  }
}
.home .header-text-wrapper .searchsubmit button,
.sector .header-text-wrapper .searchsubmit button {
  display: block;
  margin: 0;
  border: 0;
  border-radius: 0 25px 25px 0;
  height: 100%;
  width: 54px;
  background: #081D4D url(../img/search.png) center no-repeat;
}
.home .header-text-wrapper .searchsubmit span,
.sector .header-text-wrapper .searchsubmit span {
  display: none;
}
.home .header-text-wrapper .search-fieldset-wrapper,
.sector .header-text-wrapper .search-fieldset-wrapper {
  display: inline-flex;
  width: 100%;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.7529411765);
}
.home .header-text-wrapper .search-fieldset-wrapper:focus-within,
.sector .header-text-wrapper .search-fieldset-wrapper:focus-within {
  outline: 2px inset #081D4D;
}

@media only screen and (min-width: 550px) {
  .header-text-wrapper {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 850px) {
  .header-text-wrapper {
    padding: 230px 0 0;
  }
}
@media only screen and (min-width: 850px) {
  .header-text-wrapper .header-text {
    display: flex;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 550px) {
  .header-text-wrapper .header-text.case-study-single h2, .header-text-wrapper .header-text.case-study-single img {
    flex: 0 0 50%;
  }
}
.header-text-wrapper .excerpt {
  background: #081D4D;
  max-width: 600px;
  padding: 50px 40px 50px 50px;
  border-radius: 25px 25px 0 0;
}
.header-text-wrapper .featured-img {
  height: 300px;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 -100px -100px 0;
}
@media only screen and (min-width: 550px) {
  .header-text-wrapper .featured-img {
    height: 440px;
    width: 460px;
  }
}
.header-text-wrapper h2 {
  font-size: 30px;
  padding: 0 30px 0 0;
  margin: 0 0 50px;
}
@media only screen and (min-width: 850px) {
  .header-text-wrapper h2 {
    font-size: 50px;
  }
}
.header-text-wrapper h4 {
  color: #00A5C6;
  text-transform: uppercase;
}
.header-text-wrapper .excerpt-text {
  color: #fff;
  font-size: 30px;
  margin: 0;
}

.header-client-testimonials {
  padding: 0 0 20px;
  /*    .panel:nth-of-type(3) {
          background: $ck_white_75_transparent url(../img/arrow-icon.png) right 50px bottom 40px / 38px 27px  no-repeat;
      }

      .panel:nth-of-type(4) {
          background: $ck_dark_blue url(../img/arrow-icon.png) right 50px bottom 40px / 38px 27px  no-repeat;
      }*/
}
@media only screen and (min-width: 850px) {
  .header-client-testimonials {
    display: grid;
    gap: 20px;
    align-content: stretch;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1650px) {
  .header-client-testimonials {
    display: grid;
    gap: 25px 30px;
    align-content: stretch;
    grid-template-columns: 0.65fr 0.65fr 1fr;
    padding: 0 0 120px;
  }
}
.header-client-testimonials h4 {
  font-size: 16px;
  font-weight: 600;
  color: #123037;
}
.header-client-testimonials .dark h4 {
  color: #fff;
}
.header-client-testimonials .panel {
  display: flex;
  flex-direction: column;
  padding: 34px;
  margin: 0 0 30px;
}
@media only screen and (min-width: 850px) {
  .header-client-testimonials .panel {
    margin: 0;
  }
}
.header-client-testimonials .panel .text {
  font-size: 18px;
  margin: 10px 0;
}
@media only screen and (min-width: 850px) {
  .header-client-testimonials .panel .text {
    font-size: 30px;
  }
}
.header-client-testimonials .panel a {
  margin: auto 0 0;
  align-self: flex-start;
}
.header-client-testimonials .panel a:hover {
  color: #123037;
}
.header-client-testimonials .panel a:after {
  width: 38px;
  height: 27px;
  vertical-align: middle;
}
.header-client-testimonials .panel:first-of-type,
.header-client-testimonials .panel:nth-of-type(2) {
  grid-row: 1/span 2;
}
.header-client-testimonials .panel:first-of-type h4,
.header-client-testimonials .panel:nth-of-type(2) h4 {
  margin: 0 0 30px;
}
@media only screen and (min-width: 850px) {
  .header-client-testimonials .panel:first-of-type h4,
  .header-client-testimonials .panel:nth-of-type(2) h4 {
    margin: 0 0 120px;
  }
}

.footer {
  background: #081D4D;
  color: #fff;
  font-size: 12px;
}
.footer ul, .footer li,
.footer .locations-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  line-height: 30px;
}
.footer .site-title {
  margin: 0 0 30px;
  grid-row: 1/span 2;
}
@media only screen and (min-width: 1650px) {
  .footer .site-title {
    margin: 0;
  }
}
.footer a {
  text-decoration: none;
}
@media only screen and (min-width: 850px) {
  .footer .section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }
}
@media only screen and (min-width: 1650px) {
  .footer .section {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px 0;
  }
}
.footer h4 {
  font-size: 12px;
  color: #00A5C6;
  text-transform: uppercase;
}
.footer .footer-copyright {
  font-size: 13px;
}
@media only screen and (min-width: 850px) {
  .footer .footer-copyright {
    grid-column: 1/span 2;
  }
}
.footer .footer-copyright p {
  margin: 0;
}
@media only screen and (min-width: 850px) {
  .footer .footer-legal {
    grid-column: 3;
  }
}
@media only screen and (min-width: 1650px) {
  .footer .footer-legal {
    grid-column: auto;
  }
}
.footer .footer-item {
  margin: 0 0 40px;
}
@media only screen and (min-width: 850px) {
  .footer .footer-item {
    margin: 0;
  }
}

.latest-jobs h2.icon, .section .section-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.section {
  padding: 50px 10px;
}
@media only screen and (min-width: 850px) {
  .section {
    padding: 80px 0;
  }
}
.section p:last-of-type {
  margin: 0;
}
.section .btn-header {
  display: flex;
  align-items: center;
}
.section .btn-header .btn, .section .btn-header .page-template-page-search .quick-search .button, .page-template-page-search .quick-search .section .btn-header .button {
  margin: 0 0 0 auto;
}

.dark {
  color: #fff;
  background-color: #081D4D;
}

.grey {
  background-color: #ebedee;
}

.light {
  background-color: #ccedf4;
}
.light .panel {
  background-color: #fff;
}

.blue {
  background-color: #8FEAFF;
}

.lighter {
  background-color: rgba(0, 165, 198, 0.1490196078);
}

.fade {
  background: linear-gradient(90deg, rgba(0, 165, 198, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  background-size: 80%;
  background-repeat: no-repeat;
}

.white-transparent {
  background-color: rgba(255, 255, 255, 0.5019607843);
}

.white {
  background-color: #fff;
}

@media only screen and (min-width: 850px) {
  .wp-block-buttons {
    display: flex;
    gap: 36px;
    align-items: center;
  }
}
.wp-block-buttons .btn, .wp-block-buttons .page-template-page-search .quick-search .button, .page-template-page-search .quick-search .wp-block-buttons .button, .wp-block-buttons .wp-block-button {
  margin: 0 0 40px;
}
@media only screen and (min-width: 850px) {
  .wp-block-buttons .btn, .wp-block-buttons .page-template-page-search .quick-search .button, .page-template-page-search .quick-search .wp-block-buttons .button, .wp-block-buttons .wp-block-button {
    margin: 0;
  }
}

.panel,
.panel-lg {
  padding: 25px;
  border-radius: 25px;
}
.panel.panel-flat,
.panel-lg.panel-flat {
  border-radius: 25px 25px 0 0;
}

.full-width-img {
  padding: 0;
  margin: 0;
}
.full-width-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.panel-lg {
  margin-bottom: 20px;
  padding: 20px;
}
@media only screen and (min-width: 550px) {
  .panel-lg {
    margin-bottom: unset;
    padding: 50px;
  }
}
@media only screen and (min-width: 850px) {
  .panel-lg {
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }
  .panel-lg > div, .panel-lg > p {
    flex: 1 1 100%;
  }
  .panel-lg p {
    font-size: 25px;
  }
}
@media only screen and (min-width: 850px) {
  .panel-lg.alt-layout {
    align-content: flex-start;
  }
}
.panel-lg.lab-bg-img {
  background-image: url("../img/lab.jpg");
  background-size: cover;
}

.see-all {
  align-self: flex-end;
  justify-self: flex-end;
  text-decoration: none;
}

@media only screen and (min-width: 550px) {
  .project-at-a-glance,
  .brochure-section {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 2fr;
    gap: 20px;
  }
}
@media only screen and (min-width: 550px) {
  .project-at-a-glance.candidate,
  .brochure-section.candidate {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.project-at-a-glance.candidate .panel-lg,
.brochure-section.candidate .panel-lg {
  min-height: unset;
}

@media only screen and (min-width: 550px) {
  .brochure-section-pattern > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 2fr;
    gap: 20px;
  }
}
.brochure-section-pattern .logo-img {
  margin: 0;
  max-width: 132px;
}

.testimonial-container {
  margin: 60px 0;
}
@media only screen and (min-width: 550px) {
  .testimonial-container .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
.testimonial-container .wp-block-group__inner-container p {
  padding: 30px;
  background-color: #081D4D;
  border-radius: 25px;
  color: #fff;
}
@media only screen and (min-width: 550px) {
  .testimonial-container .wp-block-group__inner-container p {
    flex: 1 1 50%;
  }
}
.testimonial-container .wp-block-group__inner-container p:nth-child(3n+2) {
  background-color: #00A5C6;
}
.testimonial-container .wp-block-group__inner-container p:nth-child(3n+3) {
  background-color: #123037;
}

.filters {
  position: relative;
  z-index: 500;
  margin: 50px 0;
}

.generic-page {
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .generic-page {
    padding: 60px 30px;
  }
}
@media only screen and (min-width: 1680px) {
  .generic-page {
    padding: 60px 0;
  }
}
.generic-page .content-inner {
  margin-top: 30px;
}

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

.pagination-link a, .pagination-link span {
  display: inline-block;
  min-width: 69px;
  font-size: 30px;
  text-decoration: none;
}
.pagination-link.prev a:before {
  content: "‹";
}
.pagination-link.prev span {
  display: none;
}
.pagination-link.next a:after {
  content: "›";
}
.pagination-link.prev a, .pagination-link.next a {
  gap: 20px;
  display: flex;
  align-items: center;
}
.pagination-link.prev a:after,
.pagination-link.prev a:before, .pagination-link.next a:after,
.pagination-link.next a:before {
  font-size: 60px;
  padding: 0 0 10px;
  color: #00A5C6;
  vertical-align: middle;
}

.filters dl {
  border-radius: 25px;
  background-color: #fff;
  padding: 45px;
}
.filters dt {
  font-size: 20px;
}
.filters dt, .filters dl {
  margin: 0 0 30px;
}
.filters dd, .filters label {
  padding: 0;
  margin: 0;
}

.consultant-meta {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.consultant-meta li {
  padding: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.social:before {
  display: inline-block;
  content: "";
  border-radius: 5px;
  background: #123037 url(../img/linkedin.png) center no-repeat;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.social span {
  display: none;
}

.template {
  position: fixed;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1000;
}
.template span {
  background-color: rgba(255, 255, 255, 0.7529411765);
  padding: 0 20px 5px;
  border-radius: 0 0 10px 10px;
}

.admin-bar .template {
  top: 33px;
}

.latest-jobs-list {
  list-style-type: none;
  padding: 0;
}

.latest-job-item {
  border-radius: 25px;
  background-color: #ebedee;
  padding: 40px;
  margin: 0 0 20px;
}
.latest-job-item:after {
  content: "";
  background: transparent url(../img/accordion-arrow-open.png) center no-repeat;
}
.latest-job-item span {
  display: block;
}
.latest-job-item a {
  font-weight: bold;
  text-decoration: none;
}

@media only screen and (min-width: 550px) {
  .wp-block-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.wp-block-columns.lg-gap {
  gap: 40px;
}
@media only screen and (min-width: 1650px) {
  .wp-block-columns.lg-gap {
    gap: 120px;
  }
}

.section-news-list {
  margin: 0 0 30px;
}
.section-news-list .owl-stage {
  display: flex;
}
@media only screen and (min-width: 850px) {
  .section-news-list .owl-stage .owl-item {
    width: 100% !important;
  }
}
@media only screen and (min-width: 850px) {
  .section-news-list .owl-stage .owl-item:first-child {
    width: 200% !important;
  }
}
.section-news-list .owl-stage .owl-item:first-child .news-post {
  height: 100%;
}
@media only screen and (min-width: 850px) {
  .section-news-list .owl-stage .owl-item:first-child .news-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.section-news-list .owl-stage .owl-item:first-child .news-post .img {
  height: 100%;
  border-radius: 0;
}
.section-news-list .owl-stage .owl-item:first-child .news-post .news-content .news-logo {
  max-width: 131px;
  width: 100%;
  height: auto;
}
.section-news-list .owl-stage .owl-item:first-child .news-post .news-content .title-container {
  display: block;
  font-weight: 600;
  text-decoration: none;
  margin: 20px 0;
}
@media only screen and (min-width: 550px) {
  .section-news-list .owl-stage .owl-item:first-child .news-post .news-content .title-container {
    font-size: 30px;
  }
}

.featured-img,
.featured-img img {
  border-radius: 25px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1650px) {
  .featured-img,
  .featured-img img {
    margin-bottom: 0;
  }
}

.news-post {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.47);
  margin: 0 0 30px;
}
@media only screen and (min-width: 850px) {
  .news-post {
    margin: 0;
  }
}
.news-post .featured-img {
  display: flex;
  background-size: cover;
}
.news-post .featured-img .title {
  padding: 30px;
  margin: 0;
  align-self: flex-end;
  color: #fff;
}
@media only screen and (min-width: 850px) {
  .news-post .featured-img .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1650px) {
  .news-post .featured-img .title {
    padding: 0 80px 30px 30px;
    font-size: 40px;
  }
}
.news-post .featured-img a {
  text-decoration: none;
}
.news-post {
  border-radius: 25px;
}
@media only screen and (min-width: 850px) {
  .news-post {
    border-radius: 25px 25px 0 0;
  }
}
.news-post .img {
  border-radius: 25px 25px 0 0;
  background-color: rgba(58, 76, 80, 0.1);
  height: 200px;
}
@media only screen and (min-width: 850px) {
  .news-post .img {
    height: 390px;
  }
}
.news-post .btn, .news-post .page-template-page-search .quick-search .button, .page-template-page-search .quick-search .news-post .button {
  margin: auto 0 20px 0;
  padding-left: 30px;
  align-self: flex-start;
}
.news-post .news-content {
  padding: 30px;
}
.news-post time {
  display: block;
  font-weight: 600;
  margin: 0 0 6px;
}

.accordion-list,
.numbered-list {
  list-style-type: none;
  counter-reset: accordion;
  padding: 0;
  margin: 0 0 40px;
}
@media only screen and (min-width: 850px) {
  .accordion-list,
  .numbered-list {
    margin: 0;
  }
}
.accordion-list .js-accordion-controller:before, .accordion-list li:before,
.numbered-list .js-accordion-controller:before,
.numbered-list li:before {
  counter-increment: accordion;
  content: counter(accordion, decimal-leading-zero);
  padding: 0 20px 0 0;
}

.wp-block-pb-accordion-item,
.numbered-list li {
  border-bottom: 1px solid #123037;
  padding: 20px 0 0;
}
.wp-block-pb-accordion-item:last-child,
.numbered-list li:last-child {
  border: none;
}

.is-open > .c-accordion__title:after {
  content: "";
  background: transparent url(../img/accordion-arrow-open.png) center no-repeat;
}

.c-accordion__title,
.numbered-list li {
  margin: 0 0 20px;
  font-size: 20px;
}
@media only screen and (min-width: 850px) {
  .c-accordion__title,
  .numbered-list li {
    font-size: 30px;
  }
}
.c-accordion__title:after,
.numbered-list li:after {
  content: "";
  background: transparent url(../img/accordion-arrow.png) center no-repeat;
  height: 25px;
  width: 25px;
}

.numbered-list li {
  display: flex;
  padding: 20px 0;
  margin: 0;
}
@media only screen and (min-width: 850px) {
  .numbered-list li {
    align-items: center;
  }
}
.numbered-list li:last-of-type {
  border: none;
}
.numbered-list li:after {
  align-self: center;
  margin: 0 0 0 auto;
}
.numbered-list li a {
  width: 100%;
  text-decoration: none;
}

.c-accordion__content {
  margin: 40px 0;
}

.wp-block-media-text .wp-block-media-text__media {
  float: left;
  width: 200px;
  margin: 0 40px 40px 0;
}

.wp-block-spacer {
  clear: both;
}

.clients-sidebar-block {
  position: relative;
  margin: 0 0 20px;
}
.clients-sidebar-block h2 {
  position: absolute;
  bottom: 20px;
  margin: 0;
  left: 20px;
}

@media only screen and (min-width: 850px) {
  .advice-centre {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}
@media only screen and (min-width: 1650px) {
  .advice-centre {
    grid-template-columns: 2fr 1fr;
    gap: 140px;
  }
}
@media only screen and (min-width: 850px) {
  .advice-centre .subtitle {
    max-width: 70%;
  }
}

.case-studies-list {
  display: grid;
  gap: 80px 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 0 0 170px;
}
.case-studies-list .case-study {
  border-radius: 25px 25px 0 0;
  background: #ebedee;
}
.case-studies-list .see-all {
  grid-column: 1/span 3;
  justify-self: flex-start;
}

@media only screen and (min-width: 1650px) {
  .has-sidebar .content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 180px;
  }
}
.has-sidebar .side-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media only screen and (min-width: 1650px) {
  .has-sidebar .side-content {
    display: block;
  }
}
.has-sidebar .latest-jobs-colour-blocks {
  grid-column: 1/span 2;
}

@media only screen and (min-width: 1650px) {
  .has-one-section-sidebar > .section:first-of-type .content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 180px;
  }
}
.has-one-section-sidebar .side-content {
  margin-top: 30px;
}
@media only screen and (min-width: 550px) {
  .has-one-section-sidebar .side-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: unset;
  }
}
@media only screen and (min-width: 1650px) {
  .has-one-section-sidebar .side-content {
    display: block;
  }
}
.has-one-section-sidebar .latest-jobs-colour-blocks {
  grid-column: 1/span 2;
}

.file-download {
  margin: 80px 0;
}

.file-download-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.file-download-form .wide {
  grid-column: 1/span 2;
}

/** Homepage  **/
@media only screen and (min-width: 850px) {
  .group-welcome .entry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.group-welcome .entry-content div:last-of-type {
  margin: 0 0 0 auto;
}
@media only screen and (min-width: 850px) {
  .group-welcome h3, .group-welcome h2, .group-welcome .h3 {
    margin: 0;
    max-width: 500px;
  }
}

@media only screen and (min-width: 850px) {
  .group-news-insights .content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr 1fr;
    gap: 30px;
  }
}
@media only screen and (min-width: 1650px) {
  .group-news-insights .content {
    gap: 30px 140px;
  }
}
.group-news-insights .content h2 {
  grid-column: 1;
}
@media only screen and (min-width: 850px) {
  .group-news-insights .content .group-latest-news {
    grid-row: 3;
    grid-column: 1;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
.group-news-insights .content .group-latest-jobs-title {
  grid-column: 2;
  grid-row: 1;
}
.group-news-insights .content .group-jobs-of-the-week-list {
  grid-row: 2/span 2;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: stretch;
  margin: 0 0 30px;
}
@media only screen and (min-width: 850px) {
  .group-news-insights .content .group-jobs-of-the-week-list {
    margin: 0;
  }
}
.group-news-insights .content .news-see-all,
.group-news-insights .content .jobs-see-all,
.group-news-insights .content .group-latest-news-title,
.group-news-insights .content .group-latest-jobs-title {
  padding: 0 0 0 30px;
  margin: 0 0 30px;
}
@media only screen and (min-width: 850px) {
  .group-news-insights .content .news-see-all,
  .group-news-insights .content .jobs-see-all,
  .group-news-insights .content .group-latest-news-title,
  .group-news-insights .content .group-latest-jobs-title {
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 850px) {
  .group-news-insights .content .group-latest-news-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: 1;
    background: #fff;
  }
}
.group-news-insights .content .group-latest-news-main .btn.arrow, .group-news-insights .content .group-latest-news-main .page-template-page-search .quick-search .arrow.button, .page-template-page-search .quick-search .group-news-insights .content .group-latest-news-main .arrow.button {
  padding-left: unset;
}
@media only screen and (min-width: 850px) {
  .group-news-insights .content .group-latest-news-main .featured-img {
    height: 100%;
    border-radius: 25px 0 0 0;
    aspect-ratio: unset;
  }
}
.group-news-insights .content .group-latest-news-main .group-news-content {
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .group-news-insights .content .group-latest-news-main .group-news-content {
    padding: 40px 60px;
    display: flex;
    flex-wrap: wrap;
  }
}
.group-news-insights .content .group-latest-news-main .group-news-content h3 {
  padding: 0 20px 0 0;
}
.group-news-insights .content .featured-img {
  margin-bottom: 0;
}
.group-news-insights .content .job {
  background: #fff;
  padding: 45px;
  flex-grow: 1;
  border-radius: 25px;
}
.group-news-insights .content .job h3 {
  font-size: 20px;
  margin-bottom: 40px;
}
.group-news-insights .content .job h3:before {
  content: "";
  width: 60px;
  height: 60px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 20px 0;
  display: block;
}
@media only screen and (min-width: 550px) {
  .group-news-insights .content .job h3:before {
    display: inline-block;
    margin: 0 20px 0 0;
  }
}
.group-news-insights .content .job:nth-of-type(1) h3:before {
  background: url(../img/chemical-formula-icon.png) center no-repeat;
}
.group-news-insights .content .job:nth-of-type(2) h3:before {
  background: url(../img/contract-icon.png) center no-repeat;
}
.group-news-insights .content .job:nth-of-type(3) h3:before {
  background: url(../img/dna-icon.png) center no-repeat;
}
.group-news-insights .content .job .job-body {
  margin: 0 0 20px;
}
@media only screen and (min-width: 550px) {
  .group-news-insights .content .job .job-body {
    margin: 0 0 70px;
  }
}
.group-news-insights .content .job h4 {
  margin: 0;
  font-weight: 600;
}

.logo-carousel {
  padding: 50px 10px;
}
@media only screen and (min-width: 850px) {
  .logo-carousel {
    padding: 80px 0 120px;
  }
}

.owl-carousel-logo-slider {
  overflow: hidden;
  position: relative;
}
.owl-carousel-logo-slider .owl-stage {
  display: flex;
  align-items: center;
  padding: 0 30px;
}
.owl-carousel-logo-slider .owl-stage .owl-item {
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
}
.owl-carousel-logo-slider .owl-stage .owl-item img {
  max-height: 102px;
  max-width: 70px;
}
@media only screen and (min-width: 550px) {
  .owl-carousel-logo-slider .owl-stage .owl-item img {
    max-width: unset;
  }
}
.owl-carousel-logo-slider .owl-nav {
  margin-left: 30px;
}
@media only screen and (min-width: 550px) {
  .owl-carousel-logo-slider .owl-nav {
    position: relative;
  }
}
.owl-carousel-logo-slider .owl-nav button {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}
.owl-carousel-logo-slider .owl-nav button.owl-next {
  right: 20px;
}
.owl-carousel-logo-slider .owl-nav button.owl-prev {
  left: 20px;
  margin-right: 20px;
}
.owl-carousel-logo-slider .owl-nav button.owl-prev:after {
  content: "";
  background-image: url(../img/arrow-icon-reverse.png);
}
.owl-carousel-logo-slider .owl-nav button:after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 18px;
  vertical-align: bottom;
  background-size: contain;
  background-position: center;
  transition: opacity 0.3s;
}
.owl-carousel-logo-slider .owl-nav button:hover:after {
  opacity: 0.7;
}
.owl-carousel-logo-slider .owl-nav button span {
  display: none;
}

.owl-carousel-solutions-slider .owl-item:first-child {
  padding-left: 30px;
}
@media only screen and (min-width: 1650px) {
  .owl-carousel-solutions-slider .owl-item:first-child {
    padding-left: 2vw;
  }
}
@media only screen and (min-width: 1800px) {
  .owl-carousel-solutions-slider .owl-item:first-child {
    padding-left: 10vw;
  }
}
@media screen and (min-width: 2000px) {
  .owl-carousel-solutions-slider .owl-item:first-child {
    padding-left: 12vw;
  }
}
@media screen and (min-width: 2200px) {
  .owl-carousel-solutions-slider .owl-item:first-child {
    padding-left: 15vw;
  }
}

.testimonials {
  background-color: rgba(0, 165, 198, 0.1);
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .testimonials {
    padding: 90px 30px 120px;
  }
}
@media only screen and (min-width: 1680px) {
  .testimonials {
    padding: 90px 0 120px;
  }
}

.carousel-title {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 60px;
}

.testimonial-carousel {
  position: relative;
}
.testimonial-carousel .owl-stage-outer {
  overflow: hidden;
}
.testimonial-carousel .owl-stage {
  display: flex;
}
@media only screen and (min-width: 550px) {
  .testimonial-carousel .owl-stage {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1650px) {
  .testimonial-carousel .owl-stage {
    padding: 0 30px 0 30vw;
  }
}
.testimonial-carousel .owl-item {
  background-color: #3A4C50;
  border-radius: 25px;
  padding: 30px;
  /*        @include breakpoint($bp_sm) {
              width: 490px;
          }*/
}
@media only screen and (min-width: 550px) {
  .testimonial-carousel .owl-item {
    padding: 50px 40px 40px;
  }
}
.testimonial-carousel .owl-item:nth-child(3n+1) {
  background-color: #3A4C50;
}
.testimonial-carousel .owl-item:nth-child(3n+1) .testimonial-card {
  color: #fff;
}
.testimonial-carousel .owl-item:nth-child(2), .testimonial-carousel .owl-item:nth-child(2n+3) {
  background-color: #8FEAFF;
}
.testimonial-carousel .owl-item:nth-child(3n+3) {
  background-color: rgba(58, 76, 80, 0.1);
}
.testimonial-carousel .owl-item .testimonial-card {
  color: #123037;
}
.testimonial-carousel .owl-item .testimonial-card .logo {
  width: 75%;
}
@media only screen and (min-width: 850px) {
  .testimonial-carousel .owl-item .testimonial-card .logo {
    width: 30%;
  }
}
.testimonial-carousel .owl-nav {
  margin-top: 30px;
}
@media only screen and (min-width: 850px) {
  .testimonial-carousel .owl-nav {
    position: absolute;
    top: -75px;
    right: 10vw;
    margin-top: unset;
  }
}
.testimonial-carousel .owl-nav button {
  color: transparent;
  background-color: transparent;
  padding: 0;
  border: none;
}
.testimonial-carousel .owl-nav button span {
  display: none;
}
.testimonial-carousel .owl-nav button.owl-prev:after {
  transform: rotate(180deg);
}
.testimonial-carousel .owl-nav button.owl-next {
  margin-left: 40px;
}
.testimonial-carousel .owl-nav button:after {
  content: "";
  display: inline-block;
  background: transparent url(../img/accordion-arrow.png) center no-repeat;
  height: 25px;
  width: 25px;
}

.owl-nav.disabled {
  display: none;
}

.slider {
  overflow: hidden;
}
@media only screen and (min-width: 1650px) {
  .slider {
    margin-left: auto;
  }
}

.job-meta-list {
  list-style-type: none;
  margin: 0 0 40px;
  padding: 0;
}
@media only screen and (min-width: 550px) {
  .job-meta-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
}
.job-meta-list li {
  padding: 0;
  line-height: 30px;
}

@media only screen and (min-width: 850px) {
  .job-advert .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
  }
}
.job-advert .job-consultant {
  display: flex;
  gap: 30px;
  margin: 0 0 30px;
  background-color: #ebedee;
  border-radius: 25px;
}
.job-advert .job-consultant img {
  display: block;
  border-radius: 25px 0 0 25px;
}
.job-advert .job-consultant-details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-grow: 2;
}
.job-advert .job-consultant-details .h3 {
  text-decoration: none;
  margin: 0;
}
.job-advert .job-consultant-details .job-consultant-position {
  font-weight: bold;
  margin: 0 0 20px;
}
.job-advert .job-consultant-details .contact-details {
  display: flex;
  gap: 30px;
}
.job-advert .jobclosed:after {
  display: inline-block;
  font-size: 18px;
  content: "Closed";
  border-radius: 25px;
  background: #ebedee;
  line-height: normal;
  padding: 4px 20px;
  margin: 0 0 0 40px;
  vertical-align: middle;
}
.job-advert .job-meta.page {
  margin: 0 0 60px;
  padding: 0 0 40px;
  border-bottom: 1px solid #123037;
}
.job-advert .job-meta.page .job-meta-list {
  margin: 0 0 20px;
}

.job-application {
  position: relative;
}
.job-application form {
  position: sticky;
  top: 0;
}
.job-application .application-submit a {
  margin: 0 0 40px;
}
@media only screen and (min-width: 850px) {
  .job-application .application-submit a {
    margin: 0;
  }
}

@media only screen and (min-width: 850px) {
  .job-search-page {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 140px;
  }
}
.job-search-page .job {
  border-radius: 25px;
  background-color: #fff;
  margin: 0 0 30px;
  padding: 45px;
}
.job-search-page h1, .job-search-page .filters h3 {
  padding: 0 0 0 30px;
  text-transform: uppercase;
  font-size: 16px;
}
.job-search-page h1 {
  margin-bottom: 1.4em;
}
.job-search-page h2 {
  font-size: 30px;
}

.search-results.number {
  display: inline-block;
  font-size: 16px;
  border-radius: 25px;
  background: #fff;
  line-height: normal;
  padding: 4px 20px;
  margin: 0 0 0 20px;
  vertical-align: baseline;
  text-transform: none;
}

.talentmark .content {
  background-image: url(../img/talentmark.png);
  mix-blend-mode: multiply;
  padding-bottom: 200px;
  background-size: 300px;
  background-position: 90%;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 850px) {
  .talentmark .content {
    padding-bottom: 0;
  }
}

.specialist-solutions {
  padding: 50px 10px;
}
@media only screen and (min-width: 850px) {
  .specialist-solutions {
    padding: 80px 0 120px;
  }
}
.specialist-solutions h2, .specialist-solutions .h3, .specialist-solutions p:last-of-type {
  margin: 0 0 60px;
}
.specialist-solutions .icon-before:before {
  display: block;
  margin: 0 0 30px;
}
@media only screen and (min-width: 850px) {
  .specialist-solutions .btn:last-child, .specialist-solutions .page-template-page-search .quick-search .button:last-child, .page-template-page-search .quick-search .specialist-solutions .button:last-child {
    margin: 0 25px 0 0;
  }
}

.skills-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}
.skills-list .owl-stage {
  display: flex;
  gap: 16px;
}
.skills-list .panel {
  width: 320px;
  flex-shrink: 0;
  padding: 0;
}
.skills-list span {
  display: block;
  padding: 0 0 80px;
}
.skills-list a {
  display: block;
  padding: 25px;
  text-decoration: none;
}

.skill {
  font-size: 20px;
  background: #ebedee url(../img/arrow-icon.png) bottom 25px left 25px no-repeat;
  background-size: 38px 27px;
}

.team-filters,
.casestudies-filters {
  display: flex;
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  align-self: center;
}
.team-filters li,
.casestudies-filters li {
  padding: 0;
}
.team-filters a,
.casestudies-filters a {
  padding: 4px 20px;
  font-size: 12px;
  border: 1px solid #123037;
  transition: all 0.3s;
}
.team-filters a:hover,
.casestudies-filters a:hover {
  background: #123037;
}
.team-filters a.selected,
.casestudies-filters a.selected {
  background: #123037;
  color: #fff;
}

.consultant-filters {
  margin: 80px 0 100px;
}
@media only screen and (min-width: 550px) {
  .consultant-filters {
    display: grid;
    grid-template-columns: 2.4fr 3.2fr;
  }
}
.consultant-filters .h3 {
  margin: 0;
}

.consultants-list:nth-child(odd) {
  background-color: rgba(58, 76, 80, 0.1);
}
.consultants-list .text-block {
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .consultants-list .text-block {
    display: flex;
    justify-content: flex-start;
    gap: 40%;
  }
}

.consultants-list,
.consultants-list-taxonomy {
  margin: 0 0 40px;
}
@media only screen and (min-width: 550px) {
  .consultants-list,
  .consultants-list-taxonomy {
    display: grid;
    grid-template-columns: 2fr 3.5fr 0.5fr;
    gap: 40px 0;
  }
}
.consultants-list h3,
.consultants-list-taxonomy h3 {
  margin: 0;
  padding: 0;
}

.consultants-list:after,
.consultants-list-taxonomy:after,
.special-consultants-location:after {
  content: "";
  border-bottom: 2px solid #ebedee;
  display: block;
}
@media only screen and (min-width: 850px) {
  .consultants-list:after,
  .consultants-list-taxonomy:after,
  .special-consultants-location:after {
    grid-column: 1/span 4;
  }
}

@media only screen and (min-width: 550px) {
  .special-consultants-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 0 0;
  }
}
.special-consultants-location:first-of-type {
  border-top: 2px solid #ebedee;
}
.special-consultants-location:last-of-type:after {
  display: none;
}
.special-consultants-location:after {
  padding: 0 0 20px;
}

.consultants-offices {
  padding: 8px 0 0;
}

.consultant-office {
  margin: 0 0 8px;
  font-weight: 600;
  text-decoration: underline;
}

.consultants-shortlist,
.consultants-offices {
  list-style-type: none;
}
.consultants-shortlist, .consultants-shortlist li,
.consultants-offices,
.consultants-offices li {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.consultant img {
  display: block;
  margin: 0 0 20px;
}
.consultant .name,
.consultant .job-title {
  font-weight: bold;
  margin: 0 0 5px;
}
.consultant .contact a,
.consultant .name a,
.consultant .see-all {
  text-decoration: none;
}
.consultant .social:before {
  margin: 0 10px 0 0;
}
.consultant .label {
  display: inline;
}

.consultants-list-taxonomy {
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media only screen and (min-width: 850px) {
  .consultants-list-taxonomy {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (min-width: 850px) {
  .consultants-list-taxonomy:after {
    grid-column: 1/span 5;
  }
}

@media only screen and (min-width: 550px) {
  .consultants-shortlist {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
}

.consultant-meta {
  font-size: 18px;
}
.consultant-meta li {
  margin: 0 0 10px;
}

.video-container iframe {
  width: 100%;
  min-height: 495px;
}

.news {
  opacity: 1;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 1650px) {
  .news {
    max-width: 90%;
  }
}
.news.transitioning {
  opacity: 0;
}
.news.latest-news {
  display: grid;
  column-gap: 40px;
}
@media only screen and (min-width: 850px) {
  .news.latest-news {
    grid-template-columns: repeat(6, 1fr);
  }
}
.news.latest-news .post {
  display: grid;
  grid-column: span 2;
  background-color: #ebedee;
  grid-column: span 1;
  grid-template-columns: 1fr;
  border-radius: 25px;
  gap: 0;
}
@media only screen and (min-width: 850px) {
  .news.latest-news .post:nth-child(1), .news.latest-news .post:nth-child(2) {
    grid-column: span 3;
  }
  .news.latest-news .post:nth-child(3), .news.latest-news .post:nth-child(4), .news.latest-news .post:nth-child(5) {
    grid-column: span 2;
  }
  .news.latest-news .post:nth-child(3) .featured-img.thumb img, .news.latest-news .post:nth-child(4) .featured-img.thumb img, .news.latest-news .post:nth-child(5) .featured-img.thumb img {
    height: 200px;
  }
  .news.latest-news .post:nth-child(3) .title, .news.latest-news .post:nth-child(4) .title, .news.latest-news .post:nth-child(5) .title {
    font-size: 18px;
    line-height: 30px;
  }
}
.news.latest-news .post .post-content {
  order: 2;
  padding: 40px;
}
.news.latest-news .post .featured-img.thumb {
  order: 1;
  margin: 0;
  height: unset;
  width: unset;
}
.news.latest-news .post .featured-img.thumb img {
  border-radius: 25px 25px 0 0;
  margin: 0;
  height: 300px;
  object-fit: cover;
}
.news.latest-news .post:after {
  content: unset;
}
.news .post-content {
  margin: 0 0 40px;
}
@media only screen and (min-width: 850px) {
  .news .post-content {
    margin: 0;
  }
}
.news .post {
  margin: 0 0 40px;
}
@media only screen and (min-width: 850px) {
  .news .post {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 80px;
    align-content: flex-start;
  }
}
.news .post:after {
  content: "";
  display: block;
  grid-column: 1/span 2;
  margin: 0 0 40px;
}
.news h2 {
  font-size: 30px;
  color: #00A5C6;
}
@media only screen and (min-width: 850px) {
  .news h2 {
    font-size: 40px;
  }
}
.news time {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin: 0 0 1em;
}

.who-we-are {
  background: rgba(0, 165, 198, 0.1490196078);
}
@media only screen and (min-width: 1650px) {
  .who-we-are {
    background: rgba(0, 165, 198, 0.1490196078) url(../img/who-we-are.png) center/cover no-repeat;
  }
}

.join-us-content .panel-lg.col:first-of-type {
  border-radius: 25px 0 0 25px;
}

@media only screen and (min-width: 550px) {
  .meet-our-specialists .consultants {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 200px;
  }
}

.single-consultants hr {
  margin: 80px 0;
}

.candidate-sidebar-block,
.contractors-sidebar-block,
.clients-sidebar-block {
  position: relative;
  margin: 0 0 40px;
}
.candidate-sidebar-block h2,
.contractors-sidebar-block h2,
.clients-sidebar-block h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  color: #fff;
}

.case-studies-list img,
.news-post .featured-img {
  border-radius: 25px 25px 0 0;
  aspect-ratio: 4/3;
  background-blend-mode: multiply, normal;
}

.case-study-excerpt {
  padding: 30px 40px 10px;
}

.trustpilot .h3 {
  margin: 0 0 80px;
}

.follow {
  list-style-type: none;
  padding: 0;
  margin: 0 0 80px;
}
@media only screen and (min-width: 850px) {
  .follow {
    display: flex;
    gap: 20px;
  }
}
.follow a {
  background: #00A5C6;
  color: #fff;
}
.follow li {
  padding: 0;
  margin: 0 0 40px;
}
@media only screen and (min-width: 850px) {
  .follow li {
    margin: 0;
  }
}

.contact .section-title {
  margin: 0 0 40px;
}

@media only screen and (min-width: 850px) {
  .office-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media only screen and (min-width: 1650px) {
  .office-locations {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.office-locations .location {
  display: flex;
  flex-direction: column;
  margin: 0 0 40px;
  padding: 0 0 40px;
  border-bottom: 1px solid #ebedee;
}
@media only screen and (min-width: 850px) {
  .office-locations .location {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }
}
.office-locations .location-location {
  margin: auto 0 0;
}
.office-locations .location-location img {
  border-radius: 25px;
}
.office-locations .location-content {
  margin: 0 0 40px;
}
.office-locations hr {
  display: none;
}
@media only screen and (min-width: 1650px) {
  .office-locations hr {
    display: block;
    grid-column: 1/span 3;
    margin: 0;
  }
}

.text-container {
  padding: 30px;
}
@media only screen and (min-width: 850px) {
  .text-container {
    padding: 30px 50px;
  }
}

.insights-pagination {
  text-align: center;
}

.button-strip {
  background-color: #081D4D;
  padding: 60px 30px;
  margin: 0 auto;
  text-align: center;
}

.advice-centre .numbered-list li:after {
  position: relative;
  left: -25px;
  z-index: 5;
  width: 34px;
}
@media only screen and (min-width: 550px) {
  .advice-centre .numbered-list li:after {
    width: 28px;
  }
}
.advice-centre .numbered-list li a {
  width: 100%;
  z-index: 10;
}

#case-studies-feed .section-title {
  display: inline-block;
}

.search-wrapper {
  padding: 40px;
}
@media only screen and (min-width: 550px) {
  .search-wrapper {
    padding: 0;
  }
}

.mobile-space {
  margin-top: 50px;
}
@media only screen and (min-width: 550px) {
  .mobile-space {
    margin-top: 0;
  }
}

.max-width-graphic {
  max-width: 770px;
}

@media screen and (max-width: 550px) {
  .sister-companies-columns figure {
    margin: 0;
  }
}

@media screen and (max-width: 550px) {
  .sister-companies-spacer {
    height: 0 !important;
  }
}

.gap-above {
  margin-top: 20px !important;
}

/**
 * Popup
 **/
.crush-popup {
  height: 100%;
  opacity: 0;
  color: #000;
  transition: all 0.3s;
  z-index: -1;
  display: none;
}
.crush-popup.open {
  display: block;
  position: fixed;
  top: 16px;
  right: 16px;
  left: 16px;
  opacity: 1;
  z-index: 250;
  margin: 0 auto;
  width: 80%;
  height: 100%;
}
@media only screen and (min-width: 850px) {
  .crush-popup.open {
    width: 931px;
    height: 581px;
  }
}
.crush-popup .outer {
  display: flex;
  height: 90vh;
}
.crush-popup .outer .inner {
  position: relative;
  padding: 30px;
  align-self: center;
  border-radius: 27px;
  background: #fff;
  background-image: url("../img/popup_bg_mob.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-bottom: 80px;
}
@media only screen and (min-width: 550px) {
  .crush-popup .outer .inner {
    background-image: url("../img/popup_bg.jpg");
    background-position: right top;
    padding-bottom: unset;
  }
}
@media only screen and (min-width: 850px) {
  .crush-popup .outer .inner {
    padding: 75px 55px;
  }
}
@media only screen and (min-width: 550px) {
  .crush-popup .outer .inner .text-block {
    max-width: 70%;
  }
}
.crush-popup .outer .inner .text-block .subtitle {
  margin-top: 30px;
}
.crush-popup .outer .inner .text-block .tertiary-title {
  line-height: normal;
  font-size: 16px;
}
@media only screen and (min-width: 550px) {
  .crush-popup .outer .inner .text-block .tertiary-title {
    font-size: 24px;
  }
}
.crush-popup .outer .inner .popup-logo {
  width: 50%;
  max-width: 330px;
}
@media only screen and (min-width: 550px) {
  .crush-popup .outer .inner .popup-logo {
    width: unset;
  }
}
.crush-popup .outer .inner h2 {
  margin-bottom: 20px;
}
.crush-popup .outer .inner .popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px;
  transition: transform 0.3s;
}
.crush-popup .outer .inner .popup-close-btn:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.bg-overlay {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(20px) opacity(0);
  -webkit-backdrop-filter: blur(20px) opacity(0);
  transition: backdrop-filter 0.3s, background 0.3s;
  position: fixed;
  width: 100%;
  height: 1000vh;
  z-index: -1;
  top: 0;
  left: 0;
}
.bg-overlay.open {
  backdrop-filter: blur(20px) opacity(1);
  -webkit-backdrop-filter: blur(20px) opacity(1);
  background: rgba(0, 0, 0, 0.4);
  transition: backdrop-filter 0.3s, background 0.3s;
  z-index: 200;
}

.history-intro {
  max-width: 800px;
  text-align: center;
  margin: 0 auto 80px;
}

.history {
  padding: 0 0 40px;
  margin: 0 0 80px;
  background: linear-gradient(90deg, #fff 0%, #fff 49.8%, #00A5C6 49.8%, #00A5C6 50%, #00A5C6 50.2%, #fff 50.2%, #fff 100%);
}
.history .historical-event {
  display: flex;
  opacity: 0;
  gap: 0 80px;
  align-items: center;
  color: #00A5C6;
  transition: opacity 2s;
  overflow-y: hidden;
  margin: 0 0 40px;
}
.history .historical-event.onScreen {
  opacity: 1;
}
.history .historical-event div {
  width: 50%;
}
.history .historical-event h3 {
  position: relative;
  color: #00A5C6;
  margin-bottom: 10px;
  font-weight: bold;
}
.history .historical-event .img {
  margin: 0;
}
.history .historical-event img {
  width: auto;
  border-radius: 25px;
  margin: 0 0 0 auto;
}
.history .historical-event .event p:last-of-type {
  margin: 0;
}
.history .historical-event.aside {
  position: relative;
  width: 50%;
  gap: 0 10px;
  padding: 30px 0;
}
.history .historical-event.aside .img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 2px solid #00A5C6;
  margin: 0;
}
.history .historical-event.aside .img img {
  border-radius: 100px;
}
.history .historical-event.aside .event h3 {
  position: static;
  font-size: 16px;
  margin-bottom: 5px;
}
.history .historical-event.aside .event P {
  font-size: 14px;
}
.history .historical-event.draw h3::before {
  width: 36px;
}
.history .historical-event.draw h3::after {
  width: 36px;
}
.history .historical-event:nth-of-type(odd).aside {
  margin-left: 50%;
}
.history .historical-event:nth-of-type(odd).aside h3::before {
  transform-origin: 100% 50%;
  left: 0;
}
.history .historical-event:nth-of-type(odd).aside span::before {
  display: none;
}
.history .historical-event:nth-of-type(odd).aside .img {
  margin: 0 0 0 60px;
}
.history .historical-event:nth-of-type(odd) .img {
  text-align: right;
}
.history .historical-event:nth-of-type(odd) .event {
  text-align: left;
}
.history .historical-event:nth-of-type(odd) h3::before {
  left: -40px;
  transform-origin: 100% 50%;
}
.history .historical-event:nth-of-type(odd) h3 span::before {
  left: -52px;
}
.history .historical-event:nth-of-type(odd).draw h3::before {
  width: 36px;
}
.history .historical-event:nth-of-type(odd).draw h3 span::before {
  opacity: 1;
}
.history .historical-event:nth-of-type(odd).draw.aside h3::before {
  width: 60px;
}
.history .historical-event:nth-of-type(even).aside h3::after {
  right: 0;
}
.history .historical-event:nth-of-type(even).aside span::after {
  display: none;
}
.history .historical-event:nth-of-type(even).aside .img {
  margin: 0 60px 0 0;
}
.history .historical-event:nth-of-type(even).aside .event {
  margin: 0 0 0 auto;
}
.history .historical-event:nth-of-type(even) .img {
  order: 2;
}
.history .historical-event:nth-of-type(even) img {
  margin: 0 auto 0 0;
}
.history .historical-event:nth-of-type(even) .event {
  order: 1;
  text-align: right;
}
.history .historical-event:nth-of-type(even) h3::after {
  right: -40px;
}
.history .historical-event:nth-of-type(even) h3 span::after {
  right: -52px;
}
.history .historical-event:nth-of-type(even).draw h3::after {
  width: 36px;
}
.history .historical-event:nth-of-type(even).draw h3 span::after {
  opacity: 1;
}
.history .historical-event:nth-of-type(even).draw.aside h3::after {
  width: 60px;
}

.history .historical-event:nth-of-type(odd) h3::before, .history .historical-event:nth-of-type(even) h3::after {
  z-index: 10;
  position: absolute;
  content: "";
  background-color: #00A5C6;
  width: 0;
  height: 4px;
  top: 14px;
  transform-origin: 0 50%;
  transition-property: width;
  transition-duration: 1s;
  transition-delay: 3s;
}

.history .historical-event:nth-of-type(odd).aside h3::before, .history .historical-event:nth-of-type(even).aside h3::after {
  z-index: 10;
  position: absolute;
  content: "";
  background-color: #00A5C6;
  width: 0;
  height: 2px;
  top: 50%;
  transform-origin: 0 50%;
  transition-property: width;
  transition-duration: 1s;
  transition-delay: 3s;
}

.history .historical-event:nth-of-type(odd) h3 span::before, .history .historical-event:nth-of-type(even) h3 span::after {
  z-index: 20;
  opacity: 0;
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #fff;
  border: 4px solid #00A5C6;
  top: 5px;
  transition: opacity;
  transition-duration: 1s;
  transition-delay: 2s;
}

@media only screen and (min-width: 550px) {
  .case-studies-feed .row {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 550px) {
  .case-studies-feed .row .subtitle,
  .case-studies-feed .row .casestudies-filters {
    flex: 1 1 50%;
  }
}
.case-studies-feed .row .casestudies-filters {
  margin: 20px 0;
}
@media only screen and (min-width: 550px) {
  .case-studies-feed .row .casestudies-filters {
    margin: unset;
  }
}
@media only screen and (min-width: 550px) {
  .case-studies-feed .feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}
@media only screen and (min-width: 1650px) {
  .case-studies-feed .feed {
    margin-left: auto;
    max-width: 80%;
  }
}
.case-studies-feed .feed .post-card {
  background-color: rgba(58, 76, 80, 0.1);
  border-radius: 25px 25px 0px 0px;
  margin-bottom: 22px;
}
@media only screen and (min-width: 550px) {
  .case-studies-feed .feed .post-card {
    margin-bottom: unset;
  }
}
.case-studies-feed .feed .post-card .card-img {
  width: 100%;
  height: auto;
  border-radius: 25px 25px 0px 0px;
}
@media only screen and (min-width: 550px) {
  .case-studies-feed .feed .post-card .card-img {
    height: 391px;
    object-fit: cover;
  }
}
.case-studies-feed .feed .post-card .text-content {
  padding: 20px 20px 10px;
}
@media only screen and (min-width: 550px) {
  .case-studies-feed .feed .post-card .text-content {
    padding: 27px 30px 10px;
  }
}
.case-studies-feed .feed .post-card .text-content .title {
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 5px;
  text-transform: uppercase;
}
@media only screen and (min-width: 550px) {
  .case-studies-feed .feed .post-card .text-content .title {
    margin: 0;
  }
}
.case-studies-feed .feed .post-card .text-content .excerpt {
  margin-bottom: 20px;
}

.case-study-single-header .featured-img {
  background-size: cover;
  background-position: center;
}
.case-study-single-header img.featured-img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 800px;
}

/**
* Gutenberg patterns
**/
.case-study-single .case-study-intro {
  padding: 30px;
}
@media only screen and (min-width: 550px) {
  .case-study-single .case-study-intro {
    padding: 100px 30px 140px;
  }
}
@media only screen and (min-width: 1680px) {
  .case-study-single .case-study-intro {
    padding: 100px 0 140px;
  }
}

@media only screen and (min-width: 550px) {
  .case-studies-feed .section-title {
    margin-bottom: 80px !important;
  }
}

@media only screen and (min-width: 850px) {
  .page-template-page-search .quick-search {
    margin: 0 auto;
    padding: 30px 0;
    max-width: 900px;
  }
}
@media only screen and (min-width: 1650px) {
  .page-template-page-search .quick-search form {
    margin-top: 50px;
    padding-bottom: 100px;
  }
}
.page-template-page-search .quick-search .search-title {
  color: #fff;
}
@media only screen and (min-width: 550px) {
  .page-template-page-search .quick-search .search-title {
    font-size: 50px;
  }
}
.page-template-page-search .quick-search #fieldset {
  display: flex;
  height: 38px;
  margin-bottom: 1em;
}
@media only screen and (min-width: 850px) {
  .page-template-page-search .quick-search #fieldset {
    height: 50px;
  }
}
@media only screen and (min-width: 1650px) {
  .page-template-page-search .quick-search #fieldset {
    float: left;
    width: 772px;
    margin-right: 15px;
  }
}
.page-template-page-search .quick-search #fieldset legend, .page-template-page-search .quick-search #fieldset label {
  display: none;
  color: #fff;
  width: 235px;
  font-size: 18px;
  margin-top: 14px;
}
@media only screen and (min-width: 1650px) {
  .page-template-page-search .quick-search #fieldset legend, .page-template-page-search .quick-search #fieldset label {
    display: block;
  }
}
.page-template-page-search .quick-search #fieldset .searchfield {
  margin-right: 0;
  width: calc(100% - 38px);
  height: inherit;
}
@media only screen and (min-width: 850px) {
  .page-template-page-search .quick-search #fieldset .searchfield {
    width: calc(100% - 50px);
  }
}
@media only screen and (min-width: 1650px) {
  .page-template-page-search .quick-search #fieldset .searchfield {
    display: flex;
    align-items: stretch;
    margin-right: 0;
  }
}
.page-template-page-search .quick-search #fieldset .searchfield input[type=text] {
  border: #081D4D solid 2px;
  border-radius: 8px 0 0 8px;
  height: inherit;
  margin-right: 0;
  width: 100%;
  font-weight: 100;
  padding: 0 15px;
  font-size: 1.4em;
  line-height: 2em;
  background-color: #fff;
}
@media only screen and (min-width: 1650px) {
  .page-template-page-search .quick-search #fieldset .searchfield input[type=text] {
    border: none;
  }
}
.page-template-page-search .quick-search #fieldset .searchfield input[type=text]:focus {
  outline: none;
}
.page-template-page-search .quick-search #fieldset .searchsubmit {
  margin-left: 0;
  width: 38px;
  height: inherit;
}
@media only screen and (min-width: 850px) {
  .page-template-page-search .quick-search #fieldset .searchsubmit {
    width: 45px;
  }
}
.page-template-page-search .quick-search #fieldset .searchsubmit input[type=submit],
.page-template-page-search .quick-search #fieldset .searchsubmit button#search-go {
  background-color: #081D4D;
  background-image: url(../img/search.png);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0 8px 8px 0;
  margin: 0;
  width: inherit;
  color: transparent;
  height: inherit;
  font-family: inherit;
  cursor: pointer;
}
@media only screen and (min-width: 850px) {
  .page-template-page-search .quick-search .button {
    height: 50px;
    line-height: 30px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1650px) {
  .page-template-page-search .quick-search .button {
    line-height: 26px;
  }
}

.search-bg {
  background: #8FEAFF linear-gradient(90deg, #081D4D 0%, #fff 50%);
  background-blend-mode: multiply;
}

.content {
  max-width: 1680px;
  padding: 0 10px;
}
@media only screen and (min-width: 850px) {
  .content {
    margin: 0 auto;
    padding: 0 25px;
  }
}
@media only screen and (min-width: 1650px) {
  .content {
    padding: 0;
  }
}
@media only screen and (min-width: 850px) {
  .content.fullscreen-right {
    margin: 0 0 0 auto;
    padding: 0 0 0 25px;
  }
}
@media only screen and (min-width: 1650px) {
  .content.fullscreen-right {
    margin: 0 auto;
  }
}

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