@charset "UTF-8";

/*
Theme Name: Quad
Theme URI:
Author: Peppermint
Author URI: https://peppermint.pl/
Description: Custom WordPress theme designed for <code>https://p-mint.eu</code>.
Version: 1.0
Tags: quad, company, custom, marketing, agency
*/

/* TEMPORARY HIDE FR LANGUAGE */
/* .wpml-ls-slot-shortcode_actions.wpml-ls-item.wpml-ls-item-fr {
    display: none;
} */


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap'); */

:root {
    --color-blue: #00A1E6;
    --color-yellow: #FFDE00;
    --color-red: #F10B35;
    --color-white: #FFFFFF;
    --color-midblue: #327174;
    --color-orange: #F99D0A;
    --color-pink: #FFAFD6;
    --color-lightgreen: #32E775;
    --color-black: #000;
    --color-quadblue: #00007A;
    --color-darkgold: #BD8608;
    --color-darkred: #7E122D;
    --color-darkgreen: #003B12;
    --color-midgreen: #008E0D;

    /* new colors by Peppermint */
    --color-quadblue-300: #234F51;

    --color-quadgrey-100: #F7F7F7;
    --color-quadgrey-300: #B6B6B6;

    --color-neonmint: #B9F757;
    --color-neonmint-300: #E3FCBC;
    --color-lightpink: #F3D3D6;
    --color-dark: #313131;
    --color-light: #F6F6F6;
}

html {
    overflow-x: hidden;
}

