:root {
    --base-gutter: 1.618rem;
    --base-lineheight: 1.618;
    --header-lineheight: 1.2;
    --base-margin-large: 1.618em;
    --base-margin-small: 1.4em;
    --base-margin: 2rem;

    --base-primary-font-family: 'DM Sans', sans-serif;
    --base-secondary-font-family: 'Lexend Deca', sans-serif;

    --pink-peaks: #f063a7;
    --white: #FFF;
    --yellow-peaks: #f2e058;
    --light-grey: #F8FAFB;
    --blue-marine: #19284A;
    --blue-med: #4FC0EF;
    --mid-grey: #e7eaed;
    --black: black;
    --body-colour: #212519;
    --light-blue: #dce5fa;
    --light-pink: #fbe3ef;
    --medium-grey: #dadce1;
    --dark-grey: #414b62;
    --dark-pink-peaks: #c7538b;
    --red-peach: #d33d1f;

    --hero-height: 80vh;
    --mini-hero-height: 40vh;
    --max-text-width: 40em;

    --hd: 1700px;
    --xxl: 1400px;
    --xl: 1200px;
    --lg: 991px;
    --md: 768px;
    --sm: 576px;

    --gap-cards: 2rem;
    --border-cards: 0.4em;
    --shadow-cards: 0 4px 12px rgba(0, 0, 0, 0.08)
}

@view-transition {
  navigation: auto;
}

:target {
  scroll-margin-block: 80px;
}

/* Reset */
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    list-style-type: none;
    padding: 0;
    border: 0;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

body {
    font-family: var(--base-primary-font-family);
    font-size: 1em;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: var(--white);
    color: var(--body-colour);
    margin: 0;
}

a {
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
    text-decoration-color: oklch(from currentColor l c h / 50%);
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

p {
    line-height: var(--base-lineheight);
    margin: 0 0 var(--base-margin-small) 0;
}

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--base-primary-font-family);
    margin: 0 0 calc(var(--base-margin-small)/2) 0;
    text-wrap: pretty;
    line-height: 1.2;
}

hgroup p {
  text-wrap: pretty;
  line-height: 1.2; 
}

.title-l {
    font-size: clamp(2.75rem, 3vw + 1rem, 3.438rem);
    font-weight: 700;
    line-height: 1.1;
    text-wrap: pretty;

    @media (min-width > 1200px) {
        font-size: clamp(2.125rem, 2vw + 1rem, 2.75rem);
    }
}

.title-xl {
    font-size: clamp(3.125rem, 4vw + 1.75rem, 5.313rem);
    line-height: 1.1;
    text-wrap: pretty;

    @media (min-width > 1200px) {
        font-size: clamp(2.5rem, 4vw + 1rem, 4.375rem);
    }
}

.title-m {
    font-size: clamp(2.25rem, 3vw + 1rem, 3.125rem);
    font-weight: 700;
    line-height: 1.1;
    text-wrap: pretty;

    @media (min-width > 1200px) {
        font-size: clamp(1.875rem, 2vw + 1rem, 2.5rem);
    }
}

.title-s {
    font-size: clamp(1.875rem, 2vw + 1rem, 2.813rem);
    line-height: 1.2;
    font-weight: 600;
    text-wrap: pretty;
    
    @media (min-width < 1200px) {
        font-size: clamp(1.25rem, 2vw + 0.5rem, 2.188rem);
    }
}

.title-xs {
    font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--light-gray);
    margin: 0 0 calc(var(--base-margin-small) / 2) 0;
    text-wrap: pretty;
}

.title-xxs {
    font-size: clamp(1.25rem, 1.125rem + 0.2vw, 1.4rem);
    font-weight: 500;
    line-height: 1.2;
    text-wrap: pretty;

    @media (min-width < 1200px) {
        font-size: clamp(1rem, 1rem + 0.25vw, 1.2rem);
    }
}

.title--pink,
.title--pink a {
    transition: color 0.5s ease;
    color: var(--pink-peaks);
}

.title--pink a:hover {
    color: var(--dark-pink-peaks);
}

.title--blue,
.title--blue a {
    color: var(--blue-marine);
}

