@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(32px) !important;
    }
    to {
        opacity: 1s;
        transform: translateY(0) !important;
    }
}

:root {
    --max-width: 1200px;
    --page-padding: 24px;
    --white: #F9F9F9;
    --grey-text: #B8B8B8;
    --light-grey: #EBEDEF;
    --grey: #DDDDDD;
    --dark-grey: #272727;
    --black: #0A0A0A;
}

html {
    padding: 0;
    margin: 0 !important;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    background-color: var(--white);
}

* {
    margin: 0;
    padding: 0;
    font-family: Playfair Display !important;
    font-weight: 400;
    text-decoration: none;
    color: var(--black);
}

.hidden {
    transition: transform .4s, opacity .4s;
    opacity: 0;
    transform: translateY(10%);
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 48px;
    box-sizing: border-box;
    z-index: 600;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

header.static {
    position: static;
    background-color: var(--white);
}

.header-informations-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 100%;
}

.header-title-container {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.header-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    width: fit-content;
}

header.static .header-title {
    color: var(--black);
}

.header-small-title {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
}

header.static .header-small-title {
    color: var(--black);
}

.header-networks-container {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.header-network-icon {
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    border: solid 1px;
    border-color: var(--white);
    padding: 4px;
}

header.static .header-network-icon {
    border-color: var(--black);
}

.header-network-icon svg {
    width: 100%;
    height: 100%;
}

.header-nav-button {
    cursor: pointer;
}

.nav-button-checkbox {
    display: none;
}

nav {
    transition: .8s;
    transform: translateX(-100%);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
}

.nav-sidebar {
    width: 200px;
    height: 100%;
    flex-shrink: 0;
}

.nav-sidebar-picture {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.nav-content {
    flex-grow: 1;
    height: 100%;
    background-color: var(--white);
    box-sizing: border-box;
    padding: 128px 96px 96px 96px;
    display: flex;
}

.nav-main-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}

.nav-fieldset {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: none;
}

.nav-sublist-container {
    position: relative;
}

.nav-sublist {
    flex-direction: column;
    flex-grow: 1;
    display: none;
    gap: 16px;
    padding-left: 48px;
    box-sizing: border-box;
    animation-name: appear;
    animation-duration: .2s;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(100%, calc(100% - 30px)) !important;
}

.nav-sublist:hover {
    display: flex;
}

#thematiques-hover:hover #thematiques-sublist {
    display: flex;
}

#expertises-hover:hover #expertises-sublist {
    display: flex;
}

.nav-button {
    text-transform: uppercase;
    font-size: 32px;
    cursor: pointer;
    color: var(--grey-text);
    transition: color .2s ease-in 0s;
    width: 100%;
    transform: translateY(32px);
    opacity: 0 !important;
    display: block;
}

.nav-sublist-container:nth-child(1) .nav-button {
    transition: color .2s ease-in 0s, transform .2s ease-in .6s, opacity .2s ease-in .6s;
}

.nav-sublist-container:nth-child(2) .nav-button {
    transition: color .2s ease-in 0s, transform .2s ease-in .7s, opacity .2s ease-in .7s;
}

.nav-button:nth-child(3) {
    transition: color .2s ease-in 0s, transform .2s ease-in .8s, opacity .2s ease-in .8s;
}

.nav-button:nth-child(4) {
    transition: color .2s ease-in 0s, transform .2s ease-in .9s, opacity .2s ease-in .9s;
}

.nav-button:nth-child(5) {
    transition: color .2s ease-in 0s, transform .2s ease-in 1s, opacity .2s ease-in 1s;
}

.nav-button:nth-child(6) {
    transition: color .2s ease-in 0s, transform .2s ease-in 1.1s, opacity .2s ease-in 1.1s;
}

#nav-checkbox:checked ~ nav .nav-button {
    opacity: 1 !important;
    transform: none;
}

.nav-button:hover {
    color: var(--black);
}

.nav-sublist-link {
    text-transform: uppercase;
    font-size: 20px;
    cursor: pointer;
    transition: .2s;
    width: fit-content;
    line-height: 24px;
}

.nav-sublist-link:hover {
    text-decoration: underline;
}

