styles.css 218 KB

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