styles.css 239 KB

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