.header-close-nav-button {
    position: absolute;
    top: 48px;
    right: 48px;
    cursor: pointer;
    width: 32px;
    height: 16px;
}

.header-close-nav-button svg {
    width: 100%;
    height: 100%;
}

#nav-checkbox:checked ~ nav {
    transform: translateX(0);
}

.base-container {
    width: 100%;
    box-sizing: border-box;
    padding: 72px var(--page-padding);
}

.base-content {
    width: 100%;
    margin: 0 auto;
    max-width: var(--max-width);
}

.huge-title-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
}

.huge-title-word {
    font-size: 36px;
    text-transform: uppercase;
}

.huge-title {
    font-size: 96px;
    font-weight: 400;
    color: var(--black);
    text-transform: uppercase;
}

.article-subtitle {
    font-size: 24px;
    text-transform: uppercase;
    color: white;
    font-weight: 200;
}

.article-hero-container {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

.article-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 96px;
    padding-bottom: 96px;
    position: relative;
    z-index: 100;
    justify-content: center;
    box-sizing: border-box;
}

.article-hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.6);
    z-index: 0;
}

.subject-card {
    position: relative;
    box-sizing: border-box;
    padding: 64px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.subject-card-square {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--dark-grey);
}

.subject-card-content {
    width: 100%;
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subject-card-picture {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    transition: .5s;
}

.subject-card-title {
    font-size: 20px;
    font-weight: 600;
}

.subject-card-cta-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.subject-card-cta-text {
    font-size: 14px;
    color: var(--black);
}

.subject-card-cta-container svg {
    transition: .5s;
}

.subject-card:hover .subject-card-picture {
    transform: translateY(-20px) scale(1.02) !important;
}

.subject-card:hover svg {
    transform: translateX(8px) !important;
}

.subject-card:hover .subject-card-cta-text {
    text-decoration: underline;
}

.separator {
    width: 100%;
    height: 200px;
}

.separator-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero-container {
    width: 100%;
    position: relative;
    height: 100vh;
    display: flex;
    box-sizing: border-box;
    overflow: hidden;
}

.home-hero-sidebar {
    max-width: 440px;
    width: 100%;
    background-color: var(--dark-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 56px;
    box-sizing: border-box;
    padding: 48px;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 500;
}

.home-hero-content-part {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 100%;
}

.home-hero-text {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
}

.hero-contact-button {
    box-sizing: border-box;
    border: solid #B8B8B8 1px;
    padding: 8px 16px;
    font-size: 16px;
    color: var(--white);
    width: fit-content;
}

.hero-contact-button:not(:first-of-type) {
    margin-top: 8px;
}

.home-hero-picture-container {
    height: 100%;
    flex-grow: 1;
    position: relative;
    z-index: 200;
}

.carousel-audio {
    display: none;
}

.home-hero-picture {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.home-hero-picture#carousel-left {
    left: -100%;
}

.home-hero-picture#carousel-right {
    left: 100%;
}

.home-hero-picture#carousel-middle.slide-left {
    left: -100%;
    transition: 1s;
}

.home-hero-picture#carousel-right.slide-left {
    left: 0;
    transition: 1s;
}

.home-subjects-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.home-subjects {
    background: linear-gradient(100deg, var(--light-grey), var(--white));
}

.home-expertises-selector  {
    display: flex;
    gap: 12px;
}

.home-expertises-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.home-expertises-item {
    width: 100%;
    display: flex;
    gap: 64px;
    box-sizing: border-box;
    padding: 32px;
    border: solid var(--grey) 1px;
    align-items: center;
}

.home-expertises-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.home-expertises-pictures-container {
    width: 40%;
    position: relative;
}

.home-expertises-big-picture {
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.home-expertises-small-picture {
    width: 40%;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: 20%;
    right: 0;
    object-fit: cover;
    object-position: center;
}

.home-expertises-text-container {
    width: 60%;
    box-sizing: border-box;
}

.home-expertises-item-title {
    font-weight: 600;
    font-size: 28px;
}

.home-expertises-item-text {
    font-size: 16px;
    width: 100%;
    margin-top: 32px;
}

.home-expertises-item-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    gap: 8px;
    margin-top: 48px;
}

