bundle.css 311 KB

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