body {
    color: var(--color-dark);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

/* strong {
    font-family: 'Roboto Bold';
} */

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

h1, .h1 {
    font-size: clamp(2.75rem, 2.2813rem + 2.0833vw, 4rem);
    line-height: 1;    
}
.h1-sm {
    font-size: clamp(52px, 0.5714rem + 4.6429vw, 60px); /* 16 */
    line-height: 1;    
}

h2, .h2 {
    font-size: clamp(2.375rem, 1.9063rem + 2.0833vw, 3.625rem);
    line-height: 1;
}
/* body.page-id-444 h1, 
body.page-id-444 .h1 {
    font-size: clamp(55px, 0.5714rem + 4.6429vw, 76px);
} */
@media (max-width: 767px) {   
    body.page-id-444 .hero--section p.lead {
        font-size: 20px;
    }
}

h3, .h3 {
    font-size: clamp(2rem, 1.7656rem + 1.0417vw, 2.625rem);
    line-height: 1;
}

h4, .h4 {
    font-size: clamp(1.5rem, 1.2656rem + 1.0417vw, 2.125rem);
    line-height: 1;
}

h5, .h5 {
    font-size: clamp(26px, 0.5714rem + 4.6429vw, 31px); /* 5 */
    line-height: 1;
}

h6, .h6 {
    font-size: clamp(25px, 0.5714rem + 4.6429vw, 29px); /* 4 */
    line-height: 1;
}

body.sub-menu-is-open nav.navbar {
    background-color: var(--color-white);
}

nav.navbar {
    z-index: 11;
}

.logo {
    background-size: contain;
    background-repeat: no-repeat;
    width: 74px;
    height: 24px;
}

.menu-item {
    margin: 0;
    /* padding: 2rem 12px; */
    text-align: center;
    cursor: pointer;
    /* background-color: #222222; */
    margin: 1px auto;
    width: 100%;
}

.menu-item .nav-link {
    color: var(--color-dark);
    font-size: 14px;
    padding: 0;
    position: relative;
    padding: 1rem 20px;
    font-weight: 700;
}

.menu-item .nav-link:hover {
    color: var(--color-neonmint);
}

.lead {
    font-size: clamp(1.3125rem, 1.2188rem + 0.4167vw, 1.5625rem);
    line-height: 1.2;
}

.logos .logo-item {
    display: flex;
    justify-content: center;
}

.barn-image {
    background-size: auto;
    background-position: 0%;
    background-repeat: no-repeat;
    min-height: 800px;
    display: flex;
    align-items: center;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.footer {
    font-size: 14px;
    background-color: #BDC0C2;
}

.footer a {
    color: var(--color-dark);
    text-decoration: none;
}

.legal a::after {
    content: '/';
    display: inline-block;
    margin: 0 10px;
}

.legal a:last-of-type::after {
    content: '';
    display: none;
}

.logo-bug {
    background-image: url('./assets/img/logo-bug.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}

.links-footer ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.links-footer ul li.menu-item {
    margin: 5px 0;
}

.links-footer ul li.menu-item:first-of-type {
    margin: 0 0 12px;
}

.links-footer a {
    color: var(--color-dark);
    text-decoration: none;
}

.links-footer a:hover {
    color: var(--color-midblue);
}

.text-grey {
    color: var(--color-quadgrey-300);
}

.options .slick-list {
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.options .slick-track {
    display: flex;
}

.options .slick-slide {
    height: inherit;
    max-width: 100%;
    margin-right: calc(var(--bs-gutter-x)* .5);
    margin-left: calc(var(--bs-gutter-x)* .5);
    background-color: var(--color-white);
}

/* START Clients section animation */ 

.logos .logo-item img {
    opacity: 0;
    transform: translateY(-20px);
    transform-origin: 50% 0%;
}
  
.logos .slick-active img {
    animation: slide-in-top .3s ease-in-out both;
}

.logos .slick-active.logo-item > div > div:nth-child(1) > img {
    animation: slide-in-top .3s ease-in-out .1s both;
}
.logos .slick-active.logo-item > div > div:nth-child(2) > img {
    animation: slide-in-top .3s ease-in-out .2s both;
}
.logos .slick-active.logo-item > div > div:nth-child(3) > img {
    animation: slide-in-top .3s ease-in-out .3s both;
}
.logos .slick-active.logo-item > div > div:nth-child(4) > img {
    animation: slide-in-top .3s ease-in-out .4s both;
}
.logos .slick-active.logo-item > div > div:nth-child(5) > img {
    animation: slide-in-top .3s ease-in-out .5s both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-20px);
        transform-origin: 50% 0%;
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        transform-origin: 50% 50%;
        opacity: 1;
    }
}

.logos .logo-item.slick-slide:not(.slick-active) img {
    animation: slide-out-top .3s ease-in-out both;
}

.logos .logo-item:not(.slick-active) > div > div:nth-child(1) > img {
    animation: slide-out-top .3s ease-in-out .1s both;
}
.logos .logo-item:not(.slick-active) > div > div:nth-child(2) > img {
    animation: slide-out-top .3s ease-in-out .2s both;
}
.logos .logo-item:not(.slick-active) > div > div:nth-child(3) > img {
    animation: slide-out-top .3s ease-in-out .3s both;
}
.logos .logo-item:not(.slick-active) > div > div:nth-child(4) > img {
    animation: slide-out-top .3s ease-in-out .4s both;
}
.logos .logo-item:not(.slick-active) > div > div:nth-child(5) > img {
    animation: slide-out-top .3s ease-in-out .5s both;
}

@keyframes slide-out-top {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* END Clients section animation */ 

.btn {
    border-radius: 0;
    font-weight: 900;
}

.btn.btn-primary {
    padding: 16px 42px;
    background-color: var(--color-midblue);
    border-color: var(--color-midblue);
    transition: color .25s ease-in-out, padding .25s ease-in-out;
}

.btn.btn-neonmint {
    padding: 16px 42px;
    background-color: var(--color-neonmint);
    border-color: var(--color-neonmint);
    color: var(--color-dark);
    transition: color .25s ease-in-out, padding .25s ease-in-out;
}

.btn.btn-primary:hover {
    background-color: var(--color-quadblue-300);
    border-color: var(--color-quadblue-300);
    padding: 16px 52px 16px 32px;
}

.btn.btn-neonmint:hover {
    padding: 16px 52px 16px 32px;
    background-color: var(--color-neonmint-300);
    border-color: var(--color-neonmint-300);
}

.btn.btn-primary:hover::after {
    content: '';
    background-image: url('./assets/img/icon-arrow.svg');
    background-size: contain;
    display: inline-flex;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    animation: slide-in-left .55s ease 0s 1 normal forwards;
    position: absolute;
    translate: -3px 5px;
}

.btn.btn-neonmint:hover::after {
    content: '';
    background-image: url('./assets/img/icon-arrow-dark.svg');
    background-size: contain;
    display: inline-flex;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    animation: slide-in-left .55s ease 0s 1 normal forwards;
    position: absolute;
    translate: -3px 5px;
}

.btn.btn-secondary {
    padding: 0;
    background-color: transparent;
    border-color: transparent;
    color: var(--color-midblue);
    transition: color .25s ease-in-out;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;   
}

.btn.btn-secondary:hover {
    color: var(--color-quadblue-300);
}

.btn.btn-secondary:hover::after {
    content: '';
    background-image: url('./assets/img/icon-arrow-blue.svg');
    background-size: contain;
    display: inline-flex;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    animation: slide-in-left .55s ease 0s 1 normal forwards;
    position: absolute;
    translate: -3px 5px;
}

.btn-check:checked+.btn.btn-primary, .btn.btn-primary.active, .btn.btn-primary.show, .btn.btn-primary:first-child:active, :not(.btn-check)+.btn.btn-primary:active {
    background-color: var(--color-quadblue-300);
    border-color: var(--color-quadblue-300);
}

.btn-check:checked+.btn.btn-secondary, .btn.btn-secondary.active, .btn.btn-secondary.show, .btn.btn-secondary:first-child:active, :not(.btn-check)+.btn.btn-secondary:active {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-quadblue-300);
}

@keyframes slide-in-left {
	0% {
		transform: translateX(-20px);
        opacity: 0;
	}
	100% {
		transform: translateX(0);
        opacity: 1;
	}
}

.btn.dropdown-toggle {
    padding: 16px 42px;
    background-color: var(--color-white);
    border-color: var(--color-quadgrey-300);
}

.dropdown-menu {
    border-radius: 0;
    width: 100%;
}


/* Bootestrap forms */

.form-check {
    display: -webkit-inline-box;
}

.form-check-label {
    font-size: 12px;
}

.form-control {
    padding: 16px 20px;
    border-radius: 0;
    border: 0;
}

.form-control::placeholder {
    opacity: 0.8;
}

.form-check-input {
    width: 1.3em;
    height: 1.3em;
    vertical-align: sub;
    border: none;
    margin-right: 1rem;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.hidden {
    display: none;
}

.mw-900 {
    max-width: 900px;
}

.py-md-5 {
    padding-top: 5rem!important;
    padding-bottom: 5rem!important;
}

.pt-md-5 {
    padding-top: 5rem!important;
}

.pb-md-5 {
    padding-bottom: 5rem!important;
}

.breadcrumb {
    font-weight: 700;
    text-transform: lowercase;
}

.breadcrumb a {
    color: var(--color-dark);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-midblue);
}

.leadership-item {
    background-color: var(--color-white);
    height: 100%;
}

.hero--section {
    overflow-y: hidden;
}

.hero-svg {
    width: 800px;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 0;
}

body.home .hero-svg {
    width: 615px;
}

.hero-svg svg {
    width: 100%;
}

.black-link {
    color: var(--color-dark);
    text-decoration: none;
}

.social-wrapper a {
    text-decoration: none;
}

.document-list {
    padding-left: 1.5rem;
    list-style: none;
}

.document-list li {
    position: relative;
}

.document-list li::before {
    content: '';
    background-image: url('./assets/img/icon-arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    display: inline-flex;
    position: absolute;
    left: -24px;
    top: 4px;
}

.document-list a {
    text-decoration: none;
    color: var(--color-dark);
}

.document-list a:hover {
    color: var(--color-midblue);
}

.tabs-shapes {
    border: none;
}

.nav-tabs.tabs-shapes .nav-link, 
.tabs-shapes .nav-item.show .nav-link, .nav-tabs .nav-link.active,
.tabs-shapes .nav-link:focus, .nav-tabs .nav-link:hover {
    border: var(--color-white);
}

.tabs-shapes svg path {
    stroke: var(--color-dark);
    stroke-width: 2px;
    transition: all .2s ease;
}

.tabs-shapes svg:hover path,
.tabs-shapes .active svg path {
    fill: var(--color-pink);
    stroke: var(--color-pink);
}

.dropdown-item {
    cursor: pointer;
}

.btn.dropdown-toggle:disabled {
    opacity: 0.2 !important;
}

.creations {
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.creations-item {
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}

.shapes-sizes {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.2;
}

/* Navigation - Submenu */
.sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: var(--color-white);
    color: var(--color-dark);
    margin-top: 0;
    pointer-events: none;
    z-index: -10;
    opacity: 0;
    transition: all .5s ease;
    transform: translateY(10px);
    cursor: auto;
}
.sub-menu.sub-menu-open {
    pointer-events: all;
    z-index: 11;
    opacity: 1;
    transform: translateY(0);
}

.sub-menu .row {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.sub-menu .left-column {
    margin-bottom: 2rem;
}

.sub-menu .left-column h2 {
    margin-bottom: 1.5rem;
}

.sub-menu .left-column p {
    margin-bottom: 1.5rem;
}

.sub-menu .left-column a {
    color: var(--color-midblue);
    text-decoration: none;
}

.sub-menu .right-column {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.sub-menu .right-column h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.sub-menu .right-column .sub-menu-list {
    list-style: none;
    padding: 0;
}

.sub-menu .right-column .sub-menu-list > li > a {
    color: var(--color-dark);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
    font-size: 1rem;
    padding: 0 0 .75rem 0;
    text-decoration: none;
    display: block;
}
.sub-menu .right-column .sub-menu-list > li:hover a {
    color: var(--color-blue);
    text-decoration: underline;
}

.sub-menu .right-column .file {
    display: block;
}

.sub-menu .right-column .file img {
    width: 100%;
    height: auto;
}

.sub-menu .right-column .post {
    text-decoration: none;
    color: var(--color-dark);
    display: block;
}

.sub-menu .right-column .post img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.sub-menu .right-column .post h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.sub-menu .right-column .post p {
    font-size: 0.875rem;
    font-weight: 300;
    font-family: 'Arial';
}

body.sub-menu-is-open {
    position: relative;
    transition: all .5s ease;
}
body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: transparent;
    z-index: 10;
    transition: all 1s ease;
    pointer-events: none;
}
body.sub-menu-is-open::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: var(--color-dark);
    opacity: .75;
    pointer-events: all;
}

.nav-projects a {
    color: var(--color-dark);
    text-decoration: none;
}

.nav-projects div {
    opacity: .5;
}

.nav-projects div:hover,
.nav-projects div:has(>a.active) {
    opacity: 1;
}

/* Search */
.search-btn {
    background-image: url('./assets/img/icon-magnifier.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.search__content {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: var(--color-white);
    color: var(--color-dark);
    margin-top: 32px;
    pointer-events: none;
    z-index: -10;
    opacity: 0;
    transition: all .5s ease;
    transform: translateY(10px);
}

@media (max-width: 991px) {
    .search__content {
        margin-top: 23px;
    }
}

.search__content.search-open {
    pointer-events: all;
    z-index: 11;
    opacity: 1;
    transform: translateY(0);
}

.search__content .row {
    width: 100%;
    margin: 0 auto;
    padding: 4.5rem 0;
}

.search__form {
    width: 80%;
    position: relative;
}
.search__input {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
    color: var(--color-dark);
    padding-right: 40px;
}

.search__input::placeholder {
    color: var(--color-quadgrey-300);;
}

.search__submit {
    width: 30px;
    height: 30px;
    padding: 0;
    background-color: transparent;
    border: none;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.search__submit img {
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
}

.search__input:focus {
    outline: none;
}

.search__content .right-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.search__content .right-column h3 {
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
    margin-bottom: 1.1rem;
}

.search__content .right-column .search-item {
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    text-decoration: none;
    display: block;
    color: var(--color-dark);
    margin-bottom: .75rem;
    cursor: pointer;
}

.search__content .right-column .search-item.active, 
.search__content .right-column .search-item:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

.search__content .right-column .inner-column {
    padding-left: 0;
    list-style: none;
}

.search__content .quick-link {
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    text-decoration: none;
    display: block;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.search__content .quick-link:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler span {
    display: block;
    background-color: var(--color-dark);
    height: 3px;
    width: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all .35s ease-out;
    transform-origin: center left;
}
  
.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
}
  
.navbar-toggler span:nth-child(2) {
    opacity: 1;
}
  
.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg);
}
  
.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}
  
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
}
  
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}
  
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg);
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.wpcf7-list-item {
    margin: 0;
}

