bundle.css 332 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863
  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. .layout-container {
  570. display: block;
  571. }
  572. .path-projets-complets .layout-content {
  573. width: 80vw;
  574. }
  575. .path-projets-complets .layout-content .views-row {
  576. margin-top: 3rem;
  577. break-after: page;
  578. page-break-after: always;
  579. }
  580. .path-projets-complets .layout-content .views-row .projet-header-print {
  581. padding-top: 3rem;
  582. }
  583. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title {
  584. font-size: 1.5rem;
  585. }
  586. .path-projets-complets .layout-content .views-row .projet-body-print {
  587. padding-top: 3rem;
  588. }
  589. .path-projets-complets .views-row {
  590. page-break-before: always;
  591. break-before: page;
  592. }
  593. .path-projets-complets .views-row:first-child {
  594. page-break-before: auto;
  595. break-before: auto;
  596. }
  597. .path-projets-complets .projet-header-print {
  598. page-break-after: always;
  599. break-after: page;
  600. }
  601. }
  602. /*pages*/
  603. /*
  604. @import "pages/partials/header_footer";
  605. @import "pages/home";
  606. */
  607. .path-node.page-node-type-static .layout-container {
  608. overflow: unset;
  609. }
  610. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  611. padding-bottom: 3rem;
  612. height: 30vh;
  613. }
  614. @media (max-width: 810px) {
  615. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  616. padding-bottom: 0rem;
  617. }
  618. }
  619. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  620. width: fit-content;
  621. margin-left: 11%;
  622. margin-top: 15vh;
  623. }
  624. @media (max-width: 810px) {
  625. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  626. margin-left: 8%;
  627. margin-right: 5%;
  628. }
  629. }
  630. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  631. display: inline;
  632. font-family: "Source Code Pro";
  633. font-size: 2rem;
  634. font-weight: 800;
  635. text-transform: uppercase;
  636. }
  637. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  638. position: relative;
  639. }
  640. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  641. display: flex;
  642. justify-content: flex-end;
  643. position: -webkit-sticky;
  644. position: sticky;
  645. top: 10rem;
  646. }
  647. @media (max-width: 810px) {
  648. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  649. display: none;
  650. }
  651. }
  652. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  653. display: flex;
  654. width: 50%;
  655. background-color: rgb(255, 255, 255);
  656. padding-right: 2rem;
  657. }
  658. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  659. display: flex;
  660. font-size: 1rem;
  661. font-weight: 1000;
  662. color: rgb(9, 57, 139);
  663. border-bottom: 1px solid rgb(0, 158, 227);
  664. padding-bottom: 0.8rem;
  665. padding-right: 1rem;
  666. margin-top: 1rem;
  667. scroll-margin-top: 7em;
  668. }
  669. .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 {
  670. text-decoration: underline;
  671. }
  672. @media (max-width: 810px) {
  673. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  674. flex: 0 1 80%;
  675. margin: auto;
  676. }
  677. }
  678. @media (max-width: 479px) {
  679. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  680. padding-top: 5rem;
  681. }
  682. }
  683. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  684. margin-top: 1rem;
  685. background-color: rgb(255, 255, 255);
  686. }
  687. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  688. font-size: 1.5rem;
  689. font-weight: 1000;
  690. font-family: "Source Code Pro", monospace;
  691. color: rgb(9, 57, 139);
  692. text-transform: uppercase;
  693. margin-top: 2rem;
  694. margin-bottom: 0.8rem;
  695. }
  696. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  697. text-transform: none !important;
  698. }
  699. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  700. width: 100%;
  701. height: auto;
  702. }
  703. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  704. padding: 0.5rem 1rem 1rem 1.5rem;
  705. }
  706. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  707. margin-top: 0;
  708. }
  709. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  710. margin-top: 1rem;
  711. display: flex;
  712. flex-direction: column;
  713. width: 70%;
  714. }
  715. @media (max-width: 810px) {
  716. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  717. margin: auto;
  718. }
  719. }
  720. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  721. height: fit-content;
  722. border: 2px solid rgb(0, 158, 227);
  723. background-color: rgb(255, 255, 255);
  724. }
  725. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers {
  726. min-height: 4rem;
  727. background: rgb(255, 255, 255);
  728. color: rgb(0, 158, 227);
  729. padding-left: 0.8rem;
  730. padding-top: 1rem;
  731. padding-bottom: 1rem;
  732. padding-right: 0.5rem;
  733. }
  734. .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) {
  735. display: none;
  736. }
  737. .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 {
  738. height: inherit;
  739. margin: auto;
  740. }
  741. .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 {
  742. content: url("../images/pictos/download.png");
  743. height: auto;
  744. padding-right: 1rem;
  745. }
  746. .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 {
  747. hyphens: auto;
  748. display: inline-flex;
  749. color: rgb(0, 158, 227);
  750. font-weight: 800;
  751. align-items: center;
  752. }
  753. .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 {
  754. margin: auto;
  755. height: fit-content;
  756. border: 2px solid rgb(0, 158, 227);
  757. min-height: 2rem;
  758. background: rgb(255, 255, 255);
  759. color: rgb(0, 158, 227);
  760. padding-left: 0.8rem;
  761. padding-top: 1rem;
  762. padding-bottom: 1rem;
  763. margin-bottom: 1rem;
  764. padding-right: 0.5rem;
  765. }
  766. .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 {
  767. display: inline-flex;
  768. justify-items: center;
  769. color: rgb(0, 158, 227);
  770. font-weight: 800;
  771. align-items: center;
  772. }
  773. .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 {
  774. content: url("../images/pictos/external_link.png");
  775. height: auto;
  776. padding-right: 1rem;
  777. }
  778. .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 {
  779. display: none;
  780. }
  781. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  782. margin-top: 3rem;
  783. }
  784. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  785. font-size: 0.8rem;
  786. color: rgb(0, 0, 0);
  787. font-weight: 900;
  788. }
  789. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  790. border: 2px solid rgb(0, 158, 227);
  791. background-color: rgb(255, 255, 255);
  792. margin-bottom: 1rem;
  793. padding: 1rem;
  794. }
  795. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  796. display: flex;
  797. flex-direction: column;
  798. }
  799. .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 {
  800. order: 2;
  801. text-transform: uppercase;
  802. color: rgb(0, 158, 227);
  803. font-weight: 900;
  804. font-size: 0.8rem;
  805. }
  806. .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 {
  807. order: 3;
  808. }
  809. .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 {
  810. margin: 0;
  811. }
  812. .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 {
  813. color: rgb(0, 0, 0);
  814. font-size: 1rem;
  815. font-weight: 900;
  816. }
  817. .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 {
  818. order: 4;
  819. }
  820. .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- {
  821. order: 5;
  822. font-weight: 800;
  823. }
  824. .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 {
  825. margin: 0;
  826. }
  827. .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 {
  828. display: none;
  829. }
  830. .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 {
  831. margin: 0;
  832. }
  833. .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 {
  834. display: none;
  835. }
  836. .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 {
  837. order: 1;
  838. width: 25%;
  839. }
  840. .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 {
  841. width: 100%;
  842. height: auto;
  843. border: solid 1px gray;
  844. }
  845. .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 {
  846. order: 6;
  847. }
  848. .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 {
  849. display: none;
  850. }
  851. .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 {
  852. order: 7;
  853. display: flex;
  854. margin-top: 0.8rem;
  855. flex-direction: row;
  856. flex-wrap: wrap;
  857. }
  858. .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 {
  859. display: none;
  860. }
  861. .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 {
  862. display: flex;
  863. flex-direction: row;
  864. flex-wrap: wrap;
  865. }
  866. .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 {
  867. padding-bottom: 0.5rem;
  868. margin-right: 0.5rem;
  869. padding-right: 0.3rem;
  870. font-size: 0.8rem;
  871. }
  872. .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 {
  873. background: rgb(9, 57, 139);
  874. color: rgb(255, 255, 255);
  875. font-weight: 800;
  876. vertical-align: super;
  877. padding-left: 0.1rem;
  878. padding-right: 0.1rem;
  879. display: inline-flex;
  880. }
  881. .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 {
  882. display: none;
  883. }
  884. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  885. width: 100vw;
  886. height: auto;
  887. padding-top: 5rem;
  888. background: rgba(0, 158, 227, 0.2);
  889. }
  890. @media (max-width: 810px) {
  891. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  892. height: auto;
  893. }
  894. }
  895. @media (max-width: 792px), (max-width: 724px), (max-width: 479px) {
  896. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  897. max-height: fit-content;
  898. padding-top: 2rem;
  899. }
  900. }
  901. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  902. height: auto;
  903. }
  904. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row-wrapper {
  905. margin-bottom: 0;
  906. }
  907. @media (max-width: 810px) {
  908. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  909. width: 100vw !important;
  910. height: auto !important;
  911. }
  912. }
  913. @media (max-width: 479px) {
  914. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  915. height: auto !important;
  916. width: 100vw !important;
  917. }
  918. }
  919. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list.draggable {
  920. padding-left: 0px !important;
  921. }
  922. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  923. color: rgb(0, 0, 0);
  924. line-height: 1.5rem;
  925. width: 80%;
  926. height: auto;
  927. margin: auto;
  928. margin-bottom: 2rem;
  929. }
  930. @media (max-width: 810px) {
  931. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  932. width: 90%;
  933. height: auto;
  934. }
  935. }
  936. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  937. display: flex;
  938. flex-direction: row;
  939. justify-content: space-between;
  940. margin-left: 2rem;
  941. }
  942. @media (max-width: 810px) {
  943. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  944. display: flex;
  945. flex-direction: column;
  946. height: auto;
  947. margin-left: 0;
  948. }
  949. }
  950. .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 {
  951. width: 50%;
  952. display: flex;
  953. justify-content: end;
  954. }
  955. @media (max-width: 810px) {
  956. .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 {
  957. width: 100%;
  958. }
  959. }
  960. .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 {
  961. display: flex;
  962. max-height: 420px;
  963. }
  964. .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 {
  965. max-width: 100%;
  966. max-height: 456px;
  967. object-fit: cover;
  968. object-position: center;
  969. }
  970. @media (max-width: 810px) {
  971. .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 {
  972. max-height: 310px;
  973. max-width: 100%;
  974. object-fit: cover;
  975. padding-left: 0;
  976. margin-bottom: 1rem;
  977. }
  978. }
  979. @media (max-width: 724px) {
  980. .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 {
  981. max-height: 400px;
  982. }
  983. }
  984. @media (max-width: 680px) {
  985. .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 {
  986. max-height: 200px;
  987. object-fit: cover;
  988. margin: auto;
  989. padding-left: 0;
  990. padding-bottom: 1rem;
  991. }
  992. }
  993. .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 {
  994. width: 45%;
  995. align-content: center;
  996. color: rgb(9, 57, 139) !important;
  997. }
  998. @media (max-width: 810px) {
  999. .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 {
  1000. width: 100%;
  1001. }
  1002. }
  1003. .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,
  1004. .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,
  1005. .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,
  1006. .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,
  1007. .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,
  1008. .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 {
  1009. display: none;
  1010. }
  1011. .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 {
  1012. font-size: 1.3rem;
  1013. }
  1014. @media (max-width: 811px) {
  1015. .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 {
  1016. font-size: 1rem;
  1017. }
  1018. }
  1019. .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 {
  1020. display: flex !important;
  1021. flex-direction: row;
  1022. }
  1023. .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 {
  1024. display: flex;
  1025. flex-direction: row;
  1026. font-size: 1.3rem;
  1027. font-weight: 800;
  1028. padding-right: 1rem;
  1029. width: fit-content;
  1030. }
  1031. @media (min-width: 811px) {
  1032. .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 {
  1033. font-size: 0.9rem;
  1034. }
  1035. }
  1036. .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 {
  1037. font-size: 1.3rem;
  1038. padding-top: 1rem;
  1039. }
  1040. .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 {
  1041. display: none;
  1042. }
  1043. @media (max-width: 811px) {
  1044. .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 {
  1045. display: inline-flex;
  1046. font-size: 0.9rem;
  1047. padding-top: 0.5rem;
  1048. }
  1049. }
  1050. .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 {
  1051. line-height: 1.1;
  1052. font-size: 1.5rem;
  1053. padding-top: 1rem;
  1054. }
  1055. .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 {
  1056. color: rgb(9, 57, 139) !important;
  1057. }
  1058. @media (max-width: 810px) {
  1059. .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 {
  1060. font-size: 0.9rem;
  1061. padding-top: 0.5rem;
  1062. }
  1063. }
  1064. .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 {
  1065. display: none;
  1066. font-weight: 800;
  1067. }
  1068. @media (min-width: 811px) {
  1069. .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 {
  1070. font-size: 1.5rem;
  1071. }
  1072. }
  1073. .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 {
  1074. padding-top: 2rem;
  1075. font-size: 1.3rem;
  1076. }
  1077. @media (max-width: 810px) {
  1078. .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 {
  1079. font-size: 0.9rem;
  1080. padding-top: 1rem;
  1081. }
  1082. }
  1083. .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) {
  1084. width: 100%;
  1085. }
  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 .home_actu_infos h2 {
  1087. margin: 0;
  1088. }
  1089. .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 {
  1090. color: rgb(0, 0, 0);
  1091. }
  1092. .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 {
  1093. display: none;
  1094. }
  1095. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1096. visibility: visible;
  1097. display: flex;
  1098. flex-flow: row;
  1099. justify-content: center;
  1100. background: rgba(0, 158, 227, 0.2);
  1101. padding-top: 3rem;
  1102. padding-bottom: 3rem;
  1103. border-bottom: 5px solid rgb(0, 158, 227);
  1104. }
  1105. @media (max-width: 479px) {
  1106. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1107. padding-top: 2rem;
  1108. padding-bottom: 2rem;
  1109. }
  1110. }
  1111. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien {
  1112. margin: auto;
  1113. height: fit-content;
  1114. padding: 0.4rem 1rem;
  1115. font-size: 0.8rem;
  1116. margin: 0;
  1117. background-color: rgb(255, 255, 255);
  1118. border: 2px solid rgb(0, 158, 227);
  1119. list-style: none;
  1120. display: inline-flex;
  1121. }
  1122. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien p {
  1123. margin: 0;
  1124. }
  1125. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a {
  1126. text-transform: uppercase;
  1127. font-weight: 700;
  1128. color: rgb(0, 158, 227);
  1129. display: inline-flex;
  1130. align-items: center;
  1131. }
  1132. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a::after {
  1133. 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>');
  1134. }
  1135. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  1136. padding-top: 2rem;
  1137. padding-bottom: 4rem;
  1138. }
  1139. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1140. width: 80%;
  1141. margin: auto;
  1142. }
  1143. @media (max-width: 479px) {
  1144. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1145. width: 80%;
  1146. }
  1147. }
  1148. .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) {
  1149. display: flex;
  1150. flex-direction: row;
  1151. flex-wrap: wrap;
  1152. }
  1153. .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) {
  1154. order: 3;
  1155. }
  1156. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  1157. z-index: 95;
  1158. align-self: flex-end;
  1159. width: fit-content;
  1160. height: fit-content;
  1161. padding: 0.4rem 1rem;
  1162. font-size: 0.8rem;
  1163. margin: 0;
  1164. background-color: rgb(255, 255, 255);
  1165. border: 2px solid rgb(0, 158, 227);
  1166. list-style: none;
  1167. }
  1168. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  1169. text-transform: uppercase;
  1170. font-weight: 700;
  1171. color: rgb(0, 158, 227);
  1172. display: inline-flex;
  1173. align-items: center;
  1174. }
  1175. .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 {
  1176. 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>');
  1177. }
  1178. @media (max-width: 810px) {
  1179. .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 {
  1180. width: 100%;
  1181. }
  1182. }
  1183. @media (max-width: 810px) {
  1184. .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 {
  1185. justify-content: center;
  1186. display: flex;
  1187. }
  1188. }
  1189. .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 {
  1190. width: 15rem;
  1191. height: auto;
  1192. }
  1193. @media (max-width: 810px) {
  1194. .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 {
  1195. width: 12rem;
  1196. padding-bottom: 1rem;
  1197. }
  1198. }
  1199. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  1200. display: none;
  1201. }
  1202. .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 {
  1203. flex: 1 1 50px;
  1204. padding-left: 1rem;
  1205. }
  1206. @media (max-width: 810px) {
  1207. .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 {
  1208. padding-left: 0em;
  1209. flex: 1 1 100%;
  1210. }
  1211. }
  1212. @media (max-width: 479px) {
  1213. .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 {
  1214. padding-left: 0em;
  1215. }
  1216. }
  1217. .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 {
  1218. background-color: rgb(255, 255, 255);
  1219. font-size: 1.5rem;
  1220. width: 110%;
  1221. padding-bottom: 2rem;
  1222. margin-block-start: 0;
  1223. text-align: start !important;
  1224. }
  1225. @media (max-width: 810px) {
  1226. .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 {
  1227. font-size: 1.2rem;
  1228. width: 100%;
  1229. }
  1230. }
  1231. .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 {
  1232. flex: 0 0 80%;
  1233. padding-top: 4rem;
  1234. margin: auto;
  1235. }
  1236. @media (max-width: 479px) {
  1237. .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 {
  1238. flex: 0 0 100%;
  1239. }
  1240. }
  1241. .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) {
  1242. display: none;
  1243. }
  1244. .path-frontpage .block-views-blockprojets-block-4 {
  1245. border-top: 5px solid rgb(0, 158, 227);
  1246. background: rgba(0, 158, 227, 0.2);
  1247. padding-top: 2rem;
  1248. padding-bottom: 4rem;
  1249. }
  1250. @media (max-width: 810px) {
  1251. .path-frontpage .block-views-blockprojets-block-4 {
  1252. padding-bottom: 0rem;
  1253. }
  1254. }
  1255. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1256. width: 80%;
  1257. margin: auto;
  1258. padding-top: 1rem;
  1259. padding-bottom: 5rem;
  1260. text-transform: uppercase;
  1261. color: rgb(225, 0, 15);
  1262. font-family: "Source Code Pro";
  1263. font-weight: 1000;
  1264. }
  1265. @media (max-width: 479px) {
  1266. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1267. padding-bottom: 1rem;
  1268. }
  1269. }
  1270. .path-frontpage .block-views-blockprojets-block-4 .view-projets {
  1271. width: 80%;
  1272. margin: auto;
  1273. }
  1274. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1275. display: flex;
  1276. flex-direction: row;
  1277. justify-content: space-between;
  1278. }
  1279. @media (max-width: 810px) {
  1280. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1281. flex-direction: column;
  1282. }
  1283. }
  1284. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1285. width: 49%;
  1286. }
  1287. @media (max-width: 810px) {
  1288. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1289. width: 100%;
  1290. margin-bottom: 1rem;
  1291. }
  1292. }
  1293. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1294. color: rgb(9, 57, 139);
  1295. line-height: 1.5rem;
  1296. }
  1297. @media (max-width: 810px) {
  1298. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1299. padding-left: 0rem;
  1300. padding-right: 0rem;
  1301. padding-top: 2rem;
  1302. }
  1303. }
  1304. .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 {
  1305. display: flex;
  1306. flex-direction: column;
  1307. max-height: fit-content;
  1308. }
  1309. .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 {
  1310. color: rgb(9, 57, 139);
  1311. }
  1312. .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 {
  1313. order: 1;
  1314. }
  1315. .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 {
  1316. display: none;
  1317. }
  1318. .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 {
  1319. display: block;
  1320. }
  1321. .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 {
  1322. width: 100%;
  1323. height: auto;
  1324. max-height: 400px;
  1325. object-fit: cover;
  1326. }
  1327. .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 {
  1328. order: 2;
  1329. display: flex;
  1330. text-transform: uppercase;
  1331. font-size: 0.9rem;
  1332. font-weight: 800;
  1333. margin-top: 0.8rem;
  1334. line-height: 0.6rem;
  1335. }
  1336. .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 {
  1337. display: flex;
  1338. flex-direction: row;
  1339. margin: 0;
  1340. }
  1341. .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 {
  1342. padding-top: 0 !important;
  1343. padding-bottom: 0 !important;
  1344. }
  1345. .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 {
  1346. content: ",";
  1347. margin-right: 0.3rem;
  1348. }
  1349. .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 {
  1350. padding-top: 0 !important;
  1351. padding-bottom: 0 !important;
  1352. }
  1353. .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 {
  1354. margin-top: 0.8rem;
  1355. font-size: 0.9rem;
  1356. font-weight: 800;
  1357. order: 4;
  1358. }
  1359. .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 {
  1360. order: 3;
  1361. margin-top: 0.8rem;
  1362. font-size: 0.9rem;
  1363. font-weight: 800;
  1364. }
  1365. .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 {
  1366. margin: 0;
  1367. }
  1368. .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 {
  1369. order: 4;
  1370. color: rgb(225, 0, 15);
  1371. margin-top: 0.8rem;
  1372. font-size: 0.7rem;
  1373. }
  1374. .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 {
  1375. display: none;
  1376. order: 5;
  1377. color: rgb(0, 0, 0);
  1378. font-size: 0.7rem;
  1379. }
  1380. .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 {
  1381. display: none;
  1382. order: 6;
  1383. }
  1384. .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 {
  1385. color: rgb(0, 0, 0);
  1386. font-size: 0.7rem;
  1387. }
  1388. .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 {
  1389. display: none;
  1390. order: 7;
  1391. }
  1392. .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 {
  1393. color: rgb(0, 0, 0);
  1394. font-size: 0.7rem;
  1395. }
  1396. .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 {
  1397. display: none;
  1398. order: 8;
  1399. color: rgb(0, 0, 0);
  1400. font-size: 0.7rem;
  1401. }
  1402. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1403. display: flex;
  1404. flex-flow: row-reverse;
  1405. background: rgba(0, 158, 227, 0.2);
  1406. padding-right: 10%;
  1407. padding-top: 2rem;
  1408. padding-bottom: 4rem;
  1409. }
  1410. @media (max-width: 479px) {
  1411. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1412. padding-top: 2rem;
  1413. padding-bottom: 2rem;
  1414. }
  1415. }
  1416. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary {
  1417. height: fit-content;
  1418. padding: 0.4rem 1rem;
  1419. font-size: 0.8rem;
  1420. margin: 0;
  1421. background-color: rgb(255, 255, 255);
  1422. border: 2px solid rgb(0, 158, 227);
  1423. list-style: none;
  1424. display: inline-flex;
  1425. }
  1426. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary p {
  1427. margin: 0;
  1428. }
  1429. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a {
  1430. text-transform: uppercase;
  1431. font-weight: 700;
  1432. color: rgb(0, 158, 227);
  1433. display: inline-flex;
  1434. align-items: center;
  1435. }
  1436. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a::after {
  1437. 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>');
  1438. }
  1439. .path-frontpage .block-views-blockprojets-block-2 #leaflet-map-view-projets-block-2 {
  1440. height: 500px !important;
  1441. }
  1442. .node-id-20 {
  1443. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  1444. background-repeat: no-repeat;
  1445. background-position-y: 7rem;
  1446. max-width: 100vw;
  1447. background-size: contain;
  1448. }
  1449. .node-id-20 .layout__region--top {
  1450. padding-bottom: 3rem;
  1451. height: 30vh;
  1452. }
  1453. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1454. font-family: "Source Code Pro";
  1455. font-size: 2rem;
  1456. font-weight: 800;
  1457. color: rgb(255, 255, 255);
  1458. background-color: rgb(0, 158, 227);
  1459. text-transform: uppercase;
  1460. }
  1461. .field--name-field-partenaires {
  1462. padding-top: 3rem;
  1463. }
  1464. .field--name-field-partenaires .paragraph--type--partenaire {
  1465. background-color: rgb(255, 255, 255);
  1466. width: 100%;
  1467. padding-bottom: 3rem;
  1468. display: grid;
  1469. grid-template-columns: repeat(7, 1fr);
  1470. grid-template-rows: repeat(auto-fill);
  1471. }
  1472. @media (max-width: 810px) {
  1473. .field--name-field-partenaires .paragraph--type--partenaire {
  1474. display: flex;
  1475. flex-direction: column;
  1476. }
  1477. }
  1478. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  1479. grid-column: 1/2;
  1480. grid-row: 2;
  1481. margin-top: 2rem;
  1482. padding-right: 1rem;
  1483. }
  1484. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  1485. grid-column: 2/8;
  1486. grid-row: 1;
  1487. font-weight: 800;
  1488. }
  1489. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  1490. grid-column: 2/8;
  1491. grid-row: 2;
  1492. }
  1493. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  1494. grid-column: 2/8;
  1495. grid-row: 3;
  1496. }
  1497. .field--name-field-partenaires a {
  1498. color: rgb(0, 0, 0);
  1499. font-weight: 800;
  1500. }
  1501. .field--name-field-partenaires a svg {
  1502. display: none;
  1503. }
  1504. .field--name-field-equipes {
  1505. padding-top: 3rem;
  1506. }
  1507. .field--name-field-equipes .paragraph--type--equipe {
  1508. background-color: rgb(255, 255, 255);
  1509. width: 100%;
  1510. }
  1511. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1512. width: 100%;
  1513. padding-bottom: 3rem;
  1514. display: grid;
  1515. grid-template-columns: repeat(7, 1fr);
  1516. grid-template-rows: repeat(auto-fill);
  1517. }
  1518. @media (max-width: 810px) {
  1519. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1520. display: flex;
  1521. flex-direction: column;
  1522. }
  1523. }
  1524. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo {
  1525. grid-column: 1/2;
  1526. grid-row: 1/span 3;
  1527. padding-right: 1rem;
  1528. }
  1529. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo img {
  1530. border-radius: 50%;
  1531. }
  1532. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-prenom {
  1533. grid-column: 2/span 3;
  1534. grid-row: 1;
  1535. font-weight: 800;
  1536. }
  1537. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-nom {
  1538. grid-column: 2/span 3;
  1539. grid-row: 2;
  1540. }
  1541. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-fonction {
  1542. grid-column: 2/8;
  1543. grid-row: 3;
  1544. }
  1545. .field--name-field-equipes a {
  1546. color: rgb(0, 0, 0);
  1547. font-weight: 800;
  1548. }
  1549. .field--name-field-equipes a svg {
  1550. display: none;
  1551. }
  1552. .path-node.page-node-type-actualite .layout-container {
  1553. overflow: unset;
  1554. }
  1555. .path-node.page-node-type-actualite .offresdeservices.layout-content.region-content#block-contenudelapageprincipale {
  1556. background: none !important;
  1557. }
  1558. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1559. background: linear-gradient(to bottom, rgba(0, 158, 227, 0.2) 60%, white 40%);
  1560. padding-bottom: 4rem;
  1561. }
  1562. @media (max-width: 900px) {
  1563. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1564. order: 1;
  1565. }
  1566. }
  1567. @media (max-width: 568px) {
  1568. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1569. padding-left: 2rem;
  1570. padding-right: 2rem;
  1571. }
  1572. }
  1573. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  1574. display: grid;
  1575. grid-template-columns: 1fr repeat(8, 1fr) 1fr;
  1576. }
  1577. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  1578. order: 5;
  1579. grid-column: 2;
  1580. margin-top: 1rem;
  1581. color: rgb(9, 57, 139);
  1582. }
  1583. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1584. order: 3;
  1585. grid-column: 2/span 7;
  1586. margin: 0;
  1587. color: rgb(9, 57, 139);
  1588. }
  1589. @media (max-width: 568px) {
  1590. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1591. grid-column: 2/span 8;
  1592. max-width: 80vw;
  1593. }
  1594. }
  1595. @media (max-width: 499px) {
  1596. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1597. grid-column: 2/span 9;
  1598. max-width: 80vw;
  1599. }
  1600. }
  1601. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1602. font-family: "Marianne";
  1603. font-size: 2.5rem;
  1604. font-weight: 800;
  1605. line-height: 3rem;
  1606. }
  1607. @media (max-width: 810px) {
  1608. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1609. font-size: 1.9em;
  1610. line-height: 2.3rem;
  1611. }
  1612. }
  1613. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  1614. order: 1;
  1615. padding-top: 2rem;
  1616. grid-column: 2/span 3;
  1617. text-transform: uppercase;
  1618. color: rgb(9, 57, 139);
  1619. font-size: 1.2rem;
  1620. font-weight: 800;
  1621. margin-top: 1rem;
  1622. }
  1623. .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 {
  1624. display: flex;
  1625. flex-direction: row;
  1626. justify-content: flex-start;
  1627. }
  1628. .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 {
  1629. padding-right: 2 rem;
  1630. }
  1631. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu {
  1632. order: 2;
  1633. grid-column: 2/span 4;
  1634. text-transform: uppercase;
  1635. color: rgb(9, 57, 139);
  1636. font-size: 1.2rem;
  1637. font-weight: 800;
  1638. margin-top: 1rem;
  1639. }
  1640. .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 {
  1641. display: flex;
  1642. flex-direction: row;
  1643. justify-content: flex-start;
  1644. }
  1645. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1646. order: 4;
  1647. grid-column: 2/span 7;
  1648. margin-top: 1rem;
  1649. font-weight: 800;
  1650. color: rgb(9, 57, 139);
  1651. }
  1652. @media (max-width: 568px) {
  1653. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1654. grid-column: 2/span 8;
  1655. max-width: 80vw;
  1656. }
  1657. }
  1658. @media (max-width: 499px) {
  1659. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1660. grid-column: 2/span 9;
  1661. max-width: 80vw;
  1662. }
  1663. }
  1664. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1665. order: 6;
  1666. grid-column: 5/span 3;
  1667. width: 600px;
  1668. }
  1669. @media (max-width: 568px) {
  1670. .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 {
  1671. width: 80%;
  1672. }
  1673. }
  1674. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1675. padding-top: 2rem;
  1676. width: 100%;
  1677. max-height: 400px;
  1678. object-fit: contain;
  1679. }
  1680. @media (max-width: 568px) {
  1681. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1682. max-width: 90vw;
  1683. }
  1684. }
  1685. @media (max-width: 900px) {
  1686. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1687. grid-column: 3/span 5;
  1688. }
  1689. }
  1690. @media (max-width: 568px) {
  1691. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1692. grid-column: 1/span 8;
  1693. }
  1694. }
  1695. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1696. font-size: 0.8rem;
  1697. text-align: center;
  1698. }
  1699. @media (max-width: 810px) {
  1700. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1701. margin-left: 5%;
  1702. margin-right: 5%;
  1703. font-size: 0.7rem;
  1704. }
  1705. }
  1706. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-next {
  1707. right: -65px;
  1708. }
  1709. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-prev {
  1710. left: -65px;
  1711. }
  1712. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li {
  1713. display: inline-block;
  1714. }
  1715. .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 {
  1716. display: none;
  1717. }
  1718. .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 {
  1719. margin-bottom: 0 !important;
  1720. }
  1721. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  1722. display: flex;
  1723. justify-content: flex-end;
  1724. position: -webkit-sticky;
  1725. position: sticky;
  1726. top: 10rem;
  1727. }
  1728. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1729. display: flex;
  1730. justify-content: flex-end;
  1731. width: 50%;
  1732. background-color: rgb(255, 255, 255);
  1733. padding-right: 2rem;
  1734. }
  1735. .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 {
  1736. display: flex;
  1737. font-size: 1rem;
  1738. font-weight: 1000;
  1739. color: rgb(9, 57, 139);
  1740. border-bottom: 1px solid rgb(0, 158, 227);
  1741. padding-bottom: 0.5rem;
  1742. padding-right: 1rem;
  1743. margin-bottom: 0.8rem;
  1744. }
  1745. .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 {
  1746. text-decoration: underline;
  1747. }
  1748. @media (max-width: 810px) {
  1749. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  1750. display: none;
  1751. }
  1752. }
  1753. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1754. width: 50%;
  1755. }
  1756. @media (max-width: 900px) {
  1757. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1758. order: 3;
  1759. width: 100vw;
  1760. }
  1761. }
  1762. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1763. width: 90%;
  1764. }
  1765. @media (max-width: 900px) {
  1766. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1767. width: 90%;
  1768. margin: auto;
  1769. }
  1770. }
  1771. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  1772. margin-top: 0;
  1773. }
  1774. .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 {
  1775. background-color: white;
  1776. }
  1777. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  1778. background-color: rgb(255, 255, 255);
  1779. }
  1780. .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 {
  1781. font-size: 1.5rem;
  1782. font-weight: 1000;
  1783. font-family: "Source Code Pro";
  1784. color: rgb(9, 57, 139);
  1785. text-transform: uppercase;
  1786. margin-top: 2rem;
  1787. margin-bottom: 0.8rem;
  1788. }
  1789. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  1790. text-transform: none !important;
  1791. }
  1792. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  1793. width: 100%;
  1794. height: auto;
  1795. }
  1796. .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 {
  1797. padding-right: 2rem;
  1798. }
  1799. @media (max-width: 900px) {
  1800. .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 {
  1801. padding-right: 0;
  1802. }
  1803. }
  1804. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  1805. margin-top: 0;
  1806. }
  1807. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  1808. color: rgb(0, 0, 0);
  1809. text-decoration: underline;
  1810. }
  1811. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  1812. display: none;
  1813. }
  1814. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  1815. overflow-y: visible !important;
  1816. }
  1817. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody a.ext {
  1818. word-wrap: break-word;
  1819. }
  1820. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  1821. font-size: 1.5rem;
  1822. font-weight: 1000;
  1823. font-family: "Source Code Pro";
  1824. color: rgb(9, 57, 139);
  1825. text-transform: uppercase;
  1826. margin-top: 2rem;
  1827. margin-bottom: 0.8rem;
  1828. }
  1829. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1830. display: flex;
  1831. flex-direction: row;
  1832. justify-content: space-between;
  1833. flex-wrap: wrap;
  1834. }
  1835. @media (max-width: 568px) {
  1836. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1837. flex-direction: column;
  1838. }
  1839. }
  1840. .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 {
  1841. display: flex;
  1842. flex-direction: column;
  1843. align-items: center;
  1844. }
  1845. .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 {
  1846. padding-top: 1rem;
  1847. }
  1848. @media (max-width: 900px) {
  1849. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1850. flex: 0 1 80%;
  1851. margin: auto;
  1852. }
  1853. }
  1854. @media (max-width: 1005px) {
  1855. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third {
  1856. flex: 0 1 100%;
  1857. order: 2;
  1858. }
  1859. }
  1860. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  1861. display: flex;
  1862. flex-direction: column;
  1863. width: 65%;
  1864. }
  1865. @media (max-width: 900px) {
  1866. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  1867. margin: auto;
  1868. }
  1869. }
  1870. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1871. height: fit-content;
  1872. width: fit-content;
  1873. border: 2px solid rgb(0, 158, 227);
  1874. background-color: rgb(255, 255, 255);
  1875. margin-bottom: 1rem;
  1876. min-height: 4rem;
  1877. color: rgb(0, 158, 227);
  1878. padding: 1rem;
  1879. }
  1880. @media (max-width: 900px) {
  1881. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1882. width: auto;
  1883. padding-right: 1rem;
  1884. }
  1885. }
  1886. @media (max-width: 568px) {
  1887. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1888. width: auto;
  1889. }
  1890. }
  1891. .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) {
  1892. display: none;
  1893. }
  1894. .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 {
  1895. height: inherit;
  1896. margin: auto;
  1897. width: fit-content;
  1898. }
  1899. .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 {
  1900. content: url("../images/pictos/download.png");
  1901. padding-right: 1rem;
  1902. margin-right: 1rem;
  1903. }
  1904. .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 {
  1905. hyphens: auto;
  1906. display: inline-flex;
  1907. align-items: center;
  1908. color: rgb(0, 158, 227);
  1909. font-weight: 800;
  1910. }
  1911. .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 {
  1912. margin: auto;
  1913. width: fit-content;
  1914. height: fit-content;
  1915. border: 2px solid rgb(0, 158, 227);
  1916. min-height: 4rem;
  1917. background: rgb(255, 255, 255);
  1918. color: rgb(0, 158, 227);
  1919. padding: 1rem;
  1920. margin-bottom: 1rem;
  1921. }
  1922. @media (max-width: 900px) {
  1923. .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 {
  1924. width: auto;
  1925. padding-right: 1rem;
  1926. }
  1927. }
  1928. .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 {
  1929. display: inline-flex;
  1930. align-items: center;
  1931. color: rgb(0, 158, 227);
  1932. font-weight: 800;
  1933. }
  1934. .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 {
  1935. content: url("../images/pictos/external_link.png");
  1936. padding-right: 1rem;
  1937. }
  1938. .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 {
  1939. display: none;
  1940. }
  1941. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1942. margin-top: 3rem;
  1943. }
  1944. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  1945. font-size: 0.8rem;
  1946. color: rgb(0, 0, 0);
  1947. font-weight: 900;
  1948. }
  1949. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  1950. border: 2px solid rgb(0, 158, 227);
  1951. padding: 1rem;
  1952. height: fit-content;
  1953. margin-bottom: 1rem;
  1954. background-color: rgb(255, 255, 255);
  1955. display: flex;
  1956. flex-direction: column;
  1957. }
  1958. .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 {
  1959. display: flex;
  1960. flex-direction: column;
  1961. }
  1962. .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 {
  1963. order: 2;
  1964. text-transform: uppercase;
  1965. color: rgb(0, 158, 227);
  1966. font-weight: 900;
  1967. font-size: 0.8rem;
  1968. }
  1969. .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 {
  1970. order: 3;
  1971. }
  1972. .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 {
  1973. margin: 0;
  1974. }
  1975. .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 {
  1976. color: rgb(0, 0, 0);
  1977. font-size: 1rem;
  1978. font-weight: 900;
  1979. font-style: italic;
  1980. }
  1981. .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 {
  1982. order: 4;
  1983. }
  1984. .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- {
  1985. order: 5;
  1986. font-weight: 800;
  1987. }
  1988. .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 {
  1989. margin: 0;
  1990. }
  1991. .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 {
  1992. display: none;
  1993. }
  1994. .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 {
  1995. margin: 0;
  1996. }
  1997. .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 {
  1998. display: none;
  1999. }
  2000. .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 {
  2001. display: none;
  2002. order: 1;
  2003. width: 25%;
  2004. }
  2005. .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 {
  2006. width: 100%;
  2007. height: auto;
  2008. margin: auto;
  2009. }
  2010. .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 {
  2011. order: 6;
  2012. display: flex;
  2013. margin-top: 2rem;
  2014. flex-direction: row;
  2015. flex-wrap: wrap;
  2016. }
  2017. .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 {
  2018. display: flex;
  2019. flex-direction: row;
  2020. flex-wrap: wrap;
  2021. }
  2022. .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 {
  2023. padding-bottom: 0.5rem;
  2024. margin-right: 0.5rem;
  2025. padding-right: 0.3rem;
  2026. font-size: 0.8rem;
  2027. }
  2028. .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 {
  2029. background: rgb(9, 57, 139);
  2030. color: rgb(255, 255, 255);
  2031. font-weight: 800;
  2032. vertical-align: super;
  2033. padding-left: 0.1rem;
  2034. padding-right: 0.1rem;
  2035. display: inline-flex;
  2036. }
  2037. .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 {
  2038. display: none;
  2039. }
  2040. .node-id-35 .region-content {
  2041. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  2042. background-repeat: no-repeat;
  2043. max-width: 100vw;
  2044. background-size: contain;
  2045. }
  2046. .node-id-35 .layout__region--top {
  2047. padding-bottom: 3rem;
  2048. height: 30vh;
  2049. }
  2050. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2051. display: none;
  2052. height: inherit;
  2053. }
  2054. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2055. font-family: "Source Code Pro";
  2056. font-size: 2rem;
  2057. font-weight: 800;
  2058. color: rgb(255, 255, 255);
  2059. background-color: rgb(0, 158, 227);
  2060. text-transform: uppercase;
  2061. }
  2062. .node-id-3 {
  2063. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2064. background-repeat: no-repeat;
  2065. background-position-y: 7rem;
  2066. max-width: 100vw;
  2067. background-size: contain;
  2068. }
  2069. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2070. display: none;
  2071. height: inherit;
  2072. }
  2073. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2074. color: rgb(0, 158, 227);
  2075. background-color: rgb(255, 255, 255);
  2076. }
  2077. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2078. background: rgb(0, 158, 227) !important;
  2079. color: rgb(255, 255, 255) !important;
  2080. }
  2081. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  2082. color: rgb(255, 255, 255) !important;
  2083. }
  2084. .node-id-3 .block-entity-fieldnodefield-liens {
  2085. display: none;
  2086. }
  2087. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2088. background: rgb(0, 158, 227);
  2089. color: rgb(255, 255, 255);
  2090. }
  2091. .node-id-3 .block-entity-fieldnodefield-ress {
  2092. margin-top: 3rem;
  2093. }
  2094. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  2095. font-size: 0.8rem;
  2096. color: rgb(0, 0, 0);
  2097. font-weight: 900;
  2098. }
  2099. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  2100. display: flex;
  2101. flex-direction: column;
  2102. border: 2px solid rgb(0, 158, 227);
  2103. padding: 1rem;
  2104. height: fit-content;
  2105. margin-bottom: 1rem;
  2106. background-color: rgb(255, 255, 255);
  2107. }
  2108. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  2109. border-top: 1px solid rgb(0, 158, 227);
  2110. padding-top: 1rem;
  2111. }
  2112. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  2113. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2114. align-self: flex-end;
  2115. }
  2116. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  2117. color: rgb(0, 0, 0);
  2118. font-size: 1.4rem;
  2119. font-weight: 600;
  2120. }
  2121. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  2122. font-weight: 800;
  2123. }
  2124. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  2125. margin: 0;
  2126. }
  2127. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  2128. display: none;
  2129. }
  2130. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  2131. margin: 0;
  2132. }
  2133. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  2134. display: none;
  2135. }
  2136. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  2137. display: none;
  2138. width: 50%;
  2139. }
  2140. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  2141. width: 100%;
  2142. height: auto;
  2143. }
  2144. .path-actualites {
  2145. background-color: rgba(0, 158, 227, 0.2);
  2146. margin: 0;
  2147. }
  2148. .path-actualites .block-region-content {
  2149. display: grid;
  2150. grid-template-columns: 1fr 8fr 1fr;
  2151. margin: auto;
  2152. padding-top: 3rem;
  2153. }
  2154. .path-actualites .block-region-content .block-views {
  2155. grid-column: 2;
  2156. }
  2157. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2158. display: flex;
  2159. flex-direction: row;
  2160. flex-wrap: wrap;
  2161. }
  2162. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2163. width: 25%;
  2164. flex: 0 0 25%;
  2165. }
  2166. @media (max-width: 810px) {
  2167. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2168. flex-direction: column;
  2169. }
  2170. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2171. width: 100%;
  2172. }
  2173. }
  2174. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  2175. padding-top: 0;
  2176. }
  2177. .path-actualites .block-region-content .block-views .node-type-actualite {
  2178. color: rgb(9, 57, 139);
  2179. line-height: 1.5rem;
  2180. padding: 0.5rem;
  2181. padding-right: 1rem;
  2182. padding-left: 1rem;
  2183. }
  2184. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  2185. display: flex;
  2186. flex-direction: column;
  2187. }
  2188. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  2189. color: rgb(9, 57, 139);
  2190. }
  2191. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  2192. order: 1;
  2193. }
  2194. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2195. width: 100%;
  2196. max-height: 175px;
  2197. object-fit: cover;
  2198. }
  2199. @media (max-width: 810px) {
  2200. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2201. max-height: 350px;
  2202. }
  2203. }
  2204. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  2205. display: block;
  2206. 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>');
  2207. }
  2208. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  2209. margin-top: 0.5rem;
  2210. font-size: 0.9rem;
  2211. font-weight: 800;
  2212. order: 5;
  2213. }
  2214. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  2215. order: 2;
  2216. display: flex;
  2217. flex-direction: row;
  2218. justify-content: flex-start;
  2219. }
  2220. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  2221. padding-left: 1rem;
  2222. content: "|";
  2223. }
  2224. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  2225. font-size: 0.9rem;
  2226. font-weight: 800;
  2227. padding-right: 1rem;
  2228. width: fit-content;
  2229. }
  2230. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  2231. font-size: 0.9rem;
  2232. order: 3;
  2233. display: flex;
  2234. flex-direction: row;
  2235. justify-content: flex-start;
  2236. }
  2237. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  2238. display: none;
  2239. }
  2240. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  2241. order: 4;
  2242. font-size: 0.9rem;
  2243. }
  2244. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  2245. width: 100%;
  2246. }
  2247. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  2248. margin: 0;
  2249. }
  2250. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  2251. padding-top: none !important;
  2252. list-style: none;
  2253. width: fit-content;
  2254. align-self: flex-end;
  2255. padding-right: 1rem;
  2256. }
  2257. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  2258. display: none;
  2259. }
  2260. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  2261. order: 6;
  2262. padding-top: 1rem;
  2263. }
  2264. .node-id-4 {
  2265. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2266. background-repeat: no-repeat;
  2267. background-position-y: 7rem;
  2268. max-width: 100vw;
  2269. background-size: contain;
  2270. }
  2271. .node-id-4 #block-contenudelapageprincipale {
  2272. scroll-margin: 8rem;
  2273. }
  2274. .node-id-4 .layout__region--top {
  2275. padding-bottom: 3rem;
  2276. height: 30vh;
  2277. }
  2278. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2279. display: none;
  2280. height: inherit;
  2281. }
  2282. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2283. font-family: "Source Code Pro";
  2284. font-size: 2rem;
  2285. font-weight: 800;
  2286. color: rgb(255, 255, 255);
  2287. background-color: rgb(0, 158, 227);
  2288. text-transform: uppercase;
  2289. }
  2290. .node-id-4 .layout__region--second {
  2291. width: 25%;
  2292. }
  2293. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  2294. background-color: rgb(255, 255, 255);
  2295. }
  2296. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2297. font-size: 1.5rem;
  2298. font-weight: 1000;
  2299. font-family: "Source Code Pro";
  2300. color: rgb(9, 57, 139);
  2301. text-transform: uppercase;
  2302. }
  2303. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2304. text-transform: none !important;
  2305. }
  2306. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2307. padding-right: 2rem;
  2308. }
  2309. .node-id-5 .region-content {
  2310. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2311. background-repeat: no-repeat;
  2312. max-width: 100vw;
  2313. background-size: contain;
  2314. }
  2315. .node-id-5 .layout__region--top {
  2316. padding-bottom: 3rem;
  2317. height: 30vh;
  2318. }
  2319. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2320. font-family: "Source Code Pro";
  2321. font-size: 2rem;
  2322. font-weight: 800;
  2323. color: rgb(255, 255, 255);
  2324. background-color: rgb(0, 158, 227);
  2325. text-transform: uppercase;
  2326. }
  2327. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2328. color: rgb(0, 0, 0);
  2329. text-decoration: underline;
  2330. }
  2331. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2332. display: none;
  2333. }
  2334. .path-faq #block-contenudelapageprincipale h2 {
  2335. font-family: "Source Code Pro";
  2336. font-size: 2rem;
  2337. font-weight: 800;
  2338. color: rgb(0, 158, 227);
  2339. background-color: rgb(255, 255, 255);
  2340. text-transform: uppercase;
  2341. width: fit-content;
  2342. margin-left: 10%;
  2343. margin-top: 8rem;
  2344. }
  2345. @media (max-width: 810px) {
  2346. .path-faq #block-contenudelapageprincipale h2 {
  2347. margin-left: 8%;
  2348. margin-right: 1%;
  2349. }
  2350. }
  2351. .path-faq #block-contenudelapageprincipale .block-region-content {
  2352. display: grid;
  2353. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2354. }
  2355. @media (max-width: 810px) {
  2356. .path-faq #block-contenudelapageprincipale .block-region-content {
  2357. display: flex;
  2358. flex-direction: column;
  2359. margin: auto;
  2360. }
  2361. }
  2362. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2363. grid-column: 2/span 3;
  2364. }
  2365. @media (max-width: 810px) {
  2366. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2367. width: 80%;
  2368. margin: auto;
  2369. }
  2370. }
  2371. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2372. display: none;
  2373. grid-column: 5;
  2374. grid-row: 1/span 2;
  2375. height: fit-content;
  2376. flex-direction: column;
  2377. max-width: fit-content;
  2378. margin-left: 2rem;
  2379. padding: 1rem;
  2380. background-color: rgb(0, 158, 227);
  2381. }
  2382. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2383. margin-top: 1rem;
  2384. display: block;
  2385. content: url("../images/pictos/picto_faq.svg");
  2386. }
  2387. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2388. text-align: center;
  2389. }
  2390. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2391. font-size: 0.8rem;
  2392. font-weight: 1000;
  2393. color: rgb(9, 57, 139);
  2394. text-transform: uppercase;
  2395. }
  2396. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  2397. display: flex;
  2398. flex-direction: column;
  2399. margin-top: 0;
  2400. margin-left: 1.5rem;
  2401. margin-right: 1.5rem;
  2402. text-align: center;
  2403. }
  2404. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  2405. font-weight: 800;
  2406. color: rgb(255, 255, 255);
  2407. font-size: 1.3rem;
  2408. }
  2409. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  2410. margin-left: auto;
  2411. padding-top: 1rem;
  2412. display: block;
  2413. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2414. }
  2415. @media (max-width: 810px) {
  2416. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2417. margin: auto;
  2418. padding: 0rem;
  2419. }
  2420. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2421. margin-top: 1rem;
  2422. display: block;
  2423. content: url("../images/pictos/picto_faq_2.svg");
  2424. }
  2425. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2426. text-align: center;
  2427. }
  2428. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2429. font-size: 0.8rem;
  2430. font-weight: 1000;
  2431. color: rgb(9, 57, 139);
  2432. text-transform: uppercase;
  2433. }
  2434. }
  2435. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2436. margin-top: 2rem;
  2437. grid-column: 2/span 3;
  2438. display: grid;
  2439. grid-template-columns: 1fr 1fr 1fr;
  2440. }
  2441. @media (max-width: 810px) {
  2442. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2443. width: 80%;
  2444. margin: auto;
  2445. margin-top: 1rem;
  2446. }
  2447. }
  2448. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  2449. grid-column: 1/span 3;
  2450. }
  2451. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2452. border-bottom: 1px solid rgb(0, 158, 227);
  2453. padding-bottom: 2rem;
  2454. }
  2455. @media (max-width: 810px) {
  2456. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2457. padding-bottom: 1rem;
  2458. }
  2459. }
  2460. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  2461. display: none;
  2462. }
  2463. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  2464. cursor: pointer;
  2465. }
  2466. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  2467. font-family: "Source Code Pro";
  2468. font-weight: 500;
  2469. color: rgb(9, 57, 139);
  2470. font-size: 1.3rem;
  2471. }
  2472. .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 {
  2473. display: inline-flex;
  2474. 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>');
  2475. float: right;
  2476. }
  2477. .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 {
  2478. display: inline-flex;
  2479. 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>');
  2480. float: right;
  2481. }
  2482. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  2483. display: none;
  2484. }
  2485. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  2486. display: none;
  2487. }
  2488. .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) {
  2489. display: none;
  2490. }
  2491. .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) {
  2492. display: none;
  2493. }
  2494. .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 {
  2495. display: inline-block;
  2496. content: url("../images/pictos/noun_Download_file_307900.svg");
  2497. width: 30px;
  2498. height: 30px;
  2499. padding-right: 0.8rem;
  2500. }
  2501. .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 {
  2502. display: inline-flex;
  2503. align-items: center;
  2504. color: rgb(0, 0, 0);
  2505. font-weight: 800;
  2506. }
  2507. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  2508. display: none;
  2509. }
  2510. .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 {
  2511. display: inline-block;
  2512. content: url("../images/pictos/external_link.png");
  2513. width: 30px;
  2514. height: 30px;
  2515. padding-right: 0.8rem;
  2516. }
  2517. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  2518. display: flex;
  2519. flex-direction: row;
  2520. justify-content: left;
  2521. align-items: center;
  2522. color: rgb(0, 0, 0);
  2523. font-weight: 800;
  2524. }
  2525. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  2526. display: none;
  2527. }
  2528. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  2529. display: none;
  2530. margin-top: 0.5rem;
  2531. }
  2532. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  2533. color: rgb(0, 0, 0);
  2534. text-decoration: underline;
  2535. font-weight: 800;
  2536. }
  2537. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  2538. display: block;
  2539. }
  2540. .node-id-6 {
  2541. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2542. background-repeat: no-repeat;
  2543. background-position-y: 7rem;
  2544. max-width: 100vw;
  2545. background-size: contain;
  2546. }
  2547. .node-id-6 .layout__region--top {
  2548. padding-bottom: 3rem;
  2549. height: 30vh;
  2550. }
  2551. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2552. display: none;
  2553. height: inherit;
  2554. }
  2555. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2556. font-family: "Source Code Pro";
  2557. font-size: 2rem;
  2558. font-weight: 800;
  2559. color: rgb(255, 255, 255);
  2560. background-color: rgb(0, 158, 227);
  2561. text-transform: uppercase;
  2562. }
  2563. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2564. color: rgb(0, 0, 0);
  2565. text-decoration: underline;
  2566. }
  2567. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2568. display: none;
  2569. }
  2570. .path-taxonomy #block-contenudelapageprincipale span {
  2571. display: none;
  2572. }
  2573. .path-taxonomy .view-taxonomy-term .view-header {
  2574. width: 80%;
  2575. margin: auto;
  2576. }
  2577. .path-taxonomy .view-taxonomy-term .view-content {
  2578. width: 80%;
  2579. margin: auto;
  2580. }
  2581. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper {
  2582. display: flex;
  2583. flex-direction: row;
  2584. flex-wrap: wrap;
  2585. }
  2586. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2587. width: 30%;
  2588. }
  2589. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2590. display: flex;
  2591. width: 25%;
  2592. max-width: fit-content;
  2593. }
  2594. .page-node-type-ressource .layout-container {
  2595. overflow: visible;
  2596. }
  2597. @media (max-width: 810px) {
  2598. .page-node-type-ressource .layout-container {
  2599. overflow: hidden;
  2600. }
  2601. }
  2602. .page-node-type-ressource .layout__region--top {
  2603. padding-top: 4rem;
  2604. }
  2605. @media (max-width: 550px) {
  2606. .page-node-type-ressource .layout__region--top {
  2607. padding-top: 0rem;
  2608. max-width: 100%;
  2609. }
  2610. }
  2611. .page-node-type-ressource .layout__region--top .block-region-top {
  2612. display: flex;
  2613. flex-direction: column;
  2614. }
  2615. @media screen and (min-width: 1100px) {
  2616. .page-node-type-ressource .layout__region--top .block-region-top {
  2617. display: grid;
  2618. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2619. gap: 0.5rem;
  2620. }
  2621. }
  2622. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2623. width: fit-content;
  2624. padding-left: 25%;
  2625. }
  2626. @media (min-width: 1100px) {
  2627. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2628. grid-column: 1;
  2629. grid-row: 1/span 7;
  2630. align-self: start;
  2631. justify-self: end;
  2632. margin-left: 2rem;
  2633. }
  2634. }
  2635. @media (max-width: 1100px) {
  2636. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2637. padding-left: 13%;
  2638. }
  2639. }
  2640. @media (max-width: 550px) {
  2641. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2642. width: 100vw;
  2643. padding: 0;
  2644. width: 100%;
  2645. height: auto;
  2646. }
  2647. }
  2648. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2649. border: solid 1px gray;
  2650. max-width: 100%;
  2651. width: 100%;
  2652. height: auto;
  2653. }
  2654. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2655. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2656. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2657. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2658. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2659. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2660. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2661. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2662. width: 100%;
  2663. margin-left: 13%;
  2664. }
  2665. @media (max-width: 1099px) {
  2666. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2667. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2668. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2669. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2670. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2671. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2672. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2673. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2674. width: auto;
  2675. margin-right: 15%;
  2676. }
  2677. }
  2678. @media screen and (min-width: 1100px) {
  2679. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2680. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2681. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2682. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2683. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2684. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2685. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2686. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2687. width: auto;
  2688. margin-left: 2rem;
  2689. margin-right: 15%;
  2690. grid-column: 2/4;
  2691. align-self: start; /* S'assurer qu'il commence en haut */
  2692. height: fit-content;
  2693. justify-self: start;
  2694. }
  2695. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2696. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2697. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2698. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2699. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2700. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2701. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2702. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2703. margin: 0;
  2704. }
  2705. }
  2706. @media (max-width: 810px) {
  2707. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2708. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2709. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2710. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2711. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2712. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2713. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2714. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2715. margin-left: 9%;
  2716. margin-right: 9%;
  2717. }
  2718. }
  2719. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2720. width: 100%;
  2721. font-family: "Source Code Pro";
  2722. font-size: 1.5rem;
  2723. font-weight: 800;
  2724. color: rgb(255, 255, 255);
  2725. background-color: rgb(0, 158, 227);
  2726. text-transform: uppercase;
  2727. padding-left: 13%;
  2728. padding-top: 1rem;
  2729. padding-bottom: 0.5rem;
  2730. vertical-align: middle;
  2731. }
  2732. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2733. color: rgb(0, 158, 227);
  2734. text-transform: uppercase;
  2735. font-weight: 900;
  2736. }
  2737. @media (max-width: 1099px) {
  2738. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2739. margin-top: 2rem;
  2740. }
  2741. }
  2742. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2743. font-size: 2.5rem;
  2744. font-weight: 600;
  2745. line-height: 1.2;
  2746. }
  2747. @media (max-width: 550px) {
  2748. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2749. font-size: 1.5rem;
  2750. width: 80vw;
  2751. }
  2752. }
  2753. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2754. font-weight: 600;
  2755. font-size: 2rem;
  2756. }
  2757. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  2758. font-weight: 600;
  2759. font-size: 2rem;
  2760. }
  2761. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  2762. font-weight: 600;
  2763. font-size: 2rem;
  2764. margin-bottom: 0;
  2765. }
  2766. @media (max-width: 550px) {
  2767. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2768. font-size: 1rem;
  2769. }
  2770. }
  2771. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  2772. margin-bottom: 0;
  2773. }
  2774. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2775. font-size: 1.5rem;
  2776. font-weight: 800;
  2777. line-height: 0.8;
  2778. margin-top: 1rem;
  2779. }
  2780. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  2781. margin: 0;
  2782. }
  2783. @media (max-width: 550px) {
  2784. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2785. margin-top: 0rem;
  2786. font-size: 1rem;
  2787. line-height: 1;
  2788. }
  2789. }
  2790. @media (max-width: 550px) {
  2791. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  2792. margin-top: 0.5rem;
  2793. }
  2794. }
  2795. @media (max-width: 550px) {
  2796. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  2797. margin-top: 0.5rem;
  2798. }
  2799. }
  2800. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2801. display: inline-flex;
  2802. margin-top: 0.5rem;
  2803. }
  2804. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2805. background: rgb(9, 57, 139);
  2806. margin-right: 1rem;
  2807. padding-left: 0.3rem;
  2808. padding-right: 0.3rem;
  2809. color: rgb(255, 255, 255);
  2810. font-weight: 800;
  2811. vertical-align: middle;
  2812. }
  2813. @media (max-width: 810px) {
  2814. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2815. display: flex;
  2816. flex-direction: row;
  2817. flex-wrap: wrap;
  2818. }
  2819. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2820. margin-bottom: 0.5rem;
  2821. }
  2822. }
  2823. .page-node-type-ressource .layout__region--top {
  2824. /* Hide empty blocks */
  2825. }
  2826. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  2827. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  2828. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  2829. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  2830. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  2831. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  2832. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  2833. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  2834. display: none;
  2835. }
  2836. .page-node-type-ressource .layout__region--first {
  2837. margin-top: 3rem;
  2838. position: relative;
  2839. }
  2840. @media (max-width: 810px) {
  2841. .page-node-type-ressource .layout__region--first {
  2842. display: none;
  2843. }
  2844. }
  2845. .page-node-type-ressource .layout__region--first .block-region-first {
  2846. display: flex;
  2847. justify-content: flex-end;
  2848. position: sticky;
  2849. top: 13rem;
  2850. }
  2851. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  2852. display: flex;
  2853. width: 50%;
  2854. background-color: rgb(255, 255, 255);
  2855. padding-right: 2rem;
  2856. }
  2857. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  2858. display: flex;
  2859. font-size: 1rem;
  2860. font-weight: 1000;
  2861. color: rgb(9, 57, 139);
  2862. border-bottom: 1px solid rgb(0, 158, 227);
  2863. padding-bottom: 0.5rem;
  2864. padding-right: 1rem;
  2865. }
  2866. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  2867. text-decoration: underline;
  2868. }
  2869. .page-node-type-ressource .layout__region--second {
  2870. margin-top: 3rem;
  2871. }
  2872. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  2873. background-color: rgb(255, 255, 255);
  2874. }
  2875. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2876. font-size: 1.5rem;
  2877. font-weight: 1000;
  2878. font-family: "Source Code Pro";
  2879. color: rgb(9, 57, 139);
  2880. text-transform: uppercase;
  2881. }
  2882. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2883. text-transform: none !important;
  2884. }
  2885. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  2886. width: 100%;
  2887. height: auto;
  2888. }
  2889. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2890. padding-right: 2rem;
  2891. }
  2892. @media (max-width: 550px) {
  2893. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2894. padding-right: 0;
  2895. }
  2896. }
  2897. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  2898. margin-top: 0;
  2899. }
  2900. @media (max-width: 810px) {
  2901. .page-node-type-ressource .layout__region--second {
  2902. flex: 0 1 80%;
  2903. margin: auto;
  2904. margin-top: 2rem;
  2905. }
  2906. }
  2907. .page-node-type-ressource .layout__region--third {
  2908. margin-top: 3rem;
  2909. }
  2910. @media (max-width: 810px) {
  2911. .page-node-type-ressource .layout__region--third {
  2912. flex: 0 1 80%;
  2913. margin-left: 10%;
  2914. }
  2915. }
  2916. .page-node-type-ressource .layout__region--third .block-region-third {
  2917. display: flex;
  2918. flex-direction: column;
  2919. width: 70%;
  2920. }
  2921. @media (max-width: 810px) {
  2922. .page-node-type-ressource .layout__region--third .block-region-third {
  2923. width: 100%;
  2924. }
  2925. }
  2926. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  2927. height: fit-content;
  2928. border: 2px solid rgb(0, 158, 227);
  2929. background-color: rgb(255, 255, 255);
  2930. order: 2;
  2931. }
  2932. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  2933. min-height: 4rem;
  2934. background: rgb(255, 255, 255);
  2935. color: rgb(0, 158, 227);
  2936. padding-left: 1rem;
  2937. padding-top: 1rem;
  2938. padding: 1rem;
  2939. }
  2940. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  2941. display: none;
  2942. }
  2943. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  2944. height: inherit;
  2945. margin: auto;
  2946. width: fit-content;
  2947. }
  2948. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  2949. content: url("../images/pictos/download.png");
  2950. min-width: 30px;
  2951. height: auto;
  2952. padding-right: 1rem;
  2953. margin-right: 1rem;
  2954. }
  2955. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  2956. hyphens: auto;
  2957. display: inline-flex;
  2958. align-items: center;
  2959. color: rgb(0, 158, 227);
  2960. font-weight: 800;
  2961. }
  2962. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  2963. order: 3;
  2964. }
  2965. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2966. margin: auto;
  2967. height: fit-content;
  2968. border: 2px solid rgb(0, 158, 227);
  2969. min-height: 4rem;
  2970. background: rgb(255, 255, 255);
  2971. color: rgb(0, 158, 227);
  2972. padding-left: 1rem;
  2973. padding-top: 1rem;
  2974. margin-bottom: 1rem;
  2975. padding: 1rem;
  2976. }
  2977. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  2978. display: inline-flex;
  2979. align-items: center;
  2980. color: rgb(0, 158, 227);
  2981. font-weight: 800;
  2982. }
  2983. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  2984. content: url("../images/pictos/external_link.png");
  2985. min-width: 30px;
  2986. height: auto;
  2987. padding-right: 1rem;
  2988. margin-right: 1rem;
  2989. }
  2990. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  2991. display: none;
  2992. }
  2993. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2994. order: 4;
  2995. margin-top: 3rem;
  2996. }
  2997. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  2998. font-size: 0.8rem;
  2999. color: rgb(0, 0, 0);
  3000. font-weight: 900;
  3001. margin-bottom: 1rem;
  3002. }
  3003. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3004. border: 2px solid rgb(0, 158, 227);
  3005. padding: 1rem;
  3006. height: fit-content;
  3007. margin-bottom: 1rem;
  3008. background-color: rgb(255, 255, 255);
  3009. display: flex;
  3010. flex-direction: column;
  3011. }
  3012. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  3013. display: flex;
  3014. flex-direction: column;
  3015. }
  3016. .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 {
  3017. order: 2;
  3018. text-transform: uppercase;
  3019. color: rgb(0, 158, 227);
  3020. font-weight: 900;
  3021. font-size: 0.8rem;
  3022. }
  3023. .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 {
  3024. order: 3;
  3025. }
  3026. .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 {
  3027. margin: 0;
  3028. }
  3029. .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 {
  3030. color: rgb(0, 0, 0);
  3031. font-size: 1rem;
  3032. font-weight: 900;
  3033. font-style: italic;
  3034. }
  3035. .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 {
  3036. order: 4;
  3037. }
  3038. .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- {
  3039. order: 5;
  3040. font-weight: 800;
  3041. }
  3042. .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 {
  3043. margin: 0;
  3044. }
  3045. .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 {
  3046. display: none;
  3047. }
  3048. .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 {
  3049. margin: 0;
  3050. }
  3051. .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 {
  3052. display: none;
  3053. }
  3054. .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 {
  3055. order: 1;
  3056. width: 25%;
  3057. }
  3058. .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 {
  3059. width: 100%;
  3060. height: auto;
  3061. }
  3062. .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 {
  3063. order: 6;
  3064. }
  3065. .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 {
  3066. display: none;
  3067. }
  3068. .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 {
  3069. order: 7;
  3070. display: flex;
  3071. margin-top: 0.8rem;
  3072. flex-direction: row;
  3073. flex-wrap: wrap;
  3074. }
  3075. .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 {
  3076. display: none;
  3077. }
  3078. .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 {
  3079. display: flex;
  3080. flex-direction: row;
  3081. flex-wrap: wrap;
  3082. }
  3083. .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 {
  3084. padding-bottom: 0.5rem;
  3085. margin-right: 0.5rem;
  3086. padding-right: 0.3rem;
  3087. font-size: 0.8rem;
  3088. }
  3089. .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 {
  3090. background: rgb(9, 57, 139);
  3091. color: rgb(255, 255, 255);
  3092. font-weight: 800;
  3093. vertical-align: super;
  3094. padding-left: 0.1rem;
  3095. padding-right: 0.1rem;
  3096. display: inline-flex;
  3097. pointer-events: none !important;
  3098. cursor: default;
  3099. }
  3100. .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 {
  3101. display: none;
  3102. }
  3103. .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 {
  3104. order: 1;
  3105. width: 100%;
  3106. }
  3107. .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) {
  3108. display: none;
  3109. }
  3110. .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 {
  3111. width: 100%;
  3112. height: auto;
  3113. }
  3114. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3115. order: 1;
  3116. }
  3117. @media (max-width: 479px) {
  3118. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3119. margin-top: 2rem;
  3120. }
  3121. }
  3122. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  3123. display: none;
  3124. font-size: 0.8rem;
  3125. color: rgb(0, 0, 0);
  3126. font-weight: 900;
  3127. }
  3128. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  3129. display: flex;
  3130. flex-direction: column;
  3131. border-bottom: 1px solid rgb(0, 0, 0);
  3132. padding: 1rem;
  3133. height: fit-content;
  3134. margin-bottom: 3rem;
  3135. background-color: rgb(255, 255, 255);
  3136. }
  3137. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  3138. display: none;
  3139. }
  3140. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  3141. content: url("../images/pictos/picto_lieu_blue.svg");
  3142. display: inline-block;
  3143. color: rgb(9, 57, 139);
  3144. margin-right: 1rem;
  3145. }
  3146. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  3147. display: flex;
  3148. flex-direction: row;
  3149. margin-bottom: 1.5rem;
  3150. }
  3151. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  3152. content: "Voir le projet";
  3153. display: block;
  3154. color: rgb(9, 57, 139);
  3155. }
  3156. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  3157. color: rgb(9, 57, 139);
  3158. font-size: 1rem;
  3159. font-weight: 900;
  3160. }
  3161. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  3162. padding-top: 3rem;
  3163. padding-bottom: 3rem;
  3164. vertical-align: middle;
  3165. color: rgb(255, 255, 255);
  3166. }
  3167. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3168. font-family: "Source Code Pro";
  3169. font-size: 2rem;
  3170. font-weight: 800;
  3171. color: rgb(255, 255, 255);
  3172. background-color: rgb(0, 158, 227);
  3173. text-transform: uppercase;
  3174. width: fit-content;
  3175. margin-left: 10%;
  3176. margin-top: 8rem;
  3177. }
  3178. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3179. display: grid;
  3180. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  3181. }
  3182. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3183. grid-column: 2/span 3;
  3184. margin-top: 4rem;
  3185. }
  3186. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  3187. margin: auto;
  3188. background: rgb(255, 255, 255);
  3189. }
  3190. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  3191. margin: 0;
  3192. }
  3193. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  3194. grid-column: 5;
  3195. margin-top: 4rem;
  3196. background-color: rgb(0, 158, 227);
  3197. height: fit-content;
  3198. min-height: fit-content;
  3199. width: 200px;
  3200. margin-left: 2rem;
  3201. aspect-ratio: 1/1;
  3202. display: flex;
  3203. }
  3204. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  3205. display: flex;
  3206. flex-direction: column;
  3207. text-align: center;
  3208. margin: auto;
  3209. padding: 1rem;
  3210. }
  3211. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  3212. display: block;
  3213. font-weight: 800;
  3214. color: rgb(255, 255, 255);
  3215. font-size: 1.3rem;
  3216. }
  3217. .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 {
  3218. margin-left: 80%;
  3219. padding-top: 0.5rem;
  3220. display: block;
  3221. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3222. }
  3223. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3224. grid-column: 2/span 3;
  3225. }
  3226. @media (max-width: 810px) {
  3227. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3228. grid-column: 2/span 4;
  3229. }
  3230. }
  3231. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  3232. margin: auto;
  3233. }
  3234. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  3235. display: none;
  3236. background: rgb(255, 255, 255);
  3237. }
  3238. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3239. display: flex;
  3240. flex-wrap: wrap;
  3241. margin-top: 3rem;
  3242. }
  3243. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3244. width: 50%;
  3245. }
  3246. .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 {
  3247. display: flex;
  3248. justify-content: space-between;
  3249. padding: 1rem;
  3250. height: fit-content;
  3251. margin-bottom: 1rem;
  3252. background-color: rgb(255, 255, 255);
  3253. margin-right: 1rem;
  3254. }
  3255. .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 {
  3256. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3257. align-self: flex-end;
  3258. }
  3259. .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 {
  3260. display: grid;
  3261. grid-template-columns: 1fr 1fr 1fr;
  3262. grid-template-rows: repeat(6 auto);
  3263. }
  3264. .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 {
  3265. grid-column: 1/span 3;
  3266. grid-row: 1;
  3267. margin-bottom: 1rem;
  3268. text-transform: uppercase;
  3269. font-weight: 900;
  3270. font-size: 0.8rem;
  3271. }
  3272. .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 {
  3273. grid-column: 1;
  3274. grid-row: 2/span 6;
  3275. margin-right: 1rem;
  3276. max-height: 170px;
  3277. }
  3278. .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 {
  3279. max-width: 100%;
  3280. object-fit: cover;
  3281. height: auto;
  3282. max-height: 95%;
  3283. }
  3284. .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 {
  3285. grid-column: 2;
  3286. grid-row: 2;
  3287. padding-right: 0.5rem;
  3288. text-transform: uppercase;
  3289. font-weight: 800;
  3290. font-size: 1rem;
  3291. }
  3292. .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 {
  3293. grid-column: 3;
  3294. grid-row: 2;
  3295. text-transform: uppercase;
  3296. font-weight: 800;
  3297. font-size: 1rem;
  3298. }
  3299. .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 {
  3300. grid-column: 2/span 3;
  3301. grid-row: 3;
  3302. text-transform: uppercase;
  3303. font-weight: 800;
  3304. font-size: 0.8rem;
  3305. }
  3306. .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 {
  3307. grid-column: 2/span 3;
  3308. grid-row: 4;
  3309. font-size: 1.3rem;
  3310. }
  3311. .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 {
  3312. color: rgb(0, 0, 0);
  3313. }
  3314. .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 {
  3315. grid-column: 2/span 3;
  3316. grid-row: 5;
  3317. text-transform: uppercase;
  3318. font-weight: 800;
  3319. font-size: 0.8rem;
  3320. }
  3321. .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 {
  3322. display: inline-flex;
  3323. grid-column: 2/span 3;
  3324. grid-row: 6;
  3325. font-size: 0.8rem;
  3326. padding-top: 1rem;
  3327. justify-content: flex-start;
  3328. }
  3329. .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 {
  3330. justify-self: flex-start;
  3331. }
  3332. .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 {
  3333. content: "proposé le";
  3334. hyphens: none;
  3335. padding-right: 0.5rem;
  3336. }
  3337. .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 {
  3338. border: 2px solid rgb(255, 0, 15);
  3339. }
  3340. .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 {
  3341. border: 2px solid rgb(160, 26, 39);
  3342. }
  3343. .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 {
  3344. border: 2px solid rgb(199, 215, 74);
  3345. }
  3346. .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 {
  3347. border: 2px solid rgb(255, 100, 83);
  3348. }
  3349. .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 {
  3350. border: 2px solid rgb(111, 109, 125);
  3351. }
  3352. @media (max-width: 810px) {
  3353. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3354. flex-direction: column;
  3355. }
  3356. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3357. width: 100%;
  3358. }
  3359. }
  3360. @media (max-width: 810px) {
  3361. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3362. display: flex;
  3363. flex-direction: column;
  3364. padding: 2rem;
  3365. }
  3366. }
  3367. .page-node-type-offre-de-service {
  3368. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  3369. background-repeat: no-repeat;
  3370. background-position-y: 7rem;
  3371. max-width: 100vw;
  3372. background-size: contain;
  3373. }
  3374. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3375. margin-top: 2rem;
  3376. margin-left: 13%;
  3377. display: grid;
  3378. grid-template-columns: auto auto 1fr;
  3379. grid-template-rows: repeat(6 auto);
  3380. }
  3381. @media (max-width: 810px) {
  3382. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3383. margin-left: 8%;
  3384. }
  3385. }
  3386. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3387. width: fit-content;
  3388. grid-column: 1;
  3389. grid-row: 1/span 6;
  3390. width: 250px;
  3391. height: 250px;
  3392. margin-right: 2rem;
  3393. }
  3394. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  3395. width: 100%;
  3396. height: auto;
  3397. }
  3398. @media (max-width: 810px) {
  3399. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3400. width: 90px;
  3401. height: 90px;
  3402. }
  3403. }
  3404. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  3405. background: rgb(255, 255, 255);
  3406. width: fit-content;
  3407. grid-column: 2/span 3;
  3408. grid-row: 1;
  3409. text-transform: uppercase;
  3410. font-weight: 900;
  3411. font-size: 0.8rem;
  3412. }
  3413. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  3414. color: rgb(255, 0, 15);
  3415. }
  3416. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  3417. color: rgb(160, 26, 39);
  3418. }
  3419. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  3420. color: rgb(199, 215, 74);
  3421. }
  3422. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  3423. color: rgb(255, 100, 83);
  3424. }
  3425. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  3426. color: rgb(111, 109, 125);
  3427. }
  3428. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  3429. background: rgb(255, 255, 255);
  3430. width: fit-content;
  3431. grid-column: 2;
  3432. grid-row: 2;
  3433. padding-right: 0.5rem;
  3434. text-transform: uppercase;
  3435. font-weight: 900;
  3436. font-size: 1.5rem;
  3437. }
  3438. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  3439. background: rgb(255, 255, 255);
  3440. width: fit-content;
  3441. grid-column: 3;
  3442. grid-row: 2;
  3443. text-transform: uppercase;
  3444. font-weight: 900;
  3445. font-size: 1.5rem;
  3446. }
  3447. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  3448. background: rgb(255, 255, 255);
  3449. width: fit-content;
  3450. grid-column: 2/span 3;
  3451. grid-row: 3;
  3452. text-transform: uppercase;
  3453. font-weight: 800;
  3454. font-size: 1.2rem;
  3455. margin-top: 0.5rem;
  3456. }
  3457. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  3458. 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>');
  3459. }
  3460. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3461. background: rgb(255, 255, 255);
  3462. width: fit-content;
  3463. grid-column: 2/span 3;
  3464. grid-row: 4;
  3465. font-size: 2.5rem;
  3466. font-family: "Source Code Pro";
  3467. width: 70%;
  3468. }
  3469. @media (max-width: 810px) {
  3470. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3471. font-size: 1.2rem;
  3472. }
  3473. }
  3474. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  3475. color: rgb(0, 0, 0);
  3476. }
  3477. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  3478. background: rgb(255, 255, 255);
  3479. width: fit-content;
  3480. grid-column: 2/span 3;
  3481. grid-row: 5;
  3482. text-transform: uppercase;
  3483. font-weight: 800;
  3484. font-size: 0.8rem;
  3485. margin-top: 1.5rem;
  3486. }
  3487. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3488. background: rgb(255, 255, 255);
  3489. width: fit-content;
  3490. grid-column: 2/span 3;
  3491. grid-row: 6;
  3492. font-size: 0.8rem;
  3493. padding-top: 1rem;
  3494. }
  3495. .page-node-type-offre-de-service .layout__region--second {
  3496. margin-top: 3rem;
  3497. margin-left: 20%;
  3498. margin-right: 2rem;
  3499. }
  3500. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3501. background: rgb(255, 255, 255);
  3502. }
  3503. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3504. margin: 0;
  3505. }
  3506. @media (max-width: 810px) {
  3507. .page-node-type-offre-de-service .layout__region--second {
  3508. margin-left: 10%;
  3509. }
  3510. }
  3511. .page-node-type-offre-de-service .layout__region--third {
  3512. margin-top: 3rem;
  3513. }
  3514. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3515. display: flex;
  3516. flex-direction: column;
  3517. width: 70%;
  3518. }
  3519. @media (max-width: 810px) {
  3520. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3521. margin: auto;
  3522. }
  3523. }
  3524. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3525. background: rgb(0, 158, 227);
  3526. color: rgb(255, 255, 255);
  3527. text-transform: uppercase;
  3528. font-weight: 900;
  3529. font-size: 0.8rem;
  3530. padding-top: 1rem;
  3531. padding-left: 1rem;
  3532. padding-right: 1rem;
  3533. }
  3534. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3535. background: rgb(0, 158, 227);
  3536. color: rgb(255, 255, 255);
  3537. font-weight: 600;
  3538. padding-left: 1rem;
  3539. padding-right: 1rem;
  3540. padding-bottom: 1rem;
  3541. }
  3542. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3543. color: white;
  3544. hyphens: auto;
  3545. }
  3546. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3547. display: none;
  3548. }
  3549. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3550. display: none;
  3551. background: rgb(0, 158, 227);
  3552. color: rgb(255, 255, 255);
  3553. font-weight: 600;
  3554. padding-left: 1rem;
  3555. padding-right: 1rem;
  3556. padding-bottom: 1rem;
  3557. }
  3558. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3559. height: fit-content;
  3560. border: 2px solid rgb(0, 158, 227);
  3561. background-color: rgb(255, 255, 255);
  3562. margin-top: 1rem;
  3563. }
  3564. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3565. min-height: 4rem;
  3566. background: rgb(255, 255, 255);
  3567. color: rgb(0, 158, 227);
  3568. padding-left: 1rem;
  3569. padding-top: 1rem;
  3570. margin-bottom: 1rem;
  3571. }
  3572. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3573. display: none;
  3574. }
  3575. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3576. height: inherit;
  3577. margin: auto;
  3578. }
  3579. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3580. content: url("../images/pictos/noun_Download_file_307900.svg");
  3581. min-width: 50px;
  3582. height: auto;
  3583. padding-right: 1rem;
  3584. }
  3585. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3586. hyphens: auto;
  3587. display: inline-flex;
  3588. align-items: center;
  3589. color: rgb(0, 158, 227);
  3590. font-weight: 800;
  3591. }
  3592. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3593. margin-top: 1rem;
  3594. }
  3595. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3596. margin: auto;
  3597. height: fit-content;
  3598. border: 2px solid rgb(0, 158, 227);
  3599. min-height: 4rem;
  3600. background: rgb(255, 255, 255);
  3601. color: rgb(0, 158, 227);
  3602. padding-left: 1rem;
  3603. padding-top: 1rem;
  3604. margin-bottom: 1rem;
  3605. }
  3606. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3607. display: inline-flex;
  3608. align-items: center;
  3609. color: rgb(0, 158, 227);
  3610. font-weight: 800;
  3611. }
  3612. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3613. content: url("../images/pictos/external_link.png");
  3614. min-width: 50px;
  3615. height: auto;
  3616. padding-right: 1rem;
  3617. }
  3618. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3619. display: none;
  3620. }
  3621. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3622. margin-top: 3rem;
  3623. }
  3624. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3625. font-size: 0.8rem;
  3626. color: rgb(0, 0, 0);
  3627. font-weight: 900;
  3628. margin-bottom: 1rem;
  3629. }
  3630. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3631. display: flex;
  3632. flex-direction: column;
  3633. border: 2px solid rgb(0, 158, 227);
  3634. padding: 1rem;
  3635. height: fit-content;
  3636. margin-bottom: 1rem;
  3637. background-color: rgb(255, 255, 255);
  3638. }
  3639. .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 {
  3640. border-top: 1px solid rgb(0, 158, 227);
  3641. padding-top: 1rem;
  3642. }
  3643. .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 {
  3644. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3645. align-self: flex-end;
  3646. }
  3647. .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 {
  3648. margin: 0;
  3649. }
  3650. .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 {
  3651. color: rgb(0, 0, 0);
  3652. font-size: 1.4rem;
  3653. font-weight: 600;
  3654. }
  3655. .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- {
  3656. font-weight: 800;
  3657. }
  3658. .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 {
  3659. margin: 0;
  3660. }
  3661. .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 {
  3662. display: none;
  3663. }
  3664. .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 {
  3665. margin: 0;
  3666. }
  3667. .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 {
  3668. display: none;
  3669. }
  3670. .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 {
  3671. display: none;
  3672. width: 50%;
  3673. }
  3674. .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 {
  3675. width: 100%;
  3676. height: auto;
  3677. }
  3678. .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 {
  3679. display: inline-flex;
  3680. margin-top: 2rem;
  3681. background: rgb(9, 57, 139);
  3682. margin-right: 1rem;
  3683. padding-left: 0.3rem;
  3684. padding-right: 0.3rem;
  3685. color: rgb(255, 255, 255);
  3686. font-weight: 800;
  3687. vertical-align: middle;
  3688. }
  3689. .path-ressources.annuairederecherche .layout-content {
  3690. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3691. background-repeat: no-repeat;
  3692. background-position-y: 7rem;
  3693. max-width: 100vw;
  3694. background-size: cover;
  3695. }
  3696. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3697. padding-top: 8rem;
  3698. }
  3699. @media (max-width: 479px) {
  3700. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3701. padding-top: 5rem;
  3702. padding-left: 5rem;
  3703. }
  3704. }
  3705. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3706. padding-top: 3rem;
  3707. padding-bottom: 3rem;
  3708. vertical-align: middle;
  3709. color: rgb(255, 255, 255);
  3710. }
  3711. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3712. display: inline;
  3713. font-family: "Source Code Pro";
  3714. font-size: 2rem;
  3715. font-weight: 800;
  3716. color: rgb(255, 255, 255);
  3717. background-color: rgb(0, 158, 227);
  3718. text-transform: uppercase;
  3719. width: fit-content;
  3720. margin-left: 10%;
  3721. margin-top: 8rem;
  3722. }
  3723. @media (max-width: 479px) {
  3724. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3725. margin-right: 37%;
  3726. margin-bottom: 2rem;
  3727. margin-left: 0;
  3728. }
  3729. }
  3730. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3731. padding-top: 3rem;
  3732. flex: 0 1 50%;
  3733. margin-left: 20%;
  3734. }
  3735. @media (max-width: 479px) {
  3736. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3737. flex: 0 1 80%;
  3738. margin: 0;
  3739. }
  3740. }
  3741. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  3742. background-color: rgb(255, 255, 255);
  3743. margin-bottom: 4rem;
  3744. }
  3745. .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_ {
  3746. margin-bottom: 3rem;
  3747. }
  3748. .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 {
  3749. grid-column: 1;
  3750. grid-row: 1/span 3;
  3751. margin-right: 1rem;
  3752. max-height: 8rem;
  3753. }
  3754. .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 {
  3755. height: 8rem;
  3756. width: 8rem;
  3757. }
  3758. .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 {
  3759. height: 100%;
  3760. width: 100%;
  3761. object-fit: contain;
  3762. }
  3763. .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 {
  3764. grid-column: 2;
  3765. font-weight: 800;
  3766. background-color: rgb(255, 255, 255);
  3767. }
  3768. .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 {
  3769. background-color: rgb(255, 255, 255);
  3770. grid-column: 2;
  3771. }
  3772. .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 {
  3773. margin: 0;
  3774. }
  3775. .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 {
  3776. background-color: rgb(255, 255, 255);
  3777. grid-column: 2;
  3778. }
  3779. .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 {
  3780. color: rgb(0, 0, 0);
  3781. text-decoration: underline;
  3782. }
  3783. .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 {
  3784. display: none;
  3785. }
  3786. .path-webform .region-content [aria-label="Message d'avertissement"] {
  3787. display: none;
  3788. }
  3789. .path-webform .region-content .block-system-main-block h2 {
  3790. display: none;
  3791. }
  3792. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  3793. display: flex;
  3794. flex-direction: row;
  3795. flex-wrap: wrap;
  3796. flex-basis: auto;
  3797. justify-content: flex-start;
  3798. }
  3799. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  3800. width: 100%;
  3801. font-family: "Source Code Pro";
  3802. font-size: 1.5rem;
  3803. font-weight: 800;
  3804. color: rgb(255, 255, 255);
  3805. background-color: rgb(0, 158, 227);
  3806. text-transform: uppercase;
  3807. padding-left: 13%;
  3808. padding-top: 2rem;
  3809. padding-bottom: 2rem;
  3810. vertical-align: middle;
  3811. }
  3812. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  3813. width: 100%;
  3814. font-family: "Source Code Pro";
  3815. font-size: 2rem;
  3816. font-weight: 800;
  3817. color: rgb(255, 255, 255);
  3818. background-color: rgb(0, 158, 227);
  3819. text-transform: uppercase;
  3820. width: fit-content;
  3821. margin-left: 13%;
  3822. margin-top: 8rem;
  3823. }
  3824. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  3825. margin-top: 10vh;
  3826. margin-left: 13%;
  3827. margin-right: 20%;
  3828. width: 60%;
  3829. }
  3830. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  3831. margin-left: 13%;
  3832. margin-right: 20%;
  3833. width: 60%;
  3834. display: flex;
  3835. flex-direction: row;
  3836. flex-wrap: wrap;
  3837. margin-top: 2rem;
  3838. }
  3839. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  3840. content: "*";
  3841. color: red;
  3842. font-size: 2rem;
  3843. padding-left: 0.5rem;
  3844. }
  3845. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  3846. width: 100%;
  3847. }
  3848. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  3849. width: 90%;
  3850. height: 5rem;
  3851. }
  3852. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  3853. margin-left: 13%;
  3854. margin-right: 20%;
  3855. width: 60%;
  3856. display: flex;
  3857. flex-direction: row;
  3858. flex-wrap: wrap;
  3859. margin-top: 2rem;
  3860. }
  3861. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  3862. content: "*";
  3863. color: red;
  3864. font-size: 2rem;
  3865. padding-left: 0.5rem;
  3866. }
  3867. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  3868. width: 100%;
  3869. }
  3870. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  3871. width: 90%;
  3872. }
  3873. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  3874. margin-left: 13%;
  3875. width: 27%;
  3876. display: flex;
  3877. flex-direction: row;
  3878. flex-wrap: wrap;
  3879. margin-top: 2rem;
  3880. }
  3881. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  3882. content: "*";
  3883. color: red;
  3884. font-size: 2rem;
  3885. padding-left: 0.5rem;
  3886. }
  3887. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  3888. width: 100%;
  3889. }
  3890. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  3891. width: 90%;
  3892. }
  3893. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  3894. margin-right: 20%;
  3895. width: 27%;
  3896. display: flex;
  3897. flex-direction: row;
  3898. flex-wrap: wrap;
  3899. margin-top: 2rem;
  3900. margin-right: 3rem;
  3901. }
  3902. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  3903. width: 100%;
  3904. }
  3905. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  3906. width: 100%;
  3907. }
  3908. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  3909. margin-left: 13%;
  3910. margin-right: 20%;
  3911. width: 60%;
  3912. display: flex;
  3913. flex-direction: row;
  3914. flex-wrap: wrap;
  3915. margin-top: 2rem;
  3916. }
  3917. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  3918. content: "*";
  3919. color: red;
  3920. font-size: 2rem;
  3921. padding-left: 0.5rem;
  3922. }
  3923. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  3924. width: 100%;
  3925. }
  3926. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  3927. width: 90%;
  3928. }
  3929. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  3930. margin-left: 13%;
  3931. margin-right: 20%;
  3932. width: 60%;
  3933. display: flex;
  3934. flex-direction: row;
  3935. flex-wrap: wrap;
  3936. margin-top: 2rem;
  3937. }
  3938. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  3939. content: "*";
  3940. color: red;
  3941. font-size: 2rem;
  3942. padding-left: 0.5rem;
  3943. }
  3944. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  3945. width: 100%;
  3946. }
  3947. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  3948. width: 90%;
  3949. }
  3950. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  3951. margin-left: 13%;
  3952. margin-right: 20%;
  3953. width: 60%;
  3954. display: flex;
  3955. flex-direction: row;
  3956. flex-wrap: wrap;
  3957. margin-top: 2rem;
  3958. }
  3959. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  3960. content: "*";
  3961. color: red;
  3962. font-size: 2rem;
  3963. padding-left: 1rem;
  3964. }
  3965. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  3966. width: 100%;
  3967. }
  3968. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  3969. width: 90%;
  3970. }
  3971. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  3972. width: 100%;
  3973. }
  3974. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  3975. margin-left: 13%;
  3976. margin-right: 20%;
  3977. width: 60%;
  3978. display: flex;
  3979. flex-direction: row;
  3980. flex-wrap: wrap;
  3981. margin-top: 2rem;
  3982. }
  3983. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  3984. width: 100%;
  3985. }
  3986. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  3987. width: 90%;
  3988. height: 3rem;
  3989. }
  3990. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  3991. margin-left: 13%;
  3992. margin-right: 20%;
  3993. width: 60%;
  3994. display: flex;
  3995. flex-direction: row;
  3996. flex-wrap: wrap;
  3997. margin-top: 2rem;
  3998. }
  3999. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  4000. width: 100%;
  4001. }
  4002. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  4003. margin-left: 13%;
  4004. margin-right: 20%;
  4005. width: 60%;
  4006. display: flex;
  4007. flex-direction: row;
  4008. flex-wrap: wrap;
  4009. margin-top: 2rem;
  4010. }
  4011. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet label {
  4012. width: 100%;
  4013. }
  4014. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  4015. width: 90%;
  4016. height: 3rem;
  4017. }
  4018. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  4019. margin-left: 13%;
  4020. width: 28%;
  4021. display: flex;
  4022. flex-direction: row;
  4023. flex-wrap: wrap;
  4024. margin-top: 2rem;
  4025. }
  4026. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  4027. content: "*";
  4028. color: red;
  4029. font-size: 2rem;
  4030. padding-left: 0.5rem;
  4031. }
  4032. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  4033. width: 100%;
  4034. }
  4035. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  4036. width: 90%;
  4037. }
  4038. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  4039. margin-right: 20%;
  4040. width: 29%;
  4041. display: flex;
  4042. flex-direction: row;
  4043. flex-wrap: wrap;
  4044. margin-top: 2rem;
  4045. margin-right: 3rem;
  4046. }
  4047. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  4048. content: "*";
  4049. color: red;
  4050. font-size: 2rem;
  4051. padding-left: 0.5rem;
  4052. }
  4053. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  4054. width: 100%;
  4055. }
  4056. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  4057. width: 90%;
  4058. }
  4059. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  4060. width: 60%;
  4061. }
  4062. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  4063. width: 30%;
  4064. align-self: flex-end;
  4065. background-color: rgb(0, 158, 227);
  4066. text-transform: uppercase;
  4067. color: rgb(255, 255, 255);
  4068. font-size: 1.2rem;
  4069. font-weight: 600;
  4070. float: right;
  4071. margin-top: 1rem;
  4072. border: none;
  4073. }
  4074. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  4075. 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>');
  4076. }
  4077. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  4078. display: flex;
  4079. flex-direction: row;
  4080. flex-wrap: wrap;
  4081. flex-basis: auto;
  4082. justify-content: flex-start;
  4083. }
  4084. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  4085. width: 100%;
  4086. font-family: "Source Code Pro";
  4087. font-size: 1.5rem;
  4088. font-weight: 800;
  4089. color: rgb(255, 255, 255);
  4090. background-color: rgb(0, 158, 227);
  4091. text-transform: uppercase;
  4092. padding-left: 13%;
  4093. padding-top: 2rem;
  4094. padding-bottom: 2rem;
  4095. vertical-align: middle;
  4096. }
  4097. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  4098. width: 100%;
  4099. font-family: "Source Code Pro";
  4100. font-size: 2rem;
  4101. font-weight: 800;
  4102. color: rgb(255, 255, 255);
  4103. background-color: rgb(0, 158, 227);
  4104. text-transform: uppercase;
  4105. width: fit-content;
  4106. margin-left: 13%;
  4107. margin-top: 8rem;
  4108. }
  4109. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  4110. margin-top: 10vh;
  4111. margin-left: 13%;
  4112. margin-right: 20%;
  4113. width: 60%;
  4114. }
  4115. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  4116. margin-left: 13%;
  4117. margin-right: 20%;
  4118. width: 60%;
  4119. display: flex;
  4120. flex-direction: row;
  4121. flex-wrap: wrap;
  4122. margin-top: 2rem;
  4123. }
  4124. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  4125. content: "*";
  4126. color: red;
  4127. font-size: 2rem;
  4128. padding-left: 0.5rem;
  4129. }
  4130. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  4131. width: 100%;
  4132. }
  4133. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  4134. width: 90%;
  4135. height: 5rem;
  4136. }
  4137. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  4138. margin-left: 13%;
  4139. margin-right: 20%;
  4140. width: 60%;
  4141. display: flex;
  4142. flex-direction: row;
  4143. flex-wrap: wrap;
  4144. margin-top: 2rem;
  4145. }
  4146. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  4147. content: "*";
  4148. color: red;
  4149. font-size: 2rem;
  4150. padding-left: 0.5rem;
  4151. }
  4152. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  4153. width: 100%;
  4154. }
  4155. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  4156. width: 90%;
  4157. }
  4158. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  4159. margin-left: 13%;
  4160. margin-right: 20%;
  4161. width: 60%;
  4162. display: flex;
  4163. flex-direction: row;
  4164. flex-wrap: wrap;
  4165. margin-top: 2rem;
  4166. }
  4167. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  4168. content: "*";
  4169. color: red;
  4170. font-size: 2rem;
  4171. padding-left: 0.5rem;
  4172. }
  4173. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  4174. width: 100%;
  4175. }
  4176. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  4177. width: 90%;
  4178. }
  4179. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  4180. width: 100%;
  4181. }
  4182. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  4183. margin-left: 13%;
  4184. margin-right: 20%;
  4185. width: 60%;
  4186. display: flex;
  4187. flex-direction: row;
  4188. flex-wrap: wrap;
  4189. margin-top: 2rem;
  4190. }
  4191. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  4192. width: 100%;
  4193. }
  4194. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  4195. width: 90%;
  4196. }
  4197. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  4198. margin-left: 13%;
  4199. margin-right: 20%;
  4200. width: 60%;
  4201. display: flex;
  4202. flex-direction: row;
  4203. flex-wrap: wrap;
  4204. margin-top: 2rem;
  4205. }
  4206. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  4207. width: 100%;
  4208. }
  4209. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  4210. width: 90%;
  4211. }
  4212. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  4213. margin-left: 13%;
  4214. margin-right: 20%;
  4215. width: 60%;
  4216. display: flex;
  4217. flex-direction: row;
  4218. flex-wrap: wrap;
  4219. margin-top: 2rem;
  4220. }
  4221. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  4222. margin-left: 13%;
  4223. margin-right: 20%;
  4224. width: 60%;
  4225. display: flex;
  4226. flex-direction: row;
  4227. flex-wrap: wrap;
  4228. margin-top: 2rem;
  4229. }
  4230. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  4231. width: 100%;
  4232. }
  4233. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  4234. margin-left: 13%;
  4235. margin-right: 20%;
  4236. width: 60%;
  4237. display: flex;
  4238. flex-direction: row;
  4239. flex-wrap: wrap;
  4240. margin-top: 2rem;
  4241. }
  4242. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  4243. content: "*";
  4244. color: red;
  4245. font-size: 2rem;
  4246. padding-left: 0.5rem;
  4247. }
  4248. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  4249. width: 100%;
  4250. }
  4251. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  4252. width: 90%;
  4253. }
  4254. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  4255. margin-left: 13%;
  4256. display: flex;
  4257. flex-direction: row;
  4258. flex-wrap: wrap;
  4259. margin-top: 2rem;
  4260. width: 28%;
  4261. }
  4262. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  4263. content: "*";
  4264. color: red;
  4265. font-size: 2rem;
  4266. padding-left: 0.5rem;
  4267. }
  4268. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  4269. width: 100%;
  4270. }
  4271. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  4272. width: 90%;
  4273. }
  4274. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  4275. margin-right: 20%;
  4276. width: 29%;
  4277. display: flex;
  4278. flex-direction: row;
  4279. flex-wrap: wrap;
  4280. margin-top: 2rem;
  4281. margin-right: 3rem;
  4282. }
  4283. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  4284. content: "*";
  4285. color: red;
  4286. font-size: 2rem;
  4287. padding-left: 0.5rem;
  4288. }
  4289. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  4290. width: 100%;
  4291. }
  4292. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  4293. width: 90%;
  4294. }
  4295. .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 {
  4296. margin-top: 3rem;
  4297. margin-bottom: 3rem;
  4298. margin-left: 13%;
  4299. margin-right: 20%;
  4300. width: 60%;
  4301. }
  4302. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  4303. width: 60%;
  4304. }
  4305. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  4306. width: 30%;
  4307. align-self: flex-end;
  4308. background-color: rgb(0, 158, 227);
  4309. text-transform: uppercase;
  4310. color: rgb(255, 255, 255);
  4311. font-size: 1.2rem;
  4312. font-weight: 600;
  4313. float: right;
  4314. margin-top: 1rem;
  4315. border: none;
  4316. }
  4317. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  4318. 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>');
  4319. }
  4320. .path-webform .region-content #webform-submission-question-add-form {
  4321. display: flex;
  4322. flex-direction: row;
  4323. flex-wrap: wrap;
  4324. flex-basis: auto;
  4325. justify-content: flex-start;
  4326. margin-top: 10vh;
  4327. width: 60%;
  4328. margin-left: 13%;
  4329. margin-right: 20%;
  4330. }
  4331. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  4332. display: flex;
  4333. flex-direction: row;
  4334. flex-wrap: wrap;
  4335. margin-top: 2rem;
  4336. width: 100%;
  4337. }
  4338. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  4339. content: "*";
  4340. color: red;
  4341. font-size: 2rem;
  4342. padding-left: 0.5rem;
  4343. }
  4344. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  4345. width: 100%;
  4346. }
  4347. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  4348. width: 90%;
  4349. }
  4350. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  4351. display: flex;
  4352. flex-direction: row;
  4353. flex-wrap: wrap;
  4354. margin-top: 2rem;
  4355. width: 100%;
  4356. }
  4357. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  4358. content: "*";
  4359. color: red;
  4360. font-size: 2rem;
  4361. padding-left: 0.9rem;
  4362. }
  4363. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  4364. width: 100%;
  4365. }
  4366. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  4367. width: 90%;
  4368. }
  4369. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  4370. width: 100%;
  4371. height: 5rem;
  4372. }
  4373. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  4374. width: 90%;
  4375. }
  4376. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  4377. width: 30%;
  4378. align-self: flex-end;
  4379. background-color: rgb(0, 158, 227);
  4380. text-transform: uppercase;
  4381. color: rgb(255, 255, 255);
  4382. font-size: 1.2rem;
  4383. font-weight: 600;
  4384. float: right;
  4385. margin-top: 1rem;
  4386. border: none;
  4387. }
  4388. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  4389. 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>');
  4390. }
  4391. .path-projets .region-content #block-contenudelapageprincipale span {
  4392. padding-top: 3rem;
  4393. padding-bottom: 3rem;
  4394. vertical-align: middle;
  4395. }
  4396. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  4397. margin: 0;
  4398. padding-top: 2rem;
  4399. height: 4rem;
  4400. color: rgb(255, 255, 255);
  4401. font-family: "Source Code Pro";
  4402. text-transform: uppercase;
  4403. background: rgb(0, 158, 227);
  4404. padding-left: 13%;
  4405. }
  4406. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4407. display: grid;
  4408. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  4409. }
  4410. @media (max-width: 810px) {
  4411. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4412. display: flex;
  4413. flex-direction: column;
  4414. }
  4415. }
  4416. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  4417. grid-column: 1/span 10;
  4418. }
  4419. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  4420. overflow: scroll;
  4421. height: 210px;
  4422. margin: 17px 10px 17px 20px !important;
  4423. padding-right: 10px;
  4424. }
  4425. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a {
  4426. display: none;
  4427. }
  4428. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:nth-child(1) {
  4429. display: block !important;
  4430. }
  4431. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:last-of-type {
  4432. display: block !important;
  4433. }
  4434. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content #text {
  4435. display: none;
  4436. }
  4437. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4438. grid-column: 3/span 5;
  4439. margin: auto;
  4440. }
  4441. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  4442. display: none;
  4443. }
  4444. .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) {
  4445. font-size: 1.5rem;
  4446. }
  4447. @media (max-width: 810px) {
  4448. .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) {
  4449. font-size: 1.3rem;
  4450. }
  4451. }
  4452. @media (max-width: 810px) {
  4453. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4454. padding: 1rem;
  4455. }
  4456. }
  4457. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4458. grid-column: 8/span 9;
  4459. margin-top: 4rem;
  4460. background-color: rgb(0, 158, 227);
  4461. height: fit-content;
  4462. width: 60%;
  4463. margin-left: 2rem;
  4464. grid-row: 2;
  4465. }
  4466. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  4467. display: block;
  4468. }
  4469. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  4470. display: flex;
  4471. flex-direction: column;
  4472. margin-top: 2rem;
  4473. margin-bottom: 2rem;
  4474. margin-left: 1.5rem;
  4475. margin-right: 1.5rem;
  4476. text-align: center;
  4477. }
  4478. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  4479. font-weight: 800;
  4480. color: rgb(255, 255, 255);
  4481. font-size: 1.3rem;
  4482. }
  4483. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  4484. margin-left: auto;
  4485. padding-top: 1rem;
  4486. display: block;
  4487. content: url("../images/pictos/noun_Arrow_3771902.svg");
  4488. }
  4489. @media (max-width: 810px) {
  4490. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4491. margin: auto;
  4492. }
  4493. }
  4494. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4495. grid-column: 2/span 7;
  4496. }
  4497. @media (max-width: 810px) {
  4498. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4499. padding: 1rem;
  4500. }
  4501. }
  4502. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4503. display: none;
  4504. }
  4505. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4506. margin: auto;
  4507. }
  4508. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4509. scroll-margin-top: 10rem;
  4510. }
  4511. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4512. margin-top: 4rem;
  4513. padding-left: 0.5rem;
  4514. display: flex;
  4515. flex-direction: column;
  4516. }
  4517. @media (max-width: 479px) {
  4518. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4519. flex-direction: column;
  4520. padding-bottom: 3rem;
  4521. margin-top: 0rem;
  4522. }
  4523. }
  4524. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4525. content: "Filtrer par :";
  4526. margin-right: 2rem;
  4527. margin-bottom: 1rem;
  4528. margin-left: 0.5rem;
  4529. font-weight: 900;
  4530. min-width: fit-content;
  4531. }
  4532. @media (max-width: 479px) {
  4533. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4534. padding-bottom: 1rem;
  4535. }
  4536. }
  4537. .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 {
  4538. margin-top: 2rem;
  4539. display: flex;
  4540. flex-direction: row;
  4541. flex-wrap: wrap;
  4542. }
  4543. @media (max-width: 810px) {
  4544. .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 {
  4545. flex-direction: column;
  4546. }
  4547. }
  4548. .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 {
  4549. width: 25%;
  4550. }
  4551. @media (max-width: 810px) {
  4552. .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 {
  4553. width: 100%;
  4554. }
  4555. }
  4556. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4557. color: rgb(9, 57, 139);
  4558. line-height: 1.5rem;
  4559. padding: 0.5rem;
  4560. padding-right: 1rem;
  4561. padding-left: 1rem;
  4562. }
  4563. @media (max-width: 479px) {
  4564. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4565. padding-left: 0rem;
  4566. padding-right: 0rem;
  4567. padding-top: 2rem;
  4568. }
  4569. }
  4570. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4571. display: flex;
  4572. flex-direction: column;
  4573. }
  4574. .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 {
  4575. color: rgb(9, 57, 139);
  4576. }
  4577. .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 {
  4578. order: 1;
  4579. }
  4580. .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 {
  4581. display: none;
  4582. }
  4583. .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 {
  4584. display: block;
  4585. }
  4586. .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 {
  4587. width: 100%;
  4588. max-height: 175px;
  4589. object-fit: cover;
  4590. }
  4591. .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 {
  4592. display: block;
  4593. 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>');
  4594. }
  4595. .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 {
  4596. order: 2;
  4597. display: flex;
  4598. text-transform: uppercase;
  4599. font-size: 0.9rem;
  4600. font-weight: 800;
  4601. margin-top: 0.8rem;
  4602. line-height: 1rem;
  4603. }
  4604. .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 {
  4605. display: flex;
  4606. flex-direction: row;
  4607. margin: 0;
  4608. }
  4609. .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 {
  4610. display: none;
  4611. }
  4612. .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 {
  4613. padding-top: 0 !important;
  4614. padding-bottom: 0 !important;
  4615. }
  4616. .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 {
  4617. content: ",";
  4618. margin-right: 0.3rem;
  4619. }
  4620. .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 {
  4621. padding-top: 0 !important;
  4622. padding-bottom: 0 !important;
  4623. }
  4624. .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 {
  4625. margin-top: 0.5rem;
  4626. font-size: 0.9rem;
  4627. font-weight: 800;
  4628. order: 4;
  4629. }
  4630. .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 {
  4631. order: 3;
  4632. margin-top: 0.5rem;
  4633. font-size: 0.8rem;
  4634. font-weight: 800;
  4635. }
  4636. .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 {
  4637. margin: 0;
  4638. }
  4639. .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 {
  4640. order: 4;
  4641. color: red;
  4642. margin-top: 0.8rem;
  4643. font-size: 0.7rem;
  4644. }
  4645. .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 {
  4646. display: none;
  4647. }
  4648. .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 {
  4649. display: none;
  4650. }
  4651. .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 {
  4652. display: none;
  4653. }
  4654. .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 {
  4655. display: none;
  4656. }
  4657. .path-node.page-node-type-projet .layout-container {
  4658. overflow: unset;
  4659. }
  4660. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4661. padding-top: 4rem;
  4662. margin-left: 10%;
  4663. margin-right: 10%;
  4664. width: 80vw;
  4665. }
  4666. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4667. display: flex;
  4668. flex-direction: row;
  4669. margin-bottom: 2rem;
  4670. }
  4671. @media (max-width: 568px) {
  4672. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4673. flex-direction: column;
  4674. }
  4675. }
  4676. .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 {
  4677. width: 60%;
  4678. padding-right: 2rem;
  4679. }
  4680. @media (max-width: 568px) {
  4681. .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 {
  4682. width: 100%;
  4683. }
  4684. }
  4685. .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 {
  4686. height: auto;
  4687. max-height: 600px;
  4688. object-fit: contain;
  4689. width: inherit;
  4690. }
  4691. @media (max-width: 810px) {
  4692. .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 {
  4693. padding-top: 1rem;
  4694. object-fit: cover;
  4695. width: 100%;
  4696. }
  4697. }
  4698. @media (max-width: 568px) {
  4699. .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 {
  4700. width: 100%;
  4701. max-height: 300px;
  4702. }
  4703. }
  4704. .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 {
  4705. display: inline-block;
  4706. }
  4707. .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 {
  4708. display: none;
  4709. }
  4710. .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 {
  4711. opacity: 1 !important;
  4712. top: 0 !important;
  4713. }
  4714. .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 {
  4715. top: 98% !important;
  4716. }
  4717. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4718. width: 40%;
  4719. }
  4720. @media (max-width: 568px) {
  4721. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4722. width: 100%;
  4723. }
  4724. }
  4725. .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 {
  4726. margin: 0;
  4727. }
  4728. .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 {
  4729. font-family: "Marianne";
  4730. font-size: 2.3rem;
  4731. font-weight: 800;
  4732. color: rgb(0, 158, 227);
  4733. }
  4734. @media (max-width: 1624px) {
  4735. .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 {
  4736. font-size: 2.3rem;
  4737. }
  4738. }
  4739. @media (max-width: 1384px) {
  4740. .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 {
  4741. font-size: 2rem;
  4742. }
  4743. }
  4744. @media (max-width: 1216px) {
  4745. .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 {
  4746. font-size: rem;
  4747. }
  4748. }
  4749. @media (max-width: 810px) {
  4750. .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 {
  4751. font-size: 1.7rem;
  4752. }
  4753. }
  4754. .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 {
  4755. margin-top: 2rem;
  4756. }
  4757. @media (max-width: 1624px) {
  4758. .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 {
  4759. margin-top: 1rem;
  4760. padding-top: 0.5rem;
  4761. }
  4762. }
  4763. @media (max-width: 1384px) {
  4764. .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 {
  4765. margin-top: 0.8rem;
  4766. padding-top: 0.5rem;
  4767. }
  4768. }
  4769. @media (max-width: 810px) {
  4770. .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 {
  4771. padding-top: 0.5rem;
  4772. }
  4773. }
  4774. .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 {
  4775. color: rgb(9, 57, 139);
  4776. font-size: 1.5rem;
  4777. font-weight: 900;
  4778. text-transform: uppercase;
  4779. }
  4780. @media (max-width: 1624px) {
  4781. .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 {
  4782. font-size: 1.3rem;
  4783. }
  4784. }
  4785. @media (max-width: 1216px) {
  4786. .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 {
  4787. font-size: 1.1rem;
  4788. }
  4789. }
  4790. @media (max-width: 810px) {
  4791. .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 {
  4792. font-size: 1rem;
  4793. }
  4794. }
  4795. .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 {
  4796. margin-top: 2rem;
  4797. width: fit-content;
  4798. }
  4799. .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 {
  4800. background-color: rgb(225, 0, 15);
  4801. color: white;
  4802. font-weight: 800;
  4803. padding-right: 0.3rem;
  4804. padding-left: 0.2rem;
  4805. }
  4806. @media (max-width: 1624px) {
  4807. .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 {
  4808. margin-top: 1rem;
  4809. }
  4810. }
  4811. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4812. display: flex;
  4813. flex-direction: row;
  4814. border: 0.1rem solid;
  4815. justify-content: space-evenly;
  4816. width: 90%;
  4817. margin-top: 3rem;
  4818. font-weight: 600;
  4819. }
  4820. @media (max-width: 479px) {
  4821. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4822. flex-direction: column;
  4823. width: 100%;
  4824. }
  4825. }
  4826. .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 {
  4827. padding-right: 1rem;
  4828. order: 1;
  4829. width: 30%;
  4830. position: relative;
  4831. height: 80px;
  4832. text-align: center;
  4833. }
  4834. @media (max-width: 479px) {
  4835. .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 {
  4836. width: 100%;
  4837. }
  4838. }
  4839. .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 {
  4840. content: url("../images/pictos/picto_lieu.svg");
  4841. min-width: 30px;
  4842. height: auto;
  4843. padding-right: 1rem;
  4844. position: absolute;
  4845. left: 0;
  4846. margin-top: 0.83em;
  4847. margin-left: 1rem;
  4848. }
  4849. .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 {
  4850. order: 1;
  4851. margin-left: 70px;
  4852. margin-bottom: 1rem;
  4853. height: fit-content;
  4854. }
  4855. .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 {
  4856. display: inline-flex;
  4857. order: 2;
  4858. margin-left: 70px;
  4859. height: fit-content;
  4860. }
  4861. .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 {
  4862. display: flex;
  4863. flex-direction: row;
  4864. margin-top: 0.83em;
  4865. }
  4866. .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 {
  4867. margin: auto;
  4868. display: flex;
  4869. flex-direction: column;
  4870. justify-content: start;
  4871. margin: 0;
  4872. }
  4873. .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 {
  4874. display: none;
  4875. }
  4876. .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 {
  4877. order: 4;
  4878. padding-left: 1rem;
  4879. padding-right: 1rem;
  4880. padding-bottom: 1rem;
  4881. border-left: 0.1rem solid;
  4882. width: 30%;
  4883. }
  4884. @media (max-width: 479px) {
  4885. .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 {
  4886. width: 100%;
  4887. border-top: 0.1rem solid;
  4888. border-left: 0;
  4889. padding-right: 0rem;
  4890. padding-left: 0rem;
  4891. }
  4892. }
  4893. .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 {
  4894. color: rgb(9, 57, 139);
  4895. font-size: 1.2rem;
  4896. font-weight: 900;
  4897. text-transform: uppercase;
  4898. margin-bottom: 0rem !important;
  4899. }
  4900. .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 {
  4901. content: " :";
  4902. }
  4903. @media (max-width: 479px) {
  4904. .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 {
  4905. padding-right: 1rem;
  4906. padding-left: 1rem;
  4907. }
  4908. }
  4909. @media (max-width: 479px) {
  4910. .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 {
  4911. padding-right: 1rem;
  4912. padding-left: 1rem;
  4913. }
  4914. }
  4915. .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 {
  4916. display: none;
  4917. }
  4918. .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 {
  4919. order: 2;
  4920. padding-left: 1rem;
  4921. border-left: 0.1rem solid;
  4922. padding-bottom: 1rem;
  4923. width: 20%;
  4924. }
  4925. @media (max-width: 479px) {
  4926. .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 {
  4927. border-left: 0;
  4928. border-top: 0.1rem solid;
  4929. width: 100%;
  4930. padding-right: 0rem;
  4931. padding-left: 0rem;
  4932. }
  4933. }
  4934. .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 {
  4935. color: rgb(9, 57, 139);
  4936. font-size: 1.2rem;
  4937. font-weight: 900;
  4938. text-transform: uppercase;
  4939. margin-bottom: 0rem !important;
  4940. }
  4941. .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 {
  4942. content: " :";
  4943. }
  4944. @media (max-width: 479px) {
  4945. .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 {
  4946. padding-right: 1rem;
  4947. padding-left: 1rem;
  4948. }
  4949. }
  4950. @media (max-width: 479px) {
  4951. .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 {
  4952. padding-right: 1rem;
  4953. padding-left: 1rem;
  4954. }
  4955. }
  4956. .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 {
  4957. display: none;
  4958. }
  4959. .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 {
  4960. order: 3;
  4961. padding-left: 1rem;
  4962. padding-bottom: 1rem;
  4963. border-left: 0.1rem solid;
  4964. width: 20%;
  4965. }
  4966. @media (max-width: 479px) {
  4967. .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 {
  4968. border-left: 0;
  4969. border-top: 0.1rem solid;
  4970. width: 100%;
  4971. padding-right: 0rem;
  4972. padding-left: 0rem;
  4973. }
  4974. }
  4975. .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 {
  4976. color: rgb(9, 57, 139);
  4977. font-size: 1.2rem;
  4978. font-weight: 900;
  4979. text-transform: uppercase;
  4980. margin-bottom: 0rem !important;
  4981. }
  4982. .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 {
  4983. content: " :";
  4984. }
  4985. @media (max-width: 479px) {
  4986. .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 {
  4987. padding-right: 1rem;
  4988. padding-left: 1rem;
  4989. }
  4990. }
  4991. @media (max-width: 479px) {
  4992. .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 {
  4993. padding-right: 1rem;
  4994. padding-left: 1rem;
  4995. }
  4996. }
  4997. .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 {
  4998. display: none;
  4999. }
  5000. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5001. margin-top: 5rem;
  5002. }
  5003. @media (max-width: 479px) {
  5004. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5005. display: none;
  5006. }
  5007. }
  5008. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  5009. display: flex;
  5010. justify-content: flex-end;
  5011. position: -webkit-sticky;
  5012. position: sticky;
  5013. top: 10rem;
  5014. }
  5015. .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 {
  5016. display: flex;
  5017. justify-content: flex-end;
  5018. width: 50%;
  5019. background-color: rgb(255, 255, 255);
  5020. padding-right: 2rem;
  5021. }
  5022. .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 {
  5023. display: flex;
  5024. font-size: 1rem;
  5025. font-weight: 1000;
  5026. color: rgb(9, 57, 139);
  5027. border-bottom: 1px solid rgb(0, 158, 227);
  5028. padding-bottom: 0.5rem;
  5029. padding-right: 1rem;
  5030. margin-bottom: 0.8rem;
  5031. }
  5032. .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 {
  5033. text-decoration: underline;
  5034. }
  5035. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5036. margin-top: 5rem;
  5037. flex: 0 1 50%;
  5038. }
  5039. @media (max-width: 479px) {
  5040. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5041. flex: 0 1 100%;
  5042. margin-top: 1rem;
  5043. }
  5044. }
  5045. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5046. width: 90%;
  5047. }
  5048. @media (max-width: 479px) {
  5049. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5050. width: 80%;
  5051. margin: auto;
  5052. }
  5053. }
  5054. .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 {
  5055. margin-top: 0;
  5056. }
  5057. .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 {
  5058. background-color: white;
  5059. }
  5060. .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 {
  5061. background-color: rgb(255, 255, 255);
  5062. }
  5063. .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 {
  5064. margin-top: 3rem;
  5065. }
  5066. .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 {
  5067. font-size: 1.5rem;
  5068. font-weight: 1000;
  5069. font-family: "Source Code Pro";
  5070. color: rgb(9, 57, 139);
  5071. text-transform: uppercase;
  5072. margin-bottom: 0.8rem;
  5073. }
  5074. .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 {
  5075. text-transform: none !important;
  5076. }
  5077. .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 {
  5078. width: 100%;
  5079. height: auto;
  5080. }
  5081. .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 {
  5082. padding-right: 2rem;
  5083. }
  5084. .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 {
  5085. margin-top: 0;
  5086. }
  5087. .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 {
  5088. color: rgb(0, 0, 0);
  5089. text-decoration: underline;
  5090. }
  5091. .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 {
  5092. display: none;
  5093. }
  5094. .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 {
  5095. overflow-y: visible !important;
  5096. }
  5097. .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 {
  5098. font-size: 1.5rem;
  5099. font-weight: 1000;
  5100. font-family: "Source Code Pro";
  5101. color: rgb(9, 57, 139);
  5102. text-transform: uppercase;
  5103. margin-top: 2rem;
  5104. margin-bottom: 0.8rem;
  5105. }
  5106. .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 {
  5107. display: flex;
  5108. flex-direction: row;
  5109. justify-content: space-between;
  5110. }
  5111. .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 {
  5112. display: flex;
  5113. flex-direction: column;
  5114. align-items: center;
  5115. }
  5116. .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 {
  5117. padding-top: 1rem;
  5118. }
  5119. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5120. margin-top: 5rem;
  5121. }
  5122. @media (max-width: 479px) {
  5123. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5124. margin-top: 2rem;
  5125. }
  5126. }
  5127. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5128. display: flex;
  5129. flex-direction: column;
  5130. width: 65%;
  5131. }
  5132. @media (max-width: 479px) {
  5133. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5134. width: 80%;
  5135. margin: auto;
  5136. }
  5137. }
  5138. .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 {
  5139. display: none;
  5140. }
  5141. .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 {
  5142. height: fit-content;
  5143. border: 2px solid rgb(0, 158, 227);
  5144. background-color: rgb(255, 255, 255);
  5145. margin-bottom: 1rem;
  5146. min-height: 4rem;
  5147. color: rgb(0, 158, 227);
  5148. padding-left: 1rem;
  5149. padding-top: 1rem;
  5150. }
  5151. .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) {
  5152. display: none;
  5153. }
  5154. .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 {
  5155. height: inherit;
  5156. margin: auto;
  5157. }
  5158. .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 {
  5159. content: url("../images/pictos/download.png");
  5160. min-width: 30px;
  5161. height: auto;
  5162. padding-right: 2rem;
  5163. }
  5164. .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 {
  5165. hyphens: auto;
  5166. display: inline-flex;
  5167. color: rgb(0, 158, 227);
  5168. font-weight: 800;
  5169. }
  5170. .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 {
  5171. height: inherit;
  5172. margin: auto;
  5173. }
  5174. .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 {
  5175. content: url("../images/pictos/download.png");
  5176. min-width: 30px;
  5177. height: auto;
  5178. padding-right: 2rem;
  5179. }
  5180. .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 {
  5181. hyphens: auto;
  5182. display: inline-flex;
  5183. color: rgb(0, 158, 227);
  5184. font-weight: 800;
  5185. }
  5186. .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 {
  5187. display: none;
  5188. }
  5189. .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 {
  5190. margin: auto;
  5191. height: fit-content;
  5192. border: 2px solid rgb(0, 158, 227);
  5193. min-height: 4rem;
  5194. background: rgb(255, 255, 255);
  5195. color: rgb(0, 158, 227);
  5196. padding-left: 1rem;
  5197. padding-top: 1rem;
  5198. margin-bottom: 1rem;
  5199. }
  5200. .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 {
  5201. display: inline-flex;
  5202. align-items: center;
  5203. color: rgb(0, 158, 227);
  5204. font-weight: 800;
  5205. }
  5206. .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 {
  5207. content: url("../images/pictos/external_link.png");
  5208. min-width: 30px;
  5209. height: auto;
  5210. padding-right: 2rem;
  5211. }
  5212. .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 {
  5213. display: none;
  5214. }
  5215. .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- {
  5216. margin-top: 3rem;
  5217. }
  5218. @media (max-width: 479px) {
  5219. .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- {
  5220. margin-top: 2rem;
  5221. }
  5222. }
  5223. .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 {
  5224. font-size: 0.8rem;
  5225. color: rgb(0, 0, 0);
  5226. font-weight: 900;
  5227. }
  5228. .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 {
  5229. display: flex;
  5230. flex-direction: column;
  5231. border: 2px solid rgb(0, 158, 227);
  5232. padding: 1rem;
  5233. height: fit-content;
  5234. margin-bottom: 1rem;
  5235. background-color: rgb(255, 255, 255);
  5236. }
  5237. .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 {
  5238. display: flex;
  5239. flex-direction: column;
  5240. }
  5241. .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 {
  5242. order: 3;
  5243. }
  5244. .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 {
  5245. margin: 0;
  5246. }
  5247. .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 {
  5248. color: rgb(0, 0, 0);
  5249. font-size: 1rem;
  5250. font-weight: 900;
  5251. font-style: italic;
  5252. }
  5253. .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 {
  5254. display: none;
  5255. }
  5256. .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 {
  5257. order: 2;
  5258. text-transform: uppercase;
  5259. color: rgb(0, 158, 227);
  5260. font-weight: 900;
  5261. font-size: 0.8rem;
  5262. }
  5263. .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- {
  5264. order: 5;
  5265. font-weight: 800;
  5266. }
  5267. .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 {
  5268. margin: 0;
  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 .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- .field__label {
  5271. display: none;
  5272. }
  5273. .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 {
  5274. margin: 0;
  5275. }
  5276. .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 {
  5277. display: none;
  5278. }
  5279. .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 {
  5280. order: 1;
  5281. width: 25%;
  5282. }
  5283. .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 {
  5284. width: 100%;
  5285. height: auto;
  5286. }
  5287. .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 {
  5288. order: 6;
  5289. }
  5290. .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 {
  5291. display: none;
  5292. }
  5293. .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 {
  5294. order: 7;
  5295. display: flex;
  5296. margin-top: 0.8rem;
  5297. flex-direction: row;
  5298. flex-wrap: wrap;
  5299. }
  5300. .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 {
  5301. display: none;
  5302. }
  5303. .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 {
  5304. display: flex;
  5305. flex-direction: row;
  5306. flex-wrap: wrap;
  5307. }
  5308. .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 {
  5309. margin-right: 0.5rem;
  5310. padding-right: 0.3rem;
  5311. font-size: 0.8rem;
  5312. margin-top: 0.2rem;
  5313. }
  5314. .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 {
  5315. background: rgb(9, 57, 139);
  5316. color: rgb(255, 255, 255);
  5317. font-weight: 800;
  5318. vertical-align: super;
  5319. padding-left: 0.1rem;
  5320. padding-right: 0.1rem;
  5321. display: inline-flex;
  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-ressource-s-liee-s- .node-type-ressource div ul.links.inline {
  5324. display: none;
  5325. }
  5326. .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 {
  5327. order: 1;
  5328. width: 100%;
  5329. }
  5330. .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) {
  5331. display: none;
  5332. }
  5333. .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 {
  5334. width: 100%;
  5335. height: auto;
  5336. }
  5337. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  5338. width: 50%;
  5339. margin: auto;
  5340. display: flex;
  5341. flex-direction: row;
  5342. flex-wrap: wrap;
  5343. }
  5344. .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 {
  5345. display: none;
  5346. }
  5347. .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 {
  5348. display: flex;
  5349. flex-direction: row;
  5350. flex-wrap: wrap;
  5351. justify-content: space-between;
  5352. }
  5353. .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 {
  5354. display: none;
  5355. }
  5356. .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 {
  5357. display: flex;
  5358. flex-direction: column;
  5359. }
  5360. .path-incubateur {
  5361. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5362. background-repeat: no-repeat;
  5363. background-position-y: 7rem;
  5364. max-width: 100vw;
  5365. background-size: contain;
  5366. }
  5367. .path-incubateur .layout-container {
  5368. overflow: unset;
  5369. }
  5370. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  5371. width: fit-content;
  5372. }
  5373. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  5374. width: fit-content;
  5375. margin-left: 11%;
  5376. margin-top: 15vh;
  5377. color: rgb(255, 255, 255);
  5378. font-family: "Source Code Pro";
  5379. text-transform: uppercase;
  5380. font-size: 2rem;
  5381. font-weight: 800;
  5382. background: rgb(0, 158, 227);
  5383. margin-bottom: 15vh;
  5384. }
  5385. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5386. position: relative;
  5387. }
  5388. .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 {
  5389. display: flex;
  5390. justify-content: flex-end;
  5391. position: -webkit-sticky;
  5392. position: sticky;
  5393. top: 10rem;
  5394. }
  5395. @media (max-width: 810px) {
  5396. .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 {
  5397. display: none;
  5398. }
  5399. }
  5400. .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 {
  5401. display: flex;
  5402. flex-direction: row-reverse;
  5403. width: 50%;
  5404. background-color: rgb(255, 255, 255);
  5405. padding-right: 2rem;
  5406. }
  5407. .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 {
  5408. display: flex;
  5409. flex-direction: column;
  5410. font-size: 1rem;
  5411. font-weight: 1000;
  5412. color: rgb(9, 57, 139);
  5413. border-bottom: 1px solid rgb(0, 158, 227);
  5414. padding-bottom: 0.8rem;
  5415. padding-right: 1rem;
  5416. margin-top: 1rem;
  5417. scroll-margin-top: 7em;
  5418. }
  5419. .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 {
  5420. text-decoration: underline;
  5421. }
  5422. .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 {
  5423. padding-right: 2rem;
  5424. margin-top: 1rem;
  5425. background-color: rgb(255, 255, 255);
  5426. }
  5427. .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 {
  5428. font-size: 1.5rem;
  5429. font-weight: 1000;
  5430. font-family: "Source Code Pro", monospace;
  5431. color: rgb(9, 57, 139);
  5432. text-transform: uppercase;
  5433. margin-bottom: 0.8rem;
  5434. }
  5435. .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 {
  5436. margin-bottom: 2rem;
  5437. }
  5438. .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 {
  5439. margin-top: 1rem;
  5440. display: flex;
  5441. flex-direction: column;
  5442. width: 70%;
  5443. }
  5444. @media (max-width: 810px) {
  5445. .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 {
  5446. margin: auto;
  5447. }
  5448. }
  5449. .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 {
  5450. height: fit-content;
  5451. border: 2px solid rgb(0, 158, 227);
  5452. background-color: rgb(255, 255, 255);
  5453. margin-bottom: 1rem;
  5454. }
  5455. .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 {
  5456. min-height: 4rem;
  5457. background: rgb(255, 255, 255);
  5458. color: rgb(0, 158, 227);
  5459. padding-left: 0.8rem;
  5460. padding-top: 1rem;
  5461. }
  5462. .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) {
  5463. display: none;
  5464. }
  5465. .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 {
  5466. height: inherit;
  5467. margin: auto;
  5468. }
  5469. .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 {
  5470. content: url("../images/pictos/noun_Download_file_307900.svg");
  5471. min-width: 40px;
  5472. height: auto;
  5473. padding-right: 0.5rem;
  5474. display: inline-flex;
  5475. align-items: center;
  5476. }
  5477. .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 {
  5478. hyphens: auto;
  5479. display: inline-flex;
  5480. align-items: center;
  5481. color: rgb(0, 158, 227);
  5482. font-weight: 800;
  5483. }
  5484. .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 {
  5485. margin: auto;
  5486. height: fit-content;
  5487. border: 2px solid rgb(0, 158, 227);
  5488. min-height: 4rem;
  5489. background: rgb(255, 255, 255);
  5490. color: rgb(0, 158, 227);
  5491. padding-left: 0.8rem;
  5492. padding-top: 1rem;
  5493. margin-bottom: 1rem;
  5494. }
  5495. .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 {
  5496. display: inline-flex;
  5497. align-items: center;
  5498. justify-items: center;
  5499. color: rgb(0, 158, 227);
  5500. font-weight: 800;
  5501. }
  5502. .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 {
  5503. content: url("../images/pictos/external_link.png");
  5504. min-width: 40px;
  5505. height: auto;
  5506. padding-right: 0.5rem;
  5507. display: inline-flex;
  5508. align-items: center;
  5509. }
  5510. .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 {
  5511. display: none;
  5512. }
  5513. .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 {
  5514. padding-top: 1rem;
  5515. background-color: white;
  5516. }
  5517. .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 {
  5518. width: 80%;
  5519. margin: auto;
  5520. }
  5521. .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 {
  5522. margin-top: 4rem;
  5523. display: flex;
  5524. flex-direction: row;
  5525. }
  5526. @media (max-width: 479px) {
  5527. .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 {
  5528. flex-direction: column;
  5529. padding-bottom: 3rem;
  5530. }
  5531. }
  5532. .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 {
  5533. content: "Filtrer par :";
  5534. margin-right: 1rem;
  5535. }
  5536. @media (max-width: 479px) {
  5537. .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 {
  5538. padding-bottom: 1rem;
  5539. }
  5540. }
  5541. .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 {
  5542. display: flex;
  5543. flex-direction: row;
  5544. }
  5545. .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 {
  5546. display: none;
  5547. }
  5548. .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 {
  5549. display: none;
  5550. }
  5551. @media (max-width: 479px) {
  5552. .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 {
  5553. padding-bottom: 1rem;
  5554. }
  5555. }
  5556. .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 {
  5557. display: none;
  5558. }
  5559. .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 {
  5560. display: none;
  5561. }
  5562. @media (max-width: 479px) {
  5563. .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 {
  5564. padding-bottom: 1rem;
  5565. }
  5566. }
  5567. .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 {
  5568. display: none;
  5569. }
  5570. @media (max-width: 479px) {
  5571. .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 {
  5572. padding-bottom: 1rem;
  5573. }
  5574. }
  5575. .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] {
  5576. display: none;
  5577. }
  5578. .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 {
  5579. content: "";
  5580. display: inline-block;
  5581. width: 15px;
  5582. height: 15px;
  5583. background: #fff;
  5584. border-radius: 0px;
  5585. border-color: black;
  5586. border-style: solid;
  5587. border-width: 1px;
  5588. margin-right: 0.5rem;
  5589. }
  5590. .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 {
  5591. background: rgb(0, 158, 227);
  5592. }
  5593. .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 {
  5594. padding-right: 1rem;
  5595. }
  5596. .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 {
  5597. background-color: rgb(0, 158, 227);
  5598. color: white;
  5599. text-transform: uppercase;
  5600. border: none;
  5601. padding: 0.1rem 0.7rem;
  5602. margin-left: 2rem;
  5603. }
  5604. @media (max-width: 479px) {
  5605. .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 {
  5606. margin-left: 0rem;
  5607. margin-right: 2rem;
  5608. }
  5609. }
  5610. .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 {
  5611. background-color: rgb(0, 158, 227);
  5612. color: white;
  5613. text-transform: uppercase;
  5614. border: none;
  5615. padding: 0.1rem 0.7rem;
  5616. margin-left: 1rem;
  5617. }
  5618. @media (max-width: 479px) {
  5619. .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 {
  5620. flex-direction: column;
  5621. }
  5622. }
  5623. .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 {
  5624. margin-top: 2rem;
  5625. display: flex;
  5626. flex-direction: row;
  5627. flex-wrap: wrap;
  5628. }
  5629. @media (max-width: 810px) {
  5630. .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 {
  5631. flex-direction: column;
  5632. }
  5633. }
  5634. .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 {
  5635. width: 25%;
  5636. }
  5637. @media (max-width: 810px) {
  5638. .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 {
  5639. width: 100%;
  5640. }
  5641. }
  5642. .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 {
  5643. color: rgb(9, 57, 139);
  5644. line-height: 1.5rem;
  5645. padding: 0.5rem;
  5646. padding-right: 1rem;
  5647. padding-left: 1rem;
  5648. }
  5649. @media (max-width: 479px) {
  5650. .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 {
  5651. padding-left: 0rem;
  5652. padding-right: 0rem;
  5653. padding-top: 2rem;
  5654. }
  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 .view-projets .node-type-projet div:first-child {
  5657. display: flex;
  5658. flex-direction: column;
  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 .node-type-projet div:first-child a {
  5661. color: rgb(9, 57, 139);
  5662. }
  5663. .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 {
  5664. order: 1;
  5665. }
  5666. .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 {
  5667. width: 100%;
  5668. max-height: 175px;
  5669. object-fit: cover;
  5670. }
  5671. .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 {
  5672. display: block;
  5673. 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>');
  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 .node-type-projet div:first-child .field--name-field-adresse {
  5676. order: 2;
  5677. display: flex;
  5678. text-transform: uppercase;
  5679. font-size: 0.9rem;
  5680. font-weight: 800;
  5681. margin-top: 0.8rem;
  5682. line-height: 0.6rem;
  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 .node-type-projet div:first-child .field--name-field-adresse .address {
  5685. display: flex;
  5686. flex-direction: row;
  5687. margin: 0;
  5688. }
  5689. .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 {
  5690. padding-top: 0 !important;
  5691. padding-bottom: 0 !important;
  5692. }
  5693. .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 {
  5694. content: ",";
  5695. margin-right: 0.3rem;
  5696. }
  5697. .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 {
  5698. padding-top: 0 !important;
  5699. padding-bottom: 0 !important;
  5700. }
  5701. .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 {
  5702. margin-top: 0.5rem;
  5703. font-size: 0.9rem;
  5704. font-weight: 800;
  5705. order: 4;
  5706. }
  5707. .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 {
  5708. order: 3;
  5709. margin-top: 0.5rem;
  5710. font-size: 0.9rem;
  5711. font-weight: 800;
  5712. }
  5713. .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 {
  5714. margin: 0;
  5715. }
  5716. .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 {
  5717. order: 4;
  5718. color: red;
  5719. margin-top: 0.8rem;
  5720. font-size: 0.7rem;
  5721. }
  5722. .node-id-201 {
  5723. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5724. background-repeat: no-repeat;
  5725. background-position-y: 7rem;
  5726. max-width: 100vw;
  5727. background-size: contain;
  5728. }
  5729. .node-id-201 #block-contenudelapageprincipale {
  5730. scroll-margin: 8rem;
  5731. }
  5732. .node-id-201 .layout__region--top {
  5733. padding-bottom: 3rem;
  5734. height: 30vh;
  5735. }
  5736. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5737. display: none;
  5738. height: inherit;
  5739. }
  5740. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  5741. font-family: "Source Code Pro";
  5742. font-size: 2rem;
  5743. font-weight: 800;
  5744. color: rgb(255, 255, 255);
  5745. background-color: rgb(0, 158, 227);
  5746. text-transform: uppercase;
  5747. }
  5748. .node-id-201 .layout__region--second {
  5749. width: 25%;
  5750. }
  5751. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  5752. background-color: rgb(255, 255, 255);
  5753. }
  5754. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  5755. font-size: 1.5rem;
  5756. font-weight: 1000;
  5757. font-family: "Source Code Pro";
  5758. color: rgb(9, 57, 139);
  5759. text-transform: uppercase;
  5760. }
  5761. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  5762. text-transform: none !important;
  5763. }
  5764. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  5765. padding-right: 2rem;
  5766. }
  5767. .path-ressources .layout-container {
  5768. overflow: hidden;
  5769. }
  5770. @media (max-width: 810px) {
  5771. .path-ressources .layout-container {
  5772. overflow: hidden;
  5773. }
  5774. }
  5775. .path-ressources .layout-content {
  5776. min-height: 100vh;
  5777. width: 100vw;
  5778. }
  5779. .path-ressources .layout-content .region-content {
  5780. width: 100%;
  5781. margin: auto;
  5782. }
  5783. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5784. font-size: 4em;
  5785. color: rgb(9, 57, 139);
  5786. font-weight: 400;
  5787. text-align: center;
  5788. margin-bottom: 1rem;
  5789. width: fit-content;
  5790. margin-left: 28%;
  5791. }
  5792. @media (max-width: 810px) {
  5793. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5794. margin-left: 2rem;
  5795. text-align: left;
  5796. line-height: 4rem;
  5797. }
  5798. }
  5799. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5800. display: flex;
  5801. flex-direction: column;
  5802. }
  5803. @media (max-width: 479px) {
  5804. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5805. display: flex;
  5806. flex-direction: column;
  5807. }
  5808. }
  5809. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5810. width: 60%;
  5811. margin: auto;
  5812. margin-left: 28%;
  5813. }
  5814. @media (max-width: 810px) {
  5815. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5816. margin-left: 2rem;
  5817. width: 85%;
  5818. }
  5819. }
  5820. @media (max-width: 479px) {
  5821. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5822. order: 1;
  5823. margin-left: 2rem;
  5824. }
  5825. }
  5826. .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 {
  5827. grid-column: 1/span 5;
  5828. }
  5829. @media (max-width: 810px) {
  5830. .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 {
  5831. padding-top: 1rem;
  5832. margin-top: 1rem;
  5833. }
  5834. }
  5835. @media (max-width: 479px) {
  5836. .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 {
  5837. padding-left: 0;
  5838. padding-right: 0;
  5839. }
  5840. }
  5841. .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 {
  5842. margin: auto;
  5843. background: rgb(255, 255, 255);
  5844. font-size: 1rem;
  5845. }
  5846. @media (max-width: 479px) {
  5847. .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 {
  5848. margin-top: 1rem;
  5849. }
  5850. }
  5851. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5852. grid-column: 6/span 5;
  5853. grid-row: 1;
  5854. margin-top: 4rem;
  5855. background-color: rgb(0, 158, 227);
  5856. height: fit-content;
  5857. width: 100%;
  5858. }
  5859. @media (max-width: 810px) {
  5860. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5861. grid-column: 5/span 5;
  5862. }
  5863. }
  5864. @media (max-width: 479px) {
  5865. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5866. grid-column: 5/span 5;
  5867. order: 2;
  5868. }
  5869. }
  5870. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  5871. display: block;
  5872. }
  5873. .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 {
  5874. display: flex;
  5875. flex-direction: column;
  5876. margin-top: 2rem;
  5877. margin-bottom: 2rem;
  5878. margin-left: 1.5rem;
  5879. margin-right: 1.5rem;
  5880. text-align: center;
  5881. }
  5882. .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 {
  5883. font-weight: 800;
  5884. color: rgb(255, 255, 255);
  5885. font-size: 1.3rem;
  5886. }
  5887. .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 {
  5888. margin-left: auto;
  5889. padding-top: 1rem;
  5890. display: block;
  5891. content: url("../images/pictos/noun_Arrow_3771902.svg");
  5892. }
  5893. @media (max-width: 810px) {
  5894. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5895. margin: auto;
  5896. }
  5897. }
  5898. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5899. margin-top: 2rem;
  5900. width: 100%;
  5901. }
  5902. @media (max-width: 479px) {
  5903. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5904. order: 3;
  5905. }
  5906. }
  5907. @media (max-width: 810px) {
  5908. .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 {
  5909. display: flex;
  5910. flex-direction: column;
  5911. }
  5912. }
  5913. .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 {
  5914. position: fixed;
  5915. top: 25rem;
  5916. left: 0;
  5917. background-color: rgb(255, 255, 255);
  5918. border: solid 0.2px rgba(0, 0, 0, 0.1);
  5919. margin-bottom: 5rem;
  5920. padding: 1rem;
  5921. padding-left: 2rem;
  5922. padding-right: 1.5rem;
  5923. z-index: 1;
  5924. transform: translateY(-210px);
  5925. margin-bottom: -210px;
  5926. width: 20%;
  5927. }
  5928. @media (max-width: 810px) {
  5929. .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 {
  5930. position: static;
  5931. margin-bottom: 2rem;
  5932. transform: none;
  5933. margin-bottom: 0px;
  5934. width: 80%;
  5935. }
  5936. }
  5937. @media (max-width: 479px) {
  5938. .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 {
  5939. margin-left: 0;
  5940. }
  5941. }
  5942. .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 {
  5943. content: "Afficher : ";
  5944. padding-right: 1rem;
  5945. font-weight: 800;
  5946. font-size: 1rem;
  5947. margin-bottom: 1rem;
  5948. display: block;
  5949. width: 100%;
  5950. }
  5951. @media (max-width: 479px) {
  5952. .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 {
  5953. padding-bottom: 1rem;
  5954. }
  5955. }
  5956. .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 {
  5957. background-color: transparent;
  5958. border: 1px solid black;
  5959. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  5960. margin-bottom: 0.5rem;
  5961. margin-right: 0.5rem;
  5962. font-size: 0.8rem;
  5963. color: rgb(9, 57, 139);
  5964. display: inline-flex;
  5965. flex-direction: row;
  5966. align-items: center;
  5967. }
  5968. .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 {
  5969. cursor: grab;
  5970. background-color: rgb(9, 57, 139);
  5971. color: white;
  5972. }
  5973. .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 {
  5974. color: rgb(9, 57, 139);
  5975. }
  5976. .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 {
  5977. content: url("../images/pictos/videos.svg");
  5978. padding-right: 0.5rem;
  5979. display: block;
  5980. }
  5981. .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 {
  5982. content: url("../images/pictos/videos-blanc.svg");
  5983. display: block;
  5984. }
  5985. .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 {
  5986. display: none !important;
  5987. }
  5988. .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 {
  5989. content: url("../images/pictos/podcasts.svg");
  5990. padding-right: 0.5rem;
  5991. display: block;
  5992. }
  5993. .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 {
  5994. content: url("../images/pictos/podcasts-blanc.svg");
  5995. display: block;
  5996. }
  5997. .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 {
  5998. content: url("../images/pictos/en-images.svg");
  5999. display: block;
  6000. padding-right: 0.5rem;
  6001. }
  6002. .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 {
  6003. content: url("../images/pictos/en-images-blanc.svg");
  6004. display: block;
  6005. }
  6006. .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 {
  6007. content: url("../images/pictos/ecrits.svg");
  6008. padding-right: 0.5rem;
  6009. display: block;
  6010. }
  6011. .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 {
  6012. content: url("../images/pictos/ecrits-blanc.svg");
  6013. display: block;
  6014. }
  6015. .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 {
  6016. content: url("../images/pictos/ecrits.svg");
  6017. padding-right: 0.5rem;
  6018. display: block;
  6019. }
  6020. .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 {
  6021. content: url("../images/pictos/ecrits-blanc.svg");
  6022. display: block;
  6023. }
  6024. .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 {
  6025. content: url("../images/pictos/ecrits.svg");
  6026. padding-right: 0.5rem;
  6027. display: block;
  6028. }
  6029. .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 {
  6030. content: url("../images/pictos/ecrits-blanc.svg");
  6031. display: block;
  6032. }
  6033. .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 {
  6034. background-color: rgb(9, 57, 139);
  6035. color: white;
  6036. }
  6037. .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 {
  6038. color: white;
  6039. }
  6040. .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 {
  6041. margin-top: 1rem;
  6042. }
  6043. .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 {
  6044. content: url("../images/pictos/videos-blanc.svg");
  6045. }
  6046. .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 {
  6047. content: url("../images/pictos/podcasts-blanc.svg");
  6048. }
  6049. .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 {
  6050. content: url("../images/pictos/en-images-blanc.svg");
  6051. }
  6052. .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 {
  6053. content: url("../images/pictos/ecrits-blanc.svg");
  6054. }
  6055. .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 {
  6056. content: url("../images/pictos/ecrits-blanc.svg");
  6057. }
  6058. .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 {
  6059. content: url("../images/pictos/ecrits-blanc.svg");
  6060. }
  6061. .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 {
  6062. content: "Filtrer par : ";
  6063. padding-right: 1rem;
  6064. font-weight: 800;
  6065. font-size: 1rem;
  6066. margin-bottom: 1rem;
  6067. }
  6068. @media (max-width: 479px) {
  6069. .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 {
  6070. padding-bottom: 1rem;
  6071. }
  6072. }
  6073. .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 {
  6074. display: none;
  6075. }
  6076. .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 {
  6077. font-size: 0.8rem;
  6078. }
  6079. .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 {
  6080. border-top: none;
  6081. border-left: none;
  6082. border-right: none;
  6083. font-size: 0.8rem;
  6084. justify-content: flex-start !important;
  6085. }
  6086. .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 {
  6087. display: none;
  6088. }
  6089. .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 {
  6090. display: inline-flex;
  6091. position: relative;
  6092. font-size: 0.8rem;
  6093. width: -webkit-fill-available; /* Safari/Chrome */
  6094. width: -moz-available; /* Firefox */
  6095. width: fill-available; /* standard futur */
  6096. width: 100%; /* fallback */
  6097. max-width: 100%;
  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 form .form-item-combine .input-wrapper::after {
  6100. content: url("../images/pictos/loupe.svg");
  6101. display: inline-block;
  6102. }
  6103. .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 {
  6104. text-align: start !important;
  6105. max-width: 100% !important;
  6106. }
  6107. .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 {
  6108. position: absolute;
  6109. right: -4px;
  6110. top: 50%;
  6111. transform: translateY(-50%);
  6112. background: white;
  6113. border: none;
  6114. padding: 0.5rem;
  6115. margin: 0;
  6116. cursor: pointer;
  6117. color: #888;
  6118. display: none; /* masqué par défaut */
  6119. }
  6120. .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 {
  6121. color: #000;
  6122. }
  6123. .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 {
  6124. display: none;
  6125. }
  6126. .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 {
  6127. font-size: 0.8rem;
  6128. }
  6129. .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 {
  6130. display: none;
  6131. }
  6132. .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 {
  6133. font-size: 0.8rem;
  6134. }
  6135. .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 {
  6136. display: flex;
  6137. flex-direction: row;
  6138. flex-wrap: wrap;
  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 .filtered .views-row-wrapper {
  6141. flex-wrap: wrap;
  6142. width: 85%;
  6143. }
  6144. .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 {
  6145. padding: 1rem;
  6146. width: 30% !important;
  6147. }
  6148. .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 {
  6149. transition: opacity 0.3s ease;
  6150. display: flex;
  6151. flex-direction: row;
  6152. flex-wrap: wrap;
  6153. padding-left: 25%;
  6154. }
  6155. @media (max-width: 810px) {
  6156. .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 {
  6157. padding-left: 0;
  6158. }
  6159. }
  6160. .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 {
  6161. width: 80%;
  6162. border-top: solid 1px rgba(0, 0, 0, 0.3);
  6163. }
  6164. .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 {
  6165. order: 1;
  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-content .view-type-slide.type-publications-issues-du-programme::before {
  6168. background-color: rgba(0, 158, 227, 0.2);
  6169. }
  6170. .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 {
  6171. width: 45%;
  6172. min-width: 350px !important;
  6173. max-width: 500px;
  6174. }
  6175. .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 {
  6176. order: 2;
  6177. }
  6178. .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 {
  6179. order: 3;
  6180. }
  6181. .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 {
  6182. padding-left: 0 !important;
  6183. }
  6184. .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 {
  6185. background-color: rgba(0, 158, 227, 0.2);
  6186. }
  6187. .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 {
  6188. order: 5;
  6189. }
  6190. .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 {
  6191. border: none;
  6192. }
  6193. .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 {
  6194. order: 4;
  6195. }
  6196. .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 {
  6197. order: 9;
  6198. }
  6199. .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 {
  6200. order: 6;
  6201. }
  6202. .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 {
  6203. order: 8;
  6204. }
  6205. .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) {
  6206. width: 100%;
  6207. position: relative;
  6208. z-index: 0;
  6209. padding-bottom: 1rem;
  6210. }
  6211. .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 {
  6212. content: "";
  6213. position: absolute;
  6214. left: -35%;
  6215. height: 100%;
  6216. width: 110vw;
  6217. z-index: 0;
  6218. }
  6219. @media (max-width: 810px) {
  6220. .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 {
  6221. left: 0;
  6222. }
  6223. }
  6224. .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) > * {
  6225. position: relative;
  6226. z-index: 1;
  6227. }
  6228. .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 {
  6229. top: 1rem;
  6230. text-transform: uppercase;
  6231. font-family: "Source Code Pro";
  6232. color: rgb(9, 57, 139) !important;
  6233. display: flex;
  6234. flex-direction: row;
  6235. align-items: center;
  6236. font-size: 1.7rem;
  6237. margin-block: 0em;
  6238. }
  6239. @media (max-width: 810px) {
  6240. .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 {
  6241. padding-left: 2rem;
  6242. width: 70%;
  6243. }
  6244. }
  6245. @media (max-width: 479px) {
  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-content .view-type-slide:not(footer) h3 {
  6247. width: 65% !important;
  6248. }
  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-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme {
  6251. border: none;
  6252. }
  6253. .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 {
  6254. content: url("../images/pictos/picto-ressource-eqld.svg");
  6255. padding-right: 1rem;
  6256. }
  6257. .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 {
  6258. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  6259. padding-right: 1rem;
  6260. }
  6261. .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 {
  6262. width: 80%;
  6263. }
  6264. .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 {
  6265. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  6266. padding-right: 1rem;
  6267. }
  6268. .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 {
  6269. content: url("../images/pictos/picto-ressource-presse.svg");
  6270. padding-right: 1rem;
  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-content .view-type-slide:not(footer) .tout-voir {
  6273. background-color: rgb(255, 255, 255);
  6274. border: 1px solid rgb(0, 158, 227);
  6275. list-style: none;
  6276. padding: 0.5rem;
  6277. position: relative;
  6278. left: 60vw;
  6279. top: -1.5rem;
  6280. text-transform: uppercase;
  6281. font-size: 0.7rem;
  6282. font-weight: 500;
  6283. color: rgb(0, 158, 227);
  6284. display: inline-flex;
  6285. align-items: center;
  6286. }
  6287. @media (max-width: 810px) {
  6288. .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 {
  6289. left: 81vw;
  6290. }
  6291. }
  6292. @media (max-width: 479px) {
  6293. .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 {
  6294. left: 76vw;
  6295. top: -1.5rem;
  6296. }
  6297. }
  6298. .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 {
  6299. display: flex;
  6300. flex-direction: row;
  6301. }
  6302. .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 {
  6303. width: 100% !important;
  6304. display: flex;
  6305. flex-direction: row;
  6306. transform: none;
  6307. }
  6308. .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 {
  6309. width: 20%;
  6310. min-width: 250px;
  6311. max-width: 500px;
  6312. }
  6313. @media (max-width: 810px) {
  6314. .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 {
  6315. padding-left: 0rem !important;
  6316. flex-direction: column;
  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:not(footer) .views-row-wrapper .views-row {
  6319. width: 100% !important;
  6320. }
  6321. }
  6322. .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 {
  6323. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6324. display: inline-block;
  6325. transform: scale(0.5); /* Réduction à 50% */
  6326. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6327. }
  6328. @media (max-width: 810px) {
  6329. .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 {
  6330. transform: scale(0.5); /* Réduction à 50% */
  6331. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6332. }
  6333. }
  6334. .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 {
  6335. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6336. display: block;
  6337. display: inline-block;
  6338. transform: scaleX(-1);
  6339. transform: scale(-0.5, 0.5);
  6340. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6341. }
  6342. @media (max-width: 810px) {
  6343. .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 {
  6344. transform: scale(-0.5, 0.5);
  6345. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6346. }
  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) .views-row-wrapper .slick-prev::before,
  6349. .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 {
  6350. opacity: 1 !important;
  6351. }
  6352. .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,
  6353. .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 {
  6354. opacity: 0.3 !important;
  6355. }
  6356. .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,
  6357. .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 {
  6358. top: 94%;
  6359. }
  6360. .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 {
  6361. right: 35vw;
  6362. }
  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) .views-row-wrapper .slick-prev {
  6364. left: 25vw;
  6365. }
  6366. @media (max-width: 1400px) {
  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) .views-row-wrapper .slick-prev {
  6368. left: 20vw;
  6369. }
  6370. .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 {
  6371. right: 30vw;
  6372. }
  6373. }
  6374. @media (max-width: 810px) {
  6375. .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 {
  6376. left: 15vw;
  6377. }
  6378. .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 {
  6379. right: 35vw;
  6380. }
  6381. }
  6382. @media (max-width: 479px) {
  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) .views-row-wrapper .slick-prev {
  6384. left: 8vw;
  6385. }
  6386. .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 {
  6387. right: 30vw;
  6388. }
  6389. }
  6390. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  6391. padding-left: 0 !important;
  6392. }
  6393. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  6394. padding-left: 8% !important;
  6395. padding-right: 8% !important;
  6396. }
  6397. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  6398. padding-right: 0;
  6399. }
  6400. footer {
  6401. z-index: 1;
  6402. }
  6403. .carousel {
  6404. display: none;
  6405. }
  6406. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6407. display: flex !important;
  6408. flex-direction: column;
  6409. margin-left: 11%;
  6410. }
  6411. @media screen and (min-width: 1100px) {
  6412. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6413. display: flex;
  6414. }
  6415. }
  6416. @media screen and (max-width: 810px) {
  6417. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6418. margin-left: 0;
  6419. }
  6420. }
  6421. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  6422. margin-left: 0;
  6423. }
  6424. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6425. margin-top: 5rem;
  6426. padding: 0;
  6427. order: 7;
  6428. width: 85%;
  6429. }
  6430. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6431. display: grid;
  6432. grid-template-columns: 10fr 1fr;
  6433. gap: 4rem;
  6434. justify-content: center;
  6435. margin: auto;
  6436. }
  6437. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6438. display: flex;
  6439. align-items: center;
  6440. position: relative;
  6441. width: 100%;
  6442. margin: 0 auto;
  6443. }
  6444. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  6445. flex: 1;
  6446. text-align: center;
  6447. }
  6448. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  6449. width: 100%;
  6450. height: auto;
  6451. object-fit: contain;
  6452. max-height: 550px;
  6453. border: none;
  6454. }
  6455. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  6456. margin-top: 1rem;
  6457. font-family: sans-serif;
  6458. text-align: center;
  6459. font-size: 1rem;
  6460. color: #444;
  6461. }
  6462. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  6463. font-size: 2rem;
  6464. color: #333;
  6465. background: none;
  6466. border-radius: 50%;
  6467. width: 40px;
  6468. height: 40px;
  6469. line-height: 40px;
  6470. text-align: center;
  6471. cursor: pointer;
  6472. user-select: none;
  6473. transition: background 0.3s ease;
  6474. }
  6475. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  6476. background: #bbb;
  6477. }
  6478. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  6479. margin-right: 10px;
  6480. }
  6481. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  6482. margin-left: 10px;
  6483. }
  6484. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  6485. margin-top: 10px;
  6486. font-family: sans-serif;
  6487. grid-column: 2;
  6488. grid-row: 2;
  6489. }
  6490. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  6491. grid-column: 2;
  6492. display: flex;
  6493. flex-direction: column;
  6494. align-items: center;
  6495. max-height: 60vh;
  6496. grid-row: 1/span 2;
  6497. top: 0px;
  6498. position: relative;
  6499. overflow: hidden;
  6500. }
  6501. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  6502. cursor: pointer;
  6503. padding: 5px 10px;
  6504. background: #00aaff;
  6505. color: white;
  6506. border-radius: 50%;
  6507. user-select: none;
  6508. z-index: 2;
  6509. position: relative;
  6510. }
  6511. .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 {
  6512. transform: rotate(90deg);
  6513. }
  6514. .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 {
  6515. transform: rotate(90deg);
  6516. }
  6517. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  6518. display: flex;
  6519. flex-direction: column;
  6520. gap: 6px;
  6521. overflow-y: auto;
  6522. max-height: 100%;
  6523. scroll-behavior: smooth;
  6524. position: relative;
  6525. z-index: 0;
  6526. }
  6527. .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 {
  6528. display: none;
  6529. }
  6530. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  6531. width: 80px;
  6532. height: 60px;
  6533. object-fit: contain;
  6534. border: 2px solid transparent;
  6535. cursor: pointer;
  6536. opacity: 0.3;
  6537. transition: transform 0.3s ease, opacity 0.3s ease;
  6538. }
  6539. .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 {
  6540. transform: scale(1.3);
  6541. margin-top: 0.8rem;
  6542. margin-bottom: 0.8rem;
  6543. opacity: 1;
  6544. z-index: 1;
  6545. }
  6546. @media screen and (max-width: 810px) {
  6547. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6548. display: flex;
  6549. flex-direction: column;
  6550. gap: 2rem;
  6551. align-items: center;
  6552. width: 100vw;
  6553. }
  6554. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6555. width: 90%;
  6556. }
  6557. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6558. width: 100%;
  6559. display: flex !important;
  6560. flex-direction: row !important; /* 👈 corrige l'orientation */
  6561. justify-content: center;
  6562. align-items: center;
  6563. overflow-x: auto;
  6564. overflow-y: hidden;
  6565. max-height: none;
  6566. padding: 1rem 0;
  6567. position: relative;
  6568. }
  6569. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6570. display: flex !important;
  6571. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6572. gap: 0.8 rem !important;
  6573. overflow-x: auto;
  6574. overflow-y: hidden;
  6575. scroll-behavior: smooth;
  6576. padding: 0 1rem;
  6577. max-width: 100%;
  6578. flex-wrap: nowrap;
  6579. }
  6580. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6581. display: none;
  6582. }
  6583. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6584. width: 60px;
  6585. height: 45px;
  6586. flex-shrink: 0; /* évite l’écrasement */
  6587. }
  6588. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6589. display: none; /* inutile si scroll horizontal */
  6590. }
  6591. }
  6592. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6593. display: none;
  6594. }
  6595. @media screen and (max-width: 810px) {
  6596. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6597. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6598. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6599. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6600. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6601. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6602. margin-left: 7%;
  6603. }
  6604. }
  6605. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6606. transform: translateY(-45.5rem);
  6607. }
  6608. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6609. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6610. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6611. transform: translateY(-16rem);
  6612. }
  6613. .carousel {
  6614. display: none;
  6615. }
  6616. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6617. display: flex !important;
  6618. flex-direction: column;
  6619. margin-left: 11%;
  6620. width: 60%;
  6621. }
  6622. @media screen and (min-width: 1100px) {
  6623. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6624. display: flex;
  6625. }
  6626. }
  6627. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6628. margin-left: 0;
  6629. }
  6630. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6631. display: none;
  6632. }
  6633. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6634. order: 1;
  6635. }
  6636. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6637. order: 2;
  6638. }
  6639. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6640. order: 3;
  6641. }
  6642. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6643. order: 5;
  6644. }
  6645. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6646. order: 4;
  6647. }
  6648. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6649. order: 6;
  6650. }
  6651. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6652. order: 7;
  6653. margin-top: 2rem;
  6654. }
  6655. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6656. margin-top: 0rem;
  6657. }
  6658. /*partials*/
  6659. .layout-container {
  6660. position: relative;
  6661. width: 100vw;
  6662. }
  6663. .layout-container header {
  6664. position: fixed;
  6665. z-index: 99;
  6666. width: 100vw;
  6667. }
  6668. #header-top {
  6669. height: 7rem;
  6670. background-color: rgb(255, 255, 255);
  6671. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6672. display: flex;
  6673. flex-direction: row;
  6674. color: rgb(0, 0, 0);
  6675. top: 0%;
  6676. scroll-margin: 8rem;
  6677. }
  6678. @media (max-width: 810px) {
  6679. #header-top {
  6680. height: 5rem;
  6681. }
  6682. }
  6683. #header-top .region-header-top-left {
  6684. display: flex;
  6685. flex-direction: row;
  6686. padding-left: 4%;
  6687. align-items: center;
  6688. color: rgb(0, 0, 0);
  6689. flex: 1;
  6690. }
  6691. #header-top .region-header-top-left #block-logogouv {
  6692. display: flex;
  6693. height: 100%;
  6694. align-items: center;
  6695. }
  6696. @media (max-width: 810px) {
  6697. #header-top .region-header-top-left #block-logogouv .field--name-field-logo {
  6698. height: 100%;
  6699. }
  6700. }
  6701. #header-top .region-header-top-left #block-logogouv img {
  6702. width: auto;
  6703. height: 100%;
  6704. }
  6705. #header-top .region-header-top-left #block-eql-logoepau {
  6706. height: 100%;
  6707. align-content: center;
  6708. padding-left: 1rem;
  6709. }
  6710. #header-top .region-header-top-rigth {
  6711. display: flex;
  6712. flex-direction: row;
  6713. width: 40%;
  6714. align-items: center;
  6715. justify-content: flex-end;
  6716. }
  6717. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6718. text-transform: uppercase;
  6719. font-family: "Source Code Pro";
  6720. color: rgb(9, 57, 139) !important;
  6721. font-size: 1rem;
  6722. text-align: end;
  6723. width: 30%;
  6724. }
  6725. #header-top .region-header-top-rigth #block-eql-identitedusite :visited {
  6726. color: rgb(9, 57, 139) !important;
  6727. }
  6728. #header-top .region-header-top-rigth #block-eql-identitedusite :link {
  6729. color: rgb(9, 57, 139) !important;
  6730. }
  6731. @media (max-width: 883px) {
  6732. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6733. display: none;
  6734. }
  6735. }
  6736. #header-top .region-header-top-rigth #block-logoeql {
  6737. padding-left: 1rem;
  6738. padding-right: 2rem;
  6739. height: 100%;
  6740. align-items: center;
  6741. }
  6742. @media (max-width: 810px) {
  6743. #header-top .region-header-top-rigth #block-logoeql {
  6744. padding-right: 1rem;
  6745. }
  6746. }
  6747. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo {
  6748. height: 100%;
  6749. }
  6750. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a {
  6751. display: flex;
  6752. align-items: center;
  6753. height: 100%;
  6754. }
  6755. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a img {
  6756. width: auto;
  6757. height: 80%;
  6758. }
  6759. #header-top .region-header-top-rigth #block-burger {
  6760. z-index: 1;
  6761. background-color: rgb(0, 158, 227);
  6762. font-size: 0.7rem;
  6763. color: black;
  6764. display: block;
  6765. width: 7rem;
  6766. height: 100%;
  6767. margin-top: 0;
  6768. aspect-ratio: 1;
  6769. }
  6770. #header-top .region-header-top-rigth #block-burger :hover {
  6771. cursor: pointer;
  6772. }
  6773. @media (max-width: 810px) {
  6774. #header-top .region-header-top-rigth #block-burger {
  6775. width: 4rem;
  6776. }
  6777. }
  6778. #header-top .region-header-top-rigth #block-burger h2 {
  6779. padding-top: 1rem;
  6780. font-size: 1em;
  6781. font-weight: light;
  6782. color: rgb(0, 158, 227);
  6783. }
  6784. @media (max-width: 810px) {
  6785. #header-top .region-header-top-rigth #block-burger h2 {
  6786. padding-top: 0;
  6787. }
  6788. }
  6789. #header-top .region-header-top-rigth #block-burger h2:after {
  6790. display: block;
  6791. margin: auto;
  6792. height: 70px;
  6793. 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>');
  6794. }
  6795. @media (max-width: 810px) {
  6796. #header-top .region-header-top-rigth #block-burger h2:after {
  6797. 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>');
  6798. }
  6799. }
  6800. #header-top .region-header-top-rigth #block-burger #block-burger-menu {
  6801. display: block;
  6802. margin: 0;
  6803. align-self: center;
  6804. text-align: center;
  6805. }
  6806. #header-top .region-header-top-rigth #block-burger .ul1:not(.sous-liste) {
  6807. width: 300%;
  6808. position: relative;
  6809. right: 260px;
  6810. margin: 0;
  6811. padding-top: 2rem;
  6812. padding-bottom: 2rem;
  6813. z-index: 99;
  6814. }
  6815. #header-top .region-header-top-rigth #block-burger ul {
  6816. display: none;
  6817. background-color: rgb(0, 158, 227);
  6818. line-height: 2rem;
  6819. list-style: none;
  6820. }
  6821. #header-top .region-header-top-rigth #block-burger ul .ul1 .sous-liste a {
  6822. opacity: 1;
  6823. }
  6824. #header-top .region-header-top-rigth #block-burger ul a {
  6825. opacity: 1;
  6826. color: rgb(255, 255, 255);
  6827. font-weight: 800;
  6828. font-size: 1rem;
  6829. }
  6830. #header-top .region-header-top-rigth #block-burger.opened ul {
  6831. display: block;
  6832. }
  6833. #header-top #block-socialnetwork-2 {
  6834. display: none;
  6835. position: relative;
  6836. top: -33px;
  6837. align-self: flex-end;
  6838. margin-left: auto;
  6839. }
  6840. #header-top #block-socialnetwork-2 .field--name-body {
  6841. min-height: 75px;
  6842. }
  6843. #header-top #block-socialnetwork-2 p {
  6844. display: flex;
  6845. flex-direction: row-reverse;
  6846. margin-bottom: 0;
  6847. min-height: 65px;
  6848. justify-content: space-around;
  6849. width: 140px;
  6850. }
  6851. #header-top #block-socialnetwork-2 p a {
  6852. color: rgb(255, 255, 255);
  6853. font-size: 0;
  6854. }
  6855. #header-top #block-socialnetwork-2 p svg.ext {
  6856. display: none;
  6857. }
  6858. #header-top #block-socialnetwork-2 p .link-twitter {
  6859. display: flex;
  6860. background-color: black;
  6861. width: 40px;
  6862. justify-content: center;
  6863. align-items: flex-end;
  6864. }
  6865. #header-top #block-socialnetwork-2 p .link-twitter:before {
  6866. content: url("../images/pictos/logo_x_blanc.svg");
  6867. min-width: 30px;
  6868. padding-bottom: 0.5rem;
  6869. }
  6870. #header-top #block-socialnetwork-2 p .link-youtube {
  6871. display: flex;
  6872. background-color: black;
  6873. min-width: 40px;
  6874. justify-content: center;
  6875. align-items: flex-end;
  6876. }
  6877. #header-top #block-socialnetwork-2 p .link-youtube:before {
  6878. content: url("../images/pictos/youtube_white.svg");
  6879. min-width: 25px;
  6880. padding-bottom: 0.5rem;
  6881. }
  6882. #header-top #block-socialnetwork-2 p .link-linkedin {
  6883. display: flex;
  6884. background-color: black;
  6885. min-width: 40px;
  6886. justify-content: center;
  6887. align-items: flex-end;
  6888. }
  6889. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  6890. content: url("../images/pictos/linkedin_white.svg");
  6891. min-width: 35px;
  6892. padding-bottom: 0.2rem;
  6893. }
  6894. .region-header-bottom {
  6895. box-shadow: 0 4px 4px 3px rgba(0, 0, 0, 0.1);
  6896. }
  6897. .region-header-bottom #block-headermenu {
  6898. align-self: baseline;
  6899. width: 100%;
  6900. background-color: white;
  6901. border-top: solid rgb(0, 158, 227) 1px;
  6902. }
  6903. .region-header-bottom ul {
  6904. font-size: 1rem;
  6905. font-weight: 900;
  6906. list-style: none;
  6907. display: flex;
  6908. flex-direction: row;
  6909. justify-content: space-evenly;
  6910. width: 100%;
  6911. padding-inline-start: 0px;
  6912. padding: 1rem;
  6913. margin-top: 0 !important;
  6914. padding-bottom: 0.5rem;
  6915. }
  6916. .region-header-bottom ul .is-active {
  6917. color: rgb(0, 158, 227);
  6918. }
  6919. .region-header-bottom ul ul {
  6920. position: absolute;
  6921. left: -28%;
  6922. z-index: 1000;
  6923. display: flex;
  6924. flex-direction: column;
  6925. min-width: 210px;
  6926. width: fit-content;
  6927. justify-content: space-between;
  6928. padding-inline-start: 0px;
  6929. }
  6930. .region-header-bottom ul ul .is-active {
  6931. color: rgb(0, 158, 227);
  6932. }
  6933. .region-header-bottom ul ul {
  6934. opacity: 0;
  6935. visibility: hidden;
  6936. transform: translateY(-10px);
  6937. transition: opacity 0.3s ease, transform 0.3s ease;
  6938. }
  6939. .region-header-bottom ul li {
  6940. position: relative;
  6941. display: flex;
  6942. flex-direction: column;
  6943. background-color: rgb(255, 255, 255);
  6944. padding-bottom: 0.8rem;
  6945. max-width: inherit;
  6946. padding-left: 1rem;
  6947. padding-right: 0.5rem;
  6948. height: fit-content;
  6949. }
  6950. .region-header-bottom ul li a {
  6951. color: rgb(0, 0, 0);
  6952. }
  6953. .region-header-bottom ul li .is-active {
  6954. color: rgb(0, 158, 227);
  6955. }
  6956. .region-header-bottom ul li :hover {
  6957. color: rgb(0, 158, 227);
  6958. }
  6959. .region-header-bottom ul li:hover ul {
  6960. opacity: 1;
  6961. visibility: visible;
  6962. transform: translateY(0);
  6963. }
  6964. .region-header-bottom ul .ul1.sous-liste.ul2 {
  6965. padding-left: 1rem;
  6966. }
  6967. #fotter-bottom {
  6968. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6969. display: flex;
  6970. flex: 1 1 120px;
  6971. flex-direction: row;
  6972. background-color: rgb(255, 255, 255);
  6973. padding-top: 3rem;
  6974. }
  6975. @media (max-width: 810px) {
  6976. #fotter-bottom {
  6977. flex-direction: column;
  6978. padding-right: 1rem;
  6979. }
  6980. }
  6981. #fotter-bottom .region {
  6982. display: block;
  6983. padding-left: 2rem;
  6984. padding-right: 1rem;
  6985. padding-bottom: 1rem;
  6986. border-left: rgb(0, 158, 227) solid 1px;
  6987. }
  6988. #fotter-bottom .region h2 {
  6989. margin-top: 0;
  6990. color: rgb(9, 57, 139);
  6991. font-size: 1.2rem;
  6992. }
  6993. #fotter-bottom .region-footer-bottom-left {
  6994. margin-left: 3rem;
  6995. border: none;
  6996. }
  6997. @media (max-width: 810px) {
  6998. #fotter-bottom .region-footer-bottom-left {
  6999. width: 100%;
  7000. margin-left: 0rem;
  7001. }
  7002. }
  7003. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  7004. display: flex;
  7005. flex-direction: row;
  7006. justify-content: flex-start;
  7007. flex-wrap: wrap;
  7008. padding-top: 1rem;
  7009. }
  7010. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  7011. padding-right: 1rem;
  7012. padding-bottom: 1rem;
  7013. }
  7014. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  7015. width: auto;
  7016. height: 30px;
  7017. }
  7018. #fotter-bottom .region-footer-bottom-right {
  7019. display: flex;
  7020. flex-direction: column-reverse;
  7021. justify-content: flex-end;
  7022. }
  7023. @media (max-width: 810px) {
  7024. #fotter-bottom .region-footer-bottom-right {
  7025. width: 100%;
  7026. }
  7027. }
  7028. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  7029. margin-bottom: 1rem;
  7030. }
  7031. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  7032. margin-top: 0;
  7033. display: flex;
  7034. flex-direction: row-reverse;
  7035. justify-content: flex-end;
  7036. }
  7037. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  7038. color: rgb(255, 255, 255);
  7039. font-size: 0;
  7040. padding-left: 1rem;
  7041. }
  7042. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a.link-linkedin {
  7043. padding-left: 0;
  7044. }
  7045. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  7046. display: none;
  7047. }
  7048. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  7049. display: none;
  7050. }
  7051. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  7052. content: url("../images/pictos/logo_x_rond.png");
  7053. min-width: 50px;
  7054. align-self: center;
  7055. }
  7056. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  7057. display: flex;
  7058. }
  7059. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  7060. content: url("../images/pictos/youtube_rond.svg");
  7061. min-width: 50px;
  7062. }
  7063. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  7064. display: flex;
  7065. }
  7066. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  7067. content: url("../images/pictos/linkedin_rond.svg");
  7068. min-width: 50px;
  7069. }
  7070. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  7071. margin-top: 0;
  7072. color: rgb(9, 57, 139);
  7073. font-weight: 800;
  7074. list-style: none;
  7075. padding-left: 0;
  7076. }
  7077. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  7078. color: rgb(9, 57, 139);
  7079. font-size: 1.2rem;
  7080. text-decoration: underline;
  7081. margin-top: 0;
  7082. }
  7083. #fotter-bottom .region-footer-bottom-middle {
  7084. width: 60%;
  7085. }
  7086. @media (max-width: 810px) {
  7087. #fotter-bottom .region-footer-bottom-middle {
  7088. width: 100%;
  7089. }
  7090. }
  7091. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  7092. display: flex;
  7093. flex-direction: row;
  7094. justify-content: flex-start;
  7095. flex-wrap: wrap;
  7096. }
  7097. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  7098. padding-right: 1rem;
  7099. padding-bottom: 1rem;
  7100. }
  7101. .slick-prev {
  7102. color: rgb(0, 158, 227);
  7103. left: 25px;
  7104. }
  7105. .path-frontpage .slick-dots {
  7106. bottom: -40px !important;
  7107. }
  7108. .path-frontpage .slick-prev::before,
  7109. .path-frontpage .slick-next::before {
  7110. opacity: 1;
  7111. }
  7112. /* Slider */
  7113. .slick-slider {
  7114. position: relative;
  7115. display: block;
  7116. box-sizing: border-box;
  7117. -webkit-touch-callout: none;
  7118. -webkit-user-select: none;
  7119. -khtml-user-select: none;
  7120. -moz-user-select: none;
  7121. -ms-user-select: none;
  7122. user-select: none;
  7123. -ms-touch-action: pan-y;
  7124. touch-action: pan-y;
  7125. -webkit-tap-highlight-color: transparent;
  7126. }
  7127. .slick-list {
  7128. position: relative;
  7129. overflow: hidden;
  7130. display: block;
  7131. margin: 0;
  7132. padding: 0;
  7133. }
  7134. .slick-list:focus {
  7135. outline: none;
  7136. }
  7137. .slick-list.dragging {
  7138. cursor: pointer;
  7139. cursor: hand;
  7140. }
  7141. .slick-slider .slick-track,
  7142. .slick-slider .slick-list {
  7143. -webkit-transform: translate3d(0, 0, 0);
  7144. -moz-transform: translate3d(0, 0, 0);
  7145. -ms-transform: translate3d(0, 0, 0);
  7146. -o-transform: translate3d(0, 0, 0);
  7147. transform: translate3d(0, 0, 0);
  7148. }
  7149. .slick-track {
  7150. position: relative;
  7151. left: 0;
  7152. top: 0;
  7153. display: block;
  7154. margin-left: auto;
  7155. margin-right: auto;
  7156. }
  7157. .slick-track:before, .slick-track:after {
  7158. content: "";
  7159. display: table;
  7160. }
  7161. .slick-track:after {
  7162. clear: both;
  7163. }
  7164. .slick-loading .slick-track {
  7165. visibility: hidden;
  7166. }
  7167. .slick-slide {
  7168. float: left;
  7169. height: 100%;
  7170. min-height: 1px;
  7171. }
  7172. [dir=rtl] .slick-slide {
  7173. float: right;
  7174. }
  7175. .slick-slide img {
  7176. display: block;
  7177. }
  7178. .slick-slide.slick-loading img {
  7179. display: none;
  7180. }
  7181. .slick-slide {
  7182. display: none;
  7183. }
  7184. .slick-slide.dragging img {
  7185. pointer-events: none;
  7186. }
  7187. .slick-initialized .slick-slide {
  7188. display: block;
  7189. }
  7190. .slick-loading .slick-slide {
  7191. visibility: hidden;
  7192. }
  7193. .slick-vertical .slick-slide {
  7194. display: block;
  7195. height: auto;
  7196. border: 1px solid transparent;
  7197. }
  7198. .slick-arrow.slick-hidden {
  7199. display: none;
  7200. }
  7201. /* Slider */
  7202. .slick-loading .slick-list {
  7203. background: #fff url("./ajax-loader.gif") center center no-repeat;
  7204. }
  7205. /* Icons */
  7206. /* Arrows */
  7207. .slick-prev,
  7208. .slick-next {
  7209. position: absolute;
  7210. display: block;
  7211. height: 60px;
  7212. width: 60px;
  7213. line-height: 0px;
  7214. font-size: 0px;
  7215. cursor: pointer;
  7216. background: transparent;
  7217. color: transparent;
  7218. top: 50%;
  7219. -webkit-transform: translate(0, -50%);
  7220. -ms-transform: translate(0, -50%);
  7221. transform: translate(0, -50%);
  7222. padding: 0;
  7223. border: none;
  7224. outline: none;
  7225. }
  7226. .slick-prev:hover,
  7227. .slick-next:hover {
  7228. outline: none;
  7229. background: transparent;
  7230. color: transparent;
  7231. }
  7232. .slick-prev:hover:before,
  7233. .slick-next:hover:before {
  7234. opacity: 0.2;
  7235. }
  7236. .slick-prev.slick-disabled:before,
  7237. .slick-next.slick-disabled:before {
  7238. opacity: 0;
  7239. }
  7240. .slick-prev:before,
  7241. .slick-next:before {
  7242. font-family: "marianne";
  7243. font-size: 60px;
  7244. line-height: 1;
  7245. color: rgb(0, 158, 227);
  7246. opacity: 0;
  7247. -webkit-font-smoothing: antialiased;
  7248. -moz-osx-font-smoothing: grayscale;
  7249. }
  7250. .slick-prev {
  7251. z-index: 1;
  7252. left: 25px;
  7253. }
  7254. [dir=rtl] .slick-prev {
  7255. left: auto;
  7256. right: 25px;
  7257. }
  7258. .slick-prev:before {
  7259. content: "←";
  7260. }
  7261. [dir=rtl] .slick-prev:before {
  7262. content: "→";
  7263. }
  7264. .slick-next {
  7265. right: 25px;
  7266. }
  7267. [dir=rtl] .slick-next {
  7268. left: 25px;
  7269. right: auto;
  7270. }
  7271. .slick-next:before {
  7272. content: "→";
  7273. }
  7274. [dir=rtl] .slick-next:before {
  7275. content: "←";
  7276. }
  7277. /* Dots */
  7278. .slick-dotted.slick-slider {
  7279. margin-bottom: 30px;
  7280. }
  7281. 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 {
  7282. width: 600px;
  7283. }
  7284. .slick-dots {
  7285. list-style: none;
  7286. display: block;
  7287. text-align: center;
  7288. padding: 0;
  7289. margin: 0;
  7290. width: 100%;
  7291. }
  7292. .slick-dots li {
  7293. position: relative;
  7294. display: inline-block;
  7295. height: 20px;
  7296. width: 20px;
  7297. margin: 0 5px;
  7298. padding: 0;
  7299. cursor: pointer;
  7300. }
  7301. .slick-dots li button {
  7302. border: 0;
  7303. background: transparent;
  7304. display: block;
  7305. height: 20px;
  7306. width: 20px;
  7307. outline: none;
  7308. line-height: 0px;
  7309. font-size: 0px;
  7310. color: transparent;
  7311. padding: 5px;
  7312. cursor: pointer;
  7313. }
  7314. .slick-dots li button:hover, .slick-dots li button:focus {
  7315. outline: none;
  7316. }
  7317. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  7318. opacity: 0.2;
  7319. }
  7320. .slick-dots li button:before {
  7321. position: absolute;
  7322. top: 0;
  7323. left: 0;
  7324. content: "•";
  7325. width: 20px;
  7326. height: 20px;
  7327. font-family: "marianne";
  7328. font-size: 50px;
  7329. line-height: 20px;
  7330. text-align: center;
  7331. color: black;
  7332. opacity: 0.2;
  7333. -webkit-font-smoothing: antialiased;
  7334. -moz-osx-font-smoothing: grayscale;
  7335. }
  7336. .slick-dots li.slick-active button:before {
  7337. color: black;
  7338. opacity: 0.5;
  7339. }
  7340. #views-exposed-form-projets-block-1 {
  7341. flex-direction: row;
  7342. position: relative;
  7343. align-items: center;
  7344. }
  7345. @media (max-width: 810px) {
  7346. #views-exposed-form-projets-block-1 select {
  7347. max-width: 58%;
  7348. }
  7349. }
  7350. #views-exposed-form-base-de-donnees-block-1 {
  7351. flex-direction: column;
  7352. margin-top: 1rem;
  7353. }
  7354. @media (max-width: 479px) {
  7355. #views-exposed-form-base-de-donnees-block-1 {
  7356. justify-content: center;
  7357. }
  7358. }
  7359. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  7360. margin-right: 0 !important;
  7361. margin-bottom: 0.5rem !important;
  7362. padding: 0.2rem !important;
  7363. }
  7364. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7365. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  7366. width: 100%;
  7367. text-align: end;
  7368. }
  7369. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  7370. padding-right: 0.5rem !important;
  7371. flex: 2 0 auto !important;
  7372. }
  7373. #views-exposed-form-base-de-donnees-block-1,
  7374. #views-exposed-form-projets-block-1 {
  7375. display: flex;
  7376. flex-wrap: wrap;
  7377. }
  7378. @media (max-width: 810px) {
  7379. #views-exposed-form-base-de-donnees-block-1,
  7380. #views-exposed-form-projets-block-1 {
  7381. font-size: 0.8rem;
  7382. }
  7383. }
  7384. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7385. #views-exposed-form-projets-block-1 .js-form-item {
  7386. display: flex;
  7387. flex-direction: row;
  7388. max-width: 100%;
  7389. margin-right: 1rem;
  7390. margin-bottom: 1rem;
  7391. padding: 0.5rem 1rem;
  7392. align-items: baseline;
  7393. border: solid black 0.5px;
  7394. justify-content: space-evenly;
  7395. }
  7396. @media (max-width: 810px) {
  7397. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7398. #views-exposed-form-projets-block-1 .js-form-item {
  7399. display: flex;
  7400. flex-direction: row;
  7401. justify-content: space-between;
  7402. max-width: 85%;
  7403. }
  7404. }
  7405. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7406. #views-exposed-form-projets-block-1 .js-form-item label {
  7407. flex: 2 1 auto;
  7408. padding-right: 2rem;
  7409. }
  7410. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  7411. #views-exposed-form-projets-block-1 .js-form-item label::after {
  7412. content: " : ";
  7413. }
  7414. @media (max-width: 810px) {
  7415. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7416. #views-exposed-form-projets-block-1 .js-form-item label {
  7417. padding-right: 1rem;
  7418. }
  7419. }
  7420. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7421. #views-exposed-form-projets-block-1 .js-form-item input {
  7422. flex: 2 1 auto;
  7423. max-width: 55%;
  7424. }
  7425. @media (max-width: 810px) {
  7426. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7427. #views-exposed-form-projets-block-1 .js-form-item input {
  7428. max-width: 100%;
  7429. }
  7430. }
  7431. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  7432. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox {
  7433. margin-right: 1rem;
  7434. }
  7435. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  7436. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper {
  7437. margin: 0;
  7438. }
  7439. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  7440. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after {
  7441. content: none;
  7442. }
  7443. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  7444. #views-exposed-form-projets-block-1 .form-actions input {
  7445. color: white;
  7446. font-weight: 600;
  7447. text-transform: uppercase;
  7448. padding: 0.3rem 0.7rem;
  7449. background-color: rgb(0, 158, 227);
  7450. border: none;
  7451. }
  7452. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7453. #views-exposed-form-projets-block-1 input,
  7454. #views-exposed-form-projets-block-1 select {
  7455. border: none;
  7456. background-color: transparent;
  7457. font-family: "Marianne";
  7458. font-size: 1rem;
  7459. }
  7460. @media (max-width: 810px) {
  7461. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7462. #views-exposed-form-projets-block-1 input,
  7463. #views-exposed-form-projets-block-1 select {
  7464. font-size: 0.8rem;
  7465. }
  7466. }
  7467. article.node-type-ressource {
  7468. margin-bottom: 1rem;
  7469. padding-right: 1rem;
  7470. }
  7471. article.node-type-ressource h2 {
  7472. text-align: left !important;
  7473. }
  7474. article.node-type-ressource .ext {
  7475. color: black;
  7476. }
  7477. article.node-type-ressource svg.ext {
  7478. display: none;
  7479. }
  7480. article.node-type-ressource :visited {
  7481. color: black;
  7482. }
  7483. article.node-type-ressource a {
  7484. color: black;
  7485. }
  7486. article.node-type-ressource .wrapper-ressource {
  7487. display: flex;
  7488. flex-direction: column;
  7489. }
  7490. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  7491. order: 2;
  7492. }
  7493. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7494. order: 1;
  7495. }
  7496. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  7497. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7498. grid-column: 1;
  7499. text-transform: uppercase;
  7500. line-height: 1.1rem;
  7501. margin-top: 0.5rem;
  7502. }
  7503. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  7504. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  7505. color: rgb(0, 158, 227);
  7506. font-weight: 900;
  7507. font-size: 0.8rem;
  7508. pointer-events: none;
  7509. cursor: default;
  7510. }
  7511. article.node-type-ressource .wrapper-ressource .field--name-title {
  7512. grid-column: 2;
  7513. margin-top: 0.5rem;
  7514. order: 4;
  7515. margin-bottom: 0;
  7516. }
  7517. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7518. margin: 0;
  7519. line-height: 1rem;
  7520. margin-left: 0 !important;
  7521. line-height: 0;
  7522. margin-bottom: 0 !important;
  7523. }
  7524. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  7525. color: rgb(0, 0, 0);
  7526. font-size: 0.9rem;
  7527. font-weight: 900;
  7528. font-style: normal;
  7529. }
  7530. @media (max-width: 810px) {
  7531. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7532. line-height: 0 !important;
  7533. }
  7534. }
  7535. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  7536. grid-column: 2;
  7537. margin-top: 0.5rem;
  7538. font-weight: 800;
  7539. line-height: 1.1rem;
  7540. order: 6 !important;
  7541. font-size: 0.8rem;
  7542. }
  7543. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  7544. margin: 0;
  7545. }
  7546. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  7547. display: none;
  7548. }
  7549. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  7550. grid-column: 2;
  7551. margin-top: 0.8rem;
  7552. order: 5;
  7553. font-size: 0.9rem;
  7554. font-weight: 900;
  7555. line-height: 1.5;
  7556. }
  7557. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  7558. order: 7;
  7559. grid-column: 2;
  7560. margin-top: 0.5rem;
  7561. font-size: 0.8rem;
  7562. }
  7563. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  7564. margin: 0;
  7565. }
  7566. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  7567. display: none;
  7568. }
  7569. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  7570. order: 3;
  7571. grid-column: 1;
  7572. }
  7573. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  7574. height: 100px;
  7575. }
  7576. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  7577. height: 100%;
  7578. width: auto;
  7579. border: solid 1px gray;
  7580. }
  7581. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  7582. grid-column: 2;
  7583. margin-top: 0.3rem;
  7584. order: 8;
  7585. font-size: 0.8rem;
  7586. }
  7587. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  7588. order: 9;
  7589. grid-column: 2;
  7590. display: flex;
  7591. margin-top: 0.5rem;
  7592. flex-direction: row;
  7593. flex-wrap: wrap;
  7594. }
  7595. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  7596. margin-right: 0.5rem;
  7597. padding-right: 0.3rem;
  7598. font-size: 0.7rem;
  7599. }
  7600. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  7601. background: rgb(9, 57, 139);
  7602. color: rgb(255, 255, 255);
  7603. font-weight: 800;
  7604. vertical-align: super;
  7605. padding-left: 0.1rem;
  7606. padding-right: 0.1rem;
  7607. display: inline-flex;
  7608. pointer-events: none;
  7609. cursor: default;
  7610. }
  7611. article.node-type-ressource .wrapper-ressource ul.links.inline {
  7612. display: none;
  7613. }
  7614. article.node-type-ressource.type-publications-issues-du-programme {
  7615. min-width: 300px;
  7616. }
  7617. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  7618. display: grid;
  7619. grid-template-columns: 1fr 1.8fr;
  7620. grid-template-rows: repeat(5 1fr);
  7621. }
  7622. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  7623. order: 2;
  7624. grid-row: 2;
  7625. grid-column: 1/span 2;
  7626. margin-bottom: 0.5rem;
  7627. }
  7628. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  7629. order: 1;
  7630. grid-row: 1;
  7631. grid-column: 1/span 2;
  7632. }
  7633. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  7634. order: 3;
  7635. grid-row: 3/span 5;
  7636. height: auto;
  7637. width: 90%;
  7638. }
  7639. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  7640. height: auto;
  7641. width: 90%;
  7642. border: 1px solid #a3a3a3;
  7643. }
  7644. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  7645. grid-row: 3;
  7646. margin-top: 0;
  7647. padding-bottom: 0.8rem;
  7648. }
  7649. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  7650. margin-left: 0 !important;
  7651. line-height: 0;
  7652. }
  7653. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  7654. color: rgb(0, 158, 227);
  7655. font-size: 1.3rem;
  7656. font-style: normal;
  7657. }
  7658. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  7659. margin-top: 0;
  7660. line-height: 1;
  7661. grid-row: 4;
  7662. }
  7663. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  7664. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  7665. grid-row: 4;
  7666. color: rgb(0, 158, 227);
  7667. font-size: 1rem;
  7668. font-weight: 800;
  7669. }
  7670. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  7671. grid-row: 6;
  7672. line-height: 1.1;
  7673. }
  7674. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  7675. grid-row: 7;
  7676. }
  7677. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  7678. grid-row: 8;
  7679. margin-top: 0.5rem;
  7680. left: -0.2rem;
  7681. position: relative;
  7682. }
  7683. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  7684. order: 2;
  7685. }
  7686. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  7687. order: 1;
  7688. }
  7689. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  7690. order: 3;
  7691. }
  7692. @media (max-width: 479px) {
  7693. article.node-type-ressource {
  7694. margin-left: 0;
  7695. }
  7696. }
  7697. article.node-type-ressource.type-presse .field--name-field-images {
  7698. display: none;
  7699. }
  7700. .type-les-projets-en-images.views-row {
  7701. width: 50% !important;
  7702. min-width: 550px !important;
  7703. max-width: 0 !important;
  7704. }
  7705. @media (max-width: 479px) {
  7706. .type-les-projets-en-images.views-row {
  7707. min-width: 100% !important;
  7708. }
  7709. }
  7710. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7711. display: grid;
  7712. grid-template-columns: 2fr 1fr !important;
  7713. width: 100%;
  7714. max-width: 100%;
  7715. column-gap: 1rem;
  7716. align-items: start;
  7717. }
  7718. @media (max-width: 479px) {
  7719. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7720. display: flex;
  7721. flex-direction: column;
  7722. padding-left: 1rem !important;
  7723. }
  7724. }
  7725. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  7726. grid-column: 1;
  7727. grid-row: 3/span 8;
  7728. width: 100%;
  7729. }
  7730. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  7731. width: 100%;
  7732. height: auto;
  7733. margin-top: 1rem;
  7734. object-fit: cover;
  7735. border: 1px solid #ccc;
  7736. }
  7737. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7738. height: fit-content;
  7739. }
  7740. @media (max-width: 479px) {
  7741. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7742. height: auto;
  7743. }
  7744. }
  7745. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  7746. grid-column: 1/span 2;
  7747. grid-row: 2;
  7748. }
  7749. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  7750. grid-column: 1/span 2;
  7751. grid-row: 1;
  7752. }
  7753. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  7754. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  7755. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  7756. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  7757. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  7758. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7759. grid-column: 2;
  7760. width: 100%;
  7761. box-sizing: border-box;
  7762. padding: 0;
  7763. margin: 0;
  7764. }
  7765. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  7766. grid-row: 3;
  7767. margin-bottom: 0.5rem;
  7768. }
  7769. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  7770. grid-row: 4;
  7771. }
  7772. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  7773. grid-row: 5;
  7774. }
  7775. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  7776. grid-row: 6;
  7777. line-height: 1;
  7778. }
  7779. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  7780. grid-row: 7;
  7781. }
  7782. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7783. grid-row: 8;
  7784. }
  7785. .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 {
  7786. margin: 0;
  7787. padding: 0;
  7788. }