styles.css 256 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446
  1. @charset "UTF-8";
  2. /*eql*/
  3. /*setup*/
  4. /*global*/
  5. @font-face {
  6. font-family: 'Font Awesome';
  7. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  8. font-weight: 400;
  9. font-style: normal; }
  10. /*marianne*/
  11. @font-face {
  12. font-family: 'Marianne';
  13. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  14. font-weight: 300;
  15. font-style: normal; }
  16. @font-face {
  17. font-family: 'Marianne';
  18. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  19. font-weight: 300;
  20. font-style: italic; }
  21. @font-face {
  22. font-family: 'Marianne';
  23. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  24. font-weight: 400;
  25. font-style: normal; }
  26. @font-face {
  27. font-family: 'Marianne';
  28. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  29. font-weight: 400;
  30. font-style: italic; }
  31. @font-face {
  32. font-family: 'Marianne';
  33. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  34. font-weight: 600;
  35. font-style: normal; }
  36. @font-face {
  37. font-family: 'Marianne';
  38. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  39. font-weight: 600;
  40. font-style: italic; }
  41. @font-face {
  42. font-family: 'Marianne';
  43. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  44. font-weight: 800;
  45. font-style: normal; }
  46. @font-face {
  47. font-family: 'Marianne';
  48. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  49. font-weight: 800;
  50. font-style: italic; }
  51. @font-face {
  52. font-family: 'Marianne';
  53. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  54. font-weight: 900;
  55. font-style: normal; }
  56. @font-face {
  57. font-family: 'Marianne';
  58. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  59. font-weight: 900;
  60. font-style: italic; }
  61. @font-face {
  62. font-family: 'Marianne';
  63. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  64. font-weight: 1000;
  65. font-style: normal; }
  66. @font-face {
  67. font-family: 'Marianne';
  68. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  69. font-weight: 1000;
  70. font-style: italic; }
  71. /* Source Code Pro */
  72. @font-face {
  73. font-family: 'Source Code Pro';
  74. src: url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff") format("woff");
  75. font-weight: 500;
  76. font-style: normal; }
  77. @font-face {
  78. font-family: 'Source Code Pro';
  79. src: url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff") format("woff");
  80. font-weight: 1000;
  81. font-style: normal; }
  82. /* Colors used for EQL */
  83. .layout-container {
  84. font-family: "Marianne", sans-serif;
  85. margin: none;
  86. top: 0%;
  87. left: 0%;
  88. width: 100%;
  89. overflow: hidden;
  90. display: flex;
  91. flex-flow: row wrap; }
  92. .layout-container header {
  93. flex: 0 0 100%; }
  94. .layout-container main {
  95. position: relative; }
  96. .layout-container footer {
  97. flex: 0 0 100%; }
  98. .layout-content {
  99. padding-top: 7rem;
  100. padding-bottom: 6rem; }
  101. .path-frontpage {
  102. margin: 0; }
  103. .path-node {
  104. margin: 0; }
  105. .path-faq {
  106. margin: 0; }
  107. .path-ressources {
  108. margin: 0; }
  109. .path-webform {
  110. margin: 0; }
  111. .path-projets {
  112. margin: 0; }
  113. .path-incubateur {
  114. margin: 0; }
  115. main {
  116. width: 100%; }
  117. .main-content {
  118. margin-top: 7rem; }
  119. .field--name-field-titre .field__item {
  120. color: #09398b;
  121. font-weight: 900;
  122. font-size: 2rem; }
  123. .field--name-field-titre .field__label {
  124. visibility: hidden; }
  125. .inter-titre {
  126. color: #009ee3; }
  127. a {
  128. text-decoration: none; }
  129. @media (max-width: 959px) {
  130. #block-headermenu {
  131. display: none; }
  132. .page-node-type-static .layout__region--top {
  133. height: 23vh; }
  134. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  135. margin-top: 11vh; }
  136. .page-node-type-static .node-id-20 .field--name-field-partenaires .paragraph--type--partenaire {
  137. display: flex;
  138. flex-direction: column; }
  139. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  140. width: 70%; }
  141. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  142. display: flex;
  143. flex-direction: column; }
  144. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  145. width: 100%; } }
  146. @media (max-width: 810px) {
  147. .page-node-type-static .layout__region--top {
  148. padding-bottom: 0rem; }
  149. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  150. margin-left: 8%;
  151. margin-right: 5%; }
  152. .page-node-type-static .layout__region--first .block-region-first {
  153. display: none; }
  154. .page-node-type-static .layout__region--second {
  155. flex: 0 1 80%;
  156. margin: auto; }
  157. .page-node-type-static .layout__region--third .block-region-third {
  158. margin: auto; } }
  159. @media (max-width: 479px) {
  160. #header-top #block-logogouv img {
  161. min-width: 45px;
  162. width: 70%;
  163. height: auto; }
  164. #header-top #block-logoeql img {
  165. min-width: 45px;
  166. width: 80%;
  167. height: auto; }
  168. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  169. display: flex;
  170. flex-direction: column; }
  171. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  172. width: 90%;
  173. display: flex;
  174. margin: auto; } }
  175. /*pages*/
  176. /*
  177. @import "pages/partials/header_footer";
  178. @import "pages/home";*/
  179. .path-node.page-node-type-static .layout-container {
  180. overflow: unset; }
  181. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  182. padding-bottom: 3rem;
  183. height: 30vh; }
  184. @media (max-width: 810px) {
  185. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  186. padding-bottom: 0rem; } }
  187. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  188. width: fit-content;
  189. margin-left: 11%;
  190. margin-top: 15vh; }
  191. @media (max-width: 810px) {
  192. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  193. margin-left: 8%;
  194. margin-right: 5%; } }
  195. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  196. display: inline;
  197. font-family: 'Source Code Pro';
  198. font-size: 2rem;
  199. font-weight: 800;
  200. text-transform: uppercase; }
  201. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  202. position: relative; }
  203. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  204. display: flex;
  205. justify-content: flex-end;
  206. position: -webkit-sticky;
  207. position: sticky;
  208. top: 10rem; }
  209. @media (max-width: 810px) {
  210. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  211. display: none; } }
  212. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  213. display: flex;
  214. width: 50%;
  215. background-color: white;
  216. padding-right: 2rem; }
  217. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  218. display: flex;
  219. font-size: 1rem;
  220. font-weight: 1000;
  221. color: #09398b;
  222. border-bottom: 1px solid #009ee3;
  223. padding-bottom: 0.8rem;
  224. padding-right: 1rem;
  225. margin-top: 1rem;
  226. scroll-margin-top: 7em; }
  227. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  228. text-decoration: underline; }
  229. @media (max-width: 810px) {
  230. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  231. flex: 0 1 80%;
  232. margin: auto; } }
  233. @media (max-width: 479px) {
  234. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  235. padding-top: 5rem; } }
  236. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  237. margin-top: 1rem;
  238. background-color: white; }
  239. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  240. font-size: 1.5rem;
  241. font-weight: 1000;
  242. font-family: 'Source Code Pro', monospace;
  243. color: #09398b;
  244. text-transform: uppercase;
  245. margin-top: 2rem;
  246. margin-bottom: 0.8rem; }
  247. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  248. text-transform: none !important; }
  249. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  250. width: 100%;
  251. height: auto; }
  252. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  253. padding-right: 2rem; }
  254. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  255. margin-top: 0; }
  256. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  257. margin-top: 1rem;
  258. display: flex;
  259. flex-direction: column;
  260. width: 70%; }
  261. @media (max-width: 810px) {
  262. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  263. margin: auto; } }
  264. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  265. height: fit-content;
  266. border: 2px solid #009ee3;
  267. background-color: white; }
  268. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers {
  269. min-height: 4rem;
  270. background: white;
  271. color: #009ee3;
  272. padding-left: 0.8rem;
  273. padding-top: 1rem;
  274. padding-bottom: 1rem;
  275. margin-bottom: 1rem; }
  276. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers span:nth-of-type(2) {
  277. display: none; }
  278. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf {
  279. height: inherit;
  280. margin: auto; }
  281. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf ::before {
  282. content: url("../images/pictos/noun_Download_file_307900.svg");
  283. min-width: 25px;
  284. height: auto;
  285. padding-right: 0.5rem; }
  286. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf a {
  287. hyphens: auto;
  288. display: inline-flex;
  289. color: #009ee3;
  290. font-weight: 800; }
  291. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  292. margin: auto;
  293. height: fit-content;
  294. border: 2px solid #009ee3;
  295. min-height: 2rem;
  296. background: white;
  297. color: #009ee3;
  298. padding-left: 0.8rem;
  299. padding-top: 1rem;
  300. padding-bottom: 1rem;
  301. margin-bottom: 1rem; }
  302. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  303. display: inline-flex;
  304. justify-items: center;
  305. color: #009ee3;
  306. font-weight: 800; }
  307. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  308. content: url("../images/pictos/noun_External Link_674151.svg");
  309. min-width: 25px;
  310. height: auto;
  311. padding-right: 0.5rem; }
  312. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  313. display: none; }
  314. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  315. margin-top: 3rem; }
  316. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  317. font-size: 0.8rem;
  318. color: black;
  319. font-weight: 900; }
  320. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  321. border: 2px solid #009ee3;
  322. background-color: white;
  323. margin-bottom: 1rem;
  324. padding: 1rem; }
  325. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  326. display: flex;
  327. flex-direction: column; }
  328. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-type-de-ressource {
  329. order: 2;
  330. text-transform: uppercase;
  331. color: #009ee3;
  332. font-weight: 900;
  333. font-size: 0.8rem; }
  334. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title {
  335. order: 3; }
  336. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 {
  337. margin: 0; }
  338. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 a {
  339. color: black;
  340. font-size: 1rem;
  341. font-weight: 900;
  342. font-style: italic; }
  343. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-sous-titre {
  344. order: 4; }
  345. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- {
  346. order: 5;
  347. font-weight: 800; }
  348. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- p {
  349. margin: 0; }
  350. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  351. display: none; }
  352. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition p {
  353. margin: 0; }
  354. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition .field__label {
  355. display: none; }
  356. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images {
  357. order: 1;
  358. width: 25%; }
  359. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images img {
  360. width: 100%;
  361. height: auto; }
  362. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-date-de-parution {
  363. order: 6; }
  364. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-date-de-parution .field__label {
  365. display: none; }
  366. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs {
  367. order: 7;
  368. display: flex;
  369. margin-top: 0.8rem;
  370. flex-direction: row;
  371. flex-wrap: wrap; }
  372. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__label {
  373. display: none; }
  374. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  375. display: flex;
  376. flex-direction: row; }
  377. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  378. margin-right: 0.5rem;
  379. padding-right: 0.3rem;
  380. font-size: 0.8rem; }
  381. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  382. background: #09398b;
  383. color: white;
  384. font-weight: 800;
  385. vertical-align: super;
  386. padding-left: 0.1rem;
  387. padding-right: 0.1rem;
  388. display: inline-flex; }
  389. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div ul.links.inline {
  390. display: none; }
  391. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  392. width: 100vw;
  393. height: 600px;
  394. border-bottom: 5px solid #009ee3;
  395. background: rgba(0, 158, 227, 0.2); }
  396. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div {
  397. height: 100%; }
  398. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages {
  399. height: 100%; }
  400. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  401. height: 90%; }
  402. @media (max-width: 479px) {
  403. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  404. display: flex;
  405. flex-direction: column;
  406. width: 80%; } }
  407. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  408. color: black;
  409. line-height: 1.5rem;
  410. width: 80%;
  411. height: 600px;
  412. margin: auto; }
  413. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child {
  414. display: grid;
  415. grid-template-columns: 1fr repeat(9, 1fr) 1fr; }
  416. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-images {
  417. order: 1;
  418. grid-column: 1 /span 9;
  419. grid-row: 1 / span 6; }
  420. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-images .field__item img {
  421. width: inherit;
  422. max-height: 550px;
  423. object-fit: cover; }
  424. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-date {
  425. grid-column: 9 / span 9;
  426. grid-row: 2;
  427. order: 2; }
  428. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-date div {
  429. display: flex !important;
  430. flex-direction: row; }
  431. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-date time {
  432. display: flex;
  433. flex-direction: row;
  434. font-size: 0.9rem;
  435. font-weight: 800;
  436. padding-right: 1rem;
  437. width: fit-content; }
  438. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-lieu {
  439. display: flex !important;
  440. flex-direction: row;
  441. grid-column: 10 / span 12;
  442. grid-row: 2; }
  443. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  444. display: none; }
  445. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-lieu::before {
  446. content: " | ";
  447. margin-right: 2rem; }
  448. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-title {
  449. display: inline-flex;
  450. grid-column: 9 / span 9;
  451. grid-row: 3;
  452. order: 3; }
  453. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-title h2 a {
  454. color: #009ee3 !important; }
  455. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-sous-titre {
  456. display: inline-block;
  457. grid-column: 9 / span 9;
  458. grid-row: 4;
  459. order: 4;
  460. margin-top: 0.3rem;
  461. font-weight: 800; }
  462. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  463. width: 100%; }
  464. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child h2 {
  465. margin: 0; }
  466. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child a {
  467. color: black;
  468. grid-column: 1/span 8; }
  469. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .inline.links {
  470. padding-top: none !important;
  471. list-style: none;
  472. width: fit-content;
  473. align-self: flex-end;
  474. padding-right: 1rem; }
  475. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .inline.links a {
  476. display: none; }
  477. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite div:first-child .field--name-field-actu-type {
  478. display: inline-block;
  479. grid-column: 9 / span 7;
  480. grid-row: 5;
  481. order: 5;
  482. padding-top: 1rem; }
  483. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  484. visibility: hidden; }
  485. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  486. padding-top: 2rem;
  487. padding-bottom: 4rem; }
  488. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  489. width: 80%;
  490. margin: auto; }
  491. @media (max-width: 479px) {
  492. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  493. width: 80%; } }
  494. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  495. display: flex;
  496. flex-direction: row;
  497. flex-wrap: wrap; }
  498. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) :nth-child(4) {
  499. order: 3; }
  500. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  501. z-index: 95;
  502. align-self: flex-end;
  503. width: fit-content;
  504. height: fit-content;
  505. padding: 0.4rem 1rem;
  506. font-size: 0.8rem;
  507. margin: 0;
  508. background-color: white;
  509. border: 2px solid #009ee3;
  510. list-style: none; }
  511. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  512. text-transform: uppercase;
  513. font-weight: 700;
  514. color: #009ee3;
  515. display: inline-flex;
  516. align-items: center; }
  517. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a:after {
  518. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>'); }
  519. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-images .field__item img {
  520. width: 15rem;
  521. height: auto; }
  522. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  523. display: none; }
  524. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  525. flex: 1 1 50px;
  526. padding-left: 1rem; }
  527. @media (max-width: 479px) {
  528. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  529. padding-left: 0em; } }
  530. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  531. background-color: white;
  532. font-size: 1.5rem;
  533. width: 110%;
  534. padding-bottom: 2rem;
  535. margin-block-start: 0;
  536. text-align: start !important; }
  537. @media (max-width: 479px) {
  538. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  539. font-size: 1.2rem;
  540. width: 100%; } }
  541. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  542. flex: 0 0 80%;
  543. padding-top: 4rem;
  544. margin: auto; }
  545. @media (max-width: 479px) {
  546. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  547. flex: 0 0 100%; } }
  548. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos .field__items .field__item:nth-of-type(1) {
  549. display: none; }
  550. .path-frontpage .block-views-blockprojets-block-4 {
  551. border-top: 5px solid #009ee3;
  552. background: rgba(0, 158, 227, 0.2);
  553. padding-top: 2rem;
  554. padding-bottom: 4rem; }
  555. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  556. width: 80%;
  557. margin: auto;
  558. padding-top: 1rem;
  559. padding-bottom: 5rem;
  560. text-transform: uppercase;
  561. color: #e1000f;
  562. font-family: 'Source Code Pro';
  563. font-weight: 1000; }
  564. .path-frontpage .block-views-blockprojets-block-4 .view-projets {
  565. width: 80%;
  566. margin: auto; }
  567. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content {
  568. display: flex;
  569. flex-direction: row;
  570. justify-content: space-between; }
  571. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row {
  572. width: 49%; }
  573. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet {
  574. color: #09398b;
  575. line-height: 1.5rem; }
  576. @media (max-width: 479px) {
  577. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet {
  578. padding-left: 0rem;
  579. padding-right: 0rem;
  580. padding-top: 2rem; } }
  581. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child {
  582. display: flex;
  583. flex-direction: column; }
  584. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child a {
  585. color: #09398b; }
  586. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-photo {
  587. order: 1; }
  588. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-photo .field__item {
  589. display: none; }
  590. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-photo .field__item:first-child {
  591. display: block; }
  592. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-photo img {
  593. width: 100%;
  594. object-fit: cover;
  595. height: fit-content; }
  596. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-adresse {
  597. order: 2;
  598. display: flex;
  599. text-transform: uppercase;
  600. font-size: 0.9rem;
  601. font-weight: 800;
  602. margin-top: 0.8rem;
  603. line-height: 0.6rem; }
  604. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-adresse .address {
  605. display: flex;
  606. flex-direction: row;
  607. margin: 0; }
  608. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  609. padding-top: 0 !important;
  610. padding-bottom: 0 !important; }
  611. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  612. content: ",";
  613. margin-right: 0.3rem; }
  614. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-adresse .address .country {
  615. padding-top: 0 !important;
  616. padding-bottom: 0 !important; }
  617. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-sous-titre {
  618. margin-top: 0.5rem;
  619. font-size: 0.9rem;
  620. font-weight: 800;
  621. order: 4; }
  622. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-title {
  623. order: 3;
  624. margin-top: 0.5rem;
  625. font-size: 0.9rem;
  626. font-weight: 800; }
  627. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-title h2 {
  628. margin: 0; }
  629. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-incube {
  630. order: 4;
  631. color: #e1000f;
  632. margin-top: 0.8rem;
  633. font-size: 0.7rem; }
  634. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-region {
  635. order: 5;
  636. color: black;
  637. font-size: 0.7rem; }
  638. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-type-de-moa {
  639. order: 6; }
  640. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-type-de-moa a {
  641. color: black;
  642. font-size: 0.7rem; }
  643. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-type-de-projet {
  644. order: 7; }
  645. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-type-de-projet a {
  646. color: black;
  647. font-size: 0.7rem; }
  648. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .views-row .node-type-projet div:first-child .field--name-field-etape-du-projet {
  649. order: 8;
  650. color: black;
  651. font-size: 0.7rem; }
  652. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  653. display: flex;
  654. flex-flow: row-reverse;
  655. top: -109px;
  656. position: relative;
  657. right: 200px; }
  658. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary {
  659. height: fit-content;
  660. padding: 0.4rem 1rem;
  661. font-size: 0.8rem;
  662. margin: 0;
  663. background-color: white;
  664. border: 2px solid #009ee3;
  665. list-style: none;
  666. display: inline-flex; }
  667. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f a {
  668. text-transform: uppercase;
  669. font-weight: 700;
  670. color: #009ee3;
  671. display: inline-flex;
  672. align-items: center; }
  673. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f a::after {
  674. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>'); }
  675. .path-frontpage .block-views-blockprojets-block-2 #leaflet-map-view-projets-block-2 {
  676. height: 500px !important; }
  677. .node-id-20 {
  678. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  679. background-repeat: no-repeat;
  680. background-position-y: 7rem;
  681. max-width: 100vw;
  682. background-size: contain; }
  683. .node-id-20 .layout__region--top {
  684. padding-bottom: 3rem;
  685. height: 30vh; }
  686. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  687. font-family: 'Source Code Pro';
  688. font-size: 2rem;
  689. font-weight: 800;
  690. color: white;
  691. background-color: #009ee3;
  692. text-transform: uppercase; }
  693. .field--name-field-partenaires {
  694. padding-top: 3rem; }
  695. .field--name-field-partenaires .paragraph--type--partenaire {
  696. background-color: white;
  697. width: 100%;
  698. padding-bottom: 3rem;
  699. display: grid;
  700. grid-template-columns: repeat(7, 1fr);
  701. grid-template-rows: repeat(auto-fill); }
  702. @media (max-width: 810px) {
  703. .field--name-field-partenaires .paragraph--type--partenaire {
  704. display: flex;
  705. flex-direction: column; } }
  706. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  707. grid-column: 1 / 2;
  708. grid-row: 2;
  709. margin-top: 2rem;
  710. padding-right: 1rem; }
  711. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  712. grid-column: 2 / 8;
  713. grid-row: 1;
  714. font-weight: 800; }
  715. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  716. grid-column: 2 / 8;
  717. grid-row: 2; }
  718. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  719. grid-column: 2 / 8;
  720. grid-row: 3; }
  721. .field--name-field-partenaires a {
  722. color: black;
  723. font-weight: 800; }
  724. .field--name-field-partenaires a svg {
  725. display: none; }
  726. .field--name-field-equipes {
  727. padding-top: 3rem; }
  728. .field--name-field-equipes .paragraph--type--equipe {
  729. background-color: white;
  730. width: 100%; }
  731. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  732. width: 100%;
  733. padding-bottom: 3rem;
  734. display: grid;
  735. grid-template-columns: repeat(7, 1fr);
  736. grid-template-rows: repeat(auto-fill); }
  737. @media (max-width: 810px) {
  738. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  739. display: flex;
  740. flex-direction: column; } }
  741. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo {
  742. grid-column: 1 / 2;
  743. grid-row: 1 / span 3;
  744. padding-right: 1rem; }
  745. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo img {
  746. border-radius: 50%; }
  747. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-prenom {
  748. grid-column: 2 / span 3;
  749. grid-row: 1;
  750. font-weight: 800; }
  751. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-nom {
  752. grid-column: 2 / span 3;
  753. grid-row: 2; }
  754. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-fonction {
  755. grid-column: 2 / 8;
  756. grid-row: 3; }
  757. .field--name-field-equipes a {
  758. color: black;
  759. font-weight: 800; }
  760. .field--name-field-equipes a svg {
  761. display: none; }
  762. .path-node.page-node-type-actualite .layout-container {
  763. overflow: unset; }
  764. .path-node.page-node-type-actualite .offresdeservices.layout-content.region-content#block-contenudelapageprincipale {
  765. background: none !important; }
  766. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  767. background: linear-gradient(to bottom, rgba(0, 158, 227, 0.2) 60%, white 40%);
  768. padding-bottom: 4rem; }
  769. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  770. display: grid;
  771. grid-template-columns: 1fr repeat(8, 1fr) 1fr; }
  772. @media (max-width: 810px) {
  773. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  774. display: flex;
  775. flex-direction: column; } }
  776. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-block-contente6f826c7-4a3e-479b-8e83-2245dee7f931 {
  777. grid-column: 1 / span 10;
  778. width: 100%;
  779. font-family: 'Source Code Pro';
  780. font-size: 1.5rem;
  781. font-weight: 800;
  782. color: white;
  783. background-color: #009ee3;
  784. text-transform: uppercase;
  785. padding-left: 13%;
  786. padding-top: 1rem;
  787. padding-bottom: 0.5rem;
  788. vertical-align: middle; }
  789. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-block-contente6f826c7-4a3e-479b-8e83-2245dee7f931 a {
  790. color: white; }
  791. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  792. padding-top: 2rem;
  793. grid-column: 2; }
  794. @media (max-width: 810px) {
  795. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  796. margin-left: 10%; } }
  797. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  798. grid-column: 2 /span 7;
  799. margin: 0; }
  800. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  801. font-family: "Source Code Pro";
  802. font-size: 2.5rem;
  803. font-weight: 500; }
  804. @media (max-width: 810px) {
  805. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  806. width: 70%;
  807. margin-left: 10%;
  808. margin-right: 10%;
  809. font-size: 1.9em; } }
  810. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  811. grid-column: 2 / span 3;
  812. text-transform: uppercase;
  813. color: #09398b;
  814. font-size: 1.2rem;
  815. font-weight: 800; }
  816. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date .field--name-field-date {
  817. display: flex;
  818. flex-direction: row;
  819. justify-content: flex-start; }
  820. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date .field--name-field-date .field__item {
  821. padding-right: 2 rem; }
  822. @media (max-width: 810px) {
  823. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date .field--name-field-date {
  824. margin-left: 10%;
  825. font-size: 1rem; } }
  826. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu {
  827. grid-column: 2 / span 4;
  828. text-transform: uppercase;
  829. color: #09398b;
  830. font-size: 1.2rem;
  831. font-weight: 800; }
  832. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu .field--name-field-lieu {
  833. display: flex;
  834. flex-direction: row;
  835. justify-content: flex-start; }
  836. @media (max-width: 810px) {
  837. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu .field--name-field-lieu {
  838. margin-left: 10%;
  839. font-size: 1rem; } }
  840. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  841. grid-column: 2 /span 7;
  842. margin-top: 1rem;
  843. font-weight: 800; }
  844. @media (max-width: 810px) {
  845. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  846. margin-left: 10%; } }
  847. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  848. grid-column: 5 / span 9; }
  849. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  850. padding-top: 2rem;
  851. width: 600px;
  852. max-height: 360px;
  853. object-fit: cover; }
  854. @media (max-width: 1008px) {
  855. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  856. width: 100%; }
  857. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  858. padding-top: 2rem;
  859. width: 100%;
  860. object-fit: cover; } }
  861. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  862. margin-left: 0em;
  863. font-size: 0.8rem; }
  864. @media (max-width: 810px) {
  865. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  866. margin-left: 5%;
  867. margin-right: 5%;
  868. font-size: 0.7rem; } }
  869. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  870. display: flex;
  871. justify-content: flex-end;
  872. position: -webkit-sticky;
  873. position: sticky;
  874. top: 10rem; }
  875. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  876. display: flex;
  877. justify-content: flex-end;
  878. width: 50%;
  879. background-color: white;
  880. padding-right: 2rem; }
  881. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  882. display: flex;
  883. font-size: 1rem;
  884. font-weight: 1000;
  885. color: #09398b;
  886. border-bottom: 1px solid #009ee3;
  887. padding-bottom: 0.5rem;
  888. padding-right: 1rem;
  889. margin-bottom: 0.8rem; }
  890. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  891. text-decoration: underline; }
  892. @media (max-width: 810px) {
  893. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  894. display: none; } }
  895. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  896. flex: 0 1 50%; }
  897. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  898. width: 90%; }
  899. @media (max-width: 810px) {
  900. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  901. width: 100%; } }
  902. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  903. margin-top: 0; }
  904. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .field--type-text-with-summary {
  905. background-color: white; }
  906. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  907. background-color: white; }
  908. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--name-field-titre {
  909. font-size: 1.5rem;
  910. font-weight: 1000;
  911. font-family: 'Source Code Pro';
  912. color: #09398b;
  913. text-transform: uppercase;
  914. margin-top: 2rem;
  915. margin-bottom: 0.8rem; }
  916. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  917. text-transform: none !important; }
  918. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  919. width: 100%;
  920. height: auto; }
  921. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--type-text-long {
  922. padding-right: 2rem; }
  923. @media (max-width: 810px) {
  924. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--type-text-long {
  925. padding-right: 0; } }
  926. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  927. margin-top: 0; }
  928. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  929. color: black;
  930. text-decoration: underline; }
  931. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  932. display: none; }
  933. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  934. overflow-y: visible !important; }
  935. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  936. font-size: 1.5rem;
  937. font-weight: 1000;
  938. font-family: 'Source Code Pro';
  939. color: #09398b;
  940. text-transform: uppercase;
  941. margin-top: 2rem;
  942. margin-bottom: 0.8rem; }
  943. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  944. display: flex;
  945. flex-direction: row;
  946. justify-content: space-between; }
  947. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire {
  948. display: flex;
  949. flex-direction: column;
  950. align-items: center; }
  951. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire .field--name-field-lien {
  952. padding-top: 1rem; }
  953. @media (max-width: 810px) {
  954. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  955. flex: 0 1 80%;
  956. margin: auto; } }
  957. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  958. display: flex;
  959. flex-direction: column;
  960. width: 65%; }
  961. @media (max-width: 810px) {
  962. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  963. margin: auto; } }
  964. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  965. height: fit-content;
  966. border: 2px solid #009ee3;
  967. background-color: white;
  968. margin-bottom: 1rem;
  969. min-height: 4rem;
  970. color: #009ee3;
  971. padding-left: 1rem;
  972. padding-top: 1rem; }
  973. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  974. display: none; }
  975. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  976. height: inherit;
  977. margin: auto; }
  978. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  979. content: url("../images/pictos/noun_Download_file_307900.svg");
  980. min-width: 30px;
  981. height: auto;
  982. padding-right: 1rem; }
  983. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  984. hyphens: auto;
  985. display: inline-flex;
  986. align-items: center;
  987. color: #009ee3;
  988. font-weight: 800; }
  989. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  990. margin: auto;
  991. height: fit-content;
  992. border: 2px solid #009ee3;
  993. min-height: 4rem;
  994. background: white;
  995. color: #009ee3;
  996. padding-left: 1rem;
  997. padding-top: 1rem;
  998. margin-bottom: 1rem; }
  999. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1000. display: inline-flex;
  1001. align-items: center;
  1002. color: #009ee3;
  1003. font-weight: 800; }
  1004. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1005. content: url("../images/pictos/noun_External Link_674151.svg");
  1006. min-width: 30px;
  1007. height: auto;
  1008. padding-right: 1rem; }
  1009. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1010. display: none; }
  1011. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1012. margin-top: 3rem; }
  1013. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  1014. font-size: 0.8rem;
  1015. color: black;
  1016. font-weight: 900; }
  1017. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  1018. border: 2px solid #009ee3;
  1019. padding: 1rem;
  1020. height: fit-content;
  1021. margin-bottom: 1rem;
  1022. background-color: white;
  1023. display: flex;
  1024. flex-direction: column; }
  1025. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  1026. display: flex;
  1027. flex-direction: column; }
  1028. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-type-de-ressource {
  1029. order: 2;
  1030. text-transform: uppercase;
  1031. color: #009ee3;
  1032. font-weight: 900;
  1033. font-size: 0.8rem; }
  1034. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title {
  1035. order: 3; }
  1036. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 {
  1037. margin: 0; }
  1038. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 a {
  1039. color: black;
  1040. font-size: 1rem;
  1041. font-weight: 900;
  1042. font-style: italic; }
  1043. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-sous-titre {
  1044. order: 4; }
  1045. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- {
  1046. order: 5;
  1047. font-weight: 800; }
  1048. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- p {
  1049. margin: 0; }
  1050. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  1051. display: none; }
  1052. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition p {
  1053. margin: 0; }
  1054. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition .field__label {
  1055. display: none; }
  1056. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images {
  1057. display: none;
  1058. order: 1;
  1059. width: 25%; }
  1060. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images img {
  1061. width: 100%;
  1062. height: auto;
  1063. margin: auto; }
  1064. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs {
  1065. order: 6;
  1066. display: flex;
  1067. margin-top: 2rem;
  1068. flex-direction: row;
  1069. flex-wrap: wrap; }
  1070. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  1071. margin-right: 0.5rem;
  1072. padding-left: 0.3rem;
  1073. padding-right: 0.3rem;
  1074. font-size: 0.8rem; }
  1075. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  1076. background: #09398b;
  1077. color: white;
  1078. font-weight: 800;
  1079. vertical-align: super;
  1080. padding-left: 0.1rem;
  1081. padding-right: 0.1rem;
  1082. display: inline-flex; }
  1083. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div ul.links.inline {
  1084. display: none; }
  1085. .node-id-35 .region-content {
  1086. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  1087. background-repeat: no-repeat;
  1088. max-width: 100vw;
  1089. background-size: contain; }
  1090. .node-id-35 .layout__region--top {
  1091. padding-bottom: 3rem;
  1092. height: 30vh; }
  1093. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1094. display: none;
  1095. height: inherit; }
  1096. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1097. font-family: 'Source Code Pro';
  1098. font-size: 2rem;
  1099. font-weight: 800;
  1100. color: white;
  1101. background-color: #009ee3;
  1102. text-transform: uppercase; }
  1103. .node-id-3 {
  1104. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1105. background-repeat: no-repeat;
  1106. background-position-y: 7rem;
  1107. max-width: 100vw;
  1108. background-size: contain; }
  1109. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1110. display: none;
  1111. height: inherit; }
  1112. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1113. color: #009ee3;
  1114. background-color: white; }
  1115. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1116. background: #009ee3 !important;
  1117. color: white !important; }
  1118. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  1119. color: white !important; }
  1120. .node-id-3 .block-entity-fieldnodefield-liens {
  1121. display: none; }
  1122. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1123. background: #009ee3;
  1124. color: white; }
  1125. .node-id-3 .block-entity-fieldnodefield-ress {
  1126. margin-top: 3rem; }
  1127. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  1128. font-size: 0.8rem;
  1129. color: black;
  1130. font-weight: 900; }
  1131. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  1132. display: flex;
  1133. flex-direction: column;
  1134. border: 2px solid #009ee3;
  1135. padding: 1rem;
  1136. height: fit-content;
  1137. margin-bottom: 1rem;
  1138. background-color: white; }
  1139. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  1140. border-top: 1px solid #009ee3;
  1141. padding-top: 1rem; }
  1142. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  1143. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1144. align-self: flex-end; }
  1145. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  1146. color: black;
  1147. font-size: 1.4rem;
  1148. font-weight: 600; }
  1149. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  1150. font-weight: 800; }
  1151. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  1152. margin: 0; }
  1153. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  1154. display: none; }
  1155. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  1156. margin: 0; }
  1157. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  1158. display: none; }
  1159. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  1160. display: none;
  1161. width: 50%; }
  1162. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  1163. width: 100%;
  1164. height: auto; }
  1165. .path-actualites {
  1166. background-color: rgba(0, 158, 227, 0.2);
  1167. margin: 0; }
  1168. .path-actualites .block-region-content {
  1169. display: grid;
  1170. grid-template-columns: 1fr 8fr 1fr;
  1171. margin: auto;
  1172. padding-top: 3rem; }
  1173. .path-actualites .block-region-content .block-views {
  1174. grid-column: 2; }
  1175. .path-actualites .block-region-content .block-views .view-content {
  1176. display: flex;
  1177. flex-direction: row;
  1178. flex-wrap: wrap; }
  1179. .path-actualites .block-region-content .block-views .view-content .views-row {
  1180. width: 25%;
  1181. flex: 0 0 25%; }
  1182. @media (max-width: 810px) {
  1183. .path-actualites .block-region-content .block-views .view-content {
  1184. flex-direction: column; }
  1185. .path-actualites .block-region-content .block-views .view-content .views-row {
  1186. width: 100%; } }
  1187. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  1188. padding-top: 0; }
  1189. .path-actualites .block-region-content .block-views .node-type-actualite {
  1190. color: #09398b;
  1191. line-height: 1.5rem;
  1192. padding: 0.5rem;
  1193. padding-right: 1rem;
  1194. padding-left: 1rem; }
  1195. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  1196. display: flex;
  1197. flex-direction: column; }
  1198. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  1199. color: #09398b; }
  1200. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  1201. order: 1; }
  1202. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  1203. width: 100%;
  1204. max-height: 175px;
  1205. object-fit: cover; }
  1206. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  1207. display: block;
  1208. content: url('data:image/svg+xml,<svg width="160" height="25" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(9,57,139)" stroke-width="2.5"/></svg>'); }
  1209. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  1210. margin-top: 0.5rem;
  1211. font-size: 0.9rem;
  1212. font-weight: 800;
  1213. order: 5; }
  1214. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  1215. order: 2;
  1216. display: flex;
  1217. flex-direction: row;
  1218. justify-content: flex-start; }
  1219. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  1220. padding-left: 1rem;
  1221. content: "|"; }
  1222. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  1223. font-size: 0.9rem;
  1224. font-weight: 800;
  1225. padding-right: 1rem;
  1226. width: fit-content; }
  1227. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  1228. order: 3;
  1229. display: flex;
  1230. flex-direction: row;
  1231. justify-content: flex-start; }
  1232. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  1233. display: none; }
  1234. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  1235. order: 4;
  1236. font-size: 0.9rem; }
  1237. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  1238. width: 100%; }
  1239. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  1240. margin: 0; }
  1241. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  1242. padding-top: none !important;
  1243. list-style: none;
  1244. width: fit-content;
  1245. align-self: flex-end;
  1246. padding-right: 1rem; }
  1247. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  1248. display: none; }
  1249. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  1250. order: 6;
  1251. padding-top: 1rem; }
  1252. .node-id-4 {
  1253. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1254. background-repeat: no-repeat;
  1255. background-position-y: 7rem;
  1256. max-width: 100vw;
  1257. background-size: contain; }
  1258. .node-id-4 #block-contenudelapageprincipale {
  1259. scroll-margin: 8rem; }
  1260. .node-id-4 .layout__region--top {
  1261. padding-bottom: 3rem;
  1262. height: 30vh; }
  1263. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1264. display: none;
  1265. height: inherit; }
  1266. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1267. font-family: 'Source Code Pro';
  1268. font-size: 2rem;
  1269. font-weight: 800;
  1270. color: white;
  1271. background-color: #009ee3;
  1272. text-transform: uppercase; }
  1273. .node-id-4 .layout__region--second {
  1274. width: 25%; }
  1275. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  1276. background-color: white; }
  1277. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1278. font-size: 1.5rem;
  1279. font-weight: 1000;
  1280. font-family: 'Source Code Pro';
  1281. color: #09398b;
  1282. text-transform: uppercase; }
  1283. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1284. text-transform: none !important; }
  1285. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1286. padding-right: 2rem; }
  1287. .node-id-5 .region-content {
  1288. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  1289. background-repeat: no-repeat;
  1290. max-width: 100vw;
  1291. background-size: contain; }
  1292. .node-id-5 .layout__region--top {
  1293. padding-bottom: 3rem;
  1294. height: 30vh; }
  1295. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1296. font-family: 'Source Code Pro';
  1297. font-size: 2rem;
  1298. font-weight: 800;
  1299. color: white;
  1300. background-color: #009ee3;
  1301. text-transform: uppercase; }
  1302. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  1303. color: black;
  1304. text-decoration: underline; }
  1305. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  1306. display: none; }
  1307. .path-faq #block-contenudelapageprincipale h2 {
  1308. font-family: 'Source Code Pro';
  1309. font-size: 2rem;
  1310. font-weight: 800;
  1311. color: #009ee3;
  1312. background-color: white;
  1313. text-transform: uppercase;
  1314. width: fit-content;
  1315. margin-left: 10%;
  1316. margin-top: 8rem; }
  1317. @media (max-width: 810px) {
  1318. .path-faq #block-contenudelapageprincipale h2 {
  1319. margin-left: 8%;
  1320. margin-right: 1%; } }
  1321. .path-faq #block-contenudelapageprincipale .block-region-content {
  1322. display: grid;
  1323. grid-template-columns: 1fr repeat(4, 2fr) 1fr; }
  1324. @media (max-width: 810px) {
  1325. .path-faq #block-contenudelapageprincipale .block-region-content {
  1326. display: flex;
  1327. flex-direction: column;
  1328. margin: auto; } }
  1329. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1330. grid-column: 2 / span 3; }
  1331. @media (max-width: 810px) {
  1332. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1333. width: 80%;
  1334. margin: auto; } }
  1335. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  1336. display: none;
  1337. grid-column: 5;
  1338. grid-row: 1 /span 2;
  1339. height: fit-content;
  1340. flex-direction: column;
  1341. max-width: fit-content;
  1342. margin-left: 2rem;
  1343. padding: 1rem;
  1344. background-color: #009ee3; }
  1345. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  1346. text-align: center; }
  1347. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  1348. margin-top: 1rem;
  1349. display: block;
  1350. content: url("../images/pictos/picto_faq.svg"); }
  1351. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  1352. font-size: 0.8rem;
  1353. font-weight: 1000;
  1354. color: #09398b;
  1355. text-transform: uppercase; }
  1356. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  1357. display: flex;
  1358. flex-direction: column;
  1359. margin-top: 0;
  1360. margin-left: 1.5rem;
  1361. margin-right: 1.5rem;
  1362. text-align: center; }
  1363. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  1364. font-weight: 800;
  1365. color: white;
  1366. font-size: 1.3rem; }
  1367. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  1368. margin-left: auto;
  1369. padding-top: 1rem;
  1370. display: block;
  1371. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1372. @media (max-width: 810px) {
  1373. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  1374. margin: auto;
  1375. padding: 0rem; }
  1376. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  1377. text-align: center; }
  1378. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  1379. margin-top: 1rem;
  1380. display: block;
  1381. content: url("../images/pictos/picto_faq_2.svg"); }
  1382. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  1383. font-size: 0.8rem;
  1384. font-weight: 1000;
  1385. color: #09398b;
  1386. text-transform: uppercase; } }
  1387. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  1388. margin-top: 2rem;
  1389. grid-column: 2 / span 3;
  1390. display: grid;
  1391. grid-template-columns: 1fr 1fr 1fr; }
  1392. @media (max-width: 810px) {
  1393. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  1394. width: 80%;
  1395. margin: auto;
  1396. margin-top: 1rem; } }
  1397. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  1398. grid-column: 1 / span 3; }
  1399. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  1400. border-bottom: 1px solid #009ee3;
  1401. padding-bottom: 2rem; }
  1402. @media (max-width: 810px) {
  1403. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  1404. padding-bottom: 1rem; } }
  1405. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  1406. display: none; }
  1407. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  1408. cursor: pointer; }
  1409. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  1410. font-family: 'Source Code Pro';
  1411. font-weight: 500;
  1412. color: #09398b;
  1413. font-size: 1.3rem; }
  1414. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p:after {
  1415. display: inline-flex;
  1416. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" rotate="-45" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  1417. float: right; }
  1418. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question :hover:after {
  1419. display: inline-flex;
  1420. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" rotate="-45" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  1421. float: right; }
  1422. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  1423. display: none; }
  1424. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  1425. display: none; }
  1426. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers span:nth-of-type(2) {
  1427. display: none; }
  1428. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf span:nth-of-type(2) {
  1429. display: none; }
  1430. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf ::before {
  1431. display: inline-block;
  1432. content: url("../images/pictos/noun_Download_file_307900.svg");
  1433. width: 30px;
  1434. height: 30px;
  1435. padding-right: 0.8rem; }
  1436. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf a {
  1437. display: inline-flex;
  1438. align-items: center;
  1439. color: black;
  1440. font-weight: 800; }
  1441. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  1442. display: none; }
  1443. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  1444. display: flex;
  1445. flex-direction: row;
  1446. justify-content: left;
  1447. align-items: center;
  1448. color: black;
  1449. font-weight: 800; }
  1450. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a:before {
  1451. display: inline-block;
  1452. content: url("../images/pictos/noun_External Link_674151.svg");
  1453. width: 30px;
  1454. height: 30px;
  1455. padding-right: 0.8rem; }
  1456. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  1457. display: none; }
  1458. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  1459. display: none;
  1460. margin-top: 0.5rem; }
  1461. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  1462. color: black;
  1463. text-decoration: underline;
  1464. font-weight: 800; }
  1465. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  1466. display: block; }
  1467. .node-id-6 {
  1468. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  1469. background-repeat: no-repeat;
  1470. background-position-y: 7rem;
  1471. max-width: 100vw;
  1472. background-size: contain; }
  1473. .node-id-6 .layout__region--top {
  1474. padding-bottom: 3rem;
  1475. height: 30vh; }
  1476. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1477. display: none;
  1478. height: inherit; }
  1479. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1480. font-family: 'Source Code Pro';
  1481. font-size: 2rem;
  1482. font-weight: 800;
  1483. color: white;
  1484. background-color: #009ee3;
  1485. text-transform: uppercase; }
  1486. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  1487. color: black;
  1488. text-decoration: underline; }
  1489. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  1490. display: none; }
  1491. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1492. display: none; }
  1493. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  1494. width: 100%;
  1495. font-family: 'Source Code Pro';
  1496. font-size: 1.5rem;
  1497. font-weight: 800;
  1498. color: white;
  1499. background-color: #009ee3;
  1500. text-transform: uppercase;
  1501. padding-left: 13%;
  1502. padding-top: 1rem;
  1503. padding-bottom: 0.5rem;
  1504. vertical-align: middle; }
  1505. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  1506. margin-top: 2rem;
  1507. margin-left: 13%;
  1508. color: #009ee3;
  1509. text-transform: uppercase;
  1510. font-weight: 800; }
  1511. @media (max-width: 810px) {
  1512. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  1513. margin-left: 9%;
  1514. margin-right: 9%; } }
  1515. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1516. margin-left: 13%;
  1517. font-size: 2rem;
  1518. font-weight: 600; }
  1519. @media (max-width: 810px) {
  1520. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1521. margin-left: 9%;
  1522. margin-right: 9%; } }
  1523. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  1524. margin-left: 13%; }
  1525. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  1526. margin-bottom: 0; }
  1527. @media (max-width: 810px) {
  1528. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  1529. margin-left: 9%;
  1530. margin-right: 9%; } }
  1531. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  1532. margin-left: 13%; }
  1533. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  1534. font-size: 1.5rem;
  1535. font-weight: 800; }
  1536. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  1537. margin: 0; }
  1538. @media (max-width: 810px) {
  1539. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  1540. margin-left: 9%;
  1541. margin-right: 9%; } }
  1542. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  1543. margin-left: 13%; }
  1544. @media (max-width: 810px) {
  1545. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  1546. margin-left: 9%;
  1547. margin-right: 9%; } }
  1548. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  1549. margin-left: 13%; }
  1550. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  1551. display: inline-flex;
  1552. margin-top: 2rem; }
  1553. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  1554. background: #09398b;
  1555. margin-right: 1rem;
  1556. padding-left: 0.3rem;
  1557. padding-right: 0.3rem;
  1558. color: white;
  1559. font-weight: 800;
  1560. vertical-align: middle; }
  1561. @media (max-width: 810px) {
  1562. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  1563. margin-left: 9%;
  1564. margin-right: 9%; }
  1565. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  1566. display: flex;
  1567. flex-direction: row;
  1568. flex-wrap: wrap; }
  1569. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  1570. margin-bottom: 0.5rem; } }
  1571. .page-node-type-ressource .layout__region--first {
  1572. margin-top: 3rem;
  1573. position: relative; }
  1574. .page-node-type-ressource .layout__region--first .block-region-first {
  1575. display: flex;
  1576. justify-content: flex-end;
  1577. position: sticky;
  1578. top: 7rem; }
  1579. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1580. display: flex;
  1581. width: 50%;
  1582. background-color: white;
  1583. padding-right: 2rem; }
  1584. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  1585. display: flex;
  1586. font-size: 1rem;
  1587. font-weight: 1000;
  1588. color: #09398b;
  1589. border-bottom: 1px solid #009ee3;
  1590. padding-bottom: 0.5rem;
  1591. padding-right: 1rem; }
  1592. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  1593. text-decoration: underline; }
  1594. .page-node-type-ressource .layout__region--second {
  1595. margin-top: 3rem; }
  1596. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  1597. background-color: white; }
  1598. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1599. font-size: 1.5rem;
  1600. font-weight: 1000;
  1601. font-family: 'Source Code Pro';
  1602. color: #09398b;
  1603. text-transform: uppercase; }
  1604. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1605. text-transform: none !important; }
  1606. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  1607. width: 100%;
  1608. height: auto; }
  1609. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1610. padding-right: 2rem; }
  1611. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  1612. margin-top: 0; }
  1613. @media (max-width: 810px) {
  1614. .page-node-type-ressource .layout__region--second {
  1615. flex: 0 1 80%;
  1616. margin: auto; } }
  1617. .page-node-type-ressource .layout__region--third {
  1618. margin-top: 3rem; }
  1619. @media (max-width: 810px) {
  1620. .page-node-type-ressource .layout__region--third {
  1621. flex: 0 1 80%;
  1622. margin-left: 10%; } }
  1623. .page-node-type-ressource .layout__region--third .block-region-third {
  1624. display: flex;
  1625. flex-direction: column;
  1626. width: 70%; }
  1627. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  1628. height: fit-content;
  1629. border: 2px solid #009ee3;
  1630. background-color: white; }
  1631. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  1632. min-height: 4rem;
  1633. background: white;
  1634. color: #009ee3;
  1635. padding-left: 1rem;
  1636. padding-top: 1rem;
  1637. margin-bottom: 1rem; }
  1638. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  1639. display: none; }
  1640. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  1641. height: inherit;
  1642. margin: auto; }
  1643. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  1644. content: url("../images/pictos/noun_Download_file_307900.svg");
  1645. min-width: 30px;
  1646. height: auto;
  1647. padding-right: 1rem; }
  1648. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  1649. hyphens: auto;
  1650. display: inline-flex;
  1651. align-items: center;
  1652. color: #009ee3;
  1653. font-weight: 800; }
  1654. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1655. margin: auto;
  1656. height: fit-content;
  1657. border: 2px solid #009ee3;
  1658. min-height: 4rem;
  1659. background: white;
  1660. color: #009ee3;
  1661. padding-left: 1rem;
  1662. padding-top: 1rem;
  1663. margin-bottom: 1rem; }
  1664. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1665. display: inline-flex;
  1666. align-items: center;
  1667. color: #009ee3;
  1668. font-weight: 800; }
  1669. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1670. content: url("../images/pictos/noun_External Link_674151.svg");
  1671. min-width: 30px;
  1672. height: auto;
  1673. padding-right: 1rem; }
  1674. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1675. display: none; }
  1676. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1677. margin-top: 3rem; }
  1678. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  1679. font-size: 0.8rem;
  1680. color: black;
  1681. font-weight: 900;
  1682. margin-bottom: 1rem; }
  1683. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  1684. border: 2px solid #009ee3;
  1685. padding: 1rem;
  1686. height: fit-content;
  1687. margin-bottom: 1rem;
  1688. background-color: white;
  1689. display: flex;
  1690. flex-direction: column; }
  1691. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  1692. display: flex;
  1693. flex-direction: column; }
  1694. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-type-de-ressource {
  1695. order: 2;
  1696. text-transform: uppercase;
  1697. color: #009ee3;
  1698. font-weight: 900;
  1699. font-size: 0.8rem; }
  1700. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title {
  1701. order: 3; }
  1702. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title h2 {
  1703. margin: 0; }
  1704. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title h2 a {
  1705. color: black;
  1706. font-size: 1rem;
  1707. font-weight: 900;
  1708. font-style: italic; }
  1709. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-sous-titre {
  1710. order: 4; }
  1711. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- {
  1712. order: 5;
  1713. font-weight: 800; }
  1714. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- p {
  1715. margin: 0; }
  1716. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  1717. display: none; }
  1718. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-edition p {
  1719. margin: 0; }
  1720. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-edition .field__label {
  1721. display: none; }
  1722. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-images {
  1723. order: 1;
  1724. width: 25%; }
  1725. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-images img {
  1726. width: 100%;
  1727. height: auto; }
  1728. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs {
  1729. order: 6;
  1730. display: flex;
  1731. margin-top: 2rem;
  1732. flex-direction: row;
  1733. flex-wrap: wrap; }
  1734. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  1735. margin-right: 0.5rem;
  1736. padding-left: 0.3rem;
  1737. padding-right: 0.3rem;
  1738. font-size: 0.8rem; }
  1739. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  1740. background: #09398b;
  1741. color: white;
  1742. font-weight: 800;
  1743. vertical-align: super;
  1744. padding-left: 0.1rem;
  1745. padding-right: 0.1rem;
  1746. display: inline-flex; }
  1747. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div ul.links.inline {
  1748. display: none; }
  1749. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  1750. padding-top: 3rem;
  1751. padding-bottom: 3rem;
  1752. vertical-align: middle;
  1753. color: white; }
  1754. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1755. font-family: 'Source Code Pro';
  1756. font-size: 2rem;
  1757. font-weight: 800;
  1758. color: white;
  1759. background-color: #009ee3;
  1760. text-transform: uppercase;
  1761. width: fit-content;
  1762. margin-left: 10%;
  1763. margin-top: 8rem; }
  1764. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1765. display: grid;
  1766. grid-template-columns: 1fr repeat(4, 2fr) 1fr; }
  1767. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  1768. grid-column: 2 / span 3;
  1769. margin-top: 4rem; }
  1770. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  1771. margin: auto;
  1772. background: white; }
  1773. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  1774. margin: 0; }
  1775. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  1776. grid-column: 5;
  1777. margin-top: 4rem;
  1778. background-color: #009ee3;
  1779. height: fit-content;
  1780. min-height: fit-content;
  1781. width: 200px;
  1782. margin-left: 2rem;
  1783. aspect-ratio: 1/1;
  1784. display: flex; }
  1785. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  1786. display: flex;
  1787. flex-direction: column;
  1788. text-align: center;
  1789. margin: auto;
  1790. padding: 1rem; }
  1791. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  1792. display: block;
  1793. font-weight: 800;
  1794. color: white;
  1795. font-size: 1.3rem; }
  1796. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a:after {
  1797. margin-left: 80%;
  1798. padding-top: 0.5rem;
  1799. display: block;
  1800. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1801. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  1802. grid-column: 2 / span 3; }
  1803. @media (max-width: 810px) {
  1804. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  1805. grid-column: 2 / span 4; } }
  1806. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  1807. margin: auto; }
  1808. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  1809. display: none;
  1810. background: white; }
  1811. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  1812. display: flex;
  1813. flex-wrap: wrap;
  1814. margin-top: 3rem; }
  1815. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  1816. width: 50%; }
  1817. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service {
  1818. display: flex;
  1819. justify-content: space-between;
  1820. padding: 1rem;
  1821. height: fit-content;
  1822. margin-bottom: 1rem;
  1823. background-color: white;
  1824. margin-right: 1rem; }
  1825. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service::after {
  1826. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1827. align-self: flex-end; }
  1828. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type {
  1829. display: grid;
  1830. grid-template-columns: 1fr 1fr 1fr;
  1831. grid-template-rows: repeat(6 auto); }
  1832. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-type-de-protagoniste {
  1833. grid-column: 1 / span 3;
  1834. grid-row: 1;
  1835. margin-bottom: 1rem;
  1836. text-transform: uppercase;
  1837. font-weight: 900;
  1838. font-size: 0.8rem; }
  1839. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-photo {
  1840. grid-column: 1;
  1841. grid-row: 2 / span 6;
  1842. margin-right: 1rem;
  1843. max-height: 170px; }
  1844. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-photo img {
  1845. max-width: 100%;
  1846. object-fit: cover;
  1847. height: auto;
  1848. max-height: 95%; }
  1849. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-prenom {
  1850. grid-column: 2;
  1851. grid-row: 2;
  1852. padding-right: 0.5rem;
  1853. text-transform: uppercase;
  1854. font-weight: 800;
  1855. font-size: 1rem; }
  1856. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-nom {
  1857. grid-column: 3;
  1858. grid-row: 2;
  1859. text-transform: uppercase;
  1860. font-weight: 800;
  1861. font-size: 1rem; }
  1862. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-structure {
  1863. grid-column: 2 / span 3;
  1864. grid-row: 3;
  1865. text-transform: uppercase;
  1866. font-weight: 800;
  1867. font-size: 0.8rem; }
  1868. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-title {
  1869. grid-column: 2 / span 3;
  1870. grid-row: 4;
  1871. font-size: 1.3rem; }
  1872. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-title a {
  1873. color: black; }
  1874. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-localisation {
  1875. grid-column: 2 / span 3;
  1876. grid-row: 5;
  1877. text-transform: uppercase;
  1878. font-weight: 800;
  1879. font-size: 00.8rem; }
  1880. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-date-de-proposition {
  1881. display: inline-flex;
  1882. grid-column: 2 /span 3;
  1883. grid-row: 6;
  1884. font-size: 0.8rem;
  1885. padding-top: 1rem;
  1886. justify-content: flex-start; }
  1887. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-date-de-proposition time {
  1888. justify-self: flex-start; }
  1889. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-date-de-proposition::before {
  1890. content: "proposé le";
  1891. hyphens: none;
  1892. padding-right: 0.5rem; }
  1893. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-5 {
  1894. border: 2px solid #ff000f; }
  1895. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-6 {
  1896. border: 2px solid #a01a27; }
  1897. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-7 {
  1898. border: 2px solid #c7d74a; }
  1899. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-8 {
  1900. border: 2px solid #ff6453; }
  1901. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-9 {
  1902. border: 2px solid #6f6d7d; }
  1903. @media (max-width: 810px) {
  1904. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  1905. flex-direction: column; }
  1906. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  1907. width: 100%; } }
  1908. @media (max-width: 810px) {
  1909. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1910. display: flex;
  1911. flex-direction: column;
  1912. padding: 2rem; } }
  1913. .page-node-type-offre-de-service {
  1914. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  1915. background-repeat: no-repeat;
  1916. background-position-y: 7rem;
  1917. max-width: 100vw;
  1918. background-size: contain; }
  1919. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  1920. margin-top: 2rem;
  1921. margin-left: 13%;
  1922. display: grid;
  1923. grid-template-columns: auto auto 1fr;
  1924. grid-template-rows: repeat(6 auto); }
  1925. @media (max-width: 810px) {
  1926. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  1927. margin-left: 8%; } }
  1928. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  1929. width: fit-content;
  1930. grid-column: 1;
  1931. grid-row: 1 / span 6;
  1932. width: 250px;
  1933. height: 250px;
  1934. margin-right: 2rem; }
  1935. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  1936. width: 100%;
  1937. height: auto; }
  1938. @media (max-width: 810px) {
  1939. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  1940. width: 90px;
  1941. height: 90px; } }
  1942. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  1943. background: white;
  1944. width: fit-content;
  1945. grid-column: 2 /span 3;
  1946. grid-row: 1;
  1947. text-transform: uppercase;
  1948. font-weight: 900;
  1949. font-size: 0.8rem; }
  1950. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  1951. color: #ff000f; }
  1952. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  1953. color: #a01a27; }
  1954. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  1955. color: #c7d74a; }
  1956. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  1957. color: #ff6453; }
  1958. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  1959. color: #6f6d7d; }
  1960. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  1961. background: white;
  1962. width: fit-content;
  1963. grid-column: 2;
  1964. grid-row: 2;
  1965. padding-right: 0.5rem;
  1966. text-transform: uppercase;
  1967. font-weight: 900;
  1968. font-size: 1.5rem; }
  1969. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  1970. background: white;
  1971. width: fit-content;
  1972. grid-column: 3;
  1973. grid-row: 2;
  1974. text-transform: uppercase;
  1975. font-weight: 900;
  1976. font-size: 1.5rem; }
  1977. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  1978. background: white;
  1979. width: fit-content;
  1980. grid-column: 2 / span 3;
  1981. grid-row: 3;
  1982. text-transform: uppercase;
  1983. font-weight: 800;
  1984. font-size: 1.2rem;
  1985. margin-top: 0.5rem; }
  1986. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  1987. content: url('data:image/svg+xml,<svg width="160" height="30" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(0,158,227)" stroke-width="3"/></svg>'); }
  1988. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1989. background: white;
  1990. width: fit-content;
  1991. grid-column: 2 / span 3;
  1992. grid-row: 4;
  1993. font-size: 2.5rem;
  1994. font-family: "Source Code Pro";
  1995. width: 70%; }
  1996. @media (max-width: 810px) {
  1997. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1998. font-size: 1.2rem; } }
  1999. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  2000. color: black; }
  2001. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  2002. background: white;
  2003. width: fit-content;
  2004. grid-column: 2 / span 3;
  2005. grid-row: 5;
  2006. text-transform: uppercase;
  2007. font-weight: 800;
  2008. font-size: 0.8rem;
  2009. margin-top: 1.5rem; }
  2010. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  2011. background: white;
  2012. width: fit-content;
  2013. grid-column: 2 / span 3;
  2014. grid-row: 6;
  2015. font-size: 0.8rem;
  2016. padding-top: 1rem; }
  2017. .page-node-type-offre-de-service .layout__region--second {
  2018. margin-top: 3rem;
  2019. margin-left: 20%;
  2020. margin-right: 2rem; }
  2021. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  2022. background: white; }
  2023. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  2024. margin: 0; }
  2025. @media (max-width: 810px) {
  2026. .page-node-type-offre-de-service .layout__region--second {
  2027. margin-left: 10%; } }
  2028. .page-node-type-offre-de-service .layout__region--third {
  2029. margin-top: 3rem; }
  2030. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  2031. display: flex;
  2032. flex-direction: column;
  2033. width: 70%; }
  2034. @media (max-width: 810px) {
  2035. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  2036. margin: auto; } }
  2037. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  2038. background: #009ee3;
  2039. color: white;
  2040. text-transform: uppercase;
  2041. font-weight: 900;
  2042. font-size: 0.8rem;
  2043. padding-top: 1rem;
  2044. padding-left: 1rem;
  2045. padding-right: 1rem; }
  2046. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  2047. background: #009ee3;
  2048. color: white;
  2049. font-weight: 600;
  2050. padding-left: 1rem;
  2051. padding-right: 1rem;
  2052. padding-bottom: 1rem; }
  2053. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  2054. color: white;
  2055. hyphens: auto; }
  2056. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  2057. display: none; }
  2058. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  2059. display: none;
  2060. background: #009ee3;
  2061. color: white;
  2062. font-weight: 600;
  2063. padding-left: 1rem;
  2064. padding-right: 1rem;
  2065. padding-bottom: 1rem; }
  2066. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  2067. height: fit-content;
  2068. border: 2px solid #009ee3;
  2069. background-color: white;
  2070. margin-top: 1rem; }
  2071. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  2072. min-height: 4rem;
  2073. background: white;
  2074. color: #009ee3;
  2075. padding-left: 1rem;
  2076. padding-top: 1rem;
  2077. margin-bottom: 1rem; }
  2078. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  2079. display: none; }
  2080. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  2081. height: inherit;
  2082. margin: auto; }
  2083. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  2084. content: url("../images/pictos/noun_Download_file_307900.svg");
  2085. min-width: 50px;
  2086. height: auto;
  2087. padding-right: 1rem; }
  2088. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  2089. hyphens: auto;
  2090. display: inline-flex;
  2091. align-items: center;
  2092. color: #009ee3;
  2093. font-weight: 800; }
  2094. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  2095. margin-top: 1rem; }
  2096. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2097. margin: auto;
  2098. height: fit-content;
  2099. border: 2px solid #009ee3;
  2100. min-height: 4rem;
  2101. background: white;
  2102. color: #009ee3;
  2103. padding-left: 1rem;
  2104. padding-top: 1rem;
  2105. margin-bottom: 1rem; }
  2106. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  2107. display: inline-flex;
  2108. align-items: center;
  2109. color: #009ee3;
  2110. font-weight: 800; }
  2111. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  2112. content: url("../images/pictos/noun_External Link_674151.svg");
  2113. min-width: 50px;
  2114. height: auto;
  2115. padding-right: 1rem; }
  2116. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  2117. display: none; }
  2118. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2119. margin-top: 3rem; }
  2120. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  2121. font-size: 0.8rem;
  2122. color: black;
  2123. font-weight: 900;
  2124. margin-bottom: 1rem; }
  2125. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  2126. display: flex;
  2127. flex-direction: column;
  2128. border: 2px solid #009ee3;
  2129. padding: 1rem;
  2130. height: fit-content;
  2131. margin-bottom: 1rem;
  2132. background-color: white; }
  2133. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type {
  2134. border-top: 1px solid #009ee3;
  2135. padding-top: 1rem; }
  2136. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type::after {
  2137. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2138. align-self: flex-end; }
  2139. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-title h2 {
  2140. margin: 0; }
  2141. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-title a {
  2142. color: black;
  2143. font-size: 1.4rem;
  2144. font-weight: 600; }
  2145. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- {
  2146. font-weight: 800; }
  2147. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- p {
  2148. margin: 0; }
  2149. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  2150. display: none; }
  2151. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-edition p {
  2152. margin: 0; }
  2153. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-edition .field__label {
  2154. display: none; }
  2155. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-images {
  2156. display: none;
  2157. width: 50%; }
  2158. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-images img {
  2159. width: 100%;
  2160. height: auto; }
  2161. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-type-de-ressource {
  2162. display: inline-flex;
  2163. margin-top: 2rem;
  2164. background: #09398b;
  2165. margin-right: 1rem;
  2166. padding-left: 0.3rem;
  2167. padding-right: 0.3rem;
  2168. color: white;
  2169. font-weight: 800;
  2170. vertical-align: middle; }
  2171. .path-ressources.annuairederecherche .layout-content {
  2172. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  2173. background-repeat: no-repeat;
  2174. background-position-y: 7rem;
  2175. max-width: 100vw;
  2176. background-size: cover; }
  2177. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  2178. padding-top: 8rem; }
  2179. @media (max-width: 479px) {
  2180. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  2181. padding-top: 5rem;
  2182. padding-left: 5rem; } }
  2183. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  2184. padding-top: 3rem;
  2185. padding-bottom: 3rem;
  2186. vertical-align: middle;
  2187. color: white; }
  2188. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  2189. display: inline;
  2190. font-family: 'Source Code Pro';
  2191. font-size: 2rem;
  2192. font-weight: 800;
  2193. color: white;
  2194. background-color: #009ee3;
  2195. text-transform: uppercase;
  2196. width: fit-content;
  2197. margin-left: 10%;
  2198. margin-top: 8rem; }
  2199. @media (max-width: 479px) {
  2200. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  2201. margin-right: 37%;
  2202. margin-bottom: 2rem;
  2203. margin-left: 0; } }
  2204. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  2205. padding-top: 3rem;
  2206. flex: 0 1 50%;
  2207. margin-left: 20%; }
  2208. @media (max-width: 479px) {
  2209. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  2210. flex: 0 1 80%;
  2211. margin: 0; } }
  2212. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  2213. background-color: white;
  2214. margin-bottom: 4rem; }
  2215. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ {
  2216. margin-bottom: 3rem; }
  2217. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo {
  2218. grid-column: 1;
  2219. grid-row: 1 /span 3;
  2220. margin-right: 1rem;
  2221. max-height: 8rem; }
  2222. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo a {
  2223. height: 8rem;
  2224. width: 8rem; }
  2225. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo a img {
  2226. height: 100%;
  2227. width: 100%;
  2228. object-fit: contain; }
  2229. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-title {
  2230. grid-column: 2;
  2231. font-weight: 800;
  2232. background-color: white; }
  2233. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-body {
  2234. background-color: white;
  2235. grid-column: 2; }
  2236. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-body p {
  2237. margin: 0; }
  2238. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien {
  2239. background-color: white;
  2240. grid-column: 2; }
  2241. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien a {
  2242. color: black;
  2243. text-decoration: underline; }
  2244. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien a svg {
  2245. display: none; }
  2246. .path-webform .region-content [aria-label="Message d'avertissement"] {
  2247. display: none; }
  2248. .path-webform .region-content .block-system-main-block h2 {
  2249. display: none; }
  2250. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  2251. display: flex;
  2252. flex-direction: row;
  2253. flex-wrap: wrap;
  2254. flex-basis: auto;
  2255. justify-content: flex-start; }
  2256. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  2257. width: 100%;
  2258. font-family: 'Source Code Pro';
  2259. font-size: 1.5rem;
  2260. font-weight: 800;
  2261. color: white;
  2262. background-color: #009ee3;
  2263. text-transform: uppercase;
  2264. padding-left: 13%;
  2265. padding-top: 2rem;
  2266. padding-bottom: 2rem;
  2267. vertical-align: middle; }
  2268. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  2269. width: 100%;
  2270. font-family: 'Source Code Pro';
  2271. font-size: 2rem;
  2272. font-weight: 800;
  2273. color: white;
  2274. background-color: #009ee3;
  2275. text-transform: uppercase;
  2276. width: fit-content;
  2277. margin-left: 13%;
  2278. margin-top: 8rem; }
  2279. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  2280. margin-top: 10vh;
  2281. margin-left: 13%;
  2282. margin-right: 20%;
  2283. width: 60%; }
  2284. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  2285. margin-left: 13%;
  2286. margin-right: 20%;
  2287. width: 60%;
  2288. display: flex;
  2289. flex-direction: row;
  2290. flex-wrap: wrap;
  2291. margin-top: 2rem; }
  2292. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  2293. content: "*";
  2294. color: red;
  2295. font-size: 2rem;
  2296. padding-left: 0.5rem; }
  2297. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  2298. width: 100%; }
  2299. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  2300. width: 90%;
  2301. height: 5rem; }
  2302. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  2303. margin-left: 13%;
  2304. margin-right: 20%;
  2305. width: 60%;
  2306. display: flex;
  2307. flex-direction: row;
  2308. flex-wrap: wrap;
  2309. margin-top: 2rem; }
  2310. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  2311. content: "*";
  2312. color: red;
  2313. font-size: 2rem;
  2314. padding-left: 0.5rem; }
  2315. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  2316. width: 100%; }
  2317. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  2318. width: 90%; }
  2319. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  2320. margin-left: 13%;
  2321. width: 27%;
  2322. display: flex;
  2323. flex-direction: row;
  2324. flex-wrap: wrap;
  2325. margin-top: 2rem; }
  2326. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  2327. content: "*";
  2328. color: red;
  2329. font-size: 2rem;
  2330. padding-left: 0.5rem; }
  2331. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  2332. width: 100%; }
  2333. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  2334. width: 90%; }
  2335. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  2336. margin-right: 20%;
  2337. width: 27%;
  2338. display: flex;
  2339. flex-direction: row;
  2340. flex-wrap: wrap;
  2341. margin-top: 2rem;
  2342. margin-right: 3rem; }
  2343. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  2344. width: 100%; }
  2345. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  2346. width: 100%; }
  2347. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  2348. margin-left: 13%;
  2349. margin-right: 20%;
  2350. width: 60%;
  2351. display: flex;
  2352. flex-direction: row;
  2353. flex-wrap: wrap;
  2354. margin-top: 2rem; }
  2355. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  2356. content: "*";
  2357. color: red;
  2358. font-size: 2rem;
  2359. padding-left: 0.5rem; }
  2360. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  2361. width: 100%; }
  2362. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  2363. width: 90%; }
  2364. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  2365. margin-left: 13%;
  2366. margin-right: 20%;
  2367. width: 60%;
  2368. display: flex;
  2369. flex-direction: row;
  2370. flex-wrap: wrap;
  2371. margin-top: 2rem; }
  2372. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  2373. content: "*";
  2374. color: red;
  2375. font-size: 2rem;
  2376. padding-left: 0.5rem; }
  2377. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  2378. width: 100%; }
  2379. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  2380. width: 90%; }
  2381. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  2382. margin-left: 13%;
  2383. margin-right: 20%;
  2384. width: 60%;
  2385. display: flex;
  2386. flex-direction: row;
  2387. flex-wrap: wrap;
  2388. margin-top: 2rem; }
  2389. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  2390. content: "*";
  2391. color: red;
  2392. font-size: 2rem;
  2393. padding-left: 1rem; }
  2394. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  2395. width: 100%; }
  2396. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  2397. width: 90%; }
  2398. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  2399. width: 100%; }
  2400. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  2401. margin-left: 13%;
  2402. margin-right: 20%;
  2403. width: 60%;
  2404. display: flex;
  2405. flex-direction: row;
  2406. flex-wrap: wrap;
  2407. margin-top: 2rem; }
  2408. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  2409. width: 100%; }
  2410. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  2411. width: 90%;
  2412. height: 3rem; }
  2413. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  2414. margin-left: 13%;
  2415. margin-right: 20%;
  2416. width: 60%;
  2417. display: flex;
  2418. flex-direction: row;
  2419. flex-wrap: wrap;
  2420. margin-top: 2rem; }
  2421. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  2422. width: 100%; }
  2423. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  2424. margin-left: 13%;
  2425. margin-right: 20%;
  2426. width: 60%;
  2427. display: flex;
  2428. flex-direction: row;
  2429. flex-wrap: wrap;
  2430. margin-top: 2rem; }
  2431. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet label {
  2432. width: 100%; }
  2433. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  2434. width: 90%;
  2435. height: 3rem; }
  2436. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  2437. margin-left: 13%;
  2438. width: 28%;
  2439. display: flex;
  2440. flex-direction: row;
  2441. flex-wrap: wrap;
  2442. margin-top: 2rem; }
  2443. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  2444. content: "*";
  2445. color: red;
  2446. font-size: 2rem;
  2447. padding-left: 0.5rem; }
  2448. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  2449. width: 100%; }
  2450. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  2451. width: 90%; }
  2452. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  2453. margin-right: 20%;
  2454. width: 29%;
  2455. display: flex;
  2456. flex-direction: row;
  2457. flex-wrap: wrap;
  2458. margin-top: 2rem;
  2459. margin-right: 3rem; }
  2460. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  2461. content: "*";
  2462. color: red;
  2463. font-size: 2rem;
  2464. padding-left: 0.5rem; }
  2465. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  2466. width: 100%; }
  2467. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  2468. width: 90%; }
  2469. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  2470. width: 60%; }
  2471. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  2472. width: 30%;
  2473. align-self: flex-end;
  2474. background-color: #009ee3;
  2475. text-transform: uppercase;
  2476. color: white;
  2477. font-size: 1.2rem;
  2478. font-weight: 600;
  2479. float: right;
  2480. margin-top: 1rem;
  2481. border: none; }
  2482. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  2483. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.7"/></svg>'); }
  2484. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  2485. display: flex;
  2486. flex-direction: row;
  2487. flex-wrap: wrap;
  2488. flex-basis: auto;
  2489. justify-content: flex-start; }
  2490. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  2491. width: 100%;
  2492. font-family: 'Source Code Pro';
  2493. font-size: 1.5rem;
  2494. font-weight: 800;
  2495. color: white;
  2496. background-color: #009ee3;
  2497. text-transform: uppercase;
  2498. padding-left: 13%;
  2499. padding-top: 2rem;
  2500. padding-bottom: 2rem;
  2501. vertical-align: middle; }
  2502. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  2503. width: 100%;
  2504. font-family: 'Source Code Pro';
  2505. font-size: 2rem;
  2506. font-weight: 800;
  2507. color: white;
  2508. background-color: #009ee3;
  2509. text-transform: uppercase;
  2510. width: fit-content;
  2511. margin-left: 13%;
  2512. margin-top: 8rem; }
  2513. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  2514. margin-top: 10vh;
  2515. margin-left: 13%;
  2516. margin-right: 20%;
  2517. width: 60%; }
  2518. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  2519. margin-left: 13%;
  2520. margin-right: 20%;
  2521. width: 60%;
  2522. display: flex;
  2523. flex-direction: row;
  2524. flex-wrap: wrap;
  2525. margin-top: 2rem; }
  2526. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  2527. content: "*";
  2528. color: red;
  2529. font-size: 2rem;
  2530. padding-left: 0.5rem; }
  2531. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  2532. width: 100%; }
  2533. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  2534. width: 90%;
  2535. height: 5rem; }
  2536. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  2537. margin-left: 13%;
  2538. margin-right: 20%;
  2539. width: 60%;
  2540. display: flex;
  2541. flex-direction: row;
  2542. flex-wrap: wrap;
  2543. margin-top: 2rem; }
  2544. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  2545. content: "*";
  2546. color: red;
  2547. font-size: 2rem;
  2548. padding-left: 0.5rem; }
  2549. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  2550. width: 100%; }
  2551. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  2552. width: 90%; }
  2553. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  2554. margin-left: 13%;
  2555. margin-right: 20%;
  2556. width: 60%;
  2557. display: flex;
  2558. flex-direction: row;
  2559. flex-wrap: wrap;
  2560. margin-top: 2rem; }
  2561. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  2562. content: "*";
  2563. color: red;
  2564. font-size: 2rem;
  2565. padding-left: 0.5rem; }
  2566. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  2567. width: 100%; }
  2568. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  2569. width: 90%; }
  2570. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  2571. width: 100%; }
  2572. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  2573. margin-left: 13%;
  2574. margin-right: 20%;
  2575. width: 60%;
  2576. display: flex;
  2577. flex-direction: row;
  2578. flex-wrap: wrap;
  2579. margin-top: 2rem; }
  2580. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  2581. width: 100%; }
  2582. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  2583. width: 90%; }
  2584. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  2585. margin-left: 13%;
  2586. margin-right: 20%;
  2587. width: 60%;
  2588. display: flex;
  2589. flex-direction: row;
  2590. flex-wrap: wrap;
  2591. margin-top: 2rem; }
  2592. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  2593. width: 100%; }
  2594. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  2595. width: 90%; }
  2596. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  2597. margin-left: 13%;
  2598. margin-right: 20%;
  2599. width: 60%;
  2600. display: flex;
  2601. flex-direction: row;
  2602. flex-wrap: wrap;
  2603. margin-top: 2rem; }
  2604. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  2605. margin-left: 13%;
  2606. margin-right: 20%;
  2607. width: 60%;
  2608. display: flex;
  2609. flex-direction: row;
  2610. flex-wrap: wrap;
  2611. margin-top: 2rem; }
  2612. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  2613. width: 100%; }
  2614. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  2615. margin-left: 13%;
  2616. margin-right: 20%;
  2617. width: 60%;
  2618. display: flex;
  2619. flex-direction: row;
  2620. flex-wrap: wrap;
  2621. margin-top: 2rem; }
  2622. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  2623. content: "*";
  2624. color: red;
  2625. font-size: 2rem;
  2626. padding-left: 0.5rem; }
  2627. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  2628. width: 100%; }
  2629. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  2630. width: 90%; }
  2631. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  2632. margin-left: 13%;
  2633. display: flex;
  2634. flex-direction: row;
  2635. flex-wrap: wrap;
  2636. margin-top: 2rem;
  2637. width: 28%; }
  2638. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  2639. content: "*";
  2640. color: red;
  2641. font-size: 2rem;
  2642. padding-left: 0.5rem; }
  2643. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  2644. width: 100%; }
  2645. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  2646. width: 90%; }
  2647. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  2648. margin-right: 20%;
  2649. width: 29%;
  2650. display: flex;
  2651. flex-direction: row;
  2652. flex-wrap: wrap;
  2653. margin-top: 2rem;
  2654. margin-right: 3rem; }
  2655. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  2656. content: "*";
  2657. color: red;
  2658. font-size: 2rem;
  2659. padding-left: 0.5rem; }
  2660. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  2661. width: 100%; }
  2662. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  2663. width: 90%; }
  2664. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-j-accepte-que-mon-courriel-soit-diffuse-sur-la-page-de-mon-offre {
  2665. margin-top: 3rem;
  2666. margin-bottom: 3rem;
  2667. margin-left: 13%;
  2668. margin-right: 20%;
  2669. width: 60%; }
  2670. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  2671. width: 60%; }
  2672. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  2673. width: 30%;
  2674. align-self: flex-end;
  2675. background-color: #009ee3;
  2676. text-transform: uppercase;
  2677. color: white;
  2678. font-size: 1.2rem;
  2679. font-weight: 600;
  2680. float: right;
  2681. margin-top: 1rem;
  2682. border: none; }
  2683. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  2684. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.7"/></svg>'); }
  2685. .path-webform .region-content #webform-submission-question-add-form {
  2686. display: flex;
  2687. flex-direction: row;
  2688. flex-wrap: wrap;
  2689. flex-basis: auto;
  2690. justify-content: flex-start;
  2691. margin-top: 10vh;
  2692. width: 60%;
  2693. margin-left: 13%;
  2694. margin-right: 20%; }
  2695. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  2696. display: flex;
  2697. flex-direction: row;
  2698. flex-wrap: wrap;
  2699. margin-top: 2rem;
  2700. width: 100%; }
  2701. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  2702. content: "*";
  2703. color: red;
  2704. font-size: 2rem;
  2705. padding-left: 0.5rem; }
  2706. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  2707. width: 100%; }
  2708. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  2709. width: 90%; }
  2710. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  2711. display: flex;
  2712. flex-direction: row;
  2713. flex-wrap: wrap;
  2714. margin-top: 2rem;
  2715. width: 100%; }
  2716. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  2717. content: "*";
  2718. color: red;
  2719. font-size: 2rem;
  2720. padding-left: 0.9rem; }
  2721. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  2722. width: 100%; }
  2723. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  2724. width: 90%; }
  2725. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  2726. width: 100%;
  2727. height: 5rem; }
  2728. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  2729. width: 90%; }
  2730. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  2731. width: 30%;
  2732. align-self: flex-end;
  2733. background-color: #009ee3;
  2734. text-transform: uppercase;
  2735. color: white;
  2736. font-size: 1.2rem;
  2737. font-weight: 600;
  2738. float: right;
  2739. margin-top: 1rem;
  2740. border: none; }
  2741. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  2742. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.7"/></svg>'); }
  2743. .path-projets .region-content #block-contenudelapageprincipale span {
  2744. padding-top: 3rem;
  2745. padding-bottom: 3rem;
  2746. vertical-align: middle; }
  2747. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  2748. margin: 0;
  2749. padding-top: 2rem;
  2750. height: 4rem;
  2751. color: white;
  2752. font-family: "Source Code Pro";
  2753. text-transform: uppercase;
  2754. background: #009ee3;
  2755. padding-left: 13%; }
  2756. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  2757. display: grid;
  2758. grid-template-columns: 1fr repeat(8, 2fr) 1fr; }
  2759. @media (max-width: 810px) {
  2760. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  2761. display: flex;
  2762. flex-direction: column; } }
  2763. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  2764. grid-column: 1 / span 10; }
  2765. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  2766. grid-column: 3 / span 5;
  2767. margin: auto; }
  2768. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  2769. display: none; }
  2770. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .config_pages--type--les-projets .field--name-field-introduction p:nth-of-type(1) {
  2771. font-size: 1.5rem; }
  2772. @media (max-width: 810px) {
  2773. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  2774. padding: 2rem; } }
  2775. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  2776. grid-column: 8 / span 9;
  2777. margin-top: 4rem;
  2778. background-color: #009ee3;
  2779. height: fit-content;
  2780. width: 60%;
  2781. margin-left: 2rem;
  2782. grid-row: 2; }
  2783. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  2784. display: block; }
  2785. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  2786. display: flex;
  2787. flex-direction: column;
  2788. margin-top: 2rem;
  2789. margin-bottom: 2rem;
  2790. margin-left: 1.5rem;
  2791. margin-right: 1.5rem;
  2792. text-align: center; }
  2793. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  2794. font-weight: 800;
  2795. color: white;
  2796. font-size: 1.3rem; }
  2797. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  2798. margin-left: auto;
  2799. padding-top: 1rem;
  2800. display: block;
  2801. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  2802. @media (max-width: 810px) {
  2803. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  2804. margin: auto; } }
  2805. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  2806. grid-column: 3 / span 6; }
  2807. @media (max-width: 810px) {
  2808. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  2809. padding: 2rem; } }
  2810. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  2811. margin: auto; }
  2812. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  2813. margin-top: 4rem;
  2814. display: flex;
  2815. flex-direction: row; }
  2816. @media (max-width: 479px) {
  2817. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  2818. flex-direction: column;
  2819. padding-bottom: 3rem; } }
  2820. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  2821. content: 'Filtrer par :';
  2822. margin-right: 1rem; }
  2823. @media (max-width: 479px) {
  2824. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  2825. padding-bottom: 1rem; } }
  2826. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 {
  2827. display: flex;
  2828. flex-direction: row; }
  2829. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-field-neuf-rehabilitation-value--wrapper legend {
  2830. display: none; }
  2831. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-field-neuf-rehabilitation-value--wrapper .js-form-item-field-neuf-rehabilitation-value:first-of-type {
  2832. display: none; }
  2833. @media (max-width: 479px) {
  2834. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-field-neuf-rehabilitation-value--wrapper {
  2835. padding-bottom: 1rem;
  2836. padding-top: 1rem;
  2837. margin-inline-start: 0px; } }
  2838. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-field-encours-fini-value--wrapper legend {
  2839. display: none; }
  2840. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-field-encours-fini-value--wrapper .js-form-item-field-encours-fini-value:first-of-type {
  2841. display: none; }
  2842. @media (max-width: 479px) {
  2843. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-field-encours-fini-value--wrapper {
  2844. padding-bottom: 1rem;
  2845. margin-inline-start: 0px; } }
  2846. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 .js-form-type-textfield label {
  2847. display: none; }
  2848. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 input[type="radio"] {
  2849. display: none; }
  2850. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 input[type="radio"] + label::before {
  2851. content: "";
  2852. display: inline-block;
  2853. width: 15px;
  2854. height: 15px;
  2855. background: #fff;
  2856. border-radius: 0px;
  2857. border-color: black;
  2858. border-style: solid;
  2859. border-width: 1px;
  2860. margin-right: 0.5rem; }
  2861. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 input[type="radio"]:checked + label::before {
  2862. background: #009ee3; }
  2863. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 label {
  2864. padding-right: 1rem; }
  2865. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-submit-projets {
  2866. background-color: #009ee3;
  2867. color: white;
  2868. text-transform: uppercase;
  2869. border: none;
  2870. padding: 0.1rem 0.7rem;
  2871. margin-left: 2rem; }
  2872. @media (max-width: 479px) {
  2873. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-submit-projets {
  2874. margin-left: 0rem;
  2875. margin-right: 2rem; } }
  2876. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-reset {
  2877. background-color: #009ee3;
  2878. color: white;
  2879. text-transform: uppercase;
  2880. border: none;
  2881. padding: 0.1rem 0.7rem;
  2882. margin-left: 1rem; }
  2883. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 input[type="checkbox"] {
  2884. display: none; }
  2885. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 input[type="checkbox"] + label::before {
  2886. content: "";
  2887. display: inline-block;
  2888. width: 15px;
  2889. height: 15px;
  2890. background: #fff;
  2891. border-radius: 0px;
  2892. border-color: black;
  2893. border-style: solid;
  2894. border-width: 1px;
  2895. margin-right: 0.5rem; }
  2896. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 input[type="checkbox"]:checked + label::before {
  2897. background: #009ee3; }
  2898. @media (max-width: 479px) {
  2899. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 {
  2900. flex-direction: column; }
  2901. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters #views-exposed-form-projets-block-1 #edit-actions {
  2902. width: 100%; } }
  2903. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content {
  2904. margin-top: 2rem;
  2905. display: flex;
  2906. flex-direction: row;
  2907. flex-wrap: wrap; }
  2908. @media (max-width: 810px) {
  2909. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content {
  2910. flex-direction: column; } }
  2911. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .views-row {
  2912. width: 25%; }
  2913. @media (max-width: 810px) {
  2914. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .views-row {
  2915. width: 100%; } }
  2916. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  2917. color: #09398b;
  2918. line-height: 1.5rem;
  2919. padding: 0.5rem;
  2920. padding-right: 1rem;
  2921. padding-left: 1rem; }
  2922. @media (max-width: 479px) {
  2923. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  2924. padding-left: 0rem;
  2925. padding-right: 0rem;
  2926. padding-top: 2rem; } }
  2927. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  2928. display: flex;
  2929. flex-direction: column; }
  2930. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child a {
  2931. color: #09398b; }
  2932. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo {
  2933. order: 1; }
  2934. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo .field__item {
  2935. display: none; }
  2936. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo .field__item:first-child {
  2937. display: block; }
  2938. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo img {
  2939. width: 100%;
  2940. max-height: 175px;
  2941. object-fit: cover; }
  2942. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo::after {
  2943. display: block;
  2944. content: url('data:image/svg+xml,<svg width="160" height="25" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(9,57,139)" stroke-width="2.5"/></svg>'); }
  2945. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse {
  2946. order: 2;
  2947. display: flex;
  2948. text-transform: uppercase;
  2949. font-size: 0.9rem;
  2950. font-weight: 800;
  2951. margin-top: 0.8rem;
  2952. line-height: 0.6rem; }
  2953. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address {
  2954. display: flex;
  2955. flex-direction: row;
  2956. margin: 0; }
  2957. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  2958. padding-top: 0 !important;
  2959. padding-bottom: 0 !important; }
  2960. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  2961. content: ",";
  2962. margin-right: 0.3rem; }
  2963. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .country {
  2964. padding-top: 0 !important;
  2965. padding-bottom: 0 !important; }
  2966. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-sous-titre {
  2967. margin-top: 0.5rem;
  2968. font-size: 0.9rem;
  2969. font-weight: 800;
  2970. order: 4; }
  2971. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-title {
  2972. order: 3;
  2973. margin-top: 0.5rem;
  2974. font-size: 0.9rem;
  2975. font-weight: 800; }
  2976. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-title h2 {
  2977. margin: 0; }
  2978. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-incube {
  2979. order: 4;
  2980. color: red;
  2981. margin-top: 0.8rem;
  2982. font-size: 0.7rem; }
  2983. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-region {
  2984. display: none; }
  2985. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-type-de-moa {
  2986. display: none; }
  2987. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-type-de-projet {
  2988. display: none; }
  2989. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-etape-du-projet {
  2990. display: none; }
  2991. .path-node.page-node-type-projet .layout-container {
  2992. overflow: unset; }
  2993. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  2994. padding-top: 4rem;
  2995. margin-left: 10%;
  2996. margin-right: 10%;
  2997. width: 80vw; }
  2998. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  2999. display: flex;
  3000. flex-direction: row;
  3001. margin-bottom: 2rem; }
  3002. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo {
  3003. width: 60%;
  3004. padding-right: 2rem; }
  3005. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  3006. object-fit: contain;
  3007. width: inherit; }
  3008. @media (max-width: 810px) {
  3009. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  3010. padding-top: 1rem;
  3011. object-fit: cover;
  3012. width: 100%; } }
  3013. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  3014. width: 40%; }
  3015. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle {
  3016. margin: 0; }
  3017. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  3018. font-family: "Marianne";
  3019. font-size: 2.5rem;
  3020. font-weight: 800;
  3021. color: #009ee3; }
  3022. @media (max-width: 810px) {
  3023. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  3024. font-size: 1.7rem; } }
  3025. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  3026. margin-top: 2rem; }
  3027. @media (max-width: 810px) {
  3028. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  3029. padding-top: 0.5rem; } }
  3030. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  3031. color: #09398b;
  3032. font-size: 1.5rem;
  3033. font-weight: 900;
  3034. text-transform: uppercase; }
  3035. @media (max-width: 810px) {
  3036. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  3037. font-size: 1rem; } }
  3038. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube {
  3039. margin-top: 2rem;
  3040. width: fit-content; }
  3041. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube .field--name-field-incube {
  3042. background-color: #e1000f;
  3043. color: white;
  3044. font-weight: 800;
  3045. padding-right: 0.3rem;
  3046. padding-left: 0.2rem; }
  3047. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  3048. display: flex;
  3049. flex-direction: row;
  3050. border: 0.1rem solid;
  3051. justify-content: space-evenly;
  3052. width: 90%; }
  3053. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left {
  3054. padding-right: 1rem;
  3055. order: 1;
  3056. width: 30%;
  3057. position: relative; }
  3058. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left::before {
  3059. content: url("../images/pictos/picto_lieu.svg");
  3060. display: inline-block;
  3061. width: 50px;
  3062. padding-right: 1rem;
  3063. position: absolute;
  3064. left: 0;
  3065. margin-top: .83em;
  3066. margin-left: 1rem; }
  3067. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-region {
  3068. order: 1;
  3069. margin-left: 70px;
  3070. margin-bottom: 1rem; }
  3071. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse {
  3072. order: 2;
  3073. margin-left: 70px; }
  3074. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse {
  3075. display: flex;
  3076. flex-direction: row;
  3077. margin-top: .83em; }
  3078. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse .address {
  3079. margin: auto;
  3080. display: flex;
  3081. flex-direction: column;
  3082. justify-content: start;
  3083. margin: 0; }
  3084. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse .address .country {
  3085. display: none; }
  3086. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet {
  3087. order: 4;
  3088. padding-left: 1rem;
  3089. padding-right: 1rem;
  3090. padding-bottom: 1rem;
  3091. border-left: 0.1rem solid;
  3092. width: 30%; }
  3093. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2 {
  3094. color: #09398b;
  3095. font-size: 1.2rem;
  3096. font-weight: 900;
  3097. text-transform: uppercase;
  3098. margin-bottom: 0rem !important; }
  3099. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2:after {
  3100. content: ' :'; }
  3101. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet .field__label {
  3102. display: none; }
  3103. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa {
  3104. order: 2;
  3105. padding-left: 1rem;
  3106. border-left: 0.1rem solid;
  3107. padding-bottom: 1rem;
  3108. width: 20%; }
  3109. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2 {
  3110. color: #09398b;
  3111. font-size: 1.2rem;
  3112. font-weight: 900;
  3113. text-transform: uppercase;
  3114. margin-bottom: 0rem !important; }
  3115. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2:after {
  3116. content: ' :'; }
  3117. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa .field__label {
  3118. display: none; }
  3119. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet {
  3120. order: 3;
  3121. padding-left: 1rem;
  3122. padding-bottom: 1rem;
  3123. border-left: 0.1rem solid;
  3124. width: 20%; }
  3125. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2 {
  3126. color: #09398b;
  3127. font-size: 1.2rem;
  3128. font-weight: 900;
  3129. text-transform: uppercase;
  3130. margin-bottom: 0rem !important; }
  3131. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2:after {
  3132. content: ' :'; }
  3133. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet .field__label {
  3134. display: none; }
  3135. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  3136. margin-top: 5rem; }
  3137. @media (max-width: 479px) {
  3138. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  3139. display: none; } }
  3140. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  3141. display: flex;
  3142. justify-content: flex-end;
  3143. position: -webkit-sticky;
  3144. position: sticky;
  3145. top: 10rem; }
  3146. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  3147. display: flex;
  3148. justify-content: flex-end;
  3149. width: 50%;
  3150. background-color: white;
  3151. padding-right: 2rem; }
  3152. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  3153. display: flex;
  3154. font-size: 1rem;
  3155. font-weight: 1000;
  3156. color: #09398b;
  3157. border-bottom: 1px solid #009ee3;
  3158. padding-bottom: 0.5rem;
  3159. padding-right: 1rem;
  3160. margin-bottom: 0.8rem; }
  3161. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  3162. text-decoration: underline; }
  3163. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3164. margin-top: 5rem;
  3165. flex: 0 1 50%; }
  3166. @media (max-width: 479px) {
  3167. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3168. flex: 0 1 100%;
  3169. margin-top: 1rem; } }
  3170. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  3171. width: 90%; }
  3172. @media (max-width: 479px) {
  3173. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  3174. width: 80%;
  3175. margin: auto; } }
  3176. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  3177. margin-top: 0; }
  3178. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .field--type-text-with-summary {
  3179. background-color: white; }
  3180. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  3181. background-color: white; }
  3182. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--name-field-titre {
  3183. font-size: 1.5rem;
  3184. font-weight: 1000;
  3185. font-family: 'Source Code Pro';
  3186. color: #09398b;
  3187. text-transform: uppercase;
  3188. margin-bottom: 0.8rem; }
  3189. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  3190. text-transform: none !important; }
  3191. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  3192. width: 100%;
  3193. height: auto; }
  3194. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--type-text-long {
  3195. padding-right: 2rem; }
  3196. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  3197. margin-top: 0; }
  3198. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  3199. color: black;
  3200. text-decoration: underline; }
  3201. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  3202. display: none; }
  3203. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  3204. overflow-y: visible !important; }
  3205. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  3206. font-size: 1.5rem;
  3207. font-weight: 1000;
  3208. font-family: 'Source Code Pro';
  3209. color: #09398b;
  3210. text-transform: uppercase;
  3211. margin-top: 2rem;
  3212. margin-bottom: 0.8rem; }
  3213. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  3214. display: flex;
  3215. flex-direction: row;
  3216. justify-content: space-between; }
  3217. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire {
  3218. display: flex;
  3219. flex-direction: column;
  3220. align-items: center; }
  3221. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire .field--name-field-lien {
  3222. padding-top: 1rem; }
  3223. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  3224. margin-top: 5rem; }
  3225. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  3226. display: flex;
  3227. flex-direction: column;
  3228. width: 65%; }
  3229. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers h2 {
  3230. display: none; }
  3231. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .field__item {
  3232. height: fit-content;
  3233. border: 2px solid #009ee3;
  3234. background-color: white;
  3235. margin-bottom: 1rem;
  3236. min-height: 4rem;
  3237. color: #009ee3;
  3238. padding-left: 1rem;
  3239. padding-top: 1rem; }
  3240. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers span:nth-of-type(2) {
  3241. display: none; }
  3242. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image {
  3243. height: inherit;
  3244. margin: auto; }
  3245. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image ::before {
  3246. content: url("../images/pictos/noun_Download_file_307900.svg");
  3247. min-width: 30px;
  3248. height: auto;
  3249. padding-right: 1rem; }
  3250. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image a {
  3251. hyphens: auto;
  3252. display: inline-flex;
  3253. color: #009ee3;
  3254. font-weight: 800; }
  3255. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf {
  3256. height: inherit;
  3257. margin: auto; }
  3258. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf ::before {
  3259. content: url("../images/pictos/noun_Download_file_307900.svg");
  3260. min-width: 30px;
  3261. height: auto;
  3262. padding-right: 1rem; }
  3263. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf a {
  3264. hyphens: auto;
  3265. display: inline-flex;
  3266. color: #009ee3;
  3267. font-weight: 800; }
  3268. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens h2 {
  3269. display: none; }
  3270. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3271. margin: auto;
  3272. height: fit-content;
  3273. border: 2px solid #009ee3;
  3274. min-height: 4rem;
  3275. background: white;
  3276. color: #009ee3;
  3277. padding-left: 1rem;
  3278. padding-top: 1rem;
  3279. margin-bottom: 1rem; }
  3280. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3281. display: inline-flex;
  3282. align-items: center;
  3283. color: #009ee3;
  3284. font-weight: 800; }
  3285. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3286. content: url("../images/pictos/noun_External Link_674151.svg");
  3287. min-width: 30px;
  3288. height: auto;
  3289. padding-right: 1rem; }
  3290. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3291. display: none; }
  3292. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- {
  3293. margin-top: 3rem; }
  3294. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- h2 {
  3295. font-size: 0.8rem;
  3296. color: black;
  3297. font-weight: 900; }
  3298. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource {
  3299. display: flex;
  3300. flex-direction: column;
  3301. border: 2px solid #009ee3;
  3302. padding: 1rem;
  3303. height: fit-content;
  3304. margin-bottom: 1rem;
  3305. background-color: white; }
  3306. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div {
  3307. display: flex;
  3308. flex-direction: column; }
  3309. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title {
  3310. order: 3; }
  3311. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title h2 {
  3312. margin: 0; }
  3313. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title h2 a {
  3314. color: black;
  3315. font-size: 1rem;
  3316. font-weight: 900;
  3317. font-style: italic; }
  3318. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-sous-titre {
  3319. display: none; }
  3320. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-type-de-ressource {
  3321. order: 2;
  3322. text-transform: uppercase;
  3323. color: #009ee3;
  3324. font-weight: 900;
  3325. font-size: 0.8rem; }
  3326. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- {
  3327. order: 5;
  3328. font-weight: 800; }
  3329. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- p {
  3330. margin: 0; }
  3331. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- .field__label {
  3332. display: none; }
  3333. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-edition p {
  3334. margin: 0; }
  3335. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-edition .field__label {
  3336. display: none; }
  3337. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-images {
  3338. order: 1;
  3339. width: 25%; }
  3340. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-images img {
  3341. width: 100%;
  3342. height: auto; }
  3343. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-date-de-parution {
  3344. order: 6; }
  3345. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-date-de-parution .field__label {
  3346. display: none; }
  3347. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs {
  3348. order: 7;
  3349. display: flex;
  3350. margin-top: 0.8rem;
  3351. flex-direction: row;
  3352. flex-wrap: wrap; }
  3353. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__label {
  3354. display: none; }
  3355. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__items {
  3356. display: flex;
  3357. flex-direction: row; }
  3358. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__item {
  3359. margin-right: 0.5rem;
  3360. padding-right: 0.3rem;
  3361. font-size: 0.8rem; }
  3362. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  3363. background: #09398b;
  3364. color: white;
  3365. font-weight: 800;
  3366. vertical-align: super;
  3367. padding-left: 0.1rem;
  3368. padding-right: 0.1rem;
  3369. display: inline-flex; }
  3370. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div ul.links.inline {
  3371. display: none; }
  3372. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  3373. width: 50%;
  3374. margin: auto;
  3375. display: flex;
  3376. flex-direction: row;
  3377. flex-wrap: wrap; }
  3378. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires h2 {
  3379. display: none; }
  3380. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires {
  3381. display: flex;
  3382. flex-direction: row;
  3383. flex-wrap: wrap;
  3384. justify-content: space-between; }
  3385. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires .field--name-field-titre {
  3386. display: none; }
  3387. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires .paragraph--type--partenaire {
  3388. display: flex;
  3389. flex-direction: column; }
  3390. .path-incubateur {
  3391. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  3392. background-repeat: no-repeat;
  3393. background-position-y: 7rem;
  3394. max-width: 100vw;
  3395. background-size: contain; }
  3396. .path-incubateur .layout-container {
  3397. overflow: unset; }
  3398. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  3399. width: fit-content; }
  3400. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3401. width: fit-content;
  3402. margin-left: 11%;
  3403. margin-top: 15vh;
  3404. color: white;
  3405. font-family: "Source Code Pro";
  3406. text-transform: uppercase;
  3407. font-size: 2rem;
  3408. font-weight: 800;
  3409. background: #009ee3;
  3410. margin-bottom: 15vh; }
  3411. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  3412. position: relative; }
  3413. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block {
  3414. display: flex;
  3415. justify-content: flex-end;
  3416. position: -webkit-sticky;
  3417. position: sticky;
  3418. top: 10rem; }
  3419. @media (max-width: 810px) {
  3420. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block {
  3421. display: none; } }
  3422. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme {
  3423. display: flex;
  3424. flex-direction: row-reverse;
  3425. width: 50%;
  3426. background-color: white;
  3427. padding-right: 2rem; }
  3428. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-titre {
  3429. display: flex;
  3430. flex-direction: column;
  3431. font-size: 1rem;
  3432. font-weight: 1000;
  3433. color: #09398b;
  3434. border-bottom: 1px solid #009ee3;
  3435. padding-bottom: 0.8rem;
  3436. padding-right: 1rem;
  3437. margin-top: 1rem;
  3438. scroll-margin-top: 7em; }
  3439. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-titre:hover {
  3440. text-decoration: underline; }
  3441. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte {
  3442. padding-right: 2rem;
  3443. margin-top: 1rem;
  3444. background-color: white; }
  3445. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte .field--name-field-titre {
  3446. font-size: 1.5rem;
  3447. font-weight: 1000;
  3448. font-family: 'Source Code Pro', monospace;
  3449. color: #09398b;
  3450. text-transform: uppercase;
  3451. margin-bottom: 0.8rem; }
  3452. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte .field--name-field-texte {
  3453. margin-bottom: 2rem; }
  3454. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme {
  3455. margin-top: 1rem;
  3456. display: flex;
  3457. flex-direction: column;
  3458. width: 70%; }
  3459. @media (max-width: 810px) {
  3460. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme {
  3461. margin: auto; } }
  3462. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents {
  3463. height: fit-content;
  3464. border: 2px solid #009ee3;
  3465. background-color: white;
  3466. margin-bottom: 1rem; }
  3467. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item {
  3468. min-height: 4rem;
  3469. background: white;
  3470. color: #009ee3;
  3471. padding-left: 0.8rem;
  3472. padding-top: 1rem; }
  3473. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item span:nth-of-type(2) {
  3474. display: none; }
  3475. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf {
  3476. height: inherit;
  3477. margin: auto; }
  3478. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf ::before {
  3479. content: url("../images/pictos/noun_Download_file_307900.svg");
  3480. min-width: 40px;
  3481. height: auto;
  3482. padding-right: 0.5rem;
  3483. display: inline-flex;
  3484. align-items: center; }
  3485. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf a {
  3486. hyphens: auto;
  3487. display: inline-flex;
  3488. align-items: center;
  3489. color: #009ee3;
  3490. font-weight: 800; }
  3491. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens .field__item {
  3492. margin: auto;
  3493. height: fit-content;
  3494. border: 2px solid #009ee3;
  3495. min-height: 4rem;
  3496. background: white;
  3497. color: #009ee3;
  3498. padding-left: 0.8rem;
  3499. padding-top: 1rem;
  3500. margin-bottom: 1rem; }
  3501. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a {
  3502. display: inline-flex;
  3503. align-items: center;
  3504. justify-items: center;
  3505. color: #009ee3;
  3506. font-weight: 800; }
  3507. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a::before {
  3508. content: url("../images/pictos/noun_External Link_674151.svg");
  3509. min-width: 40px;
  3510. height: auto;
  3511. padding-right: 0.5rem;
  3512. display: inline-flex;
  3513. align-items: center; }
  3514. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a svg.ext {
  3515. display: none; }
  3516. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 {
  3517. padding-top: 1rem;
  3518. background-color: white; }
  3519. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets {
  3520. width: 80%;
  3521. margin: auto; }
  3522. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters {
  3523. margin-top: 4rem;
  3524. display: flex;
  3525. flex-direction: row; }
  3526. @media (max-width: 479px) {
  3527. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters {
  3528. flex-direction: column;
  3529. padding-bottom: 3rem; } }
  3530. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters::before {
  3531. content: 'Filtrer par :';
  3532. margin-right: 1rem; }
  3533. @media (max-width: 479px) {
  3534. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters::before {
  3535. padding-bottom: 1rem; } }
  3536. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 {
  3537. display: flex;
  3538. flex-direction: row; }
  3539. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper legend {
  3540. display: none; }
  3541. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper .js-form-item-field-neuf-rehabilitation-value:first-of-type {
  3542. display: none; }
  3543. @media (max-width: 479px) {
  3544. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper {
  3545. padding-bottom: 1rem; } }
  3546. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper legend {
  3547. display: none; }
  3548. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper .js-form-item-field-encours-fini-value:first-of-type {
  3549. display: none; }
  3550. @media (max-width: 479px) {
  3551. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper {
  3552. padding-bottom: 1rem; } }
  3553. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 .js-form-type-textfield label {
  3554. display: none; }
  3555. @media (max-width: 479px) {
  3556. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 .js-form-type-textfield {
  3557. padding-bottom: 1rem; } }
  3558. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type="radio"] {
  3559. display: none; }
  3560. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type="radio"] + label::before {
  3561. content: "";
  3562. display: inline-block;
  3563. width: 15px;
  3564. height: 15px;
  3565. background: #fff;
  3566. border-radius: 0px;
  3567. border-color: black;
  3568. border-style: solid;
  3569. border-width: 1px;
  3570. margin-right: 0.5rem; }
  3571. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type="radio"]:checked + label::before {
  3572. background: #009ee3; }
  3573. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 label {
  3574. padding-right: 1rem; }
  3575. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-submit-projets {
  3576. background-color: #009ee3;
  3577. color: white;
  3578. text-transform: uppercase;
  3579. border: none;
  3580. padding: 0.1rem 0.7rem;
  3581. margin-left: 2rem; }
  3582. @media (max-width: 479px) {
  3583. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-submit-projets {
  3584. margin-left: 0rem;
  3585. margin-right: 2rem; } }
  3586. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-reset {
  3587. background-color: #009ee3;
  3588. color: white;
  3589. text-transform: uppercase;
  3590. border: none;
  3591. padding: 0.1rem 0.7rem;
  3592. margin-left: 1rem; }
  3593. @media (max-width: 479px) {
  3594. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 {
  3595. flex-direction: column; } }
  3596. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content {
  3597. margin-top: 2rem;
  3598. display: flex;
  3599. flex-direction: row;
  3600. flex-wrap: wrap; }
  3601. @media (max-width: 810px) {
  3602. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content {
  3603. flex-direction: column; } }
  3604. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content .views-row {
  3605. width: 25%; }
  3606. @media (max-width: 810px) {
  3607. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content .views-row {
  3608. width: 100%; } }
  3609. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet {
  3610. color: #09398b;
  3611. line-height: 1.5rem;
  3612. padding: 0.5rem;
  3613. padding-right: 1rem;
  3614. padding-left: 1rem; }
  3615. @media (max-width: 479px) {
  3616. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet {
  3617. padding-left: 0rem;
  3618. padding-right: 0rem;
  3619. padding-top: 2rem; } }
  3620. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child {
  3621. display: flex;
  3622. flex-direction: column; }
  3623. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child a {
  3624. color: #09398b; }
  3625. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo {
  3626. order: 1; }
  3627. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo img {
  3628. width: 100%;
  3629. max-height: 175px;
  3630. object-fit: cover; }
  3631. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo::after {
  3632. display: block;
  3633. content: url('data:image/svg+xml,<svg width="160" height="25" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(9,57,139)" stroke-width="2.5"/></svg>'); }
  3634. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse {
  3635. order: 2;
  3636. display: flex;
  3637. text-transform: uppercase;
  3638. font-size: 0.9rem;
  3639. font-weight: 800;
  3640. margin-top: 0.8rem;
  3641. line-height: 0.6rem; }
  3642. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address {
  3643. display: flex;
  3644. flex-direction: row;
  3645. margin: 0; }
  3646. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  3647. padding-top: 0 !important;
  3648. padding-bottom: 0 !important; }
  3649. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  3650. content: ",";
  3651. margin-right: 0.3rem; }
  3652. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .country {
  3653. padding-top: 0 !important;
  3654. padding-bottom: 0 !important; }
  3655. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-sous-titre {
  3656. margin-top: 0.5rem;
  3657. font-size: 0.9rem;
  3658. font-weight: 800;
  3659. order: 4; }
  3660. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-title {
  3661. order: 3;
  3662. margin-top: 0.5rem;
  3663. font-size: 0.9rem;
  3664. font-weight: 800; }
  3665. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-title h2 {
  3666. margin: 0; }
  3667. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-incube {
  3668. order: 4;
  3669. color: red;
  3670. margin-top: 0.8rem;
  3671. font-size: 0.7rem; }
  3672. .node-id-201 {
  3673. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  3674. background-repeat: no-repeat;
  3675. background-position-y: 7rem;
  3676. max-width: 100vw;
  3677. background-size: contain; }
  3678. .node-id-201 #block-contenudelapageprincipale {
  3679. scroll-margin: 8rem; }
  3680. .node-id-201 .layout__region--top {
  3681. padding-bottom: 3rem;
  3682. height: 30vh; }
  3683. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  3684. display: none;
  3685. height: inherit; }
  3686. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  3687. font-family: 'Source Code Pro';
  3688. font-size: 2rem;
  3689. font-weight: 800;
  3690. color: white;
  3691. background-color: #009ee3;
  3692. text-transform: uppercase; }
  3693. .node-id-201 .layout__region--second {
  3694. width: 25%; }
  3695. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  3696. background-color: white; }
  3697. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  3698. font-size: 1.5rem;
  3699. font-weight: 1000;
  3700. font-family: 'Source Code Pro';
  3701. color: #09398b;
  3702. text-transform: uppercase; }
  3703. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  3704. text-transform: none !important; }
  3705. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3706. padding-right: 2rem; }
  3707. .path-ressources .layout-content {
  3708. width: 100vw; }
  3709. .path-ressources .layout-content .region-content {
  3710. width: 80%;
  3711. margin: auto; }
  3712. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  3713. display: grid;
  3714. grid-template-columns: 1fr repeat(4, 1fr) 1fr; }
  3715. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  3716. grid-column: 1 / span 4;
  3717. margin-left: 1rem; }
  3718. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  3719. grid-column: 1 / span 5; }
  3720. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full .field--name-field-introduction {
  3721. margin: auto;
  3722. background: white;
  3723. margin-top: 5rem; }
  3724. @media (max-width: 810px) {
  3725. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  3726. padding: 2rem;
  3727. margin-top: 1rem; } }
  3728. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  3729. grid-column: 6 / span 5;
  3730. grid-row: 1;
  3731. margin-top: 4rem;
  3732. background-color: #009ee3;
  3733. height: fit-content;
  3734. width: 100%; }
  3735. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  3736. display: block; }
  3737. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien {
  3738. display: flex;
  3739. flex-direction: column;
  3740. margin-top: 2rem;
  3741. margin-bottom: 2rem;
  3742. margin-left: 1.5rem;
  3743. margin-right: 1.5rem;
  3744. text-align: center; }
  3745. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien a {
  3746. font-weight: 800;
  3747. color: white;
  3748. font-size: 1.3rem; }
  3749. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien:after {
  3750. margin-left: auto;
  3751. padding-top: 1rem;
  3752. display: block;
  3753. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  3754. @media (max-width: 810px) {
  3755. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  3756. margin: auto; } }
  3757. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  3758. margin-top: 2rem;
  3759. width: 100%;
  3760. grid-column: 1 / span 6; }
  3761. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters {
  3762. display: flex;
  3763. flex-direction: row;
  3764. flex-wrap: wrap;
  3765. background-color: white;
  3766. margin-top: 2rem;
  3767. margin-left: 1rem;
  3768. margin-bottom: 5rem; }
  3769. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters::before {
  3770. content: "Filtrer par : ";
  3771. padding-right: 1rem; }
  3772. @media (max-width: 479px) {
  3773. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters::before {
  3774. padding-bottom: 1rem; } }
  3775. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters #views-exposed-form-base-de-donnees-block-1 {
  3776. width: fit-content;
  3777. display: flex;
  3778. flex-direction: row; }
  3779. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters #views-exposed-form-base-de-donnees-block-1 #edit-actions {
  3780. display: flex;
  3781. flex-direction: column;
  3782. justify-content: space-between; }
  3783. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters #views-exposed-form-base-de-donnees-block-1 #edit-actions #edit-submit-base-de-donnees {
  3784. background-color: #009ee3;
  3785. color: white;
  3786. text-transform: uppercase;
  3787. border: none;
  3788. padding: 0.1rem 0.7rem;
  3789. margin-left: 2rem; }
  3790. @media (max-width: 479px) {
  3791. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters #views-exposed-form-base-de-donnees-block-1 #edit-actions #edit-submit-base-de-donnees {
  3792. margin-left: 0rem;
  3793. margin-right: 2rem; } }
  3794. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters #views-exposed-form-base-de-donnees-block-1 #edit-actions #edit-reset {
  3795. background-color: #009ee3;
  3796. color: white;
  3797. text-transform: uppercase;
  3798. border: none;
  3799. padding: 0.1rem 0.7rem;
  3800. margin-top: 1rem;
  3801. margin-left: 1rem; }
  3802. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content {
  3803. width: 100%;
  3804. display: flex;
  3805. flex-direction: row;
  3806. flex-wrap: wrap; }
  3807. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row {
  3808. width: 25%;
  3809. flex: 0 0 25%; }
  3810. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource {
  3811. display: flex;
  3812. flex-direction: column;
  3813. border: 2px solid #009ee3;
  3814. margin-left: 1rem;
  3815. margin-bottom: 1rem;
  3816. padding: 1rem; }
  3817. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-type-de-ressource {
  3818. text-transform: uppercase; }
  3819. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-type-de-ressource a {
  3820. color: #009ee3;
  3821. font-weight: 900;
  3822. font-size: 0.8rem; }
  3823. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-title h2 {
  3824. margin: 0; }
  3825. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-title h2 a {
  3826. color: black;
  3827. font-size: 1rem;
  3828. font-weight: 900;
  3829. font-style: italic; }
  3830. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-auteur-s- {
  3831. font-weight: 800; }
  3832. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-auteur-s- p {
  3833. margin: 0; }
  3834. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-auteur-s- .field__label {
  3835. display: none; }
  3836. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-edition p {
  3837. margin: 0; }
  3838. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-edition .field__label {
  3839. display: none; }
  3840. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-images {
  3841. width: 50%; }
  3842. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-images img {
  3843. width: 100%;
  3844. height: auto; }
  3845. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-mots-clefs {
  3846. display: flex;
  3847. margin-top: 2rem;
  3848. flex-direction: row;
  3849. flex-wrap: wrap; }
  3850. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-mots-clefs .field__item {
  3851. margin-right: 0.5rem;
  3852. padding-left: 0.3rem;
  3853. padding-right: 0.3rem;
  3854. font-size: 0.8rem; }
  3855. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource .field--name-field-mots-clefs .field__item a {
  3856. background: #09398b;
  3857. color: white;
  3858. font-weight: 800;
  3859. vertical-align: super;
  3860. padding-left: 0.1rem;
  3861. padding-right: 0.1rem;
  3862. display: inline-flex; }
  3863. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row .node-type-ressource ul.links.inline {
  3864. display: none; }
  3865. @media (max-width: 810px) {
  3866. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content {
  3867. flex-direction: column; }
  3868. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .views-row {
  3869. width: 100%; } }
  3870. /*partials*/
  3871. .layout-container {
  3872. position: relative;
  3873. width: 100vw; }
  3874. .layout-container header {
  3875. position: fixed;
  3876. z-index: 99;
  3877. width: 100vw; }
  3878. #header-top {
  3879. height: 7rem;
  3880. background-color: white;
  3881. box-shadow: 1px 0px 8px black;
  3882. display: flex;
  3883. flex-direction: row;
  3884. justify-content: space-between;
  3885. color: black;
  3886. top: 0%;
  3887. scroll-margin: 8rem; }
  3888. #header-top .region-header-top-left {
  3889. display: flex;
  3890. flex-direction: row;
  3891. padding: 1rem;
  3892. padding-left: 4%;
  3893. align-items: center;
  3894. color: black;
  3895. font-weight: 800;
  3896. flex: 1; }
  3897. #header-top .region-header-top-left #block-logogouv {
  3898. display: flex;
  3899. height: 100%;
  3900. align-items: center; }
  3901. #header-top .region-header-top-left #block-logogouv img {
  3902. width: 80%;
  3903. height: auto; }
  3904. #header-top .region-header-top-left #block-logoeql {
  3905. display: flex;
  3906. height: 100%;
  3907. align-items: center; }
  3908. #header-top .region-header-top-left #block-logoeql img {
  3909. width: 80%;
  3910. height: auto; }
  3911. #header-top .region-header-top-left #block-headermenu {
  3912. align-self: baseline;
  3913. width: 70%;
  3914. margin-left: 3rem;
  3915. margin-right: 3rem; }
  3916. #header-top .region-header-top-left ul {
  3917. font-size: 1rem;
  3918. list-style: none;
  3919. display: flex;
  3920. flex-direction: row;
  3921. justify-content: space-between;
  3922. width: 100%;
  3923. padding-inline-start: 0px;
  3924. padding: 1rem; }
  3925. #header-top .region-header-top-left ul .is-active {
  3926. color: #009ee3; }
  3927. #header-top .region-header-top-left ul ul {
  3928. display: flex;
  3929. flex-direction: column;
  3930. display: none;
  3931. min-width: 100px;
  3932. width: 100%;
  3933. justify-content: space-between;
  3934. padding-inline-start: 0px; }
  3935. #header-top .region-header-top-left ul ul .is-active {
  3936. color: #009ee3; }
  3937. #header-top .region-header-top-left ul li {
  3938. display: flex;
  3939. flex-direction: column;
  3940. background-color: white;
  3941. padding-bottom: 0.8rem;
  3942. max-width: inherit;
  3943. width: 220px;
  3944. align-items: center;
  3945. height: 20px; }
  3946. #header-top .region-header-top-left ul li a {
  3947. color: black; }
  3948. #header-top .region-header-top-left ul li .is-active {
  3949. color: #009ee3; }
  3950. #header-top .region-header-top-left ul li :hover {
  3951. color: #009ee3; }
  3952. #header-top .region-header-top-left ul li:hover ul {
  3953. display: block; }
  3954. #header-top .region-header-top-left ul .ul1.sous-liste.ul2 {
  3955. padding-left: 1rem; }
  3956. #header-top #block-socialnetwork-2 {
  3957. position: relative;
  3958. top: -33px;
  3959. align-self: flex-end;
  3960. margin-left: auto; }
  3961. #header-top #block-socialnetwork-2 .field--name-body {
  3962. min-height: 75px; }
  3963. #header-top #block-socialnetwork-2 p {
  3964. display: flex;
  3965. flex-direction: row-reverse;
  3966. margin-bottom: 0;
  3967. min-height: 65px;
  3968. justify-content: space-around;
  3969. width: 140px; }
  3970. #header-top #block-socialnetwork-2 p a {
  3971. color: white;
  3972. font-size: 0; }
  3973. #header-top #block-socialnetwork-2 p svg.ext {
  3974. display: none; }
  3975. #header-top #block-socialnetwork-2 p .link-twitter {
  3976. display: flex;
  3977. background-color: black;
  3978. width: 40px;
  3979. justify-content: center;
  3980. align-items: flex-end; }
  3981. #header-top #block-socialnetwork-2 p .link-twitter:before {
  3982. content: url("../images/pictos/twitter_white.svg");
  3983. min-width: 30px;
  3984. padding-bottom: 0.3rem; }
  3985. #header-top #block-socialnetwork-2 p .link-youtube {
  3986. display: flex;
  3987. background-color: black;
  3988. min-width: 40px;
  3989. justify-content: center;
  3990. align-items: flex-end; }
  3991. #header-top #block-socialnetwork-2 p .link-youtube:before {
  3992. content: url("../images/pictos/youtube_white.svg");
  3993. min-width: 25px;
  3994. padding-bottom: 0.5rem; }
  3995. #header-top #block-socialnetwork-2 p .link-linkedin {
  3996. display: flex;
  3997. background-color: black;
  3998. min-width: 40px;
  3999. justify-content: center;
  4000. align-items: flex-end; }
  4001. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  4002. content: url("../images/pictos/linkedin_white.svg");
  4003. min-width: 35px;
  4004. padding-bottom: 0.2rem; }
  4005. #header-top #block-burger {
  4006. z-index: 1;
  4007. background-color: #009ee3;
  4008. font-size: 0.7rem;
  4009. color: white;
  4010. display: block;
  4011. width: 7rem;
  4012. height: 100%;
  4013. margin-top: 0; }
  4014. #header-top #block-burger :hover {
  4015. cursor: pointer; }
  4016. #header-top #block-burger h2 {
  4017. padding-top: 1rem; }
  4018. #header-top #block-burger h2:after {
  4019. display: block;
  4020. margin: auto;
  4021. height: 70px;
  4022. content: url('data:image/svg+xml,<svg width="70" height="50" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 5,13 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="white" stroke-width="3"/></svg>'); }
  4023. #header-top #block-burger #block-burger-menu {
  4024. display: block;
  4025. margin: 0;
  4026. align-self: center;
  4027. text-align: center; }
  4028. #header-top #block-burger .ul1:not(.sous-liste) {
  4029. width: 300%;
  4030. position: relative;
  4031. right: 260px;
  4032. margin: 0;
  4033. padding-top: 2rem;
  4034. padding-bottom: 2rem;
  4035. z-index: 99; }
  4036. #header-top #block-burger ul {
  4037. display: none;
  4038. background-color: #009ee3;
  4039. line-height: 2rem;
  4040. list-style: none; }
  4041. #header-top #block-burger ul .ul1 .sous-liste a {
  4042. opacity: 1; }
  4043. #header-top #block-burger ul a {
  4044. opacity: 0.6;
  4045. color: white;
  4046. font-weight: 800;
  4047. font-size: 1rem; }
  4048. #header-top #block-burger.opened ul {
  4049. display: block; }
  4050. #fotter-bottom {
  4051. box-shadow: 1px 0px 8px black;
  4052. display: flex;
  4053. flex: 1 1 120px;
  4054. flex-direction: row;
  4055. background-color: white;
  4056. padding-top: 3rem; }
  4057. @media (max-width: 810px) {
  4058. #fotter-bottom {
  4059. flex-direction: column;
  4060. padding-right: 1rem; } }
  4061. #fotter-bottom .region {
  4062. display: block;
  4063. padding-left: 2rem;
  4064. padding-right: 1rem;
  4065. padding-bottom: 1rem;
  4066. border-left: #009ee3 solid 1px; }
  4067. #fotter-bottom .region h2 {
  4068. margin-top: 0;
  4069. color: #09398b;
  4070. font-size: 1.2rem; }
  4071. #fotter-bottom .region-footer-bottom-left {
  4072. margin-left: 3rem;
  4073. border: none;
  4074. width: 20%; }
  4075. @media (max-width: 810px) {
  4076. #fotter-bottom .region-footer-bottom-left {
  4077. width: 100%;
  4078. margin-left: 0rem; } }
  4079. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  4080. display: flex;
  4081. flex-direction: row;
  4082. justify-content: flex-start;
  4083. flex-wrap: wrap;
  4084. padding-top: 1rem; }
  4085. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  4086. padding-right: 1rem;
  4087. padding-bottom: 1rem; }
  4088. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  4089. width: auto;
  4090. height: 30px; }
  4091. #fotter-bottom .region-footer-bottom-right {
  4092. width: 30%;
  4093. display: flex;
  4094. flex-direction: column-reverse;
  4095. justify-content: flex-end; }
  4096. @media (max-width: 810px) {
  4097. #fotter-bottom .region-footer-bottom-right {
  4098. width: 100%; } }
  4099. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  4100. margin-bottom: 1rem; }
  4101. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  4102. margin-top: 0;
  4103. display: flex;
  4104. flex-direction: row-reverse;
  4105. justify-content: flex-end; }
  4106. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  4107. color: white;
  4108. font-size: 0;
  4109. padding-left: 1rem; }
  4110. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  4111. display: none; }
  4112. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  4113. display: flex; }
  4114. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  4115. content: url("../images/pictos/twitter_black.svg");
  4116. min-width: 50px; }
  4117. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  4118. display: flex; }
  4119. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  4120. content: url("../images/pictos/youtube_black.svg");
  4121. min-width: 50px; }
  4122. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  4123. display: flex; }
  4124. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  4125. content: url("../images/pictos/linkedin_black.svg");
  4126. min-width: 50px; }
  4127. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  4128. margin-top: 0;
  4129. color: #09398b;
  4130. font-weight: 800;
  4131. list-style: none;
  4132. padding-left: 0; }
  4133. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  4134. color: #09398b;
  4135. font-size: 1.2rem;
  4136. text-decoration: underline;
  4137. margin-top: 0; }
  4138. #fotter-bottom .region-footer-bottom-middle {
  4139. width: 60%; }
  4140. @media (max-width: 810px) {
  4141. #fotter-bottom .region-footer-bottom-middle {
  4142. width: 100%; } }
  4143. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content {
  4144. display: flex;
  4145. flex-direction: row;
  4146. justify-content: flex-start;
  4147. flex-wrap: wrap; }
  4148. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  4149. padding-right: 1rem;
  4150. padding-bottom: 1rem; }
  4151. /* Slider */
  4152. .slick-slider {
  4153. position: relative;
  4154. display: block;
  4155. box-sizing: border-box;
  4156. -webkit-touch-callout: none;
  4157. -webkit-user-select: none;
  4158. -khtml-user-select: none;
  4159. -moz-user-select: none;
  4160. -ms-user-select: none;
  4161. user-select: none;
  4162. -ms-touch-action: pan-y;
  4163. touch-action: pan-y;
  4164. -webkit-tap-highlight-color: transparent; }
  4165. .slick-list {
  4166. position: relative;
  4167. overflow: hidden;
  4168. display: block;
  4169. margin: 0;
  4170. padding: 0; }
  4171. .slick-list:focus {
  4172. outline: none; }
  4173. .slick-list.dragging {
  4174. cursor: pointer;
  4175. cursor: hand; }
  4176. .slick-slider .slick-track,
  4177. .slick-slider .slick-list {
  4178. -webkit-transform: translate3d(0, 0, 0);
  4179. -moz-transform: translate3d(0, 0, 0);
  4180. -ms-transform: translate3d(0, 0, 0);
  4181. -o-transform: translate3d(0, 0, 0);
  4182. transform: translate3d(0, 0, 0); }
  4183. .slick-track {
  4184. position: relative;
  4185. left: 0;
  4186. top: 0;
  4187. display: block;
  4188. margin-left: auto;
  4189. margin-right: auto; }
  4190. .slick-track:before, .slick-track:after {
  4191. content: "";
  4192. display: table; }
  4193. .slick-track:after {
  4194. clear: both; }
  4195. .slick-loading .slick-track {
  4196. visibility: hidden; }
  4197. .slick-slide {
  4198. float: left;
  4199. height: 100%;
  4200. min-height: 1px;
  4201. display: none; }
  4202. [dir="rtl"] .slick-slide {
  4203. float: right; }
  4204. .slick-slide img {
  4205. display: block; }
  4206. .slick-slide.slick-loading img {
  4207. display: none; }
  4208. .slick-slide.dragging img {
  4209. pointer-events: none; }
  4210. .slick-initialized .slick-slide {
  4211. display: block; }
  4212. .slick-loading .slick-slide {
  4213. visibility: hidden; }
  4214. .slick-vertical .slick-slide {
  4215. display: block;
  4216. height: auto;
  4217. border: 1px solid transparent; }
  4218. .slick-arrow.slick-hidden {
  4219. display: none; }
  4220. /* Slider */
  4221. .slick-loading .slick-list {
  4222. background: #fff url("./ajax-loader.gif") center center no-repeat; }
  4223. /* Icons */
  4224. /* Arrows */
  4225. .slick-prev,
  4226. .slick-next {
  4227. position: absolute;
  4228. display: block;
  4229. height: 60px;
  4230. width: 60px;
  4231. line-height: 0px;
  4232. font-size: 0px;
  4233. cursor: pointer;
  4234. background: transparent;
  4235. color: transparent;
  4236. top: 50%;
  4237. -webkit-transform: translate(0, -50%);
  4238. -ms-transform: translate(0, -50%);
  4239. transform: translate(0, -50%);
  4240. padding: 0;
  4241. border: none;
  4242. outline: none; }
  4243. .slick-prev:hover, .slick-prev:focus,
  4244. .slick-next:hover,
  4245. .slick-next:focus {
  4246. outline: none;
  4247. background: transparent;
  4248. color: transparent; }
  4249. .slick-prev:hover:before, .slick-prev:focus:before,
  4250. .slick-next:hover:before,
  4251. .slick-next:focus:before {
  4252. opacity: 1; }
  4253. .slick-prev.slick-disabled:before,
  4254. .slick-next.slick-disabled:before {
  4255. opacity: 0.25; }
  4256. .slick-prev:before,
  4257. .slick-next:before {
  4258. font-family: "marianne";
  4259. font-size: 60px;
  4260. line-height: 1;
  4261. color: #009ee3;
  4262. opacity: 0.75;
  4263. -webkit-font-smoothing: antialiased;
  4264. -moz-osx-font-smoothing: grayscale; }
  4265. .slick-prev {
  4266. z-index: 1;
  4267. left: 25px; }
  4268. [dir="rtl"] .slick-prev {
  4269. left: auto;
  4270. right: 25px; }
  4271. .slick-prev:before {
  4272. content: "←"; }
  4273. [dir="rtl"] .slick-prev:before {
  4274. content: "→"; }
  4275. .slick-next {
  4276. right: 25px; }
  4277. [dir="rtl"] .slick-next {
  4278. left: 25px;
  4279. right: auto; }
  4280. .slick-next:before {
  4281. content: "→"; }
  4282. [dir="rtl"] .slick-next:before {
  4283. content: "←"; }
  4284. /* Dots */
  4285. .slick-dotted.slick-slider {
  4286. margin-bottom: 30px; }
  4287. html.js body.node-type-actualite.node-id-88.path-node.page-node-type-actualite div.dialog-off-canvas-main-canvas div.layout-container main div.layout-content div.region.region-content div#block-contenudelapageprincipale.block.block-system.block-system-main-block div.layout.layout--threecol-25-50-25 div.layout__region.layout__region--top div.block-region-top div.block.block-ctools-block.block-entity-fieldnodefield-images div.field.field--name-field-images.field--type-image.field--label-hidden.field__items.slick-initialized.slick-slider.slick-dotted ul.slick-dots {
  4288. width: 600px; }
  4289. .slick-dots {
  4290. position: absolute;
  4291. bottom: -25px;
  4292. list-style: none;
  4293. display: block;
  4294. text-align: center;
  4295. padding: 0;
  4296. margin: 0;
  4297. width: 100%; }
  4298. .slick-dots li {
  4299. position: relative;
  4300. display: inline-block;
  4301. height: 20px;
  4302. width: 20px;
  4303. margin: 0 5px;
  4304. padding: 0;
  4305. cursor: pointer; }
  4306. .slick-dots li button {
  4307. border: 0;
  4308. background: transparent;
  4309. display: block;
  4310. height: 20px;
  4311. width: 20px;
  4312. outline: none;
  4313. line-height: 0px;
  4314. font-size: 0px;
  4315. color: transparent;
  4316. padding: 5px;
  4317. cursor: pointer; }
  4318. .slick-dots li button:hover, .slick-dots li button:focus {
  4319. outline: none; }
  4320. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  4321. opacity: 1; }
  4322. .slick-dots li button:before {
  4323. position: absolute;
  4324. top: 0;
  4325. left: 0;
  4326. content: "•";
  4327. width: 20px;
  4328. height: 20px;
  4329. font-family: "marianne";
  4330. font-size: 50px;
  4331. line-height: 20px;
  4332. text-align: center;
  4333. color: black;
  4334. opacity: 0.25;
  4335. -webkit-font-smoothing: antialiased;
  4336. -moz-osx-font-smoothing: grayscale; }
  4337. .slick-dots li.slick-active button:before {
  4338. color: black;
  4339. opacity: 0.75; }