bundle.css 349 KB

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