.title--white,
.title--white a {
    color: var(--white);
}

.title--yellow,
.title--yellow a {
    color: var(--yellow-peaks);
}

.title--grey,
.title--grey a {
    color: var(--light-grey);
}

/* Fluid container */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--base-gutter);
    max-width: 1600px;
}

.container--fullbleed {
    padding-left: 0;
    padding-right: 0;
}

.container-inner {
    max-width: calc((var(--max-text-width) + var(--base-gutter)) * 2);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--base-gutter);
    padding-right: var(--base-gutter);
}

.section-padding {
    padding-top: calc(var(--base-margin-large) * 2);
    padding-bottom: calc(var(--base-margin-large) * 2);
}

/* Helper classes */
.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-weight--900 {
    font-weight: 900;
}

.font-weight--700 {
    font-weight: 700;
}

/* Cards */
.card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  color: var(--blue-marine);
  border-radius: 0.8em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  gap: 1rem;
}

.card a:focus {
    text-decoration: underline;
}

.card:focus-within {
    box-shadow: 0 0 0 0.25rem var(--pink-peaks);
}

.card:focus-within a:focus {
    text-decoration: none;
}

.card__title {
  color: var(--pink-peaks);
  margin: 0;
}

.card__author {
    flex: 1;
    margin: 0;
    font-weight: 600;
}

.card__media {
  aspect-ratio: 1 / 1;
  margin: 0;
  transition: transform .5s ease;
  overflow: hidden;
  border-radius: var(--border-cards);
}

.card__media--16x9 {
  aspect-ratio: 16 / 9;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card__media--animated img {
    transition: transform .5s ease;
}

.card__media--animated:hover img {
    transform: scale(1.2);
}

.text__pill_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--base-margin-small) / 2);
}

.text__pill {
    font-weight: 600;
    padding: 0.4em 0.8em;
    border-radius: 1em;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin: 0;
}

.text__pill--hash::before {
    content: "#";
}

.text__pill--blue {
    background-color: var(--light-blue);
    color: var(--blue-marine);
}

.text__pill--pink {
    background-color: var(--light-pink);
    color: var(--pink-peaks);
}

/*Button*/
.button {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1;
    user-select: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease-out;
    padding: 0.75rem 1.5rem;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.button:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 0;
}

.button--yellow {
    background-color: var(--yellow-peaks);
    color: var(--black);
}

.button--rose {
    background-color: var(--pink-peaks);
    color: var(--white);
    text-shadow: 0 0 1px black;
}

.button--white {
    background-color: var(--white);
    color: var(--pink-peaks);
}

.button--fullwidth {
    width: 100%;
}

.button img {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease-in-out;
    vertical-align: middle;
}

.button--animated:hover,
.button--animated:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.button--animated:hover img,
.button--animated:focus img {
    transform: translateX(5px);
}

.button--animated:active {
    transform: translateY(1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.button--rhs {
    margin-left: auto;
    margin-right: 0;
}

#skip-link {
    position: absolute;
    top: 0;
    background: var(--black);
    color: var(--white);
    padding: 0.8em 0;
    transform: translateY(-100%);
    z-index: 10000;
    width: 100%;
}
#skip-link ul {
    margin: 0;
}

#skip-link:focus-within {
    transform: translateY(0);
    position: fixed;
}

#skip-link li {
    display: inline-block;
    margin-right: 2rem;
}

#skip-link a:link,
#skip-link a:visited
 {
  color: var(--light-grey);
}

#skip-link a:hover,
#skip-link a:focus {
  text-decoration: underline;
}

/* Footer classes */
.footer {
    background-color: var(--blue-marine);
    padding-top: var(--base-margin);
    border-top: 1px solid var(--white);
    color: var(--light-grey);
}

.footer ul {
    margin: 0;
}

.footer ul li:not(:last-child) {
    margin-bottom: 0.8rem;
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
    gap: var(--base-gutter);

    @media screen and (width >=991px) {
        grid-template-columns: repeat(3, 1fr);
    }

    @media screen and (min-width: 768px) and (max-width: 990px) {
        grid-template-columns: repeat(2, 1fr);

        .footer__column:nth-child(1) {
            grid-column: 1 / -1;
        }
    }
}

