
:root {
    --core-color: #000000;
    --core-color-rgb: 0, 0, 0;
    --primary: #43252f;
    --primary-rgb: 67, 37, 47;
    --secondary: #69807a;
    --secondary-rgb: 105, 128, 122;
    --tertiary: #1d1d1b;
    --tertiary-rgb: 29, 29, 27;
    --clients-section: #bdcec6;
    --lower-color: #def0f0; /* rgb(222, 240, 240) / #def0f0 */
    --btn-color: #583b47;
    --btn-blue-color: #a9d5d8;
    --primary-font: 'Lato', Arial, Helvetica, Tahoma, Geneva, Verdana, Sans-Serif;
    --secondary-font: 'Playfair Display', Arial, Helvetica, Tahoma, Geneva, Verdana, Sans-Serif;
}

/*-----------------------------------------------------------------------------------------------*/

h1 { 
    margin: 1.5rem 0rem;
    color: var(--secondary);
    font-weight: normal; 
    font-size: 2.5em; 
    line-height: 1.2em; 
    font-family: var(--secondary-font);
}

h2 { 
    margin: 1.5rem 0rem 1rem 0rem;
    color: var(--primary);
    font-weight: normal;   
    font-size: 1.8em; 
    line-height: 1.35em;
    font-family: var(--secondary-font);
}

h3 { 
    margin: 1.25rem 0rem 1rem 0rem;
    color: var(--secondary);
    font-weight: normal;   
    font-size: 1.5em; 
    line-height: 1.25em; 
}

h4 {
    margin: 1.25rem 0rem 1rem 0rem;
    font-weight: normal; 
    font-size: 1.25em;
    line-height: 1.5em;
}

p {
    margin: 1rem 0rem;
}

.impact {
    font-size: 2.5em;
    font-family: var(--secondary-font);
    line-height: 1.3em;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
p:first-child {
    margin-top: 0px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
p:last-child {
    margin-bottom: 0px;
}

a,
a:link,
a:active,
a:visited {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    text-decoration: underline;
}

a img {
    border: 0px;
}

a.pdf {
    display: inline-block;
    padding-left: 22px;
    background: url('../../images/pdf.png') left 2px no-repeat;
}

a.word {
    display: inline-block;
    padding-left: 22px;
    background: url('../../images/doc.png') left 2px no-repeat;
}

.climate_btn {
    position: relative;
    display: inline-block;
    padding: 5px;
    color: #000 !important;
    /*text-transform: uppercase;*/
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    z-index: 1;
}

.climate_btn:hover,
.climate_btn:focus {
    text-decoration: none;
    color: #000;
}

.climate_btn::before {
    position: absolute;
    content: "";
    background: var(--btn-color);
    height: 10%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transition: height 0.2s linear;
}

.climate_btn:hover::before,
.climate_btn:focus::before {
    height: 20%;
}

.climate_btn.blue::before {
    background: var(--btn-blue-color);
}

.climate_btn + .climate_btn {
    margin: 0 0 0 15px;
}

/*-----------------------------------------------------------------------------------------------*/

.clearer {
    clear: both;
    height: 0px;
    overflow: hidden;
    font-size: 0px;
    line-height: 0px;
}

.clear:after {
    content: " ";
    clear: both;
    display: block;
}

hr {
    height: 1px;
    overflow: hidden;
    color: #666666;
    border: none;
    background-color: #666666;
}

.spacer {
    margin-top: 15px;
    margin-bottom: 15px;
}

.spacer_top {
    margin-top: 15px;
}

.spacer_bottom {
    margin-bottom: 15px;
}

.padder {
    padding-left: 15px;
    padding-right: 15px;
}

.padder_left {
    padding-left: 15px;
}

.padder_right {
    padding-right: 15px;
}

.nopadding {
   padding: 0px !important;
}

.nopadding_right {
   padding-right: 0px !important;
}

.nopadding_left {
   padding-left: 0px !important;
}

.push_right {
    float: right;
}

.push_left {
    float: left;
}

img.alignright {
	float: right;
	margin-left: 20px;
	margin-bottom: 4px;
	display: block;
}

img.alignleft {
	float: left;
	margin-right: 20px;
	margin-bottom: 4px;
	display: block;
}

img.aligncenter {
	text-align: center;
	margin: 1em auto 5px auto;
	clear: both;
	display: block;
}

img.fullwidth {
	margin: 0px;
	display: block;
}

/*-----------------------------------------------------------------------------------------------*/

html {
    font-size: 16px;
}

body {
    margin: 0px;
    color: #666666;
    font-size: 1rem;
    line-height: 1.8em;
    font-family: var(--primary-font);
}

body > form {
    margin: 0px;
}

.blur {
    -webkit-filter: blur(7px);
    -moz-filter: blur(7px);
    filter: blur(7px);
}

/*-----------------------------------------------------------------------------------------------*/

#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0 15px;
    z-index: 999;
}

#header .container {
    position: relative;
    z-index: 10;
}

    #header .logo {
        display: inline-block;
        line-height: 0px;
        width: 270px;
    }

