bundle.css 288 KB

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