/*
couleurs, paddings, ...
*/
.forme {
    position: absolute;
    left: 50%;
    display: block;
    width: 70px;
    height: 64px;
    content: '';
    background-image: url(../images/elements/triangleJaune.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

@media (min-width: 768px) {
    .forme {
        left: 0;
        width: 100%;
        height: 125px;
    }
}

.triangle {
    position: relative;
}

.triangle:after {
    position: absolute;
    left: 50%;
    display: block;
    width: 70px;
    height: 64px;
    content: '';
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url(../images/elements/triangleJaune.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

@media (min-width: 768px) {
    .triangle:after {
        left: 0;
        width: 100%;
        height: 125px;
    }
}

@media (min-width: 768px) {
    .triangle:after {
        -webkit-transform: none;
                transform: none;
    }
}

.triangle:before {
    position: absolute;
    left: 50%;
    display: block;
    width: 70px;
    height: 64px;
    content: '';
    -webkit-transform: rotate(180deg) translateX(50%);
            transform: rotate(180deg) translateX(50%);
    background-image: url(../images/elements/triangleJaune.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

@media (min-width: 768px) {
    .triangle:before {
        left: 0;
        width: 100%;
        height: 125px;
    }
}

@media (min-width: 768px) {
    .triangle:before {
        left: 0;
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
    }
}

.fleche {
    position: absolute;
    top: 10px;
    display: block;
    width: 40px;
    height: 3px;
    content: '';
    background-color: #242021;
}
/* **** padding **** */
.padding-side {
    padding-right: 20px;
    padding-left: 20px;
}

.padding-up-down {
    padding-top: 20px;
    padding-bottom: 20px;
}

.transition {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.transitionLong {
    -webkit-transition: all .3s;
    transition: all .3s;
}
/*
polices, titres, paragraphes
*/
@font-face {
    font-family: 'mixolydian_titling';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/mixolydian_titling_rg-webfont.woff2') format('woff2'), url('../fonts/mixolydian_titling_rg-webfont.woff') format('woff');
}

@font-face {
    font-family: 'acremedium';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/acre-medium-webfont.eot');
    src: url('../fonts/acre-medium-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/acre-medium-webfont.woff2') format('woff2'), url('../fonts/acre-medium-webfont.woff') format('woff'), url('../fonts/acre-medium-webfont.ttf') format('truetype'), url('../fonts/acre-medium-webfont.svg#acremedium') format('svg');
}

body,
div,
p,
span {
    font-family: 'acremedium', sans-serif;
    color: #242021;
}

p {
    line-height: 20px;
    margin: 0;
}

strong,
.bold {
    font-weight: 700;
}

ul li {
    line-height: 20px;
}

h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'mixolydian_titling', sans-serif;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.h2,
h2 {
    font-size: 30px;
}

.h3,
h3 {
    font-size: 24px;
}

.h4,
h4 {
    font-size: 20px;
}

.h5,
h5,
.h6,
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}

.h5,
h5 {
    font-size: 16px;
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: #5255a4;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #5255a4;
}

.faded {
    color: #666;
}
/*
img, a , nav et autres communs
*/
body {
    padding-top: 50px;
    -webkit-transition: padding-top .3s;
    transition: padding-top .3s;
    background-color: #fff;
}

@media (min-width: 768px) {
    body {
        padding-top: 75px;
    }
}

.img-width {
    width: 100%;
}

.fond {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

.fond:before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 16.6667%;
    width: 66.6667%;
    content: '';
}

.fond--Jaune:before {
    background-color: rgba(249, 75, 20, .1);
}

.fond--Violet:before {
    background-color: #edeef6;
}

.souligne {
    width: 40%;
    margin: 0 30%;
}

.sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    padding: 0;
    padding-top: 0;
    white-space: nowrap;
    border: 0;
}

.third-color {
    color: #5255a4;
}

body .header {
    position: fixed;
    z-index: 25;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 50px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #5255a4;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 768px) {
    body .header {
        height: 75px;
        background-color: #242021;
    }
}

body .header__logo {
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding: 0 10px;
    background: #5255a4;
}

body .header__logo__titre {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

body .header__logo__img {
    height: 40px;
    padding-left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 1;
}

@media (min-width: 768px) {
    body .header__logo__img {
        height: 50px;
        padding-left: 30px;
    }
}

body .header__logo__text {
    font-size: 20px;
    display: block;
    margin-left: 15px;
    color: #fff;
}

body .header__burger {
    z-index: 99;
    width: 20px;
    height: 100%;
    padding: 0 20px 0 0;
    border: 0;
    background: #5255a4;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55px;
            flex: 0 0 55px;
}

body .header__burger .burger {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
    vertical-align: middle;
}

body .header__burger .burger:before,
body .header__burger .burger:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 3px;
    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    color: #fff;
    background-color: #fff;
}

body .header__burger .burger:after {
    -webkit-box-shadow: 0 9px 0 0, 0 -9px 0 0;
            box-shadow: 0 9px 0 0, 0 -9px 0 0;
}

body .header__burger.opened .burger:before {
    -webkit-transition-delay: .15s;
            transition-delay: .15s;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
}

body .header__burger.opened .burger:after {
    -webkit-transition-delay: .15s, 0s;
            transition-delay: .15s, 0s;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    -webkit-box-shadow: 0 0 0 0, 0 0 0 0;
            box-shadow: 0 0 0 0, 0 0 0 0;
}

body .header__nav {
    height: 100vh;
    padding-top: 30px;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateY(calc(-100% - 50px));
            transform: translateY(calc(-100% - 50px));
    text-align: center;
    background-color: rgba(36, 32, 33, .95);
}

@media (min-width: 768px) {
    body .header__nav {
        height: auto;
        padding-top: 0;
        -webkit-transform: none;
                transform: none;
        text-align: left;
        background: none;
    }
}

body .header__nav .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}

@media (min-width: 768px) {
    body .header__nav .header__menu {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

body .header__nav .header__menu a {
    display: block;
    margin: 0 10px;
    padding: 10px;
    color: #fff;
}

body .header__nav .header__menu a:hover,
body .header__nav .header__menu a:focus {
    color: #f9af14;
}

body .header__nav.opened {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

@media (min-width: 768px) {
    body.scrolled {
        padding-top: 50px;
    }

    body.scrolled .header {
        height: 50px;
    }

    body.scrolled .header__logo__img {
        height: 25px;
        padding-left: 15px;
    }
}

.footer {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    background: #242021;
}

.footer .h3,
.footer a,
.footer span,
.footer p {
    color: #fff;
}

.footer a:hover,
.footer a:focus {
    color: #f9af14;
}

.footer .footer__top {
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer .footer__top article {
    padding-right: 20px;
    padding-left: 20px;
    text-align: justify;
}

.footer .footer__top article .h3 {
    text-align: left;
}

.footer .footer__bottom {
    padding: 20px 0;
    background: #5255a4;
}

.footer .footer__bottom p {
    text-align: center;
    color: #fff;
}

.button {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #fff;
    background-color: #5255a4;
}

.button svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.button svg rect {
    fill: none;
    stroke: #5255a4;
    stroke-width: 0;
    stroke-dasharray: 0;
}

.button:hover,
.button:focus {
    text-decoration: none;
    color: #5255a4;
    background: none;
}

.button:hover svg rect,
.button:focus svg rect {
    -webkit-transition: all 3s cubic-bezier(.19, 1, .22, 1);
    transition: all 3s cubic-bezier(.19, 1, .22, 1);
    stroke-width: 4;
    stroke-dasharray: 550;
    stroke-dashoffset: 0;
}

@media (min-width: 576px) {
    .button:hover svg rect,
    .button:focus svg rect {
        stroke-dasharray: 650;
    }
}

@media (min-width: 992px) {
    .button:hover svg rect,
    .button:focus svg rect {
        stroke-dasharray: 750;
    }
}

@media (min-width: 1200px) {
    .button:hover svg rect,
    .button:focus svg rect {
        stroke-dasharray: 550;
    }
}

.slick-slider .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border: 0;
    background: none;
}

.slick-slider .slick-arrow:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slick-slider .slick-arrow:hover,
.slick-slider .slick-arrow:focus {
    cursor: pointer;
}

.slick-slider .slick-prev {
    left: 20px;
}

.slick-slider .slick-prev:after {
    background-image: url(../images/elements/arrow-left.svg);
}

.slick-slider .slick-prev:hover,
.slick-slider .slick-prev:focus {
    left: 15px;
}

.slick-slider .slick-next {
    right: 20px;
}

.slick-slider .slick-next:after {
    background-image: url(../images/elements/arrow-right.svg);
}

.slick-slider .slick-next:hover,
.slick-slider .slick-next:focus {
    right: 15px;
}

.slick-slider .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.slick-slider .slick-dots li {
    padding: 0 5px;
}

.slick-slider .slick-dots li button {
    font-size: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #242021;
    border-radius: 100%;
    background: none;
}

.slick-slider .slick-dots li.slick-active button {
    background-color: #242021;
}

.banniere__content {
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0 0 5px #ccc;
            box-shadow: 0 0 5px #ccc;
}

.banniere,
.presentation,
.competences,
.cv,
.realisations,
.contact {
    margin-bottom: 60px;
}

.banniere__wrap,
.presentation__wrap,
.competences__wrap,
.cv__wrap,
.realisations__wrap,
.contact__wrap {
    margin-top: 40px;
    padding: 80px 0;
}

@media (min-width: 768px) {
    .banniere__wrap,
    .presentation__wrap,
    .competences__wrap,
    .cv__wrap,
    .realisations__wrap,
    .contact__wrap {
        margin-top: 80px;
        padding: 150px 0;
    }
}

.banniere__wrap__content:after,
.presentation__wrap__content:after,
.competences__wrap__content:after,
.cv__wrap__content:after,
.realisations__wrap__content:after,
.contact__wrap__content:after {
    bottom: -80px;
}

@media (min-width: 768px) {
    .banniere__wrap__content:after,
    .presentation__wrap__content:after,
    .competences__wrap__content:after,
    .cv__wrap__content:after,
    .realisations__wrap__content:after,
    .contact__wrap__content:after {
        bottom: -150px;
    }
}

.banniere__wrap__content:before,
.presentation__wrap__content:before,
.competences__wrap__content:before,
.cv__wrap__content:before,
.realisations__wrap__content:before,
.contact__wrap__content:before {
    top: -80px;
}

@media (min-width: 768px) {
    .banniere__wrap__content:before,
    .presentation__wrap__content:before,
    .competences__wrap__content:before,
    .cv__wrap__content:before,
    .realisations__wrap__content:before,
    .contact__wrap__content:before {
        top: -150px;
    }
}
/* ***** Présentation ***** */
.presentation__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.presentation__wrap__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.presentation__wrap__content:first-child {
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .presentation__wrap__content:first-child {
        margin-bottom: 0;
    }
}

.presentation__wrap__content:first-child:after {
    content: none;
}

.presentation__wrap__content:last-child:before {
    content: none;
}

@media (min-width: 576px) {
    .presentation__wrap__content:first-child::after,
    .presentation__wrap__content:last-child::before {
        content: '';
    }
}

.presentation__wrap__content p {
    text-align: justify;
}

.presentation__wrap__content__signature {
    display: block;
    text-align: right;
}
/* ***** Compétences ***** */
.competences .competences__wrap {
    margin-top: 120px;
    margin-bottom: 120px;
    padding: 0;
}

.competences .competences__wrap:after {
    bottom: -80px;
}

.competences .competences__wrap:before {
    top: -80px;
}

@media (min-width: 768px) {
    .competences .competences__wrap {
        padding: 70px 0;
    }
}

@media (min-width: 992px) {
    .competences .competences__wrap {
        margin-top: 80px;
        margin-bottom: 0;
        padding: 150px 12px;
    }

    .competences .competences__wrap:before,
    .competences .competences__wrap:after {
        content: none;
    }
}

@media (min-width: 768px) {
    .competences .competences__wrap__content {
        padding: 0 15px;
    }
}

.competences .competences__wrap__content:before,
.competences .competences__wrap__content:after {
    content: none;
}

@media (min-width: 992px) {
    .competences .competences__wrap__content:before,
    .competences .competences__wrap__content:after {
        content: '';
    }
}

.competences .competences__wrap__content .competences__box {
    position: relative;
    height: 100%;
    padding: 10px 15px 20px;
    border: 2px solid #f9af14;
    background-color: rgba(255, 255, 255, .7);
}

@media (min-width: 768px) {
    .competences .competences__wrap__content .competences__box {
        min-height: 666px;
        padding: 10px 30px 20px;
    }
}

@media (min-width: 992px) {
    .competences .competences__wrap__content .competences__box {
        min-height: auto;
    }
}

.competences .competences__wrap__content .competences__box .h4 {
    margin-bottom: 25px;
    text-align: center;
}

.competences .competences__wrap__content .competences__box__text {
    margin-bottom: 10px;
    text-align: justify;
}

.competences .competences__wrap__content .competences__box ul:not(:last-child) {
    margin-bottom: 30px;
}

.competences .competences__wrap__content .competences__box ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.competences .competences__wrap__content .competences__box__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.competences .competences__wrap__content .competences__box__stars img {
    width: 19px;
}

@media (min-width: 1200px) {
    .competences .competences__wrap__content .competences__box__stars img {
        width: 25px;
    }
}
/* ***** Parcours ***** */
.cv .cv__wrap {
    padding: 0 0 20px;
}

.cv .cv__wrap__inner {
    width: calc(100% - var(--bs-gutter-x));
    margin: 0 calc(var(--bs-gutter-x) * .5);
    padding: 0;
    border-right: 3px solid #242021;
    border-bottom: 3px solid #242021;
    border-left: 3px solid #242021;
}

.cv .cv__wrap > .h3 {
    padding: 0;
}

@media (min-width: 768px) {
    .cv .cv__wrap > .h3 {
        padding: 0 15px;
    }
}

.cv .cv__wrap__formation,
.cv .cv__wrap__content--formation {
    text-align: right;
}

.cv .cv__wrap__formation .h4,
.cv .cv__wrap__content--formation .h4,
.cv .cv__wrap__formation .h5,
.cv .cv__wrap__content--formation .h5 {
    text-align: right;
}

.cv .cv__wrap__experience,
.cv .cv__wrap__content--experience {
    text-align: left;
}

.cv .cv__wrap__experience .h4,
.cv .cv__wrap__content--experience .h4 {
    text-align: left;
}

.cv .cv__wrap__content {
    position: relative;
    margin-bottom: 60px;
}

.cv .cv__wrap__content:before {
    position: absolute;
    top: 10px;
    display: block;
    width: 40px;
    height: 3px;
    content: '';
    background-color: #242021;
}

.cv .cv__wrap__content p {
    margin-bottom: 5px;
}

.cv .cv__wrap__content__employer,
.cv .cv__wrap__content__underline {
    text-decoration: underline;
}

.cv .cv__wrap__content__what {
    margin-bottom: 10px;
}

.cv .cv__wrap__content__paragraph {
    margin-bottom: 25px;
}

.cv .cv__wrap__content--experience {
    padding: 0 20px 0 50px;
}

.cv .cv__wrap__content--experience:before {
    left: 0;
}

.cv .cv__wrap__content--formation {
    padding: 0 50px 0 20px;
}

.cv .cv__wrap__content--formation:before {
    right: 0;
}

.cv__download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -42px;
    padding: 10px 0;
    text-align: center;
    background: #edeef6;
}

@media (min-width: 768px) {
    .cv__download {
        margin-top: -35px;
    }
}
/* ***** Réalisations ***** */
/* ***** Contact ***** */
.contact .contact__wrap {
    margin-top: 120px;
    margin-bottom: 120px;
    padding: 0;
}

.contact .contact__wrap:after {
    bottom: -80px;
}

.contact .contact__wrap:before {
    top: -80px;
}

@media (min-width: 576px) {
    .contact .contact__wrap {
        margin-top: 40px;
        margin-bottom: 0;
        padding: 80px 0;
    }

    .contact .contact__wrap:before,
    .contact .contact__wrap:after {
        content: none;
    }
}

@media (min-width: 768px) {
    .contact .contact__wrap {
        margin-top: 80px;
        padding: 150px 0;
    }
}

.contact .contact__wrap__content {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .contact .contact__wrap__content {
        margin-bottom: 0;
    }
}

.contact .contact__wrap__content:before,
.contact .contact__wrap__content:after {
    content: none;
}

@media (min-width: 576px) {
    .contact .contact__wrap__content:before,
    .contact .contact__wrap__content:after {
        content: '';
    }
}

.contact a,
.contact p {
    display: block;
    text-align: center;
    color: #242021;
}

.contact a:hover,
.contact a:focus {
    color: #5255a4;
}

.contact__wrap article .h4 {
    margin-top: 0;
}
