bundle.css 341 KB

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