styles.css 213 KB

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