/*
Kate style
*/

/******************/
/*******VAR********/
/******************/
:root{
    /*color*/
    --wh: #ffffff;
    --blk: #32373B;
    --bleu1: #46788B;
    --bleu3: #2E5367;
    --bleu4: #8BA9B8;
    --beige2: #8B743D;
    --beige5: #AA9A72;
    --beige6: #EBE6D2;
    /*radius*/
    --r5: 5px;
    --r10: 10px;
    --r20: 20px;
    --r90: 90px;
    --r180: 180px;
    /*gap*/
    --g5: 5px;
    --g10: 10px;
    --g20: 20px;
    --g40: 40px;
    --g52: 52px;
    /*cols*/
    --c2: 2;
    --c3: 3;
    /*width*/
    --2-10: calc((100% / var(--c2)) - var(--g10) + (var(--g10) / var(--c2)));
    --2-20: calc((100% / var(--c2)) - var(--g20) + (var(--g20) / var(--c2)));
    --2-40: calc((100% / var(--c2)) - var(--g40) + (var(--g40) / var(--c2)));
    --3-20: calc((100% / var(--c3)) - var(--g20) + (var(--g20) / var(--c3)));
    /*rotate*/
    --deg2: rotate(2deg);
    --deg-2: rotate(-2deg);
}

/******************/
/******RGAA********/
/******************/
:focus,
:focus-visible {
    outline: 2px solid transparent; /*pour le mode contraste forcé*/
    outline-offset: 2px;
    box-shadow:  0 0 0 2px var(--wh) /*halo clair, visible sur fond foncé*/, 0 0 0 5px var(--blk); /*halo foncé, visible sur fond clair*/
    border-radius: 2px;
}
:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/******************/
/*******LIENS******/
/******************/
a:link {
color: var(--blk);
}
a:visited {
color: var(--blk);
}
a:active,
a:hover {
color: var(--kate);
}

/******************/
/******POLICES*****/
/******************/
/* font-face Instrument sans */
@font-face {
  font-family: 'instru';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/instrument-sans-v4-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
}
@font-face {
  font-family: 'instru';
  font-style: italic;
  font-weight: 400;
  src: local(''),
       url('../fonts/instrument-sans-v4-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
}

@font-face {
    font-family: 'instru';
    font-style: normal;
    font-weight: 600;
    src: local(''),
    url('../fonts/instrument-sans-v4-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
}
@font-face {
    font-family: 'instru';
    font-style: italic;
    font-weight: 600;
    src: local(''),
    url('../fonts/instrument-sans-v4-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
}
@font-face {
    font-family: 'instru';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('../fonts/instrument-sans-v4-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
}
@font-face {
    font-family: 'instru';
    font-style: italic;
    font-weight: 700;
    src: local(''),
    url('../fonts/instrument-sans-v4-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
}

/*global*/
body{
font-family: /*Arial, Helvetica, sans-serif*/ 'instru';
font-weight: 400;
font-size: 15px;
color: var(--bleu1);
}
h1, h2, h3, h4, h5, h6{
display: block;
}

/******************/
/****STRUCTURE*****/
/******************/
.widzmain{
width: 1228px;
margin-right: auto;
margin-left: auto;
}


/******************/
/******HEADER******/
/******************/
#header{
    display: block;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: var(--wh);
    position: relative;
    z-index: 10;
}
#header_content{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

/*logo*/
#logo{
    display: block;
    width: 180px;
    position: relative;
}
#logo a{
    display: block;
    width: 100%;
}
#logo img{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

/*navtop*/
#navtop{
    flex: 1;
    display: block;
    padding: 9px 0 2px 7%;
}
#navtop ul{
    display: flex;
    flex-wrap: wrap;
    gap: 0 var(--g52);
}
#navtop ul li:not(.hentry_bt_beige) a{
    display: block;
    line-height: 22px;
    padding: 18px 0;
    font-size: 15px;
    color: var(--bleu1);
    font-weight: 500;
    text-decoration: none;
}
#navtop ul li.hentry_bt_beige{
    margin: 0 0 0 auto;
}