.home-expertises-item-link svg {
    transition: .5s;
}

.home-expertises-item-link:hover svg {
    transform: translateX(8px) !important;
}

.home-expertises-item-link:hover span {
    text-decoration: underline;
}

.office-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.office-item {
    position: relative;
    width: 100%;
}

.office-picture {
    width: 55%;
    aspect-ratio: 10 / 11;
    object-fit: cover;
    object-position: center;
}

.office-text-container {
    position: absolute;
    bottom: 5%;
    right: 0;
    box-sizing: border-box;
    padding: 128px;
    background-color: var(--dark-grey);
    width: 55%;
}

.office-title {
    font-size: 28px;
    color: var(--white);
    font-weight: 600;
    display: block;
}

.office-subtitle {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    margin-top: 24px;
    display: block;
}

.office-text {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    display: block;
    margin-top: 48px;
}

.office-item:nth-child(2n) {
    display: flex;
    justify-content: end;
}

.office-item:nth-child(2n) .office-text-container {
    right: unset;
    left: 0;
}

.pricing-content {
    display: flex;
    gap: 128px;
    width: 100%;
}

.pricing-picture {
    width: 20%;
    aspect-ratio: 1 / 2;
    object-position: center;
    object-fit: cover;
    flex-shrink: 0;
}

.pricing-text-container {
    width: 80%;
}

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

.method-text-container {
    width: 50%;
    flex-shrink: 0;
}

.method-pictures-container {
    width: 50%;
    position: relative;
    box-sizing: border-box;
    padding-left: 128px;
    height: fit-content;
}

.method-big-picture {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.method-small-picture {
    position: absolute;
    left: 64px;
    bottom: 10%;
    width: 40%;
}

.posts-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    margin-top: 32px;
}

.posts-line {
    display: flex;
    gap: 32px;
    width: 100%;
}

.post-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.post-card:nth-child(2n) {
    flex: 3;
}

.post-card:nth-child(2n + 1) {
    flex: 4;
}

.posts-line:nth-child(2n) .post-card:nth-child(2n) {
    flex: 4;
}

.posts-line:nth-child(2n) .post-card:nth-child(2n + 1) {
    flex: 3;
}

.post-card-picture-container {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.post-card-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .5s;
}

.post-card:hover .post-card-picture {
    transform: scale(1.04) !important;
}

.post-card-title {
    font-weight: 600;
    font-size: 24px;
}

.post-card:hover .post-card-title {
    text-decoration: underline;
}

.post-card-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    gap: 8px;
}

.post-card-link svg {
    transition: .5s;
}

.post-card:hover svg {
    transform: translateX(8px) !important;
}

.arrow-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    gap: 8px;
    justify-content: end;
}

.arrow-link svg {
    transition: .5s;
}

.arrow-link:hover svg {
    transform: translateX(8px) !important;
}

footer {
    background-color: var(--dark-grey);
}

.footer-columns-container {
    width: 100%;
    column-gap: 16px;
    row-gap: 32px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    max-width: 220px;
    min-width: 150px;
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 16px;
    color: var(--grey-text);
    text-transform: uppercase;
}

.footer-column-title:not(:first-of-type) {
    margin-top: 24px;
}

.footer-column-item {
    color: var(--white);
    font-size: 16px;
    display: block;
}

.footer-column-item:not(:first-child) {
    margin-top: 12px;
}

.footer-column-item.no-margin {
    margin-top: 0;
}

a.footer-column-item:hover {
    text-decoration: underline;
}

.footer-title {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
}

.footer-small-title {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white);
}

