@font-face {
    font-display: swap;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-padding-top: 150px;
}

body {
    color: #fff;
    background-color: #0C0D0F;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #0C0D0F;
}

::-webkit-scrollbar
{
    width: 6px;
    background-color: #0C0D0F;
}

::-webkit-scrollbar-thumb
{
    background-color: #947759;
}

.scrolled {
    width: 100%;
    padding: 1rem 0;
    z-index: 999;
    background-color: #0C0D0F;
    transition: all 320ms;
    position: fixed;
    top: -100;
}

header {
    width: 100%;
    position: fixed;
    padding: 3rem 0;
    z-index: 999;
    transition: all 320ms;
}

.lang-switch {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    z-index: 999;
    border: 1px solid #947759;
}

.lang-switch a.lang-active {
    background-color: #947759;
}

.lang-switch a {
    font-family: Poppins, serif;
    font-weight: 100;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    padding: 0 0.5rem;
}

header .nav-link {
    font-family: Poppins, serif;
    font-weight: 100;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    position: relative;
}


header .nav-link.active:after {
    content: "";
    background: #947759;
    position: absolute;
    left: 0;
    height: 2px;
    width: 30px;
    margin-top: 30px;
}

header #mobile-nav {
    padding: 0 2rem;
}

header #mobile-nav .row {
    display: flex;
    align-items: center;
}

header .mobile-links {
    position: absolute;
    display: none;
    flex-direction: column;
    top: 70px;
    background-color: #0C0D0F;
    left: 0;
    text-align: center;
    padding: 1rem 0;
}

header .mobile-links .nav-link {
    padding: 1rem;
}

@media (min-width: 1290px) {
    #main-navigation {
        display: inherit;
    }
    #mobile-nav {
        display: none;
    }
}

.home,
.home .container {
    height: 70vh;
}

@media (max-width: 1289px) {

    header,
    .scrolled {
        padding: 3rem 0;
        transition: none;
    }

    #main-navigation {
        display: none;
    }
    #mobile-nav .row {
        display: flex;
    }
}

@media (min-width: 330px) {
    .home,
    .home .container {
        height: 100vh;
    }
}

.home h1:nth-of-type(1) {
    font-family: Bellefair, serif;
    color: #947759;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.home h1:nth-of-type(2) {
    font-family: Bellefair, serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 4rem;
}

.home p {
    font-family: Poppins, serif;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 200;
    font-size: 1.7rem;
}

@media (max-width: 600px) {
    .home h1:nth-of-type(1),
    .home h1:nth-of-type(2) {
        font-size: 2.8rem;
    }
    .home p {
        font-size: 1.2rem;
    }
}

.about {
    margin-bottom: 100px;
}

.about-content {
    color: #000;
    text-align: end;
    z-index: 2;
    background-color: #fff;
    margin-right: -50px;
    padding: 2rem;
    display: inline-block;
    height: fit-content;
}

@media (max-width: 990px) {
    .about-content {
        margin-right: 0;
        text-align: start;
    }
    .about-content > :last-child {
        float: right;
    }
}