/******************/
/******FOOTER******/
/******************/
#footer_content{
    display: block;
    padding: 13px 0;
}
.footer_nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer_nav ul li{
    display: inline-block;
}
.footer_nav ul li a{
    display: inline-block;
    line-height: 20px;
    font-size: 14px;
    color: var(--bleu1);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
}
.footer_nav ul li:not(:last-of-type)::after {
    content: '';
    display: inline-block;
    height: 2px;
    width: 2px;
    background: var(--bleu1);
    border-radius: var(--r180);
    margin: auto 7px;
}
.footer_nav ul li a:hover{
    color: var(--beige2);
    transition: all 0.3s;
}

/******************/
/*******PAGES******/
/******************/
/*breadcrumb*/
#breadcrumb_content{
display: block;
line-height: 19px;
padding: 9px 0;
font-size: 0;
}
.breadcrumb_item{
display: inline-block;
font-size: 11px;
color: var(--blk);
}
.breadcrumb_item:last-of-type{
color: var(--kate);
}
.breadcrumb_item:not(:last-of-type)::after{
content: '';
display: inline-block;
height : 0;
width : 0;
border-top : 4px solid transparent;
border-bottom : 4px solid transparent;
border-left : 5px solid var(--blk);
margin: auto 12px;
}
.breadcrumb_item a{
color: var(--blk);
text-decoration: none;
}
.breadcrumb_item a:hover{
text-decoration: underline;
}
/*Hentry*/
.page_title{
display: block;
line-height: 50px;
margin-bottom: 30px;
font-size: 40px;
color: var(--bleu3);
font-weight: 600;
}
.post_content{
padding: 44px 0 76px;
}
.page_hentry h2{
line-height: 48px;
margin-bottom: 36px;
font-size: 42px;
color: var(--bleu1);
font-weight: 600;
}
.page_hentry h3{
line-height: 29px;
margin-bottom: 20px;
font-size: 20px;
color: var(--bleu1);
font-weight: 700;
}
.page_hentry h4{
line-height: 13px;
margin-bottom: 20px;
font-size: 11px;
color: var(--beige2);
font-weight: 600;
letter-spacing: 1.1px;
text-transform: uppercase;
}
.page_hentry p{
line-height: 22px;
margin-bottom: 21px;
}
.page_hentry ul{
padding: 0;
margin: 0 0 22px;
}
.page_hentry ul li{
line-height: 22px;
padding: 0 0 0 14px;
margin: 0;
position: relative;
}
.page_hentry ul li::before{
content: '';
width: 2px;
height: 2px;
background: var(--bleu1);
border-radius: var(--r90);
position: absolute;
top: 12px;
left: 1px;
}
.page_hentry b,
.page_hentry strong{
font-weight: 700;
}
.page_hentry em{
font-style: italic;
}
.page_hentry img{
width: auto;
max-width: 100%;
height: auto;
}
.page_hentry table{
    margin-bottom: 30px;
}
.page_hentry table tr td{
    padding: 14px 10px;
    font-size: 13px;
    color: var(--bleu1);
    text-align: center;
}
.page_hentry table tr:first-of-type td{
    font-size: 14px;
    color: var(--bleu1);
    font-weight: 500;
}
.page_hentry table tr:nth-of-type(even) td{
    background: var(--bleu4);
}
.page_hentry table tr td:first-of-type{
    line-height: 21px;
    font-size: 15px;
    color: var(--bleu1);
    font-weight: 600;
}
.page_hentry table tr td:last-of-type{
}

/*BT*/
.hentry_bt_beige{
    display: inline-block;
}
.hentry_bt_beige a{
    display: block;
    line-height: 22px;
    padding: 13px 28px;
    background: var(--beige2);
    border-radius: var(--r90);
    border: 1px solid var(--beige2);
    font-size: 14px;
    color: var(--wh);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}
.hentry_bt_beige a:hover{
    background: var(--wh);
    color: var(--beige2);
    transition: all 0.3s;
}

/*404*/
#page_404{
display: flex;
flex-wrap: wrap;
padding: 94px 0 94px;
}
#page_404_ill_block{
width: 36.5%;
margin: 0 9.8% 0 0;
}
#page_404_ill_block object{
width: 100%;
max-width: 511px;
height: auto;
margin: auto;
}
#page_404_ill_main{
flex: 1;
padding-top: 53px;
}

