bundle.css 316 KB

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