.footer__first-column {
    @media screen and (min-width: 768px) and (max-width: 990px) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--base-gutter);
    }
}

.footer__column {
    color: var(--light-grey);
    font-size: 0.8rem;
    padding-bottom: var(--base-margin);
}

.footer__column p {
    color: var(--white);
}

.footer__addressList li {
    margin-bottom: var(--base-margin-small);
}

.footer__addressList strong,
.footer__addressList a {
    display: block !important
}

.footer__peaks-logo {
    width: 200px;
    height: 118px;
    max-width: 200px;
    margin-bottom: var(--base-margin);
}

.footer__social-link-img {
    margin-right: 0.8rem;
    border-radius: 0;
    width: 2em;
    height: 2em;
    vertical-align: middle;
}

.footer__column h3 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: calc(var(--base-margin) / 2);
}

.footer__banner {
    font-size: 0.8rem;
    background-color: var(--dark-grey);
}

.footer__banner-legal-mentions {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0;
    padding: 1em 0;
    color: var(--light-grey);
}

.footer__banner-legal-mentions li {
    margin: 0 !important
}

.footer a,
.footer button {
    color: var(--light-grey);
    transition: color ease-in 200ms;
    cursor: pointer;
    display: inline-block;
    border: 0;
    background: transparent;
    font-size: inherit;
}

.footer a:focus,
.footer a:hover,
.footer button:focus,
.footer button:hover {
    color: var(--pink-peaks);
}

/* Main navigation */
main {
    padding-top: 8.2rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-grey);
    z-index: 1000;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

.navbar__topbanner {
    background-color: var(--blue-marine);
    text-align: right;
    padding: 0.8em 0;
}

.navbar__top-container {
    width: 100%;
    margin: 0 auto;
}

.navbar__topbanner li {
    display: inline;
    margin-left: 2em;
}

.navbar__topbanner a {
    color: var(--light-grey);
    transition: color 0.5s ease;
    position: relative;
}

.navbar__topbanner a:hover {
    color: var(--white);
    text-decoration: none;
}

.navbar__topbanner a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    transition: transform 0.2s ease-out;
}

.navbar__topbanner a:hover::after,
.navbar__topbanner a:focus::after {
    transform: scaleX(1);
}

.navbar__nav {
    padding: 1em 0;
    background-color: var(--light-grey);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.navbar__logo img {
    height: auto;
    width: 87px;
    vertical-align: middle;
}

.navbar__button {
    order: 2;
    font-size: 1rem;
}

.navbar__button a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--pink-peaks);
}

.navbar__menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.navbar__menu-list>div>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 120em;
    gap: var(--base-gutter);
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar__menu-list li {
    display: block;
}

.navbar__menu-list li.hide-desktop {
    display: none;
}

.navbar__menu-list a {
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--blue-marine);
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
    text-align: center;
    font-weight: 900;
}

.navbar__menu-list a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0.2rem;
    left: 0;
    background-color: var(--pink-peaks);
    transition: transform 0.2s ease-out;
}

.navbar__menu-list a:hover,
.navbar__menu-list a:focus,
.current_page_item a {
    color: var(--pink-peaks);
}

.navbar__topbanner .current_page_item a {
    color: var(--white);
}

.navbar__menu-list a:hover::after,
.navbar__menu-list a:focus::after,
.current_page_item a::after {
    transform: scaleX(1);
}