/******************/
/*****ONE-PAGE*****/
/******************/
.strap_intro_wrapp{
    display: flex;
    flex-wrap: wrap;
    gap: var(--g20);
}
.strap_intro_title{
    flex: 2;
    display: block;
}
.block_h2_type{
    display: block;
    line-height: 48px;
    padding-right: 30px;
    font-size: 40px;
    color: var(--bleu1);
    font-weight: 600;
}
.strap_intro_hentry{
    flex: 4;
    display: block;
}
.list_single_block{
    display: flex;
    flex-wrap: wrap;
    gap: var(--g40) var(--g20);
    justify-content: flex-start;
}

/*chapo*/
.chapo{
    display: block;
    margin-top: -6px;
    margin-bottom: 120px;
    position: relative;
    z-index: 4;
    overflow:  hidden;
}
.chapo img{
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.chapo_main{
    display: block;
    position: relative;
    z-index: 3;
}
.chapo_main::before{
    content: '';
    display: block;
    width: 674px;
    background: url('../img/pic_ill_chapo_filig.svg') no-repeat center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.chapo_content{
    display: flex;
    box-sizing: border-box;
    height: 601px;
    width: 619px;
    position: relative;
    z-index: 3;
}
.chapo_hentry{
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 63px 56px 46px;
    margin: auto 0;
    position: relative;
}
.chapo_hentry:after{
    content: '';
    display: block;
    width: 100%;
    background: var(--bleu1);
    border-radius: var(--r10);
    transform: var(--deg-2);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.chapo .page_title{
    color: var(--wh);
    position: relative;
    z-index: 3;
}
.chapo_sub_title{
    display: block;
    line-height: 50px;
    font-size: 40px;
    color: var(--wh);
    font-weight: 400;
    position: relative;
    z-index: 3;
}

/*expertise*/
#strap_first_anchor{
    margin-bottom: 114px;
}
#strap_first_anchor .strap_intro_wrapp{
    margin-bottom: 47px;
}
.list_single_expertise{
    display: block;
    width: var(--3-20);
    background: var(--beige2);
    border-radius: var(--r10);
}
.list_single_expertise_main{
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 37px 40px 40px;
    color: var(--wh);
    text-align: center;
}
.list_single_expertise_title{
    display: block;
    line-height: 29px;
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 700;
}
.list_single_expertise_labels_wrapp{
    display: block;
}
.list_single_expertise_labels_wrapp ul{
    display: flex;
    flex-wrap: wrap;
    gap: var(--g10);
    justify-content: center;
}
.list_single_expertise_label{
    display: inline-block;
    line-height: 13px;
    padding: 5px 15px;
    background: var(--beige6);
    border-radius: var(--r90);
    font-size: 11px;
    color: var(--blk);
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
.list_single_expertise_push{
    display: flex;
    box-sizing: border-box;
    width: var(--3-20);
    background: var(--wh);
    border: 1px solid var(--bleu4);
    border-radius: var(--r10);
}
a.list_single_expertise_push_main{
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 40px 60px 0;
    text-align: center;
    text-decoration: none;
}
.list_single_expertise_push .list_single_expertise_title{
    color: var(--bleu1);
}
a.list_single_expertise_push_main .page_hentry{
    padding-bottom: 44px;
    position: relative;
}
a.list_single_expertise_push_main .page_hentry::before{
    content: '';
    width: 42px;
    height: 42px;
    background: var(--bleu1);
    border: 1px solid var(--bleu1);
    border-radius: var(--r90);
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: all 0.3s;
}
a.list_single_expertise_push_main .page_hentry::after{
    content: '';
    display: block;
    width: 22px;
    height: 8px;
    mask: url('../img/pic_ill_arrow.svg') no-repeat center;
    -webkit-mask: url('../img/pic_ill_arrow.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--wh);
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 3;
    transition: all 0.3s;
}
a.list_single_expertise_push_main:hover .page_hentry::before{
    background: var(--wh);
    transition: all 0.3s;
}
a.list_single_expertise_push_main:hover .page_hentry::after{
    background-color: var(--bleu1);
    transition: all 0.3s;
}

/*Services*/
#strap_second_anchor{
    margin-bottom: 118px;
}
#strap_second_anchor .strap_intro_wrapp{
    margin-bottom: 23px;
}
.list_single_services_wrapp {
    display: flex;
    width: 100%;
    height: 598px;
    position: relative;
}
.list_single_services_wrapp img{
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    border-radius: var(--r20);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.list_single_services_wrapp .list_single_block{
    gap: var(--g5);
    align-items: center;
    margin: 0 16%;
    position: relative;
    z-index: 3;
}
.list_single_service{
    display: block;
    width: 625px;
    background-color: var(--wh);
    border-radius: var(--r10);
    box-shadow: 6px 3px 13px 0 rgba(238, 237, 237, 0.50);
}
.list_single_service:first-of-type{
    background-image:  url('../img/pic_ill_services_candidats.svg');
    background-position: top 37px left 63px;
    background-repeat: no-repeat;
    margin: auto auto 0 0;
    transform: var(--deg2);
}
.list_single_service:last-of-type{
    background-image:  url('../img/pic_ill_services_entreprises.svg');
    background-position: top 50px left 60px;
    background-repeat: no-repeat;
    margin: 0 0 auto auto;
    transform: var(--deg-2);
}
.list_single_service_main{
    display: block;
    padding: 41px 60px 14px 180px;
}
.list_single_service_main.page_hentry h3{
    margin-bottom: 9px;
}

/*pkoi*/
#strap_third_anchor{
    background: var(--beige6) url('../img/pic_ill_pkoi_bg.png') no-repeat bottom right -100px;
    margin-bottom: 82px;
    position: relative;
}
#strap_third_anchor::after{
    content: '';
    display: block;
    width: 100%;
    height: 62px;
    background: var(--wh);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.strap_third_anchor_content{
    display: block;
    padding: 63px 0 0;
}
#strap_third_anchor .strap_intro_wrapp{
    margin-bottom: 32px;
}
#strap_third_anchor .block_h2_type{
    padding-right: 0;
}
#strap_third_anchor .list_single_block {
    gap: var(--g40);
    align-items: center;
    margin: 0 16%;
    position: relative;
    z-index: 3;
}
.list_single_pkoi{
    display: block;
    width: var(--2-40);
    background: var(--wh);
    border-radius: var(--r10);
    box-shadow: 0 6px 17px 0 #F5F5F5;
}
.list_single_pkoi:first-of-type{
    transform: var(--deg-2);
}
.list_single_pkoi:last-of-type{
    transform: var(--deg2);
}
.list_single_pkoi_content{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 34px 14% 23px 19%;
}
.list_single_pkoi_pic_block{
    order: 1;
    display: block;
    width: 100%;
    margin: 0 0 28px;
    text-align: center;
}
.list_single_pkoi_pic{
    display: block;
    width: 201px;
    height: 201px;
    margin: 0 auto;
    position: relative;
}
.list_single_pkoi_pic img{
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    border-radius: var(--r180);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.list_single_pkoi_pic::before{
    content: '';
    width: 17px;
    height: 37px;
    mask: url('../img/pic_ill_zeub_top.svg') no-repeat center;
    -webkit-mask: url('../img/pic_ill_zeub_top.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--bleu3);
    position: absolute;
    top: 0;
    right: -14px;
    z-index: 3;
}
.list_single_pkoi_title{
    order: 2;
    display: block;
    width:  100%;
    line-height: 29px;
    font-size: 20px;
    color: var(--bleu1);
    font-weight: 700;
}
.list_single_pkoi_datas{
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: var(--g5);
    justify-content: flex-start;
    margin: 0 0 15px;
}
.list_single_pkoi_datas_job{
    display: inline-block;
    line-height: 13px;
    padding: 5px 15px;
    background: var(--bleu1);
    border-radius: var(--r90);
    font-size: 11px;
    color: var(--wh);
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
a.list_single_pkoi_datas_li{
    display: inline-block;
    width: 22px;
    height: 22px;
    background: var(--bleu1) url('../img/pic_ill_linkedin.svg') no-repeat center;
    border-radius: var(--r90);
    font-size: 0;
}
.list_single_pkoi_hentry{
    order: 4;
    position: relative;
}
.list_single_pkoi_hentry::before{
    content: '';
    width: 28px;
    height: 29px;
    mask: url('../img/pic_ill_zeub_hentry.svg') no-repeat center;
    -webkit-mask: url('../img/pic_ill_zeub_hentry.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--bleu3);
    position: absolute;
    top: 18px;
    left: -34px;
    z-index: 3;
}

/*témoignages*/
#strap_fourth_anchor{
    margin-bottom: 41px;
}
#strap_fourth_anchor .strap_intro_wrapp{
    margin-bottom: 20px;
}
#strap_fourth_anchor .list_single_block{
    gap: var(--g40) var(--g20);
}
.list_single_temo{
    display: block;
    width: var(--2-20);
}
.list_single_temo:first-of-type {
    transform: var(--deg-2);
}
.list_single_temo:last-of-type {
    margin-top: 80px;
    transform: var(--deg2);
}
.list_single_temo_main{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
    padding: 112px 60px 57px 95px;
    background-color: var(--bleu3);
    background-repeat: no-repeat;
    border-radius: var(--r10);
    color: var(--wh);
}
.list_single_temo:first-of-type .list_single_temo_main{
    background-image:  url('../img/pic_ill_temo_left.svg');
    background-position: top 48px left 55px;
}
.list_single_temo:last-of-type .list_single_temo_main{
    background-image:  url('../img/pic_ill_temo_right.svg');
    background-position: top 33px left 65px;
}
figcaption.list_single_temo_title{
    order: 2;
    display: inline-block;
    line-height: 13px;
    padding: 5px 15px;
    background: var(--beige6);
    border-radius: var(--r90);
    font-size: 11px;
    color: var(--blk);
    font-weight: 400;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
.list_single_temo_hentry{
    order: 1;
    position: relative;
}
.list_single_temo_hentry::before{
    content: '';
    width: 28px;
    height: 29px;
    mask: url('../img/pic_ill_zeub_hentry.svg') no-repeat center;
    -webkit-mask: url('../img/pic_ill_zeub_hentry.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--beige6);
    position: absolute;
    top: 0;
    left: -34px;
    z-index: 3;
}
.list_single_temo_hentry.page_hentry p{
    line-height: 25px;
}

/*annonces*/
#strap_job_anchor{
    margin-bottom: 88px;
}
#strap_job_anchor .strap_intro_title {
    margin-bottom: 30px;
}
#strap_job_anchor .list_single_block {
    gap: var(--g20);
}
.list_single_job {
    display: flex;
    box-sizing: border-box;
    width: var(--3-20);
    background: var(--wh);
    border: 1px solid var(--bleu4);
    border-radius: var(--r10);
    position: relative;
}
.list_single_job_main{
    display: block;
    box-sizing:  border-box;
    width:  100%;
    padding: 33px 30px 28px 40px;
}
.list_single_job_title {
    display: block;
    line-height: 29px;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--bleu1);
    font-weight: 700;
}
.list_single_job_infos_label{
    display: block;
    width: 100%;
    line-height: 13px;
    margin-bottom: 4px;
    font-size: 11px;
    color: var(--beige2);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}
