styles.css 212 KB

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