/*
Theme Name: Goonvean
Theme URI: https://www.goonveanholdings.com/
Description:
Version: 1.0
Author: Cognique
Author URI: http://www.cognique.co.uk
Tags: cognique
*/

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,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{border:0;outline:0;font-size:100%;font:inherit;vertical-align:baseline;padding:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}

:root {
    --white: #FFFFFF;
    --red: #C71618;
    --red-tint: #FAECEC;
    --red-hover: #A71113;
    --grey: #004959;
    --grey-tint: #E7F5F8;
    --grey-hover: #00313C;
    --black: #000000;
    --purple: #871069;
    --purple-hover: #660B4F;
    --purple-values: #D0B2D5;
    --green: #24A452;
    --green-hover: #1B8240;
    --green-values: #D0DB6A;
    --blue-dark: #293772;
    --blue-dark-hover: #1C264F;
    --blue-light: #009EE2;
    --blue-light-hover: #0086C0;  
    --yellow-values: #FDD17A;
    --selection: #FFD5D5;
    --border: #BCD7DD;
}

#goonvean-group {
    margin-top: 30px;
}

::selection {
    background: var(--selection); 
}

::-moz-selection {
    background: var(--selection);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body.load-animate .fadeInUp {
    animation-name: fadeInUp;
}

body.load-animate .fadeInDown {
    animation-name: fadeInDown;
}

body.load-animate .fadeInLeft {
    animation-name: fadeInLeft;
}

body.load-animate .fadeInRight {
    animation-name: fadeInRight;
}

.fiUp, .fiDown, .fiLeft, .fiRight {
    opacity: 0;
    animation-fill-mode: both;
    animation-duration: 0.8s;
    animation-delay: 0.1s;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--grey);
    width: 100%;
    height: 100%;
    z-index: 9000;
    transition: transform 0.3s 0.6s ease-out; 
}

body.loaded #loader-wrapper {
    transform: translateY(-100%);  
}

body.unload #loader-wrapper {
    transform: translateY(0); 
    transition: transform 0.3s 0s ease-out;
}

#loader {
    position: absolute;
    display: block;
    width: 150px;
    margin: 0 auto 0 auto;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);  
}

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

/* START GLOBAL CSS */

html {
    margin: 0;
    font-size: 10px;
    line-height: 10px;
    height: 100%;
    width: 100%;
}

html.mobile-menu-open body {
    overflow: hidden;
    position: fixed;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Albert Sans";
    -webkit-text-size-adjust: 100%;
    counter-reset: section; 
    height: 100%;
    width: 100%;     
}

body img.gform_ajax_spinner {
    display: none !important;
}

strong, b {
    font-weight: 600;
}

i, em {
    font-style: italic;
}

h1 {
    margin: 0;
    padding: 0 0 40px 0;
    font-family: "DM Serif Text";
    font-size: 5rem;
    font-weight: 400;
    line-height: 5.4rem;
    color: var(--black);
    letter-spacing: -0.6px;
}  

h1.large {
    font-size: 7.0rem;
    line-height: 7.0rem;
    letter-spacing: 0;
}  

h2 {
    margin: 0;
    padding: 0 0 30px 0;
    font-family: "DM Serif Text";
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 4.6rem;
    color: var(--black);
}  

h3 {
    margin: 0;
    padding: 0 0 30px 0;
    font-family: "DM Serif Text";
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 3.6rem;
    color: var(--black);
}  

h3.red {
    color: var(--red);    
} 

h3.line {
    margin: 0;
    padding: 0 0 40px 0;
    font-family: "DM Serif Text";
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 3.2rem;
    color: var(--red);
}

h3.line.large {
    margin: 0;
    padding: 0 0 30px 0;
    font-family: "DM Serif Text";
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 3.6rem;
    color: var(--black);
	letter-spacing: 0;
}

h3.line:after {
    display: block;
    margin: 30px 0 0 0;
    content: '';
    width: 100%;
    height: 3px;
    max-width: 80px;
    background: var(--red);
}  

h3.line.large:after {
    margin: 20px 0 0 0;
}  

h4 {
    margin: 0;
    padding: 0 0 30px 0;
    font-family: "DM Serif Text";
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 3.2rem;
    letter-spacing: -0.52px;
    color: var(--black);
}  

h4.red {
    color: var(--red);    
} 

h4.line {
    padding: 0 0 40px 0;
}

h4.line:after {
    display: block;
    margin: 30px 0 0 0;
    content: '';
    width: 100%;
    height: 3px;
    max-width: 80px;
    background: var(--black);
}  

h4.line.red:after {
    background: var(--red);
} 

h4.line.red-line:after {
    background: var(--red);
} 

.content-full-width.text-align-center h4.line:after {
    margin-left: auto;
    margin-right: auto;
}  

.job-content h4 {
    padding-bottom: 20px;
}

p {
    margin: 0;
    padding: 0 0 30px 0;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 400;
    color: var(--black);
}

p a.button, p a.button:hover, p a.button:active, p a.button:visited, p a.button:focus {
    margin: 0 10px 0 10px;
    margin-top: 10px;
}

p a.button:first-child {
    margin-left: 0;
}

p a.button:last-child {
    margin-right: 0;
}

p a.telephone, p a.telephone:visited, p a.telephone:hover, p a.telephone:active, p a.telephone:focus {
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.0rem;
    letter-spacing: -0.2px;
    text-decoration: none;
}

p a.email, p a.email:visited, p a.email:hover, p a.email:active, p a.email:focus {
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.0rem;
    letter-spacing: -0.2px;
    text-decoration: none;
}

