styles.css 235 KB

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