:root {

    /* Color declarations */

    --symbal-yellow: #FFD114;
    --offblack: #2B2B2B;
    --dark-gray: #606060;
    --mid-gray: #CCCCCC;
    --light-gray: #F8F8F8;

    /* Top margin */
    --top-margin-sm: 68px;
    --top-margin-lg: 100px; /* 992 px */
    --top-margin-xl: 128px; /* 1700 px */

    scroll-behavior: unset;

}

/* 
-----------------------------------------
BASE
-----------------------------------------
*/

::selection {
    background-color: #000000;
    color: #fff;
}

.scroll-to {
    display: block;
    position: relative;
    top: calc(var(--top-margin-sm) * -1);
    visibility: hidden;
}

@media screen and (min-width: 992px) {

    .scroll-to {
        top: calc(var(--top-margin-lg) * -1);
    }
}

@media screen and (min-width: 1700px) {
    
    .scroll-to {
        top: calc(var(--top-margin-xl) * -1);
    }
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: none;
    appearance: none;
}

img {
    max-width: 100%;
}

figure {
    margin-bottom: 0;
}

body, p, li {
    font-family: "proxima-nova", sans-serif;
    font-size: clamp(1rem, 0.9464rem + 0.1488vw, 1.125rem);
    font-weight: 400;
    line-height: 1.4;
    color: #2D2E2E;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: #2B2B2B;
    margin-bottom: 0.25em;
    line-height: 1;
}

h1, .h1 {
    font-family: "proxima-nova", sans-serif;
    font-size: clamp(2.5rem, 1.4286rem + 2.9762vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25em;
    text-wrap: pretty;
}

h2, .h2 {
    font-family: "proxima-nova", sans-serif;
    font-size: clamp(2rem, 1.25rem + 2.0833vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25em;
    text-wrap: pretty;
}

h3, .h3 {
    font-family: "proxima-nova", sans-serif;
    font-size: clamp(1.5rem, 1.0714rem + 1.1905vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25em;
    text-wrap: pretty;
}

h4 {
    font-family: "proxima-nova", sans-serif;
    font-size: clamp(1.25rem, 1.0893rem + 0.4464vw, 1.625rem);
    font-weight: 700;
}

h5 {
    font-family: "proxima-nova", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
}

h6 {
    font-family: "proxima-nova", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

p, li {
  font-size: clamp(1rem, 0.9464rem + 0.1488vw, 1.125rem);
  line-height: 1.4;
}

p:last-child {
    margin-bottom: 0;
}

p + h2,
p + h3, 
p + h4, 
p + h5,  
p + h6 {
  margin-top: 1.4em;
}

h3:has(+ ul) {
    margin-bottom: 0.5em;
}

strong {
  font-weight: 700;
}

p.ingress {
  font-size: clamp(1.25rem, 1.1964rem + 0.1488vw, 1.375rem);
  font-weight: 600;
}

/* Lists */

ol, ul {
  padding-left: 1.25rem;
}

ul.list-style-none {
    list-style: none;
    padding: 0;
}

/* Links */

a, a:link, a:active {
  text-decoration: none;
  color: #2D2E2E;
  text-underline-offset: 0.3em;
}

a:hover {
  color: #2D2E2E;
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
    outline: 3px dotted var(--offblack);
    outline-offset: 3px ;
    transition: none;
}

footer a:focus-visible {
    outline: 3px dotted var(--light-gray);
}

/* ---------- Padding x space ---------- */

.padding-x-space {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .padding-x-space {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1400px) {
    .padding-x-space {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
}

@media (min-width: 1800px) {
    .padding-x-space {
        padding-left: calc(50% - 864px);
        padding-right: calc(50% - 864px);
    }
}

/* ---------- Padding y space ---------- */

.padding-y-space {
    padding-top: clamp(3rem, 1.846rem + 5.128vw, 8rem); /* 360-1920 */
    padding-bottom: clamp(3rem, 1.846rem + 5.128vw, 8rem);
}

/* ---------- BS grid ---------- */

.row {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

.row > * {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

@media screen and (min-width: 768px) {

    .row {
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .row > * {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

/* ---------- Page wrap ---------- */

@media screen and (min-width: 2400px) {

    .page-wrap-container {
        max-width: 1920px;
        margin: 0 auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.1), 0 0 100px rgba(0,0,0,0.1);
    }   
}

/* ---------- Button ---------- */

a.btn, button.btn {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    background-color: var(--symbal-yellow);
    padding: 1.25em 1.5em;
    color: var(--offblack);
    font-weight: 600;
    transition: all ease 0.2s;
    border: none;
    border-radius: 0.5rem;
}

a.btn:hover,
a.btn:focus,
a.btn:active,
button.btn:hover,
button.btn:focus,
button.btn:active {
    background-color: var(--offblack) !important;
    color: var(--symbal-yellow) !important;
    text-decoration: none;
}

a.btn:focus-visible,
button.btn:focus-visible {
    outline: 3px dotted var(--offblack);
    transition: none;
}

a.btn-outline,
button.btn-outline {
    border: 2px solid var(--offblack);
    color: var(--offblack);
    background-color: transparent;
}

a.btn-outline:hover,
a.btn-outline:focus,
a.btn-outline:active,
button.btn-outline:hover,
button.btn-outline:focus,
button.btn-outline:active {
    border-color: var(--dark-gray);
    color: var(--dark-gray);
    background-color: transparent;
}

a.btn:first-child:active,
a:not(.btn-check) + .btn:active {
    background-color: var(--offblack);
    color: var(--symbal-yellow);
    text-decoration: none;
}

a.btn-outline:first-child:active,
a:not(.btn-check) + .btn:active {
    border-color: var(--dark-gray);
    color: var(--dark-gray);
    background-color: transparent;
}

@media screen and (pointer: coarse) {

    a.btn {
        transition: none;
    }
}

/* ---------- Scroll animations ---------- */

.fade-in {
    opacity: 0;
}

.animate-fade {
    animation-name: fadeUp;
    animation-duration: 0.8s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes fadeUp {
	0% {
		transform: translateY(1rem);
		opacity: 0;
	} to {
		transform: translateY(0);
		opacity: 1;
	}
}


.flip-card {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.animate-flip {
    animation-name: flip;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes flip {
	0% {
      transform: rotateY(0deg);
	} to {
      transform: rotateY(180deg);
	}
}


/* ---------- Split block ---------- */

.split-block {
    display: flex;
    flex-wrap: wrap;
}

.split-block > div {
    flex: 0 0 100%;
}

@media screen and (min-width: 768px) {

    .split-block > div {
        flex: 0 0 50%;
    }
}

.split-block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.split-block-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}

/* ---------- Grid card ---------- */

.grid-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
}

.grid-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: var(--light-gray);
    overflow: hidden;
}

.grid-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.grid-card-caption {
    padding: clamp(1rem, 0.885rem + 0.513vw, 1.5rem);
    background-color: #FFFFFF;
}

.grid-card-caption h3 + p {
    margin-top: 0.5rem;
}

.grid-card-caption p:last-child {
    margin-bottom: 0;
}

a.grid-card:hover {
    text-decoration: none;
}

a.grid-card:hover h3 {
    text-decoration: underline;
}

.post-items-wrap {
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
}

p.post-preview-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: clamp(1rem, 0.913rem + 0.385vw, 1.375rem);
}

p.post-item-tag {
    color: var(--dark-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p.post-item-tag + h3 {
    margin-top: 0;
}

/* ---------- Header section ---------- */

.section-header h2 {
    margin-bottom: 0;
}

.section-header h2 + p {
    margin-top: 0.875em;
    margin-bottom: 0;
}

.section-header p {
    font-weight: 600;
    font-size: clamp(1rem, 0.913rem + 0.385vw, 1.375rem);
    max-width: 80ch;
}

/* Centered header */

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* Split header */

@media screen and (min-width: 768px) {

    .section-header.d-md-flex {
        justify-content: space-between;
    }

    .section-header.d-md-flex > * {
        flex: 0 0 calc(50% - 2rem);
    }

    .section-header.d-md-flex h2 + p {
        margin-top: 0;
    }
}

/*
-----------------------------------------
NAVBAR
-----------------------------------------
*/

.navbar {
    justify-content: space-between;
    align-items: initial;
    padding-top: 0;
    padding-bottom: 0;
    top: 0;
    transition: all ease 0.4s;
    height: var(--top-margin-sm);
    z-index: 1000;
    background-color: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

@media screen and (min-width: 992px) {
    .navbar {
        height: var(--top-margin-lg);
    }
}

@media screen and (min-width: 1700px) {
    .navbar {
        height: var(--top-margin-xl);
    }
}

.navbar-dark {
    background-color: transparent;
    box-shadow: none;
}

.navbar-show {
    transform: none;
}

/* ---------- Logo ---------- */

.navbar-brand {
    display: flex;
    padding: 0;
}

.navbar-brand img {
    height: 30px;
    width: auto;
    transition: 0.15s;
}

@media screen and (min-width: 992px) {
    .navbar .navbar-brand img {
        height: 45px;
    }
}

img.navbar-dark-logo {
    display: none;
}

.navbar-dark .navbar-brand img {
    display: none;
}

.navbar-dark .navbar-brand img.navbar-dark-logo {
    display: block;
}

/* ---------- Mobile menu button ---------- */

.navbar-toggler:focus,
.navbar-toggler:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus-visible {
    outline: 3px dotted var(--offblack);
    border: none;
}

.navbar .navbar-toggler {
    width: 28px;
    height: 23px;
    position: relative;
    transform: rotate(0deg);
    transition: transform .5s ease-in-out;
    cursor: pointer;
    padding: 0;
    box-shadow: none !important;
    border: none !important;
    z-index: 1032;
    outline-offset: 0.25rem;
    border-radius: 0;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 28px;
    background: var(--offblack);
    opacity: 1;
    left: 0;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 10px;
}

.navbar-toggler span:nth-child(3) {
    top: 20px;
}

@media screen and (min-width: 1200px) {

    .navbar-toggler {
        display: none;
    }
}

/* ----- Offcanvas mobile menu ----- */

#mobile-menu {
    padding: 0;
    border: none;
}

#mobile-menu .nav-item {
    border-bottom: 2px solid #FFFFFF;
}

#mobile-menu .nav-link {
    color: var(--offblack);
    font-weight: 600;
    font-size: 1.25rem;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

#mobile-menu button.nav-link {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border: none;
    background-color: transparent;
    text-align: left;
}

#mobile-menu .nav-link:hover {
    text-decoration: none;
}

#mobile-menu .nav-link svg {
    font-size: 1.25rem;
    color: var(--et-red)
}

#mobile-menu > div { 
    background-color: var(--light-gray);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Mobile menu close button and back button */

#mobile-menu .close-button {
    cursor: pointer;
    font-size: 36px;
    padding: 0 0.25rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    color: var(--offblack);
    height: 30px;
    width: 30px;
    margin-right: 0.75rem;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
}

#mobile-menu .top-nav-item {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#mobile-menu .top-nav-item span {
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background: var(--offblack);
    opacity: 1;
    right: 0;
}

#mobile-menu .top-nav-item span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

#mobile-menu .top-nav-item span:nth-child(2) {
    top: 15px;
    transform: rotate(-45deg);
}

#mobile-menu .back-button {
    justify-content: flex-start;
    font-size: 30px;
    margin-left: 1rem;
    color: var(--offblack);
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    padding: 0;
}

/* Mobile submenu */

#mobile-menu .offcanvas-submenu-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateX(100%);
    z-index: 10;
    padding: 0;
    opacity: 1;
    visibility: hidden;
    background-color: var(--light-gray);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.075);
}

#mobile-menu .offcanvas-submenu-collapse.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

#mobile-menu .offcanvas-submenu-collapse .top-nav-item {
    justify-content: space-between;
}