.footer-networks-container {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.footer-network-icon {
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    border: solid var(--white) 1px;
    padding: 4px;
}

.footer-network-icon svg {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    width: 100%;
    justify-content: space-between;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
    align-items: end;
}

.copyrights {
    font-size: 16px;
    color: var(--grey-text);
}

.back-banner {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 24px;
}

.back-banner-content {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: var(--max-width);
    box-sizing: border-box;
    padding: 24px 0;
    display: flex;
    justify-content: start;
    margin: 0 auto;
}

.back-banner-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.back-banner-button-text {
    color: var(--white);
}

.back-banner-button svg {
    transition: .5s;
}

.back-banner-button:hover svg {
    transform: translateX(-8px) !important;
}

.back-banner-cover-picture {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-title {
    text-transform: uppercase;
    font-size: 64px;
    color: var(--black);
}

.blocks-content:not(.no-margin) {
    margin-top: 48px;
}

.blocks-content > p:not(:first-child) {
    margin-top: 24px;
}

.blocks-content li {
    margin-top: 12px;
    margin-inline-start: 1.5em;
}

.blocks-content a {
    text-decoration: underline;
}

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

.blocks-content blockquote {
    margin-top: 24px;
}

.blocks-content figure {
    margin-top: 24px;
}

.blocks-content h1 {
    margin-top: 48px;
}

.blocks-content h2 {
    margin-top: 40px;
}

.blocks-content h3 {
    margin-top: 36px;
}

.blocks-content h4 {
    margin-top: 32px;
}

.blocks-content strong {
    font-weight: bold;
}

.blocks-content video {
	width: 100%;
	max-height: 500px;
	margin: 24px auto;
}

.single-post-cover-picture {
    width: 100%;
    aspect-ratio: 4 / 2;
    object-fit: cover;
    object-position: center;
    margin-top: 16px;
}

.single-post-content {
    width: 100%;
    display: flex;
    margin-top: 32px;
}

.single-post-current-article {
    display: flex;
    flex-direction: column;
    flex: 5;
    box-sizing: border-box;
    padding-right: 48px;
}

.single-post-informations {
    line-height: 24px;
}

.single-post-articles-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-left: 48px;
    border-left: solid var(--grey) 1px;
    height: fit-content;
    margin-top: 40px;
    position: sticky;
    top: 24px;
}

.single-post-articles-title {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--dark-grey);
    margin-bottom: 12px;
}

.single-post-articles-card {
    display: flex;
    gap: 24px;
    cursor: pointer;
    margin-top: 12px;
}

.single-post-articles-card-picture-container {
    width: 100px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
}

.single-post-articles-card-picture {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: .5s;
}

.single-post-articles-card:hover .single-post-articles-card-picture {
    transform: scale(1.04) !important;
}

.single-post-articles-card-title {
    font-size: 16px;
    transition: .5s;
}

.single-post-articles-card:hover .single-post-articles-card-title {
    transform: translateX(8px) !important;
    text-decoration: underline;
}

.thematiques-content {
    display: flex;
    gap: 48px;
    width: 100%;
    margin-top: 48px;
}

.thematiques-picture {
    width: 30%;
    height: 80vh;
    object-position: center;
    object-fit: cover;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
}

.thematiques-blocks {
    width: 70%;
}

.expertises-content {
    display: flex;
    gap: 48px;
    width: 100%;
    margin-top: 48px;
}

.expertises-picture {
    width: 30%;
    height: 80vh;
    object-position: center;
    object-fit: cover;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
}

.expertises-blocks {
    width: 80%;
}

.not-found-container {
    border-top: solid var(--grey) 1px;
}

.not-found-text {
    font-size: 48px;
    width: 100%;
    text-align: center;
    display: block;
}

.not-found-button {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 32px;
}

.not-found-button:hover {
    text-decoration: underline;
}

@media all and (max-width: 1024px) {
    .huge-title-word {
        font-size: 32px;
    }

    .huge-title {
        font-size: 64px;
    }

    .subject-card {
        padding: 48px 24px;
    }

    .nav-sidebar {
        width: 100px;
    }

    .nav-content {
        padding: 128px 48px 48px 48px;
    }

    .nav-button {
        font-size: 28px;
    }

    .nav-sublist {
        padding-top: 8px;
    }

    .office-text-container {
        padding: 64px;
    }

    .office-text {
        margin-top: 32px;
    }

    .pricing-content {
        gap: 32px;
    }

    .pricing-picture {
        width: 30%;
    }

    .pricing-text-container {
        width: 70%;
    }

    .single-post-content {
        flex-direction: column;
    }

    .single-post-current-article {
        flex: unset;
    }

    .single-post-articles-container {
        position: static;
        padding: 0;
        border-left: none;
        border-top: solid var(--grey) 1px;
        margin-top: 48px;
        padding-top: 48px;
        flex: unset;
    }

    .single-post-articles-card-picture-container {
        width: 200px;
    }

    .single-post-articles-card-title {
        font-size: 20px;
    }

    .thematiques-content {
        gap: 32px;
    }

    .thematiques-picture {
        width: 30%;
    }

    .thematiques-blocks {
        width: 70%;
    }

    .expertises-content {
        gap: 32px;
    }

    .expertises-picture {
        width: 30%;
    }

    .expertises-blocks {
        width: 70%;
    }

    .main-title {
        font-size: 48px;
    }
}

