bundle.css 297 KB

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