bundle.css 346 KB

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