bundle.css 337 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007
  1. /*!*******************************************************************************************************************************************************************!*\
  2. !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./scss/styles.scss ***!
  3. \*******************************************************************************************************************************************************************/
  4. @charset "UTF-8";
  5. /*eql*/
  6. /*setup*/
  7. /*global*/
  8. @font-face {
  9. font-family: "Font Awesome";
  10. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  11. font-weight: 400;
  12. font-style: normal;
  13. }
  14. /*marianne*/
  15. @font-face {
  16. font-family: "Marianne";
  17. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  18. font-weight: 300;
  19. font-style: normal;
  20. }
  21. @font-face {
  22. font-family: "Marianne";
  23. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  24. font-weight: 300;
  25. font-style: italic;
  26. }
  27. @font-face {
  28. font-family: "Marianne";
  29. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  30. font-weight: 400;
  31. font-style: normal;
  32. }
  33. @font-face {
  34. font-family: "Marianne";
  35. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  36. font-weight: 400;
  37. font-style: italic;
  38. }
  39. @font-face {
  40. font-family: "Marianne";
  41. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  42. font-weight: 600;
  43. font-style: normal;
  44. }
  45. @font-face {
  46. font-family: "Marianne";
  47. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  48. font-weight: 600;
  49. font-style: italic;
  50. }
  51. @font-face {
  52. font-family: "Marianne";
  53. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  54. font-weight: 800;
  55. font-style: normal;
  56. }
  57. @font-face {
  58. font-family: "Marianne";
  59. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  60. font-weight: 800;
  61. font-style: italic;
  62. }
  63. @font-face {
  64. font-family: "Marianne";
  65. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  66. font-weight: 900;
  67. font-style: normal;
  68. }
  69. @font-face {
  70. font-family: "Marianne";
  71. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  72. font-weight: 900;
  73. font-style: italic;
  74. }
  75. @font-face {
  76. font-family: "Marianne";
  77. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  78. font-weight: 1000;
  79. font-style: normal;
  80. }
  81. @font-face {
  82. font-family: "Marianne";
  83. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  84. font-weight: 1000;
  85. font-style: italic;
  86. }
  87. /* Source Code Pro */
  88. @font-face {
  89. font-family: "Source Code Pro";
  90. src: url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff") format("woff");
  91. font-weight: 500;
  92. font-style: normal;
  93. }
  94. @font-face {
  95. font-family: "Source Code Pro";
  96. src: url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff") format("woff");
  97. font-weight: 1000;
  98. font-style: normal;
  99. }
  100. /* Colors used for EQL */
  101. .path-user .buttons-filtres-ressources {
  102. display: none;
  103. }
  104. @media screen {
  105. .print_only {
  106. display: none;
  107. }
  108. }
  109. .layout-container {
  110. font-family: "Marianne", sans-serif;
  111. margin: none;
  112. top: 0%;
  113. left: 0%;
  114. width: 100%;
  115. overflow: hidden;
  116. display: flex;
  117. flex-flow: row wrap;
  118. }
  119. .layout-container header {
  120. flex: 0 0 100%;
  121. }
  122. .layout-container main {
  123. position: relative;
  124. }
  125. .layout-container footer {
  126. flex: 0 0 100%;
  127. }
  128. .layout-content {
  129. padding-top: 10rem;
  130. padding-bottom: 6rem;
  131. }
  132. @media (max-width: 810px) {
  133. .layout-content {
  134. padding-top: 5rem;
  135. }
  136. }
  137. .path-frontpage {
  138. margin: 0;
  139. }
  140. .path-node {
  141. margin: 0;
  142. }
  143. .path-faq {
  144. margin: 0;
  145. }
  146. .path-ressources {
  147. margin: 0;
  148. }
  149. .path-webform {
  150. margin: 0;
  151. }
  152. .path-projets {
  153. margin: 0;
  154. }
  155. .path-incubateur {
  156. margin: 0;
  157. }
  158. main {
  159. width: 100%;
  160. }
  161. .main-content {
  162. margin-top: 7rem;
  163. }
  164. .field--name-field-titre .field__item {
  165. color: rgb(9, 57, 139);
  166. font-weight: 900;
  167. font-size: 2rem;
  168. }
  169. .field--name-field-titre .field__label {
  170. visibility: hidden;
  171. }
  172. .inter-titre {
  173. color: rgb(0, 158, 227);
  174. }
  175. a {
  176. text-decoration: none;
  177. }
  178. a.ext {
  179. color: black;
  180. }
  181. svg.ext {
  182. display: none;
  183. }
  184. @media (max-width: 959px) {
  185. #block-headermenu {
  186. display: none;
  187. }
  188. .page-node-type-static .layout__region--top {
  189. height: 23vh;
  190. }
  191. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  192. margin-top: 11vh;
  193. }
  194. .page-node-type-static .node-id-20 .field--name-field-partenaires .paragraph--type--partenaire {
  195. display: flex;
  196. flex-direction: column;
  197. }
  198. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  199. width: 70%;
  200. }
  201. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  202. display: flex;
  203. flex-direction: column;
  204. }
  205. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  206. width: 100%;
  207. }
  208. }
  209. @media (max-width: 810px) {
  210. .page-node-type-static .layout__region--top {
  211. padding-bottom: 0rem;
  212. }
  213. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  214. margin-left: 8%;
  215. margin-right: 5%;
  216. }
  217. .page-node-type-static .layout__region--first .block-region-first {
  218. display: none;
  219. }
  220. .page-node-type-static .layout__region--second {
  221. flex: 0 1 80%;
  222. margin: auto;
  223. }
  224. .page-node-type-static .layout__region--third .block-region-third {
  225. margin: auto;
  226. }
  227. }
  228. @media (max-width: 479px) {
  229. #header-top #block-logogouv img {
  230. min-width: 45px;
  231. width: 70%;
  232. height: auto;
  233. }
  234. #header-top #block-logoeql img {
  235. min-width: 45px;
  236. width: 80%;
  237. height: auto;
  238. }
  239. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  240. display: flex;
  241. flex-direction: column;
  242. }
  243. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  244. width: 90%;
  245. display: flex;
  246. margin: auto;
  247. }
  248. }
  249. /*global*/
  250. /* -------------------------
  251. Paged.js : format + compteur
  252. -------------------------- */
  253. @page {
  254. size: A4 portrait;
  255. margin: 1.5cm;
  256. @bottom-center {
  257. content: "Page " counter(page) " / " counter(pages);
  258. font-size: 9pt;
  259. }
  260. }
  261. /* Pas de numéro sur cover / back-cover */
  262. .cover {
  263. page: cover;
  264. }
  265. .back-cover {
  266. page: backcover;
  267. }
  268. @page cover {
  269. @bottom-center {
  270. content: none;
  271. }
  272. }
  273. @page backcover {
  274. @bottom-center {
  275. content: none;
  276. }
  277. }
  278. /* -------------------------
  279. PRINT (Ctrl+P)
  280. -------------------------- */
  281. @media print {
  282. /* Cache l’UI du site */
  283. header[role=banner],
  284. footer[role=contentinfo],
  285. nav,
  286. .slick-arrow,
  287. .slick-dots,
  288. .layout__region--first {
  289. display: none !important;
  290. }
  291. .layout__region--top {
  292. flex: 0 1 100% !important;
  293. }
  294. .layout__region--top .block-entity-fieldnodefield-photo,
  295. .layout__region--top .top_right {
  296. width: 100% !important;
  297. }
  298. .top_top {
  299. flex-direction: column !important;
  300. }
  301. .layout__region--second {
  302. flex: 0 1 100% !important;
  303. margin: auto;
  304. margin-left: 3rem;
  305. }
  306. /* Cover */
  307. .cover.print-only {
  308. display: flex !important;
  309. min-height: 100vh;
  310. align-items: center;
  311. justify-content: center;
  312. text-align: center;
  313. break-after: page;
  314. }
  315. /* Back cover */
  316. .back-cover.print-only {
  317. break-before: page;
  318. }
  319. .back-cover.print-only .views-row-wrapper {
  320. display: flex;
  321. flex-direction: row;
  322. flex-wrap: wrap;
  323. }
  324. /* Optionnel : éviter l’URL après liens sur la cover */
  325. .cover.print-only a[href^=http]::after,
  326. .cover.print-only a[href^=https]::after {
  327. content: "" !important;
  328. }
  329. }
  330. /* -------------------------
  331. SCREEN preview (Paged.js)
  332. -------------------------- */
  333. @media screen {
  334. /* En écran normal : cacher print-only */
  335. body:not(.use-paged) .print-only {
  336. display: none !important;
  337. }
  338. /* Fond et affichage pages */
  339. body.use-paged {
  340. background: #ddd;
  341. }
  342. body.use-paged .pagedjs_pages {
  343. width: 100%;
  344. padding: 2rem 0;
  345. }
  346. body.use-paged .pagedjs_page {
  347. margin: 1rem auto;
  348. background: #fff;
  349. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  350. }
  351. body.use-paged .pagedjs_pagebox {
  352. width: 210mm;
  353. min-height: 297mm;
  354. margin: 0 auto;
  355. background: #fff;
  356. }
  357. /* Paged.js met le contenu dans .pagedjs_page_content : on évite les surprises */
  358. body.use-paged .pagedjs_page_content {
  359. display: block;
  360. }
  361. }
  362. .path-projets-complets .layout-container header {
  363. top: inherit !important;
  364. left: inherit !important;
  365. }
  366. .path-projets-complets .layout-content {
  367. width: 60vw;
  368. margin: auto;
  369. }
  370. .path-projets-complets span {
  371. display: none;
  372. }
  373. .path-projets-complets .node-type-projet {
  374. border-bottom: 1px solid black;
  375. padding-bottom: 5rem;
  376. margin-bottom: 5rem;
  377. }
  378. .path-projets-complets .projet-content {
  379. display: flex;
  380. flex-direction: column;
  381. }
  382. .path-projets-complets .field--name-field-photo .field__label {
  383. display: none;
  384. }
  385. .path-projets-complets .field--name-field-photo .field__items {
  386. height: 100%;
  387. display: grid;
  388. gap: 3px;
  389. }
  390. .path-projets-complets .field--name-field-photo .field__item {
  391. overflow: hidden;
  392. aspect-ratio: 3/2;
  393. }
  394. .path-projets-complets .field--name-field-photo .field__item img {
  395. width: 100%;
  396. height: 100%;
  397. object-fit: cover;
  398. display: block;
  399. }
  400. .path-projets-complets .field--name-field-photo .image-field-caption {
  401. display: none;
  402. }
  403. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:only-child) {
  404. grid-template-columns: 1fr;
  405. }
  406. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:only-child) .field__item {
  407. grid-column: 1;
  408. }
  409. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:nth-child(2)) {
  410. grid-template-columns: repeat(3, 1fr);
  411. }
  412. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:nth-child(2)) .field__item:first-child {
  413. grid-column: 1/4;
  414. }
  415. .path-projets-complets .field--name-field-photo .field__items .field__item:nth-child(n+8) {
  416. display: none;
  417. }
  418. .path-projets-complets .field--name-title {
  419. order: 2;
  420. font-family: "Marianne";
  421. font-size: 2rem;
  422. font-weight: 800;
  423. color: rgb(0, 158, 227);
  424. }
  425. @media (max-width: 1624px) {
  426. .path-projets-complets .field--name-title {
  427. font-size: 2.3rem;
  428. }
  429. }
  430. @media (max-width: 1384px) {
  431. .path-projets-complets .field--name-title {
  432. font-size: 2rem;
  433. }
  434. }
  435. @media (max-width: 1216px) {
  436. .path-projets-complets .field--name-title {
  437. font-size: 2rem;
  438. }
  439. }
  440. @media (max-width: 810px) {
  441. .path-projets-complets .field--name-title {
  442. font-size: 1.7rem;
  443. }
  444. }
  445. .path-projets-complets .field--name-title a {
  446. color: rgb(0, 158, 227);
  447. }
  448. .path-projets-complets .field--name-field-equipe {
  449. order: 3;
  450. color: rgb(9, 57, 139);
  451. font-size: 1.5rem;
  452. font-weight: 900;
  453. text-transform: uppercase;
  454. }
  455. @media (max-width: 1624px) {
  456. .path-projets-complets .field--name-field-equipe {
  457. font-size: 1.3rem;
  458. }
  459. }
  460. @media (max-width: 1216px) {
  461. .path-projets-complets .field--name-field-equipe {
  462. font-size: 1.1rem;
  463. }
  464. }
  465. @media (max-width: 810px) {
  466. .path-projets-complets .field--name-field-equipe {
  467. font-size: 1rem;
  468. }
  469. }
  470. .path-projets-complets .field--name-field-equipe .field__label {
  471. display: none;
  472. }
  473. .path-projets-complets .field--name-field-incube {
  474. order: 4;
  475. width: fit-content;
  476. background-color: rgb(225, 0, 15);
  477. color: white;
  478. font-weight: 800;
  479. padding-right: 0.3rem;
  480. padding-left: 0.2rem;
  481. flex-direction: row;
  482. }
  483. .path-projets-complets .field--name-field-incube::before {
  484. content: " Projet ";
  485. padding-right: 0.5rem;
  486. }
  487. .path-projets-complets .field--name-field-incube .field__item {
  488. display: none;
  489. }
  490. .path-projets-complets .field--name-field-neuf-rehabilitation,
  491. .path-projets-complets .field--name-field-encours-fini {
  492. display: none;
  493. }
  494. .path-projets-complets .field--name-field-region {
  495. order: 5;
  496. width: 30%;
  497. position: relative;
  498. height: 80px;
  499. text-align: center;
  500. padding-right: 1rem;
  501. }
  502. @media (max-width: 479px) {
  503. .path-projets-complets .field--name-field-region {
  504. width: 100%;
  505. }
  506. }
  507. .path-projets-complets .field--name-field-region .field__label {
  508. display: none;
  509. }
  510. .path-projets-complets .field--name-field-region::before {
  511. content: url("../images/pictos/picto_lieu.svg");
  512. min-width: 30px;
  513. height: auto;
  514. padding-right: 1rem;
  515. position: absolute;
  516. left: 0;
  517. margin-top: 0.83em;
  518. margin-left: 1rem;
  519. }
  520. .path-projets-complets .field--name-field-type-de-moa {
  521. order: 6;
  522. }
  523. .path-projets-complets .field--name-field-type-de-projet {
  524. order: 7;
  525. }
  526. .path-projets-complets .field--name-field-etape-du-projet {
  527. order: 8;
  528. }
  529. .path-projets-complets .field--name-field-textes {
  530. order: 9;
  531. }
  532. .path-projets-complets .field--name-field-textes .field__label {
  533. display: none;
  534. }
  535. .path-projets-complets .field--name-field-textes .field--name-field-titre {
  536. color: rgb(9, 57, 139);
  537. font-size: 1.2rem;
  538. font-weight: 900;
  539. text-transform: uppercase;
  540. margin-bottom: 0 !important;
  541. flex-direction: row;
  542. }
  543. .path-projets-complets .field--name-field-textes .field--name-field-titre::after {
  544. content: " :";
  545. padding-left: 0.5rem;
  546. }
  547. .path-projets-complets .field--name-field-etape-du-projet a,
  548. .path-projets-complets .field--name-field-type-de-projet a,
  549. .path-projets-complets .field--name-field-type-de-moa a {
  550. color: black;
  551. }
  552. .path-projets-complets .field--name-field-etape-du-projet .field__label,
  553. .path-projets-complets .field--name-field-type-de-projet .field__label,
  554. .path-projets-complets .field--name-field-type-de-moa .field__label {
  555. color: rgb(9, 57, 139);
  556. font-size: 1.2rem;
  557. font-weight: 900;
  558. text-transform: uppercase;
  559. margin-bottom: 0 !important;
  560. flex-direction: row;
  561. }
  562. .path-projets-complets .field--name-field-etape-du-projet .field__label::after,
  563. .path-projets-complets .field--name-field-type-de-projet .field__label::after,
  564. .path-projets-complets .field--name-field-type-de-moa .field__label::after {
  565. content: ":";
  566. padding-left: 0.5rem;
  567. }
  568. @media print {
  569. .path-projets-complets .views-row {
  570. display: block !important;
  571. margin: 0 !important;
  572. overflow: visible !important;
  573. float: none !important;
  574. position: static !important;
  575. }
  576. .path-projets-complets .node-type-projet {
  577. break-before: page;
  578. page-break-before: always;
  579. border: 1px solid black;
  580. margin: 0 !important;
  581. overflow: visible !important;
  582. }
  583. .path-projets-complets .views-row:first-child .node-type-projet {
  584. break-before: auto;
  585. page-break-before: auto;
  586. }
  587. .path-projets-complets .projet-content {
  588. display: block !important;
  589. }
  590. .path-projets-complets .projet-header-print {
  591. display: block;
  592. break-inside: avoid;
  593. page-break-inside: avoid;
  594. overflow: visible !important;
  595. }
  596. .path-projets-complets .projet-body-print {
  597. display: block;
  598. break-before: page;
  599. page-break-before: always;
  600. overflow: visible !important;
  601. }
  602. .path-projets-complets .projet-header-print .field,
  603. .path-projets-complets .projet-header-print .field__items,
  604. .path-projets-complets .projet-header-print .field__item,
  605. .path-projets-complets .projet-header-print h2,
  606. .path-projets-complets .projet-header-print p,
  607. .path-projets-complets .projet-header-print blockquote {
  608. break-inside: avoid;
  609. page-break-inside: avoid;
  610. }
  611. .path-projets-complets .projet-body-print .field,
  612. .path-projets-complets .projet-body-print .field__items,
  613. .path-projets-complets .projet-body-print .field__item,
  614. .path-projets-complets .projet-body-print .paragraph,
  615. .path-projets-complets .projet-body-print p,
  616. .path-projets-complets .projet-body-print ul,
  617. .path-projets-complets .projet-body-print li {
  618. break-inside: auto;
  619. page-break-inside: auto;
  620. overflow: visible !important;
  621. }
  622. .path-projets-complets .projet-header-print .field--name-field-photo {
  623. margin-bottom: 1.5rem;
  624. }
  625. .path-projets-complets .projet-header-print .field--name-field-photo .field__label {
  626. display: none;
  627. }
  628. .path-projets-complets .projet-header-print .field--name-field-photo .field__items {
  629. display: grid !important;
  630. grid-template-columns: repeat(3, 1fr);
  631. gap: 3px;
  632. }
  633. .path-projets-complets .projet-header-print .field--name-field-photo .field__item:first-child {
  634. grid-column: 1/4;
  635. grid-row: 1;
  636. }
  637. .path-projets-complets .projet-header-print .field--name-field-photo .field__item {
  638. overflow: hidden;
  639. }
  640. .path-projets-complets .projet-header-print .field--name-field-photo .field__item img {
  641. width: 100%;
  642. height: 100%;
  643. object-fit: cover;
  644. display: block;
  645. }
  646. .path-projets-complets .projet-header-print .field--name-title {
  647. font-family: "Marianne";
  648. font-size: 1.5rem;
  649. font-weight: 800;
  650. color: rgb(0, 158, 227);
  651. margin-bottom: 1rem;
  652. }
  653. .path-projets-complets .projet-header-print .field--name-title a {
  654. color: rgb(0, 158, 227);
  655. text-decoration: none;
  656. }
  657. .path-projets-complets .projet-header-print .field--name-field-equipe {
  658. color: rgb(9, 57, 139);
  659. font-size: 1.2rem;
  660. font-weight: 900;
  661. text-transform: uppercase;
  662. margin-bottom: 0.5rem;
  663. }
  664. .path-projets-complets .projet-header-print .field--name-field-equipe .field__label {
  665. display: none;
  666. }
  667. .path-projets-complets .projet-header-print .field--name-field-incube {
  668. width: fit-content;
  669. background-color: rgb(225, 0, 15);
  670. color: white;
  671. font-weight: 800;
  672. padding-right: 0.3rem;
  673. padding-left: 0.2rem;
  674. display: flex;
  675. flex-direction: row;
  676. }
  677. .path-projets-complets .projet-header-print .field--name-field-incube::before {
  678. content: " Projet ";
  679. padding-right: 0.5rem;
  680. }
  681. .path-projets-complets .projet-header-print .field--name-field-incube .field__item {
  682. display: none;
  683. }
  684. .path-projets-complets .projet-body-print .field--name-field-region {
  685. width: 30%;
  686. position: relative;
  687. height: 80px;
  688. text-align: center;
  689. padding-right: 1rem;
  690. }
  691. .path-projets-complets .projet-body-print .field--name-field-region .field__label {
  692. display: none;
  693. }
  694. .path-projets-complets .projet-body-print .field--name-field-region::before {
  695. content: url("../images/pictos/picto_lieu.svg");
  696. min-width: 30px;
  697. height: auto;
  698. padding-right: 1rem;
  699. position: absolute;
  700. left: 0;
  701. margin-top: 0.83em;
  702. margin-left: 1rem;
  703. }
  704. .path-projets-complets .projet-body-print .field--name-field-textes .field__label {
  705. display: none;
  706. }
  707. .path-projets-complets .projet-body-print .field--name-field-textes .field--name-field-titre {
  708. color: rgb(9, 57, 139);
  709. font-size: 1.2rem;
  710. font-weight: 900;
  711. text-transform: uppercase;
  712. margin-bottom: 0 !important;
  713. }
  714. .path-projets-complets .projet-body-print .field--name-field-textes .field--name-field-titre::after {
  715. content: " :";
  716. padding-left: 0.5rem;
  717. }
  718. .path-projets-complets .projet-body-print .field--name-field-type-de-moa a,
  719. .path-projets-complets .projet-body-print .field--name-field-type-de-projet a,
  720. .path-projets-complets .projet-body-print .field--name-field-etape-du-projet a {
  721. color: black;
  722. text-decoration: none;
  723. }
  724. .path-projets-complets .projet-body-print .field--name-field-type-de-moa .field__label,
  725. .path-projets-complets .projet-body-print .field--name-field-type-de-projet .field__label,
  726. .path-projets-complets .projet-body-print .field--name-field-etape-du-projet .field__label {
  727. color: rgb(9, 57, 139);
  728. font-size: 1.2rem;
  729. font-weight: 900;
  730. text-transform: uppercase;
  731. margin-bottom: 0 !important;
  732. }
  733. .path-projets-complets .projet-body-print .field--name-field-type-de-moa .field__label::after,
  734. .path-projets-complets .projet-body-print .field--name-field-type-de-projet .field__label::after,
  735. .path-projets-complets .projet-body-print .field--name-field-etape-du-projet .field__label::after {
  736. content: ":";
  737. padding-left: 0.5rem;
  738. }
  739. .path-projets-complets .field--name-field-neuf-rehabilitation,
  740. .path-projets-complets .field--name-field-encours-fini,
  741. .path-projets-complets svg.ext {
  742. display: none !important;
  743. }
  744. }
  745. /*pages*/
  746. /*
  747. @import "pages/partials/header_footer";
  748. @import "pages/home";
  749. */
  750. .path-node.page-node-type-static .layout-container {
  751. overflow: unset;
  752. }
  753. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  754. padding-bottom: 3rem;
  755. height: 30vh;
  756. }
  757. @media (max-width: 810px) {
  758. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  759. padding-bottom: 0rem;
  760. }
  761. }
  762. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  763. width: fit-content;
  764. margin-left: 11%;
  765. margin-top: 15vh;
  766. }
  767. @media (max-width: 810px) {
  768. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  769. margin-left: 8%;
  770. margin-right: 5%;
  771. }
  772. }
  773. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  774. display: inline;
  775. font-family: "Source Code Pro";
  776. font-size: 2rem;
  777. font-weight: 800;
  778. text-transform: uppercase;
  779. }
  780. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  781. position: relative;
  782. }
  783. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  784. display: flex;
  785. justify-content: flex-end;
  786. position: -webkit-sticky;
  787. position: sticky;
  788. top: 10rem;
  789. }
  790. @media (max-width: 810px) {
  791. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  792. display: none;
  793. }
  794. }
  795. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  796. display: flex;
  797. width: 50%;
  798. background-color: rgb(255, 255, 255);
  799. padding-right: 2rem;
  800. }
  801. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  802. display: flex;
  803. font-size: 1rem;
  804. font-weight: 1000;
  805. color: rgb(9, 57, 139);
  806. border-bottom: 1px solid rgb(0, 158, 227);
  807. padding-bottom: 0.8rem;
  808. padding-right: 1rem;
  809. margin-top: 1rem;
  810. scroll-margin-top: 7em;
  811. }
  812. .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 {
  813. text-decoration: underline;
  814. }
  815. @media (max-width: 810px) {
  816. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  817. flex: 0 1 80%;
  818. margin: auto;
  819. }
  820. }
  821. @media (max-width: 479px) {
  822. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  823. padding-top: 5rem;
  824. }
  825. }
  826. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  827. margin-top: 1rem;
  828. background-color: rgb(255, 255, 255);
  829. }
  830. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  831. font-size: 1.5rem;
  832. font-weight: 1000;
  833. font-family: "Source Code Pro", monospace;
  834. color: rgb(9, 57, 139);
  835. text-transform: uppercase;
  836. margin-top: 2rem;
  837. margin-bottom: 0.8rem;
  838. }
  839. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  840. text-transform: none !important;
  841. }
  842. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  843. width: 100%;
  844. height: auto;
  845. }
  846. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  847. padding: 0.5rem 1rem 1rem 1.5rem;
  848. }
  849. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  850. margin-top: 0;
  851. }
  852. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  853. margin-top: 1rem;
  854. display: flex;
  855. flex-direction: column;
  856. width: 70%;
  857. }
  858. @media (max-width: 810px) {
  859. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  860. margin: auto;
  861. }
  862. }
  863. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  864. height: fit-content;
  865. border: 2px solid rgb(0, 158, 227);
  866. background-color: rgb(255, 255, 255);
  867. }
  868. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers {
  869. min-height: 4rem;
  870. background: rgb(255, 255, 255);
  871. color: rgb(0, 158, 227);
  872. padding-left: 0.8rem;
  873. padding-top: 1rem;
  874. padding-bottom: 1rem;
  875. padding-right: 0.5rem;
  876. }
  877. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers span:nth-of-type(2) {
  878. display: none;
  879. }
  880. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf {
  881. height: inherit;
  882. margin: auto;
  883. }
  884. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf ::before {
  885. content: url("../images/pictos/download.png");
  886. height: auto;
  887. padding-right: 1rem;
  888. }
  889. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf a {
  890. hyphens: auto;
  891. display: inline-flex;
  892. color: rgb(0, 158, 227);
  893. font-weight: 800;
  894. align-items: center;
  895. }
  896. .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 {
  897. margin: auto;
  898. height: fit-content;
  899. border: 2px solid rgb(0, 158, 227);
  900. min-height: 2rem;
  901. background: rgb(255, 255, 255);
  902. color: rgb(0, 158, 227);
  903. padding-left: 0.8rem;
  904. padding-top: 1rem;
  905. padding-bottom: 1rem;
  906. margin-bottom: 1rem;
  907. padding-right: 0.5rem;
  908. }
  909. .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 {
  910. display: inline-flex;
  911. justify-items: center;
  912. color: rgb(0, 158, 227);
  913. font-weight: 800;
  914. align-items: center;
  915. }
  916. .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 {
  917. content: url("../images/pictos/external_link.png");
  918. height: auto;
  919. padding-right: 1rem;
  920. }
  921. .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 {
  922. display: none;
  923. }
  924. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  925. margin-top: 3rem;
  926. }
  927. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  928. font-size: 0.8rem;
  929. color: rgb(0, 0, 0);
  930. font-weight: 900;
  931. }
  932. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  933. border: 2px solid rgb(0, 158, 227);
  934. background-color: rgb(255, 255, 255);
  935. margin-bottom: 1rem;
  936. padding: 1rem;
  937. }
  938. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  939. display: flex;
  940. flex-direction: column;
  941. }
  942. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-type-de-ressource {
  943. order: 2;
  944. text-transform: uppercase;
  945. color: rgb(0, 158, 227);
  946. font-weight: 900;
  947. font-size: 0.8rem;
  948. }
  949. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title {
  950. order: 3;
  951. }
  952. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 {
  953. margin: 0;
  954. }
  955. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 a {
  956. color: rgb(0, 0, 0);
  957. font-size: 1rem;
  958. font-weight: 900;
  959. }
  960. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-sous-titre {
  961. order: 4;
  962. }
  963. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- {
  964. order: 5;
  965. font-weight: 800;
  966. }
  967. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- p {
  968. margin: 0;
  969. }
  970. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  971. display: none;
  972. }
  973. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition p {
  974. margin: 0;
  975. }
  976. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition .field__label {
  977. display: none;
  978. }
  979. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images {
  980. order: 1;
  981. width: 25%;
  982. }
  983. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images img {
  984. width: 100%;
  985. height: auto;
  986. border: solid 1px gray;
  987. }
  988. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-date-de-parution {
  989. order: 6;
  990. }
  991. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-date-de-parution .field__label {
  992. display: none;
  993. }
  994. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs {
  995. order: 7;
  996. display: flex;
  997. margin-top: 0.8rem;
  998. flex-direction: row;
  999. flex-wrap: wrap;
  1000. }
  1001. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__label {
  1002. display: none;
  1003. }
  1004. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  1005. display: flex;
  1006. flex-direction: row;
  1007. flex-wrap: wrap;
  1008. }
  1009. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  1010. padding-bottom: 0.5rem;
  1011. margin-right: 0.5rem;
  1012. padding-right: 0.3rem;
  1013. font-size: 0.8rem;
  1014. }
  1015. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  1016. background: rgb(9, 57, 139);
  1017. color: rgb(255, 255, 255);
  1018. font-weight: 800;
  1019. vertical-align: super;
  1020. padding-left: 0.1rem;
  1021. padding-right: 0.1rem;
  1022. display: inline-flex;
  1023. }
  1024. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div ul.links.inline {
  1025. display: none;
  1026. }
  1027. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1028. width: 100vw;
  1029. height: auto;
  1030. padding-top: 5rem;
  1031. background: rgba(0, 158, 227, 0.2);
  1032. }
  1033. @media (max-width: 810px) {
  1034. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1035. height: auto;
  1036. }
  1037. }
  1038. @media (max-width: 792px), (max-width: 724px), (max-width: 479px) {
  1039. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1040. max-height: fit-content;
  1041. padding-top: 2rem;
  1042. }
  1043. }
  1044. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  1045. height: auto;
  1046. }
  1047. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row-wrapper {
  1048. margin-bottom: 0;
  1049. }
  1050. @media (max-width: 810px) {
  1051. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  1052. width: 100vw !important;
  1053. height: auto !important;
  1054. }
  1055. }
  1056. @media (max-width: 479px) {
  1057. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  1058. height: auto !important;
  1059. width: 100vw !important;
  1060. }
  1061. }
  1062. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list.draggable {
  1063. padding-left: 0px !important;
  1064. }
  1065. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  1066. color: rgb(0, 0, 0);
  1067. line-height: 1.5rem;
  1068. width: 80%;
  1069. height: auto;
  1070. margin: auto;
  1071. margin-bottom: 2rem;
  1072. }
  1073. @media (max-width: 810px) {
  1074. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  1075. width: 90%;
  1076. height: auto;
  1077. }
  1078. }
  1079. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  1080. display: flex;
  1081. flex-direction: row;
  1082. justify-content: space-between;
  1083. margin-left: 2rem;
  1084. }
  1085. @media (max-width: 810px) {
  1086. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  1087. display: flex;
  1088. flex-direction: column;
  1089. height: auto;
  1090. margin-left: 0;
  1091. }
  1092. }
  1093. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo {
  1094. width: 50%;
  1095. display: flex;
  1096. justify-content: end;
  1097. }
  1098. @media (max-width: 810px) {
  1099. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo {
  1100. width: 100%;
  1101. }
  1102. }
  1103. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item {
  1104. display: flex;
  1105. max-height: 420px;
  1106. }
  1107. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1108. max-width: 100%;
  1109. max-height: 456px;
  1110. object-fit: cover;
  1111. object-position: center;
  1112. }
  1113. @media (max-width: 810px) {
  1114. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1115. max-height: 310px;
  1116. max-width: 100%;
  1117. object-fit: cover;
  1118. padding-left: 0;
  1119. margin-bottom: 1rem;
  1120. }
  1121. }
  1122. @media (max-width: 724px) {
  1123. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1124. max-height: 400px;
  1125. }
  1126. }
  1127. @media (max-width: 680px) {
  1128. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1129. max-height: 200px;
  1130. object-fit: cover;
  1131. margin: auto;
  1132. padding-left: 0;
  1133. padding-bottom: 1rem;
  1134. }
  1135. }
  1136. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos {
  1137. width: 45%;
  1138. align-content: center;
  1139. color: rgb(9, 57, 139) !important;
  1140. }
  1141. @media (max-width: 810px) {
  1142. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos {
  1143. width: 100%;
  1144. }
  1145. }
  1146. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date:empty,
  1147. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu:empty,
  1148. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title:empty,
  1149. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre:empty,
  1150. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type:empty,
  1151. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .ul:empty {
  1152. display: none;
  1153. }
  1154. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date {
  1155. font-size: 1.3rem;
  1156. }
  1157. @media (max-width: 811px) {
  1158. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date {
  1159. font-size: 1rem;
  1160. }
  1161. }
  1162. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date div {
  1163. display: flex !important;
  1164. flex-direction: row;
  1165. }
  1166. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date time {
  1167. display: flex;
  1168. flex-direction: row;
  1169. font-size: 1.3rem;
  1170. font-weight: 800;
  1171. padding-right: 1rem;
  1172. width: fit-content;
  1173. }
  1174. @media (min-width: 811px) {
  1175. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date time {
  1176. font-size: 0.9rem;
  1177. }
  1178. }
  1179. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu {
  1180. font-size: 1.3rem;
  1181. padding-top: 1rem;
  1182. }
  1183. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu .field__label {
  1184. display: none;
  1185. }
  1186. @media (max-width: 811px) {
  1187. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu {
  1188. display: inline-flex;
  1189. font-size: 0.9rem;
  1190. padding-top: 0.5rem;
  1191. }
  1192. }
  1193. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title {
  1194. line-height: 1.1;
  1195. font-size: 1.5rem;
  1196. padding-top: 1rem;
  1197. }
  1198. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title h2 a {
  1199. color: rgb(9, 57, 139) !important;
  1200. }
  1201. @media (max-width: 810px) {
  1202. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title {
  1203. font-size: 0.9rem;
  1204. padding-top: 0.5rem;
  1205. }
  1206. }
  1207. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre {
  1208. display: none;
  1209. font-weight: 800;
  1210. }
  1211. @media (min-width: 811px) {
  1212. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre {
  1213. font-size: 1.5rem;
  1214. }
  1215. }
  1216. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type {
  1217. padding-top: 2rem;
  1218. font-size: 1.3rem;
  1219. }
  1220. @media (max-width: 810px) {
  1221. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type {
  1222. font-size: 0.9rem;
  1223. padding-top: 1rem;
  1224. }
  1225. }
  1226. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field:not(.field--name-field-images) {
  1227. width: 100%;
  1228. }
  1229. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos h2 {
  1230. margin: 0;
  1231. }
  1232. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos a {
  1233. color: rgb(0, 0, 0);
  1234. }
  1235. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .inline.links {
  1236. display: none;
  1237. }
  1238. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1239. visibility: visible;
  1240. display: flex;
  1241. flex-flow: row;
  1242. justify-content: center;
  1243. background: rgba(0, 158, 227, 0.2);
  1244. padding-top: 3rem;
  1245. padding-bottom: 3rem;
  1246. border-bottom: 5px solid rgb(0, 158, 227);
  1247. }
  1248. @media (max-width: 479px) {
  1249. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1250. padding-top: 2rem;
  1251. padding-bottom: 2rem;
  1252. }
  1253. }
  1254. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien {
  1255. margin: auto;
  1256. height: fit-content;
  1257. padding: 0.4rem 1rem;
  1258. font-size: 0.8rem;
  1259. margin: 0;
  1260. background-color: rgb(255, 255, 255);
  1261. border: 2px solid rgb(0, 158, 227);
  1262. list-style: none;
  1263. display: inline-flex;
  1264. }
  1265. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien p {
  1266. margin: 0;
  1267. }
  1268. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a {
  1269. text-transform: uppercase;
  1270. font-weight: 700;
  1271. color: rgb(0, 158, 227);
  1272. display: inline-flex;
  1273. align-items: center;
  1274. }
  1275. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a::after {
  1276. 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>');
  1277. }
  1278. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  1279. padding-top: 2rem;
  1280. padding-bottom: 4rem;
  1281. }
  1282. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1283. width: 80%;
  1284. margin: auto;
  1285. }
  1286. @media (max-width: 479px) {
  1287. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1288. width: 80%;
  1289. }
  1290. }
  1291. .path-frontpage .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) {
  1292. display: flex;
  1293. flex-direction: row;
  1294. flex-wrap: wrap;
  1295. }
  1296. .path-frontpage .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) {
  1297. order: 3;
  1298. }
  1299. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  1300. z-index: 95;
  1301. align-self: flex-end;
  1302. width: fit-content;
  1303. height: fit-content;
  1304. padding: 0.4rem 1rem;
  1305. font-size: 0.8rem;
  1306. margin: 0;
  1307. background-color: rgb(255, 255, 255);
  1308. border: 2px solid rgb(0, 158, 227);
  1309. list-style: none;
  1310. }
  1311. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  1312. text-transform: uppercase;
  1313. font-weight: 700;
  1314. color: rgb(0, 158, 227);
  1315. display: inline-flex;
  1316. align-items: center;
  1317. }
  1318. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a:after {
  1319. 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>');
  1320. }
  1321. @media (max-width: 810px) {
  1322. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-images {
  1323. width: 100%;
  1324. }
  1325. }
  1326. @media (max-width: 810px) {
  1327. .path-frontpage .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 {
  1328. justify-content: center;
  1329. display: flex;
  1330. }
  1331. }
  1332. .path-frontpage .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 {
  1333. width: 15rem;
  1334. height: auto;
  1335. }
  1336. @media (max-width: 810px) {
  1337. .path-frontpage .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 {
  1338. width: 12rem;
  1339. padding-bottom: 1rem;
  1340. }
  1341. }
  1342. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  1343. display: none;
  1344. }
  1345. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  1346. flex: 1 1 50px;
  1347. padding-left: 1rem;
  1348. }
  1349. @media (max-width: 810px) {
  1350. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  1351. padding-left: 0em;
  1352. flex: 1 1 100%;
  1353. }
  1354. }
  1355. @media (max-width: 479px) {
  1356. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  1357. padding-left: 0em;
  1358. }
  1359. }
  1360. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  1361. background-color: rgb(255, 255, 255);
  1362. font-size: 1.5rem;
  1363. width: 110%;
  1364. padding-bottom: 2rem;
  1365. margin-block-start: 0;
  1366. text-align: start !important;
  1367. }
  1368. @media (max-width: 810px) {
  1369. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  1370. font-size: 1.2rem;
  1371. width: 100%;
  1372. }
  1373. }
  1374. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  1375. flex: 0 0 80%;
  1376. padding-top: 4rem;
  1377. margin: auto;
  1378. }
  1379. @media (max-width: 479px) {
  1380. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  1381. flex: 0 0 100%;
  1382. }
  1383. }
  1384. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos .field__items .field__item:nth-of-type(1) {
  1385. display: none;
  1386. }
  1387. .path-frontpage .block-views-blockprojets-block-4 {
  1388. border-top: 5px solid rgb(0, 158, 227);
  1389. background: rgba(0, 158, 227, 0.2);
  1390. padding-top: 2rem;
  1391. padding-bottom: 4rem;
  1392. }
  1393. @media (max-width: 810px) {
  1394. .path-frontpage .block-views-blockprojets-block-4 {
  1395. padding-bottom: 0rem;
  1396. }
  1397. }
  1398. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1399. width: 80%;
  1400. margin: auto;
  1401. padding-top: 1rem;
  1402. padding-bottom: 5rem;
  1403. text-transform: uppercase;
  1404. color: rgb(225, 0, 15);
  1405. font-family: "Source Code Pro";
  1406. font-weight: 1000;
  1407. }
  1408. @media (max-width: 479px) {
  1409. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1410. padding-bottom: 1rem;
  1411. }
  1412. }
  1413. .path-frontpage .block-views-blockprojets-block-4 .view-projets {
  1414. width: 80%;
  1415. margin: auto;
  1416. }
  1417. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1418. display: flex;
  1419. flex-direction: row;
  1420. justify-content: space-between;
  1421. }
  1422. @media (max-width: 810px) {
  1423. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1424. flex-direction: column;
  1425. }
  1426. }
  1427. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1428. width: 49%;
  1429. }
  1430. @media (max-width: 810px) {
  1431. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1432. width: 100%;
  1433. margin-bottom: 1rem;
  1434. }
  1435. }
  1436. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1437. color: rgb(9, 57, 139);
  1438. line-height: 1.5rem;
  1439. }
  1440. @media (max-width: 810px) {
  1441. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1442. padding-left: 0rem;
  1443. padding-right: 0rem;
  1444. padding-top: 2rem;
  1445. }
  1446. }
  1447. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child {
  1448. display: flex;
  1449. flex-direction: column;
  1450. max-height: fit-content;
  1451. }
  1452. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child a {
  1453. color: rgb(9, 57, 139);
  1454. }
  1455. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo {
  1456. order: 1;
  1457. }
  1458. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo .field__item {
  1459. display: none;
  1460. }
  1461. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo .field__item:first-child {
  1462. display: block;
  1463. }
  1464. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo img {
  1465. width: 100%;
  1466. height: auto;
  1467. max-height: 400px;
  1468. object-fit: cover;
  1469. }
  1470. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse {
  1471. order: 2;
  1472. display: flex;
  1473. text-transform: uppercase;
  1474. font-size: 0.9rem;
  1475. font-weight: 800;
  1476. margin-top: 0.8rem;
  1477. line-height: 0.6rem;
  1478. }
  1479. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address {
  1480. display: flex;
  1481. flex-direction: row;
  1482. margin: 0;
  1483. }
  1484. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  1485. padding-top: 0 !important;
  1486. padding-bottom: 0 !important;
  1487. }
  1488. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  1489. content: ",";
  1490. margin-right: 0.3rem;
  1491. }
  1492. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .country {
  1493. padding-top: 0 !important;
  1494. padding-bottom: 0 !important;
  1495. }
  1496. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-sous-titre {
  1497. margin-top: 0.8rem;
  1498. font-size: 0.9rem;
  1499. font-weight: 800;
  1500. order: 4;
  1501. }
  1502. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-title {
  1503. order: 3;
  1504. margin-top: 0.8rem;
  1505. font-size: 0.9rem;
  1506. font-weight: 800;
  1507. }
  1508. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-title h2 {
  1509. margin: 0;
  1510. }
  1511. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-incube {
  1512. order: 4;
  1513. color: rgb(225, 0, 15);
  1514. margin-top: 0.8rem;
  1515. font-size: 0.7rem;
  1516. }
  1517. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-region {
  1518. display: none;
  1519. order: 5;
  1520. color: rgb(0, 0, 0);
  1521. font-size: 0.7rem;
  1522. }
  1523. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-moa {
  1524. display: none;
  1525. order: 6;
  1526. }
  1527. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-moa a {
  1528. color: rgb(0, 0, 0);
  1529. font-size: 0.7rem;
  1530. }
  1531. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-projet {
  1532. display: none;
  1533. order: 7;
  1534. }
  1535. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-projet a {
  1536. color: rgb(0, 0, 0);
  1537. font-size: 0.7rem;
  1538. }
  1539. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-etape-du-projet {
  1540. display: none;
  1541. order: 8;
  1542. color: rgb(0, 0, 0);
  1543. font-size: 0.7rem;
  1544. }
  1545. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1546. display: flex;
  1547. flex-flow: row-reverse;
  1548. background: rgba(0, 158, 227, 0.2);
  1549. padding-right: 10%;
  1550. padding-top: 2rem;
  1551. padding-bottom: 4rem;
  1552. }
  1553. @media (max-width: 479px) {
  1554. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1555. padding-top: 2rem;
  1556. padding-bottom: 2rem;
  1557. }
  1558. }
  1559. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary {
  1560. height: fit-content;
  1561. padding: 0.4rem 1rem;
  1562. font-size: 0.8rem;
  1563. margin: 0;
  1564. background-color: rgb(255, 255, 255);
  1565. border: 2px solid rgb(0, 158, 227);
  1566. list-style: none;
  1567. display: inline-flex;
  1568. }
  1569. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary p {
  1570. margin: 0;
  1571. }
  1572. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a {
  1573. text-transform: uppercase;
  1574. font-weight: 700;
  1575. color: rgb(0, 158, 227);
  1576. display: inline-flex;
  1577. align-items: center;
  1578. }
  1579. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a::after {
  1580. 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>');
  1581. }
  1582. .path-frontpage .block-views-blockprojets-block-2 #leaflet-map-view-projets-block-2 {
  1583. height: 500px !important;
  1584. }
  1585. .node-id-20 {
  1586. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  1587. background-repeat: no-repeat;
  1588. background-position-y: 7rem;
  1589. max-width: 100vw;
  1590. background-size: contain;
  1591. }
  1592. .node-id-20 .layout__region--top {
  1593. padding-bottom: 3rem;
  1594. height: 30vh;
  1595. }
  1596. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1597. font-family: "Source Code Pro";
  1598. font-size: 2rem;
  1599. font-weight: 800;
  1600. color: rgb(255, 255, 255);
  1601. background-color: rgb(0, 158, 227);
  1602. text-transform: uppercase;
  1603. }
  1604. .field--name-field-partenaires {
  1605. padding-top: 3rem;
  1606. }
  1607. .field--name-field-partenaires .paragraph--type--partenaire {
  1608. background-color: rgb(255, 255, 255);
  1609. width: 100%;
  1610. padding-bottom: 3rem;
  1611. display: grid;
  1612. grid-template-columns: repeat(7, 1fr);
  1613. grid-template-rows: repeat(auto-fill);
  1614. }
  1615. @media (max-width: 810px) {
  1616. .field--name-field-partenaires .paragraph--type--partenaire {
  1617. display: flex;
  1618. flex-direction: column;
  1619. }
  1620. }
  1621. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  1622. grid-column: 1/2;
  1623. grid-row: 2;
  1624. margin-top: 2rem;
  1625. padding-right: 1rem;
  1626. }
  1627. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  1628. grid-column: 2/8;
  1629. grid-row: 1;
  1630. font-weight: 800;
  1631. }
  1632. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  1633. grid-column: 2/8;
  1634. grid-row: 2;
  1635. }
  1636. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  1637. grid-column: 2/8;
  1638. grid-row: 3;
  1639. }
  1640. .field--name-field-partenaires a {
  1641. color: rgb(0, 0, 0);
  1642. font-weight: 800;
  1643. }
  1644. .field--name-field-partenaires a svg {
  1645. display: none;
  1646. }
  1647. .field--name-field-equipes {
  1648. padding-top: 3rem;
  1649. }
  1650. .field--name-field-equipes .paragraph--type--equipe {
  1651. background-color: rgb(255, 255, 255);
  1652. width: 100%;
  1653. }
  1654. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1655. width: 100%;
  1656. padding-bottom: 3rem;
  1657. display: grid;
  1658. grid-template-columns: repeat(7, 1fr);
  1659. grid-template-rows: repeat(auto-fill);
  1660. }
  1661. @media (max-width: 810px) {
  1662. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1663. display: flex;
  1664. flex-direction: column;
  1665. }
  1666. }
  1667. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo {
  1668. grid-column: 1/2;
  1669. grid-row: 1/span 3;
  1670. padding-right: 1rem;
  1671. }
  1672. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo img {
  1673. border-radius: 50%;
  1674. }
  1675. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-prenom {
  1676. grid-column: 2/span 3;
  1677. grid-row: 1;
  1678. font-weight: 800;
  1679. }
  1680. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-nom {
  1681. grid-column: 2/span 3;
  1682. grid-row: 2;
  1683. }
  1684. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-fonction {
  1685. grid-column: 2/8;
  1686. grid-row: 3;
  1687. }
  1688. .field--name-field-equipes a {
  1689. color: rgb(0, 0, 0);
  1690. font-weight: 800;
  1691. }
  1692. .field--name-field-equipes a svg {
  1693. display: none;
  1694. }
  1695. .path-node.page-node-type-actualite .layout-container {
  1696. overflow: unset;
  1697. }
  1698. .path-node.page-node-type-actualite .offresdeservices.layout-content.region-content#block-contenudelapageprincipale {
  1699. background: none !important;
  1700. }
  1701. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1702. background: linear-gradient(to bottom, rgba(0, 158, 227, 0.2) 60%, white 40%);
  1703. padding-bottom: 4rem;
  1704. }
  1705. @media (max-width: 900px) {
  1706. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1707. order: 1;
  1708. }
  1709. }
  1710. @media (max-width: 568px) {
  1711. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1712. padding-left: 2rem;
  1713. padding-right: 2rem;
  1714. }
  1715. }
  1716. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  1717. display: grid;
  1718. grid-template-columns: 1fr repeat(8, 1fr) 1fr;
  1719. }
  1720. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  1721. order: 5;
  1722. grid-column: 2;
  1723. margin-top: 1rem;
  1724. color: rgb(9, 57, 139);
  1725. }
  1726. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1727. order: 3;
  1728. grid-column: 2/span 7;
  1729. margin: 0;
  1730. color: rgb(9, 57, 139);
  1731. }
  1732. @media (max-width: 568px) {
  1733. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1734. grid-column: 2/span 8;
  1735. max-width: 80vw;
  1736. }
  1737. }
  1738. @media (max-width: 499px) {
  1739. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1740. grid-column: 2/span 9;
  1741. max-width: 80vw;
  1742. }
  1743. }
  1744. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1745. font-family: "Marianne";
  1746. font-size: 2.5rem;
  1747. font-weight: 800;
  1748. line-height: 3rem;
  1749. }
  1750. @media (max-width: 810px) {
  1751. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1752. font-size: 1.9em;
  1753. line-height: 2.3rem;
  1754. }
  1755. }
  1756. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  1757. order: 1;
  1758. padding-top: 2rem;
  1759. grid-column: 2/span 3;
  1760. text-transform: uppercase;
  1761. color: rgb(9, 57, 139);
  1762. font-size: 1.2rem;
  1763. font-weight: 800;
  1764. margin-top: 1rem;
  1765. }
  1766. .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 {
  1767. display: flex;
  1768. flex-direction: row;
  1769. justify-content: flex-start;
  1770. }
  1771. .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 {
  1772. padding-right: 2 rem;
  1773. }
  1774. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu {
  1775. order: 2;
  1776. grid-column: 2/span 4;
  1777. text-transform: uppercase;
  1778. color: rgb(9, 57, 139);
  1779. font-size: 1.2rem;
  1780. font-weight: 800;
  1781. margin-top: 1rem;
  1782. }
  1783. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu .field--name-field-lieu {
  1784. display: flex;
  1785. flex-direction: row;
  1786. justify-content: flex-start;
  1787. }
  1788. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1789. order: 4;
  1790. grid-column: 2/span 7;
  1791. margin-top: 1rem;
  1792. font-weight: 800;
  1793. color: rgb(9, 57, 139);
  1794. }
  1795. @media (max-width: 568px) {
  1796. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1797. grid-column: 2/span 8;
  1798. max-width: 80vw;
  1799. }
  1800. }
  1801. @media (max-width: 499px) {
  1802. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1803. grid-column: 2/span 9;
  1804. max-width: 80vw;
  1805. }
  1806. }
  1807. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1808. order: 6;
  1809. grid-column: 5/span 3;
  1810. width: 600px;
  1811. }
  1812. @media (max-width: 568px) {
  1813. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .field--name-field-images {
  1814. width: 80%;
  1815. }
  1816. }
  1817. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1818. padding-top: 2rem;
  1819. width: 100%;
  1820. max-height: 400px;
  1821. object-fit: contain;
  1822. }
  1823. @media (max-width: 568px) {
  1824. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1825. max-width: 90vw;
  1826. }
  1827. }
  1828. @media (max-width: 900px) {
  1829. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1830. grid-column: 3/span 5;
  1831. }
  1832. }
  1833. @media (max-width: 568px) {
  1834. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1835. grid-column: 1/span 8;
  1836. }
  1837. }
  1838. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1839. font-size: 0.8rem;
  1840. text-align: center;
  1841. }
  1842. @media (max-width: 810px) {
  1843. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1844. margin-left: 5%;
  1845. margin-right: 5%;
  1846. font-size: 0.7rem;
  1847. }
  1848. }
  1849. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-next {
  1850. right: -65px;
  1851. }
  1852. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-prev {
  1853. left: -65px;
  1854. }
  1855. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li {
  1856. display: inline-block;
  1857. }
  1858. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li:only-child {
  1859. display: none;
  1860. }
  1861. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dotted.slick-slider {
  1862. margin-bottom: 0 !important;
  1863. }
  1864. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  1865. display: flex;
  1866. justify-content: flex-end;
  1867. position: -webkit-sticky;
  1868. position: sticky;
  1869. top: 10rem;
  1870. }
  1871. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1872. display: flex;
  1873. justify-content: flex-end;
  1874. width: 50%;
  1875. background-color: rgb(255, 255, 255);
  1876. padding-right: 2rem;
  1877. }
  1878. .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 {
  1879. display: flex;
  1880. font-size: 1rem;
  1881. font-weight: 1000;
  1882. color: rgb(9, 57, 139);
  1883. border-bottom: 1px solid rgb(0, 158, 227);
  1884. padding-bottom: 0.5rem;
  1885. padding-right: 1rem;
  1886. margin-bottom: 0.8rem;
  1887. }
  1888. .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 {
  1889. text-decoration: underline;
  1890. }
  1891. @media (max-width: 810px) {
  1892. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  1893. display: none;
  1894. }
  1895. }
  1896. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1897. width: 50%;
  1898. }
  1899. @media (max-width: 900px) {
  1900. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1901. order: 3;
  1902. width: 100vw;
  1903. }
  1904. }
  1905. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1906. width: 90%;
  1907. }
  1908. @media (max-width: 900px) {
  1909. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1910. width: 90%;
  1911. margin: auto;
  1912. }
  1913. }
  1914. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  1915. margin-top: 0;
  1916. }
  1917. .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 {
  1918. background-color: white;
  1919. }
  1920. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  1921. background-color: rgb(255, 255, 255);
  1922. }
  1923. .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 {
  1924. font-size: 1.5rem;
  1925. font-weight: 1000;
  1926. font-family: "Source Code Pro";
  1927. color: rgb(9, 57, 139);
  1928. text-transform: uppercase;
  1929. margin-top: 2rem;
  1930. margin-bottom: 0.8rem;
  1931. }
  1932. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  1933. text-transform: none !important;
  1934. }
  1935. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  1936. width: 100%;
  1937. height: auto;
  1938. }
  1939. .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 {
  1940. padding-right: 2rem;
  1941. }
  1942. @media (max-width: 900px) {
  1943. .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 {
  1944. padding-right: 0;
  1945. }
  1946. }
  1947. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  1948. margin-top: 0;
  1949. }
  1950. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  1951. color: rgb(0, 0, 0);
  1952. text-decoration: underline;
  1953. }
  1954. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  1955. display: none;
  1956. }
  1957. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  1958. overflow-y: visible !important;
  1959. }
  1960. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody a.ext {
  1961. word-wrap: break-word;
  1962. }
  1963. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  1964. font-size: 1.5rem;
  1965. font-weight: 1000;
  1966. font-family: "Source Code Pro";
  1967. color: rgb(9, 57, 139);
  1968. text-transform: uppercase;
  1969. margin-top: 2rem;
  1970. margin-bottom: 0.8rem;
  1971. }
  1972. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1973. display: flex;
  1974. flex-direction: row;
  1975. justify-content: space-between;
  1976. flex-wrap: wrap;
  1977. }
  1978. @media (max-width: 568px) {
  1979. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1980. flex-direction: column;
  1981. }
  1982. }
  1983. .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 {
  1984. display: flex;
  1985. flex-direction: column;
  1986. align-items: center;
  1987. }
  1988. .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 {
  1989. padding-top: 1rem;
  1990. }
  1991. @media (max-width: 900px) {
  1992. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1993. flex: 0 1 80%;
  1994. margin: auto;
  1995. }
  1996. }
  1997. @media (max-width: 1005px) {
  1998. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third {
  1999. flex: 0 1 100%;
  2000. order: 2;
  2001. }
  2002. }
  2003. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  2004. display: flex;
  2005. flex-direction: column;
  2006. width: 65%;
  2007. }
  2008. @media (max-width: 900px) {
  2009. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  2010. margin: auto;
  2011. }
  2012. }
  2013. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2014. height: fit-content;
  2015. width: fit-content;
  2016. border: 2px solid rgb(0, 158, 227);
  2017. background-color: rgb(255, 255, 255);
  2018. margin-bottom: 1rem;
  2019. min-height: 4rem;
  2020. color: rgb(0, 158, 227);
  2021. padding: 1rem;
  2022. }
  2023. @media (max-width: 900px) {
  2024. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2025. width: auto;
  2026. padding-right: 1rem;
  2027. }
  2028. }
  2029. @media (max-width: 568px) {
  2030. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2031. width: auto;
  2032. }
  2033. }
  2034. .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) {
  2035. display: none;
  2036. }
  2037. .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 {
  2038. height: inherit;
  2039. margin: auto;
  2040. width: fit-content;
  2041. }
  2042. .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 {
  2043. content: url("../images/pictos/download.png");
  2044. padding-right: 1rem;
  2045. margin-right: 1rem;
  2046. }
  2047. .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 {
  2048. hyphens: auto;
  2049. display: inline-flex;
  2050. align-items: center;
  2051. color: rgb(0, 158, 227);
  2052. font-weight: 800;
  2053. }
  2054. .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 {
  2055. margin: auto;
  2056. width: fit-content;
  2057. height: fit-content;
  2058. border: 2px solid rgb(0, 158, 227);
  2059. min-height: 4rem;
  2060. background: rgb(255, 255, 255);
  2061. color: rgb(0, 158, 227);
  2062. padding: 1rem;
  2063. margin-bottom: 1rem;
  2064. }
  2065. @media (max-width: 900px) {
  2066. .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 {
  2067. width: auto;
  2068. padding-right: 1rem;
  2069. }
  2070. }
  2071. .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 {
  2072. display: inline-flex;
  2073. align-items: center;
  2074. color: rgb(0, 158, 227);
  2075. font-weight: 800;
  2076. }
  2077. .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 {
  2078. content: url("../images/pictos/external_link.png");
  2079. padding-right: 1rem;
  2080. }
  2081. .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 {
  2082. display: none;
  2083. }
  2084. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2085. margin-top: 3rem;
  2086. }
  2087. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  2088. font-size: 0.8rem;
  2089. color: rgb(0, 0, 0);
  2090. font-weight: 900;
  2091. }
  2092. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  2093. border: 2px solid rgb(0, 158, 227);
  2094. padding: 1rem;
  2095. height: fit-content;
  2096. margin-bottom: 1rem;
  2097. background-color: rgb(255, 255, 255);
  2098. display: flex;
  2099. flex-direction: column;
  2100. }
  2101. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  2102. display: flex;
  2103. flex-direction: column;
  2104. }
  2105. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-type-de-ressource {
  2106. order: 2;
  2107. text-transform: uppercase;
  2108. color: rgb(0, 158, 227);
  2109. font-weight: 900;
  2110. font-size: 0.8rem;
  2111. }
  2112. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title {
  2113. order: 3;
  2114. }
  2115. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 {
  2116. margin: 0;
  2117. }
  2118. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 a {
  2119. color: rgb(0, 0, 0);
  2120. font-size: 1rem;
  2121. font-weight: 900;
  2122. font-style: italic;
  2123. }
  2124. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-sous-titre {
  2125. order: 4;
  2126. }
  2127. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- {
  2128. order: 5;
  2129. font-weight: 800;
  2130. }
  2131. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- p {
  2132. margin: 0;
  2133. }
  2134. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  2135. display: none;
  2136. }
  2137. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition p {
  2138. margin: 0;
  2139. }
  2140. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition .field__label {
  2141. display: none;
  2142. }
  2143. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images {
  2144. display: none;
  2145. order: 1;
  2146. width: 25%;
  2147. }
  2148. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images img {
  2149. width: 100%;
  2150. height: auto;
  2151. margin: auto;
  2152. }
  2153. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs {
  2154. order: 6;
  2155. display: flex;
  2156. margin-top: 2rem;
  2157. flex-direction: row;
  2158. flex-wrap: wrap;
  2159. }
  2160. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  2161. display: flex;
  2162. flex-direction: row;
  2163. flex-wrap: wrap;
  2164. }
  2165. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  2166. padding-bottom: 0.5rem;
  2167. margin-right: 0.5rem;
  2168. padding-right: 0.3rem;
  2169. font-size: 0.8rem;
  2170. }
  2171. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  2172. background: rgb(9, 57, 139);
  2173. color: rgb(255, 255, 255);
  2174. font-weight: 800;
  2175. vertical-align: super;
  2176. padding-left: 0.1rem;
  2177. padding-right: 0.1rem;
  2178. display: inline-flex;
  2179. }
  2180. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div ul.links.inline {
  2181. display: none;
  2182. }
  2183. .node-id-35 .region-content {
  2184. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  2185. background-repeat: no-repeat;
  2186. max-width: 100vw;
  2187. background-size: contain;
  2188. }
  2189. .node-id-35 .layout__region--top {
  2190. padding-bottom: 3rem;
  2191. height: 30vh;
  2192. }
  2193. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2194. display: none;
  2195. height: inherit;
  2196. }
  2197. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2198. font-family: "Source Code Pro";
  2199. font-size: 2rem;
  2200. font-weight: 800;
  2201. color: rgb(255, 255, 255);
  2202. background-color: rgb(0, 158, 227);
  2203. text-transform: uppercase;
  2204. }
  2205. .node-id-3 {
  2206. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2207. background-repeat: no-repeat;
  2208. background-position-y: 7rem;
  2209. max-width: 100vw;
  2210. background-size: contain;
  2211. }
  2212. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2213. display: none;
  2214. height: inherit;
  2215. }
  2216. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2217. color: rgb(0, 158, 227);
  2218. background-color: rgb(255, 255, 255);
  2219. }
  2220. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2221. background: rgb(0, 158, 227) !important;
  2222. color: rgb(255, 255, 255) !important;
  2223. }
  2224. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  2225. color: rgb(255, 255, 255) !important;
  2226. }
  2227. .node-id-3 .block-entity-fieldnodefield-liens {
  2228. display: none;
  2229. }
  2230. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2231. background: rgb(0, 158, 227);
  2232. color: rgb(255, 255, 255);
  2233. }
  2234. .node-id-3 .block-entity-fieldnodefield-ress {
  2235. margin-top: 3rem;
  2236. }
  2237. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  2238. font-size: 0.8rem;
  2239. color: rgb(0, 0, 0);
  2240. font-weight: 900;
  2241. }
  2242. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  2243. display: flex;
  2244. flex-direction: column;
  2245. border: 2px solid rgb(0, 158, 227);
  2246. padding: 1rem;
  2247. height: fit-content;
  2248. margin-bottom: 1rem;
  2249. background-color: rgb(255, 255, 255);
  2250. }
  2251. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  2252. border-top: 1px solid rgb(0, 158, 227);
  2253. padding-top: 1rem;
  2254. }
  2255. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  2256. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2257. align-self: flex-end;
  2258. }
  2259. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  2260. color: rgb(0, 0, 0);
  2261. font-size: 1.4rem;
  2262. font-weight: 600;
  2263. }
  2264. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  2265. font-weight: 800;
  2266. }
  2267. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  2268. margin: 0;
  2269. }
  2270. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  2271. display: none;
  2272. }
  2273. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  2274. margin: 0;
  2275. }
  2276. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  2277. display: none;
  2278. }
  2279. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  2280. display: none;
  2281. width: 50%;
  2282. }
  2283. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  2284. width: 100%;
  2285. height: auto;
  2286. }
  2287. .path-actualites {
  2288. background-color: rgba(0, 158, 227, 0.2);
  2289. margin: 0;
  2290. }
  2291. .path-actualites .block-region-content {
  2292. display: grid;
  2293. grid-template-columns: 1fr 8fr 1fr;
  2294. margin: auto;
  2295. padding-top: 3rem;
  2296. }
  2297. .path-actualites .block-region-content .block-views {
  2298. grid-column: 2;
  2299. }
  2300. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2301. display: flex;
  2302. flex-direction: row;
  2303. flex-wrap: wrap;
  2304. }
  2305. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2306. width: 25%;
  2307. flex: 0 0 25%;
  2308. }
  2309. @media (max-width: 810px) {
  2310. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2311. flex-direction: column;
  2312. }
  2313. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2314. width: 100%;
  2315. }
  2316. }
  2317. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  2318. padding-top: 0;
  2319. }
  2320. .path-actualites .block-region-content .block-views .node-type-actualite {
  2321. color: rgb(9, 57, 139);
  2322. line-height: 1.5rem;
  2323. padding: 0.5rem;
  2324. padding-right: 1rem;
  2325. padding-left: 1rem;
  2326. }
  2327. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  2328. display: flex;
  2329. flex-direction: column;
  2330. }
  2331. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  2332. color: rgb(9, 57, 139);
  2333. }
  2334. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  2335. order: 1;
  2336. }
  2337. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2338. width: 100%;
  2339. max-height: 175px;
  2340. object-fit: cover;
  2341. }
  2342. @media (max-width: 810px) {
  2343. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2344. max-height: 350px;
  2345. }
  2346. }
  2347. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  2348. display: block;
  2349. 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>');
  2350. }
  2351. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  2352. margin-top: 0.5rem;
  2353. font-size: 0.9rem;
  2354. font-weight: 800;
  2355. order: 5;
  2356. }
  2357. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  2358. order: 2;
  2359. display: flex;
  2360. flex-direction: row;
  2361. justify-content: flex-start;
  2362. }
  2363. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  2364. padding-left: 1rem;
  2365. content: "|";
  2366. }
  2367. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  2368. font-size: 0.9rem;
  2369. font-weight: 800;
  2370. padding-right: 1rem;
  2371. width: fit-content;
  2372. }
  2373. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  2374. font-size: 0.9rem;
  2375. order: 3;
  2376. display: flex;
  2377. flex-direction: row;
  2378. justify-content: flex-start;
  2379. }
  2380. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  2381. display: none;
  2382. }
  2383. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  2384. order: 4;
  2385. font-size: 0.9rem;
  2386. }
  2387. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  2388. width: 100%;
  2389. }
  2390. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  2391. margin: 0;
  2392. }
  2393. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  2394. padding-top: none !important;
  2395. list-style: none;
  2396. width: fit-content;
  2397. align-self: flex-end;
  2398. padding-right: 1rem;
  2399. }
  2400. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  2401. display: none;
  2402. }
  2403. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  2404. order: 6;
  2405. padding-top: 1rem;
  2406. }
  2407. .node-id-4 {
  2408. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2409. background-repeat: no-repeat;
  2410. background-position-y: 7rem;
  2411. max-width: 100vw;
  2412. background-size: contain;
  2413. }
  2414. .node-id-4 #block-contenudelapageprincipale {
  2415. scroll-margin: 8rem;
  2416. }
  2417. .node-id-4 .layout__region--top {
  2418. padding-bottom: 3rem;
  2419. height: 30vh;
  2420. }
  2421. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2422. display: none;
  2423. height: inherit;
  2424. }
  2425. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2426. font-family: "Source Code Pro";
  2427. font-size: 2rem;
  2428. font-weight: 800;
  2429. color: rgb(255, 255, 255);
  2430. background-color: rgb(0, 158, 227);
  2431. text-transform: uppercase;
  2432. }
  2433. .node-id-4 .layout__region--second {
  2434. width: 25%;
  2435. }
  2436. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  2437. background-color: rgb(255, 255, 255);
  2438. }
  2439. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2440. font-size: 1.5rem;
  2441. font-weight: 1000;
  2442. font-family: "Source Code Pro";
  2443. color: rgb(9, 57, 139);
  2444. text-transform: uppercase;
  2445. }
  2446. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2447. text-transform: none !important;
  2448. }
  2449. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2450. padding-right: 2rem;
  2451. }
  2452. .node-id-5 .region-content {
  2453. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2454. background-repeat: no-repeat;
  2455. max-width: 100vw;
  2456. background-size: contain;
  2457. }
  2458. .node-id-5 .layout__region--top {
  2459. padding-bottom: 3rem;
  2460. height: 30vh;
  2461. }
  2462. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2463. font-family: "Source Code Pro";
  2464. font-size: 2rem;
  2465. font-weight: 800;
  2466. color: rgb(255, 255, 255);
  2467. background-color: rgb(0, 158, 227);
  2468. text-transform: uppercase;
  2469. }
  2470. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2471. color: rgb(0, 0, 0);
  2472. text-decoration: underline;
  2473. }
  2474. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2475. display: none;
  2476. }
  2477. .path-faq #block-contenudelapageprincipale h2 {
  2478. font-family: "Source Code Pro";
  2479. font-size: 2rem;
  2480. font-weight: 800;
  2481. color: rgb(0, 158, 227);
  2482. background-color: rgb(255, 255, 255);
  2483. text-transform: uppercase;
  2484. width: fit-content;
  2485. margin-left: 10%;
  2486. margin-top: 8rem;
  2487. }
  2488. @media (max-width: 810px) {
  2489. .path-faq #block-contenudelapageprincipale h2 {
  2490. margin-left: 8%;
  2491. margin-right: 1%;
  2492. }
  2493. }
  2494. .path-faq #block-contenudelapageprincipale .block-region-content {
  2495. display: grid;
  2496. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2497. }
  2498. @media (max-width: 810px) {
  2499. .path-faq #block-contenudelapageprincipale .block-region-content {
  2500. display: flex;
  2501. flex-direction: column;
  2502. margin: auto;
  2503. }
  2504. }
  2505. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2506. grid-column: 2/span 3;
  2507. }
  2508. @media (max-width: 810px) {
  2509. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2510. width: 80%;
  2511. margin: auto;
  2512. }
  2513. }
  2514. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2515. display: none;
  2516. grid-column: 5;
  2517. grid-row: 1/span 2;
  2518. height: fit-content;
  2519. flex-direction: column;
  2520. max-width: fit-content;
  2521. margin-left: 2rem;
  2522. padding: 1rem;
  2523. background-color: rgb(0, 158, 227);
  2524. }
  2525. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2526. margin-top: 1rem;
  2527. display: block;
  2528. content: url("../images/pictos/picto_faq.svg");
  2529. }
  2530. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2531. text-align: center;
  2532. }
  2533. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2534. font-size: 0.8rem;
  2535. font-weight: 1000;
  2536. color: rgb(9, 57, 139);
  2537. text-transform: uppercase;
  2538. }
  2539. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  2540. display: flex;
  2541. flex-direction: column;
  2542. margin-top: 0;
  2543. margin-left: 1.5rem;
  2544. margin-right: 1.5rem;
  2545. text-align: center;
  2546. }
  2547. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  2548. font-weight: 800;
  2549. color: rgb(255, 255, 255);
  2550. font-size: 1.3rem;
  2551. }
  2552. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  2553. margin-left: auto;
  2554. padding-top: 1rem;
  2555. display: block;
  2556. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2557. }
  2558. @media (max-width: 810px) {
  2559. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2560. margin: auto;
  2561. padding: 0rem;
  2562. }
  2563. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2564. margin-top: 1rem;
  2565. display: block;
  2566. content: url("../images/pictos/picto_faq_2.svg");
  2567. }
  2568. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2569. text-align: center;
  2570. }
  2571. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2572. font-size: 0.8rem;
  2573. font-weight: 1000;
  2574. color: rgb(9, 57, 139);
  2575. text-transform: uppercase;
  2576. }
  2577. }
  2578. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2579. margin-top: 2rem;
  2580. grid-column: 2/span 3;
  2581. display: grid;
  2582. grid-template-columns: 1fr 1fr 1fr;
  2583. }
  2584. @media (max-width: 810px) {
  2585. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2586. width: 80%;
  2587. margin: auto;
  2588. margin-top: 1rem;
  2589. }
  2590. }
  2591. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  2592. grid-column: 1/span 3;
  2593. }
  2594. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2595. border-bottom: 1px solid rgb(0, 158, 227);
  2596. padding-bottom: 2rem;
  2597. }
  2598. @media (max-width: 810px) {
  2599. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2600. padding-bottom: 1rem;
  2601. }
  2602. }
  2603. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  2604. display: none;
  2605. }
  2606. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  2607. cursor: pointer;
  2608. }
  2609. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  2610. font-family: "Source Code Pro";
  2611. font-weight: 500;
  2612. color: rgb(9, 57, 139);
  2613. font-size: 1.3rem;
  2614. }
  2615. .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 {
  2616. display: inline-flex;
  2617. 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>');
  2618. float: right;
  2619. }
  2620. .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 {
  2621. display: inline-flex;
  2622. 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>');
  2623. float: right;
  2624. }
  2625. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  2626. display: none;
  2627. }
  2628. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  2629. display: none;
  2630. }
  2631. .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) {
  2632. display: none;
  2633. }
  2634. .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) {
  2635. display: none;
  2636. }
  2637. .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 {
  2638. display: inline-block;
  2639. content: url("../images/pictos/noun_Download_file_307900.svg");
  2640. width: 30px;
  2641. height: 30px;
  2642. padding-right: 0.8rem;
  2643. }
  2644. .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 {
  2645. display: inline-flex;
  2646. align-items: center;
  2647. color: rgb(0, 0, 0);
  2648. font-weight: 800;
  2649. }
  2650. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  2651. display: none;
  2652. }
  2653. .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 {
  2654. display: inline-block;
  2655. content: url("../images/pictos/external_link.png");
  2656. width: 30px;
  2657. height: 30px;
  2658. padding-right: 0.8rem;
  2659. }
  2660. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  2661. display: flex;
  2662. flex-direction: row;
  2663. justify-content: left;
  2664. align-items: center;
  2665. color: rgb(0, 0, 0);
  2666. font-weight: 800;
  2667. }
  2668. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  2669. display: none;
  2670. }
  2671. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  2672. display: none;
  2673. margin-top: 0.5rem;
  2674. }
  2675. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  2676. color: rgb(0, 0, 0);
  2677. text-decoration: underline;
  2678. font-weight: 800;
  2679. }
  2680. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  2681. display: block;
  2682. }
  2683. .node-id-6 {
  2684. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2685. background-repeat: no-repeat;
  2686. background-position-y: 7rem;
  2687. max-width: 100vw;
  2688. background-size: contain;
  2689. }
  2690. .node-id-6 .layout__region--top {
  2691. padding-bottom: 3rem;
  2692. height: 30vh;
  2693. }
  2694. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2695. display: none;
  2696. height: inherit;
  2697. }
  2698. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2699. font-family: "Source Code Pro";
  2700. font-size: 2rem;
  2701. font-weight: 800;
  2702. color: rgb(255, 255, 255);
  2703. background-color: rgb(0, 158, 227);
  2704. text-transform: uppercase;
  2705. }
  2706. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2707. color: rgb(0, 0, 0);
  2708. text-decoration: underline;
  2709. }
  2710. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2711. display: none;
  2712. }
  2713. .path-taxonomy #block-contenudelapageprincipale span {
  2714. display: none;
  2715. }
  2716. .path-taxonomy .view-taxonomy-term .view-header {
  2717. width: 80%;
  2718. margin: auto;
  2719. }
  2720. .path-taxonomy .view-taxonomy-term .view-content {
  2721. width: 80%;
  2722. margin: auto;
  2723. }
  2724. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper {
  2725. display: flex;
  2726. flex-direction: row;
  2727. flex-wrap: wrap;
  2728. }
  2729. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2730. width: 30%;
  2731. }
  2732. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2733. display: flex;
  2734. width: 25%;
  2735. max-width: fit-content;
  2736. }
  2737. .page-node-type-ressource .layout-container {
  2738. overflow: visible;
  2739. }
  2740. @media (max-width: 810px) {
  2741. .page-node-type-ressource .layout-container {
  2742. overflow: hidden;
  2743. }
  2744. }
  2745. .page-node-type-ressource .layout__region--top {
  2746. padding-top: 4rem;
  2747. }
  2748. @media (max-width: 550px) {
  2749. .page-node-type-ressource .layout__region--top {
  2750. padding-top: 0rem;
  2751. max-width: 100%;
  2752. }
  2753. }
  2754. .page-node-type-ressource .layout__region--top .block-region-top {
  2755. display: flex;
  2756. flex-direction: column;
  2757. }
  2758. @media screen and (min-width: 1100px) {
  2759. .page-node-type-ressource .layout__region--top .block-region-top {
  2760. display: grid;
  2761. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2762. gap: 0.5rem;
  2763. }
  2764. }
  2765. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2766. width: fit-content;
  2767. padding-left: 25%;
  2768. }
  2769. @media (min-width: 1100px) {
  2770. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2771. grid-column: 1;
  2772. grid-row: 1/span 7;
  2773. align-self: start;
  2774. justify-self: end;
  2775. margin-left: 2rem;
  2776. }
  2777. }
  2778. @media (max-width: 1100px) {
  2779. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2780. padding-left: 13%;
  2781. }
  2782. }
  2783. @media (max-width: 550px) {
  2784. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2785. width: 100vw;
  2786. padding: 0;
  2787. width: 100%;
  2788. height: auto;
  2789. }
  2790. }
  2791. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2792. border: solid 1px gray;
  2793. max-width: 100%;
  2794. width: 100%;
  2795. height: auto;
  2796. }
  2797. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2798. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2799. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2800. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2801. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2802. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2803. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2804. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2805. width: 100%;
  2806. margin-left: 13%;
  2807. }
  2808. @media (max-width: 1099px) {
  2809. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2810. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2811. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2812. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2813. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2814. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2815. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2816. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2817. width: auto;
  2818. margin-right: 15%;
  2819. }
  2820. }
  2821. @media screen and (min-width: 1100px) {
  2822. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2823. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2824. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2825. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2826. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2827. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2828. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2829. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2830. width: auto;
  2831. margin-left: 2rem;
  2832. margin-right: 15%;
  2833. grid-column: 2/4;
  2834. align-self: start; /* S'assurer qu'il commence en haut */
  2835. height: fit-content;
  2836. justify-self: start;
  2837. }
  2838. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2839. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2840. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2841. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2842. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2843. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2844. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2845. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2846. margin: 0;
  2847. }
  2848. }
  2849. @media (max-width: 810px) {
  2850. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2851. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2852. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2853. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2854. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2855. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2856. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2857. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2858. margin-left: 9%;
  2859. margin-right: 9%;
  2860. }
  2861. }
  2862. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2863. width: 100%;
  2864. font-family: "Source Code Pro";
  2865. font-size: 1.5rem;
  2866. font-weight: 800;
  2867. color: rgb(255, 255, 255);
  2868. background-color: rgb(0, 158, 227);
  2869. text-transform: uppercase;
  2870. padding-left: 13%;
  2871. padding-top: 1rem;
  2872. padding-bottom: 0.5rem;
  2873. vertical-align: middle;
  2874. }
  2875. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2876. color: rgb(0, 158, 227);
  2877. text-transform: uppercase;
  2878. font-weight: 900;
  2879. }
  2880. @media (max-width: 1099px) {
  2881. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2882. margin-top: 2rem;
  2883. }
  2884. }
  2885. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2886. font-size: 2.5rem;
  2887. font-weight: 600;
  2888. line-height: 1.2;
  2889. }
  2890. @media (max-width: 550px) {
  2891. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2892. font-size: 1.5rem;
  2893. width: 80vw;
  2894. }
  2895. }
  2896. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2897. font-weight: 600;
  2898. font-size: 2rem;
  2899. }
  2900. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  2901. font-weight: 600;
  2902. font-size: 2rem;
  2903. }
  2904. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  2905. font-weight: 600;
  2906. font-size: 2rem;
  2907. margin-bottom: 0;
  2908. }
  2909. @media (max-width: 550px) {
  2910. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2911. font-size: 1rem;
  2912. }
  2913. }
  2914. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  2915. margin-bottom: 0;
  2916. }
  2917. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2918. font-size: 1.5rem;
  2919. font-weight: 800;
  2920. line-height: 0.8;
  2921. margin-top: 1rem;
  2922. }
  2923. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  2924. margin: 0;
  2925. }
  2926. @media (max-width: 550px) {
  2927. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2928. margin-top: 0rem;
  2929. font-size: 1rem;
  2930. line-height: 1;
  2931. }
  2932. }
  2933. @media (max-width: 550px) {
  2934. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  2935. margin-top: 0.5rem;
  2936. }
  2937. }
  2938. @media (max-width: 550px) {
  2939. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  2940. margin-top: 0.5rem;
  2941. }
  2942. }
  2943. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2944. display: inline-flex;
  2945. margin-top: 0.5rem;
  2946. }
  2947. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2948. background: rgb(9, 57, 139);
  2949. margin-right: 1rem;
  2950. padding-left: 0.3rem;
  2951. padding-right: 0.3rem;
  2952. color: rgb(255, 255, 255);
  2953. font-weight: 800;
  2954. vertical-align: middle;
  2955. }
  2956. @media (max-width: 810px) {
  2957. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2958. display: flex;
  2959. flex-direction: row;
  2960. flex-wrap: wrap;
  2961. }
  2962. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2963. margin-bottom: 0.5rem;
  2964. }
  2965. }
  2966. .page-node-type-ressource .layout__region--top {
  2967. /* Hide empty blocks */
  2968. }
  2969. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  2970. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  2971. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  2972. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  2973. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  2974. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  2975. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  2976. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  2977. display: none;
  2978. }
  2979. .page-node-type-ressource .layout__region--first {
  2980. margin-top: 3rem;
  2981. position: relative;
  2982. }
  2983. @media (max-width: 810px) {
  2984. .page-node-type-ressource .layout__region--first {
  2985. display: none;
  2986. }
  2987. }
  2988. .page-node-type-ressource .layout__region--first .block-region-first {
  2989. display: flex;
  2990. justify-content: flex-end;
  2991. position: sticky;
  2992. top: 13rem;
  2993. }
  2994. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  2995. display: flex;
  2996. width: 50%;
  2997. background-color: rgb(255, 255, 255);
  2998. padding-right: 2rem;
  2999. }
  3000. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  3001. display: flex;
  3002. font-size: 1rem;
  3003. font-weight: 1000;
  3004. color: rgb(9, 57, 139);
  3005. border-bottom: 1px solid rgb(0, 158, 227);
  3006. padding-bottom: 0.5rem;
  3007. padding-right: 1rem;
  3008. }
  3009. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  3010. text-decoration: underline;
  3011. }
  3012. .page-node-type-ressource .layout__region--second {
  3013. margin-top: 3rem;
  3014. }
  3015. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  3016. background-color: rgb(255, 255, 255);
  3017. }
  3018. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  3019. font-size: 1.5rem;
  3020. font-weight: 1000;
  3021. font-family: "Source Code Pro";
  3022. color: rgb(9, 57, 139);
  3023. text-transform: uppercase;
  3024. }
  3025. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  3026. text-transform: none !important;
  3027. }
  3028. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  3029. width: 100%;
  3030. height: auto;
  3031. }
  3032. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3033. padding-right: 2rem;
  3034. }
  3035. @media (max-width: 550px) {
  3036. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3037. padding-right: 0;
  3038. }
  3039. }
  3040. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  3041. margin-top: 0;
  3042. }
  3043. @media (max-width: 810px) {
  3044. .page-node-type-ressource .layout__region--second {
  3045. flex: 0 1 80%;
  3046. margin: auto;
  3047. margin-top: 2rem;
  3048. }
  3049. }
  3050. .page-node-type-ressource .layout__region--third {
  3051. margin-top: 3rem;
  3052. }
  3053. @media (max-width: 810px) {
  3054. .page-node-type-ressource .layout__region--third {
  3055. flex: 0 1 80%;
  3056. margin-left: 10%;
  3057. }
  3058. }
  3059. .page-node-type-ressource .layout__region--third .block-region-third {
  3060. display: flex;
  3061. flex-direction: column;
  3062. width: 70%;
  3063. }
  3064. @media (max-width: 810px) {
  3065. .page-node-type-ressource .layout__region--third .block-region-third {
  3066. width: 100%;
  3067. }
  3068. }
  3069. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3070. height: fit-content;
  3071. border: 2px solid rgb(0, 158, 227);
  3072. background-color: rgb(255, 255, 255);
  3073. order: 2;
  3074. }
  3075. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  3076. min-height: 4rem;
  3077. background: rgb(255, 255, 255);
  3078. color: rgb(0, 158, 227);
  3079. padding-left: 1rem;
  3080. padding-top: 1rem;
  3081. padding: 1rem;
  3082. }
  3083. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3084. display: none;
  3085. }
  3086. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3087. height: inherit;
  3088. margin: auto;
  3089. width: fit-content;
  3090. }
  3091. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3092. content: url("../images/pictos/download.png");
  3093. min-width: 30px;
  3094. height: auto;
  3095. padding-right: 1rem;
  3096. margin-right: 1rem;
  3097. }
  3098. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3099. hyphens: auto;
  3100. display: inline-flex;
  3101. align-items: center;
  3102. color: rgb(0, 158, 227);
  3103. font-weight: 800;
  3104. }
  3105. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3106. order: 3;
  3107. }
  3108. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3109. margin: auto;
  3110. height: fit-content;
  3111. border: 2px solid rgb(0, 158, 227);
  3112. min-height: 4rem;
  3113. background: rgb(255, 255, 255);
  3114. color: rgb(0, 158, 227);
  3115. padding-left: 1rem;
  3116. padding-top: 1rem;
  3117. margin-bottom: 1rem;
  3118. padding: 1rem;
  3119. }
  3120. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3121. display: inline-flex;
  3122. align-items: center;
  3123. color: rgb(0, 158, 227);
  3124. font-weight: 800;
  3125. }
  3126. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3127. content: url("../images/pictos/external_link.png");
  3128. min-width: 30px;
  3129. height: auto;
  3130. padding-right: 1rem;
  3131. margin-right: 1rem;
  3132. }
  3133. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3134. display: none;
  3135. }
  3136. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3137. order: 4;
  3138. margin-top: 3rem;
  3139. }
  3140. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3141. font-size: 0.8rem;
  3142. color: rgb(0, 0, 0);
  3143. font-weight: 900;
  3144. margin-bottom: 1rem;
  3145. }
  3146. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3147. border: 2px solid rgb(0, 158, 227);
  3148. padding: 1rem;
  3149. height: fit-content;
  3150. margin-bottom: 1rem;
  3151. background-color: rgb(255, 255, 255);
  3152. display: flex;
  3153. flex-direction: column;
  3154. }
  3155. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  3156. display: flex;
  3157. flex-direction: column;
  3158. }
  3159. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-type-de-ressource {
  3160. order: 2;
  3161. text-transform: uppercase;
  3162. color: rgb(0, 158, 227);
  3163. font-weight: 900;
  3164. font-size: 0.8rem;
  3165. }
  3166. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title {
  3167. order: 3;
  3168. }
  3169. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title h2 {
  3170. margin: 0;
  3171. }
  3172. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title h2 a {
  3173. color: rgb(0, 0, 0);
  3174. font-size: 1rem;
  3175. font-weight: 900;
  3176. font-style: italic;
  3177. }
  3178. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-sous-titre {
  3179. order: 4;
  3180. }
  3181. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- {
  3182. order: 5;
  3183. font-weight: 800;
  3184. }
  3185. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- p {
  3186. margin: 0;
  3187. }
  3188. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  3189. display: none;
  3190. }
  3191. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-edition p {
  3192. margin: 0;
  3193. }
  3194. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-edition .field__label {
  3195. display: none;
  3196. }
  3197. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-images {
  3198. order: 1;
  3199. width: 25%;
  3200. }
  3201. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-images img {
  3202. width: 100%;
  3203. height: auto;
  3204. }
  3205. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-date-de-parution {
  3206. order: 6;
  3207. }
  3208. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-date-de-parution .field__label {
  3209. display: none;
  3210. }
  3211. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs {
  3212. order: 7;
  3213. display: flex;
  3214. margin-top: 0.8rem;
  3215. flex-direction: row;
  3216. flex-wrap: wrap;
  3217. }
  3218. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__label {
  3219. display: none;
  3220. }
  3221. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  3222. display: flex;
  3223. flex-direction: row;
  3224. flex-wrap: wrap;
  3225. }
  3226. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  3227. padding-bottom: 0.5rem;
  3228. margin-right: 0.5rem;
  3229. padding-right: 0.3rem;
  3230. font-size: 0.8rem;
  3231. }
  3232. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  3233. background: rgb(9, 57, 139);
  3234. color: rgb(255, 255, 255);
  3235. font-weight: 800;
  3236. vertical-align: super;
  3237. padding-left: 0.1rem;
  3238. padding-right: 0.1rem;
  3239. display: inline-flex;
  3240. pointer-events: none !important;
  3241. cursor: default;
  3242. }
  3243. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div ul.links.inline {
  3244. display: none;
  3245. }
  3246. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images {
  3247. order: 1;
  3248. width: 100%;
  3249. }
  3250. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  3251. display: none;
  3252. }
  3253. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images img {
  3254. width: 100%;
  3255. height: auto;
  3256. }
  3257. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3258. order: 1;
  3259. }
  3260. @media (max-width: 479px) {
  3261. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3262. margin-top: 2rem;
  3263. }
  3264. }
  3265. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  3266. display: none;
  3267. font-size: 0.8rem;
  3268. color: rgb(0, 0, 0);
  3269. font-weight: 900;
  3270. }
  3271. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  3272. display: flex;
  3273. flex-direction: column;
  3274. border-bottom: 1px solid rgb(0, 0, 0);
  3275. padding: 1rem;
  3276. height: fit-content;
  3277. margin-bottom: 3rem;
  3278. background-color: rgb(255, 255, 255);
  3279. }
  3280. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  3281. display: none;
  3282. }
  3283. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  3284. content: url("../images/pictos/picto_lieu_blue.svg");
  3285. display: inline-block;
  3286. color: rgb(9, 57, 139);
  3287. margin-right: 1rem;
  3288. }
  3289. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  3290. display: flex;
  3291. flex-direction: row;
  3292. margin-bottom: 1.5rem;
  3293. }
  3294. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  3295. content: "Voir le projet";
  3296. display: block;
  3297. color: rgb(9, 57, 139);
  3298. }
  3299. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  3300. color: rgb(9, 57, 139);
  3301. font-size: 1rem;
  3302. font-weight: 900;
  3303. }
  3304. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  3305. padding-top: 3rem;
  3306. padding-bottom: 3rem;
  3307. vertical-align: middle;
  3308. color: rgb(255, 255, 255);
  3309. }
  3310. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3311. font-family: "Source Code Pro";
  3312. font-size: 2rem;
  3313. font-weight: 800;
  3314. color: rgb(255, 255, 255);
  3315. background-color: rgb(0, 158, 227);
  3316. text-transform: uppercase;
  3317. width: fit-content;
  3318. margin-left: 10%;
  3319. margin-top: 8rem;
  3320. }
  3321. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3322. display: grid;
  3323. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  3324. }
  3325. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3326. grid-column: 2/span 3;
  3327. margin-top: 4rem;
  3328. }
  3329. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  3330. margin: auto;
  3331. background: rgb(255, 255, 255);
  3332. }
  3333. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  3334. margin: 0;
  3335. }
  3336. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  3337. grid-column: 5;
  3338. margin-top: 4rem;
  3339. background-color: rgb(0, 158, 227);
  3340. height: fit-content;
  3341. min-height: fit-content;
  3342. width: 200px;
  3343. margin-left: 2rem;
  3344. aspect-ratio: 1/1;
  3345. display: flex;
  3346. }
  3347. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  3348. display: flex;
  3349. flex-direction: column;
  3350. text-align: center;
  3351. margin: auto;
  3352. padding: 1rem;
  3353. }
  3354. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  3355. display: block;
  3356. font-weight: 800;
  3357. color: rgb(255, 255, 255);
  3358. font-size: 1.3rem;
  3359. }
  3360. .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 {
  3361. margin-left: 80%;
  3362. padding-top: 0.5rem;
  3363. display: block;
  3364. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3365. }
  3366. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3367. grid-column: 2/span 3;
  3368. }
  3369. @media (max-width: 810px) {
  3370. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3371. grid-column: 2/span 4;
  3372. }
  3373. }
  3374. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  3375. margin: auto;
  3376. }
  3377. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  3378. display: none;
  3379. background: rgb(255, 255, 255);
  3380. }
  3381. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3382. display: flex;
  3383. flex-wrap: wrap;
  3384. margin-top: 3rem;
  3385. }
  3386. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3387. width: 50%;
  3388. }
  3389. .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 {
  3390. display: flex;
  3391. justify-content: space-between;
  3392. padding: 1rem;
  3393. height: fit-content;
  3394. margin-bottom: 1rem;
  3395. background-color: rgb(255, 255, 255);
  3396. margin-right: 1rem;
  3397. }
  3398. .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 {
  3399. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3400. align-self: flex-end;
  3401. }
  3402. .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 {
  3403. display: grid;
  3404. grid-template-columns: 1fr 1fr 1fr;
  3405. grid-template-rows: repeat(6 auto);
  3406. }
  3407. .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 {
  3408. grid-column: 1/span 3;
  3409. grid-row: 1;
  3410. margin-bottom: 1rem;
  3411. text-transform: uppercase;
  3412. font-weight: 900;
  3413. font-size: 0.8rem;
  3414. }
  3415. .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 {
  3416. grid-column: 1;
  3417. grid-row: 2/span 6;
  3418. margin-right: 1rem;
  3419. max-height: 170px;
  3420. }
  3421. .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 {
  3422. max-width: 100%;
  3423. object-fit: cover;
  3424. height: auto;
  3425. max-height: 95%;
  3426. }
  3427. .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 {
  3428. grid-column: 2;
  3429. grid-row: 2;
  3430. padding-right: 0.5rem;
  3431. text-transform: uppercase;
  3432. font-weight: 800;
  3433. font-size: 1rem;
  3434. }
  3435. .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 {
  3436. grid-column: 3;
  3437. grid-row: 2;
  3438. text-transform: uppercase;
  3439. font-weight: 800;
  3440. font-size: 1rem;
  3441. }
  3442. .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 {
  3443. grid-column: 2/span 3;
  3444. grid-row: 3;
  3445. text-transform: uppercase;
  3446. font-weight: 800;
  3447. font-size: 0.8rem;
  3448. }
  3449. .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 {
  3450. grid-column: 2/span 3;
  3451. grid-row: 4;
  3452. font-size: 1.3rem;
  3453. }
  3454. .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 {
  3455. color: rgb(0, 0, 0);
  3456. }
  3457. .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 {
  3458. grid-column: 2/span 3;
  3459. grid-row: 5;
  3460. text-transform: uppercase;
  3461. font-weight: 800;
  3462. font-size: 0.8rem;
  3463. }
  3464. .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 {
  3465. display: inline-flex;
  3466. grid-column: 2/span 3;
  3467. grid-row: 6;
  3468. font-size: 0.8rem;
  3469. padding-top: 1rem;
  3470. justify-content: flex-start;
  3471. }
  3472. .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 {
  3473. justify-self: flex-start;
  3474. }
  3475. .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 {
  3476. content: "proposé le";
  3477. hyphens: none;
  3478. padding-right: 0.5rem;
  3479. }
  3480. .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 {
  3481. border: 2px solid rgb(255, 0, 15);
  3482. }
  3483. .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 {
  3484. border: 2px solid rgb(160, 26, 39);
  3485. }
  3486. .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 {
  3487. border: 2px solid rgb(199, 215, 74);
  3488. }
  3489. .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 {
  3490. border: 2px solid rgb(255, 100, 83);
  3491. }
  3492. .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 {
  3493. border: 2px solid rgb(111, 109, 125);
  3494. }
  3495. @media (max-width: 810px) {
  3496. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3497. flex-direction: column;
  3498. }
  3499. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3500. width: 100%;
  3501. }
  3502. }
  3503. @media (max-width: 810px) {
  3504. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3505. display: flex;
  3506. flex-direction: column;
  3507. padding: 2rem;
  3508. }
  3509. }
  3510. .page-node-type-offre-de-service {
  3511. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  3512. background-repeat: no-repeat;
  3513. background-position-y: 7rem;
  3514. max-width: 100vw;
  3515. background-size: contain;
  3516. }
  3517. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3518. margin-top: 2rem;
  3519. margin-left: 13%;
  3520. display: grid;
  3521. grid-template-columns: auto auto 1fr;
  3522. grid-template-rows: repeat(6 auto);
  3523. }
  3524. @media (max-width: 810px) {
  3525. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3526. margin-left: 8%;
  3527. }
  3528. }
  3529. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3530. width: fit-content;
  3531. grid-column: 1;
  3532. grid-row: 1/span 6;
  3533. width: 250px;
  3534. height: 250px;
  3535. margin-right: 2rem;
  3536. }
  3537. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  3538. width: 100%;
  3539. height: auto;
  3540. }
  3541. @media (max-width: 810px) {
  3542. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3543. width: 90px;
  3544. height: 90px;
  3545. }
  3546. }
  3547. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  3548. background: rgb(255, 255, 255);
  3549. width: fit-content;
  3550. grid-column: 2/span 3;
  3551. grid-row: 1;
  3552. text-transform: uppercase;
  3553. font-weight: 900;
  3554. font-size: 0.8rem;
  3555. }
  3556. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  3557. color: rgb(255, 0, 15);
  3558. }
  3559. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  3560. color: rgb(160, 26, 39);
  3561. }
  3562. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  3563. color: rgb(199, 215, 74);
  3564. }
  3565. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  3566. color: rgb(255, 100, 83);
  3567. }
  3568. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  3569. color: rgb(111, 109, 125);
  3570. }
  3571. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  3572. background: rgb(255, 255, 255);
  3573. width: fit-content;
  3574. grid-column: 2;
  3575. grid-row: 2;
  3576. padding-right: 0.5rem;
  3577. text-transform: uppercase;
  3578. font-weight: 900;
  3579. font-size: 1.5rem;
  3580. }
  3581. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  3582. background: rgb(255, 255, 255);
  3583. width: fit-content;
  3584. grid-column: 3;
  3585. grid-row: 2;
  3586. text-transform: uppercase;
  3587. font-weight: 900;
  3588. font-size: 1.5rem;
  3589. }
  3590. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  3591. background: rgb(255, 255, 255);
  3592. width: fit-content;
  3593. grid-column: 2/span 3;
  3594. grid-row: 3;
  3595. text-transform: uppercase;
  3596. font-weight: 800;
  3597. font-size: 1.2rem;
  3598. margin-top: 0.5rem;
  3599. }
  3600. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  3601. 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>');
  3602. }
  3603. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3604. background: rgb(255, 255, 255);
  3605. width: fit-content;
  3606. grid-column: 2/span 3;
  3607. grid-row: 4;
  3608. font-size: 2.5rem;
  3609. font-family: "Source Code Pro";
  3610. width: 70%;
  3611. }
  3612. @media (max-width: 810px) {
  3613. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3614. font-size: 1.2rem;
  3615. }
  3616. }
  3617. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  3618. color: rgb(0, 0, 0);
  3619. }
  3620. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  3621. background: rgb(255, 255, 255);
  3622. width: fit-content;
  3623. grid-column: 2/span 3;
  3624. grid-row: 5;
  3625. text-transform: uppercase;
  3626. font-weight: 800;
  3627. font-size: 0.8rem;
  3628. margin-top: 1.5rem;
  3629. }
  3630. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3631. background: rgb(255, 255, 255);
  3632. width: fit-content;
  3633. grid-column: 2/span 3;
  3634. grid-row: 6;
  3635. font-size: 0.8rem;
  3636. padding-top: 1rem;
  3637. }
  3638. .page-node-type-offre-de-service .layout__region--second {
  3639. margin-top: 3rem;
  3640. margin-left: 20%;
  3641. margin-right: 2rem;
  3642. }
  3643. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3644. background: rgb(255, 255, 255);
  3645. }
  3646. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3647. margin: 0;
  3648. }
  3649. @media (max-width: 810px) {
  3650. .page-node-type-offre-de-service .layout__region--second {
  3651. margin-left: 10%;
  3652. }
  3653. }
  3654. .page-node-type-offre-de-service .layout__region--third {
  3655. margin-top: 3rem;
  3656. }
  3657. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3658. display: flex;
  3659. flex-direction: column;
  3660. width: 70%;
  3661. }
  3662. @media (max-width: 810px) {
  3663. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3664. margin: auto;
  3665. }
  3666. }
  3667. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3668. background: rgb(0, 158, 227);
  3669. color: rgb(255, 255, 255);
  3670. text-transform: uppercase;
  3671. font-weight: 900;
  3672. font-size: 0.8rem;
  3673. padding-top: 1rem;
  3674. padding-left: 1rem;
  3675. padding-right: 1rem;
  3676. }
  3677. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3678. background: rgb(0, 158, 227);
  3679. color: rgb(255, 255, 255);
  3680. font-weight: 600;
  3681. padding-left: 1rem;
  3682. padding-right: 1rem;
  3683. padding-bottom: 1rem;
  3684. }
  3685. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3686. color: white;
  3687. hyphens: auto;
  3688. }
  3689. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3690. display: none;
  3691. }
  3692. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3693. display: none;
  3694. background: rgb(0, 158, 227);
  3695. color: rgb(255, 255, 255);
  3696. font-weight: 600;
  3697. padding-left: 1rem;
  3698. padding-right: 1rem;
  3699. padding-bottom: 1rem;
  3700. }
  3701. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3702. height: fit-content;
  3703. border: 2px solid rgb(0, 158, 227);
  3704. background-color: rgb(255, 255, 255);
  3705. margin-top: 1rem;
  3706. }
  3707. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3708. min-height: 4rem;
  3709. background: rgb(255, 255, 255);
  3710. color: rgb(0, 158, 227);
  3711. padding-left: 1rem;
  3712. padding-top: 1rem;
  3713. margin-bottom: 1rem;
  3714. }
  3715. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3716. display: none;
  3717. }
  3718. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3719. height: inherit;
  3720. margin: auto;
  3721. }
  3722. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3723. content: url("../images/pictos/noun_Download_file_307900.svg");
  3724. min-width: 50px;
  3725. height: auto;
  3726. padding-right: 1rem;
  3727. }
  3728. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3729. hyphens: auto;
  3730. display: inline-flex;
  3731. align-items: center;
  3732. color: rgb(0, 158, 227);
  3733. font-weight: 800;
  3734. }
  3735. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3736. margin-top: 1rem;
  3737. }
  3738. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3739. margin: auto;
  3740. height: fit-content;
  3741. border: 2px solid rgb(0, 158, 227);
  3742. min-height: 4rem;
  3743. background: rgb(255, 255, 255);
  3744. color: rgb(0, 158, 227);
  3745. padding-left: 1rem;
  3746. padding-top: 1rem;
  3747. margin-bottom: 1rem;
  3748. }
  3749. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3750. display: inline-flex;
  3751. align-items: center;
  3752. color: rgb(0, 158, 227);
  3753. font-weight: 800;
  3754. }
  3755. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3756. content: url("../images/pictos/external_link.png");
  3757. min-width: 50px;
  3758. height: auto;
  3759. padding-right: 1rem;
  3760. }
  3761. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3762. display: none;
  3763. }
  3764. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3765. margin-top: 3rem;
  3766. }
  3767. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3768. font-size: 0.8rem;
  3769. color: rgb(0, 0, 0);
  3770. font-weight: 900;
  3771. margin-bottom: 1rem;
  3772. }
  3773. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3774. display: flex;
  3775. flex-direction: column;
  3776. border: 2px solid rgb(0, 158, 227);
  3777. padding: 1rem;
  3778. height: fit-content;
  3779. margin-bottom: 1rem;
  3780. background-color: rgb(255, 255, 255);
  3781. }
  3782. .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 {
  3783. border-top: 1px solid rgb(0, 158, 227);
  3784. padding-top: 1rem;
  3785. }
  3786. .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 {
  3787. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3788. align-self: flex-end;
  3789. }
  3790. .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 {
  3791. margin: 0;
  3792. }
  3793. .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 {
  3794. color: rgb(0, 0, 0);
  3795. font-size: 1.4rem;
  3796. font-weight: 600;
  3797. }
  3798. .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- {
  3799. font-weight: 800;
  3800. }
  3801. .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 {
  3802. margin: 0;
  3803. }
  3804. .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 {
  3805. display: none;
  3806. }
  3807. .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 {
  3808. margin: 0;
  3809. }
  3810. .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 {
  3811. display: none;
  3812. }
  3813. .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 {
  3814. display: none;
  3815. width: 50%;
  3816. }
  3817. .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 {
  3818. width: 100%;
  3819. height: auto;
  3820. }
  3821. .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 {
  3822. display: inline-flex;
  3823. margin-top: 2rem;
  3824. background: rgb(9, 57, 139);
  3825. margin-right: 1rem;
  3826. padding-left: 0.3rem;
  3827. padding-right: 0.3rem;
  3828. color: rgb(255, 255, 255);
  3829. font-weight: 800;
  3830. vertical-align: middle;
  3831. }
  3832. .path-ressources.annuairederecherche .layout-content {
  3833. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3834. background-repeat: no-repeat;
  3835. background-position-y: 7rem;
  3836. max-width: 100vw;
  3837. background-size: cover;
  3838. }
  3839. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3840. padding-top: 8rem;
  3841. }
  3842. @media (max-width: 479px) {
  3843. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3844. padding-top: 5rem;
  3845. padding-left: 5rem;
  3846. }
  3847. }
  3848. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3849. padding-top: 3rem;
  3850. padding-bottom: 3rem;
  3851. vertical-align: middle;
  3852. color: rgb(255, 255, 255);
  3853. }
  3854. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3855. display: inline;
  3856. font-family: "Source Code Pro";
  3857. font-size: 2rem;
  3858. font-weight: 800;
  3859. color: rgb(255, 255, 255);
  3860. background-color: rgb(0, 158, 227);
  3861. text-transform: uppercase;
  3862. width: fit-content;
  3863. margin-left: 10%;
  3864. margin-top: 8rem;
  3865. }
  3866. @media (max-width: 479px) {
  3867. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3868. margin-right: 37%;
  3869. margin-bottom: 2rem;
  3870. margin-left: 0;
  3871. }
  3872. }
  3873. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3874. padding-top: 3rem;
  3875. flex: 0 1 50%;
  3876. margin-left: 20%;
  3877. }
  3878. @media (max-width: 479px) {
  3879. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3880. flex: 0 1 80%;
  3881. margin: 0;
  3882. }
  3883. }
  3884. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  3885. background-color: rgb(255, 255, 255);
  3886. margin-bottom: 4rem;
  3887. }
  3888. .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_ {
  3889. margin-bottom: 3rem;
  3890. }
  3891. .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 {
  3892. grid-column: 1;
  3893. grid-row: 1/span 3;
  3894. margin-right: 1rem;
  3895. max-height: 8rem;
  3896. }
  3897. .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 {
  3898. height: 8rem;
  3899. width: 8rem;
  3900. }
  3901. .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 {
  3902. height: 100%;
  3903. width: 100%;
  3904. object-fit: contain;
  3905. }
  3906. .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 {
  3907. grid-column: 2;
  3908. font-weight: 800;
  3909. background-color: rgb(255, 255, 255);
  3910. }
  3911. .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 {
  3912. background-color: rgb(255, 255, 255);
  3913. grid-column: 2;
  3914. }
  3915. .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 {
  3916. margin: 0;
  3917. }
  3918. .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 {
  3919. background-color: rgb(255, 255, 255);
  3920. grid-column: 2;
  3921. }
  3922. .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 {
  3923. color: rgb(0, 0, 0);
  3924. text-decoration: underline;
  3925. }
  3926. .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 {
  3927. display: none;
  3928. }
  3929. .path-webform .region-content [aria-label="Message d'avertissement"] {
  3930. display: none;
  3931. }
  3932. .path-webform .region-content .block-system-main-block h2 {
  3933. display: none;
  3934. }
  3935. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  3936. display: flex;
  3937. flex-direction: row;
  3938. flex-wrap: wrap;
  3939. flex-basis: auto;
  3940. justify-content: flex-start;
  3941. }
  3942. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  3943. width: 100%;
  3944. font-family: "Source Code Pro";
  3945. font-size: 1.5rem;
  3946. font-weight: 800;
  3947. color: rgb(255, 255, 255);
  3948. background-color: rgb(0, 158, 227);
  3949. text-transform: uppercase;
  3950. padding-left: 13%;
  3951. padding-top: 2rem;
  3952. padding-bottom: 2rem;
  3953. vertical-align: middle;
  3954. }
  3955. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  3956. width: 100%;
  3957. font-family: "Source Code Pro";
  3958. font-size: 2rem;
  3959. font-weight: 800;
  3960. color: rgb(255, 255, 255);
  3961. background-color: rgb(0, 158, 227);
  3962. text-transform: uppercase;
  3963. width: fit-content;
  3964. margin-left: 13%;
  3965. margin-top: 8rem;
  3966. }
  3967. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  3968. margin-top: 10vh;
  3969. margin-left: 13%;
  3970. margin-right: 20%;
  3971. width: 60%;
  3972. }
  3973. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  3974. margin-left: 13%;
  3975. margin-right: 20%;
  3976. width: 60%;
  3977. display: flex;
  3978. flex-direction: row;
  3979. flex-wrap: wrap;
  3980. margin-top: 2rem;
  3981. }
  3982. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  3983. content: "*";
  3984. color: red;
  3985. font-size: 2rem;
  3986. padding-left: 0.5rem;
  3987. }
  3988. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  3989. width: 100%;
  3990. }
  3991. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  3992. width: 90%;
  3993. height: 5rem;
  3994. }
  3995. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  3996. margin-left: 13%;
  3997. margin-right: 20%;
  3998. width: 60%;
  3999. display: flex;
  4000. flex-direction: row;
  4001. flex-wrap: wrap;
  4002. margin-top: 2rem;
  4003. }
  4004. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  4005. content: "*";
  4006. color: red;
  4007. font-size: 2rem;
  4008. padding-left: 0.5rem;
  4009. }
  4010. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  4011. width: 100%;
  4012. }
  4013. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  4014. width: 90%;
  4015. }
  4016. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  4017. margin-left: 13%;
  4018. width: 27%;
  4019. display: flex;
  4020. flex-direction: row;
  4021. flex-wrap: wrap;
  4022. margin-top: 2rem;
  4023. }
  4024. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  4025. content: "*";
  4026. color: red;
  4027. font-size: 2rem;
  4028. padding-left: 0.5rem;
  4029. }
  4030. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  4031. width: 100%;
  4032. }
  4033. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  4034. width: 90%;
  4035. }
  4036. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  4037. margin-right: 20%;
  4038. width: 27%;
  4039. display: flex;
  4040. flex-direction: row;
  4041. flex-wrap: wrap;
  4042. margin-top: 2rem;
  4043. margin-right: 3rem;
  4044. }
  4045. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  4046. width: 100%;
  4047. }
  4048. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  4049. width: 100%;
  4050. }
  4051. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  4052. margin-left: 13%;
  4053. margin-right: 20%;
  4054. width: 60%;
  4055. display: flex;
  4056. flex-direction: row;
  4057. flex-wrap: wrap;
  4058. margin-top: 2rem;
  4059. }
  4060. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  4061. content: "*";
  4062. color: red;
  4063. font-size: 2rem;
  4064. padding-left: 0.5rem;
  4065. }
  4066. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  4067. width: 100%;
  4068. }
  4069. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  4070. width: 90%;
  4071. }
  4072. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  4073. margin-left: 13%;
  4074. margin-right: 20%;
  4075. width: 60%;
  4076. display: flex;
  4077. flex-direction: row;
  4078. flex-wrap: wrap;
  4079. margin-top: 2rem;
  4080. }
  4081. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  4082. content: "*";
  4083. color: red;
  4084. font-size: 2rem;
  4085. padding-left: 0.5rem;
  4086. }
  4087. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  4088. width: 100%;
  4089. }
  4090. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  4091. width: 90%;
  4092. }
  4093. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  4094. margin-left: 13%;
  4095. margin-right: 20%;
  4096. width: 60%;
  4097. display: flex;
  4098. flex-direction: row;
  4099. flex-wrap: wrap;
  4100. margin-top: 2rem;
  4101. }
  4102. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  4103. content: "*";
  4104. color: red;
  4105. font-size: 2rem;
  4106. padding-left: 1rem;
  4107. }
  4108. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  4109. width: 100%;
  4110. }
  4111. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  4112. width: 90%;
  4113. }
  4114. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  4115. width: 100%;
  4116. }
  4117. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  4118. margin-left: 13%;
  4119. margin-right: 20%;
  4120. width: 60%;
  4121. display: flex;
  4122. flex-direction: row;
  4123. flex-wrap: wrap;
  4124. margin-top: 2rem;
  4125. }
  4126. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  4127. width: 100%;
  4128. }
  4129. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  4130. width: 90%;
  4131. height: 3rem;
  4132. }
  4133. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  4134. margin-left: 13%;
  4135. margin-right: 20%;
  4136. width: 60%;
  4137. display: flex;
  4138. flex-direction: row;
  4139. flex-wrap: wrap;
  4140. margin-top: 2rem;
  4141. }
  4142. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  4143. width: 100%;
  4144. }
  4145. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  4146. margin-left: 13%;
  4147. margin-right: 20%;
  4148. width: 60%;
  4149. display: flex;
  4150. flex-direction: row;
  4151. flex-wrap: wrap;
  4152. margin-top: 2rem;
  4153. }
  4154. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet label {
  4155. width: 100%;
  4156. }
  4157. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  4158. width: 90%;
  4159. height: 3rem;
  4160. }
  4161. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  4162. margin-left: 13%;
  4163. width: 28%;
  4164. display: flex;
  4165. flex-direction: row;
  4166. flex-wrap: wrap;
  4167. margin-top: 2rem;
  4168. }
  4169. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  4170. content: "*";
  4171. color: red;
  4172. font-size: 2rem;
  4173. padding-left: 0.5rem;
  4174. }
  4175. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  4176. width: 100%;
  4177. }
  4178. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  4179. width: 90%;
  4180. }
  4181. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  4182. margin-right: 20%;
  4183. width: 29%;
  4184. display: flex;
  4185. flex-direction: row;
  4186. flex-wrap: wrap;
  4187. margin-top: 2rem;
  4188. margin-right: 3rem;
  4189. }
  4190. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  4191. content: "*";
  4192. color: red;
  4193. font-size: 2rem;
  4194. padding-left: 0.5rem;
  4195. }
  4196. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  4197. width: 100%;
  4198. }
  4199. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  4200. width: 90%;
  4201. }
  4202. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  4203. width: 60%;
  4204. }
  4205. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  4206. width: 30%;
  4207. align-self: flex-end;
  4208. background-color: rgb(0, 158, 227);
  4209. text-transform: uppercase;
  4210. color: rgb(255, 255, 255);
  4211. font-size: 1.2rem;
  4212. font-weight: 600;
  4213. float: right;
  4214. margin-top: 1rem;
  4215. border: none;
  4216. }
  4217. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  4218. 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>');
  4219. }
  4220. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  4221. display: flex;
  4222. flex-direction: row;
  4223. flex-wrap: wrap;
  4224. flex-basis: auto;
  4225. justify-content: flex-start;
  4226. }
  4227. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  4228. width: 100%;
  4229. font-family: "Source Code Pro";
  4230. font-size: 1.5rem;
  4231. font-weight: 800;
  4232. color: rgb(255, 255, 255);
  4233. background-color: rgb(0, 158, 227);
  4234. text-transform: uppercase;
  4235. padding-left: 13%;
  4236. padding-top: 2rem;
  4237. padding-bottom: 2rem;
  4238. vertical-align: middle;
  4239. }
  4240. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  4241. width: 100%;
  4242. font-family: "Source Code Pro";
  4243. font-size: 2rem;
  4244. font-weight: 800;
  4245. color: rgb(255, 255, 255);
  4246. background-color: rgb(0, 158, 227);
  4247. text-transform: uppercase;
  4248. width: fit-content;
  4249. margin-left: 13%;
  4250. margin-top: 8rem;
  4251. }
  4252. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  4253. margin-top: 10vh;
  4254. margin-left: 13%;
  4255. margin-right: 20%;
  4256. width: 60%;
  4257. }
  4258. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  4259. margin-left: 13%;
  4260. margin-right: 20%;
  4261. width: 60%;
  4262. display: flex;
  4263. flex-direction: row;
  4264. flex-wrap: wrap;
  4265. margin-top: 2rem;
  4266. }
  4267. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  4268. content: "*";
  4269. color: red;
  4270. font-size: 2rem;
  4271. padding-left: 0.5rem;
  4272. }
  4273. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  4274. width: 100%;
  4275. }
  4276. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  4277. width: 90%;
  4278. height: 5rem;
  4279. }
  4280. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  4281. margin-left: 13%;
  4282. margin-right: 20%;
  4283. width: 60%;
  4284. display: flex;
  4285. flex-direction: row;
  4286. flex-wrap: wrap;
  4287. margin-top: 2rem;
  4288. }
  4289. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  4290. content: "*";
  4291. color: red;
  4292. font-size: 2rem;
  4293. padding-left: 0.5rem;
  4294. }
  4295. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  4296. width: 100%;
  4297. }
  4298. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  4299. width: 90%;
  4300. }
  4301. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  4302. margin-left: 13%;
  4303. margin-right: 20%;
  4304. width: 60%;
  4305. display: flex;
  4306. flex-direction: row;
  4307. flex-wrap: wrap;
  4308. margin-top: 2rem;
  4309. }
  4310. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  4311. content: "*";
  4312. color: red;
  4313. font-size: 2rem;
  4314. padding-left: 0.5rem;
  4315. }
  4316. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  4317. width: 100%;
  4318. }
  4319. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  4320. width: 90%;
  4321. }
  4322. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  4323. width: 100%;
  4324. }
  4325. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  4326. margin-left: 13%;
  4327. margin-right: 20%;
  4328. width: 60%;
  4329. display: flex;
  4330. flex-direction: row;
  4331. flex-wrap: wrap;
  4332. margin-top: 2rem;
  4333. }
  4334. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  4335. width: 100%;
  4336. }
  4337. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  4338. width: 90%;
  4339. }
  4340. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  4341. margin-left: 13%;
  4342. margin-right: 20%;
  4343. width: 60%;
  4344. display: flex;
  4345. flex-direction: row;
  4346. flex-wrap: wrap;
  4347. margin-top: 2rem;
  4348. }
  4349. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  4350. width: 100%;
  4351. }
  4352. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  4353. width: 90%;
  4354. }
  4355. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  4356. margin-left: 13%;
  4357. margin-right: 20%;
  4358. width: 60%;
  4359. display: flex;
  4360. flex-direction: row;
  4361. flex-wrap: wrap;
  4362. margin-top: 2rem;
  4363. }
  4364. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  4365. margin-left: 13%;
  4366. margin-right: 20%;
  4367. width: 60%;
  4368. display: flex;
  4369. flex-direction: row;
  4370. flex-wrap: wrap;
  4371. margin-top: 2rem;
  4372. }
  4373. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  4374. width: 100%;
  4375. }
  4376. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  4377. margin-left: 13%;
  4378. margin-right: 20%;
  4379. width: 60%;
  4380. display: flex;
  4381. flex-direction: row;
  4382. flex-wrap: wrap;
  4383. margin-top: 2rem;
  4384. }
  4385. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  4386. content: "*";
  4387. color: red;
  4388. font-size: 2rem;
  4389. padding-left: 0.5rem;
  4390. }
  4391. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  4392. width: 100%;
  4393. }
  4394. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  4395. width: 90%;
  4396. }
  4397. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  4398. margin-left: 13%;
  4399. display: flex;
  4400. flex-direction: row;
  4401. flex-wrap: wrap;
  4402. margin-top: 2rem;
  4403. width: 28%;
  4404. }
  4405. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  4406. content: "*";
  4407. color: red;
  4408. font-size: 2rem;
  4409. padding-left: 0.5rem;
  4410. }
  4411. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  4412. width: 100%;
  4413. }
  4414. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  4415. width: 90%;
  4416. }
  4417. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  4418. margin-right: 20%;
  4419. width: 29%;
  4420. display: flex;
  4421. flex-direction: row;
  4422. flex-wrap: wrap;
  4423. margin-top: 2rem;
  4424. margin-right: 3rem;
  4425. }
  4426. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  4427. content: "*";
  4428. color: red;
  4429. font-size: 2rem;
  4430. padding-left: 0.5rem;
  4431. }
  4432. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  4433. width: 100%;
  4434. }
  4435. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  4436. width: 90%;
  4437. }
  4438. .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 {
  4439. margin-top: 3rem;
  4440. margin-bottom: 3rem;
  4441. margin-left: 13%;
  4442. margin-right: 20%;
  4443. width: 60%;
  4444. }
  4445. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  4446. width: 60%;
  4447. }
  4448. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  4449. width: 30%;
  4450. align-self: flex-end;
  4451. background-color: rgb(0, 158, 227);
  4452. text-transform: uppercase;
  4453. color: rgb(255, 255, 255);
  4454. font-size: 1.2rem;
  4455. font-weight: 600;
  4456. float: right;
  4457. margin-top: 1rem;
  4458. border: none;
  4459. }
  4460. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  4461. 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>');
  4462. }
  4463. .path-webform .region-content #webform-submission-question-add-form {
  4464. display: flex;
  4465. flex-direction: row;
  4466. flex-wrap: wrap;
  4467. flex-basis: auto;
  4468. justify-content: flex-start;
  4469. margin-top: 10vh;
  4470. width: 60%;
  4471. margin-left: 13%;
  4472. margin-right: 20%;
  4473. }
  4474. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  4475. display: flex;
  4476. flex-direction: row;
  4477. flex-wrap: wrap;
  4478. margin-top: 2rem;
  4479. width: 100%;
  4480. }
  4481. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  4482. content: "*";
  4483. color: red;
  4484. font-size: 2rem;
  4485. padding-left: 0.5rem;
  4486. }
  4487. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  4488. width: 100%;
  4489. }
  4490. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  4491. width: 90%;
  4492. }
  4493. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  4494. display: flex;
  4495. flex-direction: row;
  4496. flex-wrap: wrap;
  4497. margin-top: 2rem;
  4498. width: 100%;
  4499. }
  4500. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  4501. content: "*";
  4502. color: red;
  4503. font-size: 2rem;
  4504. padding-left: 0.9rem;
  4505. }
  4506. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  4507. width: 100%;
  4508. }
  4509. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  4510. width: 90%;
  4511. }
  4512. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  4513. width: 100%;
  4514. height: 5rem;
  4515. }
  4516. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  4517. width: 90%;
  4518. }
  4519. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  4520. width: 30%;
  4521. align-self: flex-end;
  4522. background-color: rgb(0, 158, 227);
  4523. text-transform: uppercase;
  4524. color: rgb(255, 255, 255);
  4525. font-size: 1.2rem;
  4526. font-weight: 600;
  4527. float: right;
  4528. margin-top: 1rem;
  4529. border: none;
  4530. }
  4531. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  4532. 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>');
  4533. }
  4534. .path-projets .region-content #block-contenudelapageprincipale span {
  4535. padding-top: 3rem;
  4536. padding-bottom: 3rem;
  4537. vertical-align: middle;
  4538. }
  4539. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  4540. margin: 0;
  4541. padding-top: 2rem;
  4542. height: 4rem;
  4543. color: rgb(255, 255, 255);
  4544. font-family: "Source Code Pro";
  4545. text-transform: uppercase;
  4546. background: rgb(0, 158, 227);
  4547. padding-left: 13%;
  4548. }
  4549. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4550. display: grid;
  4551. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  4552. }
  4553. @media (max-width: 810px) {
  4554. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4555. display: flex;
  4556. flex-direction: column;
  4557. }
  4558. }
  4559. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  4560. grid-column: 1/span 10;
  4561. }
  4562. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  4563. overflow: scroll;
  4564. height: 210px;
  4565. margin: 17px 10px 17px 20px !important;
  4566. padding-right: 10px;
  4567. }
  4568. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a {
  4569. display: none;
  4570. }
  4571. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:nth-child(1) {
  4572. display: block !important;
  4573. }
  4574. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:last-of-type {
  4575. display: block !important;
  4576. }
  4577. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content #text {
  4578. display: none;
  4579. }
  4580. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4581. grid-column: 3/span 5;
  4582. margin: auto;
  4583. }
  4584. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  4585. display: none;
  4586. }
  4587. .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) {
  4588. font-size: 1.5rem;
  4589. }
  4590. @media (max-width: 810px) {
  4591. .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) {
  4592. font-size: 1.3rem;
  4593. }
  4594. }
  4595. @media (max-width: 810px) {
  4596. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4597. padding: 1rem;
  4598. }
  4599. }
  4600. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4601. grid-column: 8/span 9;
  4602. margin-top: 4rem;
  4603. background-color: rgb(0, 158, 227);
  4604. height: fit-content;
  4605. width: 60%;
  4606. margin-left: 2rem;
  4607. grid-row: 2;
  4608. }
  4609. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  4610. display: block;
  4611. }
  4612. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  4613. display: flex;
  4614. flex-direction: column;
  4615. margin-top: 2rem;
  4616. margin-bottom: 2rem;
  4617. margin-left: 1.5rem;
  4618. margin-right: 1.5rem;
  4619. text-align: center;
  4620. }
  4621. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  4622. font-weight: 800;
  4623. color: rgb(255, 255, 255);
  4624. font-size: 1.3rem;
  4625. }
  4626. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  4627. margin-left: auto;
  4628. padding-top: 1rem;
  4629. display: block;
  4630. content: url("../images/pictos/noun_Arrow_3771902.svg");
  4631. }
  4632. @media (max-width: 810px) {
  4633. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4634. margin: auto;
  4635. }
  4636. }
  4637. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4638. grid-column: 2/span 7;
  4639. }
  4640. @media (max-width: 810px) {
  4641. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4642. padding: 1rem;
  4643. }
  4644. }
  4645. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4646. display: none;
  4647. }
  4648. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4649. margin: auto;
  4650. }
  4651. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4652. scroll-margin-top: 10rem;
  4653. }
  4654. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4655. margin-top: 4rem;
  4656. padding-left: 0.5rem;
  4657. display: flex;
  4658. flex-direction: column;
  4659. }
  4660. @media (max-width: 479px) {
  4661. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4662. flex-direction: column;
  4663. padding-bottom: 3rem;
  4664. margin-top: 0rem;
  4665. }
  4666. }
  4667. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4668. content: "Filtrer par :";
  4669. margin-right: 2rem;
  4670. margin-bottom: 1rem;
  4671. margin-left: 0.5rem;
  4672. font-weight: 900;
  4673. min-width: fit-content;
  4674. }
  4675. @media (max-width: 479px) {
  4676. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4677. padding-bottom: 1rem;
  4678. }
  4679. }
  4680. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper {
  4681. margin-top: 2rem;
  4682. display: flex;
  4683. flex-direction: row;
  4684. flex-wrap: wrap;
  4685. }
  4686. @media (max-width: 810px) {
  4687. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper {
  4688. flex-direction: column;
  4689. }
  4690. }
  4691. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  4692. width: 25%;
  4693. }
  4694. @media (max-width: 810px) {
  4695. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  4696. width: 100%;
  4697. }
  4698. }
  4699. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4700. color: rgb(9, 57, 139);
  4701. line-height: 1.5rem;
  4702. padding: 0.5rem;
  4703. padding-right: 1rem;
  4704. padding-left: 1rem;
  4705. }
  4706. @media (max-width: 479px) {
  4707. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4708. padding-left: 0rem;
  4709. padding-right: 0rem;
  4710. padding-top: 2rem;
  4711. }
  4712. }
  4713. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4714. display: flex;
  4715. flex-direction: column;
  4716. }
  4717. .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 {
  4718. color: rgb(9, 57, 139);
  4719. }
  4720. .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 {
  4721. order: 1;
  4722. }
  4723. .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 .field__item {
  4724. display: none;
  4725. }
  4726. .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 .field__item:first-child {
  4727. display: block;
  4728. }
  4729. .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 {
  4730. width: 100%;
  4731. max-height: 175px;
  4732. object-fit: cover;
  4733. }
  4734. .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 {
  4735. display: block;
  4736. 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>');
  4737. }
  4738. .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 {
  4739. order: 2;
  4740. display: flex;
  4741. text-transform: uppercase;
  4742. font-size: 0.9rem;
  4743. font-weight: 800;
  4744. margin-top: 0.8rem;
  4745. line-height: 1rem;
  4746. }
  4747. .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 {
  4748. display: flex;
  4749. flex-direction: row;
  4750. margin: 0;
  4751. }
  4752. .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 .postal-code {
  4753. display: none;
  4754. }
  4755. .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 {
  4756. padding-top: 0 !important;
  4757. padding-bottom: 0 !important;
  4758. }
  4759. .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 {
  4760. content: ",";
  4761. margin-right: 0.3rem;
  4762. }
  4763. .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 {
  4764. padding-top: 0 !important;
  4765. padding-bottom: 0 !important;
  4766. }
  4767. .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 {
  4768. margin-top: 0.5rem;
  4769. font-size: 0.9rem;
  4770. font-weight: 800;
  4771. order: 4;
  4772. }
  4773. .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 {
  4774. order: 3;
  4775. margin-top: 0.5rem;
  4776. font-size: 0.8rem;
  4777. font-weight: 800;
  4778. }
  4779. .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 {
  4780. margin: 0;
  4781. }
  4782. .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 {
  4783. order: 4;
  4784. color: red;
  4785. margin-top: 0.8rem;
  4786. font-size: 0.7rem;
  4787. }
  4788. .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-region {
  4789. display: none;
  4790. }
  4791. .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-type-de-moa {
  4792. display: none;
  4793. }
  4794. .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-type-de-projet {
  4795. display: none;
  4796. }
  4797. .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-etape-du-projet {
  4798. display: none;
  4799. }
  4800. .path-node.page-node-type-projet .layout-container {
  4801. overflow: unset;
  4802. }
  4803. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4804. padding-top: 4rem;
  4805. margin-left: 10%;
  4806. margin-right: 10%;
  4807. width: 80vw;
  4808. }
  4809. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4810. display: flex;
  4811. flex-direction: row;
  4812. margin-bottom: 2rem;
  4813. }
  4814. @media (max-width: 568px) {
  4815. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4816. flex-direction: column;
  4817. }
  4818. }
  4819. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo {
  4820. width: 60%;
  4821. padding-right: 2rem;
  4822. }
  4823. @media (max-width: 568px) {
  4824. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo {
  4825. width: 100%;
  4826. }
  4827. }
  4828. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4829. height: auto;
  4830. max-height: 600px;
  4831. object-fit: contain;
  4832. width: inherit;
  4833. }
  4834. @media (max-width: 810px) {
  4835. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4836. padding-top: 1rem;
  4837. object-fit: cover;
  4838. width: 100%;
  4839. }
  4840. }
  4841. @media (max-width: 568px) {
  4842. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4843. width: 100%;
  4844. max-height: 300px;
  4845. }
  4846. }
  4847. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-dots > li {
  4848. display: inline-block;
  4849. }
  4850. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-dots > li:only-child {
  4851. display: none;
  4852. }
  4853. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-prev::before, .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-next::before {
  4854. opacity: 1 !important;
  4855. top: 0 !important;
  4856. }
  4857. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-prev, .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-next {
  4858. top: 98% !important;
  4859. }
  4860. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4861. width: 40%;
  4862. }
  4863. @media (max-width: 568px) {
  4864. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4865. width: 100%;
  4866. }
  4867. }
  4868. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle {
  4869. margin: 0;
  4870. }
  4871. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4872. font-family: "Marianne";
  4873. font-size: 2.3rem;
  4874. font-weight: 800;
  4875. color: rgb(0, 158, 227);
  4876. }
  4877. @media (max-width: 1624px) {
  4878. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4879. font-size: 2.3rem;
  4880. }
  4881. }
  4882. @media (max-width: 1384px) {
  4883. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4884. font-size: 2rem;
  4885. }
  4886. }
  4887. @media (max-width: 1216px) {
  4888. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4889. font-size: rem;
  4890. }
  4891. }
  4892. @media (max-width: 810px) {
  4893. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4894. font-size: 1.7rem;
  4895. }
  4896. }
  4897. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4898. margin-top: 2rem;
  4899. }
  4900. @media (max-width: 1624px) {
  4901. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4902. margin-top: 1rem;
  4903. padding-top: 0.5rem;
  4904. }
  4905. }
  4906. @media (max-width: 1384px) {
  4907. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4908. margin-top: 0.8rem;
  4909. padding-top: 0.5rem;
  4910. }
  4911. }
  4912. @media (max-width: 810px) {
  4913. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4914. padding-top: 0.5rem;
  4915. }
  4916. }
  4917. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4918. color: rgb(9, 57, 139);
  4919. font-size: 1.5rem;
  4920. font-weight: 900;
  4921. text-transform: uppercase;
  4922. }
  4923. @media (max-width: 1624px) {
  4924. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4925. font-size: 1.3rem;
  4926. }
  4927. }
  4928. @media (max-width: 1216px) {
  4929. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4930. font-size: 1.1rem;
  4931. }
  4932. }
  4933. @media (max-width: 810px) {
  4934. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4935. font-size: 1rem;
  4936. }
  4937. }
  4938. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube {
  4939. margin-top: 2rem;
  4940. width: fit-content;
  4941. }
  4942. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube .field--name-field-incube {
  4943. background-color: rgb(225, 0, 15);
  4944. color: white;
  4945. font-weight: 800;
  4946. padding-right: 0.3rem;
  4947. padding-left: 0.2rem;
  4948. }
  4949. @media (max-width: 1624px) {
  4950. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube {
  4951. margin-top: 1rem;
  4952. }
  4953. }
  4954. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4955. display: flex;
  4956. flex-direction: row;
  4957. border: 0.1rem solid;
  4958. justify-content: space-evenly;
  4959. width: 90%;
  4960. margin-top: 3rem;
  4961. font-weight: 600;
  4962. }
  4963. @media (max-width: 479px) {
  4964. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4965. flex-direction: column;
  4966. width: 100%;
  4967. }
  4968. }
  4969. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left {
  4970. padding-right: 1rem;
  4971. order: 1;
  4972. width: 30%;
  4973. position: relative;
  4974. height: 80px;
  4975. text-align: center;
  4976. }
  4977. @media (max-width: 479px) {
  4978. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left {
  4979. width: 100%;
  4980. }
  4981. }
  4982. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left::before {
  4983. content: url("../images/pictos/picto_lieu.svg");
  4984. min-width: 30px;
  4985. height: auto;
  4986. padding-right: 1rem;
  4987. position: absolute;
  4988. left: 0;
  4989. margin-top: 0.83em;
  4990. margin-left: 1rem;
  4991. }
  4992. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-region {
  4993. order: 1;
  4994. margin-left: 70px;
  4995. margin-bottom: 1rem;
  4996. height: fit-content;
  4997. }
  4998. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse {
  4999. display: inline-flex;
  5000. order: 2;
  5001. margin-left: 70px;
  5002. height: fit-content;
  5003. }
  5004. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse {
  5005. display: flex;
  5006. flex-direction: row;
  5007. margin-top: 0.83em;
  5008. }
  5009. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse .address {
  5010. margin: auto;
  5011. display: flex;
  5012. flex-direction: column;
  5013. justify-content: start;
  5014. margin: 0;
  5015. }
  5016. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse .address .country {
  5017. display: none;
  5018. }
  5019. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet {
  5020. order: 4;
  5021. padding-left: 1rem;
  5022. padding-right: 1rem;
  5023. padding-bottom: 1rem;
  5024. border-left: 0.1rem solid;
  5025. width: 30%;
  5026. }
  5027. @media (max-width: 479px) {
  5028. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet {
  5029. width: 100%;
  5030. border-top: 0.1rem solid;
  5031. border-left: 0;
  5032. padding-right: 0rem;
  5033. padding-left: 0rem;
  5034. }
  5035. }
  5036. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2 {
  5037. color: rgb(9, 57, 139);
  5038. font-size: 1.2rem;
  5039. font-weight: 900;
  5040. text-transform: uppercase;
  5041. margin-bottom: 0rem !important;
  5042. }
  5043. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2:after {
  5044. content: " :";
  5045. }
  5046. @media (max-width: 479px) {
  5047. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2 {
  5048. padding-right: 1rem;
  5049. padding-left: 1rem;
  5050. }
  5051. }
  5052. @media (max-width: 479px) {
  5053. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet .field__item {
  5054. padding-right: 1rem;
  5055. padding-left: 1rem;
  5056. }
  5057. }
  5058. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet .field__label {
  5059. display: none;
  5060. }
  5061. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa {
  5062. order: 2;
  5063. padding-left: 1rem;
  5064. border-left: 0.1rem solid;
  5065. padding-bottom: 1rem;
  5066. width: 20%;
  5067. }
  5068. @media (max-width: 479px) {
  5069. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa {
  5070. border-left: 0;
  5071. border-top: 0.1rem solid;
  5072. width: 100%;
  5073. padding-right: 0rem;
  5074. padding-left: 0rem;
  5075. }
  5076. }
  5077. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2 {
  5078. color: rgb(9, 57, 139);
  5079. font-size: 1.2rem;
  5080. font-weight: 900;
  5081. text-transform: uppercase;
  5082. margin-bottom: 0rem !important;
  5083. }
  5084. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2:after {
  5085. content: " :";
  5086. }
  5087. @media (max-width: 479px) {
  5088. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2 {
  5089. padding-right: 1rem;
  5090. padding-left: 1rem;
  5091. }
  5092. }
  5093. @media (max-width: 479px) {
  5094. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa .field__item {
  5095. padding-right: 1rem;
  5096. padding-left: 1rem;
  5097. }
  5098. }
  5099. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa .field__label {
  5100. display: none;
  5101. }
  5102. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet {
  5103. order: 3;
  5104. padding-left: 1rem;
  5105. padding-bottom: 1rem;
  5106. border-left: 0.1rem solid;
  5107. width: 20%;
  5108. }
  5109. @media (max-width: 479px) {
  5110. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet {
  5111. border-left: 0;
  5112. border-top: 0.1rem solid;
  5113. width: 100%;
  5114. padding-right: 0rem;
  5115. padding-left: 0rem;
  5116. }
  5117. }
  5118. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2 {
  5119. color: rgb(9, 57, 139);
  5120. font-size: 1.2rem;
  5121. font-weight: 900;
  5122. text-transform: uppercase;
  5123. margin-bottom: 0rem !important;
  5124. }
  5125. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2:after {
  5126. content: " :";
  5127. }
  5128. @media (max-width: 479px) {
  5129. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2 {
  5130. padding-right: 1rem;
  5131. padding-left: 1rem;
  5132. }
  5133. }
  5134. @media (max-width: 479px) {
  5135. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet .field__item {
  5136. padding-right: 1rem;
  5137. padding-left: 1rem;
  5138. }
  5139. }
  5140. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet .field__label {
  5141. display: none;
  5142. }
  5143. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5144. margin-top: 5rem;
  5145. }
  5146. @media (max-width: 479px) {
  5147. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5148. display: none;
  5149. }
  5150. }
  5151. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  5152. display: flex;
  5153. justify-content: flex-end;
  5154. position: -webkit-sticky;
  5155. position: sticky;
  5156. top: 10rem;
  5157. }
  5158. .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 {
  5159. display: flex;
  5160. justify-content: flex-end;
  5161. width: 50%;
  5162. background-color: rgb(255, 255, 255);
  5163. padding-right: 2rem;
  5164. }
  5165. .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 {
  5166. display: flex;
  5167. font-size: 1rem;
  5168. font-weight: 1000;
  5169. color: rgb(9, 57, 139);
  5170. border-bottom: 1px solid rgb(0, 158, 227);
  5171. padding-bottom: 0.5rem;
  5172. padding-right: 1rem;
  5173. margin-bottom: 0.8rem;
  5174. }
  5175. .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 {
  5176. text-decoration: underline;
  5177. }
  5178. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5179. margin-top: 5rem;
  5180. flex: 0 1 50%;
  5181. }
  5182. @media (max-width: 479px) {
  5183. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5184. flex: 0 1 100%;
  5185. margin-top: 1rem;
  5186. }
  5187. }
  5188. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5189. width: 90%;
  5190. }
  5191. @media (max-width: 479px) {
  5192. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5193. width: 80%;
  5194. margin: auto;
  5195. }
  5196. }
  5197. .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 {
  5198. margin-top: 0;
  5199. }
  5200. .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 {
  5201. background-color: white;
  5202. }
  5203. .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 {
  5204. background-color: rgb(255, 255, 255);
  5205. }
  5206. .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 .paragraph {
  5207. margin-top: 3rem;
  5208. }
  5209. .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 {
  5210. font-size: 1.5rem;
  5211. font-weight: 1000;
  5212. font-family: "Source Code Pro";
  5213. color: rgb(9, 57, 139);
  5214. text-transform: uppercase;
  5215. margin-bottom: 0.8rem;
  5216. }
  5217. .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 {
  5218. text-transform: none !important;
  5219. }
  5220. .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 {
  5221. width: 100%;
  5222. height: auto;
  5223. }
  5224. .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 {
  5225. padding-right: 2rem;
  5226. }
  5227. .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 {
  5228. margin-top: 0;
  5229. }
  5230. .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 {
  5231. color: rgb(0, 0, 0);
  5232. text-decoration: underline;
  5233. }
  5234. .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 {
  5235. display: none;
  5236. }
  5237. .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 {
  5238. overflow-y: visible !important;
  5239. }
  5240. .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 {
  5241. font-size: 1.5rem;
  5242. font-weight: 1000;
  5243. font-family: "Source Code Pro";
  5244. color: rgb(9, 57, 139);
  5245. text-transform: uppercase;
  5246. margin-top: 2rem;
  5247. margin-bottom: 0.8rem;
  5248. }
  5249. .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 {
  5250. display: flex;
  5251. flex-direction: row;
  5252. justify-content: space-between;
  5253. }
  5254. .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 {
  5255. display: flex;
  5256. flex-direction: column;
  5257. align-items: center;
  5258. }
  5259. .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 {
  5260. padding-top: 1rem;
  5261. }
  5262. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5263. margin-top: 5rem;
  5264. }
  5265. @media (max-width: 479px) {
  5266. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5267. margin-top: 2rem;
  5268. }
  5269. }
  5270. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5271. display: flex;
  5272. flex-direction: column;
  5273. width: 65%;
  5274. }
  5275. @media (max-width: 479px) {
  5276. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5277. width: 80%;
  5278. margin: auto;
  5279. }
  5280. }
  5281. .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 {
  5282. display: none;
  5283. }
  5284. .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 {
  5285. height: fit-content;
  5286. border: 2px solid rgb(0, 158, 227);
  5287. background-color: rgb(255, 255, 255);
  5288. margin-bottom: 1rem;
  5289. min-height: 4rem;
  5290. color: rgb(0, 158, 227);
  5291. padding-left: 1rem;
  5292. padding-top: 1rem;
  5293. }
  5294. .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) {
  5295. display: none;
  5296. }
  5297. .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--image {
  5298. height: inherit;
  5299. margin: auto;
  5300. }
  5301. .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--image ::before {
  5302. content: url("../images/pictos/download.png");
  5303. min-width: 30px;
  5304. height: auto;
  5305. padding-right: 2rem;
  5306. }
  5307. .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--image a {
  5308. hyphens: auto;
  5309. display: inline-flex;
  5310. color: rgb(0, 158, 227);
  5311. font-weight: 800;
  5312. }
  5313. .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 {
  5314. height: inherit;
  5315. margin: auto;
  5316. }
  5317. .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 {
  5318. content: url("../images/pictos/download.png");
  5319. min-width: 30px;
  5320. height: auto;
  5321. padding-right: 2rem;
  5322. }
  5323. .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 {
  5324. hyphens: auto;
  5325. display: inline-flex;
  5326. color: rgb(0, 158, 227);
  5327. font-weight: 800;
  5328. }
  5329. .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 {
  5330. display: none;
  5331. }
  5332. .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 {
  5333. margin: auto;
  5334. height: fit-content;
  5335. border: 2px solid rgb(0, 158, 227);
  5336. min-height: 4rem;
  5337. background: rgb(255, 255, 255);
  5338. color: rgb(0, 158, 227);
  5339. padding-left: 1rem;
  5340. padding-top: 1rem;
  5341. margin-bottom: 1rem;
  5342. }
  5343. .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 {
  5344. display: inline-flex;
  5345. align-items: center;
  5346. color: rgb(0, 158, 227);
  5347. font-weight: 800;
  5348. }
  5349. .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 {
  5350. content: url("../images/pictos/external_link.png");
  5351. min-width: 30px;
  5352. height: auto;
  5353. padding-right: 2rem;
  5354. }
  5355. .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 {
  5356. display: none;
  5357. }
  5358. .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- {
  5359. margin-top: 3rem;
  5360. }
  5361. @media (max-width: 479px) {
  5362. .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- {
  5363. margin-top: 2rem;
  5364. }
  5365. }
  5366. .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 {
  5367. font-size: 0.8rem;
  5368. color: rgb(0, 0, 0);
  5369. font-weight: 900;
  5370. }
  5371. .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 {
  5372. display: flex;
  5373. flex-direction: column;
  5374. border: 2px solid rgb(0, 158, 227);
  5375. padding: 1rem;
  5376. height: fit-content;
  5377. margin-bottom: 1rem;
  5378. background-color: rgb(255, 255, 255);
  5379. }
  5380. .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 div {
  5381. display: flex;
  5382. flex-direction: column;
  5383. }
  5384. .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 div .field--name-title {
  5385. order: 3;
  5386. }
  5387. .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 div .field--name-title h2 {
  5388. margin: 0;
  5389. }
  5390. .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 div .field--name-title h2 a {
  5391. color: rgb(0, 0, 0);
  5392. font-size: 1rem;
  5393. font-weight: 900;
  5394. font-style: italic;
  5395. }
  5396. .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 div .field--name-field-sous-titre {
  5397. display: none;
  5398. }
  5399. .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 div .field--name-field-type-de-ressource {
  5400. order: 2;
  5401. text-transform: uppercase;
  5402. color: rgb(0, 158, 227);
  5403. font-weight: 900;
  5404. font-size: 0.8rem;
  5405. }
  5406. .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 div .field--name-field-auteur-s- {
  5407. order: 5;
  5408. font-weight: 800;
  5409. }
  5410. .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 div .field--name-field-auteur-s- p {
  5411. margin: 0;
  5412. }
  5413. .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 div .field--name-field-auteur-s- .field__label {
  5414. display: none;
  5415. }
  5416. .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 div .field--name-field-edition p {
  5417. margin: 0;
  5418. }
  5419. .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 div .field--name-field-edition .field__label {
  5420. display: none;
  5421. }
  5422. .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 div .field--name-field-images {
  5423. order: 1;
  5424. width: 25%;
  5425. }
  5426. .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 div .field--name-field-images img {
  5427. width: 100%;
  5428. height: auto;
  5429. }
  5430. .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 div .field--name-field-date-de-parution {
  5431. order: 6;
  5432. }
  5433. .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 div .field--name-field-date-de-parution .field__label {
  5434. display: none;
  5435. }
  5436. .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 div .field--name-field-mots-clefs {
  5437. order: 7;
  5438. display: flex;
  5439. margin-top: 0.8rem;
  5440. flex-direction: row;
  5441. flex-wrap: wrap;
  5442. }
  5443. .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 div .field--name-field-mots-clefs .field__label {
  5444. display: none;
  5445. }
  5446. .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 div .field--name-field-mots-clefs .field__items {
  5447. display: flex;
  5448. flex-direction: row;
  5449. flex-wrap: wrap;
  5450. }
  5451. .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 div .field--name-field-mots-clefs .field__item {
  5452. margin-right: 0.5rem;
  5453. padding-right: 0.3rem;
  5454. font-size: 0.8rem;
  5455. margin-top: 0.2rem;
  5456. }
  5457. .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 div .field--name-field-mots-clefs .field__item a {
  5458. background: rgb(9, 57, 139);
  5459. color: rgb(255, 255, 255);
  5460. font-weight: 800;
  5461. vertical-align: super;
  5462. padding-left: 0.1rem;
  5463. padding-right: 0.1rem;
  5464. display: inline-flex;
  5465. }
  5466. .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 div ul.links.inline {
  5467. display: none;
  5468. }
  5469. .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.type-les-projets-en-images .field--name-field-images {
  5470. order: 1;
  5471. width: 100%;
  5472. }
  5473. .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.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  5474. display: none;
  5475. }
  5476. .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.type-les-projets-en-images .field--name-field-images img {
  5477. width: 100%;
  5478. height: auto;
  5479. }
  5480. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  5481. width: 50%;
  5482. margin: auto;
  5483. display: flex;
  5484. flex-direction: row;
  5485. flex-wrap: wrap;
  5486. }
  5487. .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 {
  5488. display: none;
  5489. }
  5490. .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 {
  5491. display: flex;
  5492. flex-direction: row;
  5493. flex-wrap: wrap;
  5494. justify-content: space-between;
  5495. }
  5496. .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 {
  5497. display: none;
  5498. }
  5499. .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 {
  5500. display: flex;
  5501. flex-direction: column;
  5502. }
  5503. .path-incubateur {
  5504. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5505. background-repeat: no-repeat;
  5506. background-position-y: 7rem;
  5507. max-width: 100vw;
  5508. background-size: contain;
  5509. }
  5510. .path-incubateur .layout-container {
  5511. overflow: unset;
  5512. }
  5513. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  5514. width: fit-content;
  5515. }
  5516. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  5517. width: fit-content;
  5518. margin-left: 11%;
  5519. margin-top: 15vh;
  5520. color: rgb(255, 255, 255);
  5521. font-family: "Source Code Pro";
  5522. text-transform: uppercase;
  5523. font-size: 2rem;
  5524. font-weight: 800;
  5525. background: rgb(0, 158, 227);
  5526. margin-bottom: 15vh;
  5527. }
  5528. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5529. position: relative;
  5530. }
  5531. .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 {
  5532. display: flex;
  5533. justify-content: flex-end;
  5534. position: -webkit-sticky;
  5535. position: sticky;
  5536. top: 10rem;
  5537. }
  5538. @media (max-width: 810px) {
  5539. .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 {
  5540. display: none;
  5541. }
  5542. }
  5543. .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 {
  5544. display: flex;
  5545. flex-direction: row-reverse;
  5546. width: 50%;
  5547. background-color: rgb(255, 255, 255);
  5548. padding-right: 2rem;
  5549. }
  5550. .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 {
  5551. display: flex;
  5552. flex-direction: column;
  5553. font-size: 1rem;
  5554. font-weight: 1000;
  5555. color: rgb(9, 57, 139);
  5556. border-bottom: 1px solid rgb(0, 158, 227);
  5557. padding-bottom: 0.8rem;
  5558. padding-right: 1rem;
  5559. margin-top: 1rem;
  5560. scroll-margin-top: 7em;
  5561. }
  5562. .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 {
  5563. text-decoration: underline;
  5564. }
  5565. .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 {
  5566. padding-right: 2rem;
  5567. margin-top: 1rem;
  5568. background-color: rgb(255, 255, 255);
  5569. }
  5570. .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 {
  5571. font-size: 1.5rem;
  5572. font-weight: 1000;
  5573. font-family: "Source Code Pro", monospace;
  5574. color: rgb(9, 57, 139);
  5575. text-transform: uppercase;
  5576. margin-bottom: 0.8rem;
  5577. }
  5578. .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 {
  5579. margin-bottom: 2rem;
  5580. }
  5581. .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 {
  5582. margin-top: 1rem;
  5583. display: flex;
  5584. flex-direction: column;
  5585. width: 70%;
  5586. }
  5587. @media (max-width: 810px) {
  5588. .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 {
  5589. margin: auto;
  5590. }
  5591. }
  5592. .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 {
  5593. height: fit-content;
  5594. border: 2px solid rgb(0, 158, 227);
  5595. background-color: rgb(255, 255, 255);
  5596. margin-bottom: 1rem;
  5597. }
  5598. .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 {
  5599. min-height: 4rem;
  5600. background: rgb(255, 255, 255);
  5601. color: rgb(0, 158, 227);
  5602. padding-left: 0.8rem;
  5603. padding-top: 1rem;
  5604. }
  5605. .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) {
  5606. display: none;
  5607. }
  5608. .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 {
  5609. height: inherit;
  5610. margin: auto;
  5611. }
  5612. .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 {
  5613. content: url("../images/pictos/noun_Download_file_307900.svg");
  5614. min-width: 40px;
  5615. height: auto;
  5616. padding-right: 0.5rem;
  5617. display: inline-flex;
  5618. align-items: center;
  5619. }
  5620. .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 {
  5621. hyphens: auto;
  5622. display: inline-flex;
  5623. align-items: center;
  5624. color: rgb(0, 158, 227);
  5625. font-weight: 800;
  5626. }
  5627. .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 {
  5628. margin: auto;
  5629. height: fit-content;
  5630. border: 2px solid rgb(0, 158, 227);
  5631. min-height: 4rem;
  5632. background: rgb(255, 255, 255);
  5633. color: rgb(0, 158, 227);
  5634. padding-left: 0.8rem;
  5635. padding-top: 1rem;
  5636. margin-bottom: 1rem;
  5637. }
  5638. .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 {
  5639. display: inline-flex;
  5640. align-items: center;
  5641. justify-items: center;
  5642. color: rgb(0, 158, 227);
  5643. font-weight: 800;
  5644. }
  5645. .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 {
  5646. content: url("../images/pictos/external_link.png");
  5647. min-width: 40px;
  5648. height: auto;
  5649. padding-right: 0.5rem;
  5650. display: inline-flex;
  5651. align-items: center;
  5652. }
  5653. .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 {
  5654. display: none;
  5655. }
  5656. .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 {
  5657. padding-top: 1rem;
  5658. background-color: white;
  5659. }
  5660. .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 {
  5661. width: 80%;
  5662. margin: auto;
  5663. }
  5664. .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 {
  5665. margin-top: 4rem;
  5666. display: flex;
  5667. flex-direction: row;
  5668. }
  5669. @media (max-width: 479px) {
  5670. .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 {
  5671. flex-direction: column;
  5672. padding-bottom: 3rem;
  5673. }
  5674. }
  5675. .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 {
  5676. content: "Filtrer par :";
  5677. margin-right: 1rem;
  5678. }
  5679. @media (max-width: 479px) {
  5680. .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 {
  5681. padding-bottom: 1rem;
  5682. }
  5683. }
  5684. .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 {
  5685. display: flex;
  5686. flex-direction: row;
  5687. }
  5688. .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 {
  5689. display: none;
  5690. }
  5691. .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 .js-form-item-field-neuf-rehabilitation-value:first-of-type {
  5692. display: none;
  5693. }
  5694. @media (max-width: 479px) {
  5695. .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 {
  5696. padding-bottom: 1rem;
  5697. }
  5698. }
  5699. .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 {
  5700. display: none;
  5701. }
  5702. .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 .js-form-item-field-encours-fini-value:first-of-type {
  5703. display: none;
  5704. }
  5705. @media (max-width: 479px) {
  5706. .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 {
  5707. padding-bottom: 1rem;
  5708. }
  5709. }
  5710. .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 {
  5711. display: none;
  5712. }
  5713. @media (max-width: 479px) {
  5714. .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 {
  5715. padding-bottom: 1rem;
  5716. }
  5717. }
  5718. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio] {
  5719. display: none;
  5720. }
  5721. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio] + label::before {
  5722. content: "";
  5723. display: inline-block;
  5724. width: 15px;
  5725. height: 15px;
  5726. background: #fff;
  5727. border-radius: 0px;
  5728. border-color: black;
  5729. border-style: solid;
  5730. border-width: 1px;
  5731. margin-right: 0.5rem;
  5732. }
  5733. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio]:checked + label::before {
  5734. background: rgb(0, 158, 227);
  5735. }
  5736. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 label {
  5737. padding-right: 1rem;
  5738. }
  5739. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-submit-projets {
  5740. background-color: rgb(0, 158, 227);
  5741. color: white;
  5742. text-transform: uppercase;
  5743. border: none;
  5744. padding: 0.1rem 0.7rem;
  5745. margin-left: 2rem;
  5746. }
  5747. @media (max-width: 479px) {
  5748. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-submit-projets {
  5749. margin-left: 0rem;
  5750. margin-right: 2rem;
  5751. }
  5752. }
  5753. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-reset {
  5754. background-color: rgb(0, 158, 227);
  5755. color: white;
  5756. text-transform: uppercase;
  5757. border: none;
  5758. padding: 0.1rem 0.7rem;
  5759. margin-left: 1rem;
  5760. }
  5761. @media (max-width: 479px) {
  5762. .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 {
  5763. flex-direction: column;
  5764. }
  5765. }
  5766. .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 {
  5767. margin-top: 2rem;
  5768. display: flex;
  5769. flex-direction: row;
  5770. flex-wrap: wrap;
  5771. }
  5772. @media (max-width: 810px) {
  5773. .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 {
  5774. flex-direction: column;
  5775. }
  5776. }
  5777. .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 {
  5778. width: 25%;
  5779. }
  5780. @media (max-width: 810px) {
  5781. .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 {
  5782. width: 100%;
  5783. }
  5784. }
  5785. .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 {
  5786. color: rgb(9, 57, 139);
  5787. line-height: 1.5rem;
  5788. padding: 0.5rem;
  5789. padding-right: 1rem;
  5790. padding-left: 1rem;
  5791. }
  5792. @media (max-width: 479px) {
  5793. .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 {
  5794. padding-left: 0rem;
  5795. padding-right: 0rem;
  5796. padding-top: 2rem;
  5797. }
  5798. }
  5799. .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 {
  5800. display: flex;
  5801. flex-direction: column;
  5802. }
  5803. .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 {
  5804. color: rgb(9, 57, 139);
  5805. }
  5806. .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 {
  5807. order: 1;
  5808. }
  5809. .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 {
  5810. width: 100%;
  5811. max-height: 175px;
  5812. object-fit: cover;
  5813. }
  5814. .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 {
  5815. display: block;
  5816. 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>');
  5817. }
  5818. .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 {
  5819. order: 2;
  5820. display: flex;
  5821. text-transform: uppercase;
  5822. font-size: 0.9rem;
  5823. font-weight: 800;
  5824. margin-top: 0.8rem;
  5825. line-height: 0.6rem;
  5826. }
  5827. .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 {
  5828. display: flex;
  5829. flex-direction: row;
  5830. margin: 0;
  5831. }
  5832. .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 {
  5833. padding-top: 0 !important;
  5834. padding-bottom: 0 !important;
  5835. }
  5836. .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 {
  5837. content: ",";
  5838. margin-right: 0.3rem;
  5839. }
  5840. .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 {
  5841. padding-top: 0 !important;
  5842. padding-bottom: 0 !important;
  5843. }
  5844. .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 {
  5845. margin-top: 0.5rem;
  5846. font-size: 0.9rem;
  5847. font-weight: 800;
  5848. order: 4;
  5849. }
  5850. .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 {
  5851. order: 3;
  5852. margin-top: 0.5rem;
  5853. font-size: 0.9rem;
  5854. font-weight: 800;
  5855. }
  5856. .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 {
  5857. margin: 0;
  5858. }
  5859. .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 {
  5860. order: 4;
  5861. color: red;
  5862. margin-top: 0.8rem;
  5863. font-size: 0.7rem;
  5864. }
  5865. .node-id-201 {
  5866. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5867. background-repeat: no-repeat;
  5868. background-position-y: 7rem;
  5869. max-width: 100vw;
  5870. background-size: contain;
  5871. }
  5872. .node-id-201 #block-contenudelapageprincipale {
  5873. scroll-margin: 8rem;
  5874. }
  5875. .node-id-201 .layout__region--top {
  5876. padding-bottom: 3rem;
  5877. height: 30vh;
  5878. }
  5879. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5880. display: none;
  5881. height: inherit;
  5882. }
  5883. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  5884. font-family: "Source Code Pro";
  5885. font-size: 2rem;
  5886. font-weight: 800;
  5887. color: rgb(255, 255, 255);
  5888. background-color: rgb(0, 158, 227);
  5889. text-transform: uppercase;
  5890. }
  5891. .node-id-201 .layout__region--second {
  5892. width: 25%;
  5893. }
  5894. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  5895. background-color: rgb(255, 255, 255);
  5896. }
  5897. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  5898. font-size: 1.5rem;
  5899. font-weight: 1000;
  5900. font-family: "Source Code Pro";
  5901. color: rgb(9, 57, 139);
  5902. text-transform: uppercase;
  5903. }
  5904. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  5905. text-transform: none !important;
  5906. }
  5907. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  5908. padding-right: 2rem;
  5909. }
  5910. .path-ressources .layout-container {
  5911. overflow: hidden;
  5912. }
  5913. @media (max-width: 810px) {
  5914. .path-ressources .layout-container {
  5915. overflow: hidden;
  5916. }
  5917. }
  5918. .path-ressources .layout-content {
  5919. min-height: 100vh;
  5920. width: 100vw;
  5921. }
  5922. .path-ressources .layout-content .region-content {
  5923. width: 100%;
  5924. margin: auto;
  5925. }
  5926. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5927. font-size: 4em;
  5928. color: rgb(9, 57, 139);
  5929. font-weight: 400;
  5930. text-align: center;
  5931. margin-bottom: 1rem;
  5932. width: fit-content;
  5933. margin-left: 28%;
  5934. }
  5935. @media (max-width: 810px) {
  5936. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5937. margin-left: 2rem;
  5938. text-align: left;
  5939. line-height: 4rem;
  5940. }
  5941. }
  5942. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5943. display: flex;
  5944. flex-direction: column;
  5945. }
  5946. @media (max-width: 479px) {
  5947. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5948. display: flex;
  5949. flex-direction: column;
  5950. }
  5951. }
  5952. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5953. width: 60%;
  5954. margin: auto;
  5955. margin-left: 28%;
  5956. }
  5957. @media (max-width: 810px) {
  5958. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5959. margin-left: 2rem;
  5960. width: 85%;
  5961. }
  5962. }
  5963. @media (max-width: 479px) {
  5964. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5965. order: 1;
  5966. margin-left: 2rem;
  5967. }
  5968. }
  5969. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5970. grid-column: 1/span 5;
  5971. }
  5972. @media (max-width: 810px) {
  5973. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5974. padding-top: 1rem;
  5975. margin-top: 1rem;
  5976. }
  5977. }
  5978. @media (max-width: 479px) {
  5979. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5980. padding-left: 0;
  5981. padding-right: 0;
  5982. }
  5983. }
  5984. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full .field--name-field-introduction {
  5985. margin: auto;
  5986. background: rgb(255, 255, 255);
  5987. font-size: 1rem;
  5988. }
  5989. @media (max-width: 479px) {
  5990. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full .field--name-field-introduction {
  5991. margin-top: 1rem;
  5992. }
  5993. }
  5994. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5995. grid-column: 6/span 5;
  5996. grid-row: 1;
  5997. margin-top: 4rem;
  5998. background-color: rgb(0, 158, 227);
  5999. height: fit-content;
  6000. width: 100%;
  6001. }
  6002. @media (max-width: 810px) {
  6003. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6004. grid-column: 5/span 5;
  6005. }
  6006. }
  6007. @media (max-width: 479px) {
  6008. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6009. grid-column: 5/span 5;
  6010. order: 2;
  6011. }
  6012. }
  6013. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  6014. display: block;
  6015. }
  6016. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien {
  6017. display: flex;
  6018. flex-direction: column;
  6019. margin-top: 2rem;
  6020. margin-bottom: 2rem;
  6021. margin-left: 1.5rem;
  6022. margin-right: 1.5rem;
  6023. text-align: center;
  6024. }
  6025. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien a {
  6026. font-weight: 800;
  6027. color: rgb(255, 255, 255);
  6028. font-size: 1.3rem;
  6029. }
  6030. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien:after {
  6031. margin-left: auto;
  6032. padding-top: 1rem;
  6033. display: block;
  6034. content: url("../images/pictos/noun_Arrow_3771902.svg");
  6035. }
  6036. @media (max-width: 810px) {
  6037. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6038. margin: auto;
  6039. }
  6040. }
  6041. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  6042. margin-top: 2rem;
  6043. width: 100%;
  6044. }
  6045. @media (max-width: 479px) {
  6046. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  6047. order: 3;
  6048. }
  6049. }
  6050. @media (max-width: 810px) {
  6051. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees {
  6052. display: flex;
  6053. flex-direction: column;
  6054. }
  6055. }
  6056. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  6057. position: fixed;
  6058. top: 25rem;
  6059. left: 0;
  6060. background-color: rgb(255, 255, 255);
  6061. border: solid 0.2px rgba(0, 0, 0, 0.1);
  6062. margin-bottom: 5rem;
  6063. padding: 1rem;
  6064. padding-left: 2rem;
  6065. padding-right: 1.5rem;
  6066. z-index: 1;
  6067. transform: translateY(-210px);
  6068. margin-bottom: -210px;
  6069. width: 20%;
  6070. }
  6071. @media (max-width: 810px) {
  6072. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  6073. position: static;
  6074. margin-bottom: 2rem;
  6075. transform: none;
  6076. margin-bottom: 0px;
  6077. width: 80%;
  6078. }
  6079. }
  6080. @media (max-width: 479px) {
  6081. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  6082. margin-left: 0;
  6083. }
  6084. }
  6085. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources::before {
  6086. content: "Afficher : ";
  6087. padding-right: 1rem;
  6088. font-weight: 800;
  6089. font-size: 1rem;
  6090. margin-bottom: 1rem;
  6091. display: block;
  6092. width: 100%;
  6093. }
  6094. @media (max-width: 479px) {
  6095. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources::before {
  6096. padding-bottom: 1rem;
  6097. }
  6098. }
  6099. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button {
  6100. background-color: transparent;
  6101. border: 1px solid black;
  6102. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  6103. margin-bottom: 0.5rem;
  6104. margin-right: 0.5rem;
  6105. font-size: 0.8rem;
  6106. color: rgb(9, 57, 139);
  6107. display: inline-flex;
  6108. flex-direction: row;
  6109. align-items: center;
  6110. }
  6111. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button:hover {
  6112. cursor: grab;
  6113. background-color: rgb(9, 57, 139);
  6114. color: white;
  6115. }
  6116. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button :visited {
  6117. color: rgb(9, 57, 139);
  6118. }
  6119. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  6120. content: url("../images/pictos/videos.svg");
  6121. padding-right: 0.5rem;
  6122. display: block;
  6123. }
  6124. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos:hover::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  6125. content: url("../images/pictos/videos-blanc.svg");
  6126. display: block;
  6127. }
  6128. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts {
  6129. display: none !important;
  6130. }
  6131. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts::before {
  6132. content: url("../images/pictos/podcasts.svg");
  6133. padding-right: 0.5rem;
  6134. display: block;
  6135. }
  6136. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts:hover::before {
  6137. content: url("../images/pictos/podcasts-blanc.svg");
  6138. display: block;
  6139. }
  6140. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos::before {
  6141. content: url("../images/pictos/en-images.svg");
  6142. display: block;
  6143. padding-right: 0.5rem;
  6144. }
  6145. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos:hover::before {
  6146. content: url("../images/pictos/en-images-blanc.svg");
  6147. display: block;
  6148. }
  6149. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres::before {
  6150. content: url("../images/pictos/ecrits.svg");
  6151. padding-right: 0.5rem;
  6152. display: block;
  6153. }
  6154. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres:hover::before {
  6155. content: url("../images/pictos/ecrits-blanc.svg");
  6156. display: block;
  6157. }
  6158. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles::before {
  6159. content: url("../images/pictos/ecrits.svg");
  6160. padding-right: 0.5rem;
  6161. display: block;
  6162. }
  6163. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles:hover::before {
  6164. content: url("../images/pictos/ecrits-blanc.svg");
  6165. display: block;
  6166. }
  6167. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports::before {
  6168. content: url("../images/pictos/ecrits.svg");
  6169. padding-right: 0.5rem;
  6170. display: block;
  6171. }
  6172. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports:hover::before {
  6173. content: url("../images/pictos/ecrits-blanc.svg");
  6174. display: block;
  6175. }
  6176. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active {
  6177. background-color: rgb(9, 57, 139);
  6178. color: white;
  6179. }
  6180. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active a {
  6181. color: white;
  6182. }
  6183. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos {
  6184. margin-top: 1rem;
  6185. }
  6186. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before {
  6187. content: url("../images/pictos/videos-blanc.svg");
  6188. }
  6189. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-podcasts a::before {
  6190. content: url("../images/pictos/podcasts-blanc.svg");
  6191. }
  6192. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-images---photos a::before {
  6193. content: url("../images/pictos/en-images-blanc.svg");
  6194. }
  6195. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-livres a::before {
  6196. content: url("../images/pictos/ecrits-blanc.svg");
  6197. }
  6198. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-articles a::before {
  6199. content: url("../images/pictos/ecrits-blanc.svg");
  6200. }
  6201. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-publications---rapports a::before {
  6202. content: url("../images/pictos/ecrits-blanc.svg");
  6203. }
  6204. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  6205. content: "Filtrer par : ";
  6206. padding-right: 1rem;
  6207. font-weight: 800;
  6208. font-size: 1rem;
  6209. margin-bottom: 1rem;
  6210. }
  6211. @media (max-width: 479px) {
  6212. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  6213. padding-bottom: 1rem;
  6214. }
  6215. }
  6216. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-type-de-media-target-id {
  6217. display: none;
  6218. }
  6219. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item {
  6220. font-size: 0.8rem;
  6221. }
  6222. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine {
  6223. border-top: none;
  6224. border-left: none;
  6225. border-right: none;
  6226. font-size: 0.8rem;
  6227. justify-content: flex-start !important;
  6228. }
  6229. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine label {
  6230. display: none;
  6231. }
  6232. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper {
  6233. display: inline-flex;
  6234. position: relative;
  6235. font-size: 0.8rem;
  6236. width: -webkit-fill-available; /* Safari/Chrome */
  6237. width: -moz-available; /* Firefox */
  6238. width: fill-available; /* standard futur */
  6239. width: 100%; /* fallback */
  6240. max-width: 100%;
  6241. }
  6242. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper::after {
  6243. content: url("../images/pictos/loupe.svg");
  6244. display: inline-block;
  6245. }
  6246. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper input {
  6247. text-align: start !important;
  6248. max-width: 100% !important;
  6249. }
  6250. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input {
  6251. position: absolute;
  6252. right: -4px;
  6253. top: 50%;
  6254. transform: translateY(-50%);
  6255. background: white;
  6256. border: none;
  6257. padding: 0.5rem;
  6258. margin: 0;
  6259. cursor: pointer;
  6260. color: #888;
  6261. display: none; /* masqué par défaut */
  6262. }
  6263. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input:hover {
  6264. color: #000;
  6265. }
  6266. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-date-de-parution-value .clear-input {
  6267. display: none;
  6268. }
  6269. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form select {
  6270. font-size: 0.8rem;
  6271. }
  6272. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form select ::placeholder {
  6273. display: none;
  6274. }
  6275. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form input {
  6276. font-size: 0.8rem;
  6277. }
  6278. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered {
  6279. display: flex;
  6280. flex-direction: row;
  6281. flex-wrap: wrap;
  6282. }
  6283. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper {
  6284. flex-wrap: wrap;
  6285. width: 85%;
  6286. }
  6287. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper .views-row {
  6288. padding: 1rem;
  6289. width: 30% !important;
  6290. }
  6291. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content {
  6292. transition: opacity 0.3s ease;
  6293. display: flex;
  6294. flex-direction: row;
  6295. flex-wrap: wrap;
  6296. padding-left: 25%;
  6297. }
  6298. @media (max-width: 810px) {
  6299. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content {
  6300. padding-left: 0;
  6301. }
  6302. }
  6303. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .border {
  6304. width: 80%;
  6305. border-top: solid 1px rgba(0, 0, 0, 0.3);
  6306. }
  6307. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme {
  6308. order: 1;
  6309. }
  6310. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme::before {
  6311. background-color: rgba(0, 158, 227, 0.2);
  6312. }
  6313. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme .views-row {
  6314. width: 45%;
  6315. min-width: 350px !important;
  6316. max-width: 500px;
  6317. }
  6318. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-paroles-de-laureats {
  6319. order: 2;
  6320. }
  6321. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images {
  6322. order: 3;
  6323. }
  6324. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images .slick-list {
  6325. padding-left: 0 !important;
  6326. }
  6327. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images::before {
  6328. background-color: rgba(0, 158, 227, 0.2);
  6329. }
  6330. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse {
  6331. order: 5;
  6332. }
  6333. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse h3 {
  6334. border: none;
  6335. }
  6336. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-des-partenaires-et-laureats {
  6337. order: 4;
  6338. }
  6339. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-autres {
  6340. order: 9;
  6341. }
  6342. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .type-documentation-partenariale {
  6343. order: 6;
  6344. }
  6345. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-these-et-memoire {
  6346. order: 8;
  6347. }
  6348. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) {
  6349. width: 100%;
  6350. position: relative;
  6351. z-index: 0;
  6352. padding-bottom: 1rem;
  6353. }
  6354. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer)::before {
  6355. content: "";
  6356. position: absolute;
  6357. left: -35%;
  6358. height: 100%;
  6359. width: 110vw;
  6360. z-index: 0;
  6361. }
  6362. @media (max-width: 810px) {
  6363. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer)::before {
  6364. left: 0;
  6365. }
  6366. }
  6367. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) > * {
  6368. position: relative;
  6369. z-index: 1;
  6370. }
  6371. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6372. top: 1rem;
  6373. text-transform: uppercase;
  6374. font-family: "Source Code Pro";
  6375. color: rgb(9, 57, 139) !important;
  6376. display: flex;
  6377. flex-direction: row;
  6378. align-items: center;
  6379. font-size: 1.7rem;
  6380. margin-block: 0em;
  6381. }
  6382. @media (max-width: 810px) {
  6383. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6384. padding-left: 2rem;
  6385. width: 70%;
  6386. }
  6387. }
  6388. @media (max-width: 479px) {
  6389. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6390. width: 65% !important;
  6391. }
  6392. }
  6393. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme {
  6394. border: none;
  6395. }
  6396. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme:before {
  6397. content: url("../images/pictos/picto-ressource-eqld.svg");
  6398. padding-right: 1rem;
  6399. }
  6400. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-paroles-de-laureats:before {
  6401. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  6402. padding-right: 1rem;
  6403. }
  6404. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-les-projets-en-images {
  6405. width: 80%;
  6406. }
  6407. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-les-projets-en-images:before {
  6408. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  6409. padding-right: 1rem;
  6410. }
  6411. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-presse:before {
  6412. content: url("../images/pictos/picto-ressource-presse.svg");
  6413. padding-right: 1rem;
  6414. }
  6415. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6416. background-color: rgb(255, 255, 255);
  6417. border: 1px solid rgb(0, 158, 227);
  6418. list-style: none;
  6419. padding: 0.5rem;
  6420. position: relative;
  6421. left: 60vw;
  6422. top: -1.5rem;
  6423. text-transform: uppercase;
  6424. font-size: 0.7rem;
  6425. font-weight: 500;
  6426. color: rgb(0, 158, 227);
  6427. display: inline-flex;
  6428. align-items: center;
  6429. }
  6430. @media (max-width: 810px) {
  6431. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6432. left: 81vw;
  6433. }
  6434. }
  6435. @media (max-width: 479px) {
  6436. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6437. left: 76vw;
  6438. top: -1.5rem;
  6439. }
  6440. }
  6441. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  6442. display: flex;
  6443. flex-direction: row;
  6444. }
  6445. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-track {
  6446. width: 100% !important;
  6447. display: flex;
  6448. flex-direction: row;
  6449. transform: none;
  6450. }
  6451. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-track .views-row {
  6452. width: 20%;
  6453. min-width: 250px;
  6454. max-width: 500px;
  6455. }
  6456. @media (max-width: 810px) {
  6457. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  6458. padding-left: 0rem !important;
  6459. flex-direction: column;
  6460. }
  6461. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .views-row {
  6462. width: 100% !important;
  6463. }
  6464. }
  6465. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6466. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6467. display: inline-block;
  6468. transform: scale(0.5); /* Réduction à 50% */
  6469. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6470. }
  6471. @media (max-width: 810px) {
  6472. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6473. transform: scale(0.5); /* Réduction à 50% */
  6474. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6475. }
  6476. }
  6477. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  6478. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6479. display: block;
  6480. display: inline-block;
  6481. transform: scaleX(-1);
  6482. transform: scale(-0.5, 0.5);
  6483. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6484. }
  6485. @media (max-width: 810px) {
  6486. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  6487. transform: scale(-0.5, 0.5);
  6488. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6489. }
  6490. }
  6491. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before,
  6492. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6493. opacity: 1 !important;
  6494. }
  6495. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev.slick-disabled::before,
  6496. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next.slick-disabled::before {
  6497. opacity: 0.3 !important;
  6498. }
  6499. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev,
  6500. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6501. top: 94%;
  6502. }
  6503. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6504. right: 35vw;
  6505. }
  6506. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6507. left: 25vw;
  6508. }
  6509. @media (max-width: 1400px) {
  6510. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6511. left: 20vw;
  6512. }
  6513. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6514. right: 30vw;
  6515. }
  6516. }
  6517. @media (max-width: 810px) {
  6518. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6519. left: 15vw;
  6520. }
  6521. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6522. right: 35vw;
  6523. }
  6524. }
  6525. @media (max-width: 479px) {
  6526. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6527. left: 8vw;
  6528. }
  6529. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6530. right: 30vw;
  6531. }
  6532. }
  6533. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  6534. padding-left: 0 !important;
  6535. }
  6536. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  6537. padding-left: 8% !important;
  6538. padding-right: 8% !important;
  6539. }
  6540. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  6541. padding-right: 0;
  6542. }
  6543. footer {
  6544. z-index: 1;
  6545. }
  6546. .carousel {
  6547. display: none;
  6548. }
  6549. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6550. display: flex !important;
  6551. flex-direction: column;
  6552. margin-left: 11%;
  6553. }
  6554. @media screen and (min-width: 1100px) {
  6555. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6556. display: flex;
  6557. }
  6558. }
  6559. @media screen and (max-width: 810px) {
  6560. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6561. margin-left: 0;
  6562. }
  6563. }
  6564. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  6565. margin-left: 0;
  6566. }
  6567. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6568. margin-top: 5rem;
  6569. padding: 0;
  6570. order: 7;
  6571. width: 85%;
  6572. }
  6573. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6574. display: grid;
  6575. grid-template-columns: 10fr 1fr;
  6576. gap: 4rem;
  6577. justify-content: center;
  6578. margin: auto;
  6579. }
  6580. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6581. display: flex;
  6582. align-items: center;
  6583. position: relative;
  6584. width: 100%;
  6585. margin: 0 auto;
  6586. }
  6587. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  6588. flex: 1;
  6589. text-align: center;
  6590. }
  6591. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  6592. width: 100%;
  6593. height: auto;
  6594. object-fit: contain;
  6595. max-height: 550px;
  6596. border: none;
  6597. }
  6598. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  6599. margin-top: 1rem;
  6600. font-family: sans-serif;
  6601. text-align: center;
  6602. font-size: 1rem;
  6603. color: #444;
  6604. }
  6605. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  6606. font-size: 2rem;
  6607. color: #333;
  6608. background: none;
  6609. border-radius: 50%;
  6610. width: 40px;
  6611. height: 40px;
  6612. line-height: 40px;
  6613. text-align: center;
  6614. cursor: pointer;
  6615. user-select: none;
  6616. transition: background 0.3s ease;
  6617. }
  6618. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  6619. background: #bbb;
  6620. }
  6621. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  6622. margin-right: 10px;
  6623. }
  6624. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  6625. margin-left: 10px;
  6626. }
  6627. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  6628. margin-top: 10px;
  6629. font-family: sans-serif;
  6630. grid-column: 2;
  6631. grid-row: 2;
  6632. }
  6633. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  6634. grid-column: 2;
  6635. display: flex;
  6636. flex-direction: column;
  6637. align-items: center;
  6638. max-height: 60vh;
  6639. grid-row: 1/span 2;
  6640. top: 0px;
  6641. position: relative;
  6642. overflow: hidden;
  6643. }
  6644. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  6645. cursor: pointer;
  6646. padding: 5px 10px;
  6647. background: #00aaff;
  6648. color: white;
  6649. border-radius: 50%;
  6650. user-select: none;
  6651. z-index: 2;
  6652. position: relative;
  6653. }
  6654. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.up {
  6655. transform: rotate(90deg);
  6656. }
  6657. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.down {
  6658. transform: rotate(90deg);
  6659. }
  6660. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  6661. display: flex;
  6662. flex-direction: column;
  6663. gap: 6px;
  6664. overflow-y: auto;
  6665. max-height: 100%;
  6666. scroll-behavior: smooth;
  6667. position: relative;
  6668. z-index: 0;
  6669. }
  6670. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails::-webkit-scrollbar {
  6671. display: none;
  6672. }
  6673. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  6674. width: 80px;
  6675. height: 60px;
  6676. object-fit: contain;
  6677. border: 2px solid transparent;
  6678. cursor: pointer;
  6679. opacity: 0.3;
  6680. transition: transform 0.3s ease, opacity 0.3s ease;
  6681. }
  6682. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img.active {
  6683. transform: scale(1.3);
  6684. margin-top: 0.8rem;
  6685. margin-bottom: 0.8rem;
  6686. opacity: 1;
  6687. z-index: 1;
  6688. }
  6689. @media screen and (max-width: 810px) {
  6690. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6691. display: flex;
  6692. flex-direction: column;
  6693. gap: 2rem;
  6694. align-items: center;
  6695. width: 100vw;
  6696. }
  6697. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6698. width: 90%;
  6699. }
  6700. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6701. width: 100%;
  6702. display: flex !important;
  6703. flex-direction: row !important; /* 👈 corrige l'orientation */
  6704. justify-content: center;
  6705. align-items: center;
  6706. overflow-x: auto;
  6707. overflow-y: hidden;
  6708. max-height: none;
  6709. padding: 1rem 0;
  6710. position: relative;
  6711. }
  6712. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6713. display: flex !important;
  6714. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6715. gap: 0.8 rem !important;
  6716. overflow-x: auto;
  6717. overflow-y: hidden;
  6718. scroll-behavior: smooth;
  6719. padding: 0 1rem;
  6720. max-width: 100%;
  6721. flex-wrap: nowrap;
  6722. }
  6723. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6724. display: none;
  6725. }
  6726. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6727. width: 60px;
  6728. height: 45px;
  6729. flex-shrink: 0; /* évite l’écrasement */
  6730. }
  6731. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6732. display: none; /* inutile si scroll horizontal */
  6733. }
  6734. }
  6735. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6736. display: none;
  6737. }
  6738. @media screen and (max-width: 810px) {
  6739. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6740. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6741. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6742. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6743. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6744. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6745. margin-left: 7%;
  6746. }
  6747. }
  6748. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6749. transform: translateY(-45.5rem);
  6750. }
  6751. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6752. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6753. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6754. transform: translateY(-16rem);
  6755. }
  6756. .carousel {
  6757. display: none;
  6758. }
  6759. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6760. display: flex !important;
  6761. flex-direction: column;
  6762. margin-left: 11%;
  6763. width: 60%;
  6764. }
  6765. @media screen and (min-width: 1100px) {
  6766. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6767. display: flex;
  6768. }
  6769. }
  6770. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6771. margin-left: 0;
  6772. }
  6773. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6774. display: none;
  6775. }
  6776. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6777. order: 1;
  6778. }
  6779. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6780. order: 2;
  6781. }
  6782. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6783. order: 3;
  6784. }
  6785. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6786. order: 5;
  6787. }
  6788. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6789. order: 4;
  6790. }
  6791. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6792. order: 6;
  6793. }
  6794. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6795. order: 7;
  6796. margin-top: 2rem;
  6797. }
  6798. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6799. margin-top: 0rem;
  6800. }
  6801. /*partials*/
  6802. .layout-container {
  6803. position: relative;
  6804. width: 100vw;
  6805. }
  6806. .layout-container header {
  6807. position: fixed;
  6808. z-index: 99;
  6809. width: 100vw;
  6810. }
  6811. #header-top {
  6812. height: 7rem;
  6813. background-color: rgb(255, 255, 255);
  6814. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6815. display: flex;
  6816. flex-direction: row;
  6817. color: rgb(0, 0, 0);
  6818. top: 0%;
  6819. scroll-margin: 8rem;
  6820. }
  6821. @media (max-width: 810px) {
  6822. #header-top {
  6823. height: 5rem;
  6824. }
  6825. }
  6826. #header-top .region-header-top-left {
  6827. display: flex;
  6828. flex-direction: row;
  6829. padding-left: 4%;
  6830. align-items: center;
  6831. color: rgb(0, 0, 0);
  6832. flex: 1;
  6833. }
  6834. #header-top .region-header-top-left #block-logogouv {
  6835. display: flex;
  6836. height: 100%;
  6837. align-items: center;
  6838. }
  6839. @media (max-width: 810px) {
  6840. #header-top .region-header-top-left #block-logogouv .field--name-field-logo {
  6841. height: 100%;
  6842. }
  6843. }
  6844. #header-top .region-header-top-left #block-logogouv img {
  6845. width: auto;
  6846. height: 100%;
  6847. }
  6848. #header-top .region-header-top-left #block-eql-logoepau {
  6849. height: 100%;
  6850. align-content: center;
  6851. padding-left: 1rem;
  6852. }
  6853. #header-top .region-header-top-rigth {
  6854. display: flex;
  6855. flex-direction: row;
  6856. width: 40%;
  6857. align-items: center;
  6858. justify-content: flex-end;
  6859. }
  6860. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6861. text-transform: uppercase;
  6862. font-family: "Source Code Pro";
  6863. color: rgb(9, 57, 139) !important;
  6864. font-size: 1rem;
  6865. text-align: end;
  6866. width: 30%;
  6867. }
  6868. #header-top .region-header-top-rigth #block-eql-identitedusite :visited {
  6869. color: rgb(9, 57, 139) !important;
  6870. }
  6871. #header-top .region-header-top-rigth #block-eql-identitedusite :link {
  6872. color: rgb(9, 57, 139) !important;
  6873. }
  6874. @media (max-width: 883px) {
  6875. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6876. display: none;
  6877. }
  6878. }
  6879. #header-top .region-header-top-rigth #block-logoeql {
  6880. padding-left: 1rem;
  6881. padding-right: 2rem;
  6882. height: 100%;
  6883. align-items: center;
  6884. }
  6885. @media (max-width: 810px) {
  6886. #header-top .region-header-top-rigth #block-logoeql {
  6887. padding-right: 1rem;
  6888. }
  6889. }
  6890. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo {
  6891. height: 100%;
  6892. }
  6893. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a {
  6894. display: flex;
  6895. align-items: center;
  6896. height: 100%;
  6897. }
  6898. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a img {
  6899. width: auto;
  6900. height: 80%;
  6901. }
  6902. #header-top .region-header-top-rigth #block-burger {
  6903. z-index: 1;
  6904. background-color: rgb(0, 158, 227);
  6905. font-size: 0.7rem;
  6906. color: black;
  6907. display: block;
  6908. width: 7rem;
  6909. height: 100%;
  6910. margin-top: 0;
  6911. aspect-ratio: 1;
  6912. }
  6913. #header-top .region-header-top-rigth #block-burger :hover {
  6914. cursor: pointer;
  6915. }
  6916. @media (max-width: 810px) {
  6917. #header-top .region-header-top-rigth #block-burger {
  6918. width: 4rem;
  6919. }
  6920. }
  6921. #header-top .region-header-top-rigth #block-burger h2 {
  6922. padding-top: 1rem;
  6923. font-size: 1em;
  6924. font-weight: light;
  6925. color: rgb(0, 158, 227);
  6926. }
  6927. @media (max-width: 810px) {
  6928. #header-top .region-header-top-rigth #block-burger h2 {
  6929. padding-top: 0;
  6930. }
  6931. }
  6932. #header-top .region-header-top-rigth #block-burger h2:after {
  6933. display: block;
  6934. margin: auto;
  6935. height: 70px;
  6936. content: url('data:image/svg+xml,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 5,13 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/></svg>');
  6937. }
  6938. @media (max-width: 810px) {
  6939. #header-top .region-header-top-rigth #block-burger h2:after {
  6940. content: url('data:image/svg+xml,<svg width="40" height="50" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 5,13 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/></svg>');
  6941. }
  6942. }
  6943. #header-top .region-header-top-rigth #block-burger #block-burger-menu {
  6944. display: block;
  6945. margin: 0;
  6946. align-self: center;
  6947. text-align: center;
  6948. }
  6949. #header-top .region-header-top-rigth #block-burger .ul1:not(.sous-liste) {
  6950. width: 300%;
  6951. position: relative;
  6952. right: 260px;
  6953. margin: 0;
  6954. padding-top: 2rem;
  6955. padding-bottom: 2rem;
  6956. z-index: 99;
  6957. }
  6958. #header-top .region-header-top-rigth #block-burger ul {
  6959. display: none;
  6960. background-color: rgb(0, 158, 227);
  6961. line-height: 2rem;
  6962. list-style: none;
  6963. }
  6964. #header-top .region-header-top-rigth #block-burger ul .ul1 .sous-liste a {
  6965. opacity: 1;
  6966. }
  6967. #header-top .region-header-top-rigth #block-burger ul a {
  6968. opacity: 1;
  6969. color: rgb(255, 255, 255);
  6970. font-weight: 800;
  6971. font-size: 1rem;
  6972. }
  6973. #header-top .region-header-top-rigth #block-burger.opened ul {
  6974. display: block;
  6975. }
  6976. #header-top #block-socialnetwork-2 {
  6977. display: none;
  6978. position: relative;
  6979. top: -33px;
  6980. align-self: flex-end;
  6981. margin-left: auto;
  6982. }
  6983. #header-top #block-socialnetwork-2 .field--name-body {
  6984. min-height: 75px;
  6985. }
  6986. #header-top #block-socialnetwork-2 p {
  6987. display: flex;
  6988. flex-direction: row-reverse;
  6989. margin-bottom: 0;
  6990. min-height: 65px;
  6991. justify-content: space-around;
  6992. width: 140px;
  6993. }
  6994. #header-top #block-socialnetwork-2 p a {
  6995. color: rgb(255, 255, 255);
  6996. font-size: 0;
  6997. }
  6998. #header-top #block-socialnetwork-2 p svg.ext {
  6999. display: none;
  7000. }
  7001. #header-top #block-socialnetwork-2 p .link-twitter {
  7002. display: flex;
  7003. background-color: black;
  7004. width: 40px;
  7005. justify-content: center;
  7006. align-items: flex-end;
  7007. }
  7008. #header-top #block-socialnetwork-2 p .link-twitter:before {
  7009. content: url("../images/pictos/logo_x_blanc.svg");
  7010. min-width: 30px;
  7011. padding-bottom: 0.5rem;
  7012. }
  7013. #header-top #block-socialnetwork-2 p .link-youtube {
  7014. display: flex;
  7015. background-color: black;
  7016. min-width: 40px;
  7017. justify-content: center;
  7018. align-items: flex-end;
  7019. }
  7020. #header-top #block-socialnetwork-2 p .link-youtube:before {
  7021. content: url("../images/pictos/youtube_white.svg");
  7022. min-width: 25px;
  7023. padding-bottom: 0.5rem;
  7024. }
  7025. #header-top #block-socialnetwork-2 p .link-linkedin {
  7026. display: flex;
  7027. background-color: black;
  7028. min-width: 40px;
  7029. justify-content: center;
  7030. align-items: flex-end;
  7031. }
  7032. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  7033. content: url("../images/pictos/linkedin_white.svg");
  7034. min-width: 35px;
  7035. padding-bottom: 0.2rem;
  7036. }
  7037. .region-header-bottom {
  7038. box-shadow: 0 4px 4px 3px rgba(0, 0, 0, 0.1);
  7039. }
  7040. .region-header-bottom #block-headermenu {
  7041. align-self: baseline;
  7042. width: 100%;
  7043. background-color: white;
  7044. border-top: solid rgb(0, 158, 227) 1px;
  7045. }
  7046. .region-header-bottom ul {
  7047. font-size: 1rem;
  7048. font-weight: 900;
  7049. list-style: none;
  7050. display: flex;
  7051. flex-direction: row;
  7052. justify-content: space-evenly;
  7053. width: 100%;
  7054. padding-inline-start: 0px;
  7055. padding: 1rem;
  7056. margin-top: 0 !important;
  7057. padding-bottom: 0.5rem;
  7058. }
  7059. .region-header-bottom ul .is-active {
  7060. color: rgb(0, 158, 227);
  7061. }
  7062. .region-header-bottom ul ul {
  7063. position: absolute;
  7064. left: -28%;
  7065. z-index: 1000;
  7066. display: flex;
  7067. flex-direction: column;
  7068. min-width: 210px;
  7069. width: fit-content;
  7070. justify-content: space-between;
  7071. padding-inline-start: 0px;
  7072. }
  7073. .region-header-bottom ul ul .is-active {
  7074. color: rgb(0, 158, 227);
  7075. }
  7076. .region-header-bottom ul ul {
  7077. opacity: 0;
  7078. visibility: hidden;
  7079. transform: translateY(-10px);
  7080. transition: opacity 0.3s ease, transform 0.3s ease;
  7081. }
  7082. .region-header-bottom ul li {
  7083. position: relative;
  7084. display: flex;
  7085. flex-direction: column;
  7086. background-color: rgb(255, 255, 255);
  7087. padding-bottom: 0.8rem;
  7088. max-width: inherit;
  7089. padding-left: 1rem;
  7090. padding-right: 0.5rem;
  7091. height: fit-content;
  7092. }
  7093. .region-header-bottom ul li a {
  7094. color: rgb(0, 0, 0);
  7095. }
  7096. .region-header-bottom ul li .is-active {
  7097. color: rgb(0, 158, 227);
  7098. }
  7099. .region-header-bottom ul li :hover {
  7100. color: rgb(0, 158, 227);
  7101. }
  7102. .region-header-bottom ul li:hover ul {
  7103. opacity: 1;
  7104. visibility: visible;
  7105. transform: translateY(0);
  7106. }
  7107. .region-header-bottom ul .ul1.sous-liste.ul2 {
  7108. padding-left: 1rem;
  7109. }
  7110. #fotter-bottom {
  7111. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  7112. display: flex;
  7113. flex: 1 1 120px;
  7114. flex-direction: row;
  7115. background-color: rgb(255, 255, 255);
  7116. padding-top: 3rem;
  7117. }
  7118. @media (max-width: 810px) {
  7119. #fotter-bottom {
  7120. flex-direction: column;
  7121. padding-right: 1rem;
  7122. }
  7123. }
  7124. #fotter-bottom .region {
  7125. display: block;
  7126. padding-left: 2rem;
  7127. padding-right: 1rem;
  7128. padding-bottom: 1rem;
  7129. border-left: rgb(0, 158, 227) solid 1px;
  7130. }
  7131. #fotter-bottom .region h2 {
  7132. margin-top: 0;
  7133. color: rgb(9, 57, 139);
  7134. font-size: 1.2rem;
  7135. }
  7136. #fotter-bottom .region-footer-bottom-left {
  7137. margin-left: 3rem;
  7138. border: none;
  7139. }
  7140. @media (max-width: 810px) {
  7141. #fotter-bottom .region-footer-bottom-left {
  7142. width: 100%;
  7143. margin-left: 0rem;
  7144. }
  7145. }
  7146. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  7147. display: flex;
  7148. flex-direction: row;
  7149. justify-content: flex-start;
  7150. flex-wrap: wrap;
  7151. padding-top: 1rem;
  7152. }
  7153. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  7154. padding-right: 1rem;
  7155. padding-bottom: 1rem;
  7156. }
  7157. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  7158. width: auto;
  7159. height: 30px;
  7160. }
  7161. #fotter-bottom .region-footer-bottom-right {
  7162. display: flex;
  7163. flex-direction: column-reverse;
  7164. justify-content: flex-end;
  7165. }
  7166. @media (max-width: 810px) {
  7167. #fotter-bottom .region-footer-bottom-right {
  7168. width: 100%;
  7169. }
  7170. }
  7171. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  7172. margin-bottom: 1rem;
  7173. }
  7174. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  7175. margin-top: 0;
  7176. display: flex;
  7177. flex-direction: row-reverse;
  7178. justify-content: flex-end;
  7179. }
  7180. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  7181. color: rgb(255, 255, 255);
  7182. font-size: 0;
  7183. padding-left: 1rem;
  7184. }
  7185. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a.link-linkedin {
  7186. padding-left: 0;
  7187. }
  7188. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  7189. display: none;
  7190. }
  7191. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  7192. display: none;
  7193. }
  7194. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  7195. content: url("../images/pictos/logo_x_rond.png");
  7196. min-width: 50px;
  7197. align-self: center;
  7198. }
  7199. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  7200. display: flex;
  7201. }
  7202. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  7203. content: url("../images/pictos/youtube_rond.svg");
  7204. min-width: 50px;
  7205. }
  7206. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  7207. display: flex;
  7208. }
  7209. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  7210. content: url("../images/pictos/linkedin_rond.svg");
  7211. min-width: 50px;
  7212. }
  7213. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  7214. margin-top: 0;
  7215. color: rgb(9, 57, 139);
  7216. font-weight: 800;
  7217. list-style: none;
  7218. padding-left: 0;
  7219. }
  7220. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  7221. color: rgb(9, 57, 139);
  7222. font-size: 1.2rem;
  7223. text-decoration: underline;
  7224. margin-top: 0;
  7225. }
  7226. #fotter-bottom .region-footer-bottom-middle {
  7227. width: 60%;
  7228. }
  7229. @media (max-width: 810px) {
  7230. #fotter-bottom .region-footer-bottom-middle {
  7231. width: 100%;
  7232. }
  7233. }
  7234. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  7235. display: flex;
  7236. flex-direction: row;
  7237. justify-content: flex-start;
  7238. flex-wrap: wrap;
  7239. }
  7240. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  7241. padding-right: 1rem;
  7242. padding-bottom: 1rem;
  7243. }
  7244. .slick-prev {
  7245. color: rgb(0, 158, 227);
  7246. left: 25px;
  7247. }
  7248. .path-frontpage .slick-dots {
  7249. bottom: -40px !important;
  7250. }
  7251. .path-frontpage .slick-prev::before,
  7252. .path-frontpage .slick-next::before {
  7253. opacity: 1;
  7254. }
  7255. /* Slider */
  7256. .slick-slider {
  7257. position: relative;
  7258. display: block;
  7259. box-sizing: border-box;
  7260. -webkit-touch-callout: none;
  7261. -webkit-user-select: none;
  7262. -khtml-user-select: none;
  7263. -moz-user-select: none;
  7264. -ms-user-select: none;
  7265. user-select: none;
  7266. -ms-touch-action: pan-y;
  7267. touch-action: pan-y;
  7268. -webkit-tap-highlight-color: transparent;
  7269. }
  7270. .slick-list {
  7271. position: relative;
  7272. overflow: hidden;
  7273. display: block;
  7274. margin: 0;
  7275. padding: 0;
  7276. }
  7277. .slick-list:focus {
  7278. outline: none;
  7279. }
  7280. .slick-list.dragging {
  7281. cursor: pointer;
  7282. cursor: hand;
  7283. }
  7284. .slick-slider .slick-track,
  7285. .slick-slider .slick-list {
  7286. -webkit-transform: translate3d(0, 0, 0);
  7287. -moz-transform: translate3d(0, 0, 0);
  7288. -ms-transform: translate3d(0, 0, 0);
  7289. -o-transform: translate3d(0, 0, 0);
  7290. transform: translate3d(0, 0, 0);
  7291. }
  7292. .slick-track {
  7293. position: relative;
  7294. left: 0;
  7295. top: 0;
  7296. display: block;
  7297. margin-left: auto;
  7298. margin-right: auto;
  7299. }
  7300. .slick-track:before, .slick-track:after {
  7301. content: "";
  7302. display: table;
  7303. }
  7304. .slick-track:after {
  7305. clear: both;
  7306. }
  7307. .slick-loading .slick-track {
  7308. visibility: hidden;
  7309. }
  7310. .slick-slide {
  7311. float: left;
  7312. height: 100%;
  7313. min-height: 1px;
  7314. }
  7315. [dir=rtl] .slick-slide {
  7316. float: right;
  7317. }
  7318. .slick-slide img {
  7319. display: block;
  7320. }
  7321. .slick-slide.slick-loading img {
  7322. display: none;
  7323. }
  7324. .slick-slide {
  7325. display: none;
  7326. }
  7327. .slick-slide.dragging img {
  7328. pointer-events: none;
  7329. }
  7330. .slick-initialized .slick-slide {
  7331. display: block;
  7332. }
  7333. .slick-loading .slick-slide {
  7334. visibility: hidden;
  7335. }
  7336. .slick-vertical .slick-slide {
  7337. display: block;
  7338. height: auto;
  7339. border: 1px solid transparent;
  7340. }
  7341. .slick-arrow.slick-hidden {
  7342. display: none;
  7343. }
  7344. /* Slider */
  7345. .slick-loading .slick-list {
  7346. background: #fff url("./ajax-loader.gif") center center no-repeat;
  7347. }
  7348. /* Icons */
  7349. /* Arrows */
  7350. .slick-prev,
  7351. .slick-next {
  7352. position: absolute;
  7353. display: block;
  7354. height: 60px;
  7355. width: 60px;
  7356. line-height: 0px;
  7357. font-size: 0px;
  7358. cursor: pointer;
  7359. background: transparent;
  7360. color: transparent;
  7361. top: 50%;
  7362. -webkit-transform: translate(0, -50%);
  7363. -ms-transform: translate(0, -50%);
  7364. transform: translate(0, -50%);
  7365. padding: 0;
  7366. border: none;
  7367. outline: none;
  7368. }
  7369. .slick-prev:hover,
  7370. .slick-next:hover {
  7371. outline: none;
  7372. background: transparent;
  7373. color: transparent;
  7374. }
  7375. .slick-prev:hover:before,
  7376. .slick-next:hover:before {
  7377. opacity: 0.2;
  7378. }
  7379. .slick-prev.slick-disabled:before,
  7380. .slick-next.slick-disabled:before {
  7381. opacity: 0;
  7382. }
  7383. .slick-prev:before,
  7384. .slick-next:before {
  7385. font-family: "marianne";
  7386. font-size: 60px;
  7387. line-height: 1;
  7388. color: rgb(0, 158, 227);
  7389. opacity: 0;
  7390. -webkit-font-smoothing: antialiased;
  7391. -moz-osx-font-smoothing: grayscale;
  7392. }
  7393. .slick-prev {
  7394. z-index: 1;
  7395. left: 25px;
  7396. }
  7397. [dir=rtl] .slick-prev {
  7398. left: auto;
  7399. right: 25px;
  7400. }
  7401. .slick-prev:before {
  7402. content: "←";
  7403. }
  7404. [dir=rtl] .slick-prev:before {
  7405. content: "→";
  7406. }
  7407. .slick-next {
  7408. right: 25px;
  7409. }
  7410. [dir=rtl] .slick-next {
  7411. left: 25px;
  7412. right: auto;
  7413. }
  7414. .slick-next:before {
  7415. content: "→";
  7416. }
  7417. [dir=rtl] .slick-next:before {
  7418. content: "←";
  7419. }
  7420. /* Dots */
  7421. .slick-dotted.slick-slider {
  7422. margin-bottom: 30px;
  7423. }
  7424. html.js body.node-type-actualite.node-id-88.path-node.page-node-type-actualite div.dialog-off-canvas-main-canvas div.layout-container main div.layout-content div.region.region-content div#block-contenudelapageprincipale.block.block-system.block-system-main-block div.layout.layout--threecol-25-50-25 div.layout__region.layout__region--top div.block-region-top div.block.block-ctools-block.block-entity-fieldnodefield-images div.field.field--name-field-images.field--type-image.field--label-hidden.field__items.slick-initialized.slick-slider.slick-dotted ul.slick-dots {
  7425. width: 600px;
  7426. }
  7427. .slick-dots {
  7428. list-style: none;
  7429. display: block;
  7430. text-align: center;
  7431. padding: 0;
  7432. margin: 0;
  7433. width: 100%;
  7434. }
  7435. .slick-dots li {
  7436. position: relative;
  7437. display: inline-block;
  7438. height: 20px;
  7439. width: 20px;
  7440. margin: 0 5px;
  7441. padding: 0;
  7442. cursor: pointer;
  7443. }
  7444. .slick-dots li button {
  7445. border: 0;
  7446. background: transparent;
  7447. display: block;
  7448. height: 20px;
  7449. width: 20px;
  7450. outline: none;
  7451. line-height: 0px;
  7452. font-size: 0px;
  7453. color: transparent;
  7454. padding: 5px;
  7455. cursor: pointer;
  7456. }
  7457. .slick-dots li button:hover, .slick-dots li button:focus {
  7458. outline: none;
  7459. }
  7460. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  7461. opacity: 0.2;
  7462. }
  7463. .slick-dots li button:before {
  7464. position: absolute;
  7465. top: 0;
  7466. left: 0;
  7467. content: "•";
  7468. width: 20px;
  7469. height: 20px;
  7470. font-family: "marianne";
  7471. font-size: 50px;
  7472. line-height: 20px;
  7473. text-align: center;
  7474. color: black;
  7475. opacity: 0.2;
  7476. -webkit-font-smoothing: antialiased;
  7477. -moz-osx-font-smoothing: grayscale;
  7478. }
  7479. .slick-dots li.slick-active button:before {
  7480. color: black;
  7481. opacity: 0.5;
  7482. }
  7483. #views-exposed-form-projets-block-1 {
  7484. flex-direction: row;
  7485. position: relative;
  7486. align-items: center;
  7487. }
  7488. @media (max-width: 810px) {
  7489. #views-exposed-form-projets-block-1 select {
  7490. max-width: 58%;
  7491. }
  7492. }
  7493. #views-exposed-form-base-de-donnees-block-1 {
  7494. flex-direction: column;
  7495. margin-top: 1rem;
  7496. }
  7497. @media (max-width: 479px) {
  7498. #views-exposed-form-base-de-donnees-block-1 {
  7499. justify-content: center;
  7500. }
  7501. }
  7502. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  7503. margin-right: 0 !important;
  7504. margin-bottom: 0.5rem !important;
  7505. padding: 0.2rem !important;
  7506. }
  7507. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7508. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  7509. width: 100%;
  7510. text-align: end;
  7511. }
  7512. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  7513. padding-right: 0.5rem !important;
  7514. flex: 2 0 auto !important;
  7515. }
  7516. #views-exposed-form-base-de-donnees-block-1,
  7517. #views-exposed-form-projets-block-1 {
  7518. display: flex;
  7519. flex-wrap: wrap;
  7520. }
  7521. @media (max-width: 810px) {
  7522. #views-exposed-form-base-de-donnees-block-1,
  7523. #views-exposed-form-projets-block-1 {
  7524. font-size: 0.8rem;
  7525. }
  7526. }
  7527. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7528. #views-exposed-form-projets-block-1 .js-form-item {
  7529. display: flex;
  7530. flex-direction: row;
  7531. max-width: 100%;
  7532. margin-right: 1rem;
  7533. margin-bottom: 1rem;
  7534. padding: 0.5rem 1rem;
  7535. align-items: baseline;
  7536. border: solid black 0.5px;
  7537. justify-content: space-evenly;
  7538. }
  7539. @media (max-width: 810px) {
  7540. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7541. #views-exposed-form-projets-block-1 .js-form-item {
  7542. display: flex;
  7543. flex-direction: row;
  7544. justify-content: space-between;
  7545. max-width: 85%;
  7546. }
  7547. }
  7548. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7549. #views-exposed-form-projets-block-1 .js-form-item label {
  7550. flex: 2 1 auto;
  7551. padding-right: 2rem;
  7552. }
  7553. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  7554. #views-exposed-form-projets-block-1 .js-form-item label::after {
  7555. content: " : ";
  7556. }
  7557. @media (max-width: 810px) {
  7558. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7559. #views-exposed-form-projets-block-1 .js-form-item label {
  7560. padding-right: 1rem;
  7561. }
  7562. }
  7563. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7564. #views-exposed-form-projets-block-1 .js-form-item input {
  7565. flex: 2 1 auto;
  7566. max-width: 55%;
  7567. }
  7568. @media (max-width: 810px) {
  7569. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7570. #views-exposed-form-projets-block-1 .js-form-item input {
  7571. max-width: 100%;
  7572. }
  7573. }
  7574. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  7575. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox {
  7576. margin-right: 1rem;
  7577. }
  7578. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  7579. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper {
  7580. margin: 0;
  7581. }
  7582. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  7583. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after {
  7584. content: none;
  7585. }
  7586. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  7587. #views-exposed-form-projets-block-1 .form-actions input {
  7588. color: white;
  7589. font-weight: 600;
  7590. text-transform: uppercase;
  7591. padding: 0.3rem 0.7rem;
  7592. background-color: rgb(0, 158, 227);
  7593. border: none;
  7594. }
  7595. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7596. #views-exposed-form-projets-block-1 input,
  7597. #views-exposed-form-projets-block-1 select {
  7598. border: none;
  7599. background-color: transparent;
  7600. font-family: "Marianne";
  7601. font-size: 1rem;
  7602. }
  7603. @media (max-width: 810px) {
  7604. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7605. #views-exposed-form-projets-block-1 input,
  7606. #views-exposed-form-projets-block-1 select {
  7607. font-size: 0.8rem;
  7608. }
  7609. }
  7610. article.node-type-ressource {
  7611. margin-bottom: 1rem;
  7612. padding-right: 1rem;
  7613. }
  7614. article.node-type-ressource h2 {
  7615. text-align: left !important;
  7616. }
  7617. article.node-type-ressource .ext {
  7618. color: black;
  7619. }
  7620. article.node-type-ressource svg.ext {
  7621. display: none;
  7622. }
  7623. article.node-type-ressource :visited {
  7624. color: black;
  7625. }
  7626. article.node-type-ressource a {
  7627. color: black;
  7628. }
  7629. article.node-type-ressource .wrapper-ressource {
  7630. display: flex;
  7631. flex-direction: column;
  7632. }
  7633. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  7634. order: 2;
  7635. }
  7636. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7637. order: 1;
  7638. }
  7639. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  7640. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7641. grid-column: 1;
  7642. text-transform: uppercase;
  7643. line-height: 1.1rem;
  7644. margin-top: 0.5rem;
  7645. }
  7646. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  7647. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  7648. color: rgb(0, 158, 227);
  7649. font-weight: 900;
  7650. font-size: 0.8rem;
  7651. pointer-events: none;
  7652. cursor: default;
  7653. }
  7654. article.node-type-ressource .wrapper-ressource .field--name-title {
  7655. grid-column: 2;
  7656. margin-top: 0.5rem;
  7657. order: 4;
  7658. margin-bottom: 0;
  7659. }
  7660. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7661. margin: 0;
  7662. line-height: 1rem;
  7663. margin-left: 0 !important;
  7664. line-height: 0;
  7665. margin-bottom: 0 !important;
  7666. }
  7667. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  7668. color: rgb(0, 0, 0);
  7669. font-size: 0.9rem;
  7670. font-weight: 900;
  7671. font-style: normal;
  7672. }
  7673. @media (max-width: 810px) {
  7674. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7675. line-height: 0 !important;
  7676. }
  7677. }
  7678. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  7679. grid-column: 2;
  7680. margin-top: 0.5rem;
  7681. font-weight: 800;
  7682. line-height: 1.1rem;
  7683. order: 6 !important;
  7684. font-size: 0.8rem;
  7685. }
  7686. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  7687. margin: 0;
  7688. }
  7689. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  7690. display: none;
  7691. }
  7692. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  7693. grid-column: 2;
  7694. margin-top: 0.8rem;
  7695. order: 5;
  7696. font-size: 0.9rem;
  7697. font-weight: 900;
  7698. line-height: 1.5;
  7699. }
  7700. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  7701. order: 7;
  7702. grid-column: 2;
  7703. margin-top: 0.5rem;
  7704. font-size: 0.8rem;
  7705. }
  7706. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  7707. margin: 0;
  7708. }
  7709. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  7710. display: none;
  7711. }
  7712. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  7713. order: 3;
  7714. grid-column: 1;
  7715. }
  7716. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  7717. height: 100px;
  7718. }
  7719. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  7720. height: 100%;
  7721. width: auto;
  7722. border: solid 1px gray;
  7723. }
  7724. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  7725. grid-column: 2;
  7726. margin-top: 0.3rem;
  7727. order: 8;
  7728. font-size: 0.8rem;
  7729. }
  7730. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  7731. order: 9;
  7732. grid-column: 2;
  7733. display: flex;
  7734. margin-top: 0.5rem;
  7735. flex-direction: row;
  7736. flex-wrap: wrap;
  7737. }
  7738. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  7739. margin-right: 0.5rem;
  7740. padding-right: 0.3rem;
  7741. font-size: 0.7rem;
  7742. }
  7743. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  7744. background: rgb(9, 57, 139);
  7745. color: rgb(255, 255, 255);
  7746. font-weight: 800;
  7747. vertical-align: super;
  7748. padding-left: 0.1rem;
  7749. padding-right: 0.1rem;
  7750. display: inline-flex;
  7751. pointer-events: none;
  7752. cursor: default;
  7753. }
  7754. article.node-type-ressource .wrapper-ressource ul.links.inline {
  7755. display: none;
  7756. }
  7757. article.node-type-ressource.type-publications-issues-du-programme {
  7758. min-width: 300px;
  7759. }
  7760. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  7761. display: grid;
  7762. grid-template-columns: 1fr 1.8fr;
  7763. grid-template-rows: repeat(5 1fr);
  7764. }
  7765. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  7766. order: 2;
  7767. grid-row: 2;
  7768. grid-column: 1/span 2;
  7769. margin-bottom: 0.5rem;
  7770. }
  7771. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  7772. order: 1;
  7773. grid-row: 1;
  7774. grid-column: 1/span 2;
  7775. }
  7776. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  7777. order: 3;
  7778. grid-row: 3/span 5;
  7779. height: auto;
  7780. width: 90%;
  7781. }
  7782. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  7783. height: auto;
  7784. width: 90%;
  7785. border: 1px solid #a3a3a3;
  7786. }
  7787. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  7788. grid-row: 3;
  7789. margin-top: 0;
  7790. padding-bottom: 0.8rem;
  7791. }
  7792. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  7793. margin-left: 0 !important;
  7794. line-height: 0;
  7795. }
  7796. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  7797. color: rgb(0, 158, 227);
  7798. font-size: 1.3rem;
  7799. font-style: normal;
  7800. }
  7801. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  7802. margin-top: 0;
  7803. line-height: 1;
  7804. grid-row: 4;
  7805. }
  7806. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  7807. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  7808. grid-row: 4;
  7809. color: rgb(0, 158, 227);
  7810. font-size: 1rem;
  7811. font-weight: 800;
  7812. }
  7813. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  7814. grid-row: 6;
  7815. line-height: 1.1;
  7816. }
  7817. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  7818. grid-row: 7;
  7819. }
  7820. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  7821. grid-row: 8;
  7822. margin-top: 0.5rem;
  7823. left: -0.2rem;
  7824. position: relative;
  7825. }
  7826. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  7827. order: 2;
  7828. }
  7829. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  7830. order: 1;
  7831. }
  7832. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  7833. order: 3;
  7834. }
  7835. @media (max-width: 479px) {
  7836. article.node-type-ressource {
  7837. margin-left: 0;
  7838. }
  7839. }
  7840. article.node-type-ressource.type-presse .field--name-field-images {
  7841. display: none;
  7842. }
  7843. .type-les-projets-en-images.views-row {
  7844. width: 50% !important;
  7845. min-width: 550px !important;
  7846. max-width: 0 !important;
  7847. }
  7848. @media (max-width: 479px) {
  7849. .type-les-projets-en-images.views-row {
  7850. min-width: 100% !important;
  7851. }
  7852. }
  7853. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7854. display: grid;
  7855. grid-template-columns: 2fr 1fr !important;
  7856. width: 100%;
  7857. max-width: 100%;
  7858. column-gap: 1rem;
  7859. align-items: start;
  7860. }
  7861. @media (max-width: 479px) {
  7862. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7863. display: flex;
  7864. flex-direction: column;
  7865. padding-left: 1rem !important;
  7866. }
  7867. }
  7868. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  7869. grid-column: 1;
  7870. grid-row: 3/span 8;
  7871. width: 100%;
  7872. }
  7873. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  7874. width: 100%;
  7875. height: auto;
  7876. margin-top: 1rem;
  7877. object-fit: cover;
  7878. border: 1px solid #ccc;
  7879. }
  7880. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7881. height: fit-content;
  7882. }
  7883. @media (max-width: 479px) {
  7884. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7885. height: auto;
  7886. }
  7887. }
  7888. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  7889. grid-column: 1/span 2;
  7890. grid-row: 2;
  7891. }
  7892. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  7893. grid-column: 1/span 2;
  7894. grid-row: 1;
  7895. }
  7896. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  7897. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  7898. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  7899. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  7900. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  7901. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7902. grid-column: 2;
  7903. width: 100%;
  7904. box-sizing: border-box;
  7905. padding: 0;
  7906. margin: 0;
  7907. }
  7908. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  7909. grid-row: 3;
  7910. margin-bottom: 0.5rem;
  7911. }
  7912. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  7913. grid-row: 4;
  7914. }
  7915. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  7916. grid-row: 5;
  7917. }
  7918. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  7919. grid-row: 6;
  7920. line-height: 1;
  7921. }
  7922. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  7923. grid-row: 7;
  7924. }
  7925. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7926. grid-row: 8;
  7927. }
  7928. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource h2, .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource p {
  7929. margin: 0;
  7930. padding: 0;
  7931. }