bundle.css 313 KB

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