bundle.css 347 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214
  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. }
  2425. @media (max-width: 810px) {
  2426. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2427. flex-direction: column;
  2428. }
  2429. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2430. width: 100%;
  2431. }
  2432. }
  2433. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  2434. padding-top: 0;
  2435. }
  2436. .path-actualites .block-region-content .block-views .node-type-actualite {
  2437. color: rgb(9, 57, 139);
  2438. line-height: 1.5rem;
  2439. padding: 0.5rem;
  2440. padding-right: 1rem;
  2441. padding-left: 1rem;
  2442. }
  2443. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  2444. display: flex;
  2445. flex-direction: column;
  2446. }
  2447. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  2448. color: rgb(9, 57, 139);
  2449. }
  2450. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  2451. order: 1;
  2452. }
  2453. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2454. width: 100%;
  2455. max-height: 175px;
  2456. object-fit: cover;
  2457. }
  2458. @media (max-width: 810px) {
  2459. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2460. max-height: 350px;
  2461. }
  2462. }
  2463. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  2464. display: block;
  2465. 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>');
  2466. }
  2467. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  2468. margin-top: 0.5rem;
  2469. font-size: 0.9rem;
  2470. font-weight: 800;
  2471. order: 5;
  2472. }
  2473. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  2474. order: 2;
  2475. display: flex;
  2476. flex-direction: row;
  2477. justify-content: flex-start;
  2478. }
  2479. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  2480. padding-left: 1rem;
  2481. content: "|";
  2482. }
  2483. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  2484. font-size: 0.9rem;
  2485. font-weight: 800;
  2486. padding-right: 1rem;
  2487. width: fit-content;
  2488. }
  2489. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  2490. font-size: 0.9rem;
  2491. order: 3;
  2492. display: flex;
  2493. flex-direction: row;
  2494. justify-content: flex-start;
  2495. }
  2496. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  2497. display: none;
  2498. }
  2499. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  2500. order: 4;
  2501. font-size: 0.9rem;
  2502. }
  2503. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  2504. width: 100%;
  2505. }
  2506. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  2507. margin: 0;
  2508. }
  2509. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  2510. padding-top: none !important;
  2511. list-style: none;
  2512. width: fit-content;
  2513. align-self: flex-end;
  2514. padding-right: 1rem;
  2515. }
  2516. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  2517. display: none;
  2518. }
  2519. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  2520. order: 6;
  2521. padding-top: 1rem;
  2522. }
  2523. .node-id-4 {
  2524. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2525. background-repeat: no-repeat;
  2526. background-position-y: 7rem;
  2527. max-width: 100vw;
  2528. background-size: contain;
  2529. }
  2530. .node-id-4 #block-contenudelapageprincipale {
  2531. scroll-margin: 8rem;
  2532. }
  2533. .node-id-4 .layout__region--top {
  2534. padding-bottom: 3rem;
  2535. height: 30vh;
  2536. }
  2537. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2538. display: none;
  2539. height: inherit;
  2540. }
  2541. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2542. font-family: "Source Code Pro";
  2543. font-size: 2rem;
  2544. font-weight: 800;
  2545. color: rgb(255, 255, 255);
  2546. background-color: rgb(0, 158, 227);
  2547. text-transform: uppercase;
  2548. }
  2549. .node-id-4 .layout__region--second {
  2550. width: 25%;
  2551. }
  2552. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  2553. background-color: rgb(255, 255, 255);
  2554. }
  2555. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2556. font-size: 1.5rem;
  2557. font-weight: 1000;
  2558. font-family: "Source Code Pro";
  2559. color: rgb(9, 57, 139);
  2560. text-transform: uppercase;
  2561. }
  2562. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2563. text-transform: none !important;
  2564. }
  2565. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2566. padding-right: 2rem;
  2567. }
  2568. .node-id-5 .region-content {
  2569. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2570. background-repeat: no-repeat;
  2571. max-width: 100vw;
  2572. background-size: contain;
  2573. }
  2574. .node-id-5 .layout__region--top {
  2575. padding-bottom: 3rem;
  2576. height: 30vh;
  2577. }
  2578. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2579. font-family: "Source Code Pro";
  2580. font-size: 2rem;
  2581. font-weight: 800;
  2582. color: rgb(255, 255, 255);
  2583. background-color: rgb(0, 158, 227);
  2584. text-transform: uppercase;
  2585. }
  2586. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2587. color: rgb(0, 0, 0);
  2588. text-decoration: underline;
  2589. }
  2590. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2591. display: none;
  2592. }
  2593. .path-faq #block-contenudelapageprincipale h2 {
  2594. font-family: "Source Code Pro";
  2595. font-size: 2rem;
  2596. font-weight: 800;
  2597. color: rgb(0, 158, 227);
  2598. background-color: rgb(255, 255, 255);
  2599. text-transform: uppercase;
  2600. width: fit-content;
  2601. margin-left: 10%;
  2602. margin-top: 8rem;
  2603. }
  2604. @media (max-width: 810px) {
  2605. .path-faq #block-contenudelapageprincipale h2 {
  2606. margin-left: 8%;
  2607. margin-right: 1%;
  2608. }
  2609. }
  2610. .path-faq #block-contenudelapageprincipale .block-region-content {
  2611. display: grid;
  2612. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2613. }
  2614. @media (max-width: 810px) {
  2615. .path-faq #block-contenudelapageprincipale .block-region-content {
  2616. display: flex;
  2617. flex-direction: column;
  2618. margin: auto;
  2619. }
  2620. }
  2621. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2622. grid-column: 2/span 3;
  2623. }
  2624. @media (max-width: 810px) {
  2625. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2626. width: 80%;
  2627. margin: auto;
  2628. }
  2629. }
  2630. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2631. display: none;
  2632. grid-column: 5;
  2633. grid-row: 1/span 2;
  2634. height: fit-content;
  2635. flex-direction: column;
  2636. max-width: fit-content;
  2637. margin-left: 2rem;
  2638. padding: 1rem;
  2639. background-color: rgb(0, 158, 227);
  2640. }
  2641. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2642. margin-top: 1rem;
  2643. display: block;
  2644. content: url("../images/pictos/picto_faq.svg");
  2645. }
  2646. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2647. text-align: center;
  2648. }
  2649. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2650. font-size: 0.8rem;
  2651. font-weight: 1000;
  2652. color: rgb(9, 57, 139);
  2653. text-transform: uppercase;
  2654. }
  2655. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  2656. display: flex;
  2657. flex-direction: column;
  2658. margin-top: 0;
  2659. margin-left: 1.5rem;
  2660. margin-right: 1.5rem;
  2661. text-align: center;
  2662. }
  2663. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  2664. font-weight: 800;
  2665. color: rgb(255, 255, 255);
  2666. font-size: 1.3rem;
  2667. }
  2668. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  2669. margin-left: auto;
  2670. padding-top: 1rem;
  2671. display: block;
  2672. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2673. }
  2674. @media (max-width: 810px) {
  2675. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2676. margin: auto;
  2677. padding: 0rem;
  2678. }
  2679. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2680. margin-top: 1rem;
  2681. display: block;
  2682. content: url("../images/pictos/picto_faq_2.svg");
  2683. }
  2684. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2685. text-align: center;
  2686. }
  2687. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2688. font-size: 0.8rem;
  2689. font-weight: 1000;
  2690. color: rgb(9, 57, 139);
  2691. text-transform: uppercase;
  2692. }
  2693. }
  2694. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2695. margin-top: 2rem;
  2696. grid-column: 2/span 3;
  2697. display: grid;
  2698. grid-template-columns: 1fr 1fr 1fr;
  2699. }
  2700. @media (max-width: 810px) {
  2701. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2702. width: 80%;
  2703. margin: auto;
  2704. margin-top: 1rem;
  2705. }
  2706. }
  2707. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  2708. grid-column: 1/span 3;
  2709. }
  2710. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2711. border-bottom: 1px solid rgb(0, 158, 227);
  2712. padding-bottom: 2rem;
  2713. }
  2714. @media (max-width: 810px) {
  2715. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2716. padding-bottom: 1rem;
  2717. }
  2718. }
  2719. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  2720. display: none;
  2721. }
  2722. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  2723. cursor: pointer;
  2724. }
  2725. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  2726. font-family: "Source Code Pro";
  2727. font-weight: 500;
  2728. color: rgb(9, 57, 139);
  2729. font-size: 1.3rem;
  2730. }
  2731. .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 {
  2732. display: inline-flex;
  2733. 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>');
  2734. float: right;
  2735. }
  2736. .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 {
  2737. display: inline-flex;
  2738. 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>');
  2739. float: right;
  2740. }
  2741. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  2742. display: none;
  2743. }
  2744. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  2745. display: none;
  2746. }
  2747. .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) {
  2748. display: none;
  2749. }
  2750. .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) {
  2751. display: none;
  2752. }
  2753. .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 {
  2754. display: inline-block;
  2755. content: url("../images/pictos/noun_Download_file_307900.svg");
  2756. width: 30px;
  2757. height: 30px;
  2758. padding-right: 0.8rem;
  2759. }
  2760. .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 {
  2761. display: inline-flex;
  2762. align-items: center;
  2763. color: rgb(0, 0, 0);
  2764. font-weight: 800;
  2765. }
  2766. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  2767. display: none;
  2768. }
  2769. .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 {
  2770. display: inline-block;
  2771. content: url("../images/pictos/external_link.png");
  2772. width: 30px;
  2773. height: 30px;
  2774. padding-right: 0.8rem;
  2775. }
  2776. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  2777. display: flex;
  2778. flex-direction: row;
  2779. justify-content: left;
  2780. align-items: center;
  2781. color: rgb(0, 0, 0);
  2782. font-weight: 800;
  2783. }
  2784. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  2785. display: none;
  2786. }
  2787. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  2788. display: none;
  2789. margin-top: 0.5rem;
  2790. }
  2791. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  2792. color: rgb(0, 0, 0);
  2793. text-decoration: underline;
  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 .opened {
  2797. display: block;
  2798. }
  2799. .node-id-6 {
  2800. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2801. background-repeat: no-repeat;
  2802. background-position-y: 7rem;
  2803. max-width: 100vw;
  2804. background-size: contain;
  2805. }
  2806. .node-id-6 .layout__region--top {
  2807. padding-bottom: 3rem;
  2808. height: 30vh;
  2809. }
  2810. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2811. display: none;
  2812. height: inherit;
  2813. }
  2814. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2815. font-family: "Source Code Pro";
  2816. font-size: 2rem;
  2817. font-weight: 800;
  2818. color: rgb(255, 255, 255);
  2819. background-color: rgb(0, 158, 227);
  2820. text-transform: uppercase;
  2821. }
  2822. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2823. color: rgb(0, 0, 0);
  2824. text-decoration: underline;
  2825. }
  2826. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2827. display: none;
  2828. }
  2829. .path-taxonomy #block-contenudelapageprincipale span {
  2830. display: none;
  2831. }
  2832. .path-taxonomy .view-taxonomy-term .view-header {
  2833. width: 80%;
  2834. margin: auto;
  2835. }
  2836. .path-taxonomy .view-taxonomy-term .view-content {
  2837. width: 80%;
  2838. margin: auto;
  2839. }
  2840. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper {
  2841. display: flex;
  2842. flex-direction: row;
  2843. flex-wrap: wrap;
  2844. }
  2845. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2846. width: 30%;
  2847. }
  2848. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2849. display: flex;
  2850. width: 25%;
  2851. max-width: fit-content;
  2852. }
  2853. .page-node-type-ressource .layout-container {
  2854. overflow: visible;
  2855. }
  2856. @media (max-width: 810px) {
  2857. .page-node-type-ressource .layout-container {
  2858. overflow: hidden;
  2859. }
  2860. }
  2861. .page-node-type-ressource .layout__region--top {
  2862. padding-top: 4rem;
  2863. }
  2864. @media (max-width: 550px) {
  2865. .page-node-type-ressource .layout__region--top {
  2866. padding-top: 0rem;
  2867. max-width: 100%;
  2868. }
  2869. }
  2870. .page-node-type-ressource .layout__region--top .block-region-top {
  2871. display: flex;
  2872. flex-direction: column;
  2873. }
  2874. @media screen and (min-width: 1100px) {
  2875. .page-node-type-ressource .layout__region--top .block-region-top {
  2876. display: grid;
  2877. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2878. gap: 0.5rem;
  2879. }
  2880. }
  2881. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2882. width: fit-content;
  2883. padding-left: 25%;
  2884. }
  2885. @media (min-width: 1100px) {
  2886. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2887. grid-column: 1;
  2888. grid-row: 1/span 7;
  2889. align-self: start;
  2890. justify-self: end;
  2891. margin-left: 2rem;
  2892. }
  2893. }
  2894. @media (max-width: 1100px) {
  2895. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2896. padding-left: 13%;
  2897. }
  2898. }
  2899. @media (max-width: 550px) {
  2900. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2901. width: 100vw;
  2902. padding: 0;
  2903. width: 100%;
  2904. height: auto;
  2905. }
  2906. }
  2907. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2908. border: solid 1px gray;
  2909. max-width: 100%;
  2910. width: 100%;
  2911. height: auto;
  2912. }
  2913. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2914. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2915. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2916. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2917. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2918. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2919. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2920. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2921. width: 100%;
  2922. margin-left: 13%;
  2923. }
  2924. @media (max-width: 1099px) {
  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: auto;
  2934. margin-right: 15%;
  2935. }
  2936. }
  2937. @media screen and (min-width: 1100px) {
  2938. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2939. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2940. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2941. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2942. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2943. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2944. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2945. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2946. width: auto;
  2947. margin-left: 2rem;
  2948. margin-right: 15%;
  2949. grid-column: 2/4;
  2950. align-self: start; /* S'assurer qu'il commence en haut */
  2951. height: fit-content;
  2952. justify-self: start;
  2953. }
  2954. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2955. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2956. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2957. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2958. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2959. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2960. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2961. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2962. margin: 0;
  2963. }
  2964. }
  2965. @media (max-width: 810px) {
  2966. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2967. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2968. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2969. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2970. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2971. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2972. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2973. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2974. margin-left: 9%;
  2975. margin-right: 9%;
  2976. }
  2977. }
  2978. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2979. width: 100%;
  2980. font-family: "Source Code Pro";
  2981. font-size: 1.5rem;
  2982. font-weight: 800;
  2983. color: rgb(255, 255, 255);
  2984. background-color: rgb(0, 158, 227);
  2985. text-transform: uppercase;
  2986. padding-left: 13%;
  2987. padding-top: 1rem;
  2988. padding-bottom: 0.5rem;
  2989. vertical-align: middle;
  2990. }
  2991. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2992. color: rgb(0, 158, 227);
  2993. text-transform: uppercase;
  2994. font-weight: 900;
  2995. }
  2996. @media (max-width: 1099px) {
  2997. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2998. margin-top: 2rem;
  2999. }
  3000. }
  3001. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3002. font-size: 2.5rem;
  3003. font-weight: 600;
  3004. line-height: 1.2;
  3005. }
  3006. @media (max-width: 550px) {
  3007. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  3008. font-size: 1.5rem;
  3009. width: 80vw;
  3010. }
  3011. }
  3012. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  3013. font-weight: 600;
  3014. font-size: 2rem;
  3015. }
  3016. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  3017. font-weight: 600;
  3018. font-size: 2rem;
  3019. }
  3020. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  3021. font-weight: 600;
  3022. font-size: 2rem;
  3023. margin-bottom: 0;
  3024. }
  3025. @media (max-width: 550px) {
  3026. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  3027. font-size: 1rem;
  3028. }
  3029. }
  3030. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  3031. margin-bottom: 0;
  3032. }
  3033. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  3034. font-size: 1.5rem;
  3035. font-weight: 800;
  3036. line-height: 0.8;
  3037. margin-top: 1rem;
  3038. }
  3039. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  3040. margin: 0;
  3041. }
  3042. @media (max-width: 550px) {
  3043. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  3044. margin-top: 0rem;
  3045. font-size: 1rem;
  3046. line-height: 1;
  3047. }
  3048. }
  3049. @media (max-width: 550px) {
  3050. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  3051. margin-top: 0.5rem;
  3052. }
  3053. }
  3054. @media (max-width: 550px) {
  3055. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  3056. margin-top: 0.5rem;
  3057. }
  3058. }
  3059. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  3060. display: inline-flex;
  3061. margin-top: 0.5rem;
  3062. }
  3063. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  3064. background: rgb(9, 57, 139);
  3065. margin-right: 1rem;
  3066. padding-left: 0.3rem;
  3067. padding-right: 0.3rem;
  3068. color: rgb(255, 255, 255);
  3069. font-weight: 800;
  3070. vertical-align: middle;
  3071. width: max-content;
  3072. }
  3073. @media (max-width: 810px) {
  3074. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  3075. display: flex;
  3076. flex-direction: row;
  3077. flex-wrap: wrap;
  3078. }
  3079. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  3080. margin-bottom: 0.5rem;
  3081. }
  3082. }
  3083. .page-node-type-ressource .layout__region--top {
  3084. /* Hide empty blocks */
  3085. }
  3086. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  3087. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  3088. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  3089. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  3090. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  3091. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  3092. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  3093. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  3094. display: none;
  3095. }
  3096. .page-node-type-ressource .layout__region--first {
  3097. margin-top: 3rem;
  3098. position: relative;
  3099. }
  3100. @media (max-width: 810px) {
  3101. .page-node-type-ressource .layout__region--first {
  3102. display: none;
  3103. }
  3104. }
  3105. .page-node-type-ressource .layout__region--first .block-region-first {
  3106. display: flex;
  3107. justify-content: flex-end;
  3108. position: sticky;
  3109. top: 13rem;
  3110. }
  3111. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  3112. display: flex;
  3113. width: 50%;
  3114. background-color: rgb(255, 255, 255);
  3115. padding-right: 2rem;
  3116. }
  3117. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  3118. display: flex;
  3119. font-size: 1rem;
  3120. font-weight: 1000;
  3121. color: rgb(9, 57, 139);
  3122. border-bottom: 1px solid rgb(0, 158, 227);
  3123. padding-bottom: 0.5rem;
  3124. padding-right: 1rem;
  3125. }
  3126. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  3127. text-decoration: underline;
  3128. }
  3129. .page-node-type-ressource .layout__region--second {
  3130. margin-top: 3rem;
  3131. }
  3132. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  3133. background-color: rgb(255, 255, 255);
  3134. }
  3135. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  3136. font-size: 1.5rem;
  3137. font-weight: 1000;
  3138. font-family: "Source Code Pro";
  3139. color: rgb(9, 57, 139);
  3140. text-transform: uppercase;
  3141. }
  3142. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  3143. text-transform: none !important;
  3144. }
  3145. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  3146. width: 100%;
  3147. height: auto;
  3148. }
  3149. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3150. padding-right: 2rem;
  3151. }
  3152. @media (max-width: 550px) {
  3153. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3154. padding-right: 0;
  3155. }
  3156. }
  3157. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  3158. margin-top: 0;
  3159. }
  3160. @media (max-width: 810px) {
  3161. .page-node-type-ressource .layout__region--second {
  3162. flex: 0 1 80%;
  3163. margin: auto;
  3164. margin-top: 2rem;
  3165. }
  3166. }
  3167. .page-node-type-ressource .layout__region--third {
  3168. margin-top: 3rem;
  3169. }
  3170. @media (max-width: 810px) {
  3171. .page-node-type-ressource .layout__region--third {
  3172. flex: 0 1 80%;
  3173. margin-left: 10%;
  3174. }
  3175. }
  3176. .page-node-type-ressource .layout__region--third .block-region-third {
  3177. display: flex;
  3178. flex-direction: column;
  3179. width: 70%;
  3180. }
  3181. @media (max-width: 810px) {
  3182. .page-node-type-ressource .layout__region--third .block-region-third {
  3183. width: 100%;
  3184. }
  3185. }
  3186. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3187. height: fit-content;
  3188. border: 2px solid rgb(0, 158, 227);
  3189. background-color: rgb(255, 255, 255);
  3190. order: 2;
  3191. }
  3192. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  3193. min-height: 4rem;
  3194. background: rgb(255, 255, 255);
  3195. color: rgb(0, 158, 227);
  3196. padding-left: 1rem;
  3197. padding-top: 1rem;
  3198. padding: 1rem;
  3199. }
  3200. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3201. display: none;
  3202. }
  3203. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3204. height: inherit;
  3205. margin: auto;
  3206. width: 100%;
  3207. }
  3208. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3209. content: url("../images/pictos/download.png");
  3210. min-width: 30px;
  3211. height: auto;
  3212. padding-right: 1rem;
  3213. margin-right: 1rem;
  3214. }
  3215. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3216. hyphens: auto;
  3217. display: inline-flex;
  3218. align-items: center;
  3219. color: rgb(0, 158, 227);
  3220. font-weight: 800;
  3221. max-width: 100%;
  3222. }
  3223. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3224. order: 3;
  3225. }
  3226. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3227. margin: auto;
  3228. height: fit-content;
  3229. border: 2px solid rgb(0, 158, 227);
  3230. min-height: 4rem;
  3231. background: rgb(255, 255, 255);
  3232. color: rgb(0, 158, 227);
  3233. padding-left: 1rem;
  3234. padding-top: 1rem;
  3235. margin-bottom: 1rem;
  3236. padding: 1rem;
  3237. }
  3238. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3239. display: inline-flex;
  3240. align-items: center;
  3241. color: rgb(0, 158, 227);
  3242. font-weight: 800;
  3243. }
  3244. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3245. content: url("../images/pictos/external_link.png");
  3246. min-width: 30px;
  3247. height: auto;
  3248. padding-right: 1rem;
  3249. margin-right: 1rem;
  3250. }
  3251. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3252. display: none;
  3253. }
  3254. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3255. order: 4;
  3256. margin-top: 3rem;
  3257. }
  3258. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3259. font-size: 0.8rem;
  3260. color: rgb(0, 0, 0);
  3261. font-weight: 900;
  3262. margin-bottom: 1rem;
  3263. }
  3264. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3265. border: 2px solid rgb(0, 158, 227);
  3266. padding: 1rem;
  3267. height: fit-content;
  3268. margin-bottom: 1rem;
  3269. background-color: rgb(255, 255, 255);
  3270. display: flex;
  3271. flex-direction: column;
  3272. }
  3273. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  3274. display: flex;
  3275. flex-direction: column;
  3276. }
  3277. .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 {
  3278. order: 2;
  3279. text-transform: uppercase;
  3280. color: rgb(0, 158, 227);
  3281. font-weight: 900;
  3282. font-size: 0.8rem;
  3283. }
  3284. .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 {
  3285. order: 3;
  3286. }
  3287. .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 {
  3288. margin: 0;
  3289. }
  3290. .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 {
  3291. color: rgb(0, 0, 0);
  3292. font-size: 1rem;
  3293. font-weight: 900;
  3294. font-style: italic;
  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-field-sous-titre {
  3297. order: 4;
  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-field-auteur-s- {
  3300. order: 5;
  3301. font-weight: 800;
  3302. }
  3303. .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 {
  3304. margin: 0;
  3305. }
  3306. .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 {
  3307. display: none;
  3308. }
  3309. .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 {
  3310. margin: 0;
  3311. }
  3312. .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 {
  3313. display: none;
  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-images {
  3316. order: 1;
  3317. width: 25%;
  3318. }
  3319. .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 {
  3320. width: 100%;
  3321. height: auto;
  3322. }
  3323. .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 {
  3324. order: 6;
  3325. }
  3326. .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 {
  3327. display: none;
  3328. }
  3329. .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 {
  3330. order: 7;
  3331. display: flex;
  3332. margin-top: 0.8rem;
  3333. flex-direction: row;
  3334. flex-wrap: wrap;
  3335. }
  3336. .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 {
  3337. display: none;
  3338. }
  3339. .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 {
  3340. display: flex;
  3341. flex-direction: row;
  3342. flex-wrap: wrap;
  3343. }
  3344. .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 {
  3345. padding-bottom: 0.5rem;
  3346. margin-right: 0.5rem;
  3347. padding-right: 0.3rem;
  3348. font-size: 0.8rem;
  3349. width: max-content;
  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__item a {
  3352. background: rgb(9, 57, 139);
  3353. color: rgb(255, 255, 255);
  3354. font-weight: 800;
  3355. vertical-align: super;
  3356. padding-left: 0.1rem;
  3357. padding-right: 0.1rem;
  3358. display: inline-flex;
  3359. pointer-events: none !important;
  3360. cursor: default;
  3361. }
  3362. .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 {
  3363. display: none;
  3364. }
  3365. .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 {
  3366. order: 1;
  3367. width: 100%;
  3368. }
  3369. .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) {
  3370. display: none;
  3371. }
  3372. .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 {
  3373. width: 100%;
  3374. height: auto;
  3375. }
  3376. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3377. order: 1;
  3378. }
  3379. @media (max-width: 479px) {
  3380. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3381. margin-top: 2rem;
  3382. }
  3383. }
  3384. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  3385. display: none;
  3386. font-size: 0.8rem;
  3387. color: rgb(0, 0, 0);
  3388. font-weight: 900;
  3389. }
  3390. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  3391. display: flex;
  3392. flex-direction: column;
  3393. border-bottom: 1px solid rgb(0, 0, 0);
  3394. padding: 1rem;
  3395. height: fit-content;
  3396. margin-bottom: 3rem;
  3397. background-color: rgb(255, 255, 255);
  3398. }
  3399. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  3400. display: none;
  3401. }
  3402. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  3403. content: url("../images/pictos/picto_lieu_blue.svg");
  3404. display: inline-block;
  3405. color: rgb(9, 57, 139);
  3406. margin-right: 1rem;
  3407. }
  3408. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  3409. display: flex;
  3410. flex-direction: row;
  3411. margin-bottom: 1.5rem;
  3412. }
  3413. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  3414. content: "Voir le projet";
  3415. display: block;
  3416. color: rgb(9, 57, 139);
  3417. }
  3418. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  3419. color: rgb(9, 57, 139);
  3420. font-size: 1rem;
  3421. font-weight: 900;
  3422. }
  3423. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  3424. padding-top: 3rem;
  3425. padding-bottom: 3rem;
  3426. vertical-align: middle;
  3427. color: rgb(255, 255, 255);
  3428. }
  3429. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3430. font-family: "Source Code Pro";
  3431. font-size: 2rem;
  3432. font-weight: 800;
  3433. color: rgb(255, 255, 255);
  3434. background-color: rgb(0, 158, 227);
  3435. text-transform: uppercase;
  3436. width: fit-content;
  3437. margin-left: 10%;
  3438. margin-top: 8rem;
  3439. }
  3440. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3441. display: grid;
  3442. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  3443. }
  3444. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3445. grid-column: 2/span 3;
  3446. margin-top: 4rem;
  3447. }
  3448. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  3449. margin: auto;
  3450. background: rgb(255, 255, 255);
  3451. }
  3452. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  3453. margin: 0;
  3454. }
  3455. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  3456. grid-column: 5;
  3457. margin-top: 4rem;
  3458. background-color: rgb(0, 158, 227);
  3459. height: fit-content;
  3460. min-height: fit-content;
  3461. width: 200px;
  3462. margin-left: 2rem;
  3463. aspect-ratio: 1/1;
  3464. display: flex;
  3465. }
  3466. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  3467. display: flex;
  3468. flex-direction: column;
  3469. text-align: center;
  3470. margin: auto;
  3471. padding: 1rem;
  3472. }
  3473. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  3474. display: block;
  3475. font-weight: 800;
  3476. color: rgb(255, 255, 255);
  3477. font-size: 1.3rem;
  3478. }
  3479. .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 {
  3480. margin-left: 80%;
  3481. padding-top: 0.5rem;
  3482. display: block;
  3483. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3484. }
  3485. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3486. grid-column: 2/span 3;
  3487. }
  3488. @media (max-width: 810px) {
  3489. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3490. grid-column: 2/span 4;
  3491. }
  3492. }
  3493. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  3494. margin: auto;
  3495. }
  3496. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  3497. display: none;
  3498. background: rgb(255, 255, 255);
  3499. }
  3500. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3501. display: flex;
  3502. flex-wrap: wrap;
  3503. margin-top: 3rem;
  3504. }
  3505. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3506. width: 50%;
  3507. }
  3508. .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 {
  3509. display: flex;
  3510. justify-content: space-between;
  3511. padding: 1rem;
  3512. height: fit-content;
  3513. margin-bottom: 1rem;
  3514. background-color: rgb(255, 255, 255);
  3515. margin-right: 1rem;
  3516. }
  3517. .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 {
  3518. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3519. align-self: flex-end;
  3520. }
  3521. .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 {
  3522. display: grid;
  3523. grid-template-columns: 1fr 1fr 1fr;
  3524. grid-template-rows: repeat(6 auto);
  3525. }
  3526. .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 {
  3527. grid-column: 1/span 3;
  3528. grid-row: 1;
  3529. margin-bottom: 1rem;
  3530. text-transform: uppercase;
  3531. font-weight: 900;
  3532. font-size: 0.8rem;
  3533. }
  3534. .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 {
  3535. grid-column: 1;
  3536. grid-row: 2/span 6;
  3537. margin-right: 1rem;
  3538. max-height: 170px;
  3539. }
  3540. .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 {
  3541. max-width: 100%;
  3542. object-fit: cover;
  3543. height: auto;
  3544. max-height: 95%;
  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-prenom {
  3547. grid-column: 2;
  3548. grid-row: 2;
  3549. padding-right: 0.5rem;
  3550. text-transform: uppercase;
  3551. font-weight: 800;
  3552. font-size: 1rem;
  3553. }
  3554. .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 {
  3555. grid-column: 3;
  3556. grid-row: 2;
  3557. text-transform: uppercase;
  3558. font-weight: 800;
  3559. font-size: 1rem;
  3560. }
  3561. .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 {
  3562. grid-column: 2/span 3;
  3563. grid-row: 3;
  3564. text-transform: uppercase;
  3565. font-weight: 800;
  3566. font-size: 0.8rem;
  3567. }
  3568. .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 {
  3569. grid-column: 2/span 3;
  3570. grid-row: 4;
  3571. font-size: 1.3rem;
  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-title a {
  3574. color: rgb(0, 0, 0);
  3575. }
  3576. .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 {
  3577. grid-column: 2/span 3;
  3578. grid-row: 5;
  3579. text-transform: uppercase;
  3580. font-weight: 800;
  3581. font-size: 0.8rem;
  3582. }
  3583. .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 {
  3584. display: inline-flex;
  3585. grid-column: 2/span 3;
  3586. grid-row: 6;
  3587. font-size: 0.8rem;
  3588. padding-top: 1rem;
  3589. justify-content: flex-start;
  3590. }
  3591. .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 {
  3592. justify-self: flex-start;
  3593. }
  3594. .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 {
  3595. content: "proposé le";
  3596. hyphens: none;
  3597. padding-right: 0.5rem;
  3598. }
  3599. .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 {
  3600. border: 2px solid rgb(255, 0, 15);
  3601. }
  3602. .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 {
  3603. border: 2px solid rgb(160, 26, 39);
  3604. }
  3605. .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 {
  3606. border: 2px solid rgb(199, 215, 74);
  3607. }
  3608. .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 {
  3609. border: 2px solid rgb(255, 100, 83);
  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-9 {
  3612. border: 2px solid rgb(111, 109, 125);
  3613. }
  3614. @media (max-width: 810px) {
  3615. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3616. flex-direction: column;
  3617. }
  3618. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3619. width: 100%;
  3620. }
  3621. }
  3622. @media (max-width: 810px) {
  3623. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3624. display: flex;
  3625. flex-direction: column;
  3626. padding: 2rem;
  3627. }
  3628. }
  3629. .page-node-type-offre-de-service {
  3630. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  3631. background-repeat: no-repeat;
  3632. background-position-y: 7rem;
  3633. max-width: 100vw;
  3634. background-size: contain;
  3635. }
  3636. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3637. margin-top: 2rem;
  3638. margin-left: 13%;
  3639. display: grid;
  3640. grid-template-columns: auto auto 1fr;
  3641. grid-template-rows: repeat(6 auto);
  3642. }
  3643. @media (max-width: 810px) {
  3644. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3645. margin-left: 8%;
  3646. }
  3647. }
  3648. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3649. width: fit-content;
  3650. grid-column: 1;
  3651. grid-row: 1/span 6;
  3652. width: 250px;
  3653. height: 250px;
  3654. margin-right: 2rem;
  3655. }
  3656. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  3657. width: 100%;
  3658. height: auto;
  3659. }
  3660. @media (max-width: 810px) {
  3661. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3662. width: 90px;
  3663. height: 90px;
  3664. }
  3665. }
  3666. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  3667. background: rgb(255, 255, 255);
  3668. width: fit-content;
  3669. grid-column: 2/span 3;
  3670. grid-row: 1;
  3671. text-transform: uppercase;
  3672. font-weight: 900;
  3673. font-size: 0.8rem;
  3674. }
  3675. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  3676. color: rgb(255, 0, 15);
  3677. }
  3678. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  3679. color: rgb(160, 26, 39);
  3680. }
  3681. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  3682. color: rgb(199, 215, 74);
  3683. }
  3684. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  3685. color: rgb(255, 100, 83);
  3686. }
  3687. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  3688. color: rgb(111, 109, 125);
  3689. }
  3690. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  3691. background: rgb(255, 255, 255);
  3692. width: fit-content;
  3693. grid-column: 2;
  3694. grid-row: 2;
  3695. padding-right: 0.5rem;
  3696. text-transform: uppercase;
  3697. font-weight: 900;
  3698. font-size: 1.5rem;
  3699. }
  3700. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  3701. background: rgb(255, 255, 255);
  3702. width: fit-content;
  3703. grid-column: 3;
  3704. grid-row: 2;
  3705. text-transform: uppercase;
  3706. font-weight: 900;
  3707. font-size: 1.5rem;
  3708. }
  3709. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  3710. background: rgb(255, 255, 255);
  3711. width: fit-content;
  3712. grid-column: 2/span 3;
  3713. grid-row: 3;
  3714. text-transform: uppercase;
  3715. font-weight: 800;
  3716. font-size: 1.2rem;
  3717. margin-top: 0.5rem;
  3718. }
  3719. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  3720. 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>');
  3721. }
  3722. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3723. background: rgb(255, 255, 255);
  3724. width: fit-content;
  3725. grid-column: 2/span 3;
  3726. grid-row: 4;
  3727. font-size: 2.5rem;
  3728. font-family: "Source Code Pro";
  3729. width: 70%;
  3730. }
  3731. @media (max-width: 810px) {
  3732. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3733. font-size: 1.2rem;
  3734. }
  3735. }
  3736. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  3737. color: rgb(0, 0, 0);
  3738. }
  3739. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  3740. background: rgb(255, 255, 255);
  3741. width: fit-content;
  3742. grid-column: 2/span 3;
  3743. grid-row: 5;
  3744. text-transform: uppercase;
  3745. font-weight: 800;
  3746. font-size: 0.8rem;
  3747. margin-top: 1.5rem;
  3748. }
  3749. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3750. background: rgb(255, 255, 255);
  3751. width: fit-content;
  3752. grid-column: 2/span 3;
  3753. grid-row: 6;
  3754. font-size: 0.8rem;
  3755. padding-top: 1rem;
  3756. }
  3757. .page-node-type-offre-de-service .layout__region--second {
  3758. margin-top: 3rem;
  3759. margin-left: 20%;
  3760. margin-right: 2rem;
  3761. }
  3762. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3763. background: rgb(255, 255, 255);
  3764. }
  3765. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3766. margin: 0;
  3767. }
  3768. @media (max-width: 810px) {
  3769. .page-node-type-offre-de-service .layout__region--second {
  3770. margin-left: 10%;
  3771. }
  3772. }
  3773. .page-node-type-offre-de-service .layout__region--third {
  3774. margin-top: 3rem;
  3775. }
  3776. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3777. display: flex;
  3778. flex-direction: column;
  3779. width: 70%;
  3780. }
  3781. @media (max-width: 810px) {
  3782. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3783. margin: auto;
  3784. }
  3785. }
  3786. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3787. background: rgb(0, 158, 227);
  3788. color: rgb(255, 255, 255);
  3789. text-transform: uppercase;
  3790. font-weight: 900;
  3791. font-size: 0.8rem;
  3792. padding-top: 1rem;
  3793. padding-left: 1rem;
  3794. padding-right: 1rem;
  3795. }
  3796. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3797. background: rgb(0, 158, 227);
  3798. color: rgb(255, 255, 255);
  3799. font-weight: 600;
  3800. padding-left: 1rem;
  3801. padding-right: 1rem;
  3802. padding-bottom: 1rem;
  3803. }
  3804. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3805. color: white;
  3806. hyphens: auto;
  3807. }
  3808. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3809. display: none;
  3810. }
  3811. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3812. display: none;
  3813. background: rgb(0, 158, 227);
  3814. color: rgb(255, 255, 255);
  3815. font-weight: 600;
  3816. padding-left: 1rem;
  3817. padding-right: 1rem;
  3818. padding-bottom: 1rem;
  3819. }
  3820. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3821. height: fit-content;
  3822. border: 2px solid rgb(0, 158, 227);
  3823. background-color: rgb(255, 255, 255);
  3824. margin-top: 1rem;
  3825. }
  3826. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3827. min-height: 4rem;
  3828. background: rgb(255, 255, 255);
  3829. color: rgb(0, 158, 227);
  3830. padding-left: 1rem;
  3831. padding-top: 1rem;
  3832. margin-bottom: 1rem;
  3833. }
  3834. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3835. display: none;
  3836. }
  3837. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3838. height: inherit;
  3839. margin: auto;
  3840. }
  3841. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3842. content: url("../images/pictos/noun_Download_file_307900.svg");
  3843. min-width: 50px;
  3844. height: auto;
  3845. padding-right: 1rem;
  3846. }
  3847. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3848. hyphens: auto;
  3849. display: inline-flex;
  3850. align-items: center;
  3851. color: rgb(0, 158, 227);
  3852. font-weight: 800;
  3853. }
  3854. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3855. margin-top: 1rem;
  3856. }
  3857. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3858. margin: auto;
  3859. height: fit-content;
  3860. border: 2px solid rgb(0, 158, 227);
  3861. min-height: 4rem;
  3862. background: rgb(255, 255, 255);
  3863. color: rgb(0, 158, 227);
  3864. padding-left: 1rem;
  3865. padding-top: 1rem;
  3866. margin-bottom: 1rem;
  3867. }
  3868. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3869. display: inline-flex;
  3870. align-items: center;
  3871. color: rgb(0, 158, 227);
  3872. font-weight: 800;
  3873. }
  3874. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3875. content: url("../images/pictos/external_link.png");
  3876. min-width: 50px;
  3877. height: auto;
  3878. padding-right: 1rem;
  3879. }
  3880. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3881. display: none;
  3882. }
  3883. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3884. margin-top: 3rem;
  3885. }
  3886. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3887. font-size: 0.8rem;
  3888. color: rgb(0, 0, 0);
  3889. font-weight: 900;
  3890. margin-bottom: 1rem;
  3891. }
  3892. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3893. display: flex;
  3894. flex-direction: column;
  3895. border: 2px solid rgb(0, 158, 227);
  3896. padding: 1rem;
  3897. height: fit-content;
  3898. margin-bottom: 1rem;
  3899. background-color: rgb(255, 255, 255);
  3900. }
  3901. .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 {
  3902. border-top: 1px solid rgb(0, 158, 227);
  3903. padding-top: 1rem;
  3904. }
  3905. .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 {
  3906. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3907. align-self: flex-end;
  3908. }
  3909. .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 {
  3910. margin: 0;
  3911. }
  3912. .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 {
  3913. color: rgb(0, 0, 0);
  3914. font-size: 1.4rem;
  3915. font-weight: 600;
  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 .field--name-field-auteur-s- {
  3918. font-weight: 800;
  3919. }
  3920. .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 {
  3921. margin: 0;
  3922. }
  3923. .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 {
  3924. display: none;
  3925. }
  3926. .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 {
  3927. margin: 0;
  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-edition .field__label {
  3930. display: none;
  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-images {
  3933. display: none;
  3934. width: 50%;
  3935. }
  3936. .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 {
  3937. width: 100%;
  3938. height: auto;
  3939. }
  3940. .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 {
  3941. display: inline-flex;
  3942. margin-top: 2rem;
  3943. background: rgb(9, 57, 139);
  3944. margin-right: 1rem;
  3945. padding-left: 0.3rem;
  3946. padding-right: 0.3rem;
  3947. color: rgb(255, 255, 255);
  3948. font-weight: 800;
  3949. vertical-align: middle;
  3950. }
  3951. .path-ressources.annuairederecherche .layout-content {
  3952. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3953. background-repeat: no-repeat;
  3954. background-position-y: 7rem;
  3955. max-width: 100vw;
  3956. background-size: cover;
  3957. }
  3958. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3959. padding-top: 8rem;
  3960. }
  3961. @media (max-width: 479px) {
  3962. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3963. padding-top: 5rem;
  3964. padding-left: 5rem;
  3965. }
  3966. }
  3967. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3968. padding-top: 3rem;
  3969. padding-bottom: 3rem;
  3970. vertical-align: middle;
  3971. color: rgb(255, 255, 255);
  3972. }
  3973. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3974. display: inline;
  3975. font-family: "Source Code Pro";
  3976. font-size: 2rem;
  3977. font-weight: 800;
  3978. color: rgb(255, 255, 255);
  3979. background-color: rgb(0, 158, 227);
  3980. text-transform: uppercase;
  3981. width: fit-content;
  3982. margin-left: 10%;
  3983. margin-top: 8rem;
  3984. }
  3985. @media (max-width: 479px) {
  3986. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3987. margin-right: 37%;
  3988. margin-bottom: 2rem;
  3989. margin-left: 0;
  3990. }
  3991. }
  3992. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3993. padding-top: 3rem;
  3994. flex: 0 1 50%;
  3995. margin-left: 20%;
  3996. }
  3997. @media (max-width: 479px) {
  3998. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3999. flex: 0 1 80%;
  4000. margin: 0;
  4001. }
  4002. }
  4003. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  4004. background-color: rgb(255, 255, 255);
  4005. margin-bottom: 4rem;
  4006. }
  4007. .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_ {
  4008. margin-bottom: 3rem;
  4009. }
  4010. .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 {
  4011. grid-column: 1;
  4012. grid-row: 1/span 3;
  4013. margin-right: 1rem;
  4014. max-height: 8rem;
  4015. }
  4016. .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 {
  4017. height: 8rem;
  4018. width: 8rem;
  4019. }
  4020. .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 {
  4021. height: 100%;
  4022. width: 100%;
  4023. object-fit: contain;
  4024. }
  4025. .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 {
  4026. grid-column: 2;
  4027. font-weight: 800;
  4028. background-color: rgb(255, 255, 255);
  4029. }
  4030. .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 {
  4031. background-color: rgb(255, 255, 255);
  4032. grid-column: 2;
  4033. }
  4034. .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 {
  4035. margin: 0;
  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-field-lien {
  4038. background-color: rgb(255, 255, 255);
  4039. grid-column: 2;
  4040. }
  4041. .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 {
  4042. color: rgb(0, 0, 0);
  4043. text-decoration: underline;
  4044. }
  4045. .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 {
  4046. display: none;
  4047. }
  4048. .path-webform .region-content [aria-label="Message d'avertissement"] {
  4049. display: none;
  4050. }
  4051. .path-webform .region-content .block-system-main-block h2 {
  4052. display: none;
  4053. }
  4054. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  4055. display: flex;
  4056. flex-direction: row;
  4057. flex-wrap: wrap;
  4058. flex-basis: auto;
  4059. justify-content: flex-start;
  4060. }
  4061. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  4062. width: 100%;
  4063. font-family: "Source Code Pro";
  4064. font-size: 1.5rem;
  4065. font-weight: 800;
  4066. color: rgb(255, 255, 255);
  4067. background-color: rgb(0, 158, 227);
  4068. text-transform: uppercase;
  4069. padding-left: 13%;
  4070. padding-top: 2rem;
  4071. padding-bottom: 2rem;
  4072. vertical-align: middle;
  4073. }
  4074. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  4075. width: 100%;
  4076. font-family: "Source Code Pro";
  4077. font-size: 2rem;
  4078. font-weight: 800;
  4079. color: rgb(255, 255, 255);
  4080. background-color: rgb(0, 158, 227);
  4081. text-transform: uppercase;
  4082. width: fit-content;
  4083. margin-left: 13%;
  4084. margin-top: 8rem;
  4085. }
  4086. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  4087. margin-top: 10vh;
  4088. margin-left: 13%;
  4089. margin-right: 20%;
  4090. width: 60%;
  4091. }
  4092. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  4093. margin-left: 13%;
  4094. margin-right: 20%;
  4095. width: 60%;
  4096. display: flex;
  4097. flex-direction: row;
  4098. flex-wrap: wrap;
  4099. margin-top: 2rem;
  4100. }
  4101. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  4102. content: "*";
  4103. color: red;
  4104. font-size: 2rem;
  4105. padding-left: 0.5rem;
  4106. }
  4107. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  4108. width: 100%;
  4109. }
  4110. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  4111. width: 90%;
  4112. height: 5rem;
  4113. }
  4114. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  4115. margin-left: 13%;
  4116. margin-right: 20%;
  4117. width: 60%;
  4118. display: flex;
  4119. flex-direction: row;
  4120. flex-wrap: wrap;
  4121. margin-top: 2rem;
  4122. }
  4123. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  4124. content: "*";
  4125. color: red;
  4126. font-size: 2rem;
  4127. padding-left: 0.5rem;
  4128. }
  4129. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  4130. width: 100%;
  4131. }
  4132. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  4133. width: 90%;
  4134. }
  4135. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  4136. margin-left: 13%;
  4137. width: 27%;
  4138. display: flex;
  4139. flex-direction: row;
  4140. flex-wrap: wrap;
  4141. margin-top: 2rem;
  4142. }
  4143. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  4144. content: "*";
  4145. color: red;
  4146. font-size: 2rem;
  4147. padding-left: 0.5rem;
  4148. }
  4149. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  4150. width: 100%;
  4151. }
  4152. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  4153. width: 90%;
  4154. }
  4155. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  4156. margin-right: 20%;
  4157. width: 27%;
  4158. display: flex;
  4159. flex-direction: row;
  4160. flex-wrap: wrap;
  4161. margin-top: 2rem;
  4162. margin-right: 3rem;
  4163. }
  4164. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  4165. width: 100%;
  4166. }
  4167. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  4168. width: 100%;
  4169. }
  4170. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  4171. margin-left: 13%;
  4172. margin-right: 20%;
  4173. width: 60%;
  4174. display: flex;
  4175. flex-direction: row;
  4176. flex-wrap: wrap;
  4177. margin-top: 2rem;
  4178. }
  4179. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  4180. content: "*";
  4181. color: red;
  4182. font-size: 2rem;
  4183. padding-left: 0.5rem;
  4184. }
  4185. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  4186. width: 100%;
  4187. }
  4188. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  4189. width: 90%;
  4190. }
  4191. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  4192. margin-left: 13%;
  4193. margin-right: 20%;
  4194. width: 60%;
  4195. display: flex;
  4196. flex-direction: row;
  4197. flex-wrap: wrap;
  4198. margin-top: 2rem;
  4199. }
  4200. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  4201. content: "*";
  4202. color: red;
  4203. font-size: 2rem;
  4204. padding-left: 0.5rem;
  4205. }
  4206. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  4207. width: 100%;
  4208. }
  4209. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  4210. width: 90%;
  4211. }
  4212. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  4213. margin-left: 13%;
  4214. margin-right: 20%;
  4215. width: 60%;
  4216. display: flex;
  4217. flex-direction: row;
  4218. flex-wrap: wrap;
  4219. margin-top: 2rem;
  4220. }
  4221. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  4222. content: "*";
  4223. color: red;
  4224. font-size: 2rem;
  4225. padding-left: 1rem;
  4226. }
  4227. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  4228. width: 100%;
  4229. }
  4230. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  4231. width: 90%;
  4232. }
  4233. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  4234. width: 100%;
  4235. }
  4236. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  4237. margin-left: 13%;
  4238. margin-right: 20%;
  4239. width: 60%;
  4240. display: flex;
  4241. flex-direction: row;
  4242. flex-wrap: wrap;
  4243. margin-top: 2rem;
  4244. }
  4245. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  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 input {
  4249. width: 90%;
  4250. height: 3rem;
  4251. }
  4252. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  4253. margin-left: 13%;
  4254. margin-right: 20%;
  4255. width: 60%;
  4256. display: flex;
  4257. flex-direction: row;
  4258. flex-wrap: wrap;
  4259. margin-top: 2rem;
  4260. }
  4261. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  4262. width: 100%;
  4263. }
  4264. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  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-url-vers-une-video-ou-un-site-internet 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 input {
  4277. width: 90%;
  4278. height: 3rem;
  4279. }
  4280. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  4281. margin-left: 13%;
  4282. width: 28%;
  4283. display: flex;
  4284. flex-direction: row;
  4285. flex-wrap: wrap;
  4286. margin-top: 2rem;
  4287. }
  4288. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  4289. content: "*";
  4290. color: red;
  4291. font-size: 2rem;
  4292. padding-left: 0.5rem;
  4293. }
  4294. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  4295. width: 100%;
  4296. }
  4297. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  4298. width: 90%;
  4299. }
  4300. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  4301. margin-right: 20%;
  4302. width: 29%;
  4303. display: flex;
  4304. flex-direction: row;
  4305. flex-wrap: wrap;
  4306. margin-top: 2rem;
  4307. margin-right: 3rem;
  4308. }
  4309. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  4310. content: "*";
  4311. color: red;
  4312. font-size: 2rem;
  4313. padding-left: 0.5rem;
  4314. }
  4315. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  4316. width: 100%;
  4317. }
  4318. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  4319. width: 90%;
  4320. }
  4321. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  4322. width: 60%;
  4323. }
  4324. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  4325. width: 30%;
  4326. align-self: flex-end;
  4327. background-color: rgb(0, 158, 227);
  4328. text-transform: uppercase;
  4329. color: rgb(255, 255, 255);
  4330. font-size: 1.2rem;
  4331. font-weight: 600;
  4332. float: right;
  4333. margin-top: 1rem;
  4334. border: none;
  4335. }
  4336. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  4337. 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>');
  4338. }
  4339. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  4340. display: flex;
  4341. flex-direction: row;
  4342. flex-wrap: wrap;
  4343. flex-basis: auto;
  4344. justify-content: flex-start;
  4345. }
  4346. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  4347. width: 100%;
  4348. font-family: "Source Code Pro";
  4349. font-size: 1.5rem;
  4350. font-weight: 800;
  4351. color: rgb(255, 255, 255);
  4352. background-color: rgb(0, 158, 227);
  4353. text-transform: uppercase;
  4354. padding-left: 13%;
  4355. padding-top: 2rem;
  4356. padding-bottom: 2rem;
  4357. vertical-align: middle;
  4358. }
  4359. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  4360. width: 100%;
  4361. font-family: "Source Code Pro";
  4362. font-size: 2rem;
  4363. font-weight: 800;
  4364. color: rgb(255, 255, 255);
  4365. background-color: rgb(0, 158, 227);
  4366. text-transform: uppercase;
  4367. width: fit-content;
  4368. margin-left: 13%;
  4369. margin-top: 8rem;
  4370. }
  4371. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  4372. margin-top: 10vh;
  4373. margin-left: 13%;
  4374. margin-right: 20%;
  4375. width: 60%;
  4376. }
  4377. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  4378. margin-left: 13%;
  4379. margin-right: 20%;
  4380. width: 60%;
  4381. display: flex;
  4382. flex-direction: row;
  4383. flex-wrap: wrap;
  4384. margin-top: 2rem;
  4385. }
  4386. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  4387. content: "*";
  4388. color: red;
  4389. font-size: 2rem;
  4390. padding-left: 0.5rem;
  4391. }
  4392. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  4393. width: 100%;
  4394. }
  4395. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  4396. width: 90%;
  4397. height: 5rem;
  4398. }
  4399. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  4400. margin-left: 13%;
  4401. margin-right: 20%;
  4402. width: 60%;
  4403. display: flex;
  4404. flex-direction: row;
  4405. flex-wrap: wrap;
  4406. margin-top: 2rem;
  4407. }
  4408. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  4409. content: "*";
  4410. color: red;
  4411. font-size: 2rem;
  4412. padding-left: 0.5rem;
  4413. }
  4414. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  4415. width: 100%;
  4416. }
  4417. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  4418. width: 90%;
  4419. }
  4420. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  4421. margin-left: 13%;
  4422. margin-right: 20%;
  4423. width: 60%;
  4424. display: flex;
  4425. flex-direction: row;
  4426. flex-wrap: wrap;
  4427. margin-top: 2rem;
  4428. }
  4429. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  4430. content: "*";
  4431. color: red;
  4432. font-size: 2rem;
  4433. padding-left: 0.5rem;
  4434. }
  4435. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  4436. width: 100%;
  4437. }
  4438. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  4439. width: 90%;
  4440. }
  4441. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  4442. width: 100%;
  4443. }
  4444. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  4445. margin-left: 13%;
  4446. margin-right: 20%;
  4447. width: 60%;
  4448. display: flex;
  4449. flex-direction: row;
  4450. flex-wrap: wrap;
  4451. margin-top: 2rem;
  4452. }
  4453. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  4454. width: 100%;
  4455. }
  4456. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  4457. width: 90%;
  4458. }
  4459. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  4460. margin-left: 13%;
  4461. margin-right: 20%;
  4462. width: 60%;
  4463. display: flex;
  4464. flex-direction: row;
  4465. flex-wrap: wrap;
  4466. margin-top: 2rem;
  4467. }
  4468. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  4469. width: 100%;
  4470. }
  4471. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  4472. width: 90%;
  4473. }
  4474. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  4475. margin-left: 13%;
  4476. margin-right: 20%;
  4477. width: 60%;
  4478. display: flex;
  4479. flex-direction: row;
  4480. flex-wrap: wrap;
  4481. margin-top: 2rem;
  4482. }
  4483. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  4484. margin-left: 13%;
  4485. margin-right: 20%;
  4486. width: 60%;
  4487. display: flex;
  4488. flex-direction: row;
  4489. flex-wrap: wrap;
  4490. margin-top: 2rem;
  4491. }
  4492. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  4493. width: 100%;
  4494. }
  4495. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  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 .form-item-lien-url:after {
  4505. content: "*";
  4506. color: red;
  4507. font-size: 2rem;
  4508. padding-left: 0.5rem;
  4509. }
  4510. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  4511. width: 100%;
  4512. }
  4513. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  4514. width: 90%;
  4515. }
  4516. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  4517. margin-left: 13%;
  4518. display: flex;
  4519. flex-direction: row;
  4520. flex-wrap: wrap;
  4521. margin-top: 2rem;
  4522. width: 28%;
  4523. }
  4524. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  4525. content: "*";
  4526. color: red;
  4527. font-size: 2rem;
  4528. padding-left: 0.5rem;
  4529. }
  4530. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  4531. width: 100%;
  4532. }
  4533. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  4534. width: 90%;
  4535. }
  4536. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  4537. margin-right: 20%;
  4538. width: 29%;
  4539. display: flex;
  4540. flex-direction: row;
  4541. flex-wrap: wrap;
  4542. margin-top: 2rem;
  4543. margin-right: 3rem;
  4544. }
  4545. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  4546. content: "*";
  4547. color: red;
  4548. font-size: 2rem;
  4549. padding-left: 0.5rem;
  4550. }
  4551. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  4552. width: 100%;
  4553. }
  4554. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  4555. width: 90%;
  4556. }
  4557. .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 {
  4558. margin-top: 3rem;
  4559. margin-bottom: 3rem;
  4560. margin-left: 13%;
  4561. margin-right: 20%;
  4562. width: 60%;
  4563. }
  4564. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  4565. width: 60%;
  4566. }
  4567. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  4568. width: 30%;
  4569. align-self: flex-end;
  4570. background-color: rgb(0, 158, 227);
  4571. text-transform: uppercase;
  4572. color: rgb(255, 255, 255);
  4573. font-size: 1.2rem;
  4574. font-weight: 600;
  4575. float: right;
  4576. margin-top: 1rem;
  4577. border: none;
  4578. }
  4579. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  4580. 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>');
  4581. }
  4582. .path-webform .region-content #webform-submission-question-add-form {
  4583. display: flex;
  4584. flex-direction: row;
  4585. flex-wrap: wrap;
  4586. flex-basis: auto;
  4587. justify-content: flex-start;
  4588. margin-top: 10vh;
  4589. width: 60%;
  4590. margin-left: 13%;
  4591. margin-right: 20%;
  4592. }
  4593. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  4594. display: flex;
  4595. flex-direction: row;
  4596. flex-wrap: wrap;
  4597. margin-top: 2rem;
  4598. width: 100%;
  4599. }
  4600. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  4601. content: "*";
  4602. color: red;
  4603. font-size: 2rem;
  4604. padding-left: 0.5rem;
  4605. }
  4606. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  4607. width: 100%;
  4608. }
  4609. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  4610. width: 90%;
  4611. }
  4612. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  4613. display: flex;
  4614. flex-direction: row;
  4615. flex-wrap: wrap;
  4616. margin-top: 2rem;
  4617. width: 100%;
  4618. }
  4619. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  4620. content: "*";
  4621. color: red;
  4622. font-size: 2rem;
  4623. padding-left: 0.9rem;
  4624. }
  4625. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  4626. width: 100%;
  4627. }
  4628. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  4629. width: 90%;
  4630. }
  4631. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  4632. width: 100%;
  4633. height: 5rem;
  4634. }
  4635. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  4636. width: 90%;
  4637. }
  4638. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  4639. width: 30%;
  4640. align-self: flex-end;
  4641. background-color: rgb(0, 158, 227);
  4642. text-transform: uppercase;
  4643. color: rgb(255, 255, 255);
  4644. font-size: 1.2rem;
  4645. font-weight: 600;
  4646. float: right;
  4647. margin-top: 1rem;
  4648. border: none;
  4649. }
  4650. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  4651. 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>');
  4652. }
  4653. .path-projets .region-content #block-contenudelapageprincipale span {
  4654. padding-top: 3rem;
  4655. padding-bottom: 3rem;
  4656. vertical-align: middle;
  4657. }
  4658. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  4659. margin: 0;
  4660. padding-top: 2rem;
  4661. height: 4rem;
  4662. color: rgb(255, 255, 255);
  4663. font-family: "Source Code Pro";
  4664. text-transform: uppercase;
  4665. background: rgb(0, 158, 227);
  4666. padding-left: 13%;
  4667. }
  4668. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4669. display: grid;
  4670. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  4671. }
  4672. @media (max-width: 810px) {
  4673. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4674. display: flex;
  4675. flex-direction: column;
  4676. }
  4677. }
  4678. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  4679. grid-column: 1/span 10;
  4680. }
  4681. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  4682. overflow: scroll;
  4683. height: 210px;
  4684. margin: 17px 10px 17px 20px !important;
  4685. padding-right: 10px;
  4686. }
  4687. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a {
  4688. display: none;
  4689. }
  4690. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:nth-child(1) {
  4691. display: block !important;
  4692. }
  4693. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:last-of-type {
  4694. display: block !important;
  4695. }
  4696. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content #text {
  4697. display: none;
  4698. }
  4699. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4700. grid-column: 3/span 5;
  4701. margin: auto;
  4702. }
  4703. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  4704. display: none;
  4705. }
  4706. .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) {
  4707. font-size: 1.5rem;
  4708. }
  4709. @media (max-width: 810px) {
  4710. .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) {
  4711. font-size: 1.3rem;
  4712. }
  4713. }
  4714. @media (max-width: 810px) {
  4715. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4716. padding: 1rem;
  4717. }
  4718. }
  4719. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4720. grid-column: 8/span 9;
  4721. margin-top: 4rem;
  4722. background-color: rgb(0, 158, 227);
  4723. height: fit-content;
  4724. width: 60%;
  4725. margin-left: 2rem;
  4726. grid-row: 2;
  4727. }
  4728. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  4729. display: block;
  4730. }
  4731. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  4732. display: flex;
  4733. flex-direction: column;
  4734. margin-top: 2rem;
  4735. margin-bottom: 2rem;
  4736. margin-left: 1.5rem;
  4737. margin-right: 1.5rem;
  4738. text-align: center;
  4739. }
  4740. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  4741. font-weight: 800;
  4742. color: rgb(255, 255, 255);
  4743. font-size: 1.3rem;
  4744. }
  4745. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  4746. margin-left: auto;
  4747. padding-top: 1rem;
  4748. display: block;
  4749. content: url("../images/pictos/noun_Arrow_3771902.svg");
  4750. }
  4751. @media (max-width: 810px) {
  4752. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4753. margin: auto;
  4754. }
  4755. }
  4756. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4757. grid-column: 2/span 7;
  4758. }
  4759. @media (max-width: 810px) {
  4760. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4761. padding: 1rem;
  4762. }
  4763. }
  4764. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4765. display: none;
  4766. }
  4767. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4768. margin: auto;
  4769. }
  4770. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4771. scroll-margin-top: 10rem;
  4772. }
  4773. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4774. margin-top: 4rem;
  4775. padding-left: 0.5rem;
  4776. display: flex;
  4777. flex-direction: column;
  4778. }
  4779. @media (max-width: 479px) {
  4780. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4781. flex-direction: column;
  4782. padding-bottom: 3rem;
  4783. margin-top: 0rem;
  4784. }
  4785. }
  4786. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4787. content: "Filtrer les projets pour les visualiser en ligne :";
  4788. margin-right: 2rem;
  4789. margin-bottom: 1rem;
  4790. font-weight: 900;
  4791. min-width: fit-content;
  4792. }
  4793. @media (max-width: 479px) {
  4794. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4795. padding-bottom: 1rem;
  4796. }
  4797. }
  4798. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters .form-actions {
  4799. margin-right: 1rem;
  4800. margin-bottom: 1rem;
  4801. }
  4802. .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 {
  4803. margin-top: 2rem;
  4804. display: flex;
  4805. flex-direction: row;
  4806. flex-wrap: wrap;
  4807. }
  4808. @media (max-width: 810px) {
  4809. .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 {
  4810. flex-direction: column;
  4811. }
  4812. }
  4813. .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 {
  4814. width: 25%;
  4815. }
  4816. @media (max-width: 810px) {
  4817. .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 {
  4818. width: 100%;
  4819. }
  4820. }
  4821. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4822. color: rgb(9, 57, 139);
  4823. line-height: 1.5rem;
  4824. padding: 0.5rem;
  4825. padding-right: 1rem;
  4826. padding-left: 1rem;
  4827. transition: transform 0.3s ease, box-shadow 0.3s ease;
  4828. transform-origin: center;
  4829. }
  4830. @media (max-width: 479px) {
  4831. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4832. padding-left: 0rem;
  4833. padding-right: 0rem;
  4834. padding-top: 2rem;
  4835. }
  4836. }
  4837. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet:hover {
  4838. transform: translateY(-5px);
  4839. }
  4840. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4841. display: flex;
  4842. flex-direction: column;
  4843. }
  4844. .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 {
  4845. color: rgb(9, 57, 139);
  4846. }
  4847. .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 {
  4848. order: 1;
  4849. }
  4850. .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 {
  4851. display: none;
  4852. }
  4853. .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 {
  4854. display: block;
  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 .field--name-field-photo img {
  4857. width: 100%;
  4858. max-height: 175px;
  4859. object-fit: cover;
  4860. }
  4861. .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 {
  4862. display: block;
  4863. 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>');
  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-adresse {
  4866. display: none;
  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-sous-titre {
  4869. margin-top: 0.5rem;
  4870. font-size: 0.9rem;
  4871. font-weight: 800;
  4872. order: 4;
  4873. }
  4874. .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 {
  4875. order: 4;
  4876. margin-top: 0.5rem;
  4877. font-size: 0.8rem;
  4878. font-weight: 800;
  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-title h2 {
  4881. margin: 0;
  4882. }
  4883. .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 {
  4884. order: 5;
  4885. color: red;
  4886. margin-top: 0.8rem;
  4887. font-size: 0.7rem;
  4888. }
  4889. .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 {
  4890. display: none;
  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-field-type-de-moa {
  4893. display: none;
  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-type-de-projet {
  4896. display: none;
  4897. }
  4898. .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 {
  4899. display: none;
  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 .ville-region {
  4902. order: 2;
  4903. display: flex;
  4904. flex-wrap: wrap;
  4905. flex-direction: row;
  4906. font-size: 0.9rem;
  4907. }
  4908. .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 {
  4909. display: flex;
  4910. flex: 0 1 auto;
  4911. width: auto;
  4912. min-width: 0;
  4913. text-transform: uppercase;
  4914. line-height: 1.3;
  4915. font-weight: 800;
  4916. }
  4917. .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 {
  4918. display: flex;
  4919. margin: 0;
  4920. flex-wrap: wrap;
  4921. min-width: 0;
  4922. }
  4923. .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 {
  4924. display: none;
  4925. }
  4926. .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 {
  4927. padding-top: 0 !important;
  4928. padding-bottom: 0 !important;
  4929. }
  4930. .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 {
  4931. content: ",";
  4932. margin-right: 0.3rem;
  4933. }
  4934. .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 {
  4935. display: none;
  4936. padding-top: 0 !important;
  4937. padding-bottom: 0 !important;
  4938. }
  4939. .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 {
  4940. display: flex;
  4941. min-width: 0;
  4942. flex: 0 1 auto;
  4943. width: auto;
  4944. overflow-wrap: break-word;
  4945. text-transform: uppercase;
  4946. font-weight: 800;
  4947. padding-top: 0 !important;
  4948. padding-bottom: 0 !important;
  4949. line-height: 1.3;
  4950. }
  4951. .path-node.page-node-type-projet .layout-container {
  4952. overflow: unset;
  4953. }
  4954. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4955. padding-top: 4rem;
  4956. margin-left: 10%;
  4957. margin-right: 10%;
  4958. width: 80vw;
  4959. }
  4960. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4961. display: flex;
  4962. flex-direction: row;
  4963. margin-bottom: 2rem;
  4964. }
  4965. @media (max-width: 568px) {
  4966. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4967. flex-direction: column;
  4968. }
  4969. }
  4970. .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 {
  4971. width: 60%;
  4972. padding-right: 2rem;
  4973. }
  4974. @media (max-width: 568px) {
  4975. .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 {
  4976. width: 100%;
  4977. }
  4978. }
  4979. .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 {
  4980. height: auto;
  4981. max-height: 600px;
  4982. object-fit: contain;
  4983. width: inherit;
  4984. }
  4985. @media (max-width: 810px) {
  4986. .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 {
  4987. padding-top: 1rem;
  4988. object-fit: cover;
  4989. width: 100%;
  4990. }
  4991. }
  4992. @media (max-width: 568px) {
  4993. .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 {
  4994. width: 100%;
  4995. max-height: 300px;
  4996. }
  4997. }
  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 .slick-dots > li {
  4999. display: inline-block;
  5000. }
  5001. .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 {
  5002. display: none;
  5003. }
  5004. .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 {
  5005. opacity: 1 !important;
  5006. top: 0 !important;
  5007. }
  5008. .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 {
  5009. top: 98% !important;
  5010. }
  5011. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  5012. width: 40%;
  5013. }
  5014. @media (max-width: 568px) {
  5015. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  5016. width: 100%;
  5017. }
  5018. }
  5019. .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 {
  5020. margin: 0;
  5021. }
  5022. .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 {
  5023. font-family: "Marianne";
  5024. font-size: 2.3rem;
  5025. font-weight: 800;
  5026. color: rgb(0, 158, 227);
  5027. }
  5028. @media (max-width: 1624px) {
  5029. .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 {
  5030. font-size: 2.3rem;
  5031. }
  5032. }
  5033. @media (max-width: 1384px) {
  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-size: 2rem;
  5036. }
  5037. }
  5038. @media (max-width: 1216px) {
  5039. .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 {
  5040. font-size: rem;
  5041. }
  5042. }
  5043. @media (max-width: 810px) {
  5044. .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 {
  5045. font-size: 1.7rem;
  5046. }
  5047. }
  5048. .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 {
  5049. margin-top: 2rem;
  5050. }
  5051. @media (max-width: 1624px) {
  5052. .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 {
  5053. margin-top: 1rem;
  5054. padding-top: 0.5rem;
  5055. }
  5056. }
  5057. @media (max-width: 1384px) {
  5058. .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 {
  5059. margin-top: 0.8rem;
  5060. padding-top: 0.5rem;
  5061. }
  5062. }
  5063. @media (max-width: 810px) {
  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. padding-top: 0.5rem;
  5066. }
  5067. }
  5068. .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 {
  5069. color: rgb(9, 57, 139);
  5070. font-size: 1.5rem;
  5071. font-weight: 900;
  5072. text-transform: uppercase;
  5073. }
  5074. @media (max-width: 1624px) {
  5075. .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 {
  5076. font-size: 1.3rem;
  5077. }
  5078. }
  5079. @media (max-width: 1216px) {
  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. font-size: 1.1rem;
  5082. }
  5083. }
  5084. @media (max-width: 810px) {
  5085. .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 {
  5086. font-size: 1rem;
  5087. }
  5088. }
  5089. .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 {
  5090. margin-top: 2rem;
  5091. width: fit-content;
  5092. }
  5093. .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 {
  5094. background-color: rgb(225, 0, 15);
  5095. color: white;
  5096. font-weight: 800;
  5097. padding-right: 0.3rem;
  5098. padding-left: 0.2rem;
  5099. }
  5100. @media (max-width: 1624px) {
  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: 1rem;
  5103. }
  5104. }
  5105. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  5106. display: flex;
  5107. flex-direction: row;
  5108. border: 0.1rem solid;
  5109. justify-content: space-evenly;
  5110. width: 90%;
  5111. margin-top: 3rem;
  5112. font-weight: 600;
  5113. }
  5114. @media (max-width: 479px) {
  5115. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  5116. flex-direction: column;
  5117. width: 100%;
  5118. }
  5119. }
  5120. .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 {
  5121. padding-right: 1rem;
  5122. order: 1;
  5123. width: 20%;
  5124. position: relative;
  5125. height: 80px;
  5126. }
  5127. @media (max-width: 479px) {
  5128. .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 {
  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::before {
  5133. content: url("../images/pictos/picto_lieu.svg");
  5134. min-width: 30px;
  5135. height: auto;
  5136. padding-right: 1rem;
  5137. position: absolute;
  5138. left: 0;
  5139. margin-top: 0.83em;
  5140. margin-left: 1rem;
  5141. }
  5142. .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 {
  5143. order: 1;
  5144. margin-left: 70px;
  5145. margin-bottom: 1rem;
  5146. height: fit-content;
  5147. }
  5148. .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 {
  5149. display: inline-flex;
  5150. order: 2;
  5151. margin-left: 70px;
  5152. height: fit-content;
  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-adresse .field--name-field-adresse {
  5155. display: flex;
  5156. flex-direction: row;
  5157. margin-top: 0.83em;
  5158. }
  5159. .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 {
  5160. margin: auto;
  5161. display: flex;
  5162. flex-direction: column;
  5163. justify-content: start;
  5164. margin: 0;
  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 .address .country {
  5167. display: none;
  5168. }
  5169. .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 {
  5170. order: 4;
  5171. padding-left: 1rem;
  5172. padding-right: 1rem;
  5173. padding-bottom: 1rem;
  5174. border-left: 0.1rem solid;
  5175. width: 30%;
  5176. }
  5177. @media (max-width: 479px) {
  5178. .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 {
  5179. width: 100%;
  5180. border-top: 0.1rem solid;
  5181. border-left: 0;
  5182. padding-right: 0rem;
  5183. padding-left: 0rem;
  5184. }
  5185. }
  5186. .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 {
  5187. color: rgb(9, 57, 139);
  5188. font-size: 1.2rem;
  5189. font-weight: 900;
  5190. text-transform: uppercase;
  5191. margin-bottom: 0rem !important;
  5192. }
  5193. .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 {
  5194. content: " :";
  5195. }
  5196. @media (max-width: 479px) {
  5197. .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 {
  5198. padding-right: 1rem;
  5199. padding-left: 1rem;
  5200. }
  5201. }
  5202. @media (max-width: 479px) {
  5203. .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 {
  5204. padding-right: 1rem;
  5205. padding-left: 1rem;
  5206. }
  5207. }
  5208. .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 {
  5209. display: none;
  5210. }
  5211. .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 {
  5212. order: 2;
  5213. padding-left: 1rem;
  5214. border-left: 0.1rem solid;
  5215. padding-bottom: 1rem;
  5216. width: 30%;
  5217. }
  5218. @media (max-width: 479px) {
  5219. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa {
  5220. border-left: 0;
  5221. border-top: 0.1rem solid;
  5222. width: 100%;
  5223. padding-right: 0rem;
  5224. padding-left: 0rem;
  5225. }
  5226. }
  5227. .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 {
  5228. color: rgb(9, 57, 139);
  5229. font-size: 1.2rem;
  5230. font-weight: 900;
  5231. text-transform: uppercase;
  5232. margin-bottom: 0rem !important;
  5233. }
  5234. .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 {
  5235. content: " :";
  5236. }
  5237. @media (max-width: 479px) {
  5238. .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 {
  5239. padding-right: 1rem;
  5240. padding-left: 1rem;
  5241. }
  5242. }
  5243. @media (max-width: 479px) {
  5244. .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 {
  5245. padding-right: 1rem;
  5246. padding-left: 1rem;
  5247. }
  5248. }
  5249. .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 {
  5250. display: none;
  5251. }
  5252. .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 {
  5253. order: 3;
  5254. padding-left: 1rem;
  5255. padding-bottom: 1rem;
  5256. border-left: 0.1rem solid;
  5257. width: 20%;
  5258. }
  5259. @media (max-width: 479px) {
  5260. .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 {
  5261. border-left: 0;
  5262. border-top: 0.1rem solid;
  5263. width: 100%;
  5264. padding-right: 0rem;
  5265. padding-left: 0rem;
  5266. }
  5267. }
  5268. .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 {
  5269. color: rgb(9, 57, 139);
  5270. font-size: 1.2rem;
  5271. font-weight: 900;
  5272. text-transform: uppercase;
  5273. margin-bottom: 0rem !important;
  5274. }
  5275. .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 {
  5276. content: " :";
  5277. }
  5278. @media (max-width: 479px) {
  5279. .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 {
  5280. padding-right: 1rem;
  5281. padding-left: 1rem;
  5282. }
  5283. }
  5284. @media (max-width: 479px) {
  5285. .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 {
  5286. padding-right: 1rem;
  5287. padding-left: 1rem;
  5288. }
  5289. }
  5290. .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 {
  5291. display: none;
  5292. }
  5293. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5294. margin-top: 5rem;
  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--first {
  5298. display: none;
  5299. }
  5300. }
  5301. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  5302. display: flex;
  5303. justify-content: flex-end;
  5304. position: -webkit-sticky;
  5305. position: sticky;
  5306. top: 10rem;
  5307. }
  5308. .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 {
  5309. display: flex;
  5310. justify-content: flex-end;
  5311. width: 50%;
  5312. background-color: rgb(255, 255, 255);
  5313. padding-right: 2rem;
  5314. }
  5315. .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 {
  5316. display: flex;
  5317. font-size: 1rem;
  5318. font-weight: 1000;
  5319. color: rgb(9, 57, 139);
  5320. border-bottom: 1px solid rgb(0, 158, 227);
  5321. padding-bottom: 0.5rem;
  5322. padding-right: 1rem;
  5323. margin-bottom: 0.8rem;
  5324. }
  5325. .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 {
  5326. text-decoration: underline;
  5327. }
  5328. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5329. margin-top: 5rem;
  5330. flex: 0 1 50%;
  5331. }
  5332. @media (max-width: 479px) {
  5333. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5334. flex: 0 1 100%;
  5335. margin-top: 1rem;
  5336. }
  5337. }
  5338. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5339. width: 90%;
  5340. }
  5341. @media (max-width: 479px) {
  5342. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5343. width: 80%;
  5344. margin: auto;
  5345. }
  5346. }
  5347. .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 {
  5348. margin-top: 0;
  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 .block-entity-fieldnodebody .field--type-text-with-summary {
  5351. background-color: white;
  5352. }
  5353. .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 {
  5354. background-color: rgb(255, 255, 255);
  5355. }
  5356. .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 {
  5357. margin-top: 3rem;
  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-fieldnodefield-textes .field--name-field-titre {
  5360. font-size: 1.5rem;
  5361. font-weight: 1000;
  5362. font-family: "Source Code Pro";
  5363. color: rgb(9, 57, 139);
  5364. text-transform: uppercase;
  5365. margin-bottom: 0.8rem;
  5366. }
  5367. .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 {
  5368. text-transform: none !important;
  5369. }
  5370. .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 {
  5371. width: 100%;
  5372. height: auto;
  5373. }
  5374. .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 {
  5375. padding-right: 2rem;
  5376. }
  5377. .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 {
  5378. margin-top: 0;
  5379. }
  5380. .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 {
  5381. color: rgb(0, 0, 0);
  5382. text-decoration: underline;
  5383. }
  5384. .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 {
  5385. display: none;
  5386. }
  5387. .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 {
  5388. overflow-y: visible !important;
  5389. }
  5390. .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 {
  5391. font-size: 1.5rem;
  5392. font-weight: 1000;
  5393. font-family: "Source Code Pro";
  5394. color: rgb(9, 57, 139);
  5395. text-transform: uppercase;
  5396. margin-top: 2rem;
  5397. margin-bottom: 0.8rem;
  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-fieldnodefield-partenaires .field__items {
  5400. display: flex;
  5401. flex-direction: row;
  5402. justify-content: space-between;
  5403. }
  5404. .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 {
  5405. display: flex;
  5406. flex-direction: column;
  5407. align-items: center;
  5408. }
  5409. .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 {
  5410. padding-top: 1rem;
  5411. }
  5412. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5413. margin-top: 5rem;
  5414. }
  5415. @media (max-width: 479px) {
  5416. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5417. margin-top: 2rem;
  5418. }
  5419. }
  5420. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5421. display: flex;
  5422. flex-direction: column;
  5423. width: 65%;
  5424. }
  5425. @media (max-width: 479px) {
  5426. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5427. width: 80%;
  5428. margin: auto;
  5429. }
  5430. }
  5431. .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 {
  5432. display: none;
  5433. }
  5434. .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 {
  5435. height: fit-content;
  5436. border: 2px solid rgb(0, 158, 227);
  5437. background-color: rgb(255, 255, 255);
  5438. margin-bottom: 1rem;
  5439. min-height: 4rem;
  5440. color: rgb(0, 158, 227);
  5441. padding-left: 1rem;
  5442. padding-top: 1rem;
  5443. }
  5444. .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) {
  5445. display: none;
  5446. }
  5447. .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 {
  5448. height: inherit;
  5449. margin: auto;
  5450. }
  5451. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image ::before {
  5452. content: url("../images/pictos/download.png");
  5453. min-width: 30px;
  5454. height: auto;
  5455. padding-right: 2rem;
  5456. }
  5457. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image a {
  5458. hyphens: auto;
  5459. display: inline-flex;
  5460. color: rgb(0, 158, 227);
  5461. font-weight: 800;
  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--mime-application-pdf {
  5464. height: inherit;
  5465. margin: auto;
  5466. padding-right: 1rem;
  5467. }
  5468. .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 {
  5469. content: url("../images/pictos/download.png");
  5470. min-width: 30px;
  5471. height: auto;
  5472. padding-right: 2rem;
  5473. }
  5474. .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 {
  5475. hyphens: auto;
  5476. display: inline-flex;
  5477. color: rgb(0, 158, 227);
  5478. font-weight: 800;
  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-liens h2 {
  5481. display: none;
  5482. }
  5483. .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 {
  5484. margin: auto;
  5485. height: fit-content;
  5486. border: 2px solid rgb(0, 158, 227);
  5487. min-height: 4rem;
  5488. background: rgb(255, 255, 255);
  5489. color: rgb(0, 158, 227);
  5490. padding-left: 1rem;
  5491. padding-top: 1rem;
  5492. margin-bottom: 1rem;
  5493. padding-bottom: 1rem;
  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 a {
  5496. display: inline-flex;
  5497. align-items: center;
  5498. color: rgb(0, 158, 227);
  5499. font-weight: 800;
  5500. }
  5501. .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 {
  5502. content: url("../images/pictos/external_link.png");
  5503. min-width: 30px;
  5504. height: auto;
  5505. padding-right: 2rem;
  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 svg.ext {
  5508. display: none;
  5509. }
  5510. .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- {
  5511. margin-top: 3rem;
  5512. }
  5513. @media (max-width: 479px) {
  5514. .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- {
  5515. margin-top: 2rem;
  5516. }
  5517. }
  5518. .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 {
  5519. font-size: 0.8rem;
  5520. color: rgb(0, 0, 0);
  5521. font-weight: 900;
  5522. }
  5523. .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- {
  5524. display: flex;
  5525. flex-direction: column;
  5526. }
  5527. .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) {
  5528. display: flex;
  5529. order: -1;
  5530. }
  5531. .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 {
  5532. display: flex;
  5533. flex-direction: column;
  5534. border: 2px solid rgb(0, 158, 227);
  5535. padding: 1rem;
  5536. height: fit-content;
  5537. margin-bottom: 1rem;
  5538. background-color: rgb(255, 255, 255);
  5539. }
  5540. .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 {
  5541. display: flex;
  5542. flex-direction: column;
  5543. }
  5544. .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 {
  5545. order: 3;
  5546. }
  5547. .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 {
  5548. margin: 0;
  5549. }
  5550. .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 {
  5551. color: rgb(0, 0, 0);
  5552. font-size: 1rem;
  5553. font-weight: 900;
  5554. font-style: italic;
  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-field-sous-titre {
  5557. display: none;
  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-field-type-de-ressource {
  5560. order: 2;
  5561. text-transform: uppercase;
  5562. color: rgb(0, 158, 227);
  5563. font-weight: 900;
  5564. font-size: 0.8rem;
  5565. }
  5566. .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- {
  5567. order: 5;
  5568. font-weight: 800;
  5569. }
  5570. .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 {
  5571. margin: 0;
  5572. }
  5573. .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 {
  5574. display: none;
  5575. }
  5576. .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 {
  5577. margin: 0;
  5578. }
  5579. .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 {
  5580. display: none;
  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-images {
  5583. order: 1;
  5584. width: 25%;
  5585. }
  5586. .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 {
  5587. width: 100%;
  5588. height: auto;
  5589. }
  5590. .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 {
  5591. order: 6;
  5592. }
  5593. .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 {
  5594. display: none;
  5595. }
  5596. .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 {
  5597. order: 7;
  5598. display: flex;
  5599. margin-top: 0.8rem;
  5600. flex-direction: row;
  5601. flex-wrap: wrap;
  5602. }
  5603. .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 {
  5604. display: none;
  5605. }
  5606. .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 {
  5607. display: flex;
  5608. flex-direction: row;
  5609. flex-wrap: wrap;
  5610. }
  5611. .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 {
  5612. margin-right: 0.5rem;
  5613. padding-right: 0.3rem;
  5614. font-size: 0.8rem;
  5615. margin-top: 0.2rem;
  5616. }
  5617. .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 {
  5618. background: rgb(9, 57, 139);
  5619. color: rgb(255, 255, 255);
  5620. font-weight: 800;
  5621. vertical-align: super;
  5622. padding-left: 0.1rem;
  5623. padding-right: 0.1rem;
  5624. display: inline-flex;
  5625. }
  5626. .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 {
  5627. display: none;
  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.type-publications-issues-du-programme {
  5630. min-width: 30px !important;
  5631. }
  5632. .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 {
  5633. order: 1;
  5634. width: 100%;
  5635. }
  5636. .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) {
  5637. display: none;
  5638. }
  5639. .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 {
  5640. width: 100%;
  5641. height: auto;
  5642. }
  5643. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  5644. width: 50%;
  5645. margin: auto;
  5646. display: flex;
  5647. flex-direction: row;
  5648. flex-wrap: wrap;
  5649. }
  5650. .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 {
  5651. display: none;
  5652. }
  5653. .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 {
  5654. display: flex;
  5655. flex-direction: row;
  5656. flex-wrap: wrap;
  5657. justify-content: space-between;
  5658. }
  5659. .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 {
  5660. display: none;
  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 .field--name-field-partenaires .paragraph--type--partenaire {
  5663. display: flex;
  5664. flex-direction: column;
  5665. }
  5666. .path-incubateur {
  5667. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5668. background-repeat: no-repeat;
  5669. background-position-y: 7rem;
  5670. max-width: 100vw;
  5671. background-size: contain;
  5672. }
  5673. .path-incubateur .layout-container {
  5674. overflow: unset;
  5675. }
  5676. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  5677. width: fit-content;
  5678. }
  5679. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  5680. width: fit-content;
  5681. margin-left: 11%;
  5682. margin-top: 15vh;
  5683. color: rgb(255, 255, 255);
  5684. font-family: "Source Code Pro";
  5685. text-transform: uppercase;
  5686. font-size: 2rem;
  5687. font-weight: 800;
  5688. background: rgb(0, 158, 227);
  5689. margin-bottom: 15vh;
  5690. }
  5691. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5692. position: relative;
  5693. }
  5694. .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 {
  5695. display: flex;
  5696. justify-content: flex-end;
  5697. position: -webkit-sticky;
  5698. position: sticky;
  5699. top: 10rem;
  5700. }
  5701. @media (max-width: 810px) {
  5702. .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 {
  5703. display: none;
  5704. }
  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 .config_pages--type--incubateur-du-programme {
  5707. display: flex;
  5708. flex-direction: row-reverse;
  5709. width: 50%;
  5710. background-color: rgb(255, 255, 255);
  5711. padding-right: 2rem;
  5712. }
  5713. .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 {
  5714. display: flex;
  5715. flex-direction: column;
  5716. font-size: 1rem;
  5717. font-weight: 1000;
  5718. color: rgb(9, 57, 139);
  5719. border-bottom: 1px solid rgb(0, 158, 227);
  5720. padding-bottom: 0.8rem;
  5721. padding-right: 1rem;
  5722. margin-top: 1rem;
  5723. scroll-margin-top: 7em;
  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:hover {
  5726. text-decoration: underline;
  5727. }
  5728. .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 {
  5729. padding-right: 2rem;
  5730. margin-top: 1rem;
  5731. background-color: rgb(255, 255, 255);
  5732. }
  5733. .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 {
  5734. font-size: 1.5rem;
  5735. font-weight: 1000;
  5736. font-family: "Source Code Pro", monospace;
  5737. color: rgb(9, 57, 139);
  5738. text-transform: uppercase;
  5739. margin-bottom: 0.8rem;
  5740. }
  5741. .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 {
  5742. margin-bottom: 2rem;
  5743. }
  5744. .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 {
  5745. margin-top: 1rem;
  5746. display: flex;
  5747. flex-direction: column;
  5748. width: 70%;
  5749. }
  5750. @media (max-width: 810px) {
  5751. .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 {
  5752. margin: auto;
  5753. }
  5754. }
  5755. .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 {
  5756. height: fit-content;
  5757. border: 2px solid rgb(0, 158, 227);
  5758. background-color: rgb(255, 255, 255);
  5759. margin-bottom: 1rem;
  5760. }
  5761. .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 {
  5762. min-height: 4rem;
  5763. background: rgb(255, 255, 255);
  5764. color: rgb(0, 158, 227);
  5765. padding-left: 0.8rem;
  5766. padding-top: 1rem;
  5767. }
  5768. .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) {
  5769. display: none;
  5770. }
  5771. .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 {
  5772. height: inherit;
  5773. margin: auto;
  5774. }
  5775. .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 {
  5776. content: url("../images/pictos/noun_Download_file_307900.svg");
  5777. min-width: 40px;
  5778. height: auto;
  5779. padding-right: 0.5rem;
  5780. display: inline-flex;
  5781. align-items: center;
  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 a {
  5784. hyphens: auto;
  5785. display: inline-flex;
  5786. align-items: center;
  5787. color: rgb(0, 158, 227);
  5788. font-weight: 800;
  5789. }
  5790. .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 {
  5791. margin: auto;
  5792. height: fit-content;
  5793. border: 2px solid rgb(0, 158, 227);
  5794. min-height: 4rem;
  5795. background: rgb(255, 255, 255);
  5796. color: rgb(0, 158, 227);
  5797. padding-left: 0.8rem;
  5798. padding-top: 1rem;
  5799. margin-bottom: 1rem;
  5800. }
  5801. .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 {
  5802. display: inline-flex;
  5803. align-items: center;
  5804. justify-items: center;
  5805. color: rgb(0, 158, 227);
  5806. font-weight: 800;
  5807. }
  5808. .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 {
  5809. content: url("../images/pictos/external_link.png");
  5810. min-width: 40px;
  5811. height: auto;
  5812. padding-right: 0.5rem;
  5813. display: inline-flex;
  5814. align-items: center;
  5815. }
  5816. .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 {
  5817. display: none;
  5818. }
  5819. .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 {
  5820. padding-top: 1rem;
  5821. background-color: white;
  5822. }
  5823. .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 {
  5824. width: 80%;
  5825. margin: auto;
  5826. }
  5827. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters {
  5828. margin-top: 4rem;
  5829. display: flex;
  5830. flex-direction: row;
  5831. }
  5832. @media (max-width: 479px) {
  5833. .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 {
  5834. flex-direction: column;
  5835. padding-bottom: 3rem;
  5836. }
  5837. }
  5838. .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 {
  5839. content: "Filtrer par :";
  5840. margin-right: 1rem;
  5841. }
  5842. @media (max-width: 479px) {
  5843. .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 {
  5844. padding-bottom: 1rem;
  5845. }
  5846. }
  5847. .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 {
  5848. display: flex;
  5849. flex-direction: row;
  5850. }
  5851. .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 {
  5852. display: none;
  5853. }
  5854. .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 {
  5855. display: none;
  5856. }
  5857. @media (max-width: 479px) {
  5858. .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 {
  5859. padding-bottom: 1rem;
  5860. }
  5861. }
  5862. .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 {
  5863. display: none;
  5864. }
  5865. .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 {
  5866. display: none;
  5867. }
  5868. @media (max-width: 479px) {
  5869. .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 {
  5870. padding-bottom: 1rem;
  5871. }
  5872. }
  5873. .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 {
  5874. display: none;
  5875. }
  5876. @media (max-width: 479px) {
  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 .js-form-type-textfield {
  5878. padding-bottom: 1rem;
  5879. }
  5880. }
  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 input[type=radio] {
  5882. display: none;
  5883. }
  5884. .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 {
  5885. content: "";
  5886. display: inline-block;
  5887. width: 15px;
  5888. height: 15px;
  5889. background: #fff;
  5890. border-radius: 0px;
  5891. border-color: black;
  5892. border-style: solid;
  5893. border-width: 1px;
  5894. margin-right: 0.5rem;
  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]:checked + label::before {
  5897. background: rgb(0, 158, 227);
  5898. }
  5899. .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 {
  5900. padding-right: 1rem;
  5901. }
  5902. .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 {
  5903. background-color: rgb(0, 158, 227);
  5904. color: white;
  5905. text-transform: uppercase;
  5906. border: none;
  5907. padding: 0.1rem 0.7rem;
  5908. margin-left: 2rem;
  5909. }
  5910. @media (max-width: 479px) {
  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 #edit-submit-projets {
  5912. margin-left: 0rem;
  5913. margin-right: 2rem;
  5914. }
  5915. }
  5916. .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 {
  5917. background-color: rgb(0, 158, 227);
  5918. color: white;
  5919. text-transform: uppercase;
  5920. border: none;
  5921. padding: 0.1rem 0.7rem;
  5922. margin-left: 1rem;
  5923. }
  5924. @media (max-width: 479px) {
  5925. .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 {
  5926. flex-direction: column;
  5927. }
  5928. }
  5929. .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 {
  5930. margin-top: 2rem;
  5931. display: flex;
  5932. flex-direction: row;
  5933. flex-wrap: wrap;
  5934. }
  5935. @media (max-width: 810px) {
  5936. .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 {
  5937. flex-direction: column;
  5938. }
  5939. }
  5940. .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 {
  5941. width: 25%;
  5942. }
  5943. @media (max-width: 810px) {
  5944. .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 {
  5945. width: 100%;
  5946. }
  5947. }
  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 .node-type-projet {
  5949. color: rgb(9, 57, 139);
  5950. line-height: 1.5rem;
  5951. padding: 0.5rem;
  5952. padding-right: 1rem;
  5953. padding-left: 1rem;
  5954. }
  5955. @media (max-width: 479px) {
  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 .node-type-projet {
  5957. padding-left: 0rem;
  5958. padding-right: 0rem;
  5959. padding-top: 2rem;
  5960. }
  5961. }
  5962. .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 {
  5963. display: flex;
  5964. flex-direction: column;
  5965. }
  5966. .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 {
  5967. color: rgb(9, 57, 139);
  5968. }
  5969. .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 {
  5970. order: 1;
  5971. }
  5972. .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 {
  5973. width: 100%;
  5974. max-height: 175px;
  5975. object-fit: cover;
  5976. }
  5977. .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 {
  5978. display: block;
  5979. 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>');
  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-adresse {
  5982. order: 2;
  5983. display: flex;
  5984. text-transform: uppercase;
  5985. font-size: 0.9rem;
  5986. font-weight: 800;
  5987. margin-top: 0.8rem;
  5988. line-height: 0.6rem;
  5989. }
  5990. .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 {
  5991. display: flex;
  5992. flex-direction: row;
  5993. margin: 0;
  5994. }
  5995. .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 {
  5996. padding-top: 0 !important;
  5997. padding-bottom: 0 !important;
  5998. }
  5999. .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 {
  6000. content: ",";
  6001. margin-right: 0.3rem;
  6002. }
  6003. .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 {
  6004. padding-top: 0 !important;
  6005. padding-bottom: 0 !important;
  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-sous-titre {
  6008. margin-top: 0.5rem;
  6009. font-size: 0.9rem;
  6010. font-weight: 800;
  6011. order: 4;
  6012. }
  6013. .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 {
  6014. order: 3;
  6015. margin-top: 0.5rem;
  6016. font-size: 0.9rem;
  6017. font-weight: 800;
  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-title h2 {
  6020. margin: 0;
  6021. }
  6022. .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 {
  6023. order: 4;
  6024. color: red;
  6025. margin-top: 0.8rem;
  6026. font-size: 0.7rem;
  6027. }
  6028. .node-id-201 {
  6029. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  6030. background-repeat: no-repeat;
  6031. background-position-y: 7rem;
  6032. max-width: 100vw;
  6033. background-size: contain;
  6034. }
  6035. .node-id-201 #block-contenudelapageprincipale {
  6036. scroll-margin: 8rem;
  6037. }
  6038. .node-id-201 .layout__region--top {
  6039. padding-bottom: 3rem;
  6040. height: 30vh;
  6041. }
  6042. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6043. display: none;
  6044. height: inherit;
  6045. }
  6046. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  6047. font-family: "Source Code Pro";
  6048. font-size: 2rem;
  6049. font-weight: 800;
  6050. color: rgb(255, 255, 255);
  6051. background-color: rgb(0, 158, 227);
  6052. text-transform: uppercase;
  6053. }
  6054. .node-id-201 .layout__region--second {
  6055. width: 25%;
  6056. }
  6057. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  6058. background-color: rgb(255, 255, 255);
  6059. }
  6060. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  6061. font-size: 1.5rem;
  6062. font-weight: 1000;
  6063. font-family: "Source Code Pro";
  6064. color: rgb(9, 57, 139);
  6065. text-transform: uppercase;
  6066. }
  6067. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  6068. text-transform: none !important;
  6069. }
  6070. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  6071. padding-right: 2rem;
  6072. }
  6073. .path-ressources .layout-container {
  6074. overflow: hidden;
  6075. }
  6076. @media (max-width: 810px) {
  6077. .path-ressources .layout-container {
  6078. overflow: hidden;
  6079. }
  6080. }
  6081. .path-ressources .layout-content {
  6082. min-height: 100vh;
  6083. width: 100vw;
  6084. }
  6085. .path-ressources .layout-content .region-content {
  6086. width: 100%;
  6087. margin: auto;
  6088. }
  6089. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  6090. font-size: 4em;
  6091. color: rgb(9, 57, 139);
  6092. font-weight: 400;
  6093. text-align: center;
  6094. margin-bottom: 1rem;
  6095. width: fit-content;
  6096. margin-left: 26%;
  6097. }
  6098. @media (max-width: 810px) {
  6099. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  6100. margin-left: 2rem;
  6101. text-align: left;
  6102. line-height: 4rem;
  6103. }
  6104. }
  6105. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  6106. display: flex;
  6107. flex-direction: column;
  6108. }
  6109. @media (max-width: 479px) {
  6110. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  6111. display: flex;
  6112. flex-direction: column;
  6113. }
  6114. }
  6115. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6116. width: 60%;
  6117. margin: auto;
  6118. margin-left: 26%;
  6119. }
  6120. @media (max-width: 810px) {
  6121. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6122. margin-left: 2rem;
  6123. width: 85%;
  6124. }
  6125. }
  6126. @media (max-width: 479px) {
  6127. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6128. order: 1;
  6129. margin-left: 2rem;
  6130. }
  6131. }
  6132. .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 {
  6133. grid-column: 1/span 5;
  6134. }
  6135. @media (max-width: 810px) {
  6136. .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 {
  6137. padding-top: 1rem;
  6138. margin-top: 1rem;
  6139. }
  6140. }
  6141. @media (max-width: 479px) {
  6142. .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 {
  6143. padding-left: 0;
  6144. padding-right: 0;
  6145. }
  6146. }
  6147. .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 {
  6148. margin: auto;
  6149. background: rgb(255, 255, 255);
  6150. font-size: 1rem;
  6151. }
  6152. @media (max-width: 479px) {
  6153. .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 {
  6154. margin-top: 1rem;
  6155. }
  6156. }
  6157. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6158. grid-column: 6/span 5;
  6159. grid-row: 1;
  6160. margin-top: 4rem;
  6161. background-color: rgb(0, 158, 227);
  6162. height: fit-content;
  6163. width: 100%;
  6164. }
  6165. @media (max-width: 810px) {
  6166. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6167. grid-column: 5/span 5;
  6168. }
  6169. }
  6170. @media (max-width: 479px) {
  6171. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6172. grid-column: 5/span 5;
  6173. order: 2;
  6174. }
  6175. }
  6176. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  6177. display: block;
  6178. }
  6179. .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 {
  6180. display: flex;
  6181. flex-direction: column;
  6182. margin-top: 2rem;
  6183. margin-bottom: 2rem;
  6184. margin-left: 1.5rem;
  6185. margin-right: 1.5rem;
  6186. text-align: center;
  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 .field--name-field-lien a {
  6189. font-weight: 800;
  6190. color: rgb(255, 255, 255);
  6191. font-size: 1.3rem;
  6192. }
  6193. .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 {
  6194. margin-left: auto;
  6195. padding-top: 1rem;
  6196. display: block;
  6197. content: url("../images/pictos/noun_Arrow_3771902.svg");
  6198. }
  6199. @media (max-width: 810px) {
  6200. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6201. margin: auto;
  6202. }
  6203. }
  6204. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  6205. margin-top: 2rem;
  6206. width: 100%;
  6207. }
  6208. @media (max-width: 479px) {
  6209. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  6210. order: 3;
  6211. }
  6212. }
  6213. @media (max-width: 810px) {
  6214. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees {
  6215. display: flex;
  6216. flex-direction: column;
  6217. }
  6218. }
  6219. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  6220. position: fixed;
  6221. top: 25rem;
  6222. left: 0;
  6223. background-color: rgb(255, 255, 255);
  6224. border: solid 0.2px rgba(0, 0, 0, 0.1);
  6225. margin-bottom: 5rem;
  6226. padding: 1rem;
  6227. padding-left: 2rem;
  6228. padding-right: 1.5rem;
  6229. z-index: 1;
  6230. transform: translateY(-210px);
  6231. margin-bottom: -210px;
  6232. width: 20%;
  6233. }
  6234. @media (max-width: 810px) {
  6235. .path-ressources .layout-content .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 {
  6236. position: static;
  6237. margin-bottom: 2rem;
  6238. transform: none;
  6239. margin-bottom: 0px;
  6240. width: 80%;
  6241. }
  6242. }
  6243. @media (max-width: 479px) {
  6244. .path-ressources .layout-content .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 {
  6245. margin-left: 0;
  6246. }
  6247. }
  6248. .path-ressources .layout-content .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 {
  6249. content: "Afficher : ";
  6250. padding-right: 1rem;
  6251. font-weight: 800;
  6252. font-size: 1rem;
  6253. margin-bottom: 1rem;
  6254. display: block;
  6255. width: 100%;
  6256. }
  6257. @media (max-width: 479px) {
  6258. .path-ressources .layout-content .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 {
  6259. padding-bottom: 1rem;
  6260. }
  6261. }
  6262. .path-ressources .layout-content .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 {
  6263. background-color: transparent;
  6264. border: 1px solid black;
  6265. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  6266. margin-bottom: 0.5rem;
  6267. margin-right: 0.5rem;
  6268. font-size: 0.8rem;
  6269. color: rgb(9, 57, 139);
  6270. display: inline-flex;
  6271. flex-direction: row;
  6272. align-items: center;
  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:hover {
  6275. cursor: grab;
  6276. background-color: rgb(9, 57, 139);
  6277. color: white;
  6278. }
  6279. .path-ressources .layout-content .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 {
  6280. color: rgb(9, 57, 139);
  6281. }
  6282. .path-ressources .layout-content .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 {
  6283. content: url("../images/pictos/videos.svg");
  6284. padding-right: 0.5rem;
  6285. display: block;
  6286. }
  6287. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .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 {
  6288. content: url("../images/pictos/videos-blanc.svg");
  6289. display: block;
  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.button-podcasts {
  6292. display: none !important;
  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-podcasts::before {
  6295. content: url("../images/pictos/podcasts.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-podcasts:hover::before {
  6300. content: url("../images/pictos/podcasts-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-images---photos::before {
  6304. content: url("../images/pictos/en-images.svg");
  6305. display: block;
  6306. padding-right: 0.5rem;
  6307. }
  6308. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos:hover::before {
  6309. content: url("../images/pictos/en-images-blanc.svg");
  6310. display: block;
  6311. }
  6312. .path-ressources .layout-content .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 {
  6313. content: url("../images/pictos/ecrits.svg");
  6314. padding-right: 0.5rem;
  6315. display: block;
  6316. }
  6317. .path-ressources .layout-content .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 {
  6318. content: url("../images/pictos/ecrits-blanc.svg");
  6319. display: block;
  6320. }
  6321. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles::before {
  6322. content: url("../images/pictos/ecrits.svg");
  6323. padding-right: 0.5rem;
  6324. display: block;
  6325. }
  6326. .path-ressources .layout-content .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 {
  6327. content: url("../images/pictos/ecrits-blanc.svg");
  6328. display: block;
  6329. }
  6330. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports::before {
  6331. content: url("../images/pictos/ecrits.svg");
  6332. padding-right: 0.5rem;
  6333. display: block;
  6334. }
  6335. .path-ressources .layout-content .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 {
  6336. content: url("../images/pictos/ecrits-blanc.svg");
  6337. display: block;
  6338. }
  6339. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active {
  6340. background-color: rgb(9, 57, 139);
  6341. color: white;
  6342. }
  6343. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active a {
  6344. color: white;
  6345. }
  6346. .path-ressources .layout-content .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 {
  6347. margin-top: 1rem;
  6348. }
  6349. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-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 {
  6350. content: url("../images/pictos/videos-blanc.svg");
  6351. }
  6352. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-podcasts a::before {
  6353. content: url("../images/pictos/podcasts-blanc.svg");
  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.button-images---photos a::before {
  6356. content: url("../images/pictos/en-images-blanc.svg");
  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-livres a::before {
  6359. content: url("../images/pictos/ecrits-blanc.svg");
  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-articles a::before {
  6362. content: url("../images/pictos/ecrits-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-publications---rapports a::before {
  6365. content: url("../images/pictos/ecrits-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 form::before {
  6368. content: "Filtrer par : ";
  6369. padding-right: 1rem;
  6370. font-weight: 800;
  6371. font-size: 1rem;
  6372. margin-bottom: 1rem;
  6373. }
  6374. @media (max-width: 479px) {
  6375. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  6376. padding-bottom: 1rem;
  6377. }
  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 .form-item-field-type-de-media-target-id {
  6380. display: none;
  6381. }
  6382. .path-ressources .layout-content .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 {
  6383. font-size: 0.8rem;
  6384. }
  6385. .path-ressources .layout-content .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 {
  6386. border-top: none;
  6387. border-left: none;
  6388. border-right: none;
  6389. font-size: 0.8rem;
  6390. justify-content: flex-start !important;
  6391. }
  6392. .path-ressources .layout-content .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 {
  6393. display: none;
  6394. }
  6395. .path-ressources .layout-content .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 {
  6396. display: inline-flex;
  6397. position: relative;
  6398. font-size: 0.8rem;
  6399. width: -webkit-fill-available; /* Safari/Chrome */
  6400. width: -moz-available; /* Firefox */
  6401. width: fill-available; /* standard futur */
  6402. width: 100%; /* fallback */
  6403. max-width: 100%;
  6404. }
  6405. .path-ressources .layout-content .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 {
  6406. content: url("../images/pictos/loupe.svg");
  6407. display: inline-block;
  6408. }
  6409. .path-ressources .layout-content .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 {
  6410. text-align: start !important;
  6411. max-width: 100% !important;
  6412. }
  6413. .path-ressources .layout-content .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 {
  6414. position: absolute;
  6415. right: -4px;
  6416. top: 50%;
  6417. transform: translateY(-50%);
  6418. background: white;
  6419. border: none;
  6420. padding: 0.5rem;
  6421. margin: 0;
  6422. cursor: pointer;
  6423. color: #888;
  6424. display: none; /* masqué par défaut */
  6425. }
  6426. .path-ressources .layout-content .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 {
  6427. color: #000;
  6428. }
  6429. .path-ressources .layout-content .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 {
  6430. display: none;
  6431. }
  6432. .path-ressources .layout-content .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 {
  6433. font-size: 0.8rem;
  6434. }
  6435. .path-ressources .layout-content .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 {
  6436. display: none;
  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 input {
  6439. font-size: 0.8rem;
  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 .filtered {
  6442. display: flex;
  6443. flex-direction: row;
  6444. flex-wrap: wrap;
  6445. }
  6446. .path-ressources .layout-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 {
  6447. flex-wrap: wrap;
  6448. width: 85%;
  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 .filtered .views-row-wrapper .views-row {
  6451. padding: 1rem;
  6452. width: 30% !important;
  6453. }
  6454. .path-ressources .layout-content .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 {
  6455. transition: opacity 0.3s ease;
  6456. display: flex;
  6457. flex-direction: row;
  6458. flex-wrap: wrap;
  6459. padding-left: 26%;
  6460. }
  6461. @media (max-width: 810px) {
  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 .view-content {
  6463. padding-left: 0;
  6464. }
  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 .border {
  6467. width: 80%;
  6468. border-top: solid 1px rgba(0, 0, 0, 0.3);
  6469. }
  6470. .path-ressources .layout-content .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 {
  6471. order: 1;
  6472. }
  6473. .path-ressources .layout-content .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 {
  6474. background-color: rgba(0, 158, 227, 0.2);
  6475. }
  6476. .path-ressources .layout-content .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 {
  6477. width: 45%;
  6478. min-width: 350px !important;
  6479. max-width: 500px;
  6480. }
  6481. .path-ressources .layout-content .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 {
  6482. line-height: 1.2rem;
  6483. }
  6484. .path-ressources .layout-content .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 {
  6485. color: rgb(0, 158, 227);
  6486. line-height: 1.3 !important;
  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-paroles-de-laureats {
  6489. order: 2;
  6490. }
  6491. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images {
  6492. order: 3;
  6493. }
  6494. .path-ressources .layout-content .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 {
  6495. line-height: 1.4rem;
  6496. }
  6497. .path-ressources .layout-content .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 {
  6498. padding-left: 0 !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-les-projets-en-images::before {
  6501. background-color: rgba(0, 158, 227, 0.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-presse {
  6504. order: 5;
  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-presse h3 {
  6507. border: none;
  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-publications-des-partenaires-et-laureats {
  6510. order: 4;
  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-autres {
  6513. order: 9;
  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 .type-documentation-partenariale {
  6516. order: 6;
  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-these-et-memoire {
  6519. order: 8;
  6520. }
  6521. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) {
  6522. width: 100%;
  6523. position: relative;
  6524. z-index: 0;
  6525. padding-bottom: 1rem;
  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 .view-type-slide:not(footer)::before {
  6528. content: "";
  6529. position: absolute;
  6530. left: -40%;
  6531. height: 100%;
  6532. width: 110vw;
  6533. z-index: 0;
  6534. }
  6535. @media (max-width: 810px) {
  6536. .path-ressources .layout-content .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 {
  6537. left: 0;
  6538. }
  6539. }
  6540. .path-ressources .layout-content .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) > * {
  6541. position: relative;
  6542. z-index: 1;
  6543. }
  6544. .path-ressources .layout-content .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 {
  6545. top: 1rem;
  6546. text-transform: uppercase;
  6547. font-family: "Source Code Pro";
  6548. color: rgb(9, 57, 139) !important;
  6549. display: flex;
  6550. flex-direction: row;
  6551. align-items: center;
  6552. font-size: 1.7rem;
  6553. margin-block: 0em;
  6554. }
  6555. @media (max-width: 810px) {
  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. padding-left: 2rem;
  6558. width: 70%;
  6559. }
  6560. }
  6561. @media (max-width: 479px) {
  6562. .path-ressources .layout-content .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 {
  6563. width: 65% !important;
  6564. }
  6565. }
  6566. .path-ressources .layout-content .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 {
  6567. border: none;
  6568. }
  6569. .path-ressources .layout-content .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 {
  6570. content: url("../images/pictos/picto-ressource-eqld.svg");
  6571. padding-right: 1rem;
  6572. }
  6573. .path-ressources .layout-content .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 {
  6574. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  6575. padding-right: 1rem;
  6576. }
  6577. .path-ressources .layout-content .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 {
  6578. width: 80%;
  6579. }
  6580. .path-ressources .layout-content .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 {
  6581. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  6582. padding-right: 1rem;
  6583. }
  6584. .path-ressources .layout-content .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 {
  6585. content: url("../images/pictos/picto-ressource-presse.svg");
  6586. padding-right: 1rem;
  6587. }
  6588. .path-ressources .layout-content .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 {
  6589. background-color: rgb(255, 255, 255);
  6590. border: 1px solid rgb(0, 158, 227);
  6591. list-style: none;
  6592. padding: 0.5rem;
  6593. position: relative;
  6594. left: 60vw;
  6595. top: -1.5rem;
  6596. text-transform: uppercase;
  6597. font-size: 0.7rem;
  6598. font-weight: 500;
  6599. color: rgb(0, 158, 227);
  6600. display: inline-flex;
  6601. align-items: center;
  6602. }
  6603. @media (max-width: 810px) {
  6604. .path-ressources .layout-content .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 {
  6605. left: 81vw;
  6606. }
  6607. }
  6608. @media (max-width: 479px) {
  6609. .path-ressources .layout-content .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 {
  6610. left: 76vw;
  6611. top: -1.5rem;
  6612. }
  6613. }
  6614. .path-ressources .layout-content .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 {
  6615. display: flex;
  6616. flex-direction: row;
  6617. }
  6618. .path-ressources .layout-content .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 {
  6619. width: 100% !important;
  6620. display: flex;
  6621. flex-direction: row;
  6622. transform: none;
  6623. }
  6624. .path-ressources .layout-content .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 {
  6625. width: 20%;
  6626. min-width: 250px;
  6627. max-width: 500px;
  6628. }
  6629. @media (max-width: 810px) {
  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 {
  6631. padding-left: 0rem !important;
  6632. flex-direction: column;
  6633. }
  6634. .path-ressources .layout-content .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 {
  6635. width: 100% !important;
  6636. }
  6637. }
  6638. .path-ressources .layout-content .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 {
  6639. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6640. display: inline-block;
  6641. transform: scale(0.5); /* Réduction à 50% */
  6642. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6643. }
  6644. @media (max-width: 810px) {
  6645. .path-ressources .layout-content .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 {
  6646. transform: scale(0.5); /* Réduction à 50% */
  6647. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  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-prev::before {
  6651. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6652. display: block;
  6653. display: inline-block;
  6654. transform: scaleX(-1);
  6655. transform: scale(-0.5, 0.5);
  6656. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6657. }
  6658. @media (max-width: 810px) {
  6659. .path-ressources .layout-content .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 {
  6660. transform: scale(-0.5, 0.5);
  6661. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6662. }
  6663. }
  6664. .path-ressources .layout-content .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,
  6665. .path-ressources .layout-content .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 {
  6666. opacity: 1 !important;
  6667. }
  6668. .path-ressources .layout-content .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,
  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.slick-disabled::before {
  6670. opacity: 0.3 !important;
  6671. }
  6672. .path-ressources .layout-content .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,
  6673. .path-ressources .layout-content .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 {
  6674. top: 94%;
  6675. }
  6676. .path-ressources .layout-content .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 {
  6677. right: 35vw;
  6678. }
  6679. .path-ressources .layout-content .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 {
  6680. left: 25vw;
  6681. }
  6682. @media (max-width: 1400px) {
  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 {
  6684. left: 20vw;
  6685. }
  6686. .path-ressources .layout-content .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 {
  6687. right: 30vw;
  6688. }
  6689. }
  6690. @media (max-width: 810px) {
  6691. .path-ressources .layout-content .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 {
  6692. left: 15vw;
  6693. }
  6694. .path-ressources .layout-content .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 {
  6695. right: 35vw;
  6696. }
  6697. }
  6698. @media (max-width: 479px) {
  6699. .path-ressources .layout-content .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 {
  6700. left: 8vw;
  6701. }
  6702. .path-ressources .layout-content .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 {
  6703. right: 30vw;
  6704. }
  6705. }
  6706. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  6707. padding-left: 0 !important;
  6708. }
  6709. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  6710. padding-left: 8% !important;
  6711. padding-right: 8% !important;
  6712. }
  6713. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  6714. padding-right: 0;
  6715. }
  6716. footer {
  6717. z-index: 1;
  6718. }
  6719. .carousel {
  6720. display: none;
  6721. }
  6722. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6723. display: flex !important;
  6724. flex-direction: column;
  6725. margin-left: 11%;
  6726. }
  6727. @media screen and (min-width: 1100px) {
  6728. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6729. display: flex;
  6730. }
  6731. }
  6732. @media screen and (max-width: 810px) {
  6733. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6734. margin-left: 0;
  6735. }
  6736. }
  6737. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  6738. margin-left: 0;
  6739. }
  6740. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6741. margin-top: 5rem;
  6742. padding: 0;
  6743. order: 7;
  6744. width: 85%;
  6745. }
  6746. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6747. display: grid;
  6748. grid-template-columns: 10fr 1fr;
  6749. gap: 4rem;
  6750. justify-content: center;
  6751. margin: auto;
  6752. }
  6753. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6754. display: flex;
  6755. align-items: center;
  6756. position: relative;
  6757. width: 100%;
  6758. margin: 0 auto;
  6759. }
  6760. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  6761. flex: 1;
  6762. text-align: center;
  6763. }
  6764. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  6765. width: 100%;
  6766. height: auto;
  6767. object-fit: contain;
  6768. max-height: 550px;
  6769. border: none;
  6770. }
  6771. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  6772. margin-top: 1rem;
  6773. font-family: sans-serif;
  6774. text-align: center;
  6775. font-size: 1rem;
  6776. color: #444;
  6777. }
  6778. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  6779. font-size: 2rem;
  6780. color: #333;
  6781. background: none;
  6782. border-radius: 50%;
  6783. width: 40px;
  6784. height: 40px;
  6785. line-height: 40px;
  6786. text-align: center;
  6787. cursor: pointer;
  6788. user-select: none;
  6789. transition: background 0.3s ease;
  6790. }
  6791. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  6792. background: #bbb;
  6793. }
  6794. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  6795. margin-right: 10px;
  6796. }
  6797. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  6798. margin-left: 10px;
  6799. }
  6800. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  6801. margin-top: 10px;
  6802. font-family: sans-serif;
  6803. grid-column: 2;
  6804. grid-row: 2;
  6805. }
  6806. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  6807. grid-column: 2;
  6808. display: flex;
  6809. flex-direction: column;
  6810. align-items: center;
  6811. max-height: 60vh;
  6812. grid-row: 1/span 2;
  6813. top: 0px;
  6814. position: relative;
  6815. overflow: hidden;
  6816. }
  6817. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  6818. cursor: pointer;
  6819. padding: 5px 10px;
  6820. background: #00aaff;
  6821. color: white;
  6822. border-radius: 50%;
  6823. user-select: none;
  6824. z-index: 2;
  6825. position: relative;
  6826. }
  6827. .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 {
  6828. transform: rotate(90deg);
  6829. }
  6830. .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 {
  6831. transform: rotate(90deg);
  6832. }
  6833. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  6834. display: flex;
  6835. flex-direction: column;
  6836. gap: 6px;
  6837. overflow-y: auto;
  6838. max-height: 100%;
  6839. scroll-behavior: smooth;
  6840. position: relative;
  6841. z-index: 0;
  6842. }
  6843. .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 {
  6844. display: none;
  6845. }
  6846. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  6847. width: 80px;
  6848. height: 60px;
  6849. object-fit: contain;
  6850. border: 2px solid transparent;
  6851. cursor: pointer;
  6852. opacity: 0.3;
  6853. transition: transform 0.3s ease, opacity 0.3s ease;
  6854. }
  6855. .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 {
  6856. transform: scale(1.3);
  6857. margin-top: 0.8rem;
  6858. margin-bottom: 0.8rem;
  6859. opacity: 1;
  6860. z-index: 1;
  6861. }
  6862. @media screen and (max-width: 810px) {
  6863. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6864. display: flex;
  6865. flex-direction: column;
  6866. gap: 2rem;
  6867. align-items: center;
  6868. width: 100vw;
  6869. }
  6870. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6871. width: 90%;
  6872. }
  6873. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6874. width: 100%;
  6875. display: flex !important;
  6876. flex-direction: row !important; /* 👈 corrige l'orientation */
  6877. justify-content: center;
  6878. align-items: center;
  6879. overflow-x: auto;
  6880. overflow-y: hidden;
  6881. max-height: none;
  6882. padding: 1rem 0;
  6883. position: relative;
  6884. }
  6885. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6886. display: flex !important;
  6887. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6888. gap: 0.8 rem !important;
  6889. overflow-x: auto;
  6890. overflow-y: hidden;
  6891. scroll-behavior: smooth;
  6892. padding: 0 1rem;
  6893. max-width: 100%;
  6894. flex-wrap: nowrap;
  6895. }
  6896. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6897. display: none;
  6898. }
  6899. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6900. width: 60px;
  6901. height: 45px;
  6902. flex-shrink: 0; /* évite l’écrasement */
  6903. }
  6904. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6905. display: none; /* inutile si scroll horizontal */
  6906. }
  6907. }
  6908. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6909. display: none;
  6910. }
  6911. @media screen and (max-width: 810px) {
  6912. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6913. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6914. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6915. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6916. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6917. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6918. margin-left: 7%;
  6919. }
  6920. }
  6921. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6922. transform: translateY(-45.5rem);
  6923. }
  6924. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6925. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6926. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6927. transform: translateY(-16rem);
  6928. }
  6929. .carousel {
  6930. display: none;
  6931. }
  6932. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6933. display: flex !important;
  6934. flex-direction: column;
  6935. margin-left: 11%;
  6936. width: 60%;
  6937. }
  6938. @media screen and (min-width: 1100px) {
  6939. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6940. display: flex;
  6941. }
  6942. }
  6943. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6944. margin-left: 0;
  6945. }
  6946. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6947. display: none;
  6948. }
  6949. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6950. order: 1;
  6951. }
  6952. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6953. order: 2;
  6954. }
  6955. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6956. order: 3;
  6957. }
  6958. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6959. order: 5;
  6960. }
  6961. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6962. order: 4;
  6963. }
  6964. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6965. order: 6;
  6966. }
  6967. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6968. order: 7;
  6969. margin-top: 2rem;
  6970. }
  6971. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6972. margin-top: 0rem;
  6973. }
  6974. /*partials*/
  6975. .layout-container {
  6976. position: relative;
  6977. width: 100vw;
  6978. }
  6979. .layout-container header {
  6980. position: fixed;
  6981. z-index: 99;
  6982. width: 100vw;
  6983. }
  6984. #header-top {
  6985. height: 7rem;
  6986. background-color: rgb(255, 255, 255);
  6987. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6988. display: flex;
  6989. flex-direction: row;
  6990. color: rgb(0, 0, 0);
  6991. top: 0%;
  6992. scroll-margin: 8rem;
  6993. }
  6994. @media (max-width: 810px) {
  6995. #header-top {
  6996. height: 5rem;
  6997. }
  6998. }
  6999. #header-top .region-header-top-left {
  7000. display: flex;
  7001. flex-direction: row;
  7002. padding-left: 4%;
  7003. align-items: center;
  7004. color: rgb(0, 0, 0);
  7005. flex: 1;
  7006. }
  7007. #header-top .region-header-top-left #block-logogouv {
  7008. display: flex;
  7009. height: 100%;
  7010. align-items: center;
  7011. }
  7012. @media (max-width: 810px) {
  7013. #header-top .region-header-top-left #block-logogouv .field--name-field-logo {
  7014. height: 100%;
  7015. }
  7016. }
  7017. #header-top .region-header-top-left #block-logogouv img {
  7018. width: auto;
  7019. height: 100%;
  7020. }
  7021. #header-top .region-header-top-left #block-eql-logoepau {
  7022. height: 100%;
  7023. align-content: center;
  7024. padding-left: 1rem;
  7025. }
  7026. #header-top .region-header-top-rigth {
  7027. display: flex;
  7028. flex-direction: row;
  7029. width: 40%;
  7030. align-items: center;
  7031. justify-content: flex-end;
  7032. }
  7033. #header-top .region-header-top-rigth #block-eql-identitedusite {
  7034. text-transform: uppercase;
  7035. font-family: "Source Code Pro";
  7036. color: rgb(9, 57, 139) !important;
  7037. font-size: 1rem;
  7038. text-align: end;
  7039. width: 30%;
  7040. }
  7041. #header-top .region-header-top-rigth #block-eql-identitedusite :visited {
  7042. color: rgb(9, 57, 139) !important;
  7043. }
  7044. #header-top .region-header-top-rigth #block-eql-identitedusite :link {
  7045. color: rgb(9, 57, 139) !important;
  7046. }
  7047. @media (max-width: 883px) {
  7048. #header-top .region-header-top-rigth #block-eql-identitedusite {
  7049. display: none;
  7050. }
  7051. }
  7052. #header-top .region-header-top-rigth #block-logoeql {
  7053. padding-left: 1rem;
  7054. padding-right: 2rem;
  7055. height: 100%;
  7056. align-items: center;
  7057. }
  7058. @media (max-width: 810px) {
  7059. #header-top .region-header-top-rigth #block-logoeql {
  7060. padding-right: 1rem;
  7061. }
  7062. }
  7063. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo {
  7064. height: 100%;
  7065. }
  7066. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a {
  7067. display: flex;
  7068. align-items: center;
  7069. height: 100%;
  7070. }
  7071. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a img {
  7072. width: auto;
  7073. height: 80%;
  7074. }
  7075. #header-top .region-header-top-rigth #block-burger {
  7076. z-index: 1;
  7077. background-color: rgb(0, 158, 227);
  7078. font-size: 0.7rem;
  7079. color: black;
  7080. display: block;
  7081. width: 7rem;
  7082. height: 100%;
  7083. margin-top: 0;
  7084. aspect-ratio: 1;
  7085. }
  7086. #header-top .region-header-top-rigth #block-burger :hover {
  7087. cursor: pointer;
  7088. }
  7089. @media (max-width: 810px) {
  7090. #header-top .region-header-top-rigth #block-burger {
  7091. width: 4rem;
  7092. }
  7093. }
  7094. #header-top .region-header-top-rigth #block-burger h2 {
  7095. padding-top: 1rem;
  7096. font-size: 1em;
  7097. font-weight: light;
  7098. color: rgb(0, 158, 227);
  7099. }
  7100. @media (max-width: 810px) {
  7101. #header-top .region-header-top-rigth #block-burger h2 {
  7102. padding-top: 0;
  7103. }
  7104. }
  7105. #header-top .region-header-top-rigth #block-burger h2:after {
  7106. display: block;
  7107. margin: auto;
  7108. height: 70px;
  7109. 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>');
  7110. }
  7111. @media (max-width: 810px) {
  7112. #header-top .region-header-top-rigth #block-burger h2:after {
  7113. 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>');
  7114. }
  7115. }
  7116. #header-top .region-header-top-rigth #block-burger #block-burger-menu {
  7117. display: block;
  7118. margin: 0;
  7119. align-self: center;
  7120. text-align: center;
  7121. }
  7122. #header-top .region-header-top-rigth #block-burger .ul1:not(.sous-liste) {
  7123. width: 300%;
  7124. position: relative;
  7125. right: 260px;
  7126. margin: 0;
  7127. padding-top: 2rem;
  7128. padding-bottom: 2rem;
  7129. z-index: 99;
  7130. }
  7131. #header-top .region-header-top-rigth #block-burger ul {
  7132. display: none;
  7133. background-color: rgb(0, 158, 227);
  7134. line-height: 2rem;
  7135. list-style: none;
  7136. }
  7137. #header-top .region-header-top-rigth #block-burger ul .ul1 .sous-liste a {
  7138. opacity: 1;
  7139. }
  7140. #header-top .region-header-top-rigth #block-burger ul a {
  7141. opacity: 1;
  7142. color: rgb(255, 255, 255);
  7143. font-weight: 800;
  7144. font-size: 1rem;
  7145. }
  7146. #header-top .region-header-top-rigth #block-burger.opened ul {
  7147. display: block;
  7148. }
  7149. #header-top #block-socialnetwork-2 {
  7150. display: none;
  7151. position: relative;
  7152. top: -33px;
  7153. align-self: flex-end;
  7154. margin-left: auto;
  7155. }
  7156. #header-top #block-socialnetwork-2 .field--name-body {
  7157. min-height: 75px;
  7158. }
  7159. #header-top #block-socialnetwork-2 p {
  7160. display: flex;
  7161. flex-direction: row-reverse;
  7162. margin-bottom: 0;
  7163. min-height: 65px;
  7164. justify-content: space-around;
  7165. width: 140px;
  7166. }
  7167. #header-top #block-socialnetwork-2 p a {
  7168. color: rgb(255, 255, 255);
  7169. font-size: 0;
  7170. }
  7171. #header-top #block-socialnetwork-2 p svg.ext {
  7172. display: none;
  7173. }
  7174. #header-top #block-socialnetwork-2 p .link-twitter {
  7175. display: flex;
  7176. background-color: black;
  7177. width: 40px;
  7178. justify-content: center;
  7179. align-items: flex-end;
  7180. }
  7181. #header-top #block-socialnetwork-2 p .link-twitter:before {
  7182. content: url("../images/pictos/logo_x_blanc.svg");
  7183. min-width: 30px;
  7184. padding-bottom: 0.5rem;
  7185. }
  7186. #header-top #block-socialnetwork-2 p .link-youtube {
  7187. display: flex;
  7188. background-color: black;
  7189. min-width: 40px;
  7190. justify-content: center;
  7191. align-items: flex-end;
  7192. }
  7193. #header-top #block-socialnetwork-2 p .link-youtube:before {
  7194. content: url("../images/pictos/youtube_white.svg");
  7195. min-width: 25px;
  7196. padding-bottom: 0.5rem;
  7197. }
  7198. #header-top #block-socialnetwork-2 p .link-linkedin {
  7199. display: flex;
  7200. background-color: black;
  7201. min-width: 40px;
  7202. justify-content: center;
  7203. align-items: flex-end;
  7204. }
  7205. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  7206. content: url("../images/pictos/linkedin_white.svg");
  7207. min-width: 35px;
  7208. padding-bottom: 0.2rem;
  7209. }
  7210. .region-header-bottom {
  7211. box-shadow: 0 4px 4px 3px rgba(0, 0, 0, 0.1);
  7212. }
  7213. .region-header-bottom #block-headermenu {
  7214. align-self: baseline;
  7215. width: 100%;
  7216. background-color: white;
  7217. border-top: solid rgb(0, 158, 227) 1px;
  7218. }
  7219. .region-header-bottom ul {
  7220. font-size: 1rem;
  7221. font-weight: 900;
  7222. list-style: none;
  7223. display: flex;
  7224. flex-direction: row;
  7225. justify-content: space-evenly;
  7226. width: 100%;
  7227. padding-inline-start: 0px;
  7228. padding: 1rem;
  7229. margin-top: 0 !important;
  7230. padding-bottom: 0.5rem;
  7231. }
  7232. .region-header-bottom ul .is-active {
  7233. color: rgb(0, 158, 227);
  7234. }
  7235. .region-header-bottom ul ul {
  7236. position: absolute;
  7237. left: -28%;
  7238. z-index: 1000;
  7239. display: flex;
  7240. flex-direction: column;
  7241. min-width: 210px;
  7242. width: fit-content;
  7243. justify-content: space-between;
  7244. padding-inline-start: 0px;
  7245. }
  7246. .region-header-bottom ul ul .is-active {
  7247. color: rgb(0, 158, 227);
  7248. }
  7249. .region-header-bottom ul ul {
  7250. opacity: 0;
  7251. visibility: hidden;
  7252. transform: translateY(-10px);
  7253. transition: opacity 0.3s ease, transform 0.3s ease;
  7254. }
  7255. .region-header-bottom ul li {
  7256. position: relative;
  7257. display: flex;
  7258. flex-direction: column;
  7259. background-color: rgb(255, 255, 255);
  7260. padding-bottom: 0.8rem;
  7261. max-width: inherit;
  7262. padding-left: 1rem;
  7263. padding-right: 0.5rem;
  7264. height: fit-content;
  7265. }
  7266. .region-header-bottom ul li a {
  7267. color: rgb(0, 0, 0);
  7268. }
  7269. .region-header-bottom ul li .is-active {
  7270. color: rgb(0, 158, 227);
  7271. }
  7272. .region-header-bottom ul li :hover {
  7273. color: rgb(0, 158, 227);
  7274. }
  7275. .region-header-bottom ul li:hover ul {
  7276. opacity: 1;
  7277. visibility: visible;
  7278. transform: translateY(0);
  7279. }
  7280. .region-header-bottom ul .ul1.sous-liste.ul2 {
  7281. padding-left: 1rem;
  7282. }
  7283. #fotter-bottom {
  7284. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  7285. display: flex;
  7286. flex: 1 1 120px;
  7287. flex-direction: row;
  7288. background-color: rgb(255, 255, 255);
  7289. padding-top: 3rem;
  7290. }
  7291. @media (max-width: 810px) {
  7292. #fotter-bottom {
  7293. flex-direction: column;
  7294. padding-right: 1rem;
  7295. }
  7296. }
  7297. #fotter-bottom .region {
  7298. display: block;
  7299. padding-left: 2rem;
  7300. padding-right: 1rem;
  7301. padding-bottom: 1rem;
  7302. border-left: rgb(0, 158, 227) solid 1px;
  7303. }
  7304. #fotter-bottom .region h2 {
  7305. margin-top: 0;
  7306. color: rgb(9, 57, 139);
  7307. font-size: 1.2rem;
  7308. }
  7309. #fotter-bottom .region-footer-bottom-left {
  7310. margin-left: 3rem;
  7311. border: none;
  7312. }
  7313. @media (max-width: 810px) {
  7314. #fotter-bottom .region-footer-bottom-left {
  7315. width: 100%;
  7316. margin-left: 0rem;
  7317. }
  7318. }
  7319. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  7320. display: flex;
  7321. flex-direction: row;
  7322. justify-content: flex-start;
  7323. flex-wrap: wrap;
  7324. padding-top: 1rem;
  7325. }
  7326. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  7327. padding-right: 1rem;
  7328. padding-bottom: 1rem;
  7329. }
  7330. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  7331. width: auto;
  7332. height: 30px;
  7333. }
  7334. #fotter-bottom .region-footer-bottom-right {
  7335. display: flex;
  7336. flex-direction: column-reverse;
  7337. justify-content: flex-end;
  7338. }
  7339. @media (max-width: 810px) {
  7340. #fotter-bottom .region-footer-bottom-right {
  7341. width: 100%;
  7342. }
  7343. }
  7344. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  7345. margin-bottom: 1rem;
  7346. }
  7347. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  7348. margin-top: 0;
  7349. display: flex;
  7350. flex-direction: row-reverse;
  7351. justify-content: flex-end;
  7352. }
  7353. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  7354. color: rgb(255, 255, 255);
  7355. font-size: 0;
  7356. padding-left: 1rem;
  7357. }
  7358. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a.link-linkedin {
  7359. padding-left: 0;
  7360. }
  7361. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  7362. display: none;
  7363. }
  7364. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  7365. display: none;
  7366. }
  7367. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  7368. content: url("../images/pictos/logo_x_rond.png");
  7369. min-width: 50px;
  7370. align-self: center;
  7371. }
  7372. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  7373. display: flex;
  7374. }
  7375. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  7376. content: url("../images/pictos/youtube_rond.svg");
  7377. min-width: 50px;
  7378. }
  7379. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  7380. display: flex;
  7381. }
  7382. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  7383. content: url("../images/pictos/linkedin_rond.svg");
  7384. min-width: 50px;
  7385. }
  7386. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  7387. margin-top: 0;
  7388. color: rgb(9, 57, 139);
  7389. font-weight: 800;
  7390. list-style: none;
  7391. padding-left: 0;
  7392. }
  7393. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  7394. color: rgb(9, 57, 139);
  7395. font-size: 1.2rem;
  7396. text-decoration: underline;
  7397. margin-top: 0;
  7398. }
  7399. #fotter-bottom .region-footer-bottom-middle {
  7400. width: 60%;
  7401. }
  7402. @media (max-width: 810px) {
  7403. #fotter-bottom .region-footer-bottom-middle {
  7404. width: 100%;
  7405. }
  7406. }
  7407. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  7408. display: flex;
  7409. flex-direction: row;
  7410. justify-content: flex-start;
  7411. flex-wrap: wrap;
  7412. }
  7413. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  7414. padding-right: 1rem;
  7415. padding-bottom: 1rem;
  7416. }
  7417. .slick-prev {
  7418. color: rgb(0, 158, 227);
  7419. left: 25px;
  7420. }
  7421. .path-frontpage .slick-dots {
  7422. bottom: -40px !important;
  7423. }
  7424. .path-frontpage .slick-prev::before,
  7425. .path-frontpage .slick-next::before {
  7426. opacity: 1;
  7427. }
  7428. /* Slider */
  7429. .slick-slider {
  7430. position: relative;
  7431. display: block;
  7432. box-sizing: border-box;
  7433. -webkit-touch-callout: none;
  7434. -webkit-user-select: none;
  7435. -khtml-user-select: none;
  7436. -moz-user-select: none;
  7437. -ms-user-select: none;
  7438. user-select: none;
  7439. -ms-touch-action: pan-y;
  7440. touch-action: pan-y;
  7441. -webkit-tap-highlight-color: transparent;
  7442. }
  7443. .slick-list {
  7444. position: relative;
  7445. overflow: hidden;
  7446. display: block;
  7447. margin: 0;
  7448. padding: 0;
  7449. }
  7450. .slick-list:focus {
  7451. outline: none;
  7452. }
  7453. .slick-list.dragging {
  7454. cursor: pointer;
  7455. cursor: hand;
  7456. }
  7457. .slick-slider .slick-track,
  7458. .slick-slider .slick-list {
  7459. -webkit-transform: translate3d(0, 0, 0);
  7460. -moz-transform: translate3d(0, 0, 0);
  7461. -ms-transform: translate3d(0, 0, 0);
  7462. -o-transform: translate3d(0, 0, 0);
  7463. transform: translate3d(0, 0, 0);
  7464. }
  7465. .slick-track {
  7466. position: relative;
  7467. left: 0;
  7468. top: 0;
  7469. display: block;
  7470. margin-left: auto;
  7471. margin-right: auto;
  7472. }
  7473. .slick-track:before, .slick-track:after {
  7474. content: "";
  7475. display: table;
  7476. }
  7477. .slick-track:after {
  7478. clear: both;
  7479. }
  7480. .slick-loading .slick-track {
  7481. visibility: hidden;
  7482. }
  7483. .slick-slide {
  7484. float: left;
  7485. height: 100%;
  7486. min-height: 1px;
  7487. }
  7488. [dir=rtl] .slick-slide {
  7489. float: right;
  7490. }
  7491. .slick-slide img {
  7492. display: block;
  7493. }
  7494. .slick-slide.slick-loading img {
  7495. display: none;
  7496. }
  7497. .slick-slide {
  7498. display: none;
  7499. }
  7500. .slick-slide.dragging img {
  7501. pointer-events: none;
  7502. }
  7503. .slick-initialized .slick-slide {
  7504. display: block;
  7505. }
  7506. .slick-loading .slick-slide {
  7507. visibility: hidden;
  7508. }
  7509. .slick-vertical .slick-slide {
  7510. display: block;
  7511. height: auto;
  7512. border: 1px solid transparent;
  7513. }
  7514. .slick-arrow.slick-hidden {
  7515. display: none;
  7516. }
  7517. /* Slider */
  7518. .slick-loading .slick-list {
  7519. background: #fff url("./ajax-loader.gif") center center no-repeat;
  7520. }
  7521. /* Icons */
  7522. /* Arrows */
  7523. .slick-prev,
  7524. .slick-next {
  7525. position: absolute;
  7526. display: block;
  7527. height: 60px;
  7528. width: 60px;
  7529. line-height: 0px;
  7530. font-size: 0px;
  7531. cursor: pointer;
  7532. background: transparent;
  7533. color: transparent;
  7534. top: 50%;
  7535. -webkit-transform: translate(0, -50%);
  7536. -ms-transform: translate(0, -50%);
  7537. transform: translate(0, -50%);
  7538. padding: 0;
  7539. border: none;
  7540. outline: none;
  7541. }
  7542. .slick-prev:hover,
  7543. .slick-next:hover {
  7544. outline: none;
  7545. background: transparent;
  7546. color: transparent;
  7547. }
  7548. .slick-prev:hover:before,
  7549. .slick-next:hover:before {
  7550. opacity: 0.2;
  7551. }
  7552. .slick-prev.slick-disabled:before,
  7553. .slick-next.slick-disabled:before {
  7554. opacity: 0;
  7555. }
  7556. .slick-prev:before,
  7557. .slick-next:before {
  7558. font-family: "marianne";
  7559. font-size: 60px;
  7560. line-height: 1;
  7561. color: rgb(0, 158, 227);
  7562. opacity: 0;
  7563. -webkit-font-smoothing: antialiased;
  7564. -moz-osx-font-smoothing: grayscale;
  7565. }
  7566. .slick-prev {
  7567. z-index: 1;
  7568. left: 25px;
  7569. }
  7570. [dir=rtl] .slick-prev {
  7571. left: auto;
  7572. right: 25px;
  7573. }
  7574. .slick-prev:before {
  7575. content: "←";
  7576. }
  7577. [dir=rtl] .slick-prev:before {
  7578. content: "→";
  7579. }
  7580. .slick-next {
  7581. right: 25px;
  7582. }
  7583. [dir=rtl] .slick-next {
  7584. left: 25px;
  7585. right: auto;
  7586. }
  7587. .slick-next:before {
  7588. content: "→";
  7589. }
  7590. [dir=rtl] .slick-next:before {
  7591. content: "←";
  7592. }
  7593. /* Dots */
  7594. .slick-dotted.slick-slider {
  7595. margin-bottom: 30px;
  7596. }
  7597. 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 {
  7598. width: 600px;
  7599. }
  7600. .slick-dots {
  7601. list-style: none;
  7602. display: block;
  7603. text-align: center;
  7604. padding: 0;
  7605. margin: 0;
  7606. width: 100%;
  7607. }
  7608. .slick-dots li {
  7609. position: relative;
  7610. display: inline-block;
  7611. height: 20px;
  7612. width: 20px;
  7613. margin: 0 5px;
  7614. padding: 0;
  7615. cursor: pointer;
  7616. }
  7617. .slick-dots li button {
  7618. border: 0;
  7619. background: transparent;
  7620. display: block;
  7621. height: 20px;
  7622. width: 20px;
  7623. outline: none;
  7624. line-height: 0px;
  7625. font-size: 0px;
  7626. color: transparent;
  7627. padding: 5px;
  7628. cursor: pointer;
  7629. }
  7630. .slick-dots li button:hover, .slick-dots li button:focus {
  7631. outline: none;
  7632. }
  7633. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  7634. opacity: 0.2;
  7635. }
  7636. .slick-dots li button:before {
  7637. position: absolute;
  7638. top: 0;
  7639. left: 0;
  7640. content: "•";
  7641. width: 20px;
  7642. height: 20px;
  7643. font-family: "marianne";
  7644. font-size: 50px;
  7645. line-height: 20px;
  7646. text-align: center;
  7647. color: black;
  7648. opacity: 0.2;
  7649. -webkit-font-smoothing: antialiased;
  7650. -moz-osx-font-smoothing: grayscale;
  7651. }
  7652. .slick-dots li.slick-active button:before {
  7653. color: black;
  7654. opacity: 0.5;
  7655. }
  7656. #views-exposed-form-projets-block-1 {
  7657. flex-direction: row;
  7658. position: relative;
  7659. align-items: center;
  7660. }
  7661. @media (max-width: 810px) {
  7662. #views-exposed-form-projets-block-1 select {
  7663. max-width: 58%;
  7664. }
  7665. }
  7666. #views-exposed-form-base-de-donnees-block-1 {
  7667. flex-direction: column;
  7668. margin-top: 1rem;
  7669. }
  7670. @media (max-width: 479px) {
  7671. #views-exposed-form-base-de-donnees-block-1 {
  7672. justify-content: center;
  7673. }
  7674. }
  7675. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  7676. margin-right: 0 !important;
  7677. margin-bottom: 0.5rem !important;
  7678. padding: 0.2rem !important;
  7679. }
  7680. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7681. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  7682. width: 100%;
  7683. text-align: end;
  7684. }
  7685. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  7686. padding-right: 0.5rem !important;
  7687. flex: 2 0 auto !important;
  7688. }
  7689. #views-exposed-form-base-de-donnees-block-1,
  7690. #views-exposed-form-projets-block-1,
  7691. #views-exposed-form-projets-page-1 {
  7692. display: flex;
  7693. flex-wrap: wrap;
  7694. }
  7695. @media (max-width: 810px) {
  7696. #views-exposed-form-base-de-donnees-block-1,
  7697. #views-exposed-form-projets-block-1,
  7698. #views-exposed-form-projets-page-1 {
  7699. font-size: 0.8rem;
  7700. }
  7701. }
  7702. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7703. #views-exposed-form-projets-block-1 .js-form-item,
  7704. #views-exposed-form-projets-page-1 .js-form-item {
  7705. display: flex;
  7706. flex-direction: row;
  7707. max-width: 100%;
  7708. margin-right: 1rem;
  7709. margin-bottom: 1rem;
  7710. padding: 0.5rem 1rem;
  7711. align-items: baseline;
  7712. border: solid black 0.5px;
  7713. justify-content: space-evenly;
  7714. }
  7715. @media (max-width: 810px) {
  7716. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7717. #views-exposed-form-projets-block-1 .js-form-item,
  7718. #views-exposed-form-projets-page-1 .js-form-item {
  7719. display: flex;
  7720. flex-direction: row;
  7721. justify-content: space-between;
  7722. max-width: 85%;
  7723. }
  7724. }
  7725. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7726. #views-exposed-form-projets-block-1 .js-form-item label,
  7727. #views-exposed-form-projets-page-1 .js-form-item label {
  7728. flex: 2 1 auto;
  7729. padding-right: 2rem;
  7730. }
  7731. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  7732. #views-exposed-form-projets-block-1 .js-form-item label::after,
  7733. #views-exposed-form-projets-page-1 .js-form-item label::after {
  7734. content: " : ";
  7735. }
  7736. @media (max-width: 810px) {
  7737. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7738. #views-exposed-form-projets-block-1 .js-form-item label,
  7739. #views-exposed-form-projets-page-1 .js-form-item label {
  7740. padding-right: 1rem;
  7741. }
  7742. }
  7743. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7744. #views-exposed-form-projets-block-1 .js-form-item input,
  7745. #views-exposed-form-projets-page-1 .js-form-item input {
  7746. flex: 2 1 auto;
  7747. max-width: 55%;
  7748. }
  7749. @media (max-width: 810px) {
  7750. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7751. #views-exposed-form-projets-block-1 .js-form-item input,
  7752. #views-exposed-form-projets-page-1 .js-form-item input {
  7753. max-width: 100%;
  7754. }
  7755. }
  7756. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  7757. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox,
  7758. #views-exposed-form-projets-page-1 .js-form-item .form-checkbox {
  7759. margin-right: 1rem;
  7760. }
  7761. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  7762. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper,
  7763. #views-exposed-form-projets-page-1 .js-form-item .select-wrapper {
  7764. margin: 0;
  7765. }
  7766. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  7767. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after,
  7768. #views-exposed-form-projets-page-1 .js-form-type-checkbox label::after {
  7769. content: none;
  7770. }
  7771. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  7772. #views-exposed-form-projets-block-1 .form-actions input,
  7773. #views-exposed-form-projets-page-1 .form-actions input {
  7774. color: white;
  7775. font-weight: 600;
  7776. text-transform: uppercase;
  7777. padding: 0.3rem 0.7rem;
  7778. background-color: rgb(0, 158, 227);
  7779. border: none;
  7780. }
  7781. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7782. #views-exposed-form-projets-block-1 input,
  7783. #views-exposed-form-projets-block-1 select,
  7784. #views-exposed-form-projets-page-1 input,
  7785. #views-exposed-form-projets-page-1 select {
  7786. border: none;
  7787. background-color: transparent;
  7788. font-family: "Marianne";
  7789. font-size: 1rem;
  7790. }
  7791. @media (max-width: 810px) {
  7792. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7793. #views-exposed-form-projets-block-1 input,
  7794. #views-exposed-form-projets-block-1 select,
  7795. #views-exposed-form-projets-page-1 input,
  7796. #views-exposed-form-projets-page-1 select {
  7797. font-size: 0.8rem;
  7798. }
  7799. }
  7800. article.node-type-ressource {
  7801. margin-bottom: 1rem;
  7802. padding-right: 1rem;
  7803. }
  7804. article.node-type-ressource h2 {
  7805. text-align: left !important;
  7806. }
  7807. article.node-type-ressource .ext {
  7808. color: black;
  7809. }
  7810. article.node-type-ressource svg.ext {
  7811. display: none;
  7812. }
  7813. article.node-type-ressource :visited {
  7814. color: black;
  7815. }
  7816. article.node-type-ressource a {
  7817. color: black;
  7818. }
  7819. article.node-type-ressource .wrapper-ressource {
  7820. display: flex;
  7821. flex-direction: column;
  7822. position: relative;
  7823. }
  7824. article.node-type-ressource .wrapper-ressource .card-link {
  7825. position: absolute;
  7826. inset: 0;
  7827. z-index: 10;
  7828. display: block;
  7829. }
  7830. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  7831. order: 2;
  7832. }
  7833. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7834. order: 1;
  7835. }
  7836. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  7837. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7838. grid-column: 1;
  7839. text-transform: uppercase;
  7840. line-height: 1.1rem;
  7841. margin-top: 0.5rem;
  7842. }
  7843. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  7844. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  7845. color: rgb(0, 158, 227);
  7846. font-weight: 900;
  7847. font-size: 0.8rem;
  7848. pointer-events: none;
  7849. cursor: default;
  7850. }
  7851. article.node-type-ressource .wrapper-ressource .field--name-title {
  7852. grid-column: 2;
  7853. margin-top: 0.5rem;
  7854. order: 4;
  7855. margin-bottom: 0;
  7856. }
  7857. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7858. margin: 0;
  7859. line-height: 1.2rem;
  7860. margin-left: 0 !important;
  7861. line-height: 0;
  7862. margin-bottom: 0 !important;
  7863. }
  7864. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  7865. color: rgb(0, 0, 0);
  7866. font-size: 0.9rem;
  7867. font-weight: 900;
  7868. font-style: normal;
  7869. display: -webkit-box;
  7870. -webkit-box-orient: vertical;
  7871. -webkit-line-clamp: 4;
  7872. overflow: hidden;
  7873. text-overflow: ellipsis;
  7874. line-height: 1.4em;
  7875. }
  7876. @media (max-width: 810px) {
  7877. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7878. line-height: 0 !important;
  7879. }
  7880. }
  7881. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  7882. grid-column: 2;
  7883. margin-top: 0.5rem;
  7884. font-weight: 800;
  7885. line-height: 1.1rem;
  7886. order: 6 !important;
  7887. font-size: 0.8rem;
  7888. }
  7889. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  7890. margin: 0;
  7891. }
  7892. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  7893. display: none;
  7894. }
  7895. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  7896. grid-column: 2;
  7897. margin-top: 0.8rem;
  7898. order: 5;
  7899. font-size: 0.9rem;
  7900. font-weight: 900;
  7901. line-height: 1.3 !important;
  7902. display: -webkit-box;
  7903. -webkit-box-orient: vertical;
  7904. -webkit-line-clamp: 3;
  7905. overflow: hidden;
  7906. text-overflow: ellipsis;
  7907. }
  7908. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  7909. order: 7;
  7910. grid-column: 2;
  7911. margin-top: 0.5rem;
  7912. font-size: 0.8rem;
  7913. }
  7914. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  7915. margin: 0;
  7916. }
  7917. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  7918. display: none;
  7919. }
  7920. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  7921. order: 3;
  7922. grid-column: 1;
  7923. }
  7924. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  7925. height: 100px;
  7926. }
  7927. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  7928. height: 100%;
  7929. width: auto;
  7930. border: solid 1px gray;
  7931. }
  7932. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  7933. grid-column: 2;
  7934. margin-top: 0.3rem;
  7935. order: 8;
  7936. font-size: 0.8rem;
  7937. }
  7938. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  7939. order: 9;
  7940. grid-column: 2;
  7941. display: flex;
  7942. margin-top: 0.5rem;
  7943. flex-direction: row;
  7944. flex-wrap: wrap;
  7945. }
  7946. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  7947. margin-right: 0.5rem;
  7948. padding-right: 0.3rem;
  7949. margin-bottom: 0.3rem;
  7950. font-size: 0.7rem;
  7951. }
  7952. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  7953. background: rgb(9, 57, 139);
  7954. color: rgb(255, 255, 255);
  7955. font-weight: 800;
  7956. padding-left: 0.1rem;
  7957. padding-right: 0.1rem;
  7958. display: inline-flex;
  7959. pointer-events: none;
  7960. cursor: default;
  7961. }
  7962. article.node-type-ressource .wrapper-ressource ul.links.inline {
  7963. display: none;
  7964. }
  7965. article.node-type-ressource.type-publications-issues-du-programme {
  7966. min-width: 300px;
  7967. }
  7968. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  7969. display: grid;
  7970. grid-template-columns: 1fr 1.8fr;
  7971. grid-template-rows: repeat(5 1fr);
  7972. }
  7973. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  7974. order: 2;
  7975. grid-row: 2;
  7976. grid-column: 1/span 2;
  7977. margin-bottom: 0.5rem;
  7978. }
  7979. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  7980. order: 1;
  7981. grid-row: 1;
  7982. grid-column: 1/span 2;
  7983. }
  7984. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  7985. order: 3;
  7986. grid-row: 3/span 5;
  7987. height: auto;
  7988. width: 90%;
  7989. }
  7990. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  7991. height: auto;
  7992. width: 90%;
  7993. border: 1px solid #a3a3a3;
  7994. }
  7995. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  7996. grid-row: 3;
  7997. margin-top: 0;
  7998. padding-bottom: 0.4rem;
  7999. }
  8000. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  8001. margin-left: 0 !important;
  8002. line-height: 0;
  8003. }
  8004. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  8005. color: rgb(0, 158, 227);
  8006. font-size: 1.3rem;
  8007. font-style: normal;
  8008. line-height: 1.2em !important;
  8009. }
  8010. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  8011. margin-top: 0;
  8012. line-height: 1;
  8013. grid-row: 4;
  8014. }
  8015. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  8016. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  8017. grid-row: 4;
  8018. color: rgb(0, 158, 227);
  8019. font-size: 1rem;
  8020. font-weight: 800;
  8021. }
  8022. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  8023. grid-row: 6;
  8024. line-height: 1.1;
  8025. }
  8026. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  8027. grid-row: 7;
  8028. }
  8029. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  8030. grid-row: 8;
  8031. margin-top: 0.5rem;
  8032. left: -0.2rem;
  8033. position: relative;
  8034. }
  8035. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  8036. order: 2;
  8037. }
  8038. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  8039. order: 1;
  8040. }
  8041. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  8042. order: 3;
  8043. }
  8044. @media (max-width: 479px) {
  8045. article.node-type-ressource {
  8046. margin-left: 0;
  8047. }
  8048. }
  8049. article.node-type-ressource.type-presse .field--name-field-images {
  8050. display: none;
  8051. }
  8052. .type-les-projets-en-images.views-row {
  8053. width: 50% !important;
  8054. min-width: 550px !important;
  8055. max-width: 0 !important;
  8056. }
  8057. @media (max-width: 479px) {
  8058. .type-les-projets-en-images.views-row {
  8059. min-width: 100% !important;
  8060. }
  8061. }
  8062. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  8063. display: grid;
  8064. grid-template-columns: 2fr 1fr !important;
  8065. width: 100%;
  8066. max-width: 100%;
  8067. column-gap: 1rem;
  8068. align-items: start;
  8069. }
  8070. @media (max-width: 479px) {
  8071. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  8072. display: flex;
  8073. flex-direction: column;
  8074. padding-left: 1rem !important;
  8075. }
  8076. }
  8077. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  8078. grid-column: 1;
  8079. grid-row: 3/span 8;
  8080. width: 100%;
  8081. }
  8082. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  8083. width: 100%;
  8084. height: auto;
  8085. margin-top: 1rem;
  8086. object-fit: cover;
  8087. border: 1px solid #ccc;
  8088. }
  8089. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  8090. height: fit-content;
  8091. }
  8092. @media (max-width: 479px) {
  8093. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  8094. height: auto;
  8095. }
  8096. }
  8097. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  8098. grid-column: 1/span 2;
  8099. grid-row: 2;
  8100. }
  8101. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  8102. grid-column: 1/span 2;
  8103. grid-row: 1;
  8104. }
  8105. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  8106. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  8107. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  8108. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  8109. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  8110. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  8111. grid-column: 2;
  8112. width: 100%;
  8113. box-sizing: border-box;
  8114. padding: 0;
  8115. margin: 0;
  8116. }
  8117. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  8118. grid-row: 3;
  8119. margin-bottom: 0.5rem;
  8120. }
  8121. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  8122. grid-row: 4;
  8123. }
  8124. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  8125. grid-row: 5;
  8126. }
  8127. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  8128. grid-row: 6;
  8129. line-height: 1;
  8130. }
  8131. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  8132. grid-row: 7;
  8133. }
  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-row: 8;
  8136. }
  8137. .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 {
  8138. margin: 0;
  8139. padding: 0;
  8140. }