.navbar div.offcanvas.show {
    width: 100vw !important;
    overflow-y: scroll;
    overflow-x: hidden;
    height: max-content;
    min-height: 100dvh;
}

nav a span {
    color: var(--color-dark); /* domyślny kolor */
    transition: color 0.3s ease;
  }
  
  nav a span.active {
    color: var(--color-neonmint); /* zielony */
  }
  

/* WPML switcher */

.menu-item .wpml-ls {
    padding: 0;
    position: relative;
}

.wpml-ls-legacy-dropdown {
    width: inherit;
}

.wpml-ls-legacy-dropdown a {
    background-color: transparent;
    border: none;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    padding: 0;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    display: none;
}

.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a, .wpml-ls-legacy-dropdown a:focus, .wpml-ls-legacy-dropdown a:hover {
    background-color: transparent;
    color: var(--color-white);
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    border-top: none;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    background-color: var(--color-white);
    width: max-content;
    margin: -2px auto 0;
    left: -50%;
    right: -50%;
    padding: 6px 0;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu a {
    color: var(--color-dark);
}

.wpml-ls-current-language .wpml-ls-item-toggle .wpml-ls-flag {
    display: none;
}

.wpml-ls-legacy-dropdown .wpml-ls-item-toggle .wpml-ls-flag + span {
    margin-left: 0;
}

.wpml-ls-item:hover > .wpml-ls-link {
    background-color: var(--color-quadgrey-100);
}

.wpml-ls-legacy-dropdown > ul {
    position: initial;
}

.wpml-ls-current-language {
    padding: 1rem 20px !important
}

@media (min-width: 768px) {
    .barn-image {
        background-size: 75%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    .menu-item {
        text-align: inherit;
        background-color: inherit;
        margin: auto;
        width: auto;
    }

    .menu-item .nav-link {
        padding: 2rem 20px !important;
    }

    .menu-item .wpml-ls {
        padding: 2rem 20px !important;
    }

    .sub-menu .row {
        width: 100%;
        margin: 0 auto;
        padding: 4.5rem 0;
    }

    .sub-menu .left-column {
        margin-bottom: 0;
    }

    .sub-menu .right-column {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding-left: 3rem;
        gap: 2rem;
    }

    .navbar div.offcanvas {
        min-height: auto;
    }

    .menu-item .wpml-ls {
        padding: 0 !important;
    }

    .menu-item-lang div {
        padding: 0 !important;
    }

    .wpml-ls-current-language {
        padding: 2rem 20px !important
    }
}

.links-footer .menu-item {
    background-color: transparent !important;
}
main.leadership #hero-block_da4b35814dcf33c575a2a9dbd27e76b6 {
    padding-bottom: 0 !important;
}


/* Block image styling */
figure.wp-block-image.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
figure.wp-block-image.alignright {
	float: right;
    margin: 0 0 1em 1em;
}
figure.wp-block-image.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

/* News carousel */
#news-carousel .slick-track {
    display: flex !important;
}
#news-carousel .slick-slide {
    height: inherit !important;
}
#news-carousel h4, .h4 {
    font-size: clamp(1.3125rem, 1.2422rem + 0.3125vw, 1.5rem);
}
.newsCarousel__dots .slick-dots {
    position: relative;
    bottom: 0;
    width: fit-content;
}
.newsCarousel__dots .slick-dots li button:before {
    font-size: 15px;
    opacity: 0.5;
}
.newsCarousel__dots .slick-dots li.slick-active button:before {
    color: var(--color-quadblue-300);
    font-size: 20px;
    opacity: 1;
}
.newsCarousel__nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.newsCarousel__button {
    width: fit-content;
}