#mobile-menu .submenu {
    list-style: none;
    padding-left: 0;
}

#mobile-menu .offcanvas-submenu-collapse .submenu:first-child .nav-item:first-child .nav-link {
    border-top: none;
}

#mobile-menu .nav-link.submenu-title {
    font-weight: 600;
}

#mobile-menu .submenu-submenu {
    list-style: none;
    padding-left: 0;
}

#mobile-menu .main-menu-mobile .submenu-submenu .nav-item .nav-link:not(.submenu-title) {
    white-space: normal;
    font-weight: 300;
}

#mobile-menu .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

#mobile-menu .submenu-submenu > .nav-item:last-child {
    border-bottom: 2px solid #FFFFFF;
}

#mobile-menu .submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

#mobile-menu .submenu-item .nav-link {
    text-transform: none;
}

/* ---------- Desktop menu ---------- */

#desktopMenu {
    display: none;
}

@media screen and (min-width: 1200px) {

    #desktopMenu {
        display: flex;
    }
}

#main-menu {
    height: 100%;
    flex-direction: row;
    align-items: flex-end;
    margin-right: -0.5rem;
}

#main-menu .nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

#main-menu .nav-link {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--offblack);
    padding: 0.5rem;
    transition: color ease 0.15s;
    font-size: 1.25rem;
}

#main-menu button.nav-link {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
}

#main-menu .nav-link:hover {
    color: var(--dark-gray);
    text-decoration: none;
}

#main-menu > .nav-item > .nav-link {
    margin-right: 1.25rem;
}

#main-menu > .nav-item:last-child > .nav-link {
    margin-right: 0;
}

@media screen and (min-width: 1700px) {

    #main-menu > .nav-item > .nav-link {
        margin-right: 1.5rem;
    }
}

/* Desktop dropdown menus */

#main-menu .dropdown-toggle::after {
    display: none;
}

#main-menu .dropdown-menu {
    padding: 0.5rem;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    position: absolute;
    top: 100%;
    min-width: 200px;
    border: none;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

#main-menu .nav-item:last-child .dropdown-menu {
    left: unset;
    right: -1rem;
}

@media screen and (min-width: 1920px) {

    #main-menu .nav-item:last-child .dropdown-menu {
        left: unset;
        right: -4rem;
    }
}

@media screen and (min-width: 2000px) {

    #main-menu .nav-item:last-child .dropdown-menu {
        left: 0;
        right: unset;
    }
}

#main-menu .dropdown-menu .nav-link {
    color: var(--offblack);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem;
    border-bottom: 2px solid #FFFFFF;
    line-height: 1;
    width: 100%;
    border-radius: 6px;
}

#main-menu .dropdown-menu .nav-link:hover {
    text-decoration: none;
    background-color: var(--symbal-yellow);
}

#main-menu .dropdown-menu .nav-item:last-child .nav-link {
    border-bottom: none;
}

@media screen and (min-width: 1700px) {

    #main-menu .dropdown-menu {
        top: calc(100% - 2rem);
    }
}

/* ------- Skip to content ------- */

.skip-to-content {
    position: absolute;
    z-index: 1201;
    opacity: 1;
    top: 1rem;
    left: 1rem;
    height: 0;
}

a.skip-to-content-btn {
    display: inline-block;
    transform: translateY(-999px);
    padding: 0.75em 2em;
    background-color: var(--offblack);
    color: var(--symbal-yellow);
    font-weight: 500;
    font-size: 1.25rem;                    
    text-decoration: none;
    outline-offset: 0.25rem;
}

a.skip-to-content-btn:hover,
a.skip-to-content-btn:focus,
a.skip-to-content-btn:focus-visible {
    transform: translateY(0);
}

/* ---------- Transparent navbar ---------- */

.navbar-dark .navbar-toggler span {
    background-color: #FFFFFF;
}

.navbar-dark #main-menu > li > .nav-link:not(:hover) {
    color: #FFFFFF;
}


/*
-----------------------------------------
BREADCRUMB
-----------------------------------------
*/

.breadcrumb {
    background-color: var(--light-gray);
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 0;
}

.breadcrumb ul {
    margin: 0;
}

.breadcrumb ul {
    margin: 0;
    max-width: 100%;
}

.breadcrumb li {
    font-weight: 300;
    text-wrap: nowrap;
}

.breadcrumb li:first-child {
    display: none;
}

@media screen and (min-width: 576px) {

    .breadcrumb li:first-child,
    .breadcrumb span.divider:first-of-type {
        display: unset;
    }
}

.breadcrumb li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb a {
    font-weight: 400;
}

.breadcrumb span.divider {
    font-weight: 800;
    color: var(--symbal-yellow);
    margin: 0 0.5em;
}