p a.social.linkedin, p a.social.linkedin:visited, p a.social.linkedin:hover, p a.social.linkedin:active, p a.social.linkedin:focus {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 20px;
    height: 20px;
    background-image: url('images/icon-linkedin.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

p a.social.x, p a.social.x:visited, p a.social.x:hover, p a.social.x:active, p a.social.x:focus {
    display: inline-block;
    margin: 10px 10px 0 10px;
    width: 20px;
    height: 20px;
    background-image: url('images/icon-x.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

p a.social.facebook, p a.social.facebook:visited, p a.social.facebook:hover, p a.social.facebook:active, p a.social.facebook:focus {
    display: inline-block;
    margin: 10px 10px 0 10px;
    width: 20px;
    height: 20px;
    background-image: url('images/icon-facebook.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

p a.social.youtube, p a.social.youtube:visited, p a.social.youtube:hover, p a.social.youtube:active, p a.social.youtube:focus {
    display: inline-block;
    margin: 10px 10px 0 10px;
    width: 29px;
    height: 20px;
    background-image: url('images/icon-youtube.svg');
    background-size: 29px 20px;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

p a.social.instagram, p a.social.instagram:visited, p a.social.instagram:hover, p a.social.instagram:active, p a.social.instagram:focus {
    display: inline-block;
    margin: 10px 0 0 10px;
    width: 20px;
    height: 20px;
    background-image: url('images/icon-instagram.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

h1.padding-bottom-0, h2.padding-bottom-0, h3.padding-bottom-0, h4.padding-bottom-0, h5.padding-bottom-0, p.padding-bottom-0 {
    padding-bottom: 0px;
}

h1.padding-bottom-20, h2.padding-bottom-20, h3.padding-bottom-20, h4.padding-bottom-20, h5.padding-bottom-20, p.padding-bottom-20 {
    padding-bottom: 20px;
}

ul  {
    margin: 0;
    padding: 0 0 30px 0;
    list-style-type: none;
}

ul.padding-bottom-0 {
    padding-bottom: 0px;
}

ul > li {
    position: relative;
    margin: 0;
    padding: 0 0 8px 22px;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 400;
    color: var(--black);
}

ul > li:before {
    content: '';
    background-color: var(--red);
    position: absolute;
    left: 0px; 
    top: 9px;   
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

ul > li > ul > li {
    font-size: 100%;
} 

ol  {
    margin: 0;
    padding: 0 0 30px 0;
    list-style-type: none;
    counter-reset: item;
}

ol.padding-bottom-0 {
    padding-bottom: 0px;
}

ol > li {
    position: relative;
    margin: 0;
    padding: 0 0 8px 22px;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 400;
    color: var(--black);
}

ol > li:before {
    content: counter(item) ".";
    counter-increment: item;
    color: var(--red);
    position: absolute;
    left: 0px; 
    top: 0px;  
    font-weight: 700;
}

ol > li > ol > li {
    font-size: 100%;
}  

a, a:visited, a:hover, a:active, a:focus {
    color: var(--red);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

._CookieScriptReportPageCheckboxes {
    display: none !important;
}

._CookieScriptReportPageTable {
    font-family: "Albert Sans" !important;
}

.fluid-width-video-wrapper {
	margin-bottom: 30px !important;
}

input[type="text"],input[type="url"],input[type="email"],input[type="tel"],input[type="number"],input[type="password"] {
    display: inline-block;
    margin: 0;
    padding: 0 25px 0 25px;
    width: 100%;
    height: 62px;
    background-color: var(--grey-tint);
    border: 1px solid var(--grey-tint);
    color: var(--black);
    font-family: "Albert Sans";
    font-size: 1.6rem;
    line-height: 60px;
    font-weight: 400;
    border-radius: 5px;
    -webkit-appearance: none
}

input[type="text"]:focus,input[type="url"]:focus,input[type="email"]:focus,input[type="tel"]:focus,input[type="number"]:focus,input[type="password"]:focus {
    outline: none;
    border: 1px solid var(--border);
}

input[type="text"].field-error,input[type="url"].field-error,input[type="email"].field-error,input[type="tel"].field-error,input[type="number"].field-error,input[type="password"].field-error {
    border: 1px solid #cd2026;
}

textarea {
    display: inline-block;
    margin: 0;
    padding: 25px;
    width: 100%;
    background-color: var(--grey-tint);
    border: 1px solid var(--grey-tint);
    color: var(--black);
    font-family: "Albert Sans";
    font-size: 1.6rem;
    line-height: 30px;
    font-weight: 400;
    border-radius: 3px;
    -webkit-appearance: none
}

textarea:focus {
    outline: none;
    border: 1px solid var(--grey-tint);
}

select {
    display: inline-block;
    margin: 0;
    padding: 0 0 0 20px;
    width: 100%;
    height: 62px;
    background-image: url(images/select-arrow.svg);
    background-repeat: no-repeat;
    background-size: 18px 10px;
    background-position: right 24px center;
    background-color: var(--grey-tint);
    border: 1px solid var(--grey-tint);
    color: var(--black);
    font-family: "Albert Sans";
    font-size: 1.6rem;
    line-height: 60px;
    font-weight: 400;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    outline: none;  
}  

select:focus {
    outline: none;
     border: 1px solid var(--grey-tint);
}

select::-ms-expand {    
    display: none; 
}

select::-ms-value {
    background: none;
    color: var(--black);
}

input[type="checkbox"] {
    display: none;
}

input[type="radio"] {
    display: none;
}

input[type="checkbox"] + label:hover, input[type="radio"] + label:hover { 
    cursor: pointer; 
}

input[type="checkbox"] + label:before {
    display: inline-block;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    margin: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    border-radius: 0;
    background-color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

input[type="checkbox"]:checked + label:before {
    background-image: url('images/checkbox-selected.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 12px;
}

input[type="radio"] + label:before {
    display: inline-block;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    margin: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background-color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
    text-align: center;  
}

input[type="radio"]:checked + label:before {
    background-image: url('images/radio-selected.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px 18px;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: var(--black);
    font-weight: 400;
    opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: var(--black);
    font-weight: 400;
    opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: var(--black);
    font-weight: 400;
    opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: var(--black);
    font-weight: 400;
    opacity: 1;
}  

a.button, a.button:hover, a.button:active, a.button:visited, a.button:focus, .button {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 22px 26px 22px 26px;
    font-family: "Albert Sans";
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: var(--white);
    border: 0;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    background-color: var(--red);
    transition: background 0.5s ease; 
    cursor: pointer;
}

a.button.small, a.button.small:hover, a.button.small:active, a.button.small:visited, a.button.small:focus, .button.small {
    padding: 18px 22px 18px 22px;
}

a.button.purple, a.button.purple:hover, a.button.purple:active, a.button.purple:visited, a.button.purple:focus, .button.purple {
    background-color: var(--purple);    
}

a.button.green, a.button.green:hover, a.button.green:active, a.button.green:visited, a.button.green:focus, .button.green {
    background-color: var(--green);    
}

a.button.blue-dark, a.button.blue-dark:hover, a.button.blue-dark:active, a.button.blue-dark:visited, a.button.blue-dark:focus, .button.blue-dark {
    background-color: var(--blue-dark);    
}

a.button.blue-light, a.button.blue-light:hover, a.button.blue-light:active, a.button.blue-light:visited, a.button.blue-light:focus, .button.blue-light {
    background-color: var(--blue-light);    
}

a.button.grey, a.button.grey:hover, a.button.grey:active, a.button.grey:visited, a.button.grey:focus, .button.grey {
    background-color: var(--grey);    
}

a.button:hover, .button:hover {
    background-color: var(--red-hover);    
} 

a.button.purple:hover, .button.purple:hover {
    background-color: var(--purple-hover);    
} 

a.button.green:hover, .button.green:hover {
    background-color: var(--green-hover);    
} 

a.button.blue-dark:hover, .button.blue-dark:hover {
    background-color: var(--blue-dark-hover);    
} 

a.button.blue-light:hover, .button.blue-light:hover {
    background-color: var(--blue-light-hover);    
} 

a.button.grey:hover, .button.grey:hover {
    background-color: var(--grey-hover);    
} 

p.message {
    margin: 0;
    padding: 22px 26px 22px 26px;
    font-family: "Albert Sans";
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: var(--white);
    border: 0;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    background-color: var(--grey);
}

.content-full-width {
    position: relative;
    overflow-x: hidden;
}  

.content-full-width.background-grey {
    background: var(--grey);
}  

.content-full-width.padding-top-150 {
    padding-top: 150px;
}  

.content-full-width.padding-top-120 {
    padding-top: 120px;
}  

.content-full-width.padding-bottom-60 {
    padding-bottom: 60px;
}  

.content-full-width.padding-bottom-80 {
    padding-bottom: 80px;
}  

.content-full-width.padding-bottom-100 {
    padding-bottom: 100px;
} 

.content-full-width.padding-bottom-120 {
    padding-bottom: 120px;
} 

.content-full-width.padding-bottom-130 {
    padding-bottom: 130px;
} 

.content-full-width.padding-bottom-140 {
    padding-bottom: 140px;
} 

.content-full-width.padding-bottom-150 {
    padding-bottom: 150px;
} 

.content-full-width.padding-bottom-200 {
    padding-bottom: 200px;
}  

.content-full-width.padding-bottom-300 {
    padding-bottom: 300px;
} 

.content-full-width.margin-bottom-100 {
    margin-bottom: 100px;
}  

.content-full-width.margin-bottom-200 {
    margin-bottom: 200px;
} 

.container {
    margin: 0 auto 0 auto;
    padding: 0 100px 0 100px;
    width: 100%;
    max-width: 1920px;   
}

.wp-caption.alignnone {
    width: auto;
    max-width: 100%;
    padding: 10px 0 40px 0;
}

.wp-caption.alignnone img {
    display: block;
    width: 100%;
    height: auto;
}

.wp-caption p.wp-caption-text {
    margin: 0;
    padding: 20px 0 0 0;
    font-size: 16px;
    line-height: 16px;
    text-align: left;
    background-color: transparent;
    color: var(--grey);
    font-weight: 400;
}

.size-full, .size-large {
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: auto
}

.alignleft {
    float: left;
    margin: 5px 30px 0 30px !important;
    padding: 0;
    max-width: 100%;
    height: auto
}

.alignright {
    float: right;
    margin: 5px 0 30px 30px !important;
    padding: 0;
    max-width: 100%;
    height: auto
}

.alignnone {
    margin: 10px 0 0 0;
    padding: 0;
    max-width: 100%;
    height: auto
}

.aligncenter {
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: auto
}

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

.content .columns .column {
    width: 100%;
}

ul.blog-filters {
    display: inline-block;
    margin: 10px 0 0 0;
    padding: 10px 5px;
    background: var(--red-tint);
    border-radius: 8px;
}

ul.blog-filters > li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 100%;
    line-height:100%;
}

ul.blog-filters > li > a {
    display: block;
    margin: 0 5px 0 5px;
    padding: 15px 30px 15px 30px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4rem;
    color: var(--black);   
    text-decoration: none;
    background: var(--red-tint);
    border-radius: 6px;
}

ul.blog-filters > li > a.selected, ul.blog-filters > li > a:hover {
    background: var(--white);
    color: var(--black);  
    transition: background 0.3s linear, color 0.1s linear;
}

ul.blog-filters > li:before {
    display: none;
}

.box {
    padding: 50px;
    margin: 0 0 40px 0;
    background: var(--red-tint);
}

.box.background-grey-tint {
    background: var(--grey-tint);
}

.box.full-width-button p a.button, .box.full-width-button p a.button:hover, .box.full-width-button p a.button:active, .box.full-width-button p a.button:visited, .box.full-width-button p a.button:focus {
    width: 100%;
}

.box p.image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 60px;
}

.box p:last-child {
    padding-bottom: 0;
}

.blog-title {
    padding: 0 0 40px 0;
}

.blog-title h1 {
    padding: 0;
}

.blog-meta {
    padding: 0 0 40px 0;
}

.blog-meta p.date { 
    display: inline-block;
    padding: 0 0 0 26px;
    margin: 0 15px 0 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    background-image: url('images/icon-calendar-red.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px 16px;       
}

.blog-meta p.author { 
    display: inline-block;
    padding: 0 0 0 23px;
    margin: 0 0 0 15px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    background-image: url('images/icon-author-red.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 13px 16px;        
}

.blog-cta:before {
    display: block;
    content: '';
    margin: 10px 0 40px 0;
    width: 80px;
    height: 3px;
    background-color: var(--red);
}  

.blog-cta p:last-child {
    padding-bottom: 0;
}

.job-cta:before {
    display: block;
    content: '';
    margin: 10px 0 40px 0;
    width: 80px;
    height: 3px;
    background-color: var(--red);
}  

.job-cta p:last-child {
    padding-bottom: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock {
    margin: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .container {
    padding: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .content .columns .column:nth-child(1) {
    width: 100%;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list {
    column-gap: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item {
    width: 100%;
    margin: 0 0 20px 0;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item:last-child {
    margin: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner {
    display: flex;
    align-items: center;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-image {
    padding: 0;
    width: 28.214285714285714%;
    height: 158px;
}   

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content {
    padding: 0 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    width: 71.785714285714286%;
    align-items: center;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-image .blog-post-list-item-image-category {
    bottom: 0;
    left: 0;
    padding: 10px;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-meta {
    margin: 0;
    order: 2;
    width: 100%;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title {
    order: 1;
    width: 100%;
    margin: 0;
    padding: 0 0 20px 0;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title h3 {
    font-size: 2.2rem;
    line-height: 2.8rem;
}

body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-meta p {
    font-size: 1.6rem;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock {
    margin: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .container {
    padding: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .content .columns .column:nth-child(1) {
    width: 100%;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list {
    column-gap: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item {
    width: 100%;
    margin: 0 0 20px 0;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item:last-child {
    margin: 0;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner {
    display: flex;
    align-items: center;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-image {
    padding: 0;
    width: 28.214285714285714%;
    height: 158px;
}   

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content {
    padding: 0 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    width: 71.785714285714286%;
    align-items: center;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-image .advice-post-list-item-image-category {
    bottom: 0;
    left: 0;
    padding: 10px;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-meta {
    margin: 0;
    order: 2;
    width: 100%;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-title {
    order: 1;
    width: 100%;
    margin: 0;
    padding: 0 0 20px 0;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-title h3 {
    font-size: 2.2rem;
    line-height: 2.8rem;
}

body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-meta p {
    font-size: 1.6rem;
}

.blog-hero {
    position: relative;
    margin: 0 0 50px 0;
}

.blog-hero.has-caption {
    margin-bottom: 10px;
}

.blog-hero-caption {
    display: block;
    position: relative;
    margin: 0 0 50px 0;
}

.blog-hero-caption p {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;    
}

.blog-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-hero .blog-hero-category {
    position: absolute;
    display: block;
    bottom: 12px;
    left: 12px;   
    padding: 12px 14px;
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: 700;
    color: var(--black);
    background: var(--red);
    z-index: 2;
}    

.blog-hero.category-group .blog-hero-category {
    background: var(--purple-values);
}    

.blog-hero.category-community .blog-hero-category {
    background: var(--green-values);
}  

.blog-hero.category-staff .blog-hero-category {
    background: var(--yellow-values);
} 

.blog-hero.category-apprenticeship .blog-hero-category {
    background: var(--yellow-values);
}    

.blog-hero.category-success-story .blog-hero-category {
    background: var(--purple-values);
} 

.blog-hero.category-achievement-award .blog-hero-category {
    background: var(--green-values);
}     

.segment-details-statistics {
    display: block;
    padding: 10px 0 0 0;
}

.segment-details-statistics ul {
    padding: 0;
}

.segment-details-statistics ul > li:before {
    display: none;
}

.segment-details-statistics ul > li {
    display: inline-block;
    padding: 0;
    margin: 0 30px 0 30px;
}

.segment-details-statistics ul > li:first-child {
    margin-left: 0;
}

.segment-details-statistics ul > li:last-child {
    margin-right: 0;
}

.segment-details-statistics ul > li > h4 {
    margin: 0;
    padding: 0 0 4px 0;
    color: var(--black);
    font-size: 6rem;
    font-weight: 400;
    line-height: 6rem;
}

.segment-details-statistics ul > li > h4.purple {
    color: var(--purple);
}

.segment-details-statistics ul > li > h4.green {
    color: var(--green);
}

.segment-details-statistics ul > li > h4.blue-dark {
    color: var(--blue-dark);
}

.segment-details-statistics ul > li > h4.blue-light {
    color: var(--blue-light);
}

.segment-details-statistics ul > li > p {
    margin: 0;
    padding: 0;
    color: var(--black);
    font-size: 2rem;
    font-weight: 700;
    line-height: 2rem;
}

.case-study-meta-box {
    background: var(--white);
    padding: 50px;
}

.case-study-meta-box p.image {
    padding-bottom: 40px;
}

.case-study-meta-box p.image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 80px;
}

.case-study-meta-box p.meta {
    padding-bottom: 24px;
    font-size: 1.6rem;
    line-height: 2.6rem;
}

.case-study-meta-box p.meta strong {
    display: block;
    margin: 6px 0 0 0;
    font-size: 1.8rem;
    line-height: 1.6rem;
}

.case-study-meta-box p.link {
    font-size: 1.8rem;
    line-height: 2.6rem;
}

.case-study-meta-box p.link a, .case-study-meta-box p.link a:active, .case-study-meta-box p.link a:visited, .case-study-meta-box p.link a:focus, .case-study-meta-box p.link a:active:hover {
    color: var(--red);
    font-weight: 700;
}

.case-study-meta-box p:last-child {
    padding-bottom: 0;
}

.blocker {
    z-index: 6000 !important;
}

.modal {
    padding: 50px !important;
    max-width: 900px !important;
    background: #FFFFFF !important;
    width: 95% !important;
}

.modal a.close-modal {
    width: 30px !important;
    height: 30px !important;
    top: 30px !important;
    right: 30px !important;
    background-image: url(images/modal-close.svg) !important;
    background-repeat: no-repeat !important;
    background-size: 25px 25px !important;
    background-position: center center !important;    
}

.flickity-button:focus {
    outline: 0 !important;
    box-shadow: none !important;;
}

table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin: 0 0 20px 0;
}

table th {
    padding: 0 0 10px 0;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 700;
    color: var(--black);
    text-align: left;
}

table td {
    padding: 0 0 10px 0;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 400;
    color: var(--black);
    text-align: left;
}

#pageslide:before {
    position: absolute;
    content: ' ';
    top: 0px;
    left: 0px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 5px;
    background-color: var(--red);
    z-index: 10;
}

#pageslide {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 100px 0 0 0;
    color: #000000;
    background: var(--red-tint);
    overflow-y: auto;
    overflow-x: none;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.5s linear;
    z-index: 8000;
    transform: translateX(-100%); 
}

#pageslide.open {
    transition: transform 0.5s linear;
    transform: translateX(0%);
} 

#pageslide .slide {
    height: 0px;
}

#pageslide .slide.open {
    height: 100%;
}

#pageslide .slide a.back, #pageslide .slide a.back:active, #pageslide .slide a.back:visited, #pageslide .slide a.back:focus, #pageslide .slide a.back:hover {
    display: none;
}    

#pageslide .slide .slide-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-100%);
    transition: transform 0.5s linear;
    height: 0px;
    overflow: hidden;
} 

#pageslide .slide.open .slide-inner {
    height: auto;
    transform: translateX(0%);
    transition: transform 0.5s linear;
    min-height: 100%;
}  

#pageslide .slide .header-navigation {
    margin: 0;
    padding: 0 0 100px 0;
    width: 100%;
    height: 100%;
}

#pageslide .slide .header-navigation ul.navigation-list {
    display: block;
    margin: 0;
    padding: 0 80px 0 80px;
    list-style: none;
}  

#pageslide .slide .header-navigation ul.navigation-list > li {
    margin: 0;
    padding: 0 0 20px 0;
    width: 100%;
    text-align: left;
    font-size: 100%;
    line-height: 100%;
	letter-spacing: 0;
} 

#pageslide .slide .header-navigation ul.navigation-list > li > a, #pageslide .slide .header-navigation ul.navigation-list > li > a:hover, #pageslide .slide .header-navigation ul.navigation-list > li > a:active, #pageslide .slide .header-navigation ul.navigation-list > li > a:visited, #pageslide .slide .header-navigation ul.navigation-list > li > a:focus {
    display: block;
    position: relative;
    font-size: 3rem;
    line-height: 3rem;
    color: var(--black);
    font-weight: 600;   
    text-decoration: none;
} 

#pageslide .slide .header-navigation ul.navigation-list > li.parent-menu-item > a, #pageslide .slide .header-navigation ul.navigation-list > li.current-menu-item > a, #pageslide .slide .header-navigation ul.navigation-list > li > a:hover {
    color: var(--red);
}

body.single-company #pageslide .slide .header-navigation ul.navigation-list > li.menu-item-1589 > a, body.single-segment #pageslide .slide .header-navigation ul.navigation-list > li.menu-item-1589 > a {
    color: var(--red);
}

#pageslide .slide .header-navigation ul.navigation-list > li.menu-item-has-children > a {
    position: relative;
}

#pageslide .slide .header-navigation ul.navigation-list > li.menu-item-has-children > a .arrow-slide {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 50px;
}    

#pageslide .slide .header-navigation ul.navigation-list > li:before {
    display: none;
}

#pageslide .slide .header-navigation ul.navigation-list > li > ul {
    margin: 0;
    padding: 20px 0 10px 0;
    list-style: none;
}  

#pageslide .slide .header-navigation ul.navigation-list > li > ul > li {
    margin: 0;
    padding: 0 0 14px 0;
    width: 100%;
    text-align: left;
    font-size: 100%;
    line-height: 100%;
} 

#pageslide .slide .header-navigation ul.navigation-list > li > ul > li:before {
    display: none;
} 

#pageslide .slide .header-navigation ul.navigation-list > li > ul > li > a, #pageslide .slide .header-navigation ul.navigation-list > li > ul > li > a:hover, #pageslide .slide .header-navigation ul.navigation-list > li > ul > li > a:active, #pageslide .slide .header-navigation ul.navigation-list > li > ul > li > a:visited, #pageslide .slide .header-navigation ul.navigation-list > li > ul > li > a:focus {
    display: inline-block;
    position: relative;
    font-size: 2rem;
    line-height: 2rem;
    color: var(--black);
    font-weight: 500;  
    text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
}

#pageslide .slide .header-navigation ul.navigation-list > li > ul > li > a:before {
    display: inline-block;
    content: '-';
    margin-right: 5px;
}

#pageslide .slide .header-navigation ul.navigation-list > li > ul > li a:hover, #pageslide .slide .header-navigation ul.navigation-list > li > ul > li.current-page-ancestor a, #pageslide .slide .header-navigation ul.navigation-list > li > ul > li.current_page_parent a, #pageslide .slide .header-navigation ul.navigation-list > li > ul > li.current-menu-item a {
    color: var(--red);  
}

#st-1 .st-btn {
    border: solid 1px #002745 !important;
    height: 30px !important;
    line-height: 30px !important;
    padding: 0 6px !important;
}

#st-1 .st-btn > img {
    top: 7px !important;
}

.gform_wrapper .gform_required_legend {
	display: none;
}

/* END GLOBAL CSS */

/* START GOOGLE MAP POINTER CSS */

.gm-style-iw-d {
    max-height: 900px !important;
}

.gm-style .gm-style-iw-c {
    background: #FFFFFF;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    overflow: visible;
    padding: 15px;
    max-height: 900px !important;
    max-width: 900px !important;
}

.gm-style .gm-style-iw-c button {
    width: 16px !important;
    height: 16px !important;
    top: 10px !important;
    right: 0px !important;
    background-image: url(images/modal-close.svg) !important;
    background-repeat: no-repeat !important;
    background-size: 16px 16px !important;
    background-position: left center !important;   
    opacity: 1 !important;     
}

.gm-style .gm-style-iw-c button img {
    display: none !important;
}

.gm-style .gm-style-iw-c button span {
    display: none !important;
}

.info-content {
    padding: 10px 10px 0px 10px;
	width: 280px;
    max-height: 900px !important;
}

.info-content h2 {
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.info-content p {
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px !important;
    line-height: 22px;
    color: #000000;
}

.info-content p strong {
    display: inline-block;
    color: #000000;
    padding: 0 0 10px 0;
    font-size: 18px;
}

.info-content a, .info-content a:hover, .info-content a:visited, .info-content a:active, .info-content a:focus {
    color: #000000;
    text-decoration: underline;
}

.info-content a:hover {
    text-decoration: none;
}

/* END GOOGLE MAP POINTER CSS */

/* START HEADER CSS */

body.header-grey .header-full-width {
    background-color: var(--grey);
}

body.header-grey-tint .header-full-width {
    background-color: var(--grey-tint);
}

body.header-red-tint .header-full-width {
    background-color: var(--red-tint);
}

body.header-purple .header-full-width {
    background-color: var(--purple);
}

body.header-green .header-full-width {
    background-color: var(--green);
}

body.header-blue-dark .header-full-width {
    background-color: var(--blue-dark);
}

body.header-blue-light .header-full-width {
    background-color: var(--blue-light);
}

body.fixed-header .header-full-width {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 200;
}

.header-full-width:before {
    position: absolute;
    content: ' ';
    top: 0px;
    left: 0px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 5px;
    background-color: var(--red);
    z-index: 10;
}

body.admin-bar .header-full-width:before {
    top: 32px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 96px;
}

.header .header-logo a, .header .header-logo a:active, .header .header-logo a:visited, .header .header-logo a:hover, .header .header-logo a:focus {
    display: block;
    background-color: var(--red);
    padding: 25px 20px;
    height: 96px;
    overflow: hidden;
}

.header .header-logo svg {
    width: 178px;
    height: 46px;
}

.header .header-content {
    display: flex;
    align-items: center;
}

.header .header-navigation ul.navigation-list {
    display: flex;
    align-items: center;
    margin: 5px 0 0 0;
    padding: 0;
    list-style-type: none;    
}

.header .header-navigation ul.navigation-list > li {
    display: inline-block;
    position: relative;
    margin: 0 25px 0 25px;
    padding: 0;
}

.header .header-navigation ul.navigation-list > li:before {
    width: 2px;
    height: 30px;
    background-color: var(--black);
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.3s linear;
}

body.header-grey .header .header-navigation ul.navigation-list > li:before {
    background-color: var(--white);
}

body.header-purple .header .header-navigation ul.navigation-list > li:before {
    background-color: var(--white);
}

body.header-green .header .header-navigation ul.navigation-list > li:before {
    background-color: var(--white);
}

body.header-blue-dark .header .header-navigation ul.navigation-list > li:before {
    background-color: var(--white);
}

body.header-blue-light .header .header-navigation ul.navigation-list > li:before {
    background-color: var(--white);
}

.header .header-navigation ul.navigation-list > li.current-page-ancestor:before, .header .header-navigation ul.navigation-list > li.current_page_parent:before, .header .header-navigation ul.navigation-list > li.current-menu-item:before {
    opacity: 1;
}

body.single-job .header .header-navigation ul.navigation-list > li.menu-item-1827:before, body.single-company .header .header-navigation ul.navigation-list > li.menu-item-1589:before, body.single-segment .header .header-navigation ul.navigation-list > li.menu-item-1589:before {
    opacity: 1;
}

.header .header-navigation ul.navigation-list > li:hover:before {
    opacity: 1;
}

.header .header-navigation ul.navigation-list > li:first-child {
    margin-left: 0;
}

.header .header-navigation ul.navigation-list > li:last-child {
    margin-right: 0;
}

.header .header-navigation ul.navigation-list > li > a, .header .header-navigation ul.navigation-list > li > a:visited, .header .header-navigation ul.navigation-list > li > a:hover, .header .header-navigation ul.navigation-list > li > a:active, .header .header-navigation ul.navigation-list > li > a:focus {
    display: block;
    padding: 40px 0 20px 0;
    text-decoration: none;
    text-transform: none;
    font-size: 1.6rem;
    line-height: 1.6rem;  
    font-weight: 700;  
    color: var(--black);    
    transition: color 0.2s linear;
}

body.header-grey .header .header-navigation ul.navigation-list > li > a, body.header-grey .header .header-navigation ul.navigation-list > li > a:visited, body.header-grey .header .header-navigation ul.navigation-list > li > a:hover, body.header-grey .header .header-navigation ul.navigation-list > li > a:active, body.header-grey .header .header-navigation ul.navigation-list > li > a:focus {
    color: var(--white);    
}

body.header-purple .header .header-navigation ul.navigation-list > li > a, body.header-purple .header .header-navigation ul.navigation-list > li > a:visited, body.header-purple .header .header-navigation ul.navigation-list > li > a:hover, body.header-purple .header .header-navigation ul.navigation-list > li > a:active, body.header-purple .header .header-navigation ul.navigation-list > li > a:focus {
    color: var(--white);    
}

body.header-green .header .header-navigation ul.navigation-list > li > a, body.header-green .header .header-navigation ul.navigation-list > li > a:visited, body.header-green .header .header-navigation ul.navigation-list > li > a:hover, body.header-green .header .header-navigation ul.navigation-list > li > a:active, body.header-green .header .header-navigation ul.navigation-list > li > a:focus {
    color: var(--white);    
}

body.header-blue-dark .header .header-navigation ul.navigation-list > li > a, body.header-blue-dark .header .header-navigation ul.navigation-list > li > a:visited, body.header-blue-dark .header .header-navigation ul.navigation-list > li > a:hover, body.header-blue-dark .header .header-navigation ul.navigation-list > li > a:active, body.header-blue-dark .header .header-navigation ul.navigation-list > li > a:focus {
    color: var(--white);    
}

body.header-blue-light .header .header-navigation ul.navigation-list > li > a, body.header-blue-light .header .header-navigation ul.navigation-list > li > a:visited, body.header-blue-light .header .header-navigation ul.navigation-list > li > a:hover, body.header-blue-light .header .header-navigation ul.navigation-list > li > a:active, body.header-blue-light .header .header-navigation ul.navigation-list > li > a:focus {
    color: var(--white);    
}

.header .header-navigation ul.navigation-list > li > a:hover {
    color: var(--black);   
}

.header .header-navigation ul.navigation-list > li > ul {
    position: absolute;
    top: auto;
    left: -999em;
    margin: 0;
    padding: 10px 30px 30px 30px;
    width: 300px;
    list-style: none;
    text-align: left;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    opacity: 0;
    transition: opacity 0.3s linear; 
    z-index: 600;
}

.header .header-navigation ul.navigation-list > li:hover > ul {
    left: 0;
    opacity: 1;
    transition: opacity 0.3s linear; 
}

.header .header-navigation ul.navigation-list > li > ul > li {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 100%;
    line-height: 100%;  
    font-weight: 700;  
    vertical-align: middle;
    background: no-repeat;
}

.header .header-navigation ul.navigation-list > li > ul > li:before {
    display: none;
}

.header .header-navigation ul.navigation-list > li > ul > li > a, .header .header-navigation ul.navigation-list > li > ul > li > a:visited, .header .header-navigation ul.navigation-list > li > ul > li > a:hover, .header .header-navigation ul.navigation-list > li > ul > li > a:active, .header .header-navigation ul.navigation-list > li > ul > li > a:focus {
    display: block;
    padding: 20px 0 0 0;
    text-decoration: none;
    text-transform: none;
    font-size: 1.6rem;
    line-height: 1.6rem;  
    font-weight: 700;  
    color: var(--black);    
    transition: color 0.2s linear;
}

.header .header-navigation ul.navigation-list > li > ul > li a:hover, .header .header-navigation ul.navigation-list > li > ul > li.current-page-ancestor a, .header .header-navigation ul.navigation-list > li > ul > li.current_page_parent a, .header .header-navigation ul.navigation-list > li > ul > li.current-menu-item a {
    color: var(--red);  
}

.header-hamburger {
    display: none;
}

.header-hamburger a, .header-hamburger a:active, .header-hamburger a:visited, .header-hamburger a:focus, .header-hamburger a:hover {
    display: block;
    text-decoration: none;
    text-align: center;
}   

.header-hamburger a span.lines {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
}

.header-hamburger a span.lines svg {
    display: block;
    width: 100%;
    height: 100%;
}

body.header-grey .header-hamburger rect {
    fill: #FFFFFF;
}

@keyframes mobile-menu-grey-open {
    0% { fill: #FFFFFF; }
    100% { fill: #C71618; }
}

body.header-grey.mobile-menu-loaded .header-hamburger rect {
    animation-name: mobile-menu-grey-open;
    animation-fill-mode: both;
    animation-duration: 0.5s;
}

/* END HEADER CSS */

/* START FOOTER CSS */

.content-full-width.footer {
    position: relative; 
    background: var(--white);
}

.content-full-width.footer:before {
    position: absolute;
    content: ' ';
    top: 0px;
    left: 0px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 5px;
    background-color: var(--red);
    z-index: 10;
}

.content-full-width.footer .container {
    max-width: 1070px;
}

.content-full-width.footer .content {
    padding: 60px 0 80px 0;
}

.content-full-width.footer .content .columns {
    justify-content: space-between;
    align-items: center;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-logo {
    text-align: center;
    padding: 0 0 60px 0;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-copyright {
    text-align: center;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-copyright p {
    padding: 0;
    font-size: 1.4rem;
    line-height: 2rem;
    color: var(--black);
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 0 0 60px 0;
    column-gap: 40px;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons .footer-icon:nth-child(1) {
    width: 240px;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons .footer-icon:nth-child(2) {
    width: 240px;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons .footer-icon:nth-child(3) {
    width: auto;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons h4 {
    display: block;
    margin: 0;
    padding: 0 0 10px 0;
    color: var(--black);
    font-family: "Albert Sans";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    letter-spacing: -0.16px;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons p {
    padding: 0;
	font-size: 2rem;
    line-height: 2rem;
    letter-spacing: -0.2px;
}    

.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons a, .content-full-width.footer .content .columns .column:nth-child(1) .footer-icons a:active, .content-full-width.footer .content .columns .column:nth-child(1) .footer-icons a:visited, .content-full-width.footer .content .columns .column:nth-child(1) .footer-icons a:focus, .content-full-width.footer .content .columns .column:nth-child(1) .footer-icons a:hover {
    color: var(--red);
    text-decoration: none;
	font-weight: 600;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li {
    display: inline-block;
    margin: 0 12px 20px 12px;
    padding: 0;
    font-size: 100%;
    line-height: 100%;
    background: none;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li:first-child {
    margin-left: 0;
}    

.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li:last-child {
    margin-right: 0;
} 

.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li:before {
    display: none;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li > a, .content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li > a:visited, .content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li > a:hover, .content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li > a:active, .content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li > a:focus {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: 400; 
    text-decoration: none;
    color: var(--black);
    text-decoration: underline;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li > a:hover {
    text-decoration: none;
}  

.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li > ul {
    display: none;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list {
    display: block;
    margin: 0;
    padding: 0;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li {
    display: inline-block;
    margin: 0 10px 0 10px;
    padding: 0;
    font-size: 100%;
    line-height: 100%;
    background: none;
    vertical-align: middle;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li:before {
    display: none;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li:first-child {
    margin-left: 0;
}    

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li:last-child {
    margin-right: 0;
} 

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li > a, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li > a:visited, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li > a:hover, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li > a:active, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li > a:focus {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 0px;
    line-height: 0px;
    text-decoration: none;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.linkedin > a, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.linkedin > a:visited, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.linkedin > a:hover, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.linkedin > a:active, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.linkedin > a:focus {
    width: 20px;
    height: 20px;
    background-image: url('images/icon-linkedin.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.facebook > a, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.facebook > a:visited, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.facebook > a:hover, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.facebook > a:active, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.facebook > a:focus {
    width: 20px;
    height: 20px;
    background-image: url('images/icon-facebook.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.youtube > a, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.youtube > a:visited, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.youtube > a:hover, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.youtube > a:active, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.youtube > a:focus {
    width: 29px;
    height: 20px;
    background-image: url('images/icon-youtube.svg');
    background-size: 29px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.x > a, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.x > a:visited, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.x > a:hover, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.x > a:active, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.x > a:focus {
    width: 20px;
    height: 20px;
    background-image: url('images/icon-x.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.instagram > a, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.instagram > a:visited, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.instagram > a:hover, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.instagram > a:active, .content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li.instagram > a:focus {
    width: 20px;
    height: 20px;
    background-image: url('images/icon-instagram.svg');
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li > a:hover {
    text-decoration: none;
}  

.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li > ul {
    display: none;
}

/* END FOOTER CSS */

/* START JOB ALERTS WINDOW CSS */

html.jobalerts-open body {
    overflow: hidden;
}

#jobalerts {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    max-width: 865px;
    padding: 0;
    color: #FFFFFF;
    background: var(--white);
    box-shadow: 0px 0px 50px 0px rgba(0, 73, 89, 0.10);
    overflow-y: auto;
    overflow-x: none;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.5s linear;
    z-index: 8000;
    transform: translateX(150%); 
}

#jobalerts .inner {
    padding: 80px;
}

#jobalerts .inner .gform_wrapper {
    padding-top: 10px;
}

#jobalerts a.close, #jobalerts a.close:active, #jobalerts a.close:visited, #jobalerts a.close:focus, #jobalerts a.close:hover {
    position: absolute;
    display: block;
    top: 40px;
    right: 40px; 
    width: 24px;
    height: 24px; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.5454 2.64932C23.6896 2.50539 23.8039 2.33448 23.882 2.14635C23.96 1.95823 24.0003 1.75657 24.0004 1.55289C24.0005 1.34921 23.9605 1.1475 23.8827 0.959281C23.8049 0.771059 23.6907 0.60001 23.5468 0.455899C23.4029 0.311789 23.232 0.197439 23.0438 0.11938C22.8557 0.0413198 22.654 0.00107852 22.4504 0.000953335C22.2467 0.000828148 22.045 0.0408215 21.8568 0.11865C21.6685 0.196478 21.4975 0.310618 21.3534 0.454551L12 9.80793L2.64932 0.454551C2.35827 0.163507 1.96353 -3.06665e-09 1.55193 0C1.14034 3.06665e-09 0.745595 0.163507 0.454551 0.454551C0.163507 0.745595 3.06665e-09 1.14034 0 1.55193C-3.06665e-09 1.96353 0.163507 2.35827 0.454551 2.64932L9.80793 12L0.454551 21.3507C0.31044 21.4948 0.196126 21.6659 0.118134 21.8542C0.0401417 22.0425 0 22.2443 0 22.4481C0 22.6519 0.0401417 22.8537 0.118134 23.042C0.196126 23.2302 0.31044 23.4013 0.454551 23.5454C0.745595 23.8365 1.14034 24 1.55193 24C1.75574 24 1.95755 23.9599 2.14583 23.8819C2.33412 23.8039 2.50521 23.6896 2.64932 23.5454L12 14.1921L21.3534 23.5454C21.6444 23.8361 22.039 23.9993 22.4504 23.999C22.8617 23.9988 23.2561 23.8351 23.5468 23.5441C23.8375 23.2531 24.0006 22.8585 24.0004 22.4471C24.0001 22.0358 23.8365 21.6414 23.5454 21.3507L14.1921 12L23.5454 2.64932Z' fill='%23C71618'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

#jobalerts.open {
    transition: transform 0.5s linear;
    transform: translateX(0%);
}

/* END JOB ALERTS WINDOW CSS */ 

/* START JOB APPLY WINDOW CSS */

html.subscribe-open body {
    overflow: hidden;
}

#subscribe {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    max-width: 865px;
    padding: 0;
    color: #FFFFFF;
    background: var(--white);
    box-shadow: 0px 0px 50px 0px rgba(0, 73, 89, 0.10);
    overflow-y: auto;
    overflow-x: none;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.5s linear;
    z-index: 8000;
    transform: translateX(150%); 
}

#subscribe .inner {
    padding: 80px;
}

#subscribe .inner .gform_wrapper {
    padding-top: 10px;
}

#subscribe a.close, #subscribe a.close:active, #subscribe a.close:visited, #subscribe a.close:focus, #subscribe a.close:hover {
    position: absolute;
    display: block;
    top: 40px;
    right: 40px; 
    width: 24px;
    height: 24px; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.5454 2.64932C23.6896 2.50539 23.8039 2.33448 23.882 2.14635C23.96 1.95823 24.0003 1.75657 24.0004 1.55289C24.0005 1.34921 23.9605 1.1475 23.8827 0.959281C23.8049 0.771059 23.6907 0.60001 23.5468 0.455899C23.4029 0.311789 23.232 0.197439 23.0438 0.11938C22.8557 0.0413198 22.654 0.00107852 22.4504 0.000953335C22.2467 0.000828148 22.045 0.0408215 21.8568 0.11865C21.6685 0.196478 21.4975 0.310618 21.3534 0.454551L12 9.80793L2.64932 0.454551C2.35827 0.163507 1.96353 -3.06665e-09 1.55193 0C1.14034 3.06665e-09 0.745595 0.163507 0.454551 0.454551C0.163507 0.745595 3.06665e-09 1.14034 0 1.55193C-3.06665e-09 1.96353 0.163507 2.35827 0.454551 2.64932L9.80793 12L0.454551 21.3507C0.31044 21.4948 0.196126 21.6659 0.118134 21.8542C0.0401417 22.0425 0 22.2443 0 22.4481C0 22.6519 0.0401417 22.8537 0.118134 23.042C0.196126 23.2302 0.31044 23.4013 0.454551 23.5454C0.745595 23.8365 1.14034 24 1.55193 24C1.75574 24 1.95755 23.9599 2.14583 23.8819C2.33412 23.8039 2.50521 23.6896 2.64932 23.5454L12 14.1921L21.3534 23.5454C21.6444 23.8361 22.039 23.9993 22.4504 23.999C22.8617 23.9988 23.2561 23.8351 23.5468 23.5441C23.8375 23.2531 24.0006 22.8585 24.0004 22.4471C24.0001 22.0358 23.8365 21.6414 23.5454 21.3507L14.1921 12L23.5454 2.64932Z' fill='%23C71618'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

#subscribe.open {
    transition: transform 0.5s linear;
    transform: translateX(0%);
}

/* END JOB APPLY WINDOW CSS */

/* START SUBSCRIBE WINDOW CSS */

html.jobalerts-open body {
    overflow: hidden;
}

#jobapply {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    max-width: 865px;
    padding: 0;
    color: #FFFFFF;
    background: var(--white);
    box-shadow: 0px 0px 50px 0px rgba(0, 73, 89, 0.10);
    overflow-y: auto;
    overflow-x: none;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.5s linear;
    z-index: 8000;
    transform: translateX(150%); 
}

#jobapply .inner {
    padding: 80px;
}

#jobapply .inner .gform_wrapper {
    padding-top: 10px;
}

#jobapply a.close, #jobapply a.close:active, #jobapply a.close:visited, #jobapply a.close:focus, #jobapply a.close:hover {
    position: absolute;
    display: block;
    top: 40px;
    right: 40px; 
    width: 24px;
    height: 24px; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.5454 2.64932C23.6896 2.50539 23.8039 2.33448 23.882 2.14635C23.96 1.95823 24.0003 1.75657 24.0004 1.55289C24.0005 1.34921 23.9605 1.1475 23.8827 0.959281C23.8049 0.771059 23.6907 0.60001 23.5468 0.455899C23.4029 0.311789 23.232 0.197439 23.0438 0.11938C22.8557 0.0413198 22.654 0.00107852 22.4504 0.000953335C22.2467 0.000828148 22.045 0.0408215 21.8568 0.11865C21.6685 0.196478 21.4975 0.310618 21.3534 0.454551L12 9.80793L2.64932 0.454551C2.35827 0.163507 1.96353 -3.06665e-09 1.55193 0C1.14034 3.06665e-09 0.745595 0.163507 0.454551 0.454551C0.163507 0.745595 3.06665e-09 1.14034 0 1.55193C-3.06665e-09 1.96353 0.163507 2.35827 0.454551 2.64932L9.80793 12L0.454551 21.3507C0.31044 21.4948 0.196126 21.6659 0.118134 21.8542C0.0401417 22.0425 0 22.2443 0 22.4481C0 22.6519 0.0401417 22.8537 0.118134 23.042C0.196126 23.2302 0.31044 23.4013 0.454551 23.5454C0.745595 23.8365 1.14034 24 1.55193 24C1.75574 24 1.95755 23.9599 2.14583 23.8819C2.33412 23.8039 2.50521 23.6896 2.64932 23.5454L12 14.1921L21.3534 23.5454C21.6444 23.8361 22.039 23.9993 22.4504 23.999C22.8617 23.9988 23.2561 23.8351 23.5468 23.5441C23.8375 23.2531 24.0006 22.8585 24.0004 22.4471C24.0001 22.0358 23.8365 21.6414 23.5454 21.3507L14.1921 12L23.5454 2.64932Z' fill='%23C71618'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

#jobapply.open {
    transition: transform 0.5s linear;
    transform: translateX(0%);
}

/* END SUBSCRIBE WINDOW CSS */ 

@media(max-width:1730px) {
	
	h1 {
		font-size: 4.4rem;
		line-height: 4.6rem;
	}
	
	h1.large {
  		font-size: 6.0rem;
  		line-height: 6.0rem;
	}
	
	h2 {
  		font-size: 3.4rem;
  		line-height: 4rem;
	}
	
	h3 {
  		font-size: 2.8rem;
  		line-height: 3.2rem;
	}
	
	h3.line {
	  	padding: 0 0 30px 0;
	  	font-size: 2.2rem;
	  	line-height: 2.2rem;
	}
	
	h4 {
  		font-size: 2.4rem;
  		line-height: 3.0rem;
	}
	
	h4.line::after {
		margin-top: 20px;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-meta p {
  		font-size: 1.4rem;
	}

    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-meta p {
        font-size: 1.4rem;
    }    
	
}

@media(max-width:1640px) {   

    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-image {
        height: 140px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content {
        padding-left: 20px;
    }

    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title {
        margin-bottom: 14px;
		padding-bottom: 0;
    }

    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-image {
        height: 140px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content {
        padding-left: 20px;
    }

    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-title {
        margin-bottom: 14px;
        padding-bottom: 0;
    }    

}

@media(max-width:1500px) {
    
    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title h3 {
        font-size: 200%;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-meta {
        display: none;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-image {
        height: 100px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title {
        margin-bottom: 0;
    }

    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title h3 {
        font-size: 200%;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-meta {
        display: none;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-image {
        height: 100px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-title {
        margin-bottom: 0;
    }    

	.container {
		padding: 0 50px 0 50px;
	}
	
	.header {
		height: 80px;
	}
	
	.header .header-logo svg {
  		width: 150px;
  		height: auto;
	}
	
	.header .header-logo a, .header .header-logo a:active, .header .header-logo a:visited, .header .header-logo a:hover, .header .header-logo a:focus {
  		padding: 20px;
  		height: 80px;
	}
	
	.header .header-navigation ul.navigation-list > li > a, .header .header-navigation ul.navigation-list > li > a:visited, .header .header-navigation ul.navigation-list > li > a:hover, .header .header-navigation ul.navigation-list > li > a:active, .header .header-navigation ul.navigation-list > li > a:focus {
		padding-top: 30px;
	}
	
	.header .header-navigation ul.navigation-list > li::before {
		height: 24px;
	}
    
} 

@media(max-width:1440px) {

	.container {
		padding: 0 40px 0 40px;
	}
	
	h1 {
		font-size: 4rem;
		line-height: 4.4rem;
		padding-bottom: 30px;
	}  

	h1.large {
    	font-size: 5.4rem;
    	line-height: 5.4rem;
	}
	
	 h2 {
    	font-size: 3.2rem;
    	line-height: 3.6rem;
		 padding-bottom: 24px;
  	}
	
	h3 {
    	font-size: 2.6rem;
    	line-height: 3rem;
		padding-bottom: 20px;
  	}
	
	h3.line {
    	padding: 0 0 24px 0;
    	font-size: 2rem;
    	line-height: 2rem;
  	}
	
	h3.line::after {
		margin-top: 24px;
		max-width: 60px;
	}
	
	h3.line.large {
  		padding: 0 0 24px 0;
  		font-size: 2.6rem;
  		line-height: 3rem;
	}
	
	h4 {
    	font-size: 2rem;
    	line-height: 2.6rem;
  	}
	
	h4.line {
		padding-bottom: 24px;
	}
	
	h4.line::after {
    	margin-top: 16px;
  	}
	
	p, ul > li, ol > li {
		font-size: 1.6rem;
  		line-height: 2.4rem;
	}
	
	ul > li::before {
		top: 8px;
	}
	
	a.button, a.button:hover, a.button:active, a.button:visited, a.button:focus, .button {
		font-size: 1.6rem;
  		line-height: 1.6rem;
	}
	
	.content-full-width.padding-bottom-200 {
  		padding-bottom: 150px;
	}
	
	.content-full-width.margin-bottom-200 {
  		margin-bottom: 150px;
	}
	
	.content-full-width.padding-top-150 {
  		padding-top: 120px;
	}
	
	.content-full-width.padding-bottom-120 {
  		padding-bottom: 100px;
	}
	
	.content-full-width.padding-top-120 {
  		padding-top: 100px;
	}
	
	.content-full-width.padding-bottom-130 {
  		padding-bottom: 80px;
	}
	
	.content-full-width.footer .content {
  		padding: 60px 0 60px 0;
	}
	
	.content-full-width.footer .container {
  		max-width: 980px;
	}
	
	.case-study-meta-box p.meta {
  		font-size: 1.4rem;
  		line-height: 2.2rem;
	}
	
	.case-study-meta-box p.meta strong {
  		margin-top: 4px;
  		font-size: 1.6rem;
  		line-height: 1.4rem;
	}
	
	.case-study-meta-box p.image img {
  		max-width: 180px;
  		max-height: 60px;
	}
	
	.case-study-meta-box p.link {
  		font-size: 1.6rem;
  		line-height: 2.4rem;
	}
	
	.case-study-meta-box {
  		padding: 40px;
	}
	
	.box {
  		padding: 40px;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title h3 {
        font-size: 1.8rem;
        line-height: 2.2rem;
  	}

    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-title h3 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }    
	
	#subscribe .inner, #jobalerts .inner, #jobapply .inner {
  		padding: 60px;
	}
	
	table th, table td {
		font-size: 1.6rem;
  		line-height: 2.2rem;
	}
	
}

@media(max-width:1320px) {
	
	h1 {
		font-size: 3.8rem;
		line-height: 4.2rem;
	}  
	
	 h2 {
    	font-size: 3rem;
    	line-height: 3.4rem;
  	}
	
	h3 {
    font-size: 2.4rem;
  	}
	
	.content-full-width.padding-top-120 {
  		padding-top: 100px;
	}
	
	.content-full-width.padding-bottom-100 {
  		padding-bottom: 80px;
	}

	.info-content p strong {
    	font-size: 16px;
	}
	
	#subscribe .inner, #jobalerts .inner, #jobapply .inner {
  		padding: 50px;
	}
	
}

@media(max-width:1240px) {
	
	 .box {
    	padding: 30px;
  	}
	
}

@media(max-width:1160px) {
    
    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title h3 {
        font-size: 1.8rem;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-image {
        height: 90px;
    }

    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-title h3 {
        font-size: 1.8rem;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-image {
        height: 90px;
    }    
	
	table th, table td {
    	font-size: 1.4rem;
    	line-height: 1.8rem;
  	}
    
}

@media(max-width:1100px) {
	
	.header .header-navigation ul.navigation-list > li {
		margin: 0 20px 0 20px;
	}
	
	.header .header-navigation ul.navigation-list > li > a, .header .header-navigation ul.navigation-list > li > a:visited, .header .header-navigation ul.navigation-list > li > a:hover, .header .header-navigation ul.navigation-list > li > a:active, .header .header-navigation ul.navigation-list > li > a:focus {
		font-size: 1.5rem;
	}
    
    h1 {
        font-size: 3.4rem;
    	line-height: 3.8rem;
    }
	
	 h1.large {
    	font-size: 5rem;
    	line-height: 5rem;
  	}
	
	h2 {
		font-size: 2.8rem;
    	line-height: 3.2rem;
	}
	
	h3 {
		font-size: 2rem;
    	line-height: 2.6rem;
	}
	
	h3.line.large {
    		font-size: 2.4rem;
    		line-height: 2.8rem;
  	}
	
	a.button, a.button:hover, a.button:active, a.button:visited, a.button:focus, .button {
		padding: 20px 24px 20px 24px;
	}
	
	.blog-meta p.author {
  		padding: 0 0 0 20px;
  		margin: 0 0 0 10px;
  		font-size: 1.4rem;
  		line-height: 1.4rem;
  		background-size: 12px 14px;
	}
	
	.blog-meta p.date {
  		padding: 0 0 0 20px;
  		margin: 0 10px 0 0;
  		font-size: 1.4rem;
  		line-height: 1.4rem;
  		background-size: 14px 14px;
	}
	
	input[type="text"], input[type="url"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"] {
		padding: 0 20px 0 20px;
	}
	
	#subscribe .inner, #jobalerts .inner, #jobapply .inner {
    	padding: 50px 40px 40px 40px;
  	}
	
	.box p.image img {
		max-height: 50px;
		max-width: 180px;
	}
    
}

@media(max-width:980px) {  

    .container {
        padding: 0 30px 0 30px;
    }  

    h1 {
        font-size: 3.5rem;
        line-height: 4rem;
    }  

    h1.large {
        font-size: 4rem;
        line-height: 4.2rem;
    }     

    h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }  

    h3 {
        font-size: 2.5rem;
        line-height: 3rem;
    }   

    .content-full-width.text-align-center h4.line::after {
        margin-left: 0;
        margin-right: 0;
    }     
    
    h4.line:after {
        margin: 20px 0 0 0;
    }      

    p a.button, p a.button:hover, p a.button:active, p a.button:visited, p a.button:focus {
        margin: 10px 0 10px 0;
    }

    p a.button:first-child {
        margin-left: 0;
    }

    p a.button:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }       

    ul.blog-filters {
        margin: 0;
        width: 100%;
    }    

    ul.blog-filters > li {
        width: 100%;
        text-align: center;
    }
	
	 table th, table td {
    	font-size: 1.6rem;
    	line-height: 2rem;
  	}

    .content-full-width.padding-top-150 {
        padding-top: 80px;
    }               

    .content-full-width.padding-top-120 {
        padding-top: 50px;
    }  

    .content-full-width.padding-bottom-60 {
        padding-bottom: 50px;
    }  

    .content-full-width.padding-bottom-80 {
        padding-bottom: 50px;
    }  

    .content-full-width.padding-bottom-100 {
        padding-bottom: 50px;
    } 

    .content-full-width.padding-bottom-120 {
        padding-bottom: 80px;
    } 

    .content-full-width.padding-bottom-130 {
        padding-bottom: 50px;
    }     

    .content-full-width.padding-bottom-140 {
        padding-bottom: 60px;
    } 

    .content-full-width.padding-bottom-150 {
        padding-bottom: 60px;
    }     

    .content-full-width.padding-bottom-200 {
        padding-bottom: 100px;
    }  

    .content-full-width.padding-bottom-300 {
        padding-bottom: 50px;
    } 

    .content-full-width.margin-bottom-100 {
        margin-bottom: 80px;
    }  

    .content-full-width.margin-bottom-200 {
        margin-bottom: 100px;
    } 

    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner {
      flex-wrap: wrap;
    }     
    
    body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item {
        margin-bottom: 40px;
    }     
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .content .columns .column:nth-child(1) {
		padding-bottom: 0;
	}

    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner {
      flex-wrap: wrap;
    }     
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item {
        margin-bottom: 40px;
    }     
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .content .columns .column:nth-child(1) {
        padding-bottom: 0;
    }    

    /* START HEADER CSS */

    .header {
        height: 96px;
    }       

    .header .header-content {
        display: none;
    }  

    .header-hamburger {
        display: block;
        position: absolute;
        top: 28px;
        right: 30px;
        z-index: 8001;
    }  

    /* END HEADER CSS */  

    /* START FOOTER CSS */   

    .content-full-width.footer .content .columns .column:nth-child(1) .footer-logo {
        padding: 0 0 40px 0;
    } 

    .content-full-width.footer .content .columns .column:nth-child(1) .footer-icons {
        column-gap: 0;
        padding: 0 0 40px 0;
        flex-wrap: wrap;
        row-gap: 20px;
    }       

    .content-full-width.footer .content .columns .column:nth-child(1) .footer-icons .footer-icon {
        width: 100%;
    } 

    .content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li {
        margin: 0 10px 10px 10px;
    }

    .content-full-width.footer .content .columns .column:nth-child(1) .footer-copyright {
        margin-top: 20px;
    }  
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons p {
		font-size: 1.8rem;
  		line-height: 1.8rem;
	}
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-social ul.social-list > li {
		margin: 0 6px 0 6px;
	}  

    /* END FOOTER CSS */  

    /* START JOB ALERTS WINDOW CSS */

    #jobalerts {
        width: 100%;
    }

    #jobalerts .inner {
        padding: 30px;
    }

    /* END JOB ALERTS WINDOW CSS */ 

    /* START JOB APPLY WINDOW CSS */

    #subscribe {
        width: 100%;
    }

    #subscribe .inner {
        padding: 30px;
    }

    /* END JOB APPLY WINDOW CSS */

    /* START SUBSCRIBE WINDOW CSS */

    #jobapply {
        width: 100%;
    }

    #jobapply .inner {
        padding: 30px;
    }

    /* END SUBSCRIBE WINDOW CSS */         
	
	.blog-hero {
		margin-bottom: 40px;
	}

    .blog-hero-caption {
        margin-bottom: 40px;
    }    
	
	.box {
    	padding: 40px;
  	} 
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item {
		width: 50%;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item:first-child {
		padding-right: 30px;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content {
		padding-left: 14px;
	}

    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item {
        width: 50%;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item:first-child {
        padding-right: 30px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content {
        padding-left: 14px;
    }    
	
}

@media(max-width:600px) {   

    .segment-details-statistics ul > li {
        display: block;
        margin: 0 0 20px 0;
    }  

    .segment-details-statistics ul > li:last-child {
        margin: 0;
    } 
	
	#pageslide .slide .header-navigation ul.navigation-list {
		padding: 0 40px 0 40px;
	}
	
	#pageslide {
		padding-top: 60px;
	}
	
	#pageslide .slide .header-navigation ul.navigation-list > li > a, #pageslide .slide .header-navigation ul.navigation-list > li > a:hover, #pageslide .slide .header-navigation ul.navigation-list > li > a:active, #pageslide .slide .header-navigation ul.navigation-list > li > a:visited, #pageslide .slide .header-navigation ul.navigation-list > li > a:focus {
		font-size: 2.8rem;
  		line-height: 2.8rem;
	}
	
	h1, h1.large {
    	font-size: 3.4rem;
    	line-height: 3.7rem;
  	}
	
	h2 {
    	font-size: 2.8rem;
    	line-height: 3.2rem;
  	}
	
	h3 {
    	font-size: 2.3rem;
    	line-height: 2.7rem;
  	}
	
	h3.line {
    	font-size: 1.8rem;
    	line-height: 1.8rem;
  	}
	
	p {
		padding-bottom: 24px;
	}
	
	.content-full-width.margin-bottom-100 {
    	margin-bottom: 60px;
  	}
	
	.content-full-width.padding-bottom-200 {
    	padding-bottom: 80px;
  	}
	
	.content-full-width.margin-bottom-200 {
    	margin-bottom: 80px;
  	}
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-logo {
		text-align: left;
	}
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons {
		row-gap: 24px;
	}
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons .footer-icon:nth-child(1), .content-full-width.footer .content .columns .column:nth-child(1) .footer-icons .footer-icon:nth-child(2), .content-full-width.footer .content .columns .column:nth-child(1) .footer-icons .footer-icon:nth-child(3) {
		width: 100%;
	}
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons, .content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list, .content-full-width.footer .content .columns .column:nth-child(1) .footer-copyright {
		text-align: left;
	}
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-navigation ul.footer-list > li {
    	margin: 0 12px 10px 0;
  	}
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-icons h4 {
		padding-bottom: 8px;
	}
	
	.content-full-width.footer .content .columns .column:nth-child(1) .footer-copyright p {
  		font-size: 1.2rem;
  		line-height: 1.7rem;
	}
	
	.modal a.close-modal, #jobalerts a.close, #jobalerts a.close:active, #jobalerts a.close:visited, #jobalerts a.close:focus, #jobalerts a.close:hover, #jobapply a.close, #jobapply a.close:active, #jobapply a.close:visited, #jobapply a.close:focus, #jobapply a.close:hover, #subscribe a.close, #subscribe a.close:active, #subscribe a.close:visited, #subscribe a.close:focus, #subscribe a.close:hover {
  		width: 20px !important;
  		height: 20px !important;
  		top: 14px !important;
  		right: 14px !important;
  		background-size: 20px 20px !important;
	}
	
	.case-study-meta-box {
    	padding: 30px;
  	}
	
	.case-study-meta-box p.image {
  		padding-bottom: 30px;
	}
	
	.gm-style .gm-style-iw-c {
		max-width: 250px !important;
	}
	
	.info-content p {
  		font-size: 12px !important;
  		line-height: 18px;
	}
	
	.info-content p strong {
    	font-size: 14px;
  	}
	
	.info-content {
  		padding: 10px 5px 0px 5px;
  		width: 220px;
	}
	
	.content-full-width.padding-bottom-120 {
    	padding-bottom: 60px;
  	}
	
	.blog-hero {
    	margin-bottom: 30px;
  	}

    .blog-hero-caption {
        margin-bottom: 40px;
    }      
	
	.blog-title {
		padding-bottom: 30px;
	}
	
	.box {
    	padding: 30px;
  	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item {
    	width: 100%;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item:first-child {
		padding-right: 0;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-image {
		width: 100%;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content {
		padding-left: 0;
		width: 100%;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-image {
    	height: 200px;
  	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title {
		padding-top: 20px;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-title h3 {
		font-size: 2.2rem;
    	line-height: 2.6rem;
		padding-bottom: 20px;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-meta {
    	display: block;
 	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-meta p {
		font-size: 1.2rem;
    	line-height: 1.2rem;
    	margin: 0 8px 0 8px;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-meta p:first-child {
		margin-left: 0;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item .blog-post-list-item-inner .blog-post-list-item-content .blog-post-list-item-content-meta p:last-child {
		margin-right: 0;
	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item {
    	margin-bottom: 50px;
  	}
	
	body.single .content-full-width.columns-block .content-full-width.list-blog-posts-block.wpblock .blog-post-list .blog-post-list-item:last-child {
  		margin-bottom: 10px;
	}

    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item {
        width: 100%;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item:first-child {
        padding-right: 0;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-image {
        width: 100%;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content {
        padding-left: 0;
        width: 100%;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-image {
        height: 200px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-title {
        padding-top: 20px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-title h3 {
        font-size: 2.2rem;
        line-height: 2.6rem;
        padding-bottom: 20px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-meta {
        display: block;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-meta p {
        font-size: 1.2rem;
        line-height: 1.2rem;
        margin: 0 8px 0 8px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-meta p:first-child {
        margin-left: 0;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item .advice-post-list-item-inner .advice-post-list-item-content .advice-post-list-item-content-meta p:last-child {
        margin-right: 0;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item {
        margin-bottom: 50px;
    }
    
    body.single .content-full-width.columns-block .content-full-width.list-advice-posts-block.wpblock .advice-post-list .advice-post-list-item:last-child {
        margin-bottom: 10px;
    }    
	
	 #subscribe .inner, #jobalerts .inner, #jobapply .inner {
    	padding: 40px 30px 50px 30px;
  	}
	
}