.card--section.dark h2, .form--section.dark h2, .form--section.dark {
    color: var(--color-white);
}

.card--section.dark .bg-white {
    background-image: url('assets/img/caret-dark.svg');
    background-position: 120% 120%;
    transition: all .25s ease-in-out;
    background-repeat: no-repeat;
    background-size: 10%;
}

.card--section.dark .bg-white:hover {
    background-color: var(--color-lightpink) !important;
    background-position: 101% 100%;
    
}

.card--section.neonmint .bg-white {
    background-image: url('assets/img/caret-neonmint.svg');
    background-position: 120% 120%;
    transition: all .25s ease-in-out;
    background-repeat: no-repeat;
    background-size: 10%;
}

.card--section.neonmint .bg-white:hover {
    background-color: var(--color-neonmint-300) !important;
    background-position: 101% 100%;
  
}

.card--section.light .bg-white {
    background-image: url('assets/img/caret-light.svg');
    background-position: 120% 120%;
    transition: all .25s ease-in-out;
    background-repeat: no-repeat;
    background-size: 10%;
}

.card--section.light .bg-white:hover {
    background-color: var(--color-lightpink) !important;
    background-position: 101% 100%;
  
}

.form--section.newsletter {
    background-image: url('assets/img/circle.svg');
    background-repeat: no-repeat;
    background-size: 664px;
    background-position: calc(50% - 471px) 28px;
}