/*
-----------------------------------------
FOOTER
-----------------------------------------
*/

/* ------- Contact buttons above footer ------- */

.contact-buttons-section {
    background-color: var(--symbal-yellow);
    background-size: auto 100%;
    aspect-ratio: 3 / 1;
    background-repeat: no-repeat;
    background-position: center right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.contact-buttons-section .section-header p {
    margin-top: 0.875em;
}

.contact-buttons-wrap {
    justify-content: center;
    flex-wrap: wrap;
    width: calc(380px + 1rem);
    max-width: 100%;
    margin: 0 auto;
}

@media screen and (min-width: 1200px) {

    .contact-buttons-wrap {
        width: 100%;
    }
}

.contact-buttons-section {
    border-top: 2px solid var(--medium-gray);
}

.banners-section + .contact-buttons-section {
    border-top: none;
}

.contact-button {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    background-color: #FFFFFF;
    border-radius: 84px;
    padding: 0.5rem 0.625rem;
    align-items: center;
    margin: 0 0 1rem;
}

.contact-button:hover {
    background-color: var(--offblack)
}

.contact-button:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 400px) {
    
    .contact-button {
        flex-basis: 380px;
        margin: 0 0.5rem 1rem;
    }
}

@media screen and (min-width: 576px) {
    
    .contact-button {
        padding: 0.75rem 1rem;
    }
}

@media screen and (min-width: 768px) {
    
    .contact-buttons-section {
        border-top: none;
    }
}

@media screen and (min-width: 1400px) {
    
    .contact-buttons-wrap {
        flex-wrap: nowrap;
    }

    .contact-button {
        margin: 0 1rem;
    }
}

@media screen and (min-width: 1700px) {
    
    .contact-button {
        margin: 0 1rem;
    }
}

.contact-button:hover {
    text-decoration: none;
}

.contact-button-image {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 68px;
    width: 68px;
}

@media screen and (min-width: 576px) {
    
    .contact-button-image {
        height: 80px;
        width: 80px;
    }
}

.contact-button-image img {
    height: 100%;
    width: 100%;
}

.contact-button-img {
    display: block;
}

.contact-button-img-hover {
    display: none;
}

.contact-button:hover .contact-button-img {
    display: none;
}

.contact-button:hover .contact-button-img-hover {
    display: block;
}

.contact-button-text {
    padding-left: 1rem;
}

.contact-button-text h3 {
    color: var(--offblack);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 1.125rem;
}

