styles.css 257 KB

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