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-start: 5;
  721. grid-column-end: 9; }
  722. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  723. padding-top: 2rem;
  724. width: 600px;
  725. max-height: 360px;
  726. object-fit: cover; }
  727. @media (max-width: 810px) {
  728. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  729. display: flex;
  730. flex-direction: column; } }
  731. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  732. display: flex;
  733. justify-content: flex-end;
  734. position: -webkit-sticky;
  735. position: sticky;
  736. top: 10rem; }
  737. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  738. display: flex;
  739. justify-content: flex-end;
  740. width: 50%;
  741. background-color: white;
  742. padding-right: 2rem; }
  743. .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 {
  744. display: flex;
  745. font-size: 1rem;
  746. font-weight: 1000;
  747. color: #09398b;
  748. border-bottom: 1px solid #009ee3;
  749. padding-bottom: 0.5rem;
  750. padding-right: 1rem;
  751. margin-bottom: 0.8rem; }
  752. .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 {
  753. text-decoration: underline; }
  754. @media (max-width: 810px) {
  755. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  756. display: none; } }
  757. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  758. flex: 0 1 50%; }
  759. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  760. width: 90%; }
  761. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  762. margin-top: 0; }
  763. .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 {
  764. background-color: white; }
  765. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  766. background-color: white; }
  767. .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 {
  768. font-size: 1.5rem;
  769. font-weight: 1000;
  770. font-family: 'Source Code Pro';
  771. color: #09398b;
  772. text-transform: uppercase;
  773. margin-top: 2rem;
  774. margin-bottom: 0.8rem; }
  775. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  776. text-transform: none !important; }
  777. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  778. width: 100%;
  779. height: auto; }
  780. .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 {
  781. padding-right: 2rem; }
  782. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  783. margin-top: 0; }
  784. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  785. color: black;
  786. text-decoration: underline; }
  787. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  788. display: none; }
  789. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  790. overflow-y: visible !important; }
  791. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  792. font-size: 1.5rem;
  793. font-weight: 1000;
  794. font-family: 'Source Code Pro';
  795. color: #09398b;
  796. text-transform: uppercase;
  797. margin-top: 2rem;
  798. margin-bottom: 0.8rem; }
  799. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  800. display: flex;
  801. flex-direction: row;
  802. justify-content: space-between; }
  803. .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 {
  804. display: flex;
  805. flex-direction: column;
  806. align-items: center; }
  807. .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 {
  808. padding-top: 1rem; }
  809. @media (max-width: 810px) {
  810. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  811. flex: 0 1 80%;
  812. margin: auto; } }
  813. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  814. display: flex;
  815. flex-direction: column;
  816. width: 65%; }
  817. @media (max-width: 810px) {
  818. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  819. margin: auto; } }
  820. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  821. height: fit-content;
  822. border: 2px solid #009ee3;
  823. background-color: white;
  824. margin-bottom: 1rem;
  825. min-height: 4rem;
  826. color: #009ee3;
  827. padding-left: 1rem;
  828. padding-top: 1rem; }
  829. .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) {
  830. display: none; }
  831. .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 {
  832. height: inherit;
  833. margin: auto; }
  834. .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 {
  835. content: url("../images/pictos/noun_Download_file_307900.svg");
  836. min-width: 40px;
  837. height: auto;
  838. padding-right: 1rem; }
  839. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  840. hyphens: auto;
  841. display: inline-flex;
  842. align-items: center;
  843. color: #009ee3;
  844. font-weight: 800; }
  845. .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 {
  846. margin: auto;
  847. height: fit-content;
  848. border: 2px solid #009ee3;
  849. min-height: 4rem;
  850. background: white;
  851. color: #009ee3;
  852. padding-left: 1rem;
  853. padding-top: 1rem;
  854. margin-bottom: 1rem; }
  855. .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 {
  856. display: inline-flex;
  857. align-items: center;
  858. color: #009ee3;
  859. font-weight: 800; }
  860. .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 {
  861. content: url("../images/pictos/noun_External Link_674151.svg");
  862. min-width: 40px;
  863. height: auto;
  864. padding-right: 1rem; }
  865. .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 {
  866. display: none; }
  867. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  868. margin-top: 3rem; }
  869. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  870. font-size: 0.8rem;
  871. color: black;
  872. font-weight: 900; }
  873. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  874. display: flex;
  875. flex-direction: column;
  876. border: 2px solid #009ee3;
  877. padding: 1rem;
  878. height: fit-content;
  879. margin-bottom: 1rem;
  880. background-color: white; }
  881. .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 {
  882. border-top: 1px solid #009ee3;
  883. padding-top: 1rem; }
  884. .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 {
  885. content: url("../images/pictos/noun_Arrow_3771902.svg");
  886. align-self: flex-end; }
  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 .field--name-title a {
  888. color: black;
  889. font-size: 1.4rem;
  890. font-weight: 600; }
  891. .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- {
  892. font-weight: 800; }
  893. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  894. margin: 0; }
  895. .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 {
  896. display: none; }
  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-edition p {
  898. margin: 0; }
  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-edition .field__label {
  900. display: none; }
  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-images {
  902. width: 50%; }
  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-images img {
  904. width: 100%;
  905. height: auto; }
  906. .node-id-35 .region-content {
  907. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  908. background-repeat: no-repeat;
  909. max-width: 100vw;
  910. background-size: contain; }
  911. .node-id-35 .layout__region--top {
  912. padding-bottom: 3rem;
  913. height: 30vh; }
  914. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  915. display: none;
  916. height: inherit; }
  917. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  918. font-family: 'Source Code Pro';
  919. font-size: 2rem;
  920. font-weight: 800;
  921. color: white;
  922. background-color: #009ee3;
  923. text-transform: uppercase; }
  924. .node-id-3 {
  925. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  926. background-repeat: no-repeat;
  927. background-position-y: 7rem;
  928. max-width: 100vw;
  929. background-size: contain; }
  930. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  931. display: none;
  932. height: inherit; }
  933. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  934. color: #009ee3;
  935. background-color: white; }
  936. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  937. background: #009ee3 !important;
  938. color: white !important; }
  939. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  940. color: white !important; }
  941. .node-id-3 .block-entity-fieldnodefield-liens {
  942. display: none; }
  943. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  944. background: #009ee3;
  945. color: white; }
  946. .node-id-3 .block-entity-fieldnodefield-ress {
  947. margin-top: 3rem; }
  948. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  949. font-size: 0.8rem;
  950. color: black;
  951. font-weight: 900; }
  952. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  953. display: flex;
  954. flex-direction: column;
  955. border: 2px solid #009ee3;
  956. padding: 1rem;
  957. height: fit-content;
  958. margin-bottom: 1rem;
  959. background-color: white; }
  960. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  961. border-top: 1px solid #009ee3;
  962. padding-top: 1rem; }
  963. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  964. content: url("../images/pictos/noun_Arrow_3771902.svg");
  965. align-self: flex-end; }
  966. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  967. color: black;
  968. font-size: 1.4rem;
  969. font-weight: 600; }
  970. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  971. font-weight: 800; }
  972. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  973. margin: 0; }
  974. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  975. display: none; }
  976. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  977. margin: 0; }
  978. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  979. display: none; }
  980. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  981. display: none;
  982. width: 50%; }
  983. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  984. width: 100%;
  985. height: auto; }
  986. .path-actualites {
  987. background-color: rgba(0, 158, 227, 0.2);
  988. margin: 0; }
  989. .path-actualites .block-region-content {
  990. display: grid;
  991. grid-template-columns: 1fr 8fr 1fr;
  992. margin: auto;
  993. padding-top: 3rem; }
  994. .path-actualites .block-region-content .block-views {
  995. grid-column: 2; }
  996. .path-actualites .block-region-content .block-views .view-content {
  997. display: flex;
  998. flex-direction: row;
  999. flex-wrap: wrap; }
  1000. .path-actualites .block-region-content .block-views .view-content .views-row {
  1001. width: 25%;
  1002. flex: 0 0 25%; }
  1003. @media (max-width: 810px) {
  1004. .path-actualites .block-region-content .block-views .view-content {
  1005. flex-direction: column; }
  1006. .path-actualites .block-region-content .block-views .view-content .views-row {
  1007. width: 100%; } }
  1008. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  1009. padding-top: 0; }
  1010. .path-actualites .block-region-content .block-views .node-type-actualite {
  1011. color: #09398b;
  1012. line-height: 1.5rem;
  1013. padding: 0.5rem;
  1014. padding-right: 1rem;
  1015. padding-left: 1rem; }
  1016. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  1017. display: flex;
  1018. flex-direction: column; }
  1019. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  1020. color: #09398b; }
  1021. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  1022. order: 1; }
  1023. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  1024. width: 100%;
  1025. max-height: 175px;
  1026. object-fit: cover; }
  1027. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  1028. display: block;
  1029. 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>'); }
  1030. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  1031. margin-top: 0.5rem;
  1032. font-size: 0.9rem;
  1033. font-weight: 800;
  1034. order: 4; }
  1035. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  1036. order: 2;
  1037. display: flex;
  1038. flex-direction: row;
  1039. justify-content: flex-start; }
  1040. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  1041. padding-left: 1rem;
  1042. content: "|"; }
  1043. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  1044. font-size: 0.9rem;
  1045. font-weight: 800;
  1046. padding-right: 1rem;
  1047. width: fit-content; }
  1048. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  1049. order: 3; }
  1050. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  1051. width: 100%; }
  1052. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  1053. margin: 0; }
  1054. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  1055. padding-top: none !important;
  1056. list-style: none;
  1057. width: fit-content;
  1058. align-self: flex-end;
  1059. padding-right: 1rem; }
  1060. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  1061. display: none; }
  1062. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  1063. order: 5;
  1064. padding-top: 1rem; }
  1065. .node-id-4 {
  1066. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  1067. background-repeat: no-repeat;
  1068. background-position-y: 7rem;
  1069. max-width: 100vw;
  1070. background-size: contain; }
  1071. .node-id-4 #block-contenudelapageprincipale {
  1072. scroll-margin: 8rem; }
  1073. .node-id-4 .layout__region--top {
  1074. padding-bottom: 3rem;
  1075. height: 30vh; }
  1076. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1077. display: none;
  1078. height: inherit; }
  1079. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1080. font-family: 'Source Code Pro';
  1081. font-size: 2rem;
  1082. font-weight: 800;
  1083. color: white;
  1084. background-color: #009ee3;
  1085. text-transform: uppercase; }
  1086. .node-id-4 .layout__region--second {
  1087. width: 25%; }
  1088. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  1089. background-color: white; }
  1090. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1091. font-size: 1.5rem;
  1092. font-weight: 1000;
  1093. font-family: 'Source Code Pro';
  1094. color: #09398b;
  1095. text-transform: uppercase; }
  1096. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1097. text-transform: none !important; }
  1098. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1099. padding-right: 2rem; }
  1100. .node-id-5 .region-content {
  1101. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  1102. background-repeat: no-repeat;
  1103. max-width: 100vw;
  1104. background-size: contain; }
  1105. .node-id-5 .layout__region--top {
  1106. padding-bottom: 3rem;
  1107. height: 30vh; }
  1108. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1109. font-family: 'Source Code Pro';
  1110. font-size: 2rem;
  1111. font-weight: 800;
  1112. color: white;
  1113. background-color: #009ee3;
  1114. text-transform: uppercase; }
  1115. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  1116. color: black;
  1117. text-decoration: underline; }
  1118. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  1119. display: none; }
  1120. .path-faq #block-contenudelapageprincipale h2 {
  1121. font-family: 'Source Code Pro';
  1122. font-size: 2rem;
  1123. font-weight: 800;
  1124. color: #009ee3;
  1125. background-color: white;
  1126. text-transform: uppercase;
  1127. width: fit-content;
  1128. margin-left: 10%;
  1129. margin-top: 8rem; }
  1130. @media (max-width: 810px) {
  1131. .path-faq #block-contenudelapageprincipale h2 {
  1132. margin-left: 6%;
  1133. margin-right: 1%; } }
  1134. .path-faq #block-contenudelapageprincipale .block-region-content {
  1135. display: grid;
  1136. grid-template-columns: 1fr repeat(4, 2fr) 1fr; }
  1137. @media (max-width: 810px) {
  1138. .path-faq #block-contenudelapageprincipale .block-region-content {
  1139. display: flex;
  1140. flex-direction: column;
  1141. margin: auto; } }
  1142. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1143. grid-column: 2 / span 3; }
  1144. @media (max-width: 810px) {
  1145. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  1146. width: 80%;
  1147. margin: auto; } }
  1148. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  1149. display: none;
  1150. grid-column: 5;
  1151. grid-row: 1 /span 2;
  1152. height: fit-content;
  1153. flex-direction: column;
  1154. max-width: fit-content;
  1155. margin-left: 2rem;
  1156. padding: 1rem;
  1157. background-color: #009ee3; }
  1158. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  1159. text-align: center; }
  1160. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  1161. margin-top: 1rem;
  1162. display: block;
  1163. content: url("../images/pictos/picto_faq.svg"); }
  1164. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  1165. font-size: 0.8rem;
  1166. font-weight: 1000;
  1167. color: #09398b;
  1168. text-transform: uppercase; }
  1169. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  1170. display: flex;
  1171. flex-direction: column;
  1172. margin-top: 0;
  1173. margin-left: 1.5rem;
  1174. margin-right: 1.5rem;
  1175. text-align: center; }
  1176. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  1177. font-weight: 800;
  1178. color: white;
  1179. font-size: 1.3rem; }
  1180. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  1181. margin-left: auto;
  1182. padding-top: 1rem;
  1183. display: block;
  1184. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1185. @media (max-width: 810px) {
  1186. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  1187. margin: auto;
  1188. padding: 0rem; }
  1189. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  1190. text-align: center; }
  1191. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  1192. margin-top: 1rem;
  1193. display: block;
  1194. content: url("../images/pictos/picto_faq_2.svg"); }
  1195. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  1196. font-size: 0.8rem;
  1197. font-weight: 1000;
  1198. color: #09398b;
  1199. text-transform: uppercase; } }
  1200. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  1201. margin-top: 2rem;
  1202. grid-column: 2 / span 3;
  1203. display: grid;
  1204. grid-template-columns: 1fr 1fr 1fr; }
  1205. @media (max-width: 810px) {
  1206. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  1207. width: 80%;
  1208. margin: auto;
  1209. margin-top: 1rem; } }
  1210. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  1211. grid-column: 1 / span 3; }
  1212. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  1213. border-bottom: 1px solid #009ee3;
  1214. padding-bottom: 2rem; }
  1215. @media (max-width: 810px) {
  1216. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  1217. padding-bottom: 1rem; } }
  1218. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  1219. display: none; }
  1220. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  1221. cursor: pointer; }
  1222. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  1223. font-family: 'Source Code Pro';
  1224. font-weight: 500;
  1225. color: #09398b;
  1226. font-size: 1.3rem; }
  1227. .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 {
  1228. display: inline-flex;
  1229. 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>');
  1230. float: right; }
  1231. .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 {
  1232. display: inline-flex;
  1233. 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>');
  1234. float: right; }
  1235. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  1236. display: none; }
  1237. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  1238. display: none; }
  1239. .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) {
  1240. display: none; }
  1241. .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) {
  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 .file--mime-application-pdf ::before {
  1244. display: inline-block;
  1245. content: url("../images/pictos/noun_Download_file_307900.svg");
  1246. width: 30px;
  1247. height: 30px;
  1248. padding-right: 0.8rem; }
  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 a {
  1250. display: inline-flex;
  1251. align-items: center;
  1252. color: black;
  1253. font-weight: 800; }
  1254. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  1255. display: none; }
  1256. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  1257. display: flex;
  1258. flex-direction: row;
  1259. justify-content: left;
  1260. align-items: center;
  1261. color: black;
  1262. font-weight: 800; }
  1263. .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 {
  1264. display: inline-block;
  1265. content: url("../images/pictos/noun_External Link_674151.svg");
  1266. width: 30px;
  1267. height: 30px;
  1268. padding-right: 0.8rem; }
  1269. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  1270. display: none; }
  1271. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  1272. display: none;
  1273. margin-top: 0.5rem; }
  1274. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  1275. color: black;
  1276. text-decoration: underline;
  1277. font-weight: 800; }
  1278. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  1279. display: block; }
  1280. .node-id-6 {
  1281. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  1282. background-repeat: no-repeat;
  1283. background-position-y: 7rem;
  1284. max-width: 100vw;
  1285. background-size: contain; }
  1286. .node-id-6 .layout__region--top {
  1287. padding-bottom: 3rem;
  1288. height: 30vh; }
  1289. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1290. display: none;
  1291. height: inherit; }
  1292. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1293. font-family: 'Source Code Pro';
  1294. font-size: 2rem;
  1295. font-weight: 800;
  1296. color: white;
  1297. background-color: #009ee3;
  1298. text-transform: uppercase; }
  1299. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  1300. color: black;
  1301. text-decoration: underline; }
  1302. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  1303. display: none; }
  1304. .path-ressources.basededonnees .layout-content {
  1305. width: 100vw; }
  1306. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale span {
  1307. padding-top: 3rem;
  1308. padding-bottom: 3rem;
  1309. vertical-align: middle; }
  1310. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1311. margin: 0;
  1312. padding-top: 2rem;
  1313. height: 4rem;
  1314. color: white;
  1315. font-family: "Source Code Pro";
  1316. text-transform: uppercase;
  1317. background: #009ee3;
  1318. padding-left: 13%; }
  1319. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1320. display: grid;
  1321. grid-template-columns: 1fr repeat(8, 2fr) 1fr; }
  1322. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 {
  1323. grid-column: 1 / span 10;
  1324. background: rgba(0, 158, 227, 0.2);
  1325. height: fit-content;
  1326. display: flex; }
  1327. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  1328. width: 100%;
  1329. display: grid;
  1330. grid-template-columns: 1fr repeat(8, 2fr) 1fr; }
  1331. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type .view-id-collections {
  1332. grid-column: 3 / span 8;
  1333. height: 100%;
  1334. display: flex;
  1335. width: 80%; }
  1336. .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 {
  1337. display: flex;
  1338. flex-direction: row;
  1339. margin: auto;
  1340. margin-top: 2rem;
  1341. margin-bottom: 2rem;
  1342. justify-content: space-between;
  1343. align-items: center; }
  1344. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type .view-id-collections .view-content .views-row {
  1345. display: flex;
  1346. margin: auto;
  1347. background: white;
  1348. width: 46%;
  1349. height: 80%;
  1350. padding: 1rem; }
  1351. .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 {
  1352. grid-column: 3 /span 6; }
  1353. .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 {
  1354. margin: 0;
  1355. padding: 1rem;
  1356. padding-bottom: 2rem; }
  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 a {
  1358. color: black;
  1359. font-size: 1.5rem;
  1360. font-weight: 600; }
  1361. .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 {
  1362. background: #09398b; }
  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:hover a {
  1364. color: white; }
  1365. .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 {
  1366. background-color: #09398b; }
  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 .active a {
  1368. color: white; }
  1369. @media (max-width: 810px) {
  1370. .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 {
  1371. flex-direction: column; }
  1372. .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 {
  1373. width: 100%;
  1374. margin-top: 1rem; } }
  1375. @media (max-width: 480px) {
  1376. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  1377. width: 90%;
  1378. display: flex;
  1379. margin: auto; } }
  1380. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages {
  1381. grid-column: 3 / span 5;
  1382. width: 100%;
  1383. margin: auto; }
  1384. @media (max-width: 810px) {
  1385. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages {
  1386. padding: 2rem; } }
  1387. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollection--block-1 {
  1388. grid-column: 3 / span 5;
  1389. margin: auto;
  1390. background: white;
  1391. margin-top: 2rem; }
  1392. @media (max-width: 810px) {
  1393. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollection--block-1 {
  1394. padding: 2rem; } }
  1395. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  1396. visibility: hidden; }
  1397. @media (max-width: 810px) {
  1398. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  1399. margin: auto; } }
  1400. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 {
  1401. width: 80%;
  1402. grid-column: 3 / span 8; }
  1403. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-filters {
  1404. display: none;
  1405. background-color: white;
  1406. margin-top: 2rem;
  1407. margin-bottom: 2rem; }
  1408. .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 {
  1409. width: fit-content;
  1410. display: flex; }
  1411. .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 {
  1412. width: fit-content; }
  1413. .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 {
  1414. width: fit-content; }
  1415. .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 {
  1416. width: fit-content; }
  1417. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content {
  1418. display: flex;
  1419. flex-direction: row;
  1420. flex-wrap: wrap;
  1421. justify-content: space-between;
  1422. margin-top: 3rem; }
  1423. .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 {
  1424. width: 49%;
  1425. min-height: 250px;
  1426. border: 2px solid #009ee3;
  1427. background-color: white;
  1428. margin-bottom: 1rem; }
  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:hover {
  1430. background-color: #009ee3; }
  1431. @media (max-width: 810px) {
  1432. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content {
  1433. flex-direction: column; }
  1434. .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 {
  1435. width: 100%; } }
  1436. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource {
  1437. display: flex;
  1438. flex-direction: column;
  1439. padding: 1rem; }
  1440. .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 {
  1441. text-transform: uppercase; }
  1442. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-type-de-ressource a {
  1443. color: #009ee3;
  1444. font-weight: 900;
  1445. font-size: 0.8rem; }
  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-title h2 {
  1447. margin: 0; }
  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-title h2 a {
  1449. color: black;
  1450. font-size: 1.4rem;
  1451. font-weight: 600; }
  1452. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 .view-content .node-type-ressource .field--name-field-auteur-s- {
  1453. font-weight: 800; }
  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-field-auteur-s- p {
  1455. margin: 0; }
  1456. .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 {
  1457. display: none; }
  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-edition p {
  1459. margin: 0; }
  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-edition .field__label {
  1461. display: none; }
  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-images {
  1463. display: none;
  1464. width: 50%; }
  1465. .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 {
  1466. width: 100%;
  1467. height: auto; }
  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-mots-clefs {
  1469. display: flex;
  1470. margin-top: 2rem;
  1471. flex-direction: row;
  1472. flex-wrap: wrap; }
  1473. .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 {
  1474. margin-right: 0.5rem;
  1475. padding-left: 0.3rem;
  1476. padding-right: 0.3rem;
  1477. font-size: 0.8rem; }
  1478. .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 {
  1479. background: #09398b;
  1480. color: white;
  1481. font-weight: 800;
  1482. vertical-align: super;
  1483. padding-left: 0.1rem;
  1484. padding-right: 0.1rem;
  1485. display: inline-flex; }
  1486. .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 {
  1487. display: none; }
  1488. @media (max-width: 810px) {
  1489. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockbase-de-donnees-block-1 {
  1490. margin: auto; } }
  1491. @media (max-width: 810px) {
  1492. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1493. display: flex;
  1494. flex-direction: column;
  1495. margin: auto; } }
  1496. .path-ressources.basededonnees.autres .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  1497. visibility: visible !important;
  1498. grid-column: 8 / span 9;
  1499. margin-top: 4rem;
  1500. background-color: #009ee3;
  1501. height: fit-content;
  1502. width: 60%;
  1503. margin-left: 2rem;
  1504. grid-row: 2; }
  1505. .path-ressources.basededonnees.autres .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien {
  1506. display: flex;
  1507. flex-direction: column;
  1508. margin-top: 2rem;
  1509. margin-bottom: 2rem;
  1510. margin-left: 1.5rem;
  1511. margin-right: 1.5rem;
  1512. text-align: center; }
  1513. .path-ressources.basededonnees.autres .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien a {
  1514. font-weight: 800;
  1515. color: white;
  1516. font-size: 1.3rem; }
  1517. .path-ressources.basededonnees.autres .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien:after {
  1518. margin-left: auto;
  1519. padding-top: 1rem;
  1520. display: block;
  1521. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1522. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  1523. width: 100%;
  1524. font-family: 'Source Code Pro';
  1525. font-size: 1.5rem;
  1526. font-weight: 800;
  1527. color: white;
  1528. background-color: #009ee3;
  1529. text-transform: uppercase;
  1530. padding-left: 13%;
  1531. padding-top: 1rem;
  1532. padding-bottom: 0.5rem;
  1533. vertical-align: middle; }
  1534. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  1535. margin-top: 2rem;
  1536. margin-left: 13%;
  1537. color: #009ee3;
  1538. text-transform: uppercase;
  1539. font-weight: 800; }
  1540. @media (max-width: 810px) {
  1541. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  1542. margin-left: 9%;
  1543. margin-right: 9%; } }
  1544. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1545. margin-left: 13%;
  1546. font-size: 2rem;
  1547. font-weight: 600; }
  1548. @media (max-width: 810px) {
  1549. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1550. margin-left: 9%;
  1551. margin-right: 9%; } }
  1552. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  1553. margin-left: 13%; }
  1554. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  1555. margin-bottom: 0; }
  1556. @media (max-width: 810px) {
  1557. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  1558. margin-left: 9%;
  1559. margin-right: 9%; } }
  1560. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  1561. margin-left: 13%; }
  1562. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  1563. font-size: 1.5rem;
  1564. font-weight: 800; }
  1565. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  1566. margin: 0; }
  1567. @media (max-width: 810px) {
  1568. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  1569. margin-left: 9%;
  1570. margin-right: 9%; } }
  1571. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  1572. margin-left: 13%; }
  1573. @media (max-width: 810px) {
  1574. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  1575. margin-left: 9%;
  1576. margin-right: 9%; } }
  1577. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  1578. margin-left: 13%; }
  1579. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  1580. display: inline-flex;
  1581. margin-top: 2rem; }
  1582. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  1583. background: #09398b;
  1584. margin-right: 1rem;
  1585. padding-left: 0.3rem;
  1586. padding-right: 0.3rem;
  1587. color: white;
  1588. font-weight: 800;
  1589. vertical-align: middle; }
  1590. @media (max-width: 810px) {
  1591. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  1592. margin-left: 9%;
  1593. margin-right: 9%; }
  1594. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  1595. display: flex;
  1596. flex-direction: row;
  1597. flex-wrap: wrap; }
  1598. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  1599. margin-bottom: 0.5rem; } }
  1600. .page-node-type-ressource .layout__region--first {
  1601. margin-top: 3rem;
  1602. position: relative; }
  1603. .page-node-type-ressource .layout__region--first .block-region-first {
  1604. display: flex;
  1605. justify-content: flex-end;
  1606. position: sticky;
  1607. top: 7rem; }
  1608. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1609. display: flex;
  1610. width: 50%;
  1611. background-color: white;
  1612. padding-right: 2rem; }
  1613. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  1614. display: flex;
  1615. font-size: 1rem;
  1616. font-weight: 1000;
  1617. color: #09398b;
  1618. border-bottom: 1px solid #009ee3;
  1619. padding-bottom: 0.5rem;
  1620. padding-right: 1rem; }
  1621. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  1622. text-decoration: underline; }
  1623. .page-node-type-ressource .layout__region--second {
  1624. margin-top: 3rem; }
  1625. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  1626. background-color: white; }
  1627. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1628. font-size: 1.5rem;
  1629. font-weight: 1000;
  1630. font-family: 'Source Code Pro';
  1631. color: #09398b;
  1632. text-transform: uppercase; }
  1633. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  1634. text-transform: none !important; }
  1635. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  1636. width: 100%;
  1637. height: auto; }
  1638. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  1639. padding-right: 2rem; }
  1640. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  1641. margin-top: 0; }
  1642. @media (max-width: 810px) {
  1643. .page-node-type-ressource .layout__region--second {
  1644. flex: 0 1 80%;
  1645. margin: auto; } }
  1646. .page-node-type-ressource .layout__region--third {
  1647. margin-top: 3rem; }
  1648. @media (max-width: 810px) {
  1649. .page-node-type-ressource .layout__region--third {
  1650. flex: 0 1 100%; } }
  1651. .page-node-type-ressource .layout__region--third .block-region-third {
  1652. display: flex;
  1653. flex-direction: column;
  1654. width: 70%; }
  1655. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  1656. height: fit-content;
  1657. border: 2px solid #009ee3;
  1658. background-color: white; }
  1659. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  1660. min-height: 4rem;
  1661. background: white;
  1662. color: #009ee3;
  1663. padding-left: 1rem;
  1664. padding-top: 1rem;
  1665. margin-bottom: 1rem; }
  1666. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  1667. display: none; }
  1668. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  1669. height: inherit;
  1670. margin: auto; }
  1671. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  1672. content: url("../images/pictos/noun_Download_file_307900.svg");
  1673. min-width: 50px;
  1674. height: auto;
  1675. padding-right: 1rem; }
  1676. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  1677. hyphens: auto;
  1678. display: inline-flex;
  1679. align-items: center;
  1680. color: #009ee3;
  1681. font-weight: 800; }
  1682. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1683. margin: auto;
  1684. height: fit-content;
  1685. border: 2px solid #009ee3;
  1686. min-height: 4rem;
  1687. background: white;
  1688. color: #009ee3;
  1689. padding-left: 1rem;
  1690. padding-top: 1rem;
  1691. margin-bottom: 1rem; }
  1692. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1693. display: inline-flex;
  1694. align-items: center;
  1695. color: #009ee3;
  1696. font-weight: 800; }
  1697. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1698. content: url("../images/pictos/noun_External Link_674151.svg");
  1699. min-width: 50px;
  1700. height: auto;
  1701. padding-right: 1rem; }
  1702. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1703. display: none; }
  1704. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1705. margin-top: 3rem; }
  1706. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  1707. font-size: 0.8rem;
  1708. color: black;
  1709. font-weight: 900;
  1710. margin-bottom: 1rem; }
  1711. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  1712. display: flex;
  1713. flex-direction: column;
  1714. border: 2px solid #009ee3;
  1715. padding: 1rem;
  1716. height: fit-content;
  1717. margin-bottom: 1rem;
  1718. background-color: white; }
  1719. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type {
  1720. border-top: 1px solid #009ee3;
  1721. padding-top: 1rem; }
  1722. .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 {
  1723. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1724. align-self: flex-end; }
  1725. .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 {
  1726. margin: 0; }
  1727. .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 {
  1728. color: black;
  1729. font-size: 1.4rem;
  1730. font-weight: 600; }
  1731. .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- {
  1732. font-weight: 800; }
  1733. .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 {
  1734. margin: 0; }
  1735. .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 {
  1736. display: none; }
  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-edition p {
  1738. margin: 0; }
  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-edition .field__label {
  1740. display: none; }
  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-images {
  1742. display: none;
  1743. width: 50%; }
  1744. .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 {
  1745. width: 100%;
  1746. height: auto; }
  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-type-de-ressource {
  1748. text-transform: uppercase; }
  1749. .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 {
  1750. color: #009ee3;
  1751. font-weight: 900;
  1752. font-size: 0.8rem; }
  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-mots-clefs {
  1754. display: flex;
  1755. margin-top: 2rem;
  1756. flex-direction: row;
  1757. flex-wrap: wrap; }
  1758. .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 {
  1759. margin-right: 1rem;
  1760. padding-left: 0.3rem;
  1761. padding-right: 0.3rem; }
  1762. .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 {
  1763. background: #09398b;
  1764. color: white;
  1765. font-weight: 800;
  1766. vertical-align: super;
  1767. padding-left: 0.1rem;
  1768. padding-right: 0.1rem;
  1769. display: inline-flex; }
  1770. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource ul.links.inline {
  1771. display: none; }
  1772. @media (max-width: 810px) {
  1773. .page-node-type-ressource .layout__region--third .block-region-third {
  1774. margin: auto; } }
  1775. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  1776. padding-top: 3rem;
  1777. padding-bottom: 3rem;
  1778. vertical-align: middle;
  1779. color: white; }
  1780. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  1781. font-family: 'Source Code Pro';
  1782. font-size: 2rem;
  1783. font-weight: 800;
  1784. color: white;
  1785. background-color: #009ee3;
  1786. text-transform: uppercase;
  1787. width: fit-content;
  1788. margin-left: 10%;
  1789. margin-top: 8rem; }
  1790. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  1791. display: grid;
  1792. grid-template-columns: 1fr repeat(4, 2fr) 1fr; }
  1793. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  1794. grid-column: 2 / span 3;
  1795. margin-top: 4rem; }
  1796. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  1797. margin: auto;
  1798. background: white; }
  1799. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  1800. margin: 0; }
  1801. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  1802. grid-column: 5;
  1803. margin-top: 4rem;
  1804. background-color: #009ee3;
  1805. height: fit-content;
  1806. width: 60%;
  1807. margin-left: 2rem;
  1808. aspect-ratio: 1/1;
  1809. display: flex; }
  1810. @media (max-width: 1260px) {
  1811. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  1812. width: 70%; } }
  1813. @media (max-width: 1073px) {
  1814. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  1815. width: 80%; } }
  1816. @media (max-width: 935px) {
  1817. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  1818. width: 90%; } }
  1819. @media (max-width: 810px) {
  1820. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  1821. width: 100%; } }
  1822. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  1823. display: flex;
  1824. flex-direction: column;
  1825. text-align: center;
  1826. margin: auto;
  1827. padding: 1rem; }
  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 {
  1829. display: block;
  1830. font-weight: 800;
  1831. color: white;
  1832. font-size: 1.3rem; }
  1833. .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 {
  1834. margin-left: 80%;
  1835. padding-top: 0.5rem;
  1836. display: block;
  1837. content: url("../images/pictos/noun_Arrow_3771902.svg"); }
  1838. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  1839. grid-column: 2 / span 3; }
  1840. @media (max-width: 810px) {
  1841. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  1842. grid-column: 2 / span 4; } }
  1843. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  1844. margin: auto; }
  1845. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  1846. display: none;
  1847. background: white; }
  1848. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  1849. display: flex;
  1850. flex-wrap: wrap;
  1851. margin-top: 3rem; }
  1852. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  1853. width: 50%; }
  1854. .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 {
  1855. display: flex;
  1856. justify-content: space-between;
  1857. padding: 1rem;
  1858. height: fit-content;
  1859. margin-bottom: 1rem;
  1860. background-color: white;
  1861. margin-right: 1rem; }
  1862. .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 {
  1863. content: url("../images/pictos/noun_Arrow_3771902.svg");
  1864. align-self: flex-end; }
  1865. .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 {
  1866. display: grid;
  1867. grid-template-columns: 1fr 1fr 1fr;
  1868. grid-template-rows: repeat(6 auto); }
  1869. .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 {
  1870. grid-column: 1 / span 3;
  1871. grid-row: 1;
  1872. margin-bottom: 1rem;
  1873. text-transform: uppercase;
  1874. font-weight: 900;
  1875. font-size: 0.8rem; }
  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 {
  1877. grid-column: 1;
  1878. grid-row: 2 / span 6;
  1879. margin-right: 1rem;
  1880. max-height: 170px; }
  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-photo img {
  1882. max-width: 100%;
  1883. object-fit: cover;
  1884. height: auto;
  1885. max-height: 95%; }
  1886. .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 {
  1887. grid-column: 2;
  1888. grid-row: 2;
  1889. padding-right: 0.5rem;
  1890. text-transform: uppercase;
  1891. font-weight: 800;
  1892. font-size: 1rem; }
  1893. .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 {
  1894. grid-column: 3;
  1895. grid-row: 2;
  1896. text-transform: uppercase;
  1897. font-weight: 800;
  1898. font-size: 1rem; }
  1899. .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 {
  1900. grid-column: 2 / span 3;
  1901. grid-row: 3;
  1902. text-transform: uppercase;
  1903. font-weight: 800;
  1904. font-size: 0.8rem; }
  1905. .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 {
  1906. grid-column: 2 / span 3;
  1907. grid-row: 4;
  1908. font-size: 1.3rem; }
  1909. .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 {
  1910. color: black; }
  1911. .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 {
  1912. grid-column: 2 / span 3;
  1913. grid-row: 5;
  1914. text-transform: uppercase;
  1915. font-weight: 800;
  1916. font-size: 00.8rem; }
  1917. .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 {
  1918. display: inline-flex;
  1919. grid-column: 2 /span 3;
  1920. grid-row: 6;
  1921. font-size: 0.8rem;
  1922. padding-top: 1rem;
  1923. justify-content: flex-start; }
  1924. .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 {
  1925. justify-self: flex-start; }
  1926. .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 {
  1927. content: "proposé le";
  1928. hyphens: none;
  1929. padding-right: 0.5rem; }
  1930. .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 {
  1931. border: 2px solid #ff000f; }
  1932. .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 {
  1933. border: 2px solid #a01a27; }
  1934. .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 {
  1935. border: 2px solid #c7d74a; }
  1936. .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 {
  1937. border: 2px solid #ff6453; }
  1938. .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 {
  1939. border: 2px solid #6f6d7d; }
  1940. @media (max-width: 810px) {
  1941. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  1942. flex-direction: column; }
  1943. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  1944. width: 100%; } }
  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; }