styles.css 234 KB

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