styles.css 212 KB

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