styles.css 236 KB

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