bundle.css 277 KB

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