.navbar__checkbox {
    display: none;;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.navbar__hamburger {
    display: none;
    cursor: pointer;
    width: 35px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
}

.navbar__hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--white);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1024px) {

    .navbar {
        display: block;
    }

    .navbar__checkbox {
        display: block;
    }

    .navbar__top-container {
        display: flex;
        justify-content: space-between;
    }

    .navbar__topbanner li {
        margin: 0;
        flex: 1;
        text-align: left;
    }

    .navbar__topbanner li:nth-child(2) {
        text-align: center;
    }

    .navbar__topbanner li:nth-child(3) {
        text-align: right;
    }

    .navbar__container > * {
        flex: 1;
        min-width: 0;
    }

    .navbar__button {
        text-align: right;
    }

    .navbar__menu-list>div>ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: calc(var(--base-margin) / 2);
        font-size: 1.2rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navbar__menu-list li {
        display: block;
        width: 100%;
        text-align: center;
        flex: none;
    }

    .navbar__menu-list a {
        display: inline-block;
        text-decoration: none;
        color: var(--blue-marine);
        font-weight: bold;
        font-size: 1.5rem;
    }

    .navbar__menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        position: fixed;
        top: 115px;
        left: 100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--light-grey);
        transition: left 0.2s ease-in-out;
        z-index: 999;
        margin: 0;
        padding-top: var(--base-margin)
    }

    #menu-toggle:focus + .navbar__hamburger {
        outline: 2px solid var(--black);
        outline-offset: 0;
    }

    .navbar__hamburger {
        display: flex;
        align-items: center;
        justify-content: space-around;
        z-index: 1000;
        cursor: pointer;
    }

    .navbar__logo img {
        width: 70px;
    }

    .navbar__hamburger span {
        height: 4px;
        width: 36px;
        background: var(--pink-peaks);
        border-radius: 0.2em;
        transition: all 0.3s ease-in-out;
    }

    .navbar:has(#menu-toggle:checked) .navbar__menu,
    .navbar__nav:has(li > a:focus) .navbar__menu {
        left: 0;
    }

    .navbar:has(#menu-toggle:checked) .navbar__hamburger span:nth-child(1),
    .navbar__nav:has(li > a:focus) .navbar__hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 8px);
    }

    .navbar:has(#menu-toggle:checked) .navbar__hamburger span:nth-child(2),
    .navbar__nav:has(li > a:focus) .navbar__hamburger span:nth-child(2) {
        opacity: 0;
    }

    .navbar:has(#menu-toggle:checked) .navbar__hamburger span:nth-child(3),
    .navbar__nav:has(li > a:focus) .navbar__hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -8px);
    }
}

/* Remove sticky navbar on page zoom or mobile landscape */
@media (max-width: 1024px) and (orientation: landscape) {
    main {
        padding-top: 0;
    }

    .navbar{
        position: relative;
    }

    .navbar__menu {
        position: absolute;
        height: auto;
        width: 100%;
        display: none;
        left: 0;
        padding-bottom: var(--base-margin);
        box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
    }

    .navbar:has(#menu-toggle:checked) .navbar__menu,
    .navbar__nav:has(li > a:focus) .navbar__menu {
        display: block;
    }
}

.game {
    background-image: url("../img/entrez.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--pink-peaks);
    color: var(--blue-marine);
}

.game__content {
    display: flex;
    flex-direction: column;
    gap: calc(10*var(--base-gutter));
    color: var(--blue-marine);
}

.game__title {
    align-self: flex-end;
    font-weight: 900;
}

.game__text {
    margin: 0;
    font-weight: 900;
    text-align: right;
}

.game__text span {
    display: block;
}

.game__cta {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}

.game__cta-title {
    font-weight: 900;
    color: var(--blue-marine);
    margin-bottom: var(--base-margin-small);
}

.game__cta-btn {
    align-self: flex-start;

}

@media (max-width: 800px) {
    .game {
        background-image: none;
        background-color: var(--blue-marine);
        color: var(--white);
    }

    .game::before {
        content: "";
        display: block;
        background-image: url("../img/entrez.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: var(--hero-height);
    }

    .game__content {
        gap: var(--base-gutter);
        padding: var(--base-gutter);
        color: var(--white);
    }

    .game__title,
    .game__text,
    .game__cta-title {
        text-align: left;
        align-self: flex-start;
        color: var(--white);
    }

    .game__text {
        font-weight: 400;
    }

    .game__text span {
        display: inline;
    }

    .game__cta {
        align-self: flex-start;
    }

}

.partenaires {
    background-color: var(--blue-marine);
}

.clients {
    background-color: var(--medium-grey);
}

.logo_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.logo_grid li {
    width: 150px;
}

.logo_grid img {
    width: 100%;
    height: auto;
    display: block;
}

.partenaires img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(163deg) brightness(103%) contrast(101%);
}

/* 404 page */

section.error404 {
    display:flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    flex-direction: column;
}

.error404 h1 {
    color: var(--pink-peaks);
    font-size: 80px;
    margin: 0 0 calc(var(--base-margin-small)/2) 0;
}

.error404 h2 {
    font-size: 40px;
    color: var(--blue-marine);
    margin: 0 0 calc(var(--base-margin-small)/2) 0;
}

.error404 p {
    margin: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding-top: var(--base-gutter);
    margin: 0;
    background: transparent;
}

.pagination .page-link {
    display:block;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 50% !important;
    text-decoration: none;
    cursor: pointer;
    padding: 0.3rem;
    text-align: center;
    min-width: 2rem;
    aspect-ratio: 1/1;
    line-height: 1.2rem;
}

.pagination a.page-link {
    transition: all 0.3s ease;
}

.pagination .active .page-link {
    background: var(--blue-marine);
    border: 2px solid var(--light-grey);
    cursor: default;
    opacity: 0.8;
}

.pagination .arrow-link {
  font-size: 1.4em;
}

.pagination a:hover {
    background-color: var(--black);
    color: var(--white);
}

.pagination .page-link img {
    vertical-align: middle;
    height: 36px;
    width: 36px;
}

.realisation {
    background-color: var(--blue-marine);
}

.realisation__text {
    color: var(--white);
    margin: 0 auto var(--base-margin-small);
}

.realisation__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--base-gutter);
}

