styles.css 231 KB

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