.contact-button-text p {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.contact-button:hover h3,
.contact-button:hover p {
    color: var(--symbal-yellow);
}

/* ------- Footer ------- */

footer {
    background-color: var(--offblack);
    position: relative;
}

footer a,
footer a:link,
footer a:active,
footer a:hover,
footer p,
footer li,
footer h2,
footer h3 {
    color: var(--light-gray);
}

footer h2 {
    font-size: clamp(1.5rem, 1.0714rem + 1.1905vw, 2.5rem);
    border-top: 1px solid var(--dark-gray);
    margin-bottom: 0.375em;
    padding-top: 0.375em;
}

footer h2:not(:first-child) {
    margin-top: 0.5em;
}

footer p,
footer li {
    font-size: clamp(1rem, 0.913rem + 0.385vw, 1.375rem);
}

footer ul:last-child {
    margin-bottom: 0;
}

/* ------- Footer top row ------- */

.footer-main-row > div {
    flex: 0 0 100%;
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {

    .footer-main-row {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .footer-main-row > div {
        flex-basis: calc(33.33% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media screen and (min-width: 1700px) {

    .footer-main-row {
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .footer-main-row > div {
        flex-basis: calc(33.33% - 4rem);
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

ul.footer-address li {
    line-height: 1.4;
}

.footer-contact-info-list svg {
    width: 1.25em;
    margin-right: 0.1em;
    font-size: 0.875em;
}


ul.footer-contact-info-list li {
    line-height: 1.4;
}

ul.footer-contact-info-list li + li {
    margin-top: 0.375em;
}

footer .sm-icons {
    margin-top: 1.5rem;
    line-height: 1;
    display: flex;
}

footer .sm-icons > a {
    display: inline-block;
    outline-offset: 0.25rem;
}

footer .sm-icons > a + a {
    margin-left: 1.5rem;
}

footer .sm-icons svg {
    font-size: 2rem;
}

ul.footer-links-list {
    margin-bottom: 0;
}

ul.footer-links-list li {
    line-height: 1.4;
}

ul.footer-links-list li:has(+ li) {
    margin-bottom: 0.375em;
}

/* ------- Footer bottom row ------- */

.footer-bottom-row {
    border-top: 1px solid var(--dark-gray);
    padding-top: 1rem;
    justify-content: space-between;
}

.footer-bottom-row div:first-child {
    padding-right: 2rem;
}

.footer-bottom-row div:first-child p {
    margin-bottom: 0.5em;
}

.footer-bottom-row,
.footer-bottom-row a,
.footer-bottom-row p {
    font-size: 0.875rem;
}

@media screen and (min-width: 768px) {

    .footer-bottom-row {
        margin-top: 2rem;
    }
}

/*
-----------------------------------------
START PAGE
-----------------------------------------
*/

/* ------- Hero section ------- */

.hero-mobile {
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100svh;
    flex-direction: column;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

@media screen and (min-width: 768px) {

    .hero-desktop {
        width: 100%;
        min-height: 100vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}

@media screen and (min-width: 2400px) {

    .hero-desktop {
        aspect-ratio: 16 / 9;
        min-height: unset;
    }
}

@media screen and (min-width: 992px) and (pointer: fine) {
    .hero-desktop-background-image {
        position: fixed !important;
    }
}

@media screen and (min-width: 2400px) {

    .hero-desktop-background-image {
        width: 1920px;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
        position: absolute !important;
    }
}

/* Hero video */

.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.8);
}

/* Hero caption */

.hero-caption {
    position: relative;
    z-index: 2;
    box-shadow:0 1px 5px rgba(0,0,0,0.1);
    clip-path: inset(0px -10px -10px -10px);
    background-color: #FFFFFF;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {

    .hero-caption {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media screen and (min-width: 992px) {

    .hero-caption {
        box-shadow: none;
        background-color: transparent;
        text-align: left;
        padding-top: clamp(3rem, 1.846rem + 5.128vw, 8rem);
        padding-bottom: clamp(3rem, 1.846rem + 5.128vw, 8rem);
    }
}

@media screen and (min-width: 992px) {

    .hero-caption {
        box-shadow: none;
        background-color: transparent;
        text-align: left;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.hero-caption h1 {
    font-size: clamp(2.25rem, 1.154rem + 4.872vw, 7rem); /* 360-1920 */
    line-height: 1;
    font-weight: 300;
    margin-bottom: clamp(0.5rem, 0.327rem + 0.769vw, 1.25rem) /* 360-1920*/;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-caption h1 strong {
    font-weight: 800;
}

.hero-caption p {
    font-size: clamp(1.125rem, 0.808rem + 1.41vw, 2.5rem); /* 360-1920 */
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 500;
}

.hero-caption p:has(+ .hero-buttons) {
    margin-bottom: 1em;
}

.hero-caption a.btn {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    padding: 1.25em 2.5em;
}

.hero-caption a.btn:not(:first-child) {
    margin-top: 0.75em;
}

@media screen and (min-width: 992px) {

    .hero-caption {
        border-radius: 0;
        box-shadow: none;
        width: 65%
    }

    .hero-caption h1,
    .hero-caption p {
        color: #FFFFFF;
    }

    .hero-caption a.btn {
        margin: 0;
        display: inline-block;
    }

    .hero-caption a.btn:not(:first-child) {
        margin-top: 0;
        margin-left: 0.5em;
    }
}

/* Hero caption on video */

.hero-desktop video + .hero-caption {
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: #FFFFFF;
}

.hero-desktop video + .hero-caption h1 {
    color: #FFFFFF;
}

.hero-desktop video + .hero-caption p {
    color: #FFFFFF;
}

/* Animated background images */

.hero-images {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    
    .hero-images {
        aspect-ratio: 16 / 9;
    }
}

@media screen and (min-width: 992px) {

    .hero-images {
        aspect-ratio: unset;
        position: absolute;
        overflow: hidden;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

/* Animated carousel */

.hero-image {
    position: absolute;
    opacity: 0;
    transition: opacity ease 3s;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image.active {
    opacity: 1;
}

/* ------- Slider ------- */

.slider-section {
    position: relative;
    background-color: #FFFFFF;
}

.slider-wrap > div {
    flex-grow: 0;
    flex-shrink: 0;
}

.slider-text {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 2rem;
}

.slider-items-wrap {
    overflow: auto;
    padding: 0.5rem 0;
    flex-basis: calc(100% + 2.5rem);
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-items-wrap::-webkit-scrollbar {
    display: none;
}

@media screen and (min-width: 768px) {

    .slider-items-wrap {
        flex-basis: calc(100% + 4rem);
        width: calc(100% + 4rem);
        margin-left: -2rem;
        margin-right: -2rem;
    }
}

@media screen and (min-width: 1200px) {
    
    .slider-text {
        flex-basis: 480px;
        margin-right: 2rem;
    }

    .slider-items-wrap {
        flex-basis: calc(100% - 480px - 2rem);
        width: calc(100% - 480px - 2rem);
        margin-left: 0;
        margin-right: 0;
    }
}

/* Slider text */

.slider-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-text header {
    text-align: center;
}

.slider-text header p {
    margin-bottom: 0;
}

.slider-text header:has(+ .slider-indicators) {
    margin-bottom: 2rem;
}

/* Slider indicators*/

.slider-indicators {
    max-width: 100%;
    margin: 0 auto;
    width: 400px;
}

@media screen and (min-width: 1200px) {

    .slider-text header {
        text-align: left;
    }

    .slider-indicators {
        width: calc(100% - 2rem);
        margin: 0 auto;
    }
}

button.slider-indicators-arrow {
    padding:0;
    background-color: transparent;
    appearance: none;
    border: none;
    width: clamp(3.625rem, 3.423rem + 0.897vw, 4.5rem);
}

button.slider-indicators-arrow img {
    width: clamp(3.625rem, 3.423rem + 0.897vw, 4.5rem);
}

ul.slider-indicators-nbrs-list {
    margin: 0;
}

.slider-indicators-nbrs-list button.slider-indicator-item {
    color: var(--offblack);
    appearance: none;
    background-color: transparent;
    font-size: clamp(1.5rem, 1.385rem + 0.513vw, 2rem);
    padding: 0;
    margin: 0 0.25em;
    font-weight: 700;
    width: 0.75em;
    display: flex;
    line-height: 1.2;
    justify-content: center;
    border: none;
    border-bottom: 0.1em solid transparent;
    cursor: pointer;
}

.slider-indicators-nbrs-list button.slider-indicator-item.active {
    border-bottom: 0.1em solid var(--offblack);
}

.slider-indicators-nbrs-list button.slider-indicator-item[disabled] {
    color: var(--offblack);
}

@media screen and (pointer: fine) {

    .slider-indicators-nbrs-list button.slider-indicator-item {
        margin: 0 0.125em;
    }
}

/* Slider items */

.slider-items-wrap {
    padding: 0.5rem 1.25rem;
    scroll-snap-type: x mandatory;
}

.disable-scroll-snap {
    scroll-snap-type: unset !important;
}

.slider-items-wrap > .slider-item {
    flex: 0 0 calc(100% - 3.5rem + 1.25rem);
    width: calc(100% - 3.5rem + 1.25rem);
    padding-left: 1.25rem;
    scroll-snap-align: start;
}

@media screen and (min-width: 400px) {

    .slider-items-wrap > .slider-item {
        flex: 0 0 calc(320px + 1.25rem);
        width: calc(320px + 1.25rem);
    }
}

@media screen and (min-width: 768px) {


    .slider-items-wrap {
        padding: 0.5rem 2rem;
    }

    .slider-items-wrap > .slider-item {
        flex: 0 0 calc(320px + 2rem);
        width: calc(320px + 2rem);
        padding-left: 2rem;
    }
}

@media screen and (min-width: 1200px) {

    .slider-items-wrap {
        padding: 0 0.25rem 0.25rem;
        overflow-x: hidden;
    }

    .slider-items-wrap > .slider-item {
        flex-basis: calc(400px + 2rem);
        width: calc(400px + 2rem);
        padding-right: 1.75rem;
        padding-left: 1.75rem;
    }
}

@media screen and (min-width: 1700px) {

    .slider-items-wrap > .slider-item {
        flex-basis: calc(500px + 2rem);
        width: calc(500px + 2rem);
    }
}

.slider-item-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

a.slider-item-inner:hover {
    text-decoration: none;
}

.slider-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-item-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}

.slider-item h3 {
    color: #FFFFFF;
    margin: 0;
    padding: clamp(1rem, 0.885rem + 0.513vw, 1.5rem); /* 360-1920 */
}

/* ------- Clients section ------- */

.clients-section {
    background-color: var(--light-gray);
    position: relative;
}

.client-logos-wrap {
    margin-top: clamp(2rem, 1.538rem + 2.051vw, 4rem);
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-bottom: -1.5rem;
    justify-content: center;
}

.client-logos-wrap > img {
    flex: 1 0 calc(100% - 0.5rem);
    width: calc(100% - 0.5rem);
    border: 1px solid var(--mid-gray);
    margin: 0 0.25rem 0.5rem;
}

@media screen and (min-width: 360px) {

    .client-logos-wrap > img {
        max-width: calc(50% - 0.5rem);
        flex-basis: calc(50% - 0.5rem);
        width: calc(50% - 0.25rem);
    }
}

@media screen and (min-width: 576px) {

    .client-logos-wrap > img {
        max-width: calc(33.33% - 0.5rem);
        flex-basis: calc(33.33% - 0.5rem);
        width: calc(33.33% - 0.5rem);
    }
}

@media screen and (min-width: 768px) {

    .client-logos-wrap {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .client-logos-wrap > img {
        max-width: calc(33.33% - 1rem);
        flex-basis: calc(33.33% - 1rem);
        width: calc(33.33% - 1rem);
        margin: 0 0.5rem 1rem;
    }
}

@media screen and (min-width: 1200px) {

    .client-logos-wrap > img {
        max-width: calc(20% - 1rem);
        flex-basis: calc(20% - 1rem);
        width: calc(20% - 1rem);
    }
}

@media screen and (min-width: 1700px) {

    .client-logos-wrap {
        margin-right: -1.25rem;
        margin-left: -1.25rem;
    }

    .client-logos-wrap > img {
        max-width: calc(20% - 2.5rem);
        flex-basis: calc(20% - 2.5rem);
        width: calc(20% - 2.5rem);
        margin: 0 1.25rem 1.5rem;
    }
}

/* ---------- Services section ---------- */

.services-section {
    background-color: #FFFFFF;
    position: relative;
}

.services-wrap {
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
    margin-bottom: -1.5rem;
}

.services-wrap > div {
    flex-grow: 0;
    flex-shrink: 0;    
    margin-bottom: 1.5rem;
}

.services-wrap > .service-item-divider {    
    flex-basis: 4px;
    background-color: var(--symbal-yellow);
}

.services-wrap > .service-item {    
    flex-basis: calc(100% - 4px);
    padding-left: 1rem;
}

@media screen and (min-width: 576px) {

        .services-wrap > .service-item {    
        flex-basis: calc(50% - 4px);
        padding-right: 2rem;
    }
}

@media screen and (min-width: 1200px) {

    .services-wrap {
        justify-content: space-between;
    }

    .services-wrap > .service-item-divider:first-child {
        display: none;
    }    

    .services-wrap > .service-item {    
        flex-basis: calc(25% - 4px - 2rem);
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (min-width: 1700px) {

    .services-wrap > .service-item-divider {    
        flex-basis: 6px;
        margin: 0 calc(2rem - 3px) 1.5rem;
    }

    .services-wrap > .service-item {    
        border: none;
        padding: 0;
        flex-basis: 360px;
    }
}

.service-item p {
    font-size: clamp(1rem, 0.913rem + 0.385vw, 1.375rem);
    font-weight: 600;
}

.service-item p:last-child {
    margin-bottom: 0;
}

.services-button {
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
}

/* ------- Manifesto ------- */

.manifesto-section {
    position: relative;
    background-color: white;
    width: 100%;
    aspect-ratio: 4 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manifesto-background-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.manifesto-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manifesto-text-wrap {
    position: relative;
}

.manifesto-logo {
    background: var(--symbal-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.manifesto-logo img {
    width: 75%;
}

@media screen and (min-width: 576px) {

    .manifesto-logo {
        background: radial-gradient(
            ellipse at center,
            rgba(255,209,20, 1) 0%,
            rgba(255,209,20, 1) 70%,
            rgba(255,209,20, 0) 70.3%
        );
    }
}


/* Circle text */

.text-circle-wrap {
    width: 100%;
}

.text-circle {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    padding: 0 1rem;
}

.text-circle-content p {
    text-align: center;
    font-weight: 800;
    font-size: clamp(1.25rem, 0.699rem + 2.451vw, 1.875rem);
    line-height: 1.1;
}

.manifesto-text-wrap {
    display: flex;
    height: 100%;
}


@media screen and (min-width: 576px) {

    .text-circle-wrap {
        aspect-ratio: 1 / 1;
        width: 100%;
    }

    .text-circle-wrap::before {
        content: "";
        width: 50%;
        height: 100%;
        float: left;
        shape-outside: polygon(0 0, 98% 0, 50% 6%, 23.4% 17.3%, 6% 32.6%, 0 50%, 6% 65.6%, 23.4% 82.7%, 50% 94%, 98% 100%, 0 100%);
        shape-margin: 7%;
    }

    .text-circle::before {
        content: "";
        width: 50%;
        height: 100%;
        float: right;
        shape-outside: polygon(2% 0%, 100% 0%, 100% 100%, 2% 100%, 50% 94%, 76.6% 82.7%, 94% 65.6%, 100% 50%, 94% 32.6%, 76.6% 17.3%, 50% 6%);
        shape-margin: 7%;
    }

    .text-circle {
        width: 100%;
        height: 100%;
        background: radial-gradient(
            ellipse at center,
            rgba(255,255,255, 1) 0%,
            rgba(255,255,255, 1) 70%,
            rgba(255,255,255, 0) 70.3%
        );
    }

}

@media screen and (min-width: 1200px) {

    .text-circle-wrap {
    }

    .text-circle-wrap::before {
        shape-margin: 12%;
    }

    .text-circle::before {
        shape-margin: 12%;
    }
}

/* ------- Film popup ------- */

.fullwidth-video-section {
    background-color: #FFFFFF;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.fullwidth-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.popup-film-section {
    position: relative;
}

.popup-film-text {
    background-color: var(--symbal-yellow);
}

.popup-film-image {
    position: relative;
}

.fullwidth-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color ease 0.5s;
    background-size: cover;
}

.fullwidth-video-overlay {
    background-color: rgba(0,0,0,0.4);
}

.fullwidth-video-overlay img {
    display: block;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: var(--offblack);
    padding: 0.625rem;
}

@media screen and (min-width: 768px) {

    .fullwidth-video-overlay img {
        width: 120px;
        height: 120px;
    }
}

button.fullwidth-video-play-button {
    appearance: none;
    background-color: transparent;
    padding: 0;
    border: none;
}

img.play-button-black {
    background-color: var(--symbal-yellow);
}

img.play-button-black {
    display: none;
}

.fullwidth-video-play-button:hover img.play-button-black{
    display: block;
}

.fullwidth-video-play-button:hover img.play-button-yellow{
    display: none;
}

/* ------- Blog posts on start page ------- */

.blog-section {
    position: relative;
    background-color: #FFFFFF;
}

.start-page-blog-items-wrap {
    display: flex;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
    scroll-snap-type: x mandatory;
}

.start-page-blog-items-wrap::-webkit-scrollbar {
    display: none;
}

.start-page-blog-items-wrap > div {
    flex: 0 0 calc(100% - 3.5rem + 1.25rem);
    padding-left: 1.25rem;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.start-page-blog-items-wrap > div:last-child {
    flex: 0 0 calc(100% - 3.5rem + 2.5rem);
    padding-right: 1.25rem;
}

@media screen and (min-width: 400px) {

    .start-page-blog-items-wrap > div {
        flex-basis: calc(320px + 1.25rem);
    }

    .start-page-blog-items-wrap > div:last-child {
        flex-basis: calc(320px + 2.5rem);
    }
}

@media screen and (min-width: 768px) {

    .start-page-blog-items-wrap {
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
    }

    .start-page-blog-items-wrap > div {
        flex-basis: calc(320px + 2rem);
        padding-left: 2rem;
    }

    .start-page-blog-items-wrap > div:last-child {
        flex-basis: calc(320px + 4rem);
        padding-right: 2rem;
    }
}

@media screen and (min-width: 992px) {

    .start-page-blog-items-wrap {
        overflow-y: visible;
        overflow-x: hidden;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        width: calc(100% + 1rem);
        scroll-snap-type: unset;
    }

    .start-page-blog-items-wrap > div,
    .start-page-blog-items-wrap > div:last-child {
        flex-basis: calc(33.33% - 1rem);
        margin: 0 0.5rem 1rem;
        padding: 0;
        scroll-snap-align: unset;
    }
}

@media screen and (min-width: 1700px) {

    .start-page-blog-items-wrap {
        margin-right: -2rem;
        margin-left: -2rem;
    }

    .start-page-blog-items-wrap > div,
    .start-page-blog-items-wrap > div:last-child {
        flex: 0 0 calc(33.33% - 4rem);
        margin: 0 2rem;
    }
}

.start-page-blog-items-wrap a.grid-card {
    height: 100%;
}

.insights-button {
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
}

/* ------- Quotes slider ------- */

.quote-slider-section {
    position: relative;
    background-color: #FFFFFF;
}

.quote-slider-items-wrap {
    display: flex;
    width: calc(100% + 2.5rem);
    overflow: auto;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: flex-start;
    padding-right:1.25rem;
}

@media screen and (pointer: fine) {

    .quote-slider-items-wrap {
        overflow: hidden;
    }
}

.quote-slider-items-wrap > .quote-slider-item {
    flex: 0 0 100vw;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    scroll-snap-align: start;
}

@media screen and (min-width: 450px) {

    .quote-slider-items-wrap > .quote-slider-item {
        flex-basis: 400px;
    }
}

@media screen and (min-width: 768px) {

    .quote-slider-items-wrap {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .quote-slider-items-wrap > .quote-slider-item {
        flex-basis: 500px;
        padding-right: 4rem;
        padding-left: 0;
    }
}


@media screen and (min-width: 1700px) {

    .quote-slider-items-wrap > .quote-slider-item {
        flex-basis: 520px;  
        padding-right: 6rem;
    }
}

.quote-slider-padding-right {
    display: block;
    height: 1rem;
}

.quote-slider-item-inner {
    position: relative;
    padding-left: calc(30px + 0.75rem);
}

.quote-slider-item-inner img {
    position: absolute;
    top: 0.25rem;
    left: 0;
    width: 30px;
}

@media screen and (min-width: 576px) {

    .quote-slider-item-inner {
        padding-left: calc(40px + 1rem);
    }

    .quote-slider-item-inner img {
        width: 40px;
    }
}

@media screen and (min-width: 768px) {

    .quote-slider-item-inner {
        padding-left: calc(40px + 1rem);
    }

    .quote-slider-item-inner img {
        width: 40px;
    }
}

@media screen and (min-width: 1200px) {

    .quote-slider-item-inner {
        padding-left: calc(50px + 1.25rem);
    }

    .quote-slider-item-inner img {
        width: 50px;
    }
}

p.quote-slider-text {
  font-size: clamp(1.25rem, 1.163rem + 0.385vw, 1.625rem);
  font-weight: 600;
  line-height: 1.2;
}

p.quote-slider-name {
  font-weight: 700;
  margin-bottom: 0;
}

.quote-slider-section .section-header,
.quote-slider-content-block .section-header {
    margin-bottom: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
}

.quote-slider-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

@media screen and (min-width: 576px) {

    .quote-slider-arrows {
        width: 200px;
    }
}

@media screen and (min-width: 768px) {

    .quote-slider-arrows {
        margin-bottom: 3rem;
    }
}

/*
-----------------------------------------
SUBPAGE
-----------------------------------------
*/

.margin-top {
    margin-top: var(--top-margin-sm);
}

@media screen and (min-width: 992px) {

    .margin-top {
        margin-top: var(--top-margin-lg);
    }
}

@media screen and (min-width: 1700px) {

    .margin-top {
        margin-top: var(--top-margin-xl);
    }
}

/* ------- Subpage header with image ------- */

.subpage-image-header > div {
    flex: 0 0 100%;
}

.subpage-image-header > div:first-child {
    aspect-ratio: 3 / 2;
}    

@media screen and (min-width: 768px) {

    .subpage-image-header > div {
        flex-basis: 50%;
    }    

    .subpage-image-header > div:first-child {
        order: 2;
    }
}

.subpage-image-header {
    background-color: var(--symbal-yellow);
}

@media screen and (min-width: 1800px) {

    .subpage-image-header-text {
        padding-right: 3.5rem;
    }
}

.subpage-image-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.subpage-image-header-text p.top-headline {
    font-size: clamp(1.375rem, 1.339rem + 0.152vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 0;
}

.subpage-image-header-text h1 {
    font-size: clamp(2rem, 1.779rem + 0.98vw, 2.25rem); /*360-768*/
    margin-bottom: 0.625rem;
    max-width: 25ch;
}

@media screen and (min-width: 768px) {

    .subpage-image-header-text h1 {
        font-size: clamp(2rem, 0rem + 4.167vw, 5rem); /*768-1920*/
    }
}

.header-white-text h1,
.header-white-text p,
.header-white-text {
    color: #FFFFFF;
}

.image-header-text p {
    font-size: clamp(1rem, 0.913rem + 0.385vw, 1.375rem);
    font-weight: 600;
    margin-top: 0;
    max-width: 80ch;
}

.image-header-text ul.contact-info-list li {
    text-align: left;
}

/* ------- Article section with content blocks ------- */

@media screen and (min-width: 1400px) {

    .subpage-article-width {
        padding-right: calc(50% - 600px);
        padding-left: calc(50% - 600px);
    }
}

.content-block {
    margin-top: clamp(2rem, 1.434rem + 2.415vw, 4rem);
}

.content-block:first-child {
    margin-top: 0;
}

.intro-text-content-block.text-center p.ingress {
    max-width: 60ch;
    margin-right: auto;
    margin-left: auto;
}


/* Text content block*/

.text-content-block:first-child  {
    margin-top: 1rem;
}

.text-content-block:first-child h3:first-child {
    margin-top: 1.4em;
}

.text-content-block p:has(+ a.btn),
.text-content-block ul:has(+ a.btn) {
    margin-bottom: 1.5em;
}

.text-content-block:first-child a.btn:first-child {
    margin-top: 1rem;
}

.text-content-block *:last-child {
    margin-bottom: 0;
}

/* Quote content block*/

.quote-content-block {
    display: flex;
}

.quote-content-block-icon {
    flex: 0 0 50px;
}

.quote-content-block-text {
    flex-grow: 1;
    padding-left: 1.25rem;
}

p.quote-content-block-quote {
    font-style: italic;
    font-size: clamp(1.25rem, 1.1964rem + 0.1488vw, 1.375rem);
}

p.quote-content-block-name {
    font-weight: 700;    
}

p.quote-content-block-name:has(+ p.quote-content-block-title) {
    margin-bottom: 0;
}

/* Fullwidth image content block */

.fullwidth-image-content-block img {
    width: 100%;
}

/* Image content block*/

.image-content-block img {
    width: 100%;
}

/* Youtube video content block */

.youtube-video-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* Fullwidth image with text banner content block */

.banner-header-image img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

@media screen and (min-width: 768px) {

    .banner-header-image img {
        width: 100%;
        aspect-ratio: 3 / 1;
    }
}

.banner-header-caption {
    background-color: var(--offblack);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: calc(-1*clamp(24px, 6.528px + 4.66vw, 96px));
    position: relative;
}

.banner-header-caption * {
    color: #FFFFFF;
}

.banner-header-category {
    flex: 0 0 100%;
}

.banner-header-category p {
    color: #FFFFFF;
}

.banner-header-headline {
    flex: 0 0 100%;
}

.banner-header-text {
    flex: 0 0 100%;
    color: #FFFFFF;
}

.banner-header-text p {
    font-weight: 600;
    font-size: clamp(1.25rem, 1.1964rem + 0.1488vw, 1.375rem);
}

.banner-header-text * {
    color: #FFFFFF;
}

.banner-header-text p {
    margin-bottom: 0;
}

.banner-header-button {
    flex: 0 0 100%;
}

.banner-header-button a.btn {
    border: 2px solid transparent;
    margin-top: 1.5em;
}

.banner-header-button a.btn:hover {
    border-color: var(--symbal-yellow);
}

@media screen and (min-width: 768px) {

    .banner-header-headline {
        flex-basis: calc(50% - 1rem)
    }

    .banner-header-text {
        flex-basis: calc(50% - 1rem)
    }

    .banner-header-caption h3 {
        margin-bottom: 0;
    }

    .banner-header-button {
        text-align: right;
    }
}

/* Button content block */

/* Two columns content-block */

.two-columns-wrap > div {
    flex: 0 0 100%;
}

.two-columns-wrap > div:last-child {
    margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {

    .two-columns-wrap > div {
        flex-basis: calc(50% - 2rem)

    }

    .two-columns-wrap > div:last-child {
        margin-top: 0;
    }
}

.two-columns-content-block p:has(+ a.btn),
.two-columns-content-block ul:has(+ a.btn) {
    margin-bottom: 1.5em;
}

/* Four boxes content block*/

.four-boxes-wrap {
    margin-bottom: -1.5rem;
}

.four-boxes-wrap > div.four-boxes-item {
    flex: 0 0 calc(100% - 4px - 1rem);
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.four-boxes-wrap > div.four-boxes-divider {
    flex: 0 0 4px;    
    background-color: var(--symbal-yellow);
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 576px) {

    .four-boxes-wrap > div.four-boxes-item {
        flex: 0 0 calc(50% - 4px - 1rem);
        margin-left: 1rem;
        padding-right: 1rem;
    }
}

@media screen and (min-width: 992px) {

    .four-boxes-wrap {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .four-boxes-wrap > div.four-boxes-divider:first-child {
        display: none;
    }

    .four-boxes-wrap > div.four-boxes-item {
        flex-basis: calc(25% - 4px - 1.5rem);
        margin-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media screen and (min-width: 1400px) {

    .four-boxes-wrap {
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .four-boxes-wrap > div.four-boxes-divider {
        flex-basis: 6px;    
    }

    .four-boxes-wrap > div.four-boxes-item {
        flex-basis: calc(25% - 6px - 2rem);
        margin-left: 2rem;
        padding-right: 2rem;
    }
}

/* Banner with background image (variation for article section) */

.content-block.banner-block + .content-block.banner-block {
    margin-top: 0;
}

.content-block .banner-text-text p,
.content-block .banner-text-text li {
    font-size: clamp(1rem, 0.9464rem + 0.1488vw, 1.125rem);
}

.content-block p.banner-caption-quote-text {
    font-size: clamp(1.25rem, 1.1964rem + 0.1488vw, 1.375rem);
}

.content-block.banner-block {
    padding-top: clamp(2rem, 1.434rem + 2.415vw, 4rem);
    padding-bottom: clamp(2rem, 1.434rem + 2.415vw, 4rem);
}

.content-block.banner-text-image-block {
    background-color: #F8F8F8
}

@media screen and (min-width: 768px) {

    .content-block.banner-background-block {
        padding-top: 0;
        padding-bottom: 0;
    }

    .content-block .banner-background-text {
        padding-top: clamp(2rem, 1.434rem + 2.415vw, 4rem);
        padding-bottom: clamp(2rem, 1.434rem + 2.415vw, 4rem);
    }
}

@media screen and (min-width: 768px) {
    .content-block.banner-text-image-block > div:first-child {
        order: 2 !important;
    }
    .content-block.banner-text-image-block > div:last-child {
        order: 1 !important;
    }
}

/* Numbered list with headline */

.reasons-section {
    position: relative;
}

.reason-items-wrap {
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
}

ol.reason-item {
    border-top: 1px solid var(--mid-gray);
    padding-top: clamp(1rem, 0.769rem + 1.026vw, 2rem);
    padding-bottom: clamp(1rem, 0.769rem + 1.026vw, 2rem);
    font-size: clamp(1.5rem, 1.0714rem + 1.1905vw, 2.5rem);
    padding-left: 1em;
    margin-bottom: 0;
}

ol.reason-item:last-child {
    padding-bottom: 0;
}

ol.reason-item li {
    font-size: clamp(1.25rem, 1.0893rem + 0.4464vw, 1.625rem);
}

.reason-item-text-wrap {
    justify-content: space-between;
    margin-left: 0.5rem;
}

@media screen and (min-width: 768px) {

    .reason-item-text-wrap {
        margin-left: 1rem;
    }

    .reason-item-text-wrap h4,
    .reason-item-text-wrap p {
        flex: 0 0 calc(50% - 1rem);
    }
}

.reason-item-text-wrap p {
    font-size: clamp(1rem, 0.913rem + 0.385vw, 1.375rem);
    margin-bottom: 0;
}


/* ------- Banner section ------- */

.banner-block:nth-child(odd) {
    background-color: var(--light-gray);
}

/* Banner caption */

/* Banner text caption */

.banner-block p:has(+ a.btn),
.banner-block ul:has(+ a.btn) {
    margin-bottom: 1.5em;
}

.banner-text-text p,
.banner-text-text li {
    font-size: clamp(1.25rem, 1.1964rem + 0.1488vw, 1.375rem);
}

/* Banner quote caption */

.banner-caption-quote-wrap {
    border-left: 4px solid var(--symbal-yellow);
    padding-left: clamp(1rem, 0.913rem + 0.385vw, 1.375rem);
}

p.banner-caption-quote-text {
    font-size: clamp(1.125rem, 0.923rem + 0.897vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
}

p.banner-caption-quote-name {
    font-weight: 700;
}

p.banner-caption-quote-name:has(+ p.banner-caption-quote-title) {
    margin-bottom: 0;
}

/* ------- Banner with text and image ------- */

.banner-text-image-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.banner-text-image-block > div {
    flex: 0 0 100%;
}

.banner-text-image-block > div:first-child {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {

    .banner-text-image-block > div {
        flex-basis: 50%;
    }

    .banner-text-image-block > div:first-child {
        margin-bottom: 0;
    }

    .banner-text-image-text {
        padding: 0 clamp(1.25rem, 0.615rem + 2.821vw, 4rem);
    }
}

.banner-text-image-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
}

/* Alternate text/image order */

@media screen and (min-width: 768px) {

    div.banner-text-image-block:nth-of-type(odd) > div:nth-child(1) {
        order: 2;
    }

    div.banner-text-image-block:nth-of-type(odd) > div:nth-child(2) {
        order: 1;
    }
}

/* ------- Banner with background image ------- */

.banner-background-block {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.banner-background-image-image {
    flex: 0 0 100%;
    margin-bottom: 1.5rem;
}

img.banner-background-image-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
}

img.banner-background-image-bg-image {
    display: none;
}

@media screen and (min-width: 768px) {

    .banner-background-block {
        padding: 0;
    }

    img.banner-background-image-image {
        display: none;
    }

    img.banner-background-image-bg-image {
        display: block;
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

@media screen and (min-width: 768px) {

    .banner-background-text {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        aspect-ratio: 3 / 1;
        flex: 0 0 100%;
        padding-left: 2rem;
        padding-right: 2rem;    
        padding-top:clamp(3rem, 1.846rem + 5.128vw, 8rem);
        padding-bottom: clamp(3rem, 1.846rem + 5.128vw, 8rem);
    }

    .banner-background-text .banner-caption {
        flex: 0 0 50%;
        width: 50%;
        background-color: rgba(255,255,255,0.9);
        padding: clamp(1.25rem, 0.615rem + 2.821vw, 4rem);
        border-radius: 8px;
    }
}

@media screen and (min-width: 1400px) {

    .banner-background-text {
        padding-left: 3.5rem;
        padding-right: 3.5rem;    
    }
}

@media screen and (min-width: 1800px) {

    .banner-background-text {
        padding-left: calc(50% - 864px);
        padding-right: calc(50% - 864px);    
    }
}

/* ------- Banner with contact person ------- */

.contact-banner-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-banner-block > div {
    flex: 0 0 100%;
    width: 100%;
}

.contact-banner-block > div:first-child {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 600px) {

    .contact-banner-block > div:first-child {
        flex-basis: 250px;
        margin-bottom: 0;
    }    

    .contact-banner-block > div:last-child {
        flex-basis: calc(100% - 250px);
        width: calc(100% - 250px);
    }    
}

@media screen and (min-width: 992px) {

    .contact-banner-block > div:first-child {
        flex-basis: 396px;
    }    

    .contact-banner-block > div:last-child {
        flex-basis: calc(100% - 396px);
        width: calc(100% - 396px);
    }    
}

@media screen and (min-width: 1200px) {

    .contact-banner-block {
        padding-left: calc(50% - 600px);
        padding-right: calc(50% - 600px);
    }
}

.contact-banner-text {
    text-align: center;
    position: relative;
    padding-top: 1.5rem;
}

@media screen and (min-width: 600px) {

    .contact-banner-text {
        text-align: left;
        padding: 0 0 0 clamp(1.25rem, 0.615rem + 2.821vw, 4rem);
    }
}

.contact-banner-text h2:has(+ p.ingress) {
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 600px) {

    .contact-banner-text .contact-person-info::before {
        display: none;
    }

    .contact-banner-text .contact-person-info {
        margin-top: clamp(1.5rem, 1.385rem + 0.513vw, 2rem);
        padding-top: 0;
    }
    
    .contact-banner-text .contact-person-info {
        border-left: 4px solid var(--symbal-yellow);
        padding-top: 0;
        padding-left: 1.25rem;
    }

    .contact-banner-text ul.contact-info-list li {
        text-align: left;
    }

    .contact-banner-image img.contact-person-image {
        max-width: 100%;
    }
}

/* ------- Start page ------- */

/* Start page */

.banner-background-section {
    position: relative;
    
}

.banner-background {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    aspect-ratio: 4 / 1;
}

.banner-background .banner-caption {
    background-color: rgba(255,255,255,0.9);
    border-radius: 8px;
    padding: clamp(1.25rem, 0.615rem + 2.821vw, 4rem);
}


@media screen and (min-width: 992px) {
    .banner-background .banner-caption {
        flex-basis: 70%;
    }
}

@media screen and (min-width: 1200px) {
    .banner-background .banner-caption {
        flex-basis: 50%;
    }
}

/*
---------------------------------------------
POSTS PAGES - BLOG / NEWS / CASES / SEMINARS
---------------------------------------------
*/

/* ------- Pagination------- */

ul.pagination {
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
}

a.page-link {
    border: none;
    border-radius: 0;
    color: var(--offblack);
    background-color: var(--mid-gray);
    font-size: 1.125rem;
    font-weight: 700;
    width: 2em;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.page-link:hover {
    color: var(--offblack);
    text-decoration: none;
    background-color: #DDDDDD;
}

a.page-link:focus,
a.page-link:focus-visible {
    box-shadow: none;
    color: var(--offblack);
    background-color: #DDDDDD;
}

a.page-link:focus-visible {
    outline: 3px dotted var(--offblack);
    outline-offset: 3px;
    transition: none;    
}

li.page-item:has(+ li.page-item) {
    margin-right: 0.5rem;
}

.active > a.page-link {
    background-color: var(--symbal-yellow);
    color: var(--offblack);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 0;
}

/* ------- List of posts------- */

.posts-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
    margin-bottom: -1rem;
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
}

header + .posts-wrap {
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
}

.posts-wrap > .grid-card {
    flex: 0 0 calc(100% - 1rem);
    margin: 0 0.5rem 1rem;
}

@media screen and (min-width: 600px) {

    .posts-wrap > .grid-card {
        flex: 0 0 calc(50% - 1rem);
        margin: 0 0.5rem 1rem;
    }
}

@media screen and (min-width: 900px) {

    .posts-wrap > .grid-card {
        flex: 0 0 calc(33.33% - 1rem);
        margin: 0 0.5rem 1rem;
    }
}

@media screen and (min-width: 1200px) {

    .posts-wrap {
        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: -2rem;
    }

    .posts-wrap > .grid-card {
        flex: 0 0 calc(33.33% - 2rem);
        margin: 0 1rem 2rem;
    }
}

@media screen and (min-width: 1700px) {

    .posts-wrap {
        margin-left: -2rem;
        margin-right: -2rem;
        margin-bottom: -4rem;
    }

    .posts-wrap > .grid-card {
        flex: 0 0 calc(33.33% - 4rem);
        margin: 0 2rem 4rem;
    }
}

/* Filter */

header + ul.post-tags-wrap {
    margin-top: 2rem;
}

ul.post-tags-wrap {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    flex-wrap: wrap;
}

ul.post-tags-wrap a {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.125rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.125em;
    transition: color ease 0.15s;
    white-space: nowrap;
    margin: 0.25rem 0.75rem;
}

@media screen and (min-width: 768px) {

    header + ul.post-tags-wrap {
        margin-top: 3rem;
    }

    ul.post-tags-wrap a {
        border-bottom: 4px solid transparent;
        padding-bottom: 0.25em;
    }

}

ul.post-tags-wrap a.active {
    text-decoration: none;
    border-color: var(--symbal-yellow);
}

ul.post-tags-wrap a:not(.active):hover {
    text-decoration: none;
    color: var(--dark-gray);
}


ul.post-tags-wrap + .posts-wrap {
    margin-top: 2rem;
}

/*
-----------------------------------------
SEMINARS PAGE
-----------------------------------------
*/

.seminar-card .grid-card-caption {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

p.seminar-description-text {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    text-overflow: unset;
}

.seminar-caption-button a.btn {
    margin-top: 1.25em;
}

/*
-----------------------------------------
CONTACT PAGE
-----------------------------------------
*/

.subpage-header .contact-person-info {
    border-left: 4px solid var(--dark-gray);
    padding-top: 0;
    padding-left: 1.25rem;
    margin-top: 1.5rem;
}

.subpage-header .contact-person-info::before {
    display: none;
}

.subpage-header .contact-person-info h3 {
    margin-top: 0;
}

/* List of contact persons */

.contact-page-contact-persons-wrap {
    width: calc(100% + 1rem);
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
    margin-top: clamp(1.5rem, 0.923rem + 2.564vw, 4rem);
    margin-bottom: -1rem;
}

.contact-page-contact-persons-wrap > .contact-person-card {
    flex: 0 0 calc(100% - 1rem);
    width: calc(100% - 1rem);
    margin: 0 0.5rem 1.5rem;
}

@media screen and (min-width: 600px) {

    .contact-page-contact-persons-wrap > .contact-person-card {
        flex-basis: calc(50% - 1rem);
        width: calc(50% - 1rem);
    }
}

@media screen and (min-width: 900px) {

    .contact-page-contact-persons-wrap > .contact-person-card {
        flex-basis: calc(33.33% - 1rem);
        width: calc(33.33% - 1rem);
    }
}

@media screen and (min-width: 1200px) {

    .contact-page-contact-persons-wrap {
        width: calc(100% + 2rem);
        margin-right: -1rem;
        margin-left: -1rem;
        margin-bottom: -2rem;
    }

    .contact-page-contact-persons-wrap > .contact-person-card {
        flex-basis: calc(33.33% - 2rem);
        width: calc(33.33% - 2rem);
        margin: 0 1rem 2rem;
    }
}

@media screen and (min-width: 1700px) {

    .contact-page-contact-persons-wrap {
        width: calc(100% + 4rem);
        margin-right: -2rem;
        margin-left: -2rem;
        margin-bottom: -4rem;
    }
    .contact-page-contact-persons-wrap > .contact-person-card {
        flex-basis: calc(33.33% - 4rem);
        width: calc(33.33% - 4rem);
        margin: 0 2rem 4rem;
    }
}

.contact-person-card {
    background-color: var(--light-gray);
    border-radius: 8px;
}

/* Contact person info */

img.contact-person-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

/* Style on contact page */

.contact-person-card {
    text-align: center;
    padding: 2rem;
}

@media screen and (min-width: 1400px) {

    .contact-person-card {
        text-align: center;
        padding: 2rem;
    }
}

@media screen and (min-width: 1700px) {

    .contact-person-card {
        text-align: center;
        padding: 3rem;
    }
}

/* Global style for contact persons */

.contact-person-info {
    position: relative;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.contact-person-info p,
.contact-person-info li {
    font-weight: 600;
    font-size: clamp(1.25rem, 1.1964rem + 0.1488vw, 1.375rem);
}


ul.contact-info-list {
    width: 100%;
}

ul.contact-info-list svg {
    width: 1em;
    margin-right: 0.125em;
}

ul.contact-info-list li {
    max-width: 100%;
    text-wrap: nowrap;
    text-align: center;
    overflow-x: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

ul.contact-info-list li a {
    text-wrap: nowrap;
    width: 100%;
}

ul.contact-info-list li + li {
    margin-top: 0.25em;
}

.contact-person-info::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 62px);
    height: 4px;
    width: 124px;
    border-top: 4px solid var(--symbal-yellow);
}

.contact-person-info h3 {
    margin-bottom: 1rem;
}

.contact-person-info h3:has(+ p) {
    margin-bottom: 0;
}

ul.contact-info-list:last-child {
    margin-bottom: 0;
}

/*
-----------------------------------------------
CAROUSEL PAGE
-----------------------------------------------
*/

/* ------ Carousel ------ */

.carousel-page-intro p.ingress {
    max-width: 60ch;
    margin-right: auto;
    margin-left: auto;
}

.subpage-slider-section {
    background-color: #F8F8F8;
}

.subpage-slider-text {
    margin-bottom: clamp(2rem, 0.383rem + 3.404vw, 4rem);
}


@media screen and (min-width: 992px) {

    .subpage-slider-text {
        flex-basis: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .subpage-slider-text > .section-header {
        flex: 0 0 calc(50% - 1.5rem);
        margin-bottom: 0 !important;
        text-align: left;
    }

    .subpage-slider-text > .slider-indicators {
        flex: 0 0 calc(50% - 1.5rem);
        margin: 0;
    }
}

@media screen and (min-width: 1200px) {

    .subpage-slider-items-wrap {
        flex-basis: 100%;
        padding: 0.5rem 0;
    }

    .subpage-slider-items-wrap .slider-item {
        padding-left: 0.25rem;
        padding-right: 1.75rem;
    }

    .subpage-slider-text {
        flex-basis: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-right: 0;
    }

    .subpage-slider-text > .section-header {
        flex: 0 0 50%;
    }

    .subpage-slider-text > .slider-indicators {
        flex: 0 0 480px;
        margin: 0;
    }
}

.subpage-slider-item .slider-item-inner {
    aspect-ratio: unset;
    height: fit-content;
}

.subpage-slider-item .slider-item-inner img {
    width: 100%;
    aspect-ratio: 3 / 2;
    position: relative;
}

.subpage-slider-item .slider-item-caption {
    background-color: #FFFFFF;
    position: relative;
}

.subpage-slider-item .slider-item-caption h3 {
    color: var(--offblack);
    padding-bottom: 0.5rem;
}

.subpage-slider-item .slider-item-caption p {
    color: var(--offblack);
    padding: 0 clamp(1rem, 0.885rem + 0.513vw, 1.5rem) clamp(1rem, 0.885rem + 0.513vw, 1.5rem);
    font-size: clamp(1.25rem, 1.1964rem + 0.1488vw, 1.375rem);
    font-weight: 600;
}

/* ------ Carousel page subpage blocks ------ */

.carousel-page-content-blocks:has(.banner-block:first-child),
.carousel-page-content-blocks:has(.fullwidth-image-content-block:first-child),
.carousel-page-content-blocks:has(.banner-header-content-block:first-child) {
    padding-top: 0;
}

.carousel-page-content-blocks .banner-block:first-child,
.carousel-page-content-blocks .fullwidth-image-content-block:first-child,
.carousel-page-content-blocks .banner-header-content-block:first-child {
    margin-top: 0;
}

/*
-----------------------------------------------
404 PAGE
-----------------------------------------------
*/

.four-o-four-page p {
  font-size: clamp(1.5rem, 1.366rem + 0.597vw, 2rem);
  max-width: 40ch;
  margin: 0 auto 1em;
}