@media all and (max-width: 768px) {
	.thematiques-picture,
	.expertises-picture {
		position: static;
    }
	
    .huge-title-word {
        font-size: 28px;
    }

    .huge-title {
        font-size: 48px;
    }

    .home-subjects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-sidebar {
        display: none;
    }

    .home-hero-sidebar {
        max-width: unset;
    }

    .home-hero-container {
        position: relative;
    }

    .home-hero-picture-container {
        position: absolute;
        top: 220px;
        bottom: 240px;
        width: 100%;
        height: unset;
        z-index: 500;
    }

    .home-hero-picture {
        z-index: 500;
    }

    .nav-button {
        font-size: 20px;
    }

    .nav-sublist-link {
        font-size: 16px;
    }

    .nav-content {
        padding: 128px 24px 24px 24px;
        gap: 32px;
    }

    .home-expertises-item, .home-expertises-item:nth-child(2n) {
        flex-direction: column;
        gap: 32px;
    }

    .home-expertises-pictures-container {
        width: 100%;
    }

    .home-expertises-text-container {
        width: 100%;
    }

    .home-expertises-item-text {
        font-size: 16px;
    }

    .home-expertises-content {
        gap: 24px;
    }

    .office-title {
        font-size: 20px;
    }

    .office-text-container {
        padding: 32px;
        bottom: 0;
        transform: translateY(50%) translateX(-50%);
        left: 50% !important;
        right: unset !important;
        width: 80%
    }

    .office-picture {
        width: 100%;
    }

    .office-content {
        gap: 128px;
        padding-bottom: 128px;
    }

    .pricing-content {
        gap: 32px;
        flex-direction: column;
    }

    .pricing-picture {
        width: 100%;
        aspect-ratio: 2 / 1;
    }

    .pricing-text-container {
        width: 100%;
    }

    .method-content {
        flex-direction: column-reverse;
    }

    .method-pictures-container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 32px auto;
        padding-left: 64px;
    }

    .method-small-picture {
        left: 0;
    }

    .method-text-container {
        width: 100%;
    }

    .posts-line {
        flex-direction: column;
    }

    .post-card-title {
        font-size: 20px;
    }

    .single-post-articles-card-picture-container {
        width: 100px;
    }

    .single-post-articles-card-title {
        font-size: 16px;
    }

    .thematiques-content {
        gap: 32px;
        flex-direction: column;
    }

    .thematiques-picture {
        width: 100%;
        aspect-ratio: 2 / 1;
        height: unset;
    }

    .thematiques-blocks {
        width: 100%;
    }

    .expertises-content {
        gap: 32px;
        flex-direction: column;
    }

    .expertises-picture {
        width: 100%;
        height: unset;
        aspect-ratio: 2 / 1;
    }

    .expertises-blocks {
        width: 100%;
    }

    .main-title {
        font-size: 40px;
    }

    .separator {
        height: 100px;
    }
}

@media all and (max-width: 425px) {
    .huge-title-word {
        font-size: 20px;
    }

    .huge-title {
        font-size: 40px;
    }

    .home-subjects-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-picture-container {
        top: 250px;
        bottom: 260px;
    }

    .hero-contact-button {
        font-size: 14px;
    }

    .nav-button {
        font-size: 16px;
    }

    .nav-sublist-link {
        font-size: 12px;
    }

    .home-expertises-item {
        padding: 24px;
    }

    .office-subtitle {
        font-size: 12px;
    }

    .office-text {
        font-size: 12px;
    }

    .office-text-container {
        padding: 24px;
    }

    .main-title {
        font-size: 28px;
    }
}
