
@font-face {
    font-family: 'Tungsten Book';
    src: url('../font/tungsten-book/tungsten-book.woff2') format('woff2'),
         url('../font/tungsten-book/tungsten-book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html { scroll-behavior: smooth;}


body {
    margin: 0;
    padding: 0;
    color: #363636;
    font-family: 'Nunito Sans', sans-serif;
    background: #f4f4f4;
    
}



h1, h2, h3, h4, h5 { margin: 0; }

.orange { color: #ef5323; }

img {
    display: block;
    max-width: 100%;
    border: 0;
}

.container {
    position: relative;
    width: 1180px;
    margin: 0 auto;
    padding:  0 10px;
}

@media screen and (max-width: 1200px) {
    
    .container { width: 1000px; }
}

@media screen and (max-width: 1024px) {
    
    .container { width: 975px; }
}

@media screen and (max-width: 991px) {
    
    /* .container { width: 750px; } */
    .container { width: calc(100% - 20px); }
}

@media screen and (max-width: 767px) {
    
    .container { width: calc(100% - 20px); }
}

.linkBt {
    display: flex;
    justify-content: center;
    line-height: 43px;
    padding: 0 15px;
    color: #ef4123;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.93px;
    text-decoration: none;
    text-transform: uppercase;
    border: solid 3px #ef4123;
    background-color: transparent;
    transition: all .25s;
}
    .linkBt:hover {
        color: #363636;
        border: solid 3px #363636;
        /* background-color: #ef4123; */
        transition: all .25s;
    }

.linkBt:after {
    content: '';
    position: relative;
    top: 16px;
    margin-left: 5px;
    display: inline-block;
    padding: 4px;
    border-style: solid;
    border-color: #ef4123;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 .2em .2em 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    height: 0;
}  
    .linkBt:hover::after { border-color: #363636; }



/* HEADER */

header {
    overflow: hidden;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    background-image: url(../images/header-bg.jpg);
    
    /* DISABLED
    animation: imc-zoom 20s linear; */
}

@keyframes imc-zoom {
    0%   { background-size: 100% auto; }
    100% { background-size: 105% auto; }
}

header * { z-index: 1; } 
/* minimum pour au moins passer par dessus le triangle blanc du .header-bloc */

.header-container {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media screen and (max-width: 767px) {
    
    .header-container { display: block; }
    .header-container *{ display: block; }
}

.header-logoDesktop { 
    position: absolute;
    top: 15px;
    left: 15px;
}

.header-logoMobile {
    position: relative;
    display: none;
    margin: 0 -15px;
    padding: 25px 0 0;
    background: #333;
}


@media screen and (max-width: 767px) {
    
    .header-logoDesktop { display: none; }
    .header-logoMobile { display: block; }
}

.header-logoDesktop img { width: 107px; }

.header-logoMobile img { margin: 0 auto; }

.header-slogan {
    order: 2;
    position: relative;
    float: right;
    padding: 35px 40px;
    margin-left: 150px;
    color: #fff;
    font-size: 13px;
    line-height: 1.31;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1.18px;
    text-transform: uppercase;
    background-color: #333;
}

    .header-slogan br { display: none; }

@media screen and (max-width: 991px) {

    .header-slogan { padding: 20px 15px; }
}

@media screen and (max-width: 767px) {
    
    .header-slogan {
        float: none;
        margin: 0 -15px;
    }

    .header-slogan br { display: inline; }
}

.header-nav {
    order: 1;
    display: flex;
    justify-content: space-around;
    float: right;
    list-style: none;
    min-width: 525px; 
    padding: 0 15px;
    margin: 0 -25px 0 150px;
    color: #555;
    font-size: 10px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    
    .header-nav {
        float: none;
        min-width: 0;
        margin: 10px 0;
    }
}

.header-nav a {
    color: #555;
    text-decoration: none;
    transition: color ease .25s;
}
.header-nav a:hover {
    color: #ef5323;
    transition: color ease .25s;
}

.header-bloc {
    order: 3;
    position: relative;
    align-self: start;
    max-width: 325px;
    height: 325px;
    margin: 7.75em 0;
    padding: 3em 1.5em 1.5em 3em;
    border: 15px solid #fff;
    z-index: 0;
}

@media screen and (max-width: 767px) {
    
    .header-bloc {
        max-width: 295px;
        height: auto;
        margin: 1.75em auto;
        padding: 2.5em 15px;
        border: 10px solid #fff;
    }
}

.header-bloc:before {
    content: "";
    position: absolute;
    top: -2000px;
    right: -2000px;
    display: block;
    width: 0;
    height: 0;
    border: 1500px solid transparent;
    border-left-color: rgba(255,255,255,.6);
    z-index: -1;
}

.header-bloc:after {
    content: "";
    position: absolute;
    top:0;
    right:0;
    bottom:  0;
    left: 0;
    display: block;
    background-color: rgba(239,65,35,.8);
    z-index: -1;
}

.header-blocTitle {
    position: relative;
    margin-bottom: 50px;
    color: #fff;
    font-size: 46px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    font-family: Tungsten Book;
}

.header-blocTitle:after {
    content: '';
    width: 80px;
    height: 0;
    border-top: solid 3px #fff;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 20px;
}

.header-blocText {
    width: 196px;
    height: 65px;
    font-size: 19.8px;
    line-height: 1.28;
    color: #fff;
}

.header-blocCta {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    padding: 20px;
    letter-spacing: 1.65px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #333;
    transition: background-color ease .25s;
}

.header-blocCta:hover {
    background-color: #000;
    transition: background-color ease .25s;
}

.header-blocCta:after {
    content: '';
    position: relative;
    top: -3px;
    margin-left: 5px;
    display: inline-block;
    padding: 3px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.section { margin: 6.5em 0; box-sizing: unset !important; }


@media screen and (max-width: 767px) {

    .section { margin: 3.5em 0; }
}

/* SECTION 1 */

.section-bloc {
    width: 100%;
    max-width: 275px;
    margin: 0 auto 55px;
    padding: 30px 15px 75px 50px;
    background-color: #363636;
    box-sizing: unset !important;
}

.section-bloc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    height: 2px;
    background: #d1d1d1;
    z-index: -1;

}

.section-blocTitle {
    position: relative;
    color: #fff;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    font-family: Tungsten Book;
}

.section-blocTitle::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 80px;
    height: 0;
    margin-top: 20px;
    border-top: solid 4px #ef4123;
}


.section-content {
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 991px) {

    .section-content {
        display: block;
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
    }
}

@media screen and (max-width: 555px) {

    .section-content { max-width:  none; }
}

.section-text {
    padding: 0 4%;
    font-size: 13px;
    line-height: 1.85;
    color: #6e6e6e;
}


.section-textTitle {
    margin-bottom: 0;
    text-transform: uppercase;
    margin-bottom: 1em;
    font-family: Tungsten Book;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.33;
    color: #333;
}

.section-contentText {  flex: 2; }

.section-contentText p {
    margin: 0 34% 0 0;
    color: #909090;
    font-size: 26px;
    line-height: 1.5;
    font-family: Tungsten Book;
    text-transform: uppercase;
}

@media screen and (max-width: 991px) {

    .section-contentText p {
        margin: 0 0 30px;
        line-height: 1.2;
    }
}

.section-contentElements { flex: 3.5; }

@media screen and (max-width: 991px) {

    .section-contentElements { flex-direction: column; }
}

.section-contentElements,
.section-contentElements li {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.section-contentElements li {
    flex-direction: column;
    padding: 0 25px;
    font-size: 13px;
    line-height: 1.54;
    text-align: center;
    color: #6e6e6e;
}

@media screen and (max-width: 991px) {

    .section-contentElements li { padding-bottom: 25px; }
}

.section-contentElements li:before {
    content: '';
    width: 83px;
    height: 83px;
    margin: 0 auto 10px;
    background-image: url(../img/check.svg);
}

.section-contentElements li strong {
    margin-bottom: 20px;
    font-family: Tungsten Book;
    font-weight: 500;
    font-size: 32px;
    line-height: 0.97;
    text-align: center;
    color: #000;
}

.section-right {
    display: flex;
    justify-content: space-between;
    box-sizing: unset;
}

@media screen and (max-width: 991px) {
    .section-right {
        display: block;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 15px;
    }
}



.documents {
    max-width: 745px;
    margin: 0 auto 80px;
    overflow: hidden;
}

.documents-title {
    margin-bottom: 15px;
    font-size: 44px;
    text-transform: uppercase;
    font-family: Tungsten Book;
    color: #ef4123;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    letter-spacing: 1px;
}

.documentation-title {
    margin: 0 0 26px;
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -0.67px;
    color: #da322a;

}

.tablesorter-header-inner {
    text-align: left;
    padding:10px 25px;
}


.documentation-element {
    position: relative;
    padding: 11px 12px 11px 25px;
    color: #7f7f7f;
    font-size: 14px;
    line-height: 1.29;
    background: #fafafa;
}

.documentation-element:hover { background-color: #fff; }

.documentation-element td {
    vertical-align: middle;
    padding: 10px 25px;
    border: 0;
}

.job:first-of-type td { border: 0; }

.documentation-element strong { color: #363636; }

.documentation-element-type,
.documentation-element-more a {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: right;
    padding: 0.75rem;
    background-color: transparent;
    transition: all ease .25s;
    box-shadow: none;
    z-index: 3;
}

.documentation-element-type { 
    margin-right: 75px;
    background-position: right;
    background-repeat: no-repeat;
    background-image: url("../../images/icon_pdf.svg");

}

.documentation-element-bt {
    display: inline-block;
    min-height: 35px;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.documentation-element-more a {
    margin-left: -30px;
    background-position: calc(100% - 30px);
    background-repeat: no-repeat;
    background-image: url("../../images/icon_download.svg");
    box-shadow: inset 3px 0 3px rgba(0,0,0,.1);
    transition: all ease .5s;
}

.documentation-element-more:hover a {
    box-shadow: inset 0 0 10px rgba(0,0,0,0);
    transition: all ease .5s;
    background-image: url("../../images/icon_download-hover.svg");
}

/* FOOTER  */

footer {
    background: #333;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    min-height: 50px;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #bfbcb9;
}
@media screen and (max-width: 767px) {

    .footer-container {
        display: block;
        padding: 20px 0;
        text-align: center;
    }
}


.footer-coord br { display: none; }

@media screen and (max-width: 555px) {

    .footer-coord br { display: inline; }
}

.footer-container a { color: #bfbcb9; }

.footer-socialMedia {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #94928c;
    font-size: 12px;
    line-height: 2;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media screen and (max-width: 767px) {

    .footer-socialMedia {
        margin: 20px 0;
        justify-content: center;
    }
}

.footer-socialMedia a {
    opacity: .8;
    transition: opacity .25s;
}

.footer-socialMedia a:hover {
    opacity: 1;
    transition: opacity .25s;
}

.footer-socialMedia img {
    max-height: 23px;
    margin-left: 25px;
}


.footer-lang { 
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
.footer-lang:after {
    content: '';
    position: relative;
    top: -3px;
    margin-left: 5px;
    display: inline-block;
    padding: 3px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}