styles.css 211 KB

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