styles.css 228 KB

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