.expertises__content {
    display: grid;
    counter-reset: service-counter;
    grid-template-columns: 1fr;
    gap: var(--gap-cards);
}

.expertises__card {
    counter-increment: service-counter;
    position: relative;  
}

.expertises__card::before {
    content: '';
    width: 3rem;
    height: 3rem;
    background-image: url("../img/plecaBlack.svg");
    background-size: 3rem 3rem;
    background-repeat: no-repeat;
}

.expertises__card--2::before {
    background-image: url("../img/plecaPink.svg");
}

.expertises__card--3::before {
    background-image: url("../img/plecaBluesky.svg");
}

.expertises__card--4::before {
    background-image: url("../img/plecaYellow.svg");
}

.expertises__card::after {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-weight: 900;
    color: var(--pink-peaks);
    font-size: 3rem;
    line-height: 1;
}

.expertises__card--title {
    margin-bottom: 0;
}

.expertises__card--text {
    color: var(--bleu-fonce);
    margin: 0;
    flex: 1;
}

.expertises__button {
    margin-top: var(--base-gutter);
    margin-right: 0;
}

@media (width > 821px) {
    .expertises__content {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .expertises__card::after {
        top: 2rem;
        right: 2rem;
        font-size: 2em;
    }
}

.testimonials-slider {
  background: var(--pink-peaks);
}

.testimonials-slider blockquote p {
  text-shadow: 0 1px 1px rgba(255,255,255,.3);
}

.testimonials__item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  
}

.testimonials-slider .splide__slide {
  background-image: url("../img/dots.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.testimonials__quote-author {
  font-style: oblique;
}

.handicap {
  background-color: var(--white);
  color: var(--blue-marine);
}

.handicap__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  gap: 0.5rem;
}

.handicap__title::before {
  content: "";
  display: inline-block;
  background-image: url("../img/accessibility.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(1.25rem, 2vw + 0.75rem, 1.875rem);
  height: clamp(1.25rem, 2vw + 0.75rem, 1.875rem);
}

.handicap__content {
  margin-top: 2rem;
  column-count: 2;
  column-gap: 40px;

    @media (max-width: 1000px) {
        column-count: 1;
    }   
}

.handicap__button {
  width: 100%;
  margin-top: var(--base-gutter);
}

.sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
    gap: var(--base-gutter);
}

.sitemap li {
    list-style-type: disc;
    padding: 0;
    margin: 0 0 0.2em 1.4em;
}

.sitemap a {
    text-decoration: none;
    color: var(--black);
}

.sitemap a:hover,
.sitemap a:visited {
    color: var(--blue-marine);
    text-decoration: underline;
}