.about-content h2:nth-of-type(1) {
    font-family: Bellefair, serif;
    color: #947759;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-content h2:nth-of-type(2) {
    font-family: Bellefair, serif;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-content p {
    font-family: Poppins, serif;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 200;
    font-size: 1rem;
}

.about-content a {
    font-family: Bellefair, serif;
    color: #947759;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

.about-content a::before {
    content: "";
    background: #947759;
    position: absolute;
    left: -40px;
    height: 2px;
    width: 30px;
    margin-top: 12px;
    transition: all 300ms ease;
}

.about-content a:hover::before {
    content: "";
    background: #947759;
    position: absolute;
    left: -30px;
    height: 2px;
    width: 20px;
    margin-top: 12px;
}

.about-image {
    aspect-ratio: 1 / 1;
    z-index: 1;
    margin-top: -100px;
    margin-left: -50px;
    position: relative;
    max-height: 500px;
}


.expertise {
    margin-bottom: 100px;
}

.expertise .headline {
    margin-bottom: 20px;
}

.expertise .headline h2:nth-of-type(1) {
    font-family: Bellefair, serif;
    color: #947759;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.expertise .headline h2:nth-of-type(2) {
    font-family: Bellefair, serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.expertise-card {
    position: relative;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);;
    margin-bottom: 1.8rem;
}

.expertise-card img {
    aspect-ratio: 2/1.4;
    object-fit: cover;
}

.expertise-card .card-content {
    background-color: #0C0D0F;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 20px;
    position: relative;
}

.expertise-card .card-content::after {
    content: "";
    background: #947759;
    position: absolute;
    left: -1px;
    bottom: -1px;
    height: 50px;
    width: 100px;
    z-index: -1;
    transition: all 230ms;
}

.expertise-card .card-content:hover::after {
    height: 70px;
    width: 120px;

}

.expertise-card .card-header h2 {
    font-family: Bellefair, serif;
    color: #947759;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.expertise-card .card-body p {
    font-family: Poppins, serif;
    color: #fff;
    font-weight: 200;
    font-size: 1rem;
    margin-bottom: 0;
}


.cta {
    background-position: center center;
    height: fit-content;
    padding: 6rem 0;
    margin-bottom: 100px;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta h2:nth-of-type(1) {
    font-family: Bellefair, serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: .5rem;
    margin-bottom: .1rem;
    position: relative;
}

.cta h2:nth-of-type(2) {
    font-family: Bellefair, serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: .3rem;
    margin-bottom: 3rem;
    position: relative;
}

.cta a {
    font-family: Poppins, serif;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 200;
    position: relative;
    padding: 0 10px;
    cursor: pointer;
    letter-spacing: .1rem;
}

.cta a::before {
    content: "";
    background: #fff;
    position: absolute;
    left: -40px;
    height: 1px;
    width: 40px;
    margin-top: 12px;
    transition: all 300ms ease;
}

.cta a:hover::before {
    content: "";
    background: #fff;
    position: absolute;
    left: -30px;
    height: 1px;
    width: 30px;
    margin-top: 12px;
}

.cta a::after {
    content: "";
    background: #fff;
    position: absolute;
    right: -40px;
    height: 1px;
    width: 40px;
    margin-top: 12px;
    transition: all 300ms ease;
}

.cta a:hover::after {
    content: "";
    background: #fff;
    position: absolute;
    right: -30px;
    height: 1px;
    width: 30px;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .cta h2:nth-of-type(1) {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .cta h2:nth-of-type(1) {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

.references {
    margin-bottom: 100px;
}

.references .headline {
    margin-bottom: 20px;
}

.references .headline h2:nth-of-type(1) {
    font-family: Bellefair, serif;
    color: #947759;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.references .headline h2:nth-of-type(2) {
    font-family: Bellefair, serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.reference-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5rem 4rem;
    position: relative;
}

.reference-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(12, 13, 15, 0.5);
    transition: all 300ms;
}

.reference-card:hover::after {
    background: rgba(12, 13, 15, 0);
}

@media (max-width: 990px) {
    .reference-card {
        padding: 3rem;
    }
}


.contact {
    margin-bottom: 100px;
}

.contact .headline {
    margin-bottom: 20px;
}

.contact .headline h2:nth-of-type(1) {
    font-family: Bellefair, serif;
    color: #947759;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact .headline h2:nth-of-type(2) {
    font-family: Bellefair, serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact .contact-informations .address,
.contact .contact-informations .phone,
.contact .contact-informations .open,
.contact .contact-informations .mail {
    display: flex;
    border: 1px solid #947759;
    padding: 10px;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.contact .contact-informations .address img,
.contact .contact-informations .phone img,
.contact .contact-informations .open img,
.contact .contact-informations .mail img {
    filter: invert(99%) sepia(7%) saturate(301%) hue-rotate(306deg) brightness(118%) contrast(100%);
    /* filter: invert(42%) sepia(47%) saturate(299%) hue-rotate(350deg) brightness(103%) contrast(88%); */
    height: -webkit-fill-available;
}

.contact .contact-informations .title {
    font-family: Poppins, serif;
    color: #947759;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: .1rem;
    margin: 0;
}

.contact .contact-informations .description {
    font-family: Poppins, serif;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: .1rem;
    margin: 0;
}

footer {
    padding: 20px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    background: #947759;
    width: 50px;
    height: 1px;
    left: calc(50vw - 25px);
    top: 10px;
}

footer p {
    font-family: Poppins, serif;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.1rem;
    margin: 0;
}

.map {
    -webkit-filter: grayscale(100%) invert(0.9);
    -moz-filter: grayscale(100%) invert(0.9);
    -ms-filter: grayscale(100%) invert(0.9);
    -o-filter: grayscale(100%) invert(0.9);
    filter: grayscale(100%) invert(0.9);
}