.quote--section {
    background-image: url('assets/img/circle.svg');
    background-repeat: no-repeat;
    background-size: 700px;
    background-position: calc(50% - 250px) 50%;
}

.barn--section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
}

.barn--section.left-cover .bg-white {
    position: relative;
    z-index: 1;
    background-color: transparent !important;
}

.barn--section.left-cover .bg-white > * {
    position: relative;
    z-index: 2;
}

.barn--section.left-cover .bg-white::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -20px;
    top: 0;
    bottom: 0;
    left: -100%;
    background-image: url('assets/img/bg-caret-white.svg');
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.card--section h4.card-title svg,
.form--section h2 svg {
    flex-shrink: 0;
}

body.home .hero--section {
    background-image: url('assets/img/bg-hero-slash.svg'), url('assets/img/logo.svg');
    background-position: 2% 100%, 90% 100%;
    background-repeat: no-repeat;
    background-size: auto, 45vw;
    min-height: 700px;
}

.hero--section, .hero-lidership {
    background-image: url('assets/img/bg-hero-slash.svg');
    background-position: 2% 100%;
    background-repeat: no-repeat;
    background-size: auto;
    min-height: 700px;
    padding-top: 100px !important;
}

.site-header.fixed-top {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.75); 
}
.site-header.fixed-top.is-scrolled {
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.75); 
}

.button--section.dark h2 {
    color: var(--color-white);
}

body.page-id-297 .card--section.neonmint {
    background-image: url('assets/img/enviromental-bg-cards.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
}