.list_single_job_infos_value{
    display: block;
    width: 100%;
    line-height: 25px;
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 400;
}
.list_single_job_link{
    display: block;
    position: absolute;
    z-index: 4;
    inset: 0;
}
.list_single_job_link_span{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
.list_single_job::before{
    content: '';
    display: block;
    width: 42px;
    height: 42px;
    background: var(--beige2);
    border: 1px solid var(--beige2);
    border-radius: var(--r180);
    position: absolute;
    right: 30px;
    bottom: 40px;
    z-index: 2;
    transition: all 0.3s;
}
.list_single_job::after{
    content: '';
    display: block;
    width: 22px;
    height: 8px;
    mask: url('../img/pic_ill_arrow.svg') no-repeat center;
    -webkit-mask: url('../img/pic_ill_arrow.svg') no-repeat center;
    mask-size: auto;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--wh);
    position: absolute;
    right: 41px;
    bottom: 58px;
    z-index: 3;
    transition: all 0.3s;
}
.list_single_job:hover::before{
    background: var(--wh);
    transition: all 0.3s;
}
.list_single_job:hover::after{
    background-color: var(--beige2);
    transition: all 0.3s;
}

/*contact*/
#strap_fifth_anchor{
    display: block;
    background: var(--beige6);
    border-radius: var(--r10);
}
.strap_contact_wrapp{
    display: flex;
    flex-wrap: wrap;
    gap: var(--g52);
    padding: 60px 8.8% 41px 6.8%;
}
.strap_contact_cols{
    display: block;
    width: 380px;
}
.strap_contact_pic{
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 0 20px;
}
.strap_contact_user_block{
    display: flex;
    flex-wrap: wrap;
    gap: var(--g10);
    justify-content: flex-start;
    padding: 24px 0 0;
}
.strap_contact_user_item{
    display: block;
}
.strap_contact_user_item .list_single_pkoi_datas_job{
    margin-bottom: 10px;
}
a.strap_contact_user_item_li{
    display: block;
    width: 30px;
    height: 30px;
    background: var(--beige6);
    border: 1px solid var(--bleu1);
    border-radius: var(--r180);
    font-size: 0;
    transition: all 0.3s;
    position: relative;
}
a.strap_contact_user_item_li{
    display: block;
    width: 30px;
    height: 30px;
    background: var(--beige6);
    border: 1px solid var(--bleu1);
    border-radius: var(--r180);
    font-size: 0;
    transition: all 0.3s;
    position: relative;
}
a.strap_contact_user_item_li::before{
    content: '';
    width: 14px;
    height: 14px;
    mask: url('../img/pic_ill_linkedin.svg') no-repeat center;
    -webkit-mask: url('../img/pic_ill_linkedin.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--bleu1);
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    transition: all 0.3s;
}
a.strap_contact_user_item_li:hover{
    background: var(--bleu1);
    transition: all 0.3s;
}
a.strap_contact_user_item_li:hover::before{
    background-color: var(--beige6);
    transition: all 0.3s;
}
.strap_contact_form_block{
    display: block;
    flex: 1;
    padding: 0 0 0 25px;
}
.choice_form[hidden] {
    display: none !important;
}
.form_switcher_wrapp,
.strap_contact_form_block form p {
    display: flex;
    flex-wrap: wrap;
    gap: var(--g10) var(--g20);
    justify-content: flex-start;
    margin-bottom: 10px;
}
.strap_contact_form_block .form_switcher,
.strap_contact_form_block .form_item{
    display: block;
    width: var(--2-20);
}
.strap_contact_form_block .form_item.form_item_double{
    width: 100%;
}
.strap_contact_form_block .form_label{
    display: block;
    width: 100%;
    line-height: 13px;
    margin-bottom: 7px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 400;
}

.strap_contact_form_block .form_hint{
    display: block;
    width: 100%;
    line-height: 13px;
    margin-bottom: 7px;
    font-size: 11px;
    text-transform: none;
    letter-spacing: unset;
    font-weight: 400;
}

.strap_contact_form_block form p .wpcf7-form-control-wrap{
    display: block;
    width: 100%;
}
.strap_contact_form_block form p .wpcf7-form-control-wrap input[type="text"],
.strap_contact_form_block form p .wpcf7-form-control-wrap input[type="email"],
.strap_contact_form_block form p .wpcf7-form-control-wrap input[type="tel"]{
    display: block;
    box-sizing: border-box;
    line-height: 19px;
    width: 100%;
    padding: 10px;
    background: var(--wh);
    border-radius: var(--r5);
    border: none;
}
.strap_contact_form_block select#form_choice,
.strap_contact_form_block form p .wpcf7-form-control-wrap select{
    display: block;
    box-sizing: border-box;
    line-height: 19px;
    width: 100%;
    padding: 10px;
    background: var(--wh);
    border-radius: var(--r5);
    border: none;
}
.strap_contact_form_block form p .wpcf7-form-control-wrap textarea{
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 105px;
    padding: 10px;
    background: var(--wh);
    border-radius: var(--r5);
    border: none;
}
.strap_contact_form_block form input[type="submit"]{
    display: block;
    line-height: 22px;
    padding: 13px 28px;
    background: var(--beige2);
    border-radius: var(--r90);
    border: 1px solid var(--beige2);
    margin: 0 0 0 auto;
    font-size: 14px;
    color: var(--wh);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.strap_contact_form_block form input[type="submit"]:hover{
    background: var(--beige6);
    color: var(--beige2);
    transition: all 0.3s;
}
.strap_contact_form_block form .wpcf7-spinner{
    position: absolute;
}
.strap_contact_form_block form .wpcf7-list-item{
    margin: 0;
}
.strap_contact_form_block form .wpcf7-list-item-label::before,
.strap_contact_form_block form .wpcf7-list-item-label::after{
    content: unset;
}
.strap_contact_form_block form p .wpcf7-form-control-wrap[data-name="rgpd"] {
    display: inline;
}