styles.css 212 KB

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