.page_home #content {
    margin-top: 0;
}

#content {
    margin-top: 30px;
}

    #content h2 {
        color: #444444;
    }

    #content .climate_btn {
        color: #444444 !important;
    }

/*-----------------------------------------------------------------------------------------------*/

.hero_section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 97vh;
}

.hero_section::after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, .25);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero_section .hero_video {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero_section .hero_text {
    padding: 200px 0;
    width: 100%;
    color: #fff;
    z-index: 9;
}

.hero_section .hero_text em {
    color: var(--btn-blue-color);
}

.hero_section .hero_tag {
    display: none;
    z-index: 9;
}

.hero_section h1,
.hero_section h2,
.hero_section h3,
.hero_section a,
.hero_section a:hover,
.hero_section a:focus,
.hero_section .climate_btn {
    color: #fff !important;
}

.hero_section p {
    font-family: var(--secondary-font);
    font-size: 2.5em;
    line-height: 1.2em;
} 

.hero_section hr {
    background-color: #fff;
    color: #fff;
    height: 2px;
}

.intro_section {
    position: relative;
    padding: 30px 0;
    background: var(--primary);
    color: #fff;
}

    .intro_section h1,
    .intro_section h2,
    .intro_section h3,
    .intro_section a,    
    .intro_section a:hover,
    .intro_section a:focus {
        color: #fff !important;
    }

#content .intro_section .climate_btn {
    color: #fff !important;
}
    .intro_section h2 {
        font-size: 2.5em;
    }

.intro_section .arrow_scroll {
    position: absolute;
    left: 50%;
    top: -27px;
    font-size: 1.5em;
    padding: 15px;
    cursor: pointer;
    background: var(--primary);
    transform: translate(-50%, 0);
    transition: background 0.3s linear;
    z-index: 9;
}

.intro_section .arrow_scroll:hover {
    background: var(--secondary);
}

#content .intro_section .climate_btn {
    color: #fff !important;
}

.service_block {
    position: relative;
    padding: 90px 15px;
    margin: 60px 0;
    display: flex;
    min-height: 450px;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--core-color);
    color: #fff;
    overflow: hidden;
}

.editing .service_block {
    flex-flow: column;
}

.service_block::after {
    position: absolute;
    content: "";
    background: rgba(var(--primary-rgb), 0.5);
    backdrop-filter: blur(4px);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: backdrop-filter 0.3s linear, background 0.3s linear;
}

.service_block:hover::after {
    background: transparent;
    backdrop-filter: none;
}

.service_row > div:nth-child(even) .service_block {
    margin: 15px 0;
}

.service_block .image_upload {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}

.service_block .service_block_image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*animation: blockZoom 10s linear infinite alternate-reverse;*/
}

.editing .service_block .service_block_image {
    animation: none;
}

@keyframes blockZoom {
  100% {transform: scale(1.5);}
}

.service_block .service_block_title {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 9;
}

.service_block .service_block_title h3 {
    font-size: 1.3em;
}

.service_block .service_block_title hr {
    color: #fff;
    background-color: #fff;
    width: 100px;
    height: 2px;
}

.service_block .service_block_link,
.service_block .service_block_link a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: transparent !important;
    z-index: 9;
}

.editing .service_block .service_block_link {
    position: relative;
    background: #000;
    color: #fff;
    padding: 10px;
    margin: 30px 0 0;
}

.editing .service_block .service_block_link a {
    position: relative;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    color: #fff !important;
}

