bundle.css 343 KB

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