/* Typographie */
/* noto-sans-georgian-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Georgia';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/georgia.woff') format('woff');
}

@font-face {
    font-display: swap;
    font-family: 'Georgia';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/georgiab.woff') format('woff');
}

@font-face {
    font-display: swap;
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/GillSansStdLight.woff') format('woff');
}

@font-face {
    font-display: swap;
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/GillSansStdBold.woff') format('woff');
}

@font-face {
    font-display: swap;
    font-family: 'Gill Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/GillSansStd.woff') format('woff');
}

body {
    font-family: 'Gill Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #000;
    font-size: clamp(1.4rem, 5vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

img {
    width: clamp(10rem, 50%, 50rem);
    margin: auto;
}

h1,
.sub-title,
.name {
    font-family: 'Georgia', serif;
}

h1 {
    border-top: 8px solid #ededed;
    padding: 3rem 0 0rem 0;
    text-transform: uppercase;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-top: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.sub-title {
    font-weight: 800;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    text-transform: uppercase;
}

main,
header {
    width: clamp(30rem, 70%, 100rem);
    margin: auto;
}

.services {

    border-bottom: 8px solid #ededed;
}



.services-item p {
    font-weight: 400;
    font-size: clamp(1.6rem, 50%, 2rem);
    text-transform: uppercase;
}

.title {
    padding-top: 3rem;
}

.member {
    font-weight: 100;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}



footer {
    background-color: #ededed;
    padding: 2rem 0;
}

footer a {
    margin: auto;
    color: #000;
    transition: .3 ease-in-out;
    -webkit-transition: .3 ease-in-out;
    -moz-transition: .3 ease-in-out;
    -ms-transition: .3 ease-in-out;
    -o-transition: .3 ease-in-out;
    text-decoration: none;
    font-size: clamp(1.2rem, 5vw, 1.6rem);

}

footer a:hover {
    opacity: .5;
}

.reseau-item::before {
    content: "";
    background-image: url("../img/linkedin.svg");
    background-repeat: no-repeat;
    display: block;
    height: 16px;
    width: 14px;
}

address {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    width: clamp(30rem, 90%, 150rem);
    margin: auto;
}

@media (min-width: 430px) {
    address {
        justify-content: space-between;
        flex-direction: row;
    }
}

@media (min-width: 900px) {
    .services {
        display: flex;
        justify-content: center;
        gap: 6rem;
    }

    .services-item p {
        padding: 3rem 0;
    }

    .before::before {
        content: "";
        display: block;
        width: 1px;
        height: 4rem;
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(255, 255, 255, 1) 100%);
        ;
        position: absolute;
        left: -3rem;
        top: calc(50% - 2rem);
    }

    .before {
        position: relative;
    }

    .contact {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 6rem;
    }

    .wrap-name.before::before {
        height: 8rem;
        top: calc(50% - 4rem);
    }

    .member {
        flex-basis: 50%;
        text-align: right;
        margin-bottom: 0rem;
    }
}