.impact_section {
    position: relative;
    padding: 15px 0;
    background-color: var(--secondary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.impact_section h1,
.impact_section h2,
.impact_section h3,
.impact_section a,
.impact_section a:hover,
.impact_section a:focus {
    color: #fff !important;
}

.impact_section h2 {
    font-size: 2.5em;
}

.impact_section .impact_container {
    padding: 15px 0;
}

.impact_section .impact_graphic {
    position: relative;
}

.impact_section .impact_graphic_image {
    height: 450px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    animation: graphicRotate 100s linear infinite;
}

@keyframes graphicRotate {
  100% {transform: rotate(360deg);}
}

.impact_section .impact_graphic_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#content .impact_section .impact_graphic_title a {
    color: #fff !important;
}

.editing .impact_section .impact_graphic_image {
    animation: none;
}

.editing .impact_section .impact_graphic_title {
    position: relative;
    padding: 30px 0;
    top: unset;
    left: unset;
    transform: unset;
}

.ticker_section {
    position: relative;
    padding: 20px 0;
    background-color: var(--secondary);
    color: #fff;
}

.ticker_section a {
    color: #fff;
}

.ticker_section .feed_label {
    position: relative;
    display: inline-block;
    font-family: var(--secondary-font);
    white-space: nowrap;
    width: 180px;
    float: left;
}

.ticker_section .feed_ticker {
    position: relative;
    display: inline-block;
    width: calc(100% - 180px);
    padding: 0 0 0 15px;
    min-height: 1px;
    float: left;
}

.ticker_section .feed_ticker::before,
.ticker_section .feed_ticker::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 15px;
    width: 30px;
    background: linear-gradient(-90deg, rgba(0, 0, 0 , 0), rgba(var(--secondary-rgb), 1));
    background: -webkit-linear-gradient(right, rgba(0, 0, 0 , 0), rgba(var(--secondary-rgb), 1));
    z-index: 9;
}

.ticker_section .feed_ticker::after {
    left: auto;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0 , 0), rgba(var(--secondary-rgb), 1));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0 , 0), rgba(var(--secondary-rgb), 1));
}

.ticker_section .feed_ticker ul {
    font-weight: 300 !important;
    font-size: 0.8em !important;
}

.clients_section {
    position: relative;
    padding: 60px 0;
    background-color: var(--clients-section);
    color: #000;
}

.clients_carousel .slick-track {
    display: flex;
    align-items: center;
}

.clients_carousel .client_carousel_item {
    padding: 15px;
    text-align: center;
    height: 100%;
}

.clients_carousel .client_carousel_item img {
    margin: auto;

}

/*-----------------------------------------------------------------------------------------------*/

.lower_banner {
    position: relative;
    min-height: 250px;
    /*min-height: 75vh;*/
    background-color: var(--secondary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    /*animation: animateBanner 0.75s ease-out 0.5s;
    animation-fill-mode: forwards;*/
}

@keyframes animateBanner {
    100% {min-height: 250px;}
}

.lower_banner::after {
    position: absolute;
    content: "";
    background: rgba(var(--primary-rgb), 0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.editing .lower_banner {
    flex-direction: column;
}

.lower_banner .image_upload {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 99;
}

.lower_banner .container {
    position: relative;
    text-align: left;
    z-index: 9;
}

.lower_banner img {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
}

.lower_banner .container h1,
.lower_banner .container p {
    position: relative;
    padding: 220px 0 30px;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal; 
    font-size: 3em;
    line-height: 1.2em;
}

.master_lower,
.projects_module_lower {
    background-color: var(--lower-color);
}

.publications_module_lower, .news_master_lower {
    background-color: #decabf;
}

/*-----------------------------------------------------------------------------------------------*/

.breadcrumb {
    padding: 0px;
    background-color: transparent;
}

.breadcrumb > li + li:before {
    color: #000000;
}

.breadcrumb > .active {
    color: #000000;
}

/*-----------------------------------------------------------------------------------------------*/

#footer {
    margin-top: 30px;
    padding: 60px 0 30px;
    color: #fff;
    background-color: var(--tertiary);
    font-size: 0.8em;
}

.page_home #footer {
    margin-top: 0;
}

#footer img {
    max-width:300px;
}

#footer .footer_separator {
    padding: 0 10px;
}

#footer .footer_row {
    margin: 10px 0;
    text-align: right;
}

#footer .footer_row:first-of-type {
    margin-top: 0;
}

    #footer .footer_row:last-of-type {
        margin: 30px 0 0;
        display: flex;
        gap: 15px;
        justify-content: end;
    }

#footer a:not(.social_link) {
    position: relative;
    color: #8d8d8d;
    text-decoration: none;
    z-index: 1;
}

#footer a:not(.social_link)::before {
    position: absolute;
    content: "";
    background: var(--primary);
    height: 0;
    bottom: 0;
    left: -5px;
    right: -5px;
    z-index: -1;
    transition: height 0.3s linear;
}

#footer a:not(.social_link):hover::before,
#footer a:not(.social_link):focus::before {
    height: 25%;
}

#footer .social_link {
    display: inline-block;
    fill: #fff;
    transition: fill 0.3s linear;
}

#footer .social_link:hover,
#footer .social_link:focus {
    fill: var(--primary);
}

#footer .social_link + .social_link {
    margin: 0 0 0 10px;
}