bundle.css 347 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210
  1. /*!*******************************************************************************************************************************************************************!*\
  2. !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./scss/styles.scss ***!
  3. \*******************************************************************************************************************************************************************/
  4. @charset "UTF-8";
  5. /*eql*/
  6. /*setup*/
  7. /*global*/
  8. @font-face {
  9. font-family: "Font Awesome";
  10. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  11. font-weight: 400;
  12. font-style: normal;
  13. }
  14. /*marianne*/
  15. @font-face {
  16. font-family: "Marianne";
  17. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  18. font-weight: 300;
  19. font-style: normal;
  20. }
  21. @font-face {
  22. font-family: "Marianne";
  23. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  24. font-weight: 300;
  25. font-style: italic;
  26. }
  27. @font-face {
  28. font-family: "Marianne";
  29. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  30. font-weight: 400;
  31. font-style: normal;
  32. }
  33. @font-face {
  34. font-family: "Marianne";
  35. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  36. font-weight: 400;
  37. font-style: italic;
  38. }
  39. @font-face {
  40. font-family: "Marianne";
  41. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  42. font-weight: 600;
  43. font-style: normal;
  44. }
  45. @font-face {
  46. font-family: "Marianne";
  47. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  48. font-weight: 600;
  49. font-style: italic;
  50. }
  51. @font-face {
  52. font-family: "Marianne";
  53. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  54. font-weight: 800;
  55. font-style: normal;
  56. }
  57. @font-face {
  58. font-family: "Marianne";
  59. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  60. font-weight: 800;
  61. font-style: italic;
  62. }
  63. @font-face {
  64. font-family: "Marianne";
  65. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  66. font-weight: 900;
  67. font-style: normal;
  68. }
  69. @font-face {
  70. font-family: "Marianne";
  71. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  72. font-weight: 900;
  73. font-style: italic;
  74. }
  75. @font-face {
  76. font-family: "Marianne";
  77. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  78. font-weight: 1000;
  79. font-style: normal;
  80. }
  81. @font-face {
  82. font-family: "Marianne";
  83. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  84. font-weight: 1000;
  85. font-style: italic;
  86. }
  87. /* Source Code Pro */
  88. @font-face {
  89. font-family: "Source Code Pro";
  90. src: url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff") format("woff");
  91. font-weight: 500;
  92. font-style: normal;
  93. }
  94. @font-face {
  95. font-family: "Source Code Pro";
  96. src: url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff") format("woff");
  97. font-weight: 1000;
  98. font-style: normal;
  99. }
  100. /* Colors used for EQL */
  101. .path-user .buttons-filtres-ressources {
  102. display: none;
  103. }
  104. @media screen {
  105. .print_only {
  106. display: none;
  107. }
  108. }
  109. .layout-container {
  110. font-family: "Marianne", sans-serif;
  111. margin: none;
  112. top: 0%;
  113. left: 0%;
  114. width: 100%;
  115. overflow: hidden;
  116. display: flex;
  117. flex-flow: row wrap;
  118. }
  119. .layout-container header {
  120. flex: 0 0 100%;
  121. }
  122. .layout-container main {
  123. position: relative;
  124. }
  125. .layout-container footer {
  126. flex: 0 0 100%;
  127. }
  128. .layout-content {
  129. padding-top: 10rem;
  130. padding-bottom: 6rem;
  131. }
  132. @media (max-width: 810px) {
  133. .layout-content {
  134. padding-top: 5rem;
  135. }
  136. }
  137. .path-frontpage {
  138. margin: 0;
  139. }
  140. .path-node {
  141. margin: 0;
  142. }
  143. .path-faq {
  144. margin: 0;
  145. }
  146. .path-ressources {
  147. margin: 0;
  148. }
  149. .path-webform {
  150. margin: 0;
  151. }
  152. .path-projets {
  153. margin: 0;
  154. }
  155. .path-incubateur {
  156. margin: 0;
  157. }
  158. main {
  159. width: 100%;
  160. }
  161. .main-content {
  162. margin-top: 7rem;
  163. }
  164. .field--name-field-titre .field__item {
  165. color: rgb(9, 57, 139);
  166. font-weight: 900;
  167. font-size: 2rem;
  168. }
  169. .field--name-field-titre .field__label {
  170. visibility: hidden;
  171. }
  172. .inter-titre {
  173. color: rgb(0, 158, 227);
  174. }
  175. a {
  176. text-decoration: none;
  177. }
  178. a.ext {
  179. color: black;
  180. }
  181. svg.ext {
  182. display: none;
  183. }
  184. @media (max-width: 959px) {
  185. #block-headermenu {
  186. display: none;
  187. }
  188. .page-node-type-static .layout__region--top {
  189. height: 23vh;
  190. }
  191. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  192. margin-top: 11vh;
  193. }
  194. .page-node-type-static .node-id-20 .field--name-field-partenaires .paragraph--type--partenaire {
  195. display: flex;
  196. flex-direction: column;
  197. }
  198. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  199. width: 70%;
  200. }
  201. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  202. display: flex;
  203. flex-direction: column;
  204. }
  205. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  206. width: 100%;
  207. }
  208. }
  209. @media (max-width: 810px) {
  210. .page-node-type-static .layout__region--top {
  211. padding-bottom: 0rem;
  212. }
  213. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  214. margin-left: 8%;
  215. margin-right: 5%;
  216. }
  217. .page-node-type-static .layout__region--first .block-region-first {
  218. display: none;
  219. }
  220. .page-node-type-static .layout__region--second {
  221. flex: 0 1 80%;
  222. margin: auto;
  223. }
  224. .page-node-type-static .layout__region--third .block-region-third {
  225. margin: auto;
  226. }
  227. }
  228. @media (max-width: 479px) {
  229. #header-top #block-logogouv img {
  230. min-width: 45px;
  231. width: 70%;
  232. height: auto;
  233. }
  234. #header-top #block-logoeql img {
  235. min-width: 45px;
  236. width: 80%;
  237. height: auto;
  238. }
  239. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  240. display: flex;
  241. flex-direction: column;
  242. }
  243. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  244. width: 90%;
  245. display: flex;
  246. margin: auto;
  247. }
  248. }
  249. /*global*/
  250. /* -------------------------
  251. Paged.js : format + compteur
  252. -------------------------- */
  253. @page {
  254. size: A4 portrait;
  255. }
  256. /* Pas de numéro sur cover / back-cover */
  257. /* -------------------------
  258. PRINT (Ctrl+P)
  259. -------------------------- */
  260. @media print {
  261. /* Cache l’UI du site */
  262. header[role=banner],
  263. footer[role=contentinfo],
  264. nav,
  265. .slick-arrow,
  266. .slick-dots,
  267. .layout__region--first {
  268. display: none !important;
  269. }
  270. .layout__region--top {
  271. flex: 0 1 100% !important;
  272. }
  273. .layout__region--top .block-entity-fieldnodefield-photo,
  274. .layout__region--top .top_right {
  275. width: 100% !important;
  276. }
  277. .top_top {
  278. flex-direction: column !important;
  279. }
  280. .layout__region--second {
  281. flex: 0 1 100% !important;
  282. margin: auto;
  283. margin-left: 3rem;
  284. }
  285. /* Cover */
  286. /* Optionnel : éviter l’URL après liens sur la cover */
  287. }
  288. /* -------------------------
  289. SCREEN preview (Paged.js)
  290. -------------------------- */
  291. .path-projets-complets .layout-container header {
  292. top: inherit !important;
  293. left: inherit !important;
  294. }
  295. .path-projets-complets span {
  296. display: none;
  297. }
  298. .path-projets-complets .print-header {
  299. display: none;
  300. }
  301. .path-projets-complets .view-header {
  302. display: flex;
  303. flex-direction: row;
  304. }
  305. .path-projets-complets .view-header::before {
  306. content: "2. ";
  307. margin-right: 1rem;
  308. font-weight: 600;
  309. font-size: 1.5rem;
  310. min-width: fit-content;
  311. }
  312. @media (max-width: 479px) {
  313. .path-projets-complets .view-header::before {
  314. padding-bottom: 1rem;
  315. }
  316. }
  317. .path-projets-complets .view-header {
  318. margin-left: 3rem;
  319. order: 2;
  320. margin-top: 5rem;
  321. }
  322. .path-projets-complets .view-header p {
  323. font-weight: 600;
  324. text-transform: uppercase;
  325. padding: 0.3rem 0.7rem;
  326. width: fit-content;
  327. background-color: rgb(0, 158, 227);
  328. border: none;
  329. margin: 0;
  330. }
  331. .path-projets-complets .view-header a {
  332. color: white;
  333. }
  334. .path-projets-complets .view-projets {
  335. margin-bottom: 4rem !important;
  336. display: flex;
  337. flex-direction: column;
  338. }
  339. @media screen {
  340. .path-projets-complets .view-projets {
  341. margin-top: 5rem !important;
  342. width: 80%;
  343. }
  344. }
  345. .path-projets-complets .view-projets .buttons-filtres-ressources {
  346. display: none;
  347. }
  348. .path-projets-complets .view-projets {
  349. margin: auto;
  350. }
  351. .path-projets-complets .view-projets .view-filters {
  352. order: 1;
  353. margin-top: 4rem;
  354. margin-left: 3rem;
  355. padding-left: 0.5rem;
  356. display: flex;
  357. flex-direction: column;
  358. }
  359. @media (max-width: 479px) {
  360. .path-projets-complets .view-projets .view-filters {
  361. flex-direction: column;
  362. padding-bottom: 3rem;
  363. margin-top: 0rem;
  364. }
  365. }
  366. .path-projets-complets .view-projets .view-filters::before {
  367. content: "1. Sélectionner les projets à imprimer :";
  368. margin-right: 2rem;
  369. margin-bottom: 1rem;
  370. font-weight: 600;
  371. font-size: 1.5rem;
  372. min-width: fit-content;
  373. }
  374. @media (max-width: 479px) {
  375. .path-projets-complets .view-projets .view-filters::before {
  376. padding-bottom: 1rem;
  377. }
  378. }
  379. .path-projets-complets .view-projets .view-content {
  380. order: 3;
  381. }
  382. .path-projets-complets .view-projets .field--name-title {
  383. order: 2;
  384. font-family: "Marianne";
  385. font-size: 2rem;
  386. font-weight: 800;
  387. color: rgb(0, 158, 227);
  388. }
  389. @media (max-width: 1624px) {
  390. .path-projets-complets .view-projets .field--name-title {
  391. font-size: 2.3rem;
  392. }
  393. }
  394. @media (max-width: 1384px) {
  395. .path-projets-complets .view-projets .field--name-title {
  396. font-size: 2rem;
  397. }
  398. }
  399. @media (max-width: 1216px) {
  400. .path-projets-complets .view-projets .field--name-title {
  401. font-size: 2rem;
  402. }
  403. }
  404. @media (max-width: 810px) {
  405. .path-projets-complets .view-projets .field--name-title {
  406. font-size: 1.7rem;
  407. }
  408. }
  409. .path-projets-complets .view-projets .field--name-title a {
  410. color: rgb(0, 158, 227);
  411. }
  412. .path-projets-complets .view-projets .field--name-field-equipe {
  413. order: 3;
  414. color: rgb(9, 57, 139);
  415. font-size: 1.5rem;
  416. font-weight: 900;
  417. text-transform: uppercase;
  418. }
  419. @media (max-width: 1624px) {
  420. .path-projets-complets .view-projets .field--name-field-equipe {
  421. font-size: 1.3rem;
  422. }
  423. }
  424. @media (max-width: 1216px) {
  425. .path-projets-complets .view-projets .field--name-field-equipe {
  426. font-size: 1.1rem;
  427. }
  428. }
  429. @media (max-width: 810px) {
  430. .path-projets-complets .view-projets .field--name-field-equipe {
  431. font-size: 1rem;
  432. }
  433. }
  434. .path-projets-complets .view-projets .field--name-field-equipe .field__label {
  435. display: none;
  436. }
  437. .path-projets-complets .view-projets .field--name-field-region .field__label {
  438. display: none;
  439. }
  440. .path-projets-complets .view-projets .field--name-field-region {
  441. display: flex;
  442. align-items: center;
  443. gap: 0.5rem;
  444. margin-top: 1rem;
  445. }
  446. .path-projets-complets .view-projets .field--name-field-region::before {
  447. content: "";
  448. display: block;
  449. width: 20px;
  450. height: 20px;
  451. background: url("../images/pictos/picto_lieu.svg") no-repeat center;
  452. background-size: contain;
  453. }
  454. .path-projets-complets .view-projets .field--name-field-incube {
  455. order: 4;
  456. display: inline-flex;
  457. width: fit-content;
  458. background-color: rgb(225, 0, 15);
  459. color: white;
  460. font-weight: 800;
  461. padding-right: 0.3rem;
  462. padding-left: 0.2rem;
  463. margin-bottom: 1rem;
  464. margin-top: 1rem;
  465. }
  466. .path-projets-complets .view-projets .field--name-field-incube::before {
  467. content: " Projet ";
  468. padding-right: 0.5rem;
  469. }
  470. .path-projets-complets .view-projets .field--name-field-incube .field__label {
  471. display: inline;
  472. }
  473. .path-projets-complets .view-projets .field--name-field-incube .field__item {
  474. display: none;
  475. }
  476. .path-projets-complets .view-projets .field--name-field-neuf-rehabilitation,
  477. .path-projets-complets .view-projets .field--name-field-encours-fini {
  478. display: none;
  479. }
  480. .path-projets-complets .projet-ressources-liees {
  481. margin-top: 2rem;
  482. width: 80%;
  483. }
  484. .path-projets-complets .projet-ressources-liees .field--name-field-ressource-s-liee-s- {
  485. display: flex;
  486. flex-direction: column;
  487. }
  488. .path-projets-complets .projet-ressources-liees .field--name-field-ressource-s-liee-s- .field__label {
  489. color: rgb(9, 57, 139);
  490. font-size: 1.2rem;
  491. font-weight: 900;
  492. text-transform: uppercase;
  493. }
  494. .path-projets-complets .projet-ressources-liees .field--name-field-ressource-s-liee-s- .node-type-ressource .wrapper-ressource {
  495. display: flex;
  496. flex-direction: column;
  497. border-bottom: solid 1px;
  498. padding-bottom: 2rem;
  499. }
  500. .path-projets-complets .projet-ressources-liees .field--name-field-ressource-s-liee-s- .node-type-ressource .wrapper-ressource .field--name-field-images {
  501. display: none;
  502. }
  503. @media print {
  504. * {
  505. box-shadow: none !important;
  506. }
  507. img {
  508. max-width: 100%;
  509. height: auto;
  510. }
  511. .node-type-projet {
  512. visibility: visible !important;
  513. }
  514. @page {}
  515. .layout-container {
  516. display: block;
  517. }
  518. .path-projets-complets .view-header {
  519. margin-top: 0 !important;
  520. }
  521. .path-projets-complets .layout-content {
  522. margin-top: 0 !important;
  523. width: 95% !important;
  524. }
  525. .path-projets-complets .layout-content .print-header {
  526. position: relative !important;
  527. top: auto !important;
  528. right: auto !important;
  529. display: flex !important;
  530. justify-content: space-between;
  531. align-items: center;
  532. width: 100%;
  533. margin-bottom: 3rem;
  534. padding-bottom: 1rem;
  535. border-bottom: 1px solid #ccc;
  536. break-after: avoid;
  537. page-break-after: avoid;
  538. }
  539. .path-projets-complets .layout-content .print-header__left,
  540. .path-projets-complets .layout-content .print-header__right {
  541. display: flex;
  542. align-items: center;
  543. gap: 1rem;
  544. }
  545. .path-projets-complets .layout-content .print-header img {
  546. max-height: 55px;
  547. width: auto;
  548. }
  549. .path-projets-complets .layout-content .print-header__text {
  550. text-transform: uppercase;
  551. font-family: "Source Code Pro";
  552. color: rgb(9, 57, 139);
  553. font-size: 0.8rem;
  554. font-weight: 500;
  555. text-transform: uppercase;
  556. text-align: right;
  557. }
  558. .path-projets-complets .layout-content .view-header,
  559. .path-projets-complets .layout-content .view-filters {
  560. display: none;
  561. }
  562. .path-projets-complets .layout-content .views-row .node-type-projet {
  563. border-bottom: none;
  564. }
  565. .path-projets-complets .layout-content .views-row {
  566. break-after: page;
  567. page-break-after: always;
  568. }
  569. .path-projets-complets .layout-content .views-row .projet-header-print-content {
  570. width: 80%;
  571. margin: auto;
  572. }
  573. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title {
  574. font-size: 1.2rem;
  575. }
  576. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__item:nth-child(n+8) {
  577. display: none;
  578. }
  579. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .image-field-caption {
  580. display: none;
  581. }
  582. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__label {
  583. display: none;
  584. }
  585. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items {
  586. height: 100%;
  587. display: grid;
  588. gap: 4px;
  589. }
  590. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__item {
  591. overflow: visible;
  592. aspect-ratio: 3.5/2;
  593. }
  594. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__item img {
  595. width: 100%;
  596. height: 100%;
  597. object-fit: cover;
  598. display: block;
  599. }
  600. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .image-field-caption {
  601. display: inline-block;
  602. width: 100%;
  603. z-index: 2;
  604. font-size: 6pt;
  605. line-height: 1;
  606. margin-left: 0;
  607. margin-top: 0;
  608. margin-bottom: 0;
  609. }
  610. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items:has(.field__item:only-child) {
  611. grid-template-columns: 1fr;
  612. }
  613. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items:has(.field__item:only-child) .field__item {
  614. grid-column: 1;
  615. }
  616. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items:has(.field__item:nth-child(2)) {
  617. grid-template-columns: repeat(3, 1fr);
  618. }
  619. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items:has(.field__item:nth-child(2)) .field__item:first-child {
  620. grid-column: 1/4;
  621. }
  622. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__items .field__item:nth-child(n+8) {
  623. display: none;
  624. }
  625. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title {
  626. order: 2;
  627. font-family: "Marianne";
  628. font-size: 1rem;
  629. font-weight: 800;
  630. color: rgb(0, 158, 227);
  631. }
  632. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title a {
  633. color: rgb(0, 158, 227);
  634. }
  635. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-equipe {
  636. order: 3;
  637. color: rgb(9, 57, 139);
  638. font-size: 0.9rem;
  639. font-weight: 900;
  640. text-transform: uppercase;
  641. }
  642. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-equipe .field__label {
  643. display: none;
  644. }
  645. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-incube {
  646. order: 4;
  647. font-size: 8pt;
  648. display: inline-flex;
  649. width: fit-content;
  650. background-color: rgb(225, 0, 15);
  651. color: white;
  652. font-weight: 800;
  653. padding-right: 0.3rem;
  654. padding-left: 0.2rem;
  655. margin-bottom: 1rem;
  656. }
  657. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-incube::before {
  658. content: " Projet ";
  659. padding-right: 0.5rem;
  660. }
  661. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-incube .field__label {
  662. display: inline;
  663. }
  664. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-incube .field__item {
  665. display: none;
  666. }
  667. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-neuf-rehabilitation,
  668. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-encours-fini {
  669. display: none;
  670. }
  671. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-region {
  672. display: flex;
  673. align-items: center;
  674. gap: 0.5rem;
  675. }
  676. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-region::before {
  677. content: "";
  678. display: block;
  679. width: 20px;
  680. height: 20px;
  681. background: url("../images/pictos/picto_lieu.svg") no-repeat center;
  682. background-size: contain;
  683. }
  684. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-moa {
  685. order: 6;
  686. }
  687. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-projet {
  688. order: 7;
  689. }
  690. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-etape-du-projet {
  691. order: 8;
  692. }
  693. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-textes {
  694. order: 9;
  695. }
  696. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-textes .field__label {
  697. display: none;
  698. }
  699. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-etape-du-projet a,
  700. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-projet a,
  701. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-moa a {
  702. color: black;
  703. }
  704. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-etape-du-projet .field__label,
  705. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-projet .field__label,
  706. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-moa .field__label {
  707. color: rgb(9, 57, 139);
  708. font-size: 0.9pt;
  709. font-weight: 900;
  710. text-transform: uppercase;
  711. margin-bottom: 0 !important;
  712. flex-direction: row;
  713. }
  714. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-etape-du-projet .field__label::after,
  715. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-projet .field__label::after,
  716. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-type-de-moa .field__label::after {
  717. content: ":";
  718. padding-left: 0.5rem;
  719. }
  720. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .layout-content {
  721. width: 100% !important;
  722. margin: 0 auto !important;
  723. }
  724. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .projet-content {
  725. display: block !important;
  726. }
  727. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .field--name-field-photo .field__items {
  728. display: block !important;
  729. height: auto !important;
  730. }
  731. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .field--name-field-photo .field__item {
  732. display: block !important;
  733. aspect-ratio: auto !important;
  734. overflow: visible !important;
  735. margin-bottom: 4mm;
  736. }
  737. .path-projets-complets .layout-content .views-row .projet-header-print .path-projets-complets .field--name-field-photo .field__item img {
  738. width: 100% !important;
  739. height: auto !important;
  740. object-fit: contain !important;
  741. display: block;
  742. }
  743. .path-projets-complets .layout-content .views-row .projet-body-print {
  744. width: 80%;
  745. margin: auto;
  746. padding-top: 3rem;
  747. }
  748. .path-projets-complets .layout-content .views-row .projet-ressources-liees {
  749. padding-top: 3rem;
  750. width: 80%;
  751. margin: auto;
  752. }
  753. .path-projets-complets .layout-content .views-row .projet-ressources-liees .field--name-field-ressource-s-liee-s- {
  754. display: flex;
  755. flex-direction: column;
  756. }
  757. .path-projets-complets .layout-content .views-row .projet-ressources-liees .field--name-field-ressource-s-liee-s- .field__label {
  758. color: rgb(9, 57, 139);
  759. font-size: 1.2rem;
  760. font-weight: 900;
  761. text-transform: uppercase;
  762. }
  763. .path-projets-complets .layout-content .views-row .projet-ressources-liees .field--name-field-ressource-s-liee-s- .node-type-ressource .wrapper-ressource {
  764. display: flex;
  765. flex-direction: column;
  766. border-bottom: solid 1px;
  767. padding-bottom: 2rem;
  768. }
  769. .path-projets-complets .layout-content .views-row .projet-ressources-liees .field--name-field-ressource-s-liee-s- .node-type-ressource .wrapper-ressource .field--name-field-images {
  770. display: none;
  771. }
  772. .path-projets-complets .layout-content .views-row .paragraph {
  773. break-inside: avoid;
  774. page-break-inside: avoid;
  775. }
  776. .path-projets-complets .views-row {
  777. page-break-before: always;
  778. break-before: page;
  779. }
  780. .path-projets-complets .views-row:first-child {
  781. page-break-before: auto;
  782. }
  783. .path-projets-complets .projet-header-print {
  784. page-break-after: always;
  785. break-after: page;
  786. }
  787. }
  788. .field--name-field-etape-du-projet,
  789. .field--name-field-type-de-projet,
  790. .field--name-field-type-de-moa {
  791. margin-bottom: 1rem;
  792. }
  793. .field--name-field-etape-du-projet a,
  794. .field--name-field-type-de-projet a,
  795. .field--name-field-type-de-moa a {
  796. color: black;
  797. }
  798. .field--name-field-etape-du-projet .field__label,
  799. .field--name-field-type-de-projet .field__label,
  800. .field--name-field-type-de-moa .field__label {
  801. width: fit-content;
  802. color: rgb(9, 57, 139);
  803. font-size: 1.2rem;
  804. font-weight: 900;
  805. text-transform: uppercase;
  806. margin-bottom: 0 !important;
  807. flex-direction: row;
  808. }
  809. .field--name-field-etape-du-projet .field__label::after,
  810. .field--name-field-type-de-projet .field__label::after,
  811. .field--name-field-type-de-moa .field__label::after {
  812. content: ":";
  813. padding-left: 0.5rem;
  814. }
  815. .field--name-field-etape-du-projet .field__item,
  816. .field--name-field-type-de-projet .field__item,
  817. .field--name-field-type-de-moa .field__item {
  818. width: fit-content;
  819. }
  820. .field--name-field-textes {
  821. margin-top: 2rem;
  822. }
  823. .field--name-field-textes .field__label {
  824. display: none !important;
  825. }
  826. .field--name-field-textes .field--name-field-titre {
  827. color: rgb(9, 57, 139);
  828. font-size: 1.2rem;
  829. font-weight: 900;
  830. text-transform: uppercase;
  831. margin-bottom: 0 !important;
  832. flex-direction: row;
  833. }
  834. .field--name-field-textes .field--name-field-titre::after {
  835. content: " :";
  836. padding-left: 0.5rem;
  837. }
  838. .field--name-field-textes ul {
  839. margin-top: 0;
  840. }
  841. .field--name-field-textes p {
  842. margin-top: 0.5rem;
  843. }
  844. .field--name-field-textes .paragraph--type--texte {
  845. margin-top: 1.5rem;
  846. }
  847. .field--name-field-textes .paragraph--type--texte .field--name-field-titre {
  848. margin-bottom: 1rem;
  849. }
  850. /*pages*/
  851. /*
  852. @import "pages/partials/header_footer";
  853. @import "pages/home";
  854. */
  855. .path-node.page-node-type-static .layout-container {
  856. overflow: unset;
  857. }
  858. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  859. padding-bottom: 3rem;
  860. height: 30vh;
  861. }
  862. @media (max-width: 810px) {
  863. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  864. padding-bottom: 0rem;
  865. }
  866. }
  867. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  868. width: fit-content;
  869. margin-left: 11%;
  870. margin-top: 15vh;
  871. }
  872. @media (max-width: 810px) {
  873. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  874. margin-left: 8%;
  875. margin-right: 5%;
  876. }
  877. }
  878. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  879. display: inline;
  880. font-family: "Source Code Pro";
  881. font-size: 2rem;
  882. font-weight: 800;
  883. text-transform: uppercase;
  884. }
  885. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  886. position: relative;
  887. }
  888. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  889. display: flex;
  890. justify-content: flex-end;
  891. position: -webkit-sticky;
  892. position: sticky;
  893. top: 10rem;
  894. }
  895. @media (max-width: 810px) {
  896. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  897. display: none;
  898. }
  899. }
  900. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  901. display: flex;
  902. width: 50%;
  903. background-color: rgb(255, 255, 255);
  904. padding-right: 2rem;
  905. }
  906. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  907. display: flex;
  908. font-size: 1rem;
  909. font-weight: 1000;
  910. color: rgb(9, 57, 139);
  911. border-bottom: 1px solid rgb(0, 158, 227);
  912. padding-bottom: 0.8rem;
  913. padding-right: 1rem;
  914. margin-top: 1rem;
  915. scroll-margin-top: 7em;
  916. }
  917. .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 {
  918. text-decoration: underline;
  919. }
  920. @media (max-width: 810px) {
  921. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  922. flex: 0 1 80%;
  923. margin: auto;
  924. }
  925. }
  926. @media (max-width: 479px) {
  927. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  928. padding-top: 5rem;
  929. }
  930. }
  931. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  932. margin-top: 1rem;
  933. background-color: rgb(255, 255, 255);
  934. }
  935. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  936. font-size: 1.5rem;
  937. font-weight: 1000;
  938. font-family: "Source Code Pro", monospace;
  939. color: rgb(9, 57, 139);
  940. text-transform: uppercase;
  941. margin-top: 2rem;
  942. margin-bottom: 0.8rem;
  943. }
  944. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  945. text-transform: none !important;
  946. }
  947. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  948. width: 100%;
  949. height: auto;
  950. }
  951. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  952. padding: 0.5rem 1rem 1rem 1.5rem;
  953. }
  954. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  955. margin-top: 0;
  956. }
  957. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  958. margin-top: 1rem;
  959. display: flex;
  960. flex-direction: column;
  961. width: 70%;
  962. }
  963. @media (max-width: 810px) {
  964. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  965. margin: auto;
  966. }
  967. }
  968. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  969. height: fit-content;
  970. border: 2px solid rgb(0, 158, 227);
  971. background-color: rgb(255, 255, 255);
  972. }
  973. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers {
  974. min-height: 4rem;
  975. background: rgb(255, 255, 255);
  976. color: rgb(0, 158, 227);
  977. padding-left: 0.8rem;
  978. padding-top: 1rem;
  979. padding-bottom: 1rem;
  980. padding-right: 0.5rem;
  981. }
  982. .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) {
  983. display: none;
  984. }
  985. .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 {
  986. height: inherit;
  987. margin: auto;
  988. }
  989. .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 {
  990. content: url("../images/pictos/download.png");
  991. height: auto;
  992. padding-right: 1rem;
  993. }
  994. .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 {
  995. hyphens: auto;
  996. display: inline-flex;
  997. color: rgb(0, 158, 227);
  998. font-weight: 800;
  999. align-items: center;
  1000. }
  1001. .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 {
  1002. margin: auto;
  1003. height: fit-content;
  1004. border: 2px solid rgb(0, 158, 227);
  1005. min-height: 2rem;
  1006. background: rgb(255, 255, 255);
  1007. color: rgb(0, 158, 227);
  1008. padding-left: 0.8rem;
  1009. padding-top: 1rem;
  1010. padding-bottom: 1rem;
  1011. margin-bottom: 1rem;
  1012. padding-right: 0.5rem;
  1013. }
  1014. .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 {
  1015. display: inline-flex;
  1016. justify-items: center;
  1017. color: rgb(0, 158, 227);
  1018. font-weight: 800;
  1019. align-items: center;
  1020. }
  1021. .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 {
  1022. content: url("../images/pictos/external_link.png");
  1023. height: auto;
  1024. padding-right: 1rem;
  1025. }
  1026. .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 {
  1027. display: none;
  1028. }
  1029. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1030. margin-top: 3rem;
  1031. }
  1032. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  1033. font-size: 0.8rem;
  1034. color: rgb(0, 0, 0);
  1035. font-weight: 900;
  1036. }
  1037. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  1038. border: 2px solid rgb(0, 158, 227);
  1039. background-color: rgb(255, 255, 255);
  1040. margin-bottom: 1rem;
  1041. padding: 1rem;
  1042. }
  1043. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  1044. display: flex;
  1045. flex-direction: column;
  1046. }
  1047. .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 {
  1048. order: 2;
  1049. text-transform: uppercase;
  1050. color: rgb(0, 158, 227);
  1051. font-weight: 900;
  1052. font-size: 0.8rem;
  1053. }
  1054. .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 {
  1055. order: 3;
  1056. }
  1057. .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 {
  1058. margin: 0;
  1059. }
  1060. .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 {
  1061. color: rgb(0, 0, 0);
  1062. font-size: 1rem;
  1063. font-weight: 900;
  1064. }
  1065. .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 {
  1066. order: 4;
  1067. }
  1068. .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- {
  1069. order: 5;
  1070. font-weight: 800;
  1071. }
  1072. .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 {
  1073. margin: 0;
  1074. }
  1075. .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 {
  1076. display: none;
  1077. }
  1078. .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 {
  1079. margin: 0;
  1080. }
  1081. .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 {
  1082. display: none;
  1083. }
  1084. .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 {
  1085. order: 1;
  1086. width: 25%;
  1087. }
  1088. .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 {
  1089. width: 100%;
  1090. height: auto;
  1091. border: solid 1px gray;
  1092. }
  1093. .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 {
  1094. order: 6;
  1095. }
  1096. .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 {
  1097. display: none;
  1098. }
  1099. .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 {
  1100. order: 7;
  1101. display: flex;
  1102. margin-top: 0.8rem;
  1103. flex-direction: row;
  1104. flex-wrap: wrap;
  1105. }
  1106. .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 {
  1107. display: none;
  1108. }
  1109. .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 {
  1110. display: flex;
  1111. flex-direction: row;
  1112. flex-wrap: wrap;
  1113. }
  1114. .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 {
  1115. padding-bottom: 0.5rem;
  1116. margin-right: 0.5rem;
  1117. padding-right: 0.3rem;
  1118. font-size: 0.8rem;
  1119. }
  1120. .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 {
  1121. background: rgb(9, 57, 139);
  1122. color: rgb(255, 255, 255);
  1123. font-weight: 800;
  1124. vertical-align: super;
  1125. padding-left: 0.1rem;
  1126. padding-right: 0.1rem;
  1127. display: inline-flex;
  1128. }
  1129. .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 {
  1130. display: none;
  1131. }
  1132. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1133. width: 100vw;
  1134. height: auto;
  1135. padding-top: 5rem;
  1136. background: rgba(0, 158, 227, 0.2);
  1137. }
  1138. @media (max-width: 810px) {
  1139. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1140. height: auto;
  1141. }
  1142. }
  1143. @media (max-width: 792px), (max-width: 724px), (max-width: 479px) {
  1144. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  1145. max-height: fit-content;
  1146. padding-top: 2rem;
  1147. }
  1148. }
  1149. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  1150. height: auto;
  1151. }
  1152. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row-wrapper {
  1153. margin-bottom: 0;
  1154. }
  1155. @media (max-width: 810px) {
  1156. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  1157. width: 100vw !important;
  1158. height: auto !important;
  1159. }
  1160. }
  1161. @media (max-width: 479px) {
  1162. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  1163. height: auto !important;
  1164. width: 100vw !important;
  1165. }
  1166. }
  1167. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list.draggable {
  1168. padding-left: 0px !important;
  1169. }
  1170. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  1171. color: rgb(0, 0, 0);
  1172. line-height: 1.5rem;
  1173. width: 80%;
  1174. height: auto;
  1175. margin: auto;
  1176. margin-bottom: 2rem;
  1177. }
  1178. @media (max-width: 810px) {
  1179. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  1180. width: 90%;
  1181. height: auto;
  1182. }
  1183. }
  1184. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  1185. display: flex;
  1186. flex-direction: row;
  1187. justify-content: space-between;
  1188. margin-left: 2rem;
  1189. }
  1190. @media (max-width: 810px) {
  1191. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  1192. display: flex;
  1193. flex-direction: column;
  1194. height: auto;
  1195. margin-left: 0;
  1196. }
  1197. }
  1198. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo {
  1199. width: 50%;
  1200. display: flex;
  1201. justify-content: end;
  1202. }
  1203. @media (max-width: 810px) {
  1204. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo {
  1205. width: 100%;
  1206. }
  1207. }
  1208. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item {
  1209. display: flex;
  1210. max-height: 420px;
  1211. }
  1212. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1213. max-width: 100%;
  1214. max-height: 456px;
  1215. object-fit: cover;
  1216. object-position: center;
  1217. }
  1218. @media (max-width: 810px) {
  1219. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1220. max-height: 310px;
  1221. max-width: 100%;
  1222. object-fit: cover;
  1223. padding-left: 0;
  1224. margin-bottom: 1rem;
  1225. }
  1226. }
  1227. @media (max-width: 724px) {
  1228. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1229. max-height: 400px;
  1230. }
  1231. }
  1232. @media (max-width: 680px) {
  1233. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1234. max-height: 200px;
  1235. object-fit: cover;
  1236. margin: auto;
  1237. padding-left: 0;
  1238. padding-bottom: 1rem;
  1239. }
  1240. }
  1241. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos {
  1242. width: 45%;
  1243. align-content: center;
  1244. color: rgb(9, 57, 139) !important;
  1245. }
  1246. @media (max-width: 810px) {
  1247. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos {
  1248. width: 100%;
  1249. }
  1250. }
  1251. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date:empty,
  1252. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu:empty,
  1253. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title:empty,
  1254. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre:empty,
  1255. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type:empty,
  1256. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .ul:empty {
  1257. display: none;
  1258. }
  1259. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date {
  1260. font-size: 1.3rem;
  1261. }
  1262. @media (max-width: 811px) {
  1263. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date {
  1264. font-size: 1rem;
  1265. }
  1266. }
  1267. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date div {
  1268. display: flex !important;
  1269. flex-direction: row;
  1270. }
  1271. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date time {
  1272. display: flex;
  1273. flex-direction: row;
  1274. font-size: 1.3rem;
  1275. font-weight: 800;
  1276. padding-right: 1rem;
  1277. width: fit-content;
  1278. }
  1279. @media (min-width: 811px) {
  1280. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date time {
  1281. font-size: 0.9rem;
  1282. }
  1283. }
  1284. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu {
  1285. font-size: 1.3rem;
  1286. padding-top: 1rem;
  1287. }
  1288. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu .field__label {
  1289. display: none;
  1290. }
  1291. @media (max-width: 811px) {
  1292. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu {
  1293. display: inline-flex;
  1294. font-size: 0.9rem;
  1295. padding-top: 0.5rem;
  1296. }
  1297. }
  1298. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title {
  1299. line-height: 1.1;
  1300. font-size: 1.5rem;
  1301. padding-top: 1rem;
  1302. }
  1303. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title h2 a {
  1304. color: rgb(9, 57, 139) !important;
  1305. }
  1306. @media (max-width: 810px) {
  1307. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title {
  1308. font-size: 0.9rem;
  1309. padding-top: 0.5rem;
  1310. }
  1311. }
  1312. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre {
  1313. display: none;
  1314. font-weight: 800;
  1315. }
  1316. @media (min-width: 811px) {
  1317. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre {
  1318. font-size: 1.5rem;
  1319. }
  1320. }
  1321. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type {
  1322. padding-top: 2rem;
  1323. font-size: 1.3rem;
  1324. }
  1325. @media (max-width: 810px) {
  1326. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type {
  1327. font-size: 0.9rem;
  1328. padding-top: 1rem;
  1329. }
  1330. }
  1331. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field:not(.field--name-field-images) {
  1332. width: 100%;
  1333. }
  1334. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos h2 {
  1335. margin: 0;
  1336. }
  1337. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos a {
  1338. color: rgb(0, 0, 0);
  1339. }
  1340. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .inline.links {
  1341. display: none;
  1342. }
  1343. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1344. visibility: visible;
  1345. display: flex;
  1346. flex-flow: row;
  1347. justify-content: center;
  1348. background: rgba(0, 158, 227, 0.2);
  1349. padding-top: 3rem;
  1350. padding-bottom: 3rem;
  1351. border-bottom: 5px solid rgb(0, 158, 227);
  1352. }
  1353. @media (max-width: 479px) {
  1354. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1355. padding-top: 2rem;
  1356. padding-bottom: 2rem;
  1357. }
  1358. }
  1359. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien {
  1360. margin: auto;
  1361. height: fit-content;
  1362. padding: 0.4rem 1rem;
  1363. font-size: 0.8rem;
  1364. margin: 0;
  1365. background-color: rgb(255, 255, 255);
  1366. border: 2px solid rgb(0, 158, 227);
  1367. list-style: none;
  1368. display: inline-flex;
  1369. }
  1370. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien p {
  1371. margin: 0;
  1372. }
  1373. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a {
  1374. text-transform: uppercase;
  1375. font-weight: 700;
  1376. color: rgb(0, 158, 227);
  1377. display: inline-flex;
  1378. align-items: center;
  1379. }
  1380. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a::after {
  1381. 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>');
  1382. }
  1383. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  1384. padding-top: 2rem;
  1385. padding-bottom: 4rem;
  1386. }
  1387. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1388. width: 80%;
  1389. margin: auto;
  1390. }
  1391. @media (max-width: 479px) {
  1392. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1393. width: 80%;
  1394. }
  1395. }
  1396. .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) {
  1397. display: flex;
  1398. flex-direction: row;
  1399. flex-wrap: wrap;
  1400. }
  1401. .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) {
  1402. order: 3;
  1403. }
  1404. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  1405. z-index: 95;
  1406. flex: 0 0 100%;
  1407. width: 100%;
  1408. display: flex;
  1409. justify-content: center;
  1410. height: fit-content;
  1411. padding: 0;
  1412. font-size: 0.8rem;
  1413. margin: 0;
  1414. list-style: none;
  1415. }
  1416. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  1417. text-transform: uppercase;
  1418. font-weight: 700;
  1419. color: rgb(0, 158, 227);
  1420. display: inline-flex;
  1421. align-items: center;
  1422. padding: 0.4rem 1rem;
  1423. font-size: 0.8rem;
  1424. margin: 0;
  1425. background-color: rgb(255, 255, 255);
  1426. border: 2px solid rgb(0, 158, 227);
  1427. }
  1428. .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 {
  1429. 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>');
  1430. }
  1431. @media (max-width: 810px) {
  1432. .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 {
  1433. width: 100%;
  1434. }
  1435. }
  1436. @media (max-width: 810px) {
  1437. .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 {
  1438. justify-content: center;
  1439. display: flex;
  1440. }
  1441. }
  1442. .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 {
  1443. width: 15rem;
  1444. height: auto;
  1445. }
  1446. @media (max-width: 810px) {
  1447. .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 {
  1448. width: 12rem;
  1449. padding-bottom: 1rem;
  1450. }
  1451. }
  1452. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  1453. display: none;
  1454. }
  1455. .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 {
  1456. flex: 1 1 50px;
  1457. padding-left: 1rem;
  1458. }
  1459. @media (max-width: 810px) {
  1460. .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 {
  1461. padding-left: 0em;
  1462. flex: 1 1 100%;
  1463. }
  1464. }
  1465. @media (max-width: 479px) {
  1466. .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 {
  1467. padding-left: 0em;
  1468. }
  1469. }
  1470. .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 {
  1471. background-color: rgb(255, 255, 255);
  1472. font-size: 1.5rem;
  1473. width: 110%;
  1474. padding-bottom: 2rem;
  1475. margin-block-start: 0;
  1476. text-align: start !important;
  1477. }
  1478. @media (max-width: 810px) {
  1479. .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 {
  1480. font-size: 1.2rem;
  1481. width: 100%;
  1482. }
  1483. }
  1484. .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 {
  1485. flex: 0 0 80%;
  1486. padding-top: 4rem;
  1487. margin: auto;
  1488. }
  1489. @media (max-width: 479px) {
  1490. .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 {
  1491. flex: 0 0 100%;
  1492. }
  1493. }
  1494. .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) {
  1495. display: none;
  1496. }
  1497. .path-frontpage .block-views-blockprojets-block-4 {
  1498. border-top: 5px solid rgb(0, 158, 227);
  1499. background: rgba(0, 158, 227, 0.2);
  1500. padding-top: 2rem;
  1501. padding-bottom: 4rem;
  1502. }
  1503. @media (max-width: 810px) {
  1504. .path-frontpage .block-views-blockprojets-block-4 {
  1505. padding-bottom: 0rem;
  1506. }
  1507. }
  1508. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1509. width: 80%;
  1510. margin: auto;
  1511. padding-top: 1rem;
  1512. padding-bottom: 5rem;
  1513. text-transform: uppercase;
  1514. color: rgb(225, 0, 15);
  1515. font-family: "Source Code Pro";
  1516. font-weight: 1000;
  1517. }
  1518. @media (max-width: 479px) {
  1519. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1520. padding-bottom: 1rem;
  1521. }
  1522. }
  1523. .path-frontpage .block-views-blockprojets-block-4 .view-projets {
  1524. width: 80%;
  1525. margin: auto;
  1526. }
  1527. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1528. display: flex;
  1529. flex-direction: row;
  1530. justify-content: space-between;
  1531. }
  1532. @media (max-width: 810px) {
  1533. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1534. flex-direction: column;
  1535. }
  1536. }
  1537. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1538. width: 49%;
  1539. }
  1540. @media (max-width: 810px) {
  1541. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1542. width: 100%;
  1543. margin-bottom: 1rem;
  1544. }
  1545. }
  1546. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1547. color: rgb(9, 57, 139);
  1548. line-height: 1.5rem;
  1549. }
  1550. @media (max-width: 810px) {
  1551. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1552. padding-left: 0rem;
  1553. padding-right: 0rem;
  1554. padding-top: 2rem;
  1555. }
  1556. }
  1557. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child {
  1558. display: flex;
  1559. flex-direction: column;
  1560. max-height: fit-content;
  1561. }
  1562. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child a {
  1563. color: rgb(9, 57, 139);
  1564. }
  1565. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo {
  1566. order: 1;
  1567. }
  1568. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo .field__item {
  1569. display: none;
  1570. }
  1571. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo .field__item:first-child {
  1572. display: block;
  1573. }
  1574. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo img {
  1575. width: 100%;
  1576. height: auto;
  1577. max-height: 400px;
  1578. object-fit: cover;
  1579. }
  1580. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse {
  1581. order: 2;
  1582. display: flex;
  1583. text-transform: uppercase;
  1584. font-size: 0.9rem;
  1585. font-weight: 800;
  1586. margin-top: 0.8rem;
  1587. line-height: 0.6rem;
  1588. }
  1589. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address {
  1590. display: flex;
  1591. flex-direction: row;
  1592. margin: 0;
  1593. }
  1594. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  1595. padding-top: 0 !important;
  1596. padding-bottom: 0 !important;
  1597. }
  1598. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  1599. content: ",";
  1600. margin-right: 0.3rem;
  1601. }
  1602. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .country {
  1603. padding-top: 0 !important;
  1604. padding-bottom: 0 !important;
  1605. }
  1606. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-sous-titre {
  1607. margin-top: 0.8rem;
  1608. font-size: 0.9rem;
  1609. font-weight: 800;
  1610. order: 4;
  1611. }
  1612. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-title {
  1613. order: 3;
  1614. margin-top: 0.8rem;
  1615. font-size: 0.9rem;
  1616. font-weight: 800;
  1617. }
  1618. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-title h2 {
  1619. margin: 0;
  1620. }
  1621. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-incube {
  1622. order: 4;
  1623. color: rgb(225, 0, 15);
  1624. margin-top: 0.8rem;
  1625. font-size: 0.7rem;
  1626. }
  1627. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-region {
  1628. display: none;
  1629. order: 5;
  1630. color: rgb(0, 0, 0);
  1631. font-size: 0.7rem;
  1632. }
  1633. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-moa {
  1634. display: none;
  1635. order: 6;
  1636. }
  1637. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-moa a {
  1638. color: rgb(0, 0, 0);
  1639. font-size: 0.7rem;
  1640. }
  1641. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-projet {
  1642. display: none;
  1643. order: 7;
  1644. }
  1645. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-projet a {
  1646. color: rgb(0, 0, 0);
  1647. font-size: 0.7rem;
  1648. }
  1649. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-etape-du-projet {
  1650. display: none;
  1651. order: 8;
  1652. color: rgb(0, 0, 0);
  1653. font-size: 0.7rem;
  1654. }
  1655. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet .ville-region {
  1656. display: none;
  1657. }
  1658. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1659. display: flex;
  1660. background: rgba(0, 158, 227, 0.2);
  1661. padding-top: 2rem;
  1662. padding-bottom: 4rem;
  1663. }
  1664. @media (max-width: 479px) {
  1665. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1666. padding-top: 2rem;
  1667. padding-bottom: 2rem;
  1668. }
  1669. }
  1670. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary {
  1671. height: fit-content;
  1672. padding: 0.4rem 1rem;
  1673. font-size: 0.8rem;
  1674. margin: auto;
  1675. background-color: rgb(255, 255, 255);
  1676. border: 2px solid rgb(0, 158, 227);
  1677. list-style: none;
  1678. display: inline-flex;
  1679. }
  1680. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary p {
  1681. margin: 0;
  1682. }
  1683. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a {
  1684. text-transform: uppercase;
  1685. font-weight: 700;
  1686. color: rgb(0, 158, 227);
  1687. display: inline-flex;
  1688. align-items: center;
  1689. }
  1690. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a::after {
  1691. 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>');
  1692. }
  1693. .path-frontpage .block-views-blockprojets-block-2 #leaflet-map-view-projets-block-2 {
  1694. height: 500px !important;
  1695. }
  1696. .node-id-20 {
  1697. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  1698. background-repeat: no-repeat;
  1699. background-position-y: 7rem;
  1700. max-width: 100vw;
  1701. background-size: contain;
  1702. }
  1703. .node-id-20 .layout__region--top {
  1704. padding-bottom: 3rem;
  1705. height: 30vh;
  1706. }
  1707. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1708. font-family: "Source Code Pro";
  1709. font-size: 2rem;
  1710. font-weight: 800;
  1711. color: rgb(255, 255, 255);
  1712. background-color: rgb(0, 158, 227);
  1713. text-transform: uppercase;
  1714. }
  1715. .field--name-field-partenaires {
  1716. padding-top: 3rem;
  1717. }
  1718. .field--name-field-partenaires .paragraph--type--partenaire {
  1719. background-color: rgb(255, 255, 255);
  1720. width: 100%;
  1721. padding-bottom: 3rem;
  1722. display: grid;
  1723. grid-template-columns: repeat(7, 1fr);
  1724. grid-template-rows: repeat(auto-fill);
  1725. }
  1726. @media (max-width: 810px) {
  1727. .field--name-field-partenaires .paragraph--type--partenaire {
  1728. display: flex;
  1729. flex-direction: column;
  1730. }
  1731. }
  1732. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  1733. grid-column: 1/2;
  1734. grid-row: 2;
  1735. margin-top: 2rem;
  1736. padding-right: 1rem;
  1737. }
  1738. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  1739. grid-column: 2/8;
  1740. grid-row: 1;
  1741. font-weight: 800;
  1742. }
  1743. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  1744. grid-column: 2/8;
  1745. grid-row: 2;
  1746. }
  1747. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  1748. grid-column: 2/8;
  1749. grid-row: 3;
  1750. }
  1751. .field--name-field-partenaires a {
  1752. color: rgb(0, 0, 0);
  1753. font-weight: 800;
  1754. }
  1755. .field--name-field-partenaires a svg {
  1756. display: none;
  1757. }
  1758. .field--name-field-equipes {
  1759. padding-top: 3rem;
  1760. }
  1761. .field--name-field-equipes .paragraph--type--equipe {
  1762. background-color: rgb(255, 255, 255);
  1763. width: 100%;
  1764. }
  1765. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1766. width: 100%;
  1767. padding-bottom: 3rem;
  1768. display: grid;
  1769. grid-template-columns: repeat(7, 1fr);
  1770. grid-template-rows: repeat(auto-fill);
  1771. }
  1772. @media (max-width: 810px) {
  1773. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1774. display: flex;
  1775. flex-direction: column;
  1776. }
  1777. }
  1778. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo {
  1779. grid-column: 1/2;
  1780. grid-row: 1/span 3;
  1781. padding-right: 1rem;
  1782. }
  1783. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo img {
  1784. border-radius: 50%;
  1785. }
  1786. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-prenom {
  1787. grid-column: 2/span 3;
  1788. grid-row: 1;
  1789. font-weight: 800;
  1790. }
  1791. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-nom {
  1792. grid-column: 2/span 3;
  1793. grid-row: 2;
  1794. }
  1795. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-fonction {
  1796. grid-column: 2/8;
  1797. grid-row: 3;
  1798. }
  1799. .field--name-field-equipes a {
  1800. color: rgb(0, 0, 0);
  1801. font-weight: 800;
  1802. }
  1803. .field--name-field-equipes a svg {
  1804. display: none;
  1805. }
  1806. .path-node.page-node-type-actualite .layout-container {
  1807. overflow: unset;
  1808. }
  1809. .path-node.page-node-type-actualite .offresdeservices.layout-content.region-content#block-contenudelapageprincipale {
  1810. background: none !important;
  1811. }
  1812. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1813. background: linear-gradient(to bottom, rgba(0, 158, 227, 0.2) 60%, white 40%);
  1814. padding-bottom: 4rem;
  1815. }
  1816. @media (max-width: 900px) {
  1817. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1818. order: 1;
  1819. }
  1820. }
  1821. @media (max-width: 568px) {
  1822. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1823. padding-left: 2rem;
  1824. padding-right: 2rem;
  1825. }
  1826. }
  1827. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  1828. display: grid;
  1829. grid-template-columns: 1fr repeat(8, 1fr) 1fr;
  1830. }
  1831. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  1832. order: 5;
  1833. grid-column: 2;
  1834. margin-top: 1rem;
  1835. color: rgb(9, 57, 139);
  1836. }
  1837. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1838. order: 3;
  1839. grid-column: 2/span 7;
  1840. margin: 0;
  1841. color: rgb(9, 57, 139);
  1842. }
  1843. @media (max-width: 568px) {
  1844. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1845. grid-column: 2/span 8;
  1846. max-width: 80vw;
  1847. }
  1848. }
  1849. @media (max-width: 499px) {
  1850. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1851. grid-column: 2/span 9;
  1852. max-width: 80vw;
  1853. }
  1854. }
  1855. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1856. font-family: "Marianne";
  1857. font-size: 2.5rem;
  1858. font-weight: 800;
  1859. line-height: 3rem;
  1860. }
  1861. @media (max-width: 810px) {
  1862. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1863. font-size: 1.9em;
  1864. line-height: 2.3rem;
  1865. }
  1866. }
  1867. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  1868. order: 1;
  1869. padding-top: 2rem;
  1870. grid-column: 2/span 3;
  1871. text-transform: uppercase;
  1872. color: rgb(9, 57, 139);
  1873. font-size: 1.2rem;
  1874. font-weight: 800;
  1875. margin-top: 1rem;
  1876. }
  1877. .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 {
  1878. display: flex;
  1879. flex-direction: row;
  1880. justify-content: flex-start;
  1881. }
  1882. .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 {
  1883. padding-right: 2 rem;
  1884. }
  1885. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu {
  1886. order: 2;
  1887. grid-column: 2/span 4;
  1888. text-transform: uppercase;
  1889. color: rgb(9, 57, 139);
  1890. font-size: 1.2rem;
  1891. font-weight: 800;
  1892. margin-top: 1rem;
  1893. }
  1894. .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 {
  1895. display: flex;
  1896. flex-direction: row;
  1897. justify-content: flex-start;
  1898. }
  1899. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1900. order: 4;
  1901. grid-column: 2/span 7;
  1902. margin-top: 1rem;
  1903. font-weight: 800;
  1904. color: rgb(9, 57, 139);
  1905. }
  1906. @media (max-width: 568px) {
  1907. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1908. grid-column: 2/span 8;
  1909. max-width: 80vw;
  1910. }
  1911. }
  1912. @media (max-width: 499px) {
  1913. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1914. grid-column: 2/span 9;
  1915. max-width: 80vw;
  1916. }
  1917. }
  1918. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1919. order: 6;
  1920. grid-column: 5/span 3;
  1921. width: 600px;
  1922. }
  1923. @media (max-width: 568px) {
  1924. .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 {
  1925. width: 80%;
  1926. }
  1927. }
  1928. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1929. padding-top: 2rem;
  1930. width: 100%;
  1931. max-height: 400px;
  1932. object-fit: contain;
  1933. }
  1934. @media (max-width: 568px) {
  1935. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1936. max-width: 90vw;
  1937. }
  1938. }
  1939. @media (max-width: 900px) {
  1940. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1941. grid-column: 3/span 5;
  1942. }
  1943. }
  1944. @media (max-width: 568px) {
  1945. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1946. grid-column: 1/span 8;
  1947. }
  1948. }
  1949. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1950. font-size: 0.8rem;
  1951. text-align: center;
  1952. }
  1953. @media (max-width: 810px) {
  1954. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1955. margin-left: 5%;
  1956. margin-right: 5%;
  1957. font-size: 0.7rem;
  1958. }
  1959. }
  1960. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-next {
  1961. right: -65px;
  1962. }
  1963. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-prev {
  1964. left: -65px;
  1965. }
  1966. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li {
  1967. display: inline-block;
  1968. }
  1969. .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 {
  1970. display: none;
  1971. }
  1972. .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 {
  1973. margin-bottom: 0 !important;
  1974. }
  1975. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  1976. display: flex;
  1977. justify-content: flex-end;
  1978. position: -webkit-sticky;
  1979. position: sticky;
  1980. top: 10rem;
  1981. }
  1982. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1983. display: flex;
  1984. justify-content: flex-end;
  1985. width: 50%;
  1986. background-color: rgb(255, 255, 255);
  1987. padding-right: 2rem;
  1988. }
  1989. .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 {
  1990. display: flex;
  1991. font-size: 1rem;
  1992. font-weight: 1000;
  1993. color: rgb(9, 57, 139);
  1994. border-bottom: 1px solid rgb(0, 158, 227);
  1995. padding-bottom: 0.5rem;
  1996. padding-right: 1rem;
  1997. margin-bottom: 0.8rem;
  1998. }
  1999. .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 {
  2000. text-decoration: underline;
  2001. }
  2002. @media (max-width: 810px) {
  2003. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  2004. display: none;
  2005. }
  2006. }
  2007. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  2008. width: 50%;
  2009. }
  2010. @media (max-width: 900px) {
  2011. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  2012. order: 3;
  2013. width: 100vw;
  2014. }
  2015. }
  2016. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  2017. width: 90%;
  2018. }
  2019. @media (max-width: 900px) {
  2020. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  2021. width: 90%;
  2022. margin: auto;
  2023. }
  2024. }
  2025. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  2026. margin-top: 0;
  2027. }
  2028. .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 {
  2029. background-color: white;
  2030. }
  2031. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  2032. background-color: rgb(255, 255, 255);
  2033. }
  2034. .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 {
  2035. font-size: 1.5rem;
  2036. font-weight: 1000;
  2037. font-family: "Source Code Pro";
  2038. color: rgb(9, 57, 139);
  2039. text-transform: uppercase;
  2040. margin-top: 2rem;
  2041. margin-bottom: 0.8rem;
  2042. }
  2043. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  2044. text-transform: none !important;
  2045. }
  2046. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  2047. width: 100%;
  2048. height: auto;
  2049. }
  2050. .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 {
  2051. padding-right: 2rem;
  2052. }
  2053. @media (max-width: 900px) {
  2054. .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 {
  2055. padding-right: 0;
  2056. }
  2057. }
  2058. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  2059. margin-top: 0;
  2060. }
  2061. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  2062. color: rgb(0, 0, 0);
  2063. text-decoration: underline;
  2064. }
  2065. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  2066. display: none;
  2067. }
  2068. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  2069. overflow-y: visible !important;
  2070. }
  2071. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody a.ext {
  2072. word-wrap: break-word;
  2073. }
  2074. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  2075. font-size: 1.5rem;
  2076. font-weight: 1000;
  2077. font-family: "Source Code Pro";
  2078. color: rgb(9, 57, 139);
  2079. text-transform: uppercase;
  2080. margin-top: 2rem;
  2081. margin-bottom: 0.8rem;
  2082. }
  2083. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  2084. display: flex;
  2085. flex-direction: row;
  2086. justify-content: space-between;
  2087. flex-wrap: wrap;
  2088. }
  2089. @media (max-width: 568px) {
  2090. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  2091. flex-direction: column;
  2092. }
  2093. }
  2094. .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 {
  2095. display: flex;
  2096. flex-direction: column;
  2097. align-items: center;
  2098. }
  2099. .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 {
  2100. padding-top: 1rem;
  2101. }
  2102. @media (max-width: 900px) {
  2103. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  2104. flex: 0 1 80%;
  2105. margin: auto;
  2106. }
  2107. }
  2108. @media (max-width: 1005px) {
  2109. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third {
  2110. flex: 0 1 100%;
  2111. order: 2;
  2112. }
  2113. }
  2114. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  2115. display: flex;
  2116. flex-direction: column;
  2117. width: 65%;
  2118. }
  2119. @media (max-width: 900px) {
  2120. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  2121. margin: auto;
  2122. }
  2123. }
  2124. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2125. height: fit-content;
  2126. width: fit-content;
  2127. border: 2px solid rgb(0, 158, 227);
  2128. background-color: rgb(255, 255, 255);
  2129. margin-bottom: 1rem;
  2130. min-height: 4rem;
  2131. color: rgb(0, 158, 227);
  2132. padding: 1rem;
  2133. }
  2134. @media (max-width: 900px) {
  2135. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2136. width: auto;
  2137. padding-right: 1rem;
  2138. }
  2139. }
  2140. @media (max-width: 568px) {
  2141. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  2142. width: auto;
  2143. }
  2144. }
  2145. .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) {
  2146. display: none;
  2147. }
  2148. .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 {
  2149. height: inherit;
  2150. margin: auto;
  2151. width: fit-content;
  2152. }
  2153. .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 {
  2154. content: url("../images/pictos/download.png");
  2155. padding-right: 1rem;
  2156. margin-right: 1rem;
  2157. }
  2158. .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 {
  2159. hyphens: auto;
  2160. display: inline-flex;
  2161. align-items: center;
  2162. color: rgb(0, 158, 227);
  2163. font-weight: 800;
  2164. }
  2165. .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 {
  2166. margin: auto;
  2167. width: fit-content;
  2168. height: fit-content;
  2169. border: 2px solid rgb(0, 158, 227);
  2170. min-height: 4rem;
  2171. background: rgb(255, 255, 255);
  2172. color: rgb(0, 158, 227);
  2173. padding: 1rem;
  2174. margin-bottom: 1rem;
  2175. }
  2176. @media (max-width: 900px) {
  2177. .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 {
  2178. width: auto;
  2179. padding-right: 1rem;
  2180. }
  2181. }
  2182. .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 {
  2183. display: inline-flex;
  2184. align-items: center;
  2185. color: rgb(0, 158, 227);
  2186. font-weight: 800;
  2187. }
  2188. .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 {
  2189. content: url("../images/pictos/external_link.png");
  2190. padding-right: 1rem;
  2191. }
  2192. .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 {
  2193. display: none;
  2194. }
  2195. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2196. margin-top: 3rem;
  2197. }
  2198. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  2199. font-size: 0.8rem;
  2200. color: rgb(0, 0, 0);
  2201. font-weight: 900;
  2202. }
  2203. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  2204. border: 2px solid rgb(0, 158, 227);
  2205. padding: 1rem;
  2206. height: fit-content;
  2207. margin-bottom: 1rem;
  2208. background-color: rgb(255, 255, 255);
  2209. display: flex;
  2210. flex-direction: column;
  2211. }
  2212. .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 {
  2213. display: flex;
  2214. flex-direction: column;
  2215. }
  2216. .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 {
  2217. order: 2;
  2218. text-transform: uppercase;
  2219. color: rgb(0, 158, 227);
  2220. font-weight: 900;
  2221. font-size: 0.8rem;
  2222. }
  2223. .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 {
  2224. order: 3;
  2225. }
  2226. .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 {
  2227. margin: 0;
  2228. }
  2229. .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 {
  2230. color: rgb(0, 0, 0);
  2231. font-size: 1rem;
  2232. font-weight: 900;
  2233. font-style: italic;
  2234. }
  2235. .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 {
  2236. order: 4;
  2237. }
  2238. .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- {
  2239. order: 5;
  2240. font-weight: 800;
  2241. }
  2242. .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 {
  2243. margin: 0;
  2244. }
  2245. .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 {
  2246. display: none;
  2247. }
  2248. .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 {
  2249. margin: 0;
  2250. }
  2251. .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 {
  2252. display: none;
  2253. }
  2254. .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 {
  2255. display: none;
  2256. order: 1;
  2257. width: 25%;
  2258. }
  2259. .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 {
  2260. width: 100%;
  2261. height: auto;
  2262. margin: auto;
  2263. }
  2264. .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 {
  2265. order: 6;
  2266. display: flex;
  2267. margin-top: 2rem;
  2268. flex-direction: row;
  2269. flex-wrap: wrap;
  2270. }
  2271. .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 {
  2272. display: flex;
  2273. flex-direction: row;
  2274. flex-wrap: wrap;
  2275. }
  2276. .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 {
  2277. padding-bottom: 0.5rem;
  2278. margin-right: 0.5rem;
  2279. padding-right: 0.3rem;
  2280. font-size: 0.8rem;
  2281. }
  2282. .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 {
  2283. background: rgb(9, 57, 139);
  2284. color: rgb(255, 255, 255);
  2285. font-weight: 800;
  2286. vertical-align: super;
  2287. padding-left: 0.1rem;
  2288. padding-right: 0.1rem;
  2289. display: inline-flex;
  2290. }
  2291. .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 {
  2292. display: none;
  2293. }
  2294. .node-id-35 .region-content {
  2295. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  2296. background-repeat: no-repeat;
  2297. max-width: 100vw;
  2298. background-size: contain;
  2299. }
  2300. .node-id-35 .layout__region--top {
  2301. padding-bottom: 3rem;
  2302. height: 30vh;
  2303. }
  2304. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2305. display: none;
  2306. height: inherit;
  2307. }
  2308. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2309. font-family: "Source Code Pro";
  2310. font-size: 2rem;
  2311. font-weight: 800;
  2312. color: rgb(255, 255, 255);
  2313. background-color: rgb(0, 158, 227);
  2314. text-transform: uppercase;
  2315. }
  2316. .node-id-3 {
  2317. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2318. background-repeat: no-repeat;
  2319. background-position-y: 7rem;
  2320. max-width: 100vw;
  2321. background-size: contain;
  2322. }
  2323. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2324. display: none;
  2325. height: inherit;
  2326. }
  2327. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2328. color: rgb(0, 158, 227);
  2329. background-color: rgb(255, 255, 255);
  2330. }
  2331. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2332. background: rgb(0, 158, 227) !important;
  2333. color: rgb(255, 255, 255) !important;
  2334. }
  2335. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  2336. color: rgb(255, 255, 255) !important;
  2337. }
  2338. .node-id-3 .block-entity-fieldnodefield-liens {
  2339. display: none;
  2340. }
  2341. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2342. background: rgb(0, 158, 227);
  2343. color: rgb(255, 255, 255);
  2344. }
  2345. .node-id-3 .block-entity-fieldnodefield-ress {
  2346. margin-top: 3rem;
  2347. }
  2348. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  2349. font-size: 0.8rem;
  2350. color: rgb(0, 0, 0);
  2351. font-weight: 900;
  2352. }
  2353. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  2354. display: flex;
  2355. flex-direction: column;
  2356. border: 2px solid rgb(0, 158, 227);
  2357. padding: 1rem;
  2358. height: fit-content;
  2359. margin-bottom: 1rem;
  2360. background-color: rgb(255, 255, 255);
  2361. }
  2362. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  2363. border-top: 1px solid rgb(0, 158, 227);
  2364. padding-top: 1rem;
  2365. }
  2366. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  2367. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2368. align-self: flex-end;
  2369. }
  2370. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  2371. color: rgb(0, 0, 0);
  2372. font-size: 1.4rem;
  2373. font-weight: 600;
  2374. }
  2375. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  2376. font-weight: 800;
  2377. }
  2378. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  2379. margin: 0;
  2380. }
  2381. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  2382. display: none;
  2383. }
  2384. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  2385. margin: 0;
  2386. }
  2387. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  2388. display: none;
  2389. }
  2390. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  2391. display: none;
  2392. width: 50%;
  2393. }
  2394. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  2395. width: 100%;
  2396. height: auto;
  2397. }
  2398. .path-actualites {
  2399. background-color: rgba(0, 158, 227, 0.2);
  2400. margin: 0;
  2401. }
  2402. .path-actualites .block-region-content {
  2403. display: grid;
  2404. grid-template-columns: 1fr 8fr 1fr;
  2405. margin: auto;
  2406. padding-top: 3rem;
  2407. }
  2408. .path-actualites .block-region-content .block-views {
  2409. grid-column: 2;
  2410. }
  2411. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2412. display: flex;
  2413. flex-direction: row;
  2414. flex-wrap: wrap;
  2415. }
  2416. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2417. width: 25%;
  2418. flex: 0 0 25%;
  2419. }
  2420. @media (max-width: 810px) {
  2421. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2422. flex-direction: column;
  2423. }
  2424. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2425. width: 100%;
  2426. }
  2427. }
  2428. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  2429. padding-top: 0;
  2430. }
  2431. .path-actualites .block-region-content .block-views .node-type-actualite {
  2432. color: rgb(9, 57, 139);
  2433. line-height: 1.5rem;
  2434. padding: 0.5rem;
  2435. padding-right: 1rem;
  2436. padding-left: 1rem;
  2437. }
  2438. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  2439. display: flex;
  2440. flex-direction: column;
  2441. }
  2442. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  2443. color: rgb(9, 57, 139);
  2444. }
  2445. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  2446. order: 1;
  2447. }
  2448. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2449. width: 100%;
  2450. max-height: 175px;
  2451. object-fit: cover;
  2452. }
  2453. @media (max-width: 810px) {
  2454. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2455. max-height: 350px;
  2456. }
  2457. }
  2458. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  2459. display: block;
  2460. 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>');
  2461. }
  2462. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  2463. margin-top: 0.5rem;
  2464. font-size: 0.9rem;
  2465. font-weight: 800;
  2466. order: 5;
  2467. }
  2468. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  2469. order: 2;
  2470. display: flex;
  2471. flex-direction: row;
  2472. justify-content: flex-start;
  2473. }
  2474. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  2475. padding-left: 1rem;
  2476. content: "|";
  2477. }
  2478. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  2479. font-size: 0.9rem;
  2480. font-weight: 800;
  2481. padding-right: 1rem;
  2482. width: fit-content;
  2483. }
  2484. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  2485. font-size: 0.9rem;
  2486. order: 3;
  2487. display: flex;
  2488. flex-direction: row;
  2489. justify-content: flex-start;
  2490. }
  2491. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  2492. display: none;
  2493. }
  2494. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  2495. order: 4;
  2496. font-size: 0.9rem;
  2497. }
  2498. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  2499. width: 100%;
  2500. }
  2501. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  2502. margin: 0;
  2503. }
  2504. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  2505. padding-top: none !important;
  2506. list-style: none;
  2507. width: fit-content;
  2508. align-self: flex-end;
  2509. padding-right: 1rem;
  2510. }
  2511. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  2512. display: none;
  2513. }
  2514. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  2515. order: 6;
  2516. padding-top: 1rem;
  2517. }
  2518. .node-id-4 {
  2519. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2520. background-repeat: no-repeat;
  2521. background-position-y: 7rem;
  2522. max-width: 100vw;
  2523. background-size: contain;
  2524. }
  2525. .node-id-4 #block-contenudelapageprincipale {
  2526. scroll-margin: 8rem;
  2527. }
  2528. .node-id-4 .layout__region--top {
  2529. padding-bottom: 3rem;
  2530. height: 30vh;
  2531. }
  2532. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2533. display: none;
  2534. height: inherit;
  2535. }
  2536. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2537. font-family: "Source Code Pro";
  2538. font-size: 2rem;
  2539. font-weight: 800;
  2540. color: rgb(255, 255, 255);
  2541. background-color: rgb(0, 158, 227);
  2542. text-transform: uppercase;
  2543. }
  2544. .node-id-4 .layout__region--second {
  2545. width: 25%;
  2546. }
  2547. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  2548. background-color: rgb(255, 255, 255);
  2549. }
  2550. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2551. font-size: 1.5rem;
  2552. font-weight: 1000;
  2553. font-family: "Source Code Pro";
  2554. color: rgb(9, 57, 139);
  2555. text-transform: uppercase;
  2556. }
  2557. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2558. text-transform: none !important;
  2559. }
  2560. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2561. padding-right: 2rem;
  2562. }
  2563. .node-id-5 .region-content {
  2564. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2565. background-repeat: no-repeat;
  2566. max-width: 100vw;
  2567. background-size: contain;
  2568. }
  2569. .node-id-5 .layout__region--top {
  2570. padding-bottom: 3rem;
  2571. height: 30vh;
  2572. }
  2573. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2574. font-family: "Source Code Pro";
  2575. font-size: 2rem;
  2576. font-weight: 800;
  2577. color: rgb(255, 255, 255);
  2578. background-color: rgb(0, 158, 227);
  2579. text-transform: uppercase;
  2580. }
  2581. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2582. color: rgb(0, 0, 0);
  2583. text-decoration: underline;
  2584. }
  2585. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2586. display: none;
  2587. }
  2588. .path-faq #block-contenudelapageprincipale h2 {
  2589. font-family: "Source Code Pro";
  2590. font-size: 2rem;
  2591. font-weight: 800;
  2592. color: rgb(0, 158, 227);
  2593. background-color: rgb(255, 255, 255);
  2594. text-transform: uppercase;
  2595. width: fit-content;
  2596. margin-left: 10%;
  2597. margin-top: 8rem;
  2598. }
  2599. @media (max-width: 810px) {
  2600. .path-faq #block-contenudelapageprincipale h2 {
  2601. margin-left: 8%;
  2602. margin-right: 1%;
  2603. }
  2604. }
  2605. .path-faq #block-contenudelapageprincipale .block-region-content {
  2606. display: grid;
  2607. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2608. }
  2609. @media (max-width: 810px) {
  2610. .path-faq #block-contenudelapageprincipale .block-region-content {
  2611. display: flex;
  2612. flex-direction: column;
  2613. margin: auto;
  2614. }
  2615. }
  2616. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2617. grid-column: 2/span 3;
  2618. }
  2619. @media (max-width: 810px) {
  2620. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2621. width: 80%;
  2622. margin: auto;
  2623. }
  2624. }
  2625. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2626. display: none;
  2627. grid-column: 5;
  2628. grid-row: 1/span 2;
  2629. height: fit-content;
  2630. flex-direction: column;
  2631. max-width: fit-content;
  2632. margin-left: 2rem;
  2633. padding: 1rem;
  2634. background-color: rgb(0, 158, 227);
  2635. }
  2636. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2637. margin-top: 1rem;
  2638. display: block;
  2639. content: url("../images/pictos/picto_faq.svg");
  2640. }
  2641. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2642. text-align: center;
  2643. }
  2644. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2645. font-size: 0.8rem;
  2646. font-weight: 1000;
  2647. color: rgb(9, 57, 139);
  2648. text-transform: uppercase;
  2649. }
  2650. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  2651. display: flex;
  2652. flex-direction: column;
  2653. margin-top: 0;
  2654. margin-left: 1.5rem;
  2655. margin-right: 1.5rem;
  2656. text-align: center;
  2657. }
  2658. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  2659. font-weight: 800;
  2660. color: rgb(255, 255, 255);
  2661. font-size: 1.3rem;
  2662. }
  2663. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  2664. margin-left: auto;
  2665. padding-top: 1rem;
  2666. display: block;
  2667. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2668. }
  2669. @media (max-width: 810px) {
  2670. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2671. margin: auto;
  2672. padding: 0rem;
  2673. }
  2674. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2675. margin-top: 1rem;
  2676. display: block;
  2677. content: url("../images/pictos/picto_faq_2.svg");
  2678. }
  2679. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2680. text-align: center;
  2681. }
  2682. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2683. font-size: 0.8rem;
  2684. font-weight: 1000;
  2685. color: rgb(9, 57, 139);
  2686. text-transform: uppercase;
  2687. }
  2688. }
  2689. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2690. margin-top: 2rem;
  2691. grid-column: 2/span 3;
  2692. display: grid;
  2693. grid-template-columns: 1fr 1fr 1fr;
  2694. }
  2695. @media (max-width: 810px) {
  2696. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2697. width: 80%;
  2698. margin: auto;
  2699. margin-top: 1rem;
  2700. }
  2701. }
  2702. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  2703. grid-column: 1/span 3;
  2704. }
  2705. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2706. border-bottom: 1px solid rgb(0, 158, 227);
  2707. padding-bottom: 2rem;
  2708. }
  2709. @media (max-width: 810px) {
  2710. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2711. padding-bottom: 1rem;
  2712. }
  2713. }
  2714. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  2715. display: none;
  2716. }
  2717. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  2718. cursor: pointer;
  2719. }
  2720. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  2721. font-family: "Source Code Pro";
  2722. font-weight: 500;
  2723. color: rgb(9, 57, 139);
  2724. font-size: 1.3rem;
  2725. }
  2726. .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 {
  2727. display: inline-flex;
  2728. 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>');
  2729. float: right;
  2730. }
  2731. .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 {
  2732. display: inline-flex;
  2733. 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>');
  2734. float: right;
  2735. }
  2736. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  2737. display: none;
  2738. }
  2739. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  2740. display: none;
  2741. }
  2742. .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) {
  2743. display: none;
  2744. }
  2745. .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) {
  2746. display: none;
  2747. }
  2748. .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 {
  2749. display: inline-block;
  2750. content: url("../images/pictos/noun_Download_file_307900.svg");
  2751. width: 30px;
  2752. height: 30px;
  2753. padding-right: 0.8rem;
  2754. }
  2755. .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 {
  2756. display: inline-flex;
  2757. align-items: center;
  2758. color: rgb(0, 0, 0);
  2759. font-weight: 800;
  2760. }
  2761. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  2762. display: none;
  2763. }
  2764. .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 {
  2765. display: inline-block;
  2766. content: url("../images/pictos/external_link.png");
  2767. width: 30px;
  2768. height: 30px;
  2769. padding-right: 0.8rem;
  2770. }
  2771. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  2772. display: flex;
  2773. flex-direction: row;
  2774. justify-content: left;
  2775. align-items: center;
  2776. color: rgb(0, 0, 0);
  2777. font-weight: 800;
  2778. }
  2779. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  2780. display: none;
  2781. }
  2782. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  2783. display: none;
  2784. margin-top: 0.5rem;
  2785. }
  2786. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  2787. color: rgb(0, 0, 0);
  2788. text-decoration: underline;
  2789. font-weight: 800;
  2790. }
  2791. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  2792. display: block;
  2793. }
  2794. .node-id-6 {
  2795. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2796. background-repeat: no-repeat;
  2797. background-position-y: 7rem;
  2798. max-width: 100vw;
  2799. background-size: contain;
  2800. }
  2801. .node-id-6 .layout__region--top {
  2802. padding-bottom: 3rem;
  2803. height: 30vh;
  2804. }
  2805. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2806. display: none;
  2807. height: inherit;
  2808. }
  2809. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2810. font-family: "Source Code Pro";
  2811. font-size: 2rem;
  2812. font-weight: 800;
  2813. color: rgb(255, 255, 255);
  2814. background-color: rgb(0, 158, 227);
  2815. text-transform: uppercase;
  2816. }
  2817. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2818. color: rgb(0, 0, 0);
  2819. text-decoration: underline;
  2820. }
  2821. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2822. display: none;
  2823. }
  2824. .path-taxonomy #block-contenudelapageprincipale span {
  2825. display: none;
  2826. }
  2827. .path-taxonomy .view-taxonomy-term .view-header {
  2828. width: 80%;
  2829. margin: auto;
  2830. }
  2831. .path-taxonomy .view-taxonomy-term .view-content {
  2832. width: 80%;
  2833. margin: auto;
  2834. }
  2835. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper {
  2836. display: flex;
  2837. flex-direction: row;
  2838. flex-wrap: wrap;
  2839. }
  2840. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2841. width: 30%;
  2842. }
  2843. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2844. display: flex;
  2845. width: 25%;
  2846. max-width: fit-content;
  2847. }
  2848. .page-node-type-ressource .layout-container {
  2849. overflow: visible;
  2850. }
  2851. @media (max-width: 810px) {
  2852. .page-node-type-ressource .layout-container {
  2853. overflow: hidden;
  2854. }
  2855. }
  2856. .page-node-type-ressource .layout__region--top {
  2857. padding-top: 4rem;
  2858. }
  2859. @media (max-width: 550px) {
  2860. .page-node-type-ressource .layout__region--top {
  2861. padding-top: 0rem;
  2862. max-width: 100%;
  2863. }
  2864. }
  2865. .page-node-type-ressource .layout__region--top .block-region-top {
  2866. display: flex;
  2867. flex-direction: column;
  2868. }
  2869. @media screen and (min-width: 1100px) {
  2870. .page-node-type-ressource .layout__region--top .block-region-top {
  2871. display: grid;
  2872. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2873. gap: 0.5rem;
  2874. }
  2875. }
  2876. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2877. width: fit-content;
  2878. padding-left: 25%;
  2879. }
  2880. @media (min-width: 1100px) {
  2881. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2882. grid-column: 1;
  2883. grid-row: 1/span 7;
  2884. align-self: start;
  2885. justify-self: end;
  2886. margin-left: 2rem;
  2887. }
  2888. }
  2889. @media (max-width: 1100px) {
  2890. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2891. padding-left: 13%;
  2892. }
  2893. }
  2894. @media (max-width: 550px) {
  2895. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2896. width: 100vw;
  2897. padding: 0;
  2898. width: 100%;
  2899. height: auto;
  2900. }
  2901. }
  2902. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2903. border: solid 1px gray;
  2904. max-width: 100%;
  2905. width: 100%;
  2906. height: auto;
  2907. }
  2908. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2909. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2910. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2911. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2912. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2913. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2914. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2915. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2916. width: 100%;
  2917. margin-left: 13%;
  2918. }
  2919. @media (max-width: 1099px) {
  2920. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2921. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2922. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2923. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2924. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2925. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2926. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2927. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2928. width: auto;
  2929. margin-right: 15%;
  2930. }
  2931. }
  2932. @media screen and (min-width: 1100px) {
  2933. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2934. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2935. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2936. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2937. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2938. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2939. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2940. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2941. width: auto;
  2942. margin-left: 2rem;
  2943. margin-right: 15%;
  2944. grid-column: 2/4;
  2945. align-self: start; /* S'assurer qu'il commence en haut */
  2946. height: fit-content;
  2947. justify-self: start;
  2948. }
  2949. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2950. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2951. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2952. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2953. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2954. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2955. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2956. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2957. margin: 0;
  2958. }
  2959. }
  2960. @media (max-width: 810px) {
  2961. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2962. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2963. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2964. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2965. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2966. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2967. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2968. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2969. margin-left: 9%;
  2970. margin-right: 9%;
  2971. }
  2972. }
  2973. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2974. width: 100%;
  2975. font-family: "Source Code Pro";
  2976. font-size: 1.5rem;
  2977. font-weight: 800;
  2978. color: rgb(255, 255, 255);
  2979. background-color: rgb(0, 158, 227);
  2980. text-transform: uppercase;
  2981. padding-left: 13%;
  2982. padding-top: 1rem;
  2983. padding-bottom: 0.5rem;
  2984. vertical-align: middle;
  2985. }
  2986. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2987. color: rgb(0, 158, 227);
  2988. text-transform: uppercase;
  2989. font-weight: 900;
  2990. }
  2991. @media (max-width: 1099px) {
  2992. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2993. margin-top: 2rem;
  2994. }
  2995. }
  2996. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2997. font-size: 2.5rem;
  2998. font-weight: 600;
  2999. line-height: 1.2;
  3000. }
  3001. @media (max-width: 550px) {
  3002. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  3003. font-size: 1.5rem;
  3004. width: 80vw;
  3005. }
  3006. }
  3007. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  3008. font-weight: 600;
  3009. font-size: 2rem;
  3010. }
  3011. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  3012. font-weight: 600;
  3013. font-size: 2rem;
  3014. }
  3015. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  3016. font-weight: 600;
  3017. font-size: 2rem;
  3018. margin-bottom: 0;
  3019. }
  3020. @media (max-width: 550px) {
  3021. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  3022. font-size: 1rem;
  3023. }
  3024. }
  3025. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  3026. margin-bottom: 0;
  3027. }
  3028. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  3029. font-size: 1.5rem;
  3030. font-weight: 800;
  3031. line-height: 0.8;
  3032. margin-top: 1rem;
  3033. }
  3034. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  3035. margin: 0;
  3036. }
  3037. @media (max-width: 550px) {
  3038. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  3039. margin-top: 0rem;
  3040. font-size: 1rem;
  3041. line-height: 1;
  3042. }
  3043. }
  3044. @media (max-width: 550px) {
  3045. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  3046. margin-top: 0.5rem;
  3047. }
  3048. }
  3049. @media (max-width: 550px) {
  3050. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  3051. margin-top: 0.5rem;
  3052. }
  3053. }
  3054. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  3055. display: inline-flex;
  3056. margin-top: 0.5rem;
  3057. }
  3058. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  3059. background: rgb(9, 57, 139);
  3060. margin-right: 1rem;
  3061. padding-left: 0.3rem;
  3062. padding-right: 0.3rem;
  3063. color: rgb(255, 255, 255);
  3064. font-weight: 800;
  3065. vertical-align: middle;
  3066. width: max-content;
  3067. }
  3068. @media (max-width: 810px) {
  3069. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  3070. display: flex;
  3071. flex-direction: row;
  3072. flex-wrap: wrap;
  3073. }
  3074. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  3075. margin-bottom: 0.5rem;
  3076. }
  3077. }
  3078. .page-node-type-ressource .layout__region--top {
  3079. /* Hide empty blocks */
  3080. }
  3081. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  3082. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  3083. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  3084. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  3085. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  3086. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  3087. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  3088. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  3089. display: none;
  3090. }
  3091. .page-node-type-ressource .layout__region--first {
  3092. margin-top: 3rem;
  3093. position: relative;
  3094. }
  3095. @media (max-width: 810px) {
  3096. .page-node-type-ressource .layout__region--first {
  3097. display: none;
  3098. }
  3099. }
  3100. .page-node-type-ressource .layout__region--first .block-region-first {
  3101. display: flex;
  3102. justify-content: flex-end;
  3103. position: sticky;
  3104. top: 13rem;
  3105. }
  3106. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  3107. display: flex;
  3108. width: 50%;
  3109. background-color: rgb(255, 255, 255);
  3110. padding-right: 2rem;
  3111. }
  3112. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  3113. display: flex;
  3114. font-size: 1rem;
  3115. font-weight: 1000;
  3116. color: rgb(9, 57, 139);
  3117. border-bottom: 1px solid rgb(0, 158, 227);
  3118. padding-bottom: 0.5rem;
  3119. padding-right: 1rem;
  3120. }
  3121. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  3122. text-decoration: underline;
  3123. }
  3124. .page-node-type-ressource .layout__region--second {
  3125. margin-top: 3rem;
  3126. }
  3127. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  3128. background-color: rgb(255, 255, 255);
  3129. }
  3130. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  3131. font-size: 1.5rem;
  3132. font-weight: 1000;
  3133. font-family: "Source Code Pro";
  3134. color: rgb(9, 57, 139);
  3135. text-transform: uppercase;
  3136. }
  3137. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  3138. text-transform: none !important;
  3139. }
  3140. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  3141. width: 100%;
  3142. height: auto;
  3143. }
  3144. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3145. padding-right: 2rem;
  3146. }
  3147. @media (max-width: 550px) {
  3148. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  3149. padding-right: 0;
  3150. }
  3151. }
  3152. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  3153. margin-top: 0;
  3154. }
  3155. @media (max-width: 810px) {
  3156. .page-node-type-ressource .layout__region--second {
  3157. flex: 0 1 80%;
  3158. margin: auto;
  3159. margin-top: 2rem;
  3160. }
  3161. }
  3162. .page-node-type-ressource .layout__region--third {
  3163. margin-top: 3rem;
  3164. }
  3165. @media (max-width: 810px) {
  3166. .page-node-type-ressource .layout__region--third {
  3167. flex: 0 1 80%;
  3168. margin-left: 10%;
  3169. }
  3170. }
  3171. .page-node-type-ressource .layout__region--third .block-region-third {
  3172. display: flex;
  3173. flex-direction: column;
  3174. width: 70%;
  3175. }
  3176. @media (max-width: 810px) {
  3177. .page-node-type-ressource .layout__region--third .block-region-third {
  3178. width: 100%;
  3179. }
  3180. }
  3181. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3182. height: fit-content;
  3183. border: 2px solid rgb(0, 158, 227);
  3184. background-color: rgb(255, 255, 255);
  3185. order: 2;
  3186. }
  3187. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  3188. min-height: 4rem;
  3189. background: rgb(255, 255, 255);
  3190. color: rgb(0, 158, 227);
  3191. padding-left: 1rem;
  3192. padding-top: 1rem;
  3193. padding: 1rem;
  3194. }
  3195. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3196. display: none;
  3197. }
  3198. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3199. height: inherit;
  3200. margin: auto;
  3201. width: 100%;
  3202. }
  3203. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3204. content: url("../images/pictos/download.png");
  3205. min-width: 30px;
  3206. height: auto;
  3207. padding-right: 1rem;
  3208. margin-right: 1rem;
  3209. }
  3210. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3211. hyphens: auto;
  3212. display: inline-flex;
  3213. align-items: center;
  3214. color: rgb(0, 158, 227);
  3215. font-weight: 800;
  3216. max-width: 100%;
  3217. }
  3218. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3219. order: 3;
  3220. }
  3221. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3222. margin: auto;
  3223. height: fit-content;
  3224. border: 2px solid rgb(0, 158, 227);
  3225. min-height: 4rem;
  3226. background: rgb(255, 255, 255);
  3227. color: rgb(0, 158, 227);
  3228. padding-left: 1rem;
  3229. padding-top: 1rem;
  3230. margin-bottom: 1rem;
  3231. padding: 1rem;
  3232. }
  3233. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3234. display: inline-flex;
  3235. align-items: center;
  3236. color: rgb(0, 158, 227);
  3237. font-weight: 800;
  3238. }
  3239. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3240. content: url("../images/pictos/external_link.png");
  3241. min-width: 30px;
  3242. height: auto;
  3243. padding-right: 1rem;
  3244. margin-right: 1rem;
  3245. }
  3246. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3247. display: none;
  3248. }
  3249. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3250. order: 4;
  3251. margin-top: 3rem;
  3252. }
  3253. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3254. font-size: 0.8rem;
  3255. color: rgb(0, 0, 0);
  3256. font-weight: 900;
  3257. margin-bottom: 1rem;
  3258. }
  3259. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3260. border: 2px solid rgb(0, 158, 227);
  3261. padding: 1rem;
  3262. height: fit-content;
  3263. margin-bottom: 1rem;
  3264. background-color: rgb(255, 255, 255);
  3265. display: flex;
  3266. flex-direction: column;
  3267. }
  3268. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  3269. display: flex;
  3270. flex-direction: column;
  3271. }
  3272. .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 {
  3273. order: 2;
  3274. text-transform: uppercase;
  3275. color: rgb(0, 158, 227);
  3276. font-weight: 900;
  3277. font-size: 0.8rem;
  3278. }
  3279. .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 {
  3280. order: 3;
  3281. }
  3282. .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 {
  3283. margin: 0;
  3284. }
  3285. .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 {
  3286. color: rgb(0, 0, 0);
  3287. font-size: 1rem;
  3288. font-weight: 900;
  3289. font-style: italic;
  3290. }
  3291. .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 {
  3292. order: 4;
  3293. }
  3294. .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- {
  3295. order: 5;
  3296. font-weight: 800;
  3297. }
  3298. .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 {
  3299. margin: 0;
  3300. }
  3301. .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 {
  3302. display: none;
  3303. }
  3304. .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 {
  3305. margin: 0;
  3306. }
  3307. .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 {
  3308. display: none;
  3309. }
  3310. .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 {
  3311. order: 1;
  3312. width: 25%;
  3313. }
  3314. .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 {
  3315. width: 100%;
  3316. height: auto;
  3317. }
  3318. .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 {
  3319. order: 6;
  3320. }
  3321. .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 {
  3322. display: none;
  3323. }
  3324. .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 {
  3325. order: 7;
  3326. display: flex;
  3327. margin-top: 0.8rem;
  3328. flex-direction: row;
  3329. flex-wrap: wrap;
  3330. }
  3331. .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 {
  3332. display: none;
  3333. }
  3334. .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 {
  3335. display: flex;
  3336. flex-direction: row;
  3337. flex-wrap: wrap;
  3338. }
  3339. .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 {
  3340. padding-bottom: 0.5rem;
  3341. margin-right: 0.5rem;
  3342. padding-right: 0.3rem;
  3343. font-size: 0.8rem;
  3344. width: max-content;
  3345. }
  3346. .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 {
  3347. background: rgb(9, 57, 139);
  3348. color: rgb(255, 255, 255);
  3349. font-weight: 800;
  3350. vertical-align: super;
  3351. padding-left: 0.1rem;
  3352. padding-right: 0.1rem;
  3353. display: inline-flex;
  3354. pointer-events: none !important;
  3355. cursor: default;
  3356. }
  3357. .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 {
  3358. display: none;
  3359. }
  3360. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images {
  3361. order: 1;
  3362. width: 100%;
  3363. }
  3364. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  3365. display: none;
  3366. }
  3367. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images img {
  3368. width: 100%;
  3369. height: auto;
  3370. }
  3371. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3372. order: 1;
  3373. }
  3374. @media (max-width: 479px) {
  3375. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3376. margin-top: 2rem;
  3377. }
  3378. }
  3379. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  3380. display: none;
  3381. font-size: 0.8rem;
  3382. color: rgb(0, 0, 0);
  3383. font-weight: 900;
  3384. }
  3385. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  3386. display: flex;
  3387. flex-direction: column;
  3388. border-bottom: 1px solid rgb(0, 0, 0);
  3389. padding: 1rem;
  3390. height: fit-content;
  3391. margin-bottom: 3rem;
  3392. background-color: rgb(255, 255, 255);
  3393. }
  3394. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  3395. display: none;
  3396. }
  3397. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  3398. content: url("../images/pictos/picto_lieu_blue.svg");
  3399. display: inline-block;
  3400. color: rgb(9, 57, 139);
  3401. margin-right: 1rem;
  3402. }
  3403. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  3404. display: flex;
  3405. flex-direction: row;
  3406. margin-bottom: 1.5rem;
  3407. }
  3408. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  3409. content: "Voir le projet";
  3410. display: block;
  3411. color: rgb(9, 57, 139);
  3412. }
  3413. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  3414. color: rgb(9, 57, 139);
  3415. font-size: 1rem;
  3416. font-weight: 900;
  3417. }
  3418. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  3419. padding-top: 3rem;
  3420. padding-bottom: 3rem;
  3421. vertical-align: middle;
  3422. color: rgb(255, 255, 255);
  3423. }
  3424. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3425. font-family: "Source Code Pro";
  3426. font-size: 2rem;
  3427. font-weight: 800;
  3428. color: rgb(255, 255, 255);
  3429. background-color: rgb(0, 158, 227);
  3430. text-transform: uppercase;
  3431. width: fit-content;
  3432. margin-left: 10%;
  3433. margin-top: 8rem;
  3434. }
  3435. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3436. display: grid;
  3437. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  3438. }
  3439. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3440. grid-column: 2/span 3;
  3441. margin-top: 4rem;
  3442. }
  3443. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  3444. margin: auto;
  3445. background: rgb(255, 255, 255);
  3446. }
  3447. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  3448. margin: 0;
  3449. }
  3450. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  3451. grid-column: 5;
  3452. margin-top: 4rem;
  3453. background-color: rgb(0, 158, 227);
  3454. height: fit-content;
  3455. min-height: fit-content;
  3456. width: 200px;
  3457. margin-left: 2rem;
  3458. aspect-ratio: 1/1;
  3459. display: flex;
  3460. }
  3461. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  3462. display: flex;
  3463. flex-direction: column;
  3464. text-align: center;
  3465. margin: auto;
  3466. padding: 1rem;
  3467. }
  3468. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  3469. display: block;
  3470. font-weight: 800;
  3471. color: rgb(255, 255, 255);
  3472. font-size: 1.3rem;
  3473. }
  3474. .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 {
  3475. margin-left: 80%;
  3476. padding-top: 0.5rem;
  3477. display: block;
  3478. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3479. }
  3480. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3481. grid-column: 2/span 3;
  3482. }
  3483. @media (max-width: 810px) {
  3484. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3485. grid-column: 2/span 4;
  3486. }
  3487. }
  3488. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  3489. margin: auto;
  3490. }
  3491. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  3492. display: none;
  3493. background: rgb(255, 255, 255);
  3494. }
  3495. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3496. display: flex;
  3497. flex-wrap: wrap;
  3498. margin-top: 3rem;
  3499. }
  3500. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3501. width: 50%;
  3502. }
  3503. .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 {
  3504. display: flex;
  3505. justify-content: space-between;
  3506. padding: 1rem;
  3507. height: fit-content;
  3508. margin-bottom: 1rem;
  3509. background-color: rgb(255, 255, 255);
  3510. margin-right: 1rem;
  3511. }
  3512. .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 {
  3513. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3514. align-self: flex-end;
  3515. }
  3516. .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 {
  3517. display: grid;
  3518. grid-template-columns: 1fr 1fr 1fr;
  3519. grid-template-rows: repeat(6 auto);
  3520. }
  3521. .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 {
  3522. grid-column: 1/span 3;
  3523. grid-row: 1;
  3524. margin-bottom: 1rem;
  3525. text-transform: uppercase;
  3526. font-weight: 900;
  3527. font-size: 0.8rem;
  3528. }
  3529. .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 {
  3530. grid-column: 1;
  3531. grid-row: 2/span 6;
  3532. margin-right: 1rem;
  3533. max-height: 170px;
  3534. }
  3535. .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 {
  3536. max-width: 100%;
  3537. object-fit: cover;
  3538. height: auto;
  3539. max-height: 95%;
  3540. }
  3541. .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 {
  3542. grid-column: 2;
  3543. grid-row: 2;
  3544. padding-right: 0.5rem;
  3545. text-transform: uppercase;
  3546. font-weight: 800;
  3547. font-size: 1rem;
  3548. }
  3549. .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 {
  3550. grid-column: 3;
  3551. grid-row: 2;
  3552. text-transform: uppercase;
  3553. font-weight: 800;
  3554. font-size: 1rem;
  3555. }
  3556. .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 {
  3557. grid-column: 2/span 3;
  3558. grid-row: 3;
  3559. text-transform: uppercase;
  3560. font-weight: 800;
  3561. font-size: 0.8rem;
  3562. }
  3563. .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 {
  3564. grid-column: 2/span 3;
  3565. grid-row: 4;
  3566. font-size: 1.3rem;
  3567. }
  3568. .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 {
  3569. color: rgb(0, 0, 0);
  3570. }
  3571. .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 {
  3572. grid-column: 2/span 3;
  3573. grid-row: 5;
  3574. text-transform: uppercase;
  3575. font-weight: 800;
  3576. font-size: 0.8rem;
  3577. }
  3578. .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 {
  3579. display: inline-flex;
  3580. grid-column: 2/span 3;
  3581. grid-row: 6;
  3582. font-size: 0.8rem;
  3583. padding-top: 1rem;
  3584. justify-content: flex-start;
  3585. }
  3586. .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 {
  3587. justify-self: flex-start;
  3588. }
  3589. .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 {
  3590. content: "proposé le";
  3591. hyphens: none;
  3592. padding-right: 0.5rem;
  3593. }
  3594. .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 {
  3595. border: 2px solid rgb(255, 0, 15);
  3596. }
  3597. .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 {
  3598. border: 2px solid rgb(160, 26, 39);
  3599. }
  3600. .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 {
  3601. border: 2px solid rgb(199, 215, 74);
  3602. }
  3603. .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 {
  3604. border: 2px solid rgb(255, 100, 83);
  3605. }
  3606. .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 {
  3607. border: 2px solid rgb(111, 109, 125);
  3608. }
  3609. @media (max-width: 810px) {
  3610. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3611. flex-direction: column;
  3612. }
  3613. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3614. width: 100%;
  3615. }
  3616. }
  3617. @media (max-width: 810px) {
  3618. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3619. display: flex;
  3620. flex-direction: column;
  3621. padding: 2rem;
  3622. }
  3623. }
  3624. .page-node-type-offre-de-service {
  3625. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  3626. background-repeat: no-repeat;
  3627. background-position-y: 7rem;
  3628. max-width: 100vw;
  3629. background-size: contain;
  3630. }
  3631. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3632. margin-top: 2rem;
  3633. margin-left: 13%;
  3634. display: grid;
  3635. grid-template-columns: auto auto 1fr;
  3636. grid-template-rows: repeat(6 auto);
  3637. }
  3638. @media (max-width: 810px) {
  3639. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3640. margin-left: 8%;
  3641. }
  3642. }
  3643. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3644. width: fit-content;
  3645. grid-column: 1;
  3646. grid-row: 1/span 6;
  3647. width: 250px;
  3648. height: 250px;
  3649. margin-right: 2rem;
  3650. }
  3651. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  3652. width: 100%;
  3653. height: auto;
  3654. }
  3655. @media (max-width: 810px) {
  3656. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3657. width: 90px;
  3658. height: 90px;
  3659. }
  3660. }
  3661. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  3662. background: rgb(255, 255, 255);
  3663. width: fit-content;
  3664. grid-column: 2/span 3;
  3665. grid-row: 1;
  3666. text-transform: uppercase;
  3667. font-weight: 900;
  3668. font-size: 0.8rem;
  3669. }
  3670. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  3671. color: rgb(255, 0, 15);
  3672. }
  3673. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  3674. color: rgb(160, 26, 39);
  3675. }
  3676. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  3677. color: rgb(199, 215, 74);
  3678. }
  3679. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  3680. color: rgb(255, 100, 83);
  3681. }
  3682. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  3683. color: rgb(111, 109, 125);
  3684. }
  3685. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  3686. background: rgb(255, 255, 255);
  3687. width: fit-content;
  3688. grid-column: 2;
  3689. grid-row: 2;
  3690. padding-right: 0.5rem;
  3691. text-transform: uppercase;
  3692. font-weight: 900;
  3693. font-size: 1.5rem;
  3694. }
  3695. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  3696. background: rgb(255, 255, 255);
  3697. width: fit-content;
  3698. grid-column: 3;
  3699. grid-row: 2;
  3700. text-transform: uppercase;
  3701. font-weight: 900;
  3702. font-size: 1.5rem;
  3703. }
  3704. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  3705. background: rgb(255, 255, 255);
  3706. width: fit-content;
  3707. grid-column: 2/span 3;
  3708. grid-row: 3;
  3709. text-transform: uppercase;
  3710. font-weight: 800;
  3711. font-size: 1.2rem;
  3712. margin-top: 0.5rem;
  3713. }
  3714. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  3715. 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>');
  3716. }
  3717. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3718. background: rgb(255, 255, 255);
  3719. width: fit-content;
  3720. grid-column: 2/span 3;
  3721. grid-row: 4;
  3722. font-size: 2.5rem;
  3723. font-family: "Source Code Pro";
  3724. width: 70%;
  3725. }
  3726. @media (max-width: 810px) {
  3727. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3728. font-size: 1.2rem;
  3729. }
  3730. }
  3731. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  3732. color: rgb(0, 0, 0);
  3733. }
  3734. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  3735. background: rgb(255, 255, 255);
  3736. width: fit-content;
  3737. grid-column: 2/span 3;
  3738. grid-row: 5;
  3739. text-transform: uppercase;
  3740. font-weight: 800;
  3741. font-size: 0.8rem;
  3742. margin-top: 1.5rem;
  3743. }
  3744. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3745. background: rgb(255, 255, 255);
  3746. width: fit-content;
  3747. grid-column: 2/span 3;
  3748. grid-row: 6;
  3749. font-size: 0.8rem;
  3750. padding-top: 1rem;
  3751. }
  3752. .page-node-type-offre-de-service .layout__region--second {
  3753. margin-top: 3rem;
  3754. margin-left: 20%;
  3755. margin-right: 2rem;
  3756. }
  3757. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3758. background: rgb(255, 255, 255);
  3759. }
  3760. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3761. margin: 0;
  3762. }
  3763. @media (max-width: 810px) {
  3764. .page-node-type-offre-de-service .layout__region--second {
  3765. margin-left: 10%;
  3766. }
  3767. }
  3768. .page-node-type-offre-de-service .layout__region--third {
  3769. margin-top: 3rem;
  3770. }
  3771. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3772. display: flex;
  3773. flex-direction: column;
  3774. width: 70%;
  3775. }
  3776. @media (max-width: 810px) {
  3777. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3778. margin: auto;
  3779. }
  3780. }
  3781. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3782. background: rgb(0, 158, 227);
  3783. color: rgb(255, 255, 255);
  3784. text-transform: uppercase;
  3785. font-weight: 900;
  3786. font-size: 0.8rem;
  3787. padding-top: 1rem;
  3788. padding-left: 1rem;
  3789. padding-right: 1rem;
  3790. }
  3791. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3792. background: rgb(0, 158, 227);
  3793. color: rgb(255, 255, 255);
  3794. font-weight: 600;
  3795. padding-left: 1rem;
  3796. padding-right: 1rem;
  3797. padding-bottom: 1rem;
  3798. }
  3799. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3800. color: white;
  3801. hyphens: auto;
  3802. }
  3803. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3804. display: none;
  3805. }
  3806. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3807. display: none;
  3808. background: rgb(0, 158, 227);
  3809. color: rgb(255, 255, 255);
  3810. font-weight: 600;
  3811. padding-left: 1rem;
  3812. padding-right: 1rem;
  3813. padding-bottom: 1rem;
  3814. }
  3815. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3816. height: fit-content;
  3817. border: 2px solid rgb(0, 158, 227);
  3818. background-color: rgb(255, 255, 255);
  3819. margin-top: 1rem;
  3820. }
  3821. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3822. min-height: 4rem;
  3823. background: rgb(255, 255, 255);
  3824. color: rgb(0, 158, 227);
  3825. padding-left: 1rem;
  3826. padding-top: 1rem;
  3827. margin-bottom: 1rem;
  3828. }
  3829. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3830. display: none;
  3831. }
  3832. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3833. height: inherit;
  3834. margin: auto;
  3835. }
  3836. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3837. content: url("../images/pictos/noun_Download_file_307900.svg");
  3838. min-width: 50px;
  3839. height: auto;
  3840. padding-right: 1rem;
  3841. }
  3842. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3843. hyphens: auto;
  3844. display: inline-flex;
  3845. align-items: center;
  3846. color: rgb(0, 158, 227);
  3847. font-weight: 800;
  3848. }
  3849. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3850. margin-top: 1rem;
  3851. }
  3852. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3853. margin: auto;
  3854. height: fit-content;
  3855. border: 2px solid rgb(0, 158, 227);
  3856. min-height: 4rem;
  3857. background: rgb(255, 255, 255);
  3858. color: rgb(0, 158, 227);
  3859. padding-left: 1rem;
  3860. padding-top: 1rem;
  3861. margin-bottom: 1rem;
  3862. }
  3863. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3864. display: inline-flex;
  3865. align-items: center;
  3866. color: rgb(0, 158, 227);
  3867. font-weight: 800;
  3868. }
  3869. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3870. content: url("../images/pictos/external_link.png");
  3871. min-width: 50px;
  3872. height: auto;
  3873. padding-right: 1rem;
  3874. }
  3875. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3876. display: none;
  3877. }
  3878. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3879. margin-top: 3rem;
  3880. }
  3881. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3882. font-size: 0.8rem;
  3883. color: rgb(0, 0, 0);
  3884. font-weight: 900;
  3885. margin-bottom: 1rem;
  3886. }
  3887. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3888. display: flex;
  3889. flex-direction: column;
  3890. border: 2px solid rgb(0, 158, 227);
  3891. padding: 1rem;
  3892. height: fit-content;
  3893. margin-bottom: 1rem;
  3894. background-color: rgb(255, 255, 255);
  3895. }
  3896. .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 {
  3897. border-top: 1px solid rgb(0, 158, 227);
  3898. padding-top: 1rem;
  3899. }
  3900. .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 {
  3901. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3902. align-self: flex-end;
  3903. }
  3904. .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 {
  3905. margin: 0;
  3906. }
  3907. .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 {
  3908. color: rgb(0, 0, 0);
  3909. font-size: 1.4rem;
  3910. font-weight: 600;
  3911. }
  3912. .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- {
  3913. font-weight: 800;
  3914. }
  3915. .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 {
  3916. margin: 0;
  3917. }
  3918. .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 {
  3919. display: none;
  3920. }
  3921. .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 {
  3922. margin: 0;
  3923. }
  3924. .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 {
  3925. display: none;
  3926. }
  3927. .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 {
  3928. display: none;
  3929. width: 50%;
  3930. }
  3931. .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 {
  3932. width: 100%;
  3933. height: auto;
  3934. }
  3935. .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 {
  3936. display: inline-flex;
  3937. margin-top: 2rem;
  3938. background: rgb(9, 57, 139);
  3939. margin-right: 1rem;
  3940. padding-left: 0.3rem;
  3941. padding-right: 0.3rem;
  3942. color: rgb(255, 255, 255);
  3943. font-weight: 800;
  3944. vertical-align: middle;
  3945. }
  3946. .path-ressources.annuairederecherche .layout-content {
  3947. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3948. background-repeat: no-repeat;
  3949. background-position-y: 7rem;
  3950. max-width: 100vw;
  3951. background-size: cover;
  3952. }
  3953. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3954. padding-top: 8rem;
  3955. }
  3956. @media (max-width: 479px) {
  3957. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3958. padding-top: 5rem;
  3959. padding-left: 5rem;
  3960. }
  3961. }
  3962. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3963. padding-top: 3rem;
  3964. padding-bottom: 3rem;
  3965. vertical-align: middle;
  3966. color: rgb(255, 255, 255);
  3967. }
  3968. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3969. display: inline;
  3970. font-family: "Source Code Pro";
  3971. font-size: 2rem;
  3972. font-weight: 800;
  3973. color: rgb(255, 255, 255);
  3974. background-color: rgb(0, 158, 227);
  3975. text-transform: uppercase;
  3976. width: fit-content;
  3977. margin-left: 10%;
  3978. margin-top: 8rem;
  3979. }
  3980. @media (max-width: 479px) {
  3981. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3982. margin-right: 37%;
  3983. margin-bottom: 2rem;
  3984. margin-left: 0;
  3985. }
  3986. }
  3987. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3988. padding-top: 3rem;
  3989. flex: 0 1 50%;
  3990. margin-left: 20%;
  3991. }
  3992. @media (max-width: 479px) {
  3993. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3994. flex: 0 1 80%;
  3995. margin: 0;
  3996. }
  3997. }
  3998. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  3999. background-color: rgb(255, 255, 255);
  4000. margin-bottom: 4rem;
  4001. }
  4002. .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_ {
  4003. margin-bottom: 3rem;
  4004. }
  4005. .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 {
  4006. grid-column: 1;
  4007. grid-row: 1/span 3;
  4008. margin-right: 1rem;
  4009. max-height: 8rem;
  4010. }
  4011. .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 {
  4012. height: 8rem;
  4013. width: 8rem;
  4014. }
  4015. .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 {
  4016. height: 100%;
  4017. width: 100%;
  4018. object-fit: contain;
  4019. }
  4020. .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 {
  4021. grid-column: 2;
  4022. font-weight: 800;
  4023. background-color: rgb(255, 255, 255);
  4024. }
  4025. .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 {
  4026. background-color: rgb(255, 255, 255);
  4027. grid-column: 2;
  4028. }
  4029. .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 {
  4030. margin: 0;
  4031. }
  4032. .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 {
  4033. background-color: rgb(255, 255, 255);
  4034. grid-column: 2;
  4035. }
  4036. .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 {
  4037. color: rgb(0, 0, 0);
  4038. text-decoration: underline;
  4039. }
  4040. .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 {
  4041. display: none;
  4042. }
  4043. .path-webform .region-content [aria-label="Message d'avertissement"] {
  4044. display: none;
  4045. }
  4046. .path-webform .region-content .block-system-main-block h2 {
  4047. display: none;
  4048. }
  4049. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  4050. display: flex;
  4051. flex-direction: row;
  4052. flex-wrap: wrap;
  4053. flex-basis: auto;
  4054. justify-content: flex-start;
  4055. }
  4056. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  4057. width: 100%;
  4058. font-family: "Source Code Pro";
  4059. font-size: 1.5rem;
  4060. font-weight: 800;
  4061. color: rgb(255, 255, 255);
  4062. background-color: rgb(0, 158, 227);
  4063. text-transform: uppercase;
  4064. padding-left: 13%;
  4065. padding-top: 2rem;
  4066. padding-bottom: 2rem;
  4067. vertical-align: middle;
  4068. }
  4069. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  4070. width: 100%;
  4071. font-family: "Source Code Pro";
  4072. font-size: 2rem;
  4073. font-weight: 800;
  4074. color: rgb(255, 255, 255);
  4075. background-color: rgb(0, 158, 227);
  4076. text-transform: uppercase;
  4077. width: fit-content;
  4078. margin-left: 13%;
  4079. margin-top: 8rem;
  4080. }
  4081. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  4082. margin-top: 10vh;
  4083. margin-left: 13%;
  4084. margin-right: 20%;
  4085. width: 60%;
  4086. }
  4087. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  4088. margin-left: 13%;
  4089. margin-right: 20%;
  4090. width: 60%;
  4091. display: flex;
  4092. flex-direction: row;
  4093. flex-wrap: wrap;
  4094. margin-top: 2rem;
  4095. }
  4096. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  4097. content: "*";
  4098. color: red;
  4099. font-size: 2rem;
  4100. padding-left: 0.5rem;
  4101. }
  4102. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  4103. width: 100%;
  4104. }
  4105. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  4106. width: 90%;
  4107. height: 5rem;
  4108. }
  4109. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  4110. margin-left: 13%;
  4111. margin-right: 20%;
  4112. width: 60%;
  4113. display: flex;
  4114. flex-direction: row;
  4115. flex-wrap: wrap;
  4116. margin-top: 2rem;
  4117. }
  4118. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  4119. content: "*";
  4120. color: red;
  4121. font-size: 2rem;
  4122. padding-left: 0.5rem;
  4123. }
  4124. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  4125. width: 100%;
  4126. }
  4127. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  4128. width: 90%;
  4129. }
  4130. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  4131. margin-left: 13%;
  4132. width: 27%;
  4133. display: flex;
  4134. flex-direction: row;
  4135. flex-wrap: wrap;
  4136. margin-top: 2rem;
  4137. }
  4138. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  4139. content: "*";
  4140. color: red;
  4141. font-size: 2rem;
  4142. padding-left: 0.5rem;
  4143. }
  4144. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  4145. width: 100%;
  4146. }
  4147. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  4148. width: 90%;
  4149. }
  4150. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  4151. margin-right: 20%;
  4152. width: 27%;
  4153. display: flex;
  4154. flex-direction: row;
  4155. flex-wrap: wrap;
  4156. margin-top: 2rem;
  4157. margin-right: 3rem;
  4158. }
  4159. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  4160. width: 100%;
  4161. }
  4162. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  4163. width: 100%;
  4164. }
  4165. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  4166. margin-left: 13%;
  4167. margin-right: 20%;
  4168. width: 60%;
  4169. display: flex;
  4170. flex-direction: row;
  4171. flex-wrap: wrap;
  4172. margin-top: 2rem;
  4173. }
  4174. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  4175. content: "*";
  4176. color: red;
  4177. font-size: 2rem;
  4178. padding-left: 0.5rem;
  4179. }
  4180. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  4181. width: 100%;
  4182. }
  4183. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  4184. width: 90%;
  4185. }
  4186. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  4187. margin-left: 13%;
  4188. margin-right: 20%;
  4189. width: 60%;
  4190. display: flex;
  4191. flex-direction: row;
  4192. flex-wrap: wrap;
  4193. margin-top: 2rem;
  4194. }
  4195. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  4196. content: "*";
  4197. color: red;
  4198. font-size: 2rem;
  4199. padding-left: 0.5rem;
  4200. }
  4201. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  4202. width: 100%;
  4203. }
  4204. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  4205. width: 90%;
  4206. }
  4207. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  4208. margin-left: 13%;
  4209. margin-right: 20%;
  4210. width: 60%;
  4211. display: flex;
  4212. flex-direction: row;
  4213. flex-wrap: wrap;
  4214. margin-top: 2rem;
  4215. }
  4216. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  4217. content: "*";
  4218. color: red;
  4219. font-size: 2rem;
  4220. padding-left: 1rem;
  4221. }
  4222. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  4223. width: 100%;
  4224. }
  4225. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  4226. width: 90%;
  4227. }
  4228. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  4229. width: 100%;
  4230. }
  4231. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  4232. margin-left: 13%;
  4233. margin-right: 20%;
  4234. width: 60%;
  4235. display: flex;
  4236. flex-direction: row;
  4237. flex-wrap: wrap;
  4238. margin-top: 2rem;
  4239. }
  4240. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  4241. width: 100%;
  4242. }
  4243. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  4244. width: 90%;
  4245. height: 3rem;
  4246. }
  4247. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  4248. margin-left: 13%;
  4249. margin-right: 20%;
  4250. width: 60%;
  4251. display: flex;
  4252. flex-direction: row;
  4253. flex-wrap: wrap;
  4254. margin-top: 2rem;
  4255. }
  4256. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  4257. width: 100%;
  4258. }
  4259. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  4260. margin-left: 13%;
  4261. margin-right: 20%;
  4262. width: 60%;
  4263. display: flex;
  4264. flex-direction: row;
  4265. flex-wrap: wrap;
  4266. margin-top: 2rem;
  4267. }
  4268. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet label {
  4269. width: 100%;
  4270. }
  4271. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  4272. width: 90%;
  4273. height: 3rem;
  4274. }
  4275. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  4276. margin-left: 13%;
  4277. width: 28%;
  4278. display: flex;
  4279. flex-direction: row;
  4280. flex-wrap: wrap;
  4281. margin-top: 2rem;
  4282. }
  4283. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  4284. content: "*";
  4285. color: red;
  4286. font-size: 2rem;
  4287. padding-left: 0.5rem;
  4288. }
  4289. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  4290. width: 100%;
  4291. }
  4292. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  4293. width: 90%;
  4294. }
  4295. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  4296. margin-right: 20%;
  4297. width: 29%;
  4298. display: flex;
  4299. flex-direction: row;
  4300. flex-wrap: wrap;
  4301. margin-top: 2rem;
  4302. margin-right: 3rem;
  4303. }
  4304. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  4305. content: "*";
  4306. color: red;
  4307. font-size: 2rem;
  4308. padding-left: 0.5rem;
  4309. }
  4310. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  4311. width: 100%;
  4312. }
  4313. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  4314. width: 90%;
  4315. }
  4316. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  4317. width: 60%;
  4318. }
  4319. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  4320. width: 30%;
  4321. align-self: flex-end;
  4322. background-color: rgb(0, 158, 227);
  4323. text-transform: uppercase;
  4324. color: rgb(255, 255, 255);
  4325. font-size: 1.2rem;
  4326. font-weight: 600;
  4327. float: right;
  4328. margin-top: 1rem;
  4329. border: none;
  4330. }
  4331. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  4332. 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>');
  4333. }
  4334. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  4335. display: flex;
  4336. flex-direction: row;
  4337. flex-wrap: wrap;
  4338. flex-basis: auto;
  4339. justify-content: flex-start;
  4340. }
  4341. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  4342. width: 100%;
  4343. font-family: "Source Code Pro";
  4344. font-size: 1.5rem;
  4345. font-weight: 800;
  4346. color: rgb(255, 255, 255);
  4347. background-color: rgb(0, 158, 227);
  4348. text-transform: uppercase;
  4349. padding-left: 13%;
  4350. padding-top: 2rem;
  4351. padding-bottom: 2rem;
  4352. vertical-align: middle;
  4353. }
  4354. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  4355. width: 100%;
  4356. font-family: "Source Code Pro";
  4357. font-size: 2rem;
  4358. font-weight: 800;
  4359. color: rgb(255, 255, 255);
  4360. background-color: rgb(0, 158, 227);
  4361. text-transform: uppercase;
  4362. width: fit-content;
  4363. margin-left: 13%;
  4364. margin-top: 8rem;
  4365. }
  4366. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  4367. margin-top: 10vh;
  4368. margin-left: 13%;
  4369. margin-right: 20%;
  4370. width: 60%;
  4371. }
  4372. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  4373. margin-left: 13%;
  4374. margin-right: 20%;
  4375. width: 60%;
  4376. display: flex;
  4377. flex-direction: row;
  4378. flex-wrap: wrap;
  4379. margin-top: 2rem;
  4380. }
  4381. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  4382. content: "*";
  4383. color: red;
  4384. font-size: 2rem;
  4385. padding-left: 0.5rem;
  4386. }
  4387. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  4388. width: 100%;
  4389. }
  4390. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  4391. width: 90%;
  4392. height: 5rem;
  4393. }
  4394. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  4395. margin-left: 13%;
  4396. margin-right: 20%;
  4397. width: 60%;
  4398. display: flex;
  4399. flex-direction: row;
  4400. flex-wrap: wrap;
  4401. margin-top: 2rem;
  4402. }
  4403. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  4404. content: "*";
  4405. color: red;
  4406. font-size: 2rem;
  4407. padding-left: 0.5rem;
  4408. }
  4409. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  4410. width: 100%;
  4411. }
  4412. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  4413. width: 90%;
  4414. }
  4415. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  4416. margin-left: 13%;
  4417. margin-right: 20%;
  4418. width: 60%;
  4419. display: flex;
  4420. flex-direction: row;
  4421. flex-wrap: wrap;
  4422. margin-top: 2rem;
  4423. }
  4424. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  4425. content: "*";
  4426. color: red;
  4427. font-size: 2rem;
  4428. padding-left: 0.5rem;
  4429. }
  4430. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  4431. width: 100%;
  4432. }
  4433. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  4434. width: 90%;
  4435. }
  4436. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  4437. width: 100%;
  4438. }
  4439. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  4440. margin-left: 13%;
  4441. margin-right: 20%;
  4442. width: 60%;
  4443. display: flex;
  4444. flex-direction: row;
  4445. flex-wrap: wrap;
  4446. margin-top: 2rem;
  4447. }
  4448. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  4449. width: 100%;
  4450. }
  4451. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  4452. width: 90%;
  4453. }
  4454. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  4455. margin-left: 13%;
  4456. margin-right: 20%;
  4457. width: 60%;
  4458. display: flex;
  4459. flex-direction: row;
  4460. flex-wrap: wrap;
  4461. margin-top: 2rem;
  4462. }
  4463. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  4464. width: 100%;
  4465. }
  4466. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  4467. width: 90%;
  4468. }
  4469. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  4470. margin-left: 13%;
  4471. margin-right: 20%;
  4472. width: 60%;
  4473. display: flex;
  4474. flex-direction: row;
  4475. flex-wrap: wrap;
  4476. margin-top: 2rem;
  4477. }
  4478. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  4479. margin-left: 13%;
  4480. margin-right: 20%;
  4481. width: 60%;
  4482. display: flex;
  4483. flex-direction: row;
  4484. flex-wrap: wrap;
  4485. margin-top: 2rem;
  4486. }
  4487. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  4488. width: 100%;
  4489. }
  4490. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  4491. margin-left: 13%;
  4492. margin-right: 20%;
  4493. width: 60%;
  4494. display: flex;
  4495. flex-direction: row;
  4496. flex-wrap: wrap;
  4497. margin-top: 2rem;
  4498. }
  4499. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  4500. content: "*";
  4501. color: red;
  4502. font-size: 2rem;
  4503. padding-left: 0.5rem;
  4504. }
  4505. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  4506. width: 100%;
  4507. }
  4508. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  4509. width: 90%;
  4510. }
  4511. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  4512. margin-left: 13%;
  4513. display: flex;
  4514. flex-direction: row;
  4515. flex-wrap: wrap;
  4516. margin-top: 2rem;
  4517. width: 28%;
  4518. }
  4519. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  4520. content: "*";
  4521. color: red;
  4522. font-size: 2rem;
  4523. padding-left: 0.5rem;
  4524. }
  4525. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  4526. width: 100%;
  4527. }
  4528. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  4529. width: 90%;
  4530. }
  4531. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  4532. margin-right: 20%;
  4533. width: 29%;
  4534. display: flex;
  4535. flex-direction: row;
  4536. flex-wrap: wrap;
  4537. margin-top: 2rem;
  4538. margin-right: 3rem;
  4539. }
  4540. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  4541. content: "*";
  4542. color: red;
  4543. font-size: 2rem;
  4544. padding-left: 0.5rem;
  4545. }
  4546. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  4547. width: 100%;
  4548. }
  4549. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  4550. width: 90%;
  4551. }
  4552. .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 {
  4553. margin-top: 3rem;
  4554. margin-bottom: 3rem;
  4555. margin-left: 13%;
  4556. margin-right: 20%;
  4557. width: 60%;
  4558. }
  4559. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  4560. width: 60%;
  4561. }
  4562. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  4563. width: 30%;
  4564. align-self: flex-end;
  4565. background-color: rgb(0, 158, 227);
  4566. text-transform: uppercase;
  4567. color: rgb(255, 255, 255);
  4568. font-size: 1.2rem;
  4569. font-weight: 600;
  4570. float: right;
  4571. margin-top: 1rem;
  4572. border: none;
  4573. }
  4574. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  4575. 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>');
  4576. }
  4577. .path-webform .region-content #webform-submission-question-add-form {
  4578. display: flex;
  4579. flex-direction: row;
  4580. flex-wrap: wrap;
  4581. flex-basis: auto;
  4582. justify-content: flex-start;
  4583. margin-top: 10vh;
  4584. width: 60%;
  4585. margin-left: 13%;
  4586. margin-right: 20%;
  4587. }
  4588. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  4589. display: flex;
  4590. flex-direction: row;
  4591. flex-wrap: wrap;
  4592. margin-top: 2rem;
  4593. width: 100%;
  4594. }
  4595. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  4596. content: "*";
  4597. color: red;
  4598. font-size: 2rem;
  4599. padding-left: 0.5rem;
  4600. }
  4601. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  4602. width: 100%;
  4603. }
  4604. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  4605. width: 90%;
  4606. }
  4607. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  4608. display: flex;
  4609. flex-direction: row;
  4610. flex-wrap: wrap;
  4611. margin-top: 2rem;
  4612. width: 100%;
  4613. }
  4614. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  4615. content: "*";
  4616. color: red;
  4617. font-size: 2rem;
  4618. padding-left: 0.9rem;
  4619. }
  4620. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  4621. width: 100%;
  4622. }
  4623. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  4624. width: 90%;
  4625. }
  4626. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  4627. width: 100%;
  4628. height: 5rem;
  4629. }
  4630. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  4631. width: 90%;
  4632. }
  4633. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  4634. width: 30%;
  4635. align-self: flex-end;
  4636. background-color: rgb(0, 158, 227);
  4637. text-transform: uppercase;
  4638. color: rgb(255, 255, 255);
  4639. font-size: 1.2rem;
  4640. font-weight: 600;
  4641. float: right;
  4642. margin-top: 1rem;
  4643. border: none;
  4644. }
  4645. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  4646. 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>');
  4647. }
  4648. .path-projets .region-content #block-contenudelapageprincipale span {
  4649. padding-top: 3rem;
  4650. padding-bottom: 3rem;
  4651. vertical-align: middle;
  4652. }
  4653. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  4654. margin: 0;
  4655. padding-top: 2rem;
  4656. height: 4rem;
  4657. color: rgb(255, 255, 255);
  4658. font-family: "Source Code Pro";
  4659. text-transform: uppercase;
  4660. background: rgb(0, 158, 227);
  4661. padding-left: 13%;
  4662. }
  4663. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4664. display: grid;
  4665. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  4666. }
  4667. @media (max-width: 810px) {
  4668. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4669. display: flex;
  4670. flex-direction: column;
  4671. }
  4672. }
  4673. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  4674. grid-column: 1/span 10;
  4675. }
  4676. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  4677. overflow: scroll;
  4678. height: 210px;
  4679. margin: 17px 10px 17px 20px !important;
  4680. padding-right: 10px;
  4681. }
  4682. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a {
  4683. display: none;
  4684. }
  4685. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:nth-child(1) {
  4686. display: block !important;
  4687. }
  4688. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:last-of-type {
  4689. display: block !important;
  4690. }
  4691. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content #text {
  4692. display: none;
  4693. }
  4694. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4695. grid-column: 3/span 5;
  4696. margin: auto;
  4697. }
  4698. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  4699. display: none;
  4700. }
  4701. .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) {
  4702. font-size: 1.5rem;
  4703. }
  4704. @media (max-width: 810px) {
  4705. .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) {
  4706. font-size: 1.3rem;
  4707. }
  4708. }
  4709. @media (max-width: 810px) {
  4710. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4711. padding: 1rem;
  4712. }
  4713. }
  4714. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4715. grid-column: 8/span 9;
  4716. margin-top: 4rem;
  4717. background-color: rgb(0, 158, 227);
  4718. height: fit-content;
  4719. width: 60%;
  4720. margin-left: 2rem;
  4721. grid-row: 2;
  4722. }
  4723. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  4724. display: block;
  4725. }
  4726. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  4727. display: flex;
  4728. flex-direction: column;
  4729. margin-top: 2rem;
  4730. margin-bottom: 2rem;
  4731. margin-left: 1.5rem;
  4732. margin-right: 1.5rem;
  4733. text-align: center;
  4734. }
  4735. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  4736. font-weight: 800;
  4737. color: rgb(255, 255, 255);
  4738. font-size: 1.3rem;
  4739. }
  4740. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  4741. margin-left: auto;
  4742. padding-top: 1rem;
  4743. display: block;
  4744. content: url("../images/pictos/noun_Arrow_3771902.svg");
  4745. }
  4746. @media (max-width: 810px) {
  4747. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4748. margin: auto;
  4749. }
  4750. }
  4751. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4752. grid-column: 2/span 7;
  4753. }
  4754. @media (max-width: 810px) {
  4755. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4756. padding: 1rem;
  4757. }
  4758. }
  4759. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4760. display: none;
  4761. }
  4762. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4763. margin: auto;
  4764. }
  4765. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4766. scroll-margin-top: 10rem;
  4767. }
  4768. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4769. margin-top: 4rem;
  4770. padding-left: 0.5rem;
  4771. display: flex;
  4772. flex-direction: column;
  4773. }
  4774. @media (max-width: 479px) {
  4775. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4776. flex-direction: column;
  4777. padding-bottom: 3rem;
  4778. margin-top: 0rem;
  4779. }
  4780. }
  4781. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4782. content: "Filtrer par :";
  4783. margin-right: 2rem;
  4784. margin-bottom: 1rem;
  4785. margin-left: 0.5rem;
  4786. font-weight: 900;
  4787. min-width: fit-content;
  4788. }
  4789. @media (max-width: 479px) {
  4790. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4791. padding-bottom: 1rem;
  4792. }
  4793. }
  4794. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters .form-actions {
  4795. margin-right: 1rem;
  4796. margin-bottom: 1rem;
  4797. }
  4798. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper {
  4799. margin-top: 2rem;
  4800. display: flex;
  4801. flex-direction: row;
  4802. flex-wrap: wrap;
  4803. }
  4804. @media (max-width: 810px) {
  4805. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper {
  4806. flex-direction: column;
  4807. }
  4808. }
  4809. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  4810. width: 25%;
  4811. }
  4812. @media (max-width: 810px) {
  4813. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  4814. width: 100%;
  4815. }
  4816. }
  4817. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4818. color: rgb(9, 57, 139);
  4819. line-height: 1.5rem;
  4820. padding: 0.5rem;
  4821. padding-right: 1rem;
  4822. padding-left: 1rem;
  4823. transition: transform 0.3s ease, box-shadow 0.3s ease;
  4824. transform-origin: center;
  4825. }
  4826. @media (max-width: 479px) {
  4827. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4828. padding-left: 0rem;
  4829. padding-right: 0rem;
  4830. padding-top: 2rem;
  4831. }
  4832. }
  4833. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet:hover {
  4834. transform: translateY(-5px);
  4835. }
  4836. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4837. display: flex;
  4838. flex-direction: column;
  4839. }
  4840. .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 {
  4841. color: rgb(9, 57, 139);
  4842. }
  4843. .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 {
  4844. order: 1;
  4845. }
  4846. .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 {
  4847. display: none;
  4848. }
  4849. .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 {
  4850. display: block;
  4851. }
  4852. .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 {
  4853. width: 100%;
  4854. max-height: 175px;
  4855. object-fit: cover;
  4856. }
  4857. .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 {
  4858. display: block;
  4859. 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>');
  4860. }
  4861. .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 {
  4862. display: none;
  4863. }
  4864. .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 {
  4865. margin-top: 0.5rem;
  4866. font-size: 0.9rem;
  4867. font-weight: 800;
  4868. order: 4;
  4869. }
  4870. .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 {
  4871. order: 4;
  4872. margin-top: 0.5rem;
  4873. font-size: 0.8rem;
  4874. font-weight: 800;
  4875. }
  4876. .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 {
  4877. margin: 0;
  4878. }
  4879. .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 {
  4880. order: 5;
  4881. color: red;
  4882. margin-top: 0.8rem;
  4883. font-size: 0.7rem;
  4884. }
  4885. .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 {
  4886. display: none;
  4887. }
  4888. .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 {
  4889. display: none;
  4890. }
  4891. .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 {
  4892. display: none;
  4893. }
  4894. .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 {
  4895. display: none;
  4896. }
  4897. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region {
  4898. order: 2;
  4899. display: flex;
  4900. flex-wrap: wrap;
  4901. flex-direction: row;
  4902. font-size: 0.9rem;
  4903. }
  4904. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse {
  4905. display: flex;
  4906. flex: 0 1 auto;
  4907. width: auto;
  4908. min-width: 0;
  4909. text-transform: uppercase;
  4910. line-height: 1.3;
  4911. font-weight: 800;
  4912. }
  4913. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address {
  4914. display: flex;
  4915. margin: 0;
  4916. flex-wrap: wrap;
  4917. min-width: 0;
  4918. }
  4919. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address .postal-code {
  4920. display: none;
  4921. }
  4922. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address .locality {
  4923. padding-top: 0 !important;
  4924. padding-bottom: 0 !important;
  4925. }
  4926. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address .locality::after {
  4927. content: ",";
  4928. margin-right: 0.3rem;
  4929. }
  4930. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-adresse .address .country {
  4931. display: none;
  4932. padding-top: 0 !important;
  4933. padding-bottom: 0 !important;
  4934. }
  4935. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .ville-region .field--name-field-region {
  4936. display: flex;
  4937. min-width: 0;
  4938. flex: 0 1 auto;
  4939. width: auto;
  4940. overflow-wrap: break-word;
  4941. text-transform: uppercase;
  4942. font-weight: 800;
  4943. padding-top: 0 !important;
  4944. padding-bottom: 0 !important;
  4945. line-height: 1.3;
  4946. }
  4947. .path-node.page-node-type-projet .layout-container {
  4948. overflow: unset;
  4949. }
  4950. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4951. padding-top: 4rem;
  4952. margin-left: 10%;
  4953. margin-right: 10%;
  4954. width: 80vw;
  4955. }
  4956. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4957. display: flex;
  4958. flex-direction: row;
  4959. margin-bottom: 2rem;
  4960. }
  4961. @media (max-width: 568px) {
  4962. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4963. flex-direction: column;
  4964. }
  4965. }
  4966. .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 {
  4967. width: 60%;
  4968. padding-right: 2rem;
  4969. }
  4970. @media (max-width: 568px) {
  4971. .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 {
  4972. width: 100%;
  4973. }
  4974. }
  4975. .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 {
  4976. height: auto;
  4977. max-height: 600px;
  4978. object-fit: contain;
  4979. width: inherit;
  4980. }
  4981. @media (max-width: 810px) {
  4982. .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 {
  4983. padding-top: 1rem;
  4984. object-fit: cover;
  4985. width: 100%;
  4986. }
  4987. }
  4988. @media (max-width: 568px) {
  4989. .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 {
  4990. width: 100%;
  4991. max-height: 300px;
  4992. }
  4993. }
  4994. .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 {
  4995. display: inline-block;
  4996. }
  4997. .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 {
  4998. display: none;
  4999. }
  5000. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-prev::before, .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-next::before {
  5001. opacity: 1 !important;
  5002. top: 0 !important;
  5003. }
  5004. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-prev, .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-next {
  5005. top: 98% !important;
  5006. }
  5007. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  5008. width: 40%;
  5009. }
  5010. @media (max-width: 568px) {
  5011. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  5012. width: 100%;
  5013. }
  5014. }
  5015. .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 {
  5016. margin: 0;
  5017. }
  5018. .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 {
  5019. font-family: "Marianne";
  5020. font-size: 2.3rem;
  5021. font-weight: 800;
  5022. color: rgb(0, 158, 227);
  5023. }
  5024. @media (max-width: 1624px) {
  5025. .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 {
  5026. font-size: 2.3rem;
  5027. }
  5028. }
  5029. @media (max-width: 1384px) {
  5030. .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 {
  5031. font-size: 2rem;
  5032. }
  5033. }
  5034. @media (max-width: 1216px) {
  5035. .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 {
  5036. font-size: rem;
  5037. }
  5038. }
  5039. @media (max-width: 810px) {
  5040. .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 {
  5041. font-size: 1.7rem;
  5042. }
  5043. }
  5044. .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 {
  5045. margin-top: 2rem;
  5046. }
  5047. @media (max-width: 1624px) {
  5048. .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 {
  5049. margin-top: 1rem;
  5050. padding-top: 0.5rem;
  5051. }
  5052. }
  5053. @media (max-width: 1384px) {
  5054. .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 {
  5055. margin-top: 0.8rem;
  5056. padding-top: 0.5rem;
  5057. }
  5058. }
  5059. @media (max-width: 810px) {
  5060. .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 {
  5061. padding-top: 0.5rem;
  5062. }
  5063. }
  5064. .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 {
  5065. color: rgb(9, 57, 139);
  5066. font-size: 1.5rem;
  5067. font-weight: 900;
  5068. text-transform: uppercase;
  5069. }
  5070. @media (max-width: 1624px) {
  5071. .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 {
  5072. font-size: 1.3rem;
  5073. }
  5074. }
  5075. @media (max-width: 1216px) {
  5076. .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 {
  5077. font-size: 1.1rem;
  5078. }
  5079. }
  5080. @media (max-width: 810px) {
  5081. .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 {
  5082. font-size: 1rem;
  5083. }
  5084. }
  5085. .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 {
  5086. margin-top: 2rem;
  5087. width: fit-content;
  5088. }
  5089. .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 {
  5090. background-color: rgb(225, 0, 15);
  5091. color: white;
  5092. font-weight: 800;
  5093. padding-right: 0.3rem;
  5094. padding-left: 0.2rem;
  5095. }
  5096. @media (max-width: 1624px) {
  5097. .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 {
  5098. margin-top: 1rem;
  5099. }
  5100. }
  5101. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  5102. display: flex;
  5103. flex-direction: row;
  5104. border: 0.1rem solid;
  5105. justify-content: space-evenly;
  5106. width: 90%;
  5107. margin-top: 3rem;
  5108. font-weight: 600;
  5109. }
  5110. @media (max-width: 479px) {
  5111. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  5112. flex-direction: column;
  5113. width: 100%;
  5114. }
  5115. }
  5116. .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 {
  5117. padding-right: 1rem;
  5118. order: 1;
  5119. width: 20%;
  5120. position: relative;
  5121. height: 80px;
  5122. }
  5123. @media (max-width: 479px) {
  5124. .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 {
  5125. width: 100%;
  5126. }
  5127. }
  5128. .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 {
  5129. content: url("../images/pictos/picto_lieu.svg");
  5130. min-width: 30px;
  5131. height: auto;
  5132. padding-right: 1rem;
  5133. position: absolute;
  5134. left: 0;
  5135. margin-top: 0.83em;
  5136. margin-left: 1rem;
  5137. }
  5138. .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 {
  5139. order: 1;
  5140. margin-left: 70px;
  5141. margin-bottom: 1rem;
  5142. height: fit-content;
  5143. }
  5144. .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 {
  5145. display: inline-flex;
  5146. order: 2;
  5147. margin-left: 70px;
  5148. height: fit-content;
  5149. }
  5150. .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 {
  5151. display: flex;
  5152. flex-direction: row;
  5153. margin-top: 0.83em;
  5154. }
  5155. .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 {
  5156. margin: auto;
  5157. display: flex;
  5158. flex-direction: column;
  5159. justify-content: start;
  5160. margin: 0;
  5161. }
  5162. .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 {
  5163. display: none;
  5164. }
  5165. .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 {
  5166. order: 4;
  5167. padding-left: 1rem;
  5168. padding-right: 1rem;
  5169. padding-bottom: 1rem;
  5170. border-left: 0.1rem solid;
  5171. width: 30%;
  5172. }
  5173. @media (max-width: 479px) {
  5174. .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 {
  5175. width: 100%;
  5176. border-top: 0.1rem solid;
  5177. border-left: 0;
  5178. padding-right: 0rem;
  5179. padding-left: 0rem;
  5180. }
  5181. }
  5182. .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 {
  5183. color: rgb(9, 57, 139);
  5184. font-size: 1.2rem;
  5185. font-weight: 900;
  5186. text-transform: uppercase;
  5187. margin-bottom: 0rem !important;
  5188. }
  5189. .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 {
  5190. content: " :";
  5191. }
  5192. @media (max-width: 479px) {
  5193. .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 {
  5194. padding-right: 1rem;
  5195. padding-left: 1rem;
  5196. }
  5197. }
  5198. @media (max-width: 479px) {
  5199. .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 {
  5200. padding-right: 1rem;
  5201. padding-left: 1rem;
  5202. }
  5203. }
  5204. .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 {
  5205. display: none;
  5206. }
  5207. .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 {
  5208. order: 2;
  5209. padding-left: 1rem;
  5210. border-left: 0.1rem solid;
  5211. padding-bottom: 1rem;
  5212. width: 30%;
  5213. }
  5214. @media (max-width: 479px) {
  5215. .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 {
  5216. border-left: 0;
  5217. border-top: 0.1rem solid;
  5218. width: 100%;
  5219. padding-right: 0rem;
  5220. padding-left: 0rem;
  5221. }
  5222. }
  5223. .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 {
  5224. color: rgb(9, 57, 139);
  5225. font-size: 1.2rem;
  5226. font-weight: 900;
  5227. text-transform: uppercase;
  5228. margin-bottom: 0rem !important;
  5229. }
  5230. .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 {
  5231. content: " :";
  5232. }
  5233. @media (max-width: 479px) {
  5234. .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 {
  5235. padding-right: 1rem;
  5236. padding-left: 1rem;
  5237. }
  5238. }
  5239. @media (max-width: 479px) {
  5240. .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 {
  5241. padding-right: 1rem;
  5242. padding-left: 1rem;
  5243. }
  5244. }
  5245. .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 {
  5246. display: none;
  5247. }
  5248. .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 {
  5249. order: 3;
  5250. padding-left: 1rem;
  5251. padding-bottom: 1rem;
  5252. border-left: 0.1rem solid;
  5253. width: 20%;
  5254. }
  5255. @media (max-width: 479px) {
  5256. .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 {
  5257. border-left: 0;
  5258. border-top: 0.1rem solid;
  5259. width: 100%;
  5260. padding-right: 0rem;
  5261. padding-left: 0rem;
  5262. }
  5263. }
  5264. .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 {
  5265. color: rgb(9, 57, 139);
  5266. font-size: 1.2rem;
  5267. font-weight: 900;
  5268. text-transform: uppercase;
  5269. margin-bottom: 0rem !important;
  5270. }
  5271. .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 {
  5272. content: " :";
  5273. }
  5274. @media (max-width: 479px) {
  5275. .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 {
  5276. padding-right: 1rem;
  5277. padding-left: 1rem;
  5278. }
  5279. }
  5280. @media (max-width: 479px) {
  5281. .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 {
  5282. padding-right: 1rem;
  5283. padding-left: 1rem;
  5284. }
  5285. }
  5286. .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 {
  5287. display: none;
  5288. }
  5289. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5290. margin-top: 5rem;
  5291. }
  5292. @media (max-width: 479px) {
  5293. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5294. display: none;
  5295. }
  5296. }
  5297. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  5298. display: flex;
  5299. justify-content: flex-end;
  5300. position: -webkit-sticky;
  5301. position: sticky;
  5302. top: 10rem;
  5303. }
  5304. .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 {
  5305. display: flex;
  5306. justify-content: flex-end;
  5307. width: 50%;
  5308. background-color: rgb(255, 255, 255);
  5309. padding-right: 2rem;
  5310. }
  5311. .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 {
  5312. display: flex;
  5313. font-size: 1rem;
  5314. font-weight: 1000;
  5315. color: rgb(9, 57, 139);
  5316. border-bottom: 1px solid rgb(0, 158, 227);
  5317. padding-bottom: 0.5rem;
  5318. padding-right: 1rem;
  5319. margin-bottom: 0.8rem;
  5320. }
  5321. .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 {
  5322. text-decoration: underline;
  5323. }
  5324. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5325. margin-top: 5rem;
  5326. flex: 0 1 50%;
  5327. }
  5328. @media (max-width: 479px) {
  5329. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5330. flex: 0 1 100%;
  5331. margin-top: 1rem;
  5332. }
  5333. }
  5334. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5335. width: 90%;
  5336. }
  5337. @media (max-width: 479px) {
  5338. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5339. width: 80%;
  5340. margin: auto;
  5341. }
  5342. }
  5343. .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 {
  5344. margin-top: 0;
  5345. }
  5346. .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 {
  5347. background-color: white;
  5348. }
  5349. .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 {
  5350. background-color: rgb(255, 255, 255);
  5351. }
  5352. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph {
  5353. margin-top: 3rem;
  5354. }
  5355. .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 {
  5356. font-size: 1.5rem;
  5357. font-weight: 1000;
  5358. font-family: "Source Code Pro";
  5359. color: rgb(9, 57, 139);
  5360. text-transform: uppercase;
  5361. margin-bottom: 0.8rem;
  5362. }
  5363. .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 {
  5364. text-transform: none !important;
  5365. }
  5366. .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 {
  5367. width: 100%;
  5368. height: auto;
  5369. }
  5370. .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 {
  5371. padding-right: 2rem;
  5372. }
  5373. .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 {
  5374. margin-top: 0;
  5375. }
  5376. .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 {
  5377. color: rgb(0, 0, 0);
  5378. text-decoration: underline;
  5379. }
  5380. .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 {
  5381. display: none;
  5382. }
  5383. .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 {
  5384. overflow-y: visible !important;
  5385. }
  5386. .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 {
  5387. font-size: 1.5rem;
  5388. font-weight: 1000;
  5389. font-family: "Source Code Pro";
  5390. color: rgb(9, 57, 139);
  5391. text-transform: uppercase;
  5392. margin-top: 2rem;
  5393. margin-bottom: 0.8rem;
  5394. }
  5395. .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 {
  5396. display: flex;
  5397. flex-direction: row;
  5398. justify-content: space-between;
  5399. }
  5400. .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 {
  5401. display: flex;
  5402. flex-direction: column;
  5403. align-items: center;
  5404. }
  5405. .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 {
  5406. padding-top: 1rem;
  5407. }
  5408. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5409. margin-top: 5rem;
  5410. }
  5411. @media (max-width: 479px) {
  5412. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5413. margin-top: 2rem;
  5414. }
  5415. }
  5416. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5417. display: flex;
  5418. flex-direction: column;
  5419. width: 65%;
  5420. }
  5421. @media (max-width: 479px) {
  5422. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5423. width: 80%;
  5424. margin: auto;
  5425. }
  5426. }
  5427. .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 {
  5428. display: none;
  5429. }
  5430. .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 {
  5431. height: fit-content;
  5432. border: 2px solid rgb(0, 158, 227);
  5433. background-color: rgb(255, 255, 255);
  5434. margin-bottom: 1rem;
  5435. min-height: 4rem;
  5436. color: rgb(0, 158, 227);
  5437. padding-left: 1rem;
  5438. padding-top: 1rem;
  5439. }
  5440. .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) {
  5441. display: none;
  5442. }
  5443. .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 {
  5444. height: inherit;
  5445. margin: auto;
  5446. }
  5447. .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 {
  5448. content: url("../images/pictos/download.png");
  5449. min-width: 30px;
  5450. height: auto;
  5451. padding-right: 2rem;
  5452. }
  5453. .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 {
  5454. hyphens: auto;
  5455. display: inline-flex;
  5456. color: rgb(0, 158, 227);
  5457. font-weight: 800;
  5458. }
  5459. .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 {
  5460. height: inherit;
  5461. margin: auto;
  5462. padding-right: 1rem;
  5463. }
  5464. .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 {
  5465. content: url("../images/pictos/download.png");
  5466. min-width: 30px;
  5467. height: auto;
  5468. padding-right: 2rem;
  5469. }
  5470. .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 {
  5471. hyphens: auto;
  5472. display: inline-flex;
  5473. color: rgb(0, 158, 227);
  5474. font-weight: 800;
  5475. }
  5476. .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 {
  5477. display: none;
  5478. }
  5479. .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 {
  5480. margin: auto;
  5481. height: fit-content;
  5482. border: 2px solid rgb(0, 158, 227);
  5483. min-height: 4rem;
  5484. background: rgb(255, 255, 255);
  5485. color: rgb(0, 158, 227);
  5486. padding-left: 1rem;
  5487. padding-top: 1rem;
  5488. margin-bottom: 1rem;
  5489. padding-bottom: 1rem;
  5490. }
  5491. .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 {
  5492. display: inline-flex;
  5493. align-items: center;
  5494. color: rgb(0, 158, 227);
  5495. font-weight: 800;
  5496. }
  5497. .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 {
  5498. content: url("../images/pictos/external_link.png");
  5499. min-width: 30px;
  5500. height: auto;
  5501. padding-right: 2rem;
  5502. }
  5503. .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 {
  5504. display: none;
  5505. }
  5506. .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- {
  5507. margin-top: 3rem;
  5508. }
  5509. @media (max-width: 479px) {
  5510. .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- {
  5511. margin-top: 2rem;
  5512. }
  5513. }
  5514. .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 {
  5515. font-size: 0.8rem;
  5516. color: rgb(0, 0, 0);
  5517. font-weight: 900;
  5518. }
  5519. .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- .field--name-field-ressource-s-liee-s- {
  5520. display: flex;
  5521. flex-direction: column;
  5522. }
  5523. .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- .field--name-field-ressource-s-liee-s- .field__item:has(.type-les-projets-en-images) {
  5524. display: flex;
  5525. order: -1;
  5526. }
  5527. .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 {
  5528. display: flex;
  5529. flex-direction: column;
  5530. border: 2px solid rgb(0, 158, 227);
  5531. padding: 1rem;
  5532. height: fit-content;
  5533. margin-bottom: 1rem;
  5534. background-color: rgb(255, 255, 255);
  5535. }
  5536. .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 {
  5537. display: flex;
  5538. flex-direction: column;
  5539. }
  5540. .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 {
  5541. order: 3;
  5542. }
  5543. .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 {
  5544. margin: 0;
  5545. }
  5546. .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 {
  5547. color: rgb(0, 0, 0);
  5548. font-size: 1rem;
  5549. font-weight: 900;
  5550. font-style: italic;
  5551. }
  5552. .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 {
  5553. display: none;
  5554. }
  5555. .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 {
  5556. order: 2;
  5557. text-transform: uppercase;
  5558. color: rgb(0, 158, 227);
  5559. font-weight: 900;
  5560. font-size: 0.8rem;
  5561. }
  5562. .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- {
  5563. order: 5;
  5564. font-weight: 800;
  5565. }
  5566. .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 {
  5567. margin: 0;
  5568. }
  5569. .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 {
  5570. display: none;
  5571. }
  5572. .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 {
  5573. margin: 0;
  5574. }
  5575. .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 {
  5576. display: none;
  5577. }
  5578. .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 {
  5579. order: 1;
  5580. width: 25%;
  5581. }
  5582. .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 {
  5583. width: 100%;
  5584. height: auto;
  5585. }
  5586. .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 {
  5587. order: 6;
  5588. }
  5589. .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 {
  5590. display: none;
  5591. }
  5592. .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 {
  5593. order: 7;
  5594. display: flex;
  5595. margin-top: 0.8rem;
  5596. flex-direction: row;
  5597. flex-wrap: wrap;
  5598. }
  5599. .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 {
  5600. display: none;
  5601. }
  5602. .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 {
  5603. display: flex;
  5604. flex-direction: row;
  5605. flex-wrap: wrap;
  5606. }
  5607. .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 {
  5608. margin-right: 0.5rem;
  5609. padding-right: 0.3rem;
  5610. font-size: 0.8rem;
  5611. margin-top: 0.2rem;
  5612. }
  5613. .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 {
  5614. background: rgb(9, 57, 139);
  5615. color: rgb(255, 255, 255);
  5616. font-weight: 800;
  5617. vertical-align: super;
  5618. padding-left: 0.1rem;
  5619. padding-right: 0.1rem;
  5620. display: inline-flex;
  5621. }
  5622. .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 {
  5623. display: none;
  5624. }
  5625. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-publications-issues-du-programme {
  5626. min-width: 30px !important;
  5627. }
  5628. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images {
  5629. order: 1;
  5630. width: 100%;
  5631. }
  5632. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  5633. display: none;
  5634. }
  5635. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images img {
  5636. width: 100%;
  5637. height: auto;
  5638. }
  5639. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  5640. width: 50%;
  5641. margin: auto;
  5642. display: flex;
  5643. flex-direction: row;
  5644. flex-wrap: wrap;
  5645. }
  5646. .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 {
  5647. display: none;
  5648. }
  5649. .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 {
  5650. display: flex;
  5651. flex-direction: row;
  5652. flex-wrap: wrap;
  5653. justify-content: space-between;
  5654. }
  5655. .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 {
  5656. display: none;
  5657. }
  5658. .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 {
  5659. display: flex;
  5660. flex-direction: column;
  5661. }
  5662. .path-incubateur {
  5663. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5664. background-repeat: no-repeat;
  5665. background-position-y: 7rem;
  5666. max-width: 100vw;
  5667. background-size: contain;
  5668. }
  5669. .path-incubateur .layout-container {
  5670. overflow: unset;
  5671. }
  5672. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  5673. width: fit-content;
  5674. }
  5675. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  5676. width: fit-content;
  5677. margin-left: 11%;
  5678. margin-top: 15vh;
  5679. color: rgb(255, 255, 255);
  5680. font-family: "Source Code Pro";
  5681. text-transform: uppercase;
  5682. font-size: 2rem;
  5683. font-weight: 800;
  5684. background: rgb(0, 158, 227);
  5685. margin-bottom: 15vh;
  5686. }
  5687. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5688. position: relative;
  5689. }
  5690. .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 {
  5691. display: flex;
  5692. justify-content: flex-end;
  5693. position: -webkit-sticky;
  5694. position: sticky;
  5695. top: 10rem;
  5696. }
  5697. @media (max-width: 810px) {
  5698. .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 {
  5699. display: none;
  5700. }
  5701. }
  5702. .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 {
  5703. display: flex;
  5704. flex-direction: row-reverse;
  5705. width: 50%;
  5706. background-color: rgb(255, 255, 255);
  5707. padding-right: 2rem;
  5708. }
  5709. .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 {
  5710. display: flex;
  5711. flex-direction: column;
  5712. font-size: 1rem;
  5713. font-weight: 1000;
  5714. color: rgb(9, 57, 139);
  5715. border-bottom: 1px solid rgb(0, 158, 227);
  5716. padding-bottom: 0.8rem;
  5717. padding-right: 1rem;
  5718. margin-top: 1rem;
  5719. scroll-margin-top: 7em;
  5720. }
  5721. .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 {
  5722. text-decoration: underline;
  5723. }
  5724. .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 {
  5725. padding-right: 2rem;
  5726. margin-top: 1rem;
  5727. background-color: rgb(255, 255, 255);
  5728. }
  5729. .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 {
  5730. font-size: 1.5rem;
  5731. font-weight: 1000;
  5732. font-family: "Source Code Pro", monospace;
  5733. color: rgb(9, 57, 139);
  5734. text-transform: uppercase;
  5735. margin-bottom: 0.8rem;
  5736. }
  5737. .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 {
  5738. margin-bottom: 2rem;
  5739. }
  5740. .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 {
  5741. margin-top: 1rem;
  5742. display: flex;
  5743. flex-direction: column;
  5744. width: 70%;
  5745. }
  5746. @media (max-width: 810px) {
  5747. .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 {
  5748. margin: auto;
  5749. }
  5750. }
  5751. .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 {
  5752. height: fit-content;
  5753. border: 2px solid rgb(0, 158, 227);
  5754. background-color: rgb(255, 255, 255);
  5755. margin-bottom: 1rem;
  5756. }
  5757. .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 {
  5758. min-height: 4rem;
  5759. background: rgb(255, 255, 255);
  5760. color: rgb(0, 158, 227);
  5761. padding-left: 0.8rem;
  5762. padding-top: 1rem;
  5763. }
  5764. .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) {
  5765. display: none;
  5766. }
  5767. .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 {
  5768. height: inherit;
  5769. margin: auto;
  5770. }
  5771. .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 {
  5772. content: url("../images/pictos/noun_Download_file_307900.svg");
  5773. min-width: 40px;
  5774. height: auto;
  5775. padding-right: 0.5rem;
  5776. display: inline-flex;
  5777. align-items: center;
  5778. }
  5779. .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 {
  5780. hyphens: auto;
  5781. display: inline-flex;
  5782. align-items: center;
  5783. color: rgb(0, 158, 227);
  5784. font-weight: 800;
  5785. }
  5786. .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 {
  5787. margin: auto;
  5788. height: fit-content;
  5789. border: 2px solid rgb(0, 158, 227);
  5790. min-height: 4rem;
  5791. background: rgb(255, 255, 255);
  5792. color: rgb(0, 158, 227);
  5793. padding-left: 0.8rem;
  5794. padding-top: 1rem;
  5795. margin-bottom: 1rem;
  5796. }
  5797. .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 {
  5798. display: inline-flex;
  5799. align-items: center;
  5800. justify-items: center;
  5801. color: rgb(0, 158, 227);
  5802. font-weight: 800;
  5803. }
  5804. .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 {
  5805. content: url("../images/pictos/external_link.png");
  5806. min-width: 40px;
  5807. height: auto;
  5808. padding-right: 0.5rem;
  5809. display: inline-flex;
  5810. align-items: center;
  5811. }
  5812. .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 {
  5813. display: none;
  5814. }
  5815. .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 {
  5816. padding-top: 1rem;
  5817. background-color: white;
  5818. }
  5819. .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 {
  5820. width: 80%;
  5821. margin: auto;
  5822. }
  5823. .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 {
  5824. margin-top: 4rem;
  5825. display: flex;
  5826. flex-direction: row;
  5827. }
  5828. @media (max-width: 479px) {
  5829. .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 {
  5830. flex-direction: column;
  5831. padding-bottom: 3rem;
  5832. }
  5833. }
  5834. .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 {
  5835. content: "Filtrer par :";
  5836. margin-right: 1rem;
  5837. }
  5838. @media (max-width: 479px) {
  5839. .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 {
  5840. padding-bottom: 1rem;
  5841. }
  5842. }
  5843. .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 {
  5844. display: flex;
  5845. flex-direction: row;
  5846. }
  5847. .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 {
  5848. display: none;
  5849. }
  5850. .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 {
  5851. display: none;
  5852. }
  5853. @media (max-width: 479px) {
  5854. .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 {
  5855. padding-bottom: 1rem;
  5856. }
  5857. }
  5858. .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 {
  5859. display: none;
  5860. }
  5861. .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 {
  5862. display: none;
  5863. }
  5864. @media (max-width: 479px) {
  5865. .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 {
  5866. padding-bottom: 1rem;
  5867. }
  5868. }
  5869. .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 {
  5870. display: none;
  5871. }
  5872. @media (max-width: 479px) {
  5873. .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 {
  5874. padding-bottom: 1rem;
  5875. }
  5876. }
  5877. .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] {
  5878. display: none;
  5879. }
  5880. .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 {
  5881. content: "";
  5882. display: inline-block;
  5883. width: 15px;
  5884. height: 15px;
  5885. background: #fff;
  5886. border-radius: 0px;
  5887. border-color: black;
  5888. border-style: solid;
  5889. border-width: 1px;
  5890. margin-right: 0.5rem;
  5891. }
  5892. .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 {
  5893. background: rgb(0, 158, 227);
  5894. }
  5895. .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 {
  5896. padding-right: 1rem;
  5897. }
  5898. .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 {
  5899. background-color: rgb(0, 158, 227);
  5900. color: white;
  5901. text-transform: uppercase;
  5902. border: none;
  5903. padding: 0.1rem 0.7rem;
  5904. margin-left: 2rem;
  5905. }
  5906. @media (max-width: 479px) {
  5907. .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 {
  5908. margin-left: 0rem;
  5909. margin-right: 2rem;
  5910. }
  5911. }
  5912. .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 {
  5913. background-color: rgb(0, 158, 227);
  5914. color: white;
  5915. text-transform: uppercase;
  5916. border: none;
  5917. padding: 0.1rem 0.7rem;
  5918. margin-left: 1rem;
  5919. }
  5920. @media (max-width: 479px) {
  5921. .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 {
  5922. flex-direction: column;
  5923. }
  5924. }
  5925. .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 {
  5926. margin-top: 2rem;
  5927. display: flex;
  5928. flex-direction: row;
  5929. flex-wrap: wrap;
  5930. }
  5931. @media (max-width: 810px) {
  5932. .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 {
  5933. flex-direction: column;
  5934. }
  5935. }
  5936. .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 {
  5937. width: 25%;
  5938. }
  5939. @media (max-width: 810px) {
  5940. .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 {
  5941. width: 100%;
  5942. }
  5943. }
  5944. .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 {
  5945. color: rgb(9, 57, 139);
  5946. line-height: 1.5rem;
  5947. padding: 0.5rem;
  5948. padding-right: 1rem;
  5949. padding-left: 1rem;
  5950. }
  5951. @media (max-width: 479px) {
  5952. .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 {
  5953. padding-left: 0rem;
  5954. padding-right: 0rem;
  5955. padding-top: 2rem;
  5956. }
  5957. }
  5958. .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 {
  5959. display: flex;
  5960. flex-direction: column;
  5961. }
  5962. .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 {
  5963. color: rgb(9, 57, 139);
  5964. }
  5965. .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 {
  5966. order: 1;
  5967. }
  5968. .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 {
  5969. width: 100%;
  5970. max-height: 175px;
  5971. object-fit: cover;
  5972. }
  5973. .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 {
  5974. display: block;
  5975. 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>');
  5976. }
  5977. .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 {
  5978. order: 2;
  5979. display: flex;
  5980. text-transform: uppercase;
  5981. font-size: 0.9rem;
  5982. font-weight: 800;
  5983. margin-top: 0.8rem;
  5984. line-height: 0.6rem;
  5985. }
  5986. .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 {
  5987. display: flex;
  5988. flex-direction: row;
  5989. margin: 0;
  5990. }
  5991. .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 {
  5992. padding-top: 0 !important;
  5993. padding-bottom: 0 !important;
  5994. }
  5995. .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 {
  5996. content: ",";
  5997. margin-right: 0.3rem;
  5998. }
  5999. .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 {
  6000. padding-top: 0 !important;
  6001. padding-bottom: 0 !important;
  6002. }
  6003. .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 {
  6004. margin-top: 0.5rem;
  6005. font-size: 0.9rem;
  6006. font-weight: 800;
  6007. order: 4;
  6008. }
  6009. .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 {
  6010. order: 3;
  6011. margin-top: 0.5rem;
  6012. font-size: 0.9rem;
  6013. font-weight: 800;
  6014. }
  6015. .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 {
  6016. margin: 0;
  6017. }
  6018. .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 {
  6019. order: 4;
  6020. color: red;
  6021. margin-top: 0.8rem;
  6022. font-size: 0.7rem;
  6023. }
  6024. .node-id-201 {
  6025. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  6026. background-repeat: no-repeat;
  6027. background-position-y: 7rem;
  6028. max-width: 100vw;
  6029. background-size: contain;
  6030. }
  6031. .node-id-201 #block-contenudelapageprincipale {
  6032. scroll-margin: 8rem;
  6033. }
  6034. .node-id-201 .layout__region--top {
  6035. padding-bottom: 3rem;
  6036. height: 30vh;
  6037. }
  6038. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6039. display: none;
  6040. height: inherit;
  6041. }
  6042. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  6043. font-family: "Source Code Pro";
  6044. font-size: 2rem;
  6045. font-weight: 800;
  6046. color: rgb(255, 255, 255);
  6047. background-color: rgb(0, 158, 227);
  6048. text-transform: uppercase;
  6049. }
  6050. .node-id-201 .layout__region--second {
  6051. width: 25%;
  6052. }
  6053. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  6054. background-color: rgb(255, 255, 255);
  6055. }
  6056. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  6057. font-size: 1.5rem;
  6058. font-weight: 1000;
  6059. font-family: "Source Code Pro";
  6060. color: rgb(9, 57, 139);
  6061. text-transform: uppercase;
  6062. }
  6063. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  6064. text-transform: none !important;
  6065. }
  6066. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  6067. padding-right: 2rem;
  6068. }
  6069. .path-ressources .layout-container {
  6070. overflow: hidden;
  6071. }
  6072. @media (max-width: 810px) {
  6073. .path-ressources .layout-container {
  6074. overflow: hidden;
  6075. }
  6076. }
  6077. .path-ressources .layout-content {
  6078. min-height: 100vh;
  6079. width: 100vw;
  6080. }
  6081. .path-ressources .layout-content .region-content {
  6082. width: 100%;
  6083. margin: auto;
  6084. }
  6085. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  6086. font-size: 4em;
  6087. color: rgb(9, 57, 139);
  6088. font-weight: 400;
  6089. text-align: center;
  6090. margin-bottom: 1rem;
  6091. width: fit-content;
  6092. margin-left: 26%;
  6093. }
  6094. @media (max-width: 810px) {
  6095. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  6096. margin-left: 2rem;
  6097. text-align: left;
  6098. line-height: 4rem;
  6099. }
  6100. }
  6101. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  6102. display: flex;
  6103. flex-direction: column;
  6104. }
  6105. @media (max-width: 479px) {
  6106. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  6107. display: flex;
  6108. flex-direction: column;
  6109. }
  6110. }
  6111. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6112. width: 60%;
  6113. margin: auto;
  6114. margin-left: 26%;
  6115. }
  6116. @media (max-width: 810px) {
  6117. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6118. margin-left: 2rem;
  6119. width: 85%;
  6120. }
  6121. }
  6122. @media (max-width: 479px) {
  6123. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  6124. order: 1;
  6125. margin-left: 2rem;
  6126. }
  6127. }
  6128. .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 {
  6129. grid-column: 1/span 5;
  6130. }
  6131. @media (max-width: 810px) {
  6132. .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 {
  6133. padding-top: 1rem;
  6134. margin-top: 1rem;
  6135. }
  6136. }
  6137. @media (max-width: 479px) {
  6138. .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 {
  6139. padding-left: 0;
  6140. padding-right: 0;
  6141. }
  6142. }
  6143. .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 {
  6144. margin: auto;
  6145. background: rgb(255, 255, 255);
  6146. font-size: 1rem;
  6147. }
  6148. @media (max-width: 479px) {
  6149. .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 {
  6150. margin-top: 1rem;
  6151. }
  6152. }
  6153. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6154. grid-column: 6/span 5;
  6155. grid-row: 1;
  6156. margin-top: 4rem;
  6157. background-color: rgb(0, 158, 227);
  6158. height: fit-content;
  6159. width: 100%;
  6160. }
  6161. @media (max-width: 810px) {
  6162. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6163. grid-column: 5/span 5;
  6164. }
  6165. }
  6166. @media (max-width: 479px) {
  6167. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6168. grid-column: 5/span 5;
  6169. order: 2;
  6170. }
  6171. }
  6172. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  6173. display: block;
  6174. }
  6175. .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 {
  6176. display: flex;
  6177. flex-direction: column;
  6178. margin-top: 2rem;
  6179. margin-bottom: 2rem;
  6180. margin-left: 1.5rem;
  6181. margin-right: 1.5rem;
  6182. text-align: center;
  6183. }
  6184. .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 {
  6185. font-weight: 800;
  6186. color: rgb(255, 255, 255);
  6187. font-size: 1.3rem;
  6188. }
  6189. .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 {
  6190. margin-left: auto;
  6191. padding-top: 1rem;
  6192. display: block;
  6193. content: url("../images/pictos/noun_Arrow_3771902.svg");
  6194. }
  6195. @media (max-width: 810px) {
  6196. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  6197. margin: auto;
  6198. }
  6199. }
  6200. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  6201. margin-top: 2rem;
  6202. width: 100%;
  6203. }
  6204. @media (max-width: 479px) {
  6205. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  6206. order: 3;
  6207. }
  6208. }
  6209. @media (max-width: 810px) {
  6210. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees {
  6211. display: flex;
  6212. flex-direction: column;
  6213. }
  6214. }
  6215. .path-ressources .layout-content .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 {
  6216. position: fixed;
  6217. top: 25rem;
  6218. left: 0;
  6219. background-color: rgb(255, 255, 255);
  6220. border: solid 0.2px rgba(0, 0, 0, 0.1);
  6221. margin-bottom: 5rem;
  6222. padding: 1rem;
  6223. padding-left: 2rem;
  6224. padding-right: 1.5rem;
  6225. z-index: 1;
  6226. transform: translateY(-210px);
  6227. margin-bottom: -210px;
  6228. width: 20%;
  6229. }
  6230. @media (max-width: 810px) {
  6231. .path-ressources .layout-content .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 {
  6232. position: static;
  6233. margin-bottom: 2rem;
  6234. transform: none;
  6235. margin-bottom: 0px;
  6236. width: 80%;
  6237. }
  6238. }
  6239. @media (max-width: 479px) {
  6240. .path-ressources .layout-content .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 {
  6241. margin-left: 0;
  6242. }
  6243. }
  6244. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources::before {
  6245. content: "Afficher : ";
  6246. padding-right: 1rem;
  6247. font-weight: 800;
  6248. font-size: 1rem;
  6249. margin-bottom: 1rem;
  6250. display: block;
  6251. width: 100%;
  6252. }
  6253. @media (max-width: 479px) {
  6254. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources::before {
  6255. padding-bottom: 1rem;
  6256. }
  6257. }
  6258. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button {
  6259. background-color: transparent;
  6260. border: 1px solid black;
  6261. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  6262. margin-bottom: 0.5rem;
  6263. margin-right: 0.5rem;
  6264. font-size: 0.8rem;
  6265. color: rgb(9, 57, 139);
  6266. display: inline-flex;
  6267. flex-direction: row;
  6268. align-items: center;
  6269. }
  6270. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button:hover {
  6271. cursor: grab;
  6272. background-color: rgb(9, 57, 139);
  6273. color: white;
  6274. }
  6275. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button :visited {
  6276. color: rgb(9, 57, 139);
  6277. }
  6278. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  6279. content: url("../images/pictos/videos.svg");
  6280. padding-right: 0.5rem;
  6281. display: block;
  6282. }
  6283. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos:hover::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  6284. content: url("../images/pictos/videos-blanc.svg");
  6285. display: block;
  6286. }
  6287. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts {
  6288. display: none !important;
  6289. }
  6290. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts::before {
  6291. content: url("../images/pictos/podcasts.svg");
  6292. padding-right: 0.5rem;
  6293. display: block;
  6294. }
  6295. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts:hover::before {
  6296. content: url("../images/pictos/podcasts-blanc.svg");
  6297. display: block;
  6298. }
  6299. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos::before {
  6300. content: url("../images/pictos/en-images.svg");
  6301. display: block;
  6302. padding-right: 0.5rem;
  6303. }
  6304. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos:hover::before {
  6305. content: url("../images/pictos/en-images-blanc.svg");
  6306. display: block;
  6307. }
  6308. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres::before {
  6309. content: url("../images/pictos/ecrits.svg");
  6310. padding-right: 0.5rem;
  6311. display: block;
  6312. }
  6313. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres:hover::before {
  6314. content: url("../images/pictos/ecrits-blanc.svg");
  6315. display: block;
  6316. }
  6317. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles::before {
  6318. content: url("../images/pictos/ecrits.svg");
  6319. padding-right: 0.5rem;
  6320. display: block;
  6321. }
  6322. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles:hover::before {
  6323. content: url("../images/pictos/ecrits-blanc.svg");
  6324. display: block;
  6325. }
  6326. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports::before {
  6327. content: url("../images/pictos/ecrits.svg");
  6328. padding-right: 0.5rem;
  6329. display: block;
  6330. }
  6331. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports:hover::before {
  6332. content: url("../images/pictos/ecrits-blanc.svg");
  6333. display: block;
  6334. }
  6335. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active {
  6336. background-color: rgb(9, 57, 139);
  6337. color: white;
  6338. }
  6339. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active a {
  6340. color: white;
  6341. }
  6342. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos {
  6343. margin-top: 1rem;
  6344. }
  6345. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before {
  6346. content: url("../images/pictos/videos-blanc.svg");
  6347. }
  6348. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-podcasts a::before {
  6349. content: url("../images/pictos/podcasts-blanc.svg");
  6350. }
  6351. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-images---photos a::before {
  6352. content: url("../images/pictos/en-images-blanc.svg");
  6353. }
  6354. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-livres a::before {
  6355. content: url("../images/pictos/ecrits-blanc.svg");
  6356. }
  6357. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-articles a::before {
  6358. content: url("../images/pictos/ecrits-blanc.svg");
  6359. }
  6360. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-publications---rapports a::before {
  6361. content: url("../images/pictos/ecrits-blanc.svg");
  6362. }
  6363. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  6364. content: "Filtrer par : ";
  6365. padding-right: 1rem;
  6366. font-weight: 800;
  6367. font-size: 1rem;
  6368. margin-bottom: 1rem;
  6369. }
  6370. @media (max-width: 479px) {
  6371. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  6372. padding-bottom: 1rem;
  6373. }
  6374. }
  6375. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-type-de-media-target-id {
  6376. display: none;
  6377. }
  6378. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item {
  6379. font-size: 0.8rem;
  6380. }
  6381. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine {
  6382. border-top: none;
  6383. border-left: none;
  6384. border-right: none;
  6385. font-size: 0.8rem;
  6386. justify-content: flex-start !important;
  6387. }
  6388. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine label {
  6389. display: none;
  6390. }
  6391. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper {
  6392. display: inline-flex;
  6393. position: relative;
  6394. font-size: 0.8rem;
  6395. width: -webkit-fill-available; /* Safari/Chrome */
  6396. width: -moz-available; /* Firefox */
  6397. width: fill-available; /* standard futur */
  6398. width: 100%; /* fallback */
  6399. max-width: 100%;
  6400. }
  6401. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper::after {
  6402. content: url("../images/pictos/loupe.svg");
  6403. display: inline-block;
  6404. }
  6405. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper input {
  6406. text-align: start !important;
  6407. max-width: 100% !important;
  6408. }
  6409. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input {
  6410. position: absolute;
  6411. right: -4px;
  6412. top: 50%;
  6413. transform: translateY(-50%);
  6414. background: white;
  6415. border: none;
  6416. padding: 0.5rem;
  6417. margin: 0;
  6418. cursor: pointer;
  6419. color: #888;
  6420. display: none; /* masqué par défaut */
  6421. }
  6422. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input:hover {
  6423. color: #000;
  6424. }
  6425. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-date-de-parution-value .clear-input {
  6426. display: none;
  6427. }
  6428. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form select {
  6429. font-size: 0.8rem;
  6430. }
  6431. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form select ::placeholder {
  6432. display: none;
  6433. }
  6434. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form input {
  6435. font-size: 0.8rem;
  6436. }
  6437. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered {
  6438. display: flex;
  6439. flex-direction: row;
  6440. flex-wrap: wrap;
  6441. }
  6442. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper {
  6443. flex-wrap: wrap;
  6444. width: 85%;
  6445. }
  6446. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper .views-row {
  6447. padding: 1rem;
  6448. width: 30% !important;
  6449. }
  6450. .path-ressources .layout-content .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 {
  6451. transition: opacity 0.3s ease;
  6452. display: flex;
  6453. flex-direction: row;
  6454. flex-wrap: wrap;
  6455. padding-left: 26%;
  6456. }
  6457. @media (max-width: 810px) {
  6458. .path-ressources .layout-content .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 {
  6459. padding-left: 0;
  6460. }
  6461. }
  6462. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .border {
  6463. width: 80%;
  6464. border-top: solid 1px rgba(0, 0, 0, 0.3);
  6465. }
  6466. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme {
  6467. order: 1;
  6468. }
  6469. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme::before {
  6470. background-color: rgba(0, 158, 227, 0.2);
  6471. }
  6472. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme .views-row {
  6473. width: 45%;
  6474. min-width: 350px !important;
  6475. max-width: 500px;
  6476. }
  6477. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme .field--name-title h2 {
  6478. line-height: 1.2rem;
  6479. }
  6480. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme .field--name-field-sous-titre {
  6481. color: rgb(0, 158, 227);
  6482. line-height: 1.3 !important;
  6483. }
  6484. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-paroles-de-laureats {
  6485. order: 2;
  6486. }
  6487. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images {
  6488. order: 3;
  6489. }
  6490. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images .field--name-title h2 {
  6491. line-height: 1.4rem;
  6492. }
  6493. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images .slick-list {
  6494. padding-left: 0 !important;
  6495. }
  6496. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images::before {
  6497. background-color: rgba(0, 158, 227, 0.2);
  6498. }
  6499. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse {
  6500. order: 5;
  6501. }
  6502. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse h3 {
  6503. border: none;
  6504. }
  6505. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-des-partenaires-et-laureats {
  6506. order: 4;
  6507. }
  6508. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-autres {
  6509. order: 9;
  6510. }
  6511. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .type-documentation-partenariale {
  6512. order: 6;
  6513. }
  6514. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-these-et-memoire {
  6515. order: 8;
  6516. }
  6517. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) {
  6518. width: 100%;
  6519. position: relative;
  6520. z-index: 0;
  6521. padding-bottom: 1rem;
  6522. }
  6523. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer)::before {
  6524. content: "";
  6525. position: absolute;
  6526. left: -40%;
  6527. height: 100%;
  6528. width: 110vw;
  6529. z-index: 0;
  6530. }
  6531. @media (max-width: 810px) {
  6532. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer)::before {
  6533. left: 0;
  6534. }
  6535. }
  6536. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) > * {
  6537. position: relative;
  6538. z-index: 1;
  6539. }
  6540. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6541. top: 1rem;
  6542. text-transform: uppercase;
  6543. font-family: "Source Code Pro";
  6544. color: rgb(9, 57, 139) !important;
  6545. display: flex;
  6546. flex-direction: row;
  6547. align-items: center;
  6548. font-size: 1.7rem;
  6549. margin-block: 0em;
  6550. }
  6551. @media (max-width: 810px) {
  6552. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6553. padding-left: 2rem;
  6554. width: 70%;
  6555. }
  6556. }
  6557. @media (max-width: 479px) {
  6558. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6559. width: 65% !important;
  6560. }
  6561. }
  6562. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme {
  6563. border: none;
  6564. }
  6565. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme:before {
  6566. content: url("../images/pictos/picto-ressource-eqld.svg");
  6567. padding-right: 1rem;
  6568. }
  6569. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-paroles-de-laureats:before {
  6570. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  6571. padding-right: 1rem;
  6572. }
  6573. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-les-projets-en-images {
  6574. width: 80%;
  6575. }
  6576. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-les-projets-en-images:before {
  6577. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  6578. padding-right: 1rem;
  6579. }
  6580. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-presse:before {
  6581. content: url("../images/pictos/picto-ressource-presse.svg");
  6582. padding-right: 1rem;
  6583. }
  6584. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6585. background-color: rgb(255, 255, 255);
  6586. border: 1px solid rgb(0, 158, 227);
  6587. list-style: none;
  6588. padding: 0.5rem;
  6589. position: relative;
  6590. left: 60vw;
  6591. top: -1.5rem;
  6592. text-transform: uppercase;
  6593. font-size: 0.7rem;
  6594. font-weight: 500;
  6595. color: rgb(0, 158, 227);
  6596. display: inline-flex;
  6597. align-items: center;
  6598. }
  6599. @media (max-width: 810px) {
  6600. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6601. left: 81vw;
  6602. }
  6603. }
  6604. @media (max-width: 479px) {
  6605. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6606. left: 76vw;
  6607. top: -1.5rem;
  6608. }
  6609. }
  6610. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  6611. display: flex;
  6612. flex-direction: row;
  6613. }
  6614. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-track {
  6615. width: 100% !important;
  6616. display: flex;
  6617. flex-direction: row;
  6618. transform: none;
  6619. }
  6620. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-track .views-row {
  6621. width: 20%;
  6622. min-width: 250px;
  6623. max-width: 500px;
  6624. }
  6625. @media (max-width: 810px) {
  6626. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  6627. padding-left: 0rem !important;
  6628. flex-direction: column;
  6629. }
  6630. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .views-row {
  6631. width: 100% !important;
  6632. }
  6633. }
  6634. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6635. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6636. display: inline-block;
  6637. transform: scale(0.5); /* Réduction à 50% */
  6638. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6639. }
  6640. @media (max-width: 810px) {
  6641. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6642. transform: scale(0.5); /* Réduction à 50% */
  6643. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6644. }
  6645. }
  6646. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  6647. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6648. display: block;
  6649. display: inline-block;
  6650. transform: scaleX(-1);
  6651. transform: scale(-0.5, 0.5);
  6652. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6653. }
  6654. @media (max-width: 810px) {
  6655. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  6656. transform: scale(-0.5, 0.5);
  6657. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6658. }
  6659. }
  6660. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before,
  6661. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6662. opacity: 1 !important;
  6663. }
  6664. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev.slick-disabled::before,
  6665. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next.slick-disabled::before {
  6666. opacity: 0.3 !important;
  6667. }
  6668. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev,
  6669. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6670. top: 94%;
  6671. }
  6672. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6673. right: 35vw;
  6674. }
  6675. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6676. left: 25vw;
  6677. }
  6678. @media (max-width: 1400px) {
  6679. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6680. left: 20vw;
  6681. }
  6682. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6683. right: 30vw;
  6684. }
  6685. }
  6686. @media (max-width: 810px) {
  6687. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6688. left: 15vw;
  6689. }
  6690. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6691. right: 35vw;
  6692. }
  6693. }
  6694. @media (max-width: 479px) {
  6695. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6696. left: 8vw;
  6697. }
  6698. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6699. right: 30vw;
  6700. }
  6701. }
  6702. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  6703. padding-left: 0 !important;
  6704. }
  6705. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  6706. padding-left: 8% !important;
  6707. padding-right: 8% !important;
  6708. }
  6709. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  6710. padding-right: 0;
  6711. }
  6712. footer {
  6713. z-index: 1;
  6714. }
  6715. .carousel {
  6716. display: none;
  6717. }
  6718. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6719. display: flex !important;
  6720. flex-direction: column;
  6721. margin-left: 11%;
  6722. }
  6723. @media screen and (min-width: 1100px) {
  6724. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6725. display: flex;
  6726. }
  6727. }
  6728. @media screen and (max-width: 810px) {
  6729. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6730. margin-left: 0;
  6731. }
  6732. }
  6733. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  6734. margin-left: 0;
  6735. }
  6736. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6737. margin-top: 5rem;
  6738. padding: 0;
  6739. order: 7;
  6740. width: 85%;
  6741. }
  6742. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6743. display: grid;
  6744. grid-template-columns: 10fr 1fr;
  6745. gap: 4rem;
  6746. justify-content: center;
  6747. margin: auto;
  6748. }
  6749. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6750. display: flex;
  6751. align-items: center;
  6752. position: relative;
  6753. width: 100%;
  6754. margin: 0 auto;
  6755. }
  6756. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  6757. flex: 1;
  6758. text-align: center;
  6759. }
  6760. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  6761. width: 100%;
  6762. height: auto;
  6763. object-fit: contain;
  6764. max-height: 550px;
  6765. border: none;
  6766. }
  6767. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  6768. margin-top: 1rem;
  6769. font-family: sans-serif;
  6770. text-align: center;
  6771. font-size: 1rem;
  6772. color: #444;
  6773. }
  6774. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  6775. font-size: 2rem;
  6776. color: #333;
  6777. background: none;
  6778. border-radius: 50%;
  6779. width: 40px;
  6780. height: 40px;
  6781. line-height: 40px;
  6782. text-align: center;
  6783. cursor: pointer;
  6784. user-select: none;
  6785. transition: background 0.3s ease;
  6786. }
  6787. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  6788. background: #bbb;
  6789. }
  6790. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  6791. margin-right: 10px;
  6792. }
  6793. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  6794. margin-left: 10px;
  6795. }
  6796. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  6797. margin-top: 10px;
  6798. font-family: sans-serif;
  6799. grid-column: 2;
  6800. grid-row: 2;
  6801. }
  6802. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  6803. grid-column: 2;
  6804. display: flex;
  6805. flex-direction: column;
  6806. align-items: center;
  6807. max-height: 60vh;
  6808. grid-row: 1/span 2;
  6809. top: 0px;
  6810. position: relative;
  6811. overflow: hidden;
  6812. }
  6813. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  6814. cursor: pointer;
  6815. padding: 5px 10px;
  6816. background: #00aaff;
  6817. color: white;
  6818. border-radius: 50%;
  6819. user-select: none;
  6820. z-index: 2;
  6821. position: relative;
  6822. }
  6823. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.up {
  6824. transform: rotate(90deg);
  6825. }
  6826. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.down {
  6827. transform: rotate(90deg);
  6828. }
  6829. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  6830. display: flex;
  6831. flex-direction: column;
  6832. gap: 6px;
  6833. overflow-y: auto;
  6834. max-height: 100%;
  6835. scroll-behavior: smooth;
  6836. position: relative;
  6837. z-index: 0;
  6838. }
  6839. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails::-webkit-scrollbar {
  6840. display: none;
  6841. }
  6842. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  6843. width: 80px;
  6844. height: 60px;
  6845. object-fit: contain;
  6846. border: 2px solid transparent;
  6847. cursor: pointer;
  6848. opacity: 0.3;
  6849. transition: transform 0.3s ease, opacity 0.3s ease;
  6850. }
  6851. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img.active {
  6852. transform: scale(1.3);
  6853. margin-top: 0.8rem;
  6854. margin-bottom: 0.8rem;
  6855. opacity: 1;
  6856. z-index: 1;
  6857. }
  6858. @media screen and (max-width: 810px) {
  6859. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6860. display: flex;
  6861. flex-direction: column;
  6862. gap: 2rem;
  6863. align-items: center;
  6864. width: 100vw;
  6865. }
  6866. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6867. width: 90%;
  6868. }
  6869. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6870. width: 100%;
  6871. display: flex !important;
  6872. flex-direction: row !important; /* 👈 corrige l'orientation */
  6873. justify-content: center;
  6874. align-items: center;
  6875. overflow-x: auto;
  6876. overflow-y: hidden;
  6877. max-height: none;
  6878. padding: 1rem 0;
  6879. position: relative;
  6880. }
  6881. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6882. display: flex !important;
  6883. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6884. gap: 0.8 rem !important;
  6885. overflow-x: auto;
  6886. overflow-y: hidden;
  6887. scroll-behavior: smooth;
  6888. padding: 0 1rem;
  6889. max-width: 100%;
  6890. flex-wrap: nowrap;
  6891. }
  6892. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6893. display: none;
  6894. }
  6895. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6896. width: 60px;
  6897. height: 45px;
  6898. flex-shrink: 0; /* évite l’écrasement */
  6899. }
  6900. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6901. display: none; /* inutile si scroll horizontal */
  6902. }
  6903. }
  6904. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6905. display: none;
  6906. }
  6907. @media screen and (max-width: 810px) {
  6908. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6909. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6910. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6911. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6912. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6913. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6914. margin-left: 7%;
  6915. }
  6916. }
  6917. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6918. transform: translateY(-45.5rem);
  6919. }
  6920. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6921. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6922. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6923. transform: translateY(-16rem);
  6924. }
  6925. .carousel {
  6926. display: none;
  6927. }
  6928. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6929. display: flex !important;
  6930. flex-direction: column;
  6931. margin-left: 11%;
  6932. width: 60%;
  6933. }
  6934. @media screen and (min-width: 1100px) {
  6935. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6936. display: flex;
  6937. }
  6938. }
  6939. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6940. margin-left: 0;
  6941. }
  6942. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6943. display: none;
  6944. }
  6945. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6946. order: 1;
  6947. }
  6948. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6949. order: 2;
  6950. }
  6951. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6952. order: 3;
  6953. }
  6954. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6955. order: 5;
  6956. }
  6957. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6958. order: 4;
  6959. }
  6960. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6961. order: 6;
  6962. }
  6963. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6964. order: 7;
  6965. margin-top: 2rem;
  6966. }
  6967. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6968. margin-top: 0rem;
  6969. }
  6970. /*partials*/
  6971. .layout-container {
  6972. position: relative;
  6973. width: 100vw;
  6974. }
  6975. .layout-container header {
  6976. position: fixed;
  6977. z-index: 99;
  6978. width: 100vw;
  6979. }
  6980. #header-top {
  6981. height: 7rem;
  6982. background-color: rgb(255, 255, 255);
  6983. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6984. display: flex;
  6985. flex-direction: row;
  6986. color: rgb(0, 0, 0);
  6987. top: 0%;
  6988. scroll-margin: 8rem;
  6989. }
  6990. @media (max-width: 810px) {
  6991. #header-top {
  6992. height: 5rem;
  6993. }
  6994. }
  6995. #header-top .region-header-top-left {
  6996. display: flex;
  6997. flex-direction: row;
  6998. padding-left: 4%;
  6999. align-items: center;
  7000. color: rgb(0, 0, 0);
  7001. flex: 1;
  7002. }
  7003. #header-top .region-header-top-left #block-logogouv {
  7004. display: flex;
  7005. height: 100%;
  7006. align-items: center;
  7007. }
  7008. @media (max-width: 810px) {
  7009. #header-top .region-header-top-left #block-logogouv .field--name-field-logo {
  7010. height: 100%;
  7011. }
  7012. }
  7013. #header-top .region-header-top-left #block-logogouv img {
  7014. width: auto;
  7015. height: 100%;
  7016. }
  7017. #header-top .region-header-top-left #block-eql-logoepau {
  7018. height: 100%;
  7019. align-content: center;
  7020. padding-left: 1rem;
  7021. }
  7022. #header-top .region-header-top-rigth {
  7023. display: flex;
  7024. flex-direction: row;
  7025. width: 40%;
  7026. align-items: center;
  7027. justify-content: flex-end;
  7028. }
  7029. #header-top .region-header-top-rigth #block-eql-identitedusite {
  7030. text-transform: uppercase;
  7031. font-family: "Source Code Pro";
  7032. color: rgb(9, 57, 139) !important;
  7033. font-size: 1rem;
  7034. text-align: end;
  7035. width: 30%;
  7036. }
  7037. #header-top .region-header-top-rigth #block-eql-identitedusite :visited {
  7038. color: rgb(9, 57, 139) !important;
  7039. }
  7040. #header-top .region-header-top-rigth #block-eql-identitedusite :link {
  7041. color: rgb(9, 57, 139) !important;
  7042. }
  7043. @media (max-width: 883px) {
  7044. #header-top .region-header-top-rigth #block-eql-identitedusite {
  7045. display: none;
  7046. }
  7047. }
  7048. #header-top .region-header-top-rigth #block-logoeql {
  7049. padding-left: 1rem;
  7050. padding-right: 2rem;
  7051. height: 100%;
  7052. align-items: center;
  7053. }
  7054. @media (max-width: 810px) {
  7055. #header-top .region-header-top-rigth #block-logoeql {
  7056. padding-right: 1rem;
  7057. }
  7058. }
  7059. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo {
  7060. height: 100%;
  7061. }
  7062. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a {
  7063. display: flex;
  7064. align-items: center;
  7065. height: 100%;
  7066. }
  7067. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a img {
  7068. width: auto;
  7069. height: 80%;
  7070. }
  7071. #header-top .region-header-top-rigth #block-burger {
  7072. z-index: 1;
  7073. background-color: rgb(0, 158, 227);
  7074. font-size: 0.7rem;
  7075. color: black;
  7076. display: block;
  7077. width: 7rem;
  7078. height: 100%;
  7079. margin-top: 0;
  7080. aspect-ratio: 1;
  7081. }
  7082. #header-top .region-header-top-rigth #block-burger :hover {
  7083. cursor: pointer;
  7084. }
  7085. @media (max-width: 810px) {
  7086. #header-top .region-header-top-rigth #block-burger {
  7087. width: 4rem;
  7088. }
  7089. }
  7090. #header-top .region-header-top-rigth #block-burger h2 {
  7091. padding-top: 1rem;
  7092. font-size: 1em;
  7093. font-weight: light;
  7094. color: rgb(0, 158, 227);
  7095. }
  7096. @media (max-width: 810px) {
  7097. #header-top .region-header-top-rigth #block-burger h2 {
  7098. padding-top: 0;
  7099. }
  7100. }
  7101. #header-top .region-header-top-rigth #block-burger h2:after {
  7102. display: block;
  7103. margin: auto;
  7104. height: 70px;
  7105. content: url('data:image/svg+xml,<svg width="50" 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="black" stroke-width="2"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/></svg>');
  7106. }
  7107. @media (max-width: 810px) {
  7108. #header-top .region-header-top-rigth #block-burger h2:after {
  7109. content: url('data:image/svg+xml,<svg width="40" 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="black" stroke-width="2"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/></svg>');
  7110. }
  7111. }
  7112. #header-top .region-header-top-rigth #block-burger #block-burger-menu {
  7113. display: block;
  7114. margin: 0;
  7115. align-self: center;
  7116. text-align: center;
  7117. }
  7118. #header-top .region-header-top-rigth #block-burger .ul1:not(.sous-liste) {
  7119. width: 300%;
  7120. position: relative;
  7121. right: 260px;
  7122. margin: 0;
  7123. padding-top: 2rem;
  7124. padding-bottom: 2rem;
  7125. z-index: 99;
  7126. }
  7127. #header-top .region-header-top-rigth #block-burger ul {
  7128. display: none;
  7129. background-color: rgb(0, 158, 227);
  7130. line-height: 2rem;
  7131. list-style: none;
  7132. }
  7133. #header-top .region-header-top-rigth #block-burger ul .ul1 .sous-liste a {
  7134. opacity: 1;
  7135. }
  7136. #header-top .region-header-top-rigth #block-burger ul a {
  7137. opacity: 1;
  7138. color: rgb(255, 255, 255);
  7139. font-weight: 800;
  7140. font-size: 1rem;
  7141. }
  7142. #header-top .region-header-top-rigth #block-burger.opened ul {
  7143. display: block;
  7144. }
  7145. #header-top #block-socialnetwork-2 {
  7146. display: none;
  7147. position: relative;
  7148. top: -33px;
  7149. align-self: flex-end;
  7150. margin-left: auto;
  7151. }
  7152. #header-top #block-socialnetwork-2 .field--name-body {
  7153. min-height: 75px;
  7154. }
  7155. #header-top #block-socialnetwork-2 p {
  7156. display: flex;
  7157. flex-direction: row-reverse;
  7158. margin-bottom: 0;
  7159. min-height: 65px;
  7160. justify-content: space-around;
  7161. width: 140px;
  7162. }
  7163. #header-top #block-socialnetwork-2 p a {
  7164. color: rgb(255, 255, 255);
  7165. font-size: 0;
  7166. }
  7167. #header-top #block-socialnetwork-2 p svg.ext {
  7168. display: none;
  7169. }
  7170. #header-top #block-socialnetwork-2 p .link-twitter {
  7171. display: flex;
  7172. background-color: black;
  7173. width: 40px;
  7174. justify-content: center;
  7175. align-items: flex-end;
  7176. }
  7177. #header-top #block-socialnetwork-2 p .link-twitter:before {
  7178. content: url("../images/pictos/logo_x_blanc.svg");
  7179. min-width: 30px;
  7180. padding-bottom: 0.5rem;
  7181. }
  7182. #header-top #block-socialnetwork-2 p .link-youtube {
  7183. display: flex;
  7184. background-color: black;
  7185. min-width: 40px;
  7186. justify-content: center;
  7187. align-items: flex-end;
  7188. }
  7189. #header-top #block-socialnetwork-2 p .link-youtube:before {
  7190. content: url("../images/pictos/youtube_white.svg");
  7191. min-width: 25px;
  7192. padding-bottom: 0.5rem;
  7193. }
  7194. #header-top #block-socialnetwork-2 p .link-linkedin {
  7195. display: flex;
  7196. background-color: black;
  7197. min-width: 40px;
  7198. justify-content: center;
  7199. align-items: flex-end;
  7200. }
  7201. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  7202. content: url("../images/pictos/linkedin_white.svg");
  7203. min-width: 35px;
  7204. padding-bottom: 0.2rem;
  7205. }
  7206. .region-header-bottom {
  7207. box-shadow: 0 4px 4px 3px rgba(0, 0, 0, 0.1);
  7208. }
  7209. .region-header-bottom #block-headermenu {
  7210. align-self: baseline;
  7211. width: 100%;
  7212. background-color: white;
  7213. border-top: solid rgb(0, 158, 227) 1px;
  7214. }
  7215. .region-header-bottom ul {
  7216. font-size: 1rem;
  7217. font-weight: 900;
  7218. list-style: none;
  7219. display: flex;
  7220. flex-direction: row;
  7221. justify-content: space-evenly;
  7222. width: 100%;
  7223. padding-inline-start: 0px;
  7224. padding: 1rem;
  7225. margin-top: 0 !important;
  7226. padding-bottom: 0.5rem;
  7227. }
  7228. .region-header-bottom ul .is-active {
  7229. color: rgb(0, 158, 227);
  7230. }
  7231. .region-header-bottom ul ul {
  7232. position: absolute;
  7233. left: -28%;
  7234. z-index: 1000;
  7235. display: flex;
  7236. flex-direction: column;
  7237. min-width: 210px;
  7238. width: fit-content;
  7239. justify-content: space-between;
  7240. padding-inline-start: 0px;
  7241. }
  7242. .region-header-bottom ul ul .is-active {
  7243. color: rgb(0, 158, 227);
  7244. }
  7245. .region-header-bottom ul ul {
  7246. opacity: 0;
  7247. visibility: hidden;
  7248. transform: translateY(-10px);
  7249. transition: opacity 0.3s ease, transform 0.3s ease;
  7250. }
  7251. .region-header-bottom ul li {
  7252. position: relative;
  7253. display: flex;
  7254. flex-direction: column;
  7255. background-color: rgb(255, 255, 255);
  7256. padding-bottom: 0.8rem;
  7257. max-width: inherit;
  7258. padding-left: 1rem;
  7259. padding-right: 0.5rem;
  7260. height: fit-content;
  7261. }
  7262. .region-header-bottom ul li a {
  7263. color: rgb(0, 0, 0);
  7264. }
  7265. .region-header-bottom ul li .is-active {
  7266. color: rgb(0, 158, 227);
  7267. }
  7268. .region-header-bottom ul li :hover {
  7269. color: rgb(0, 158, 227);
  7270. }
  7271. .region-header-bottom ul li:hover ul {
  7272. opacity: 1;
  7273. visibility: visible;
  7274. transform: translateY(0);
  7275. }
  7276. .region-header-bottom ul .ul1.sous-liste.ul2 {
  7277. padding-left: 1rem;
  7278. }
  7279. #fotter-bottom {
  7280. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  7281. display: flex;
  7282. flex: 1 1 120px;
  7283. flex-direction: row;
  7284. background-color: rgb(255, 255, 255);
  7285. padding-top: 3rem;
  7286. }
  7287. @media (max-width: 810px) {
  7288. #fotter-bottom {
  7289. flex-direction: column;
  7290. padding-right: 1rem;
  7291. }
  7292. }
  7293. #fotter-bottom .region {
  7294. display: block;
  7295. padding-left: 2rem;
  7296. padding-right: 1rem;
  7297. padding-bottom: 1rem;
  7298. border-left: rgb(0, 158, 227) solid 1px;
  7299. }
  7300. #fotter-bottom .region h2 {
  7301. margin-top: 0;
  7302. color: rgb(9, 57, 139);
  7303. font-size: 1.2rem;
  7304. }
  7305. #fotter-bottom .region-footer-bottom-left {
  7306. margin-left: 3rem;
  7307. border: none;
  7308. }
  7309. @media (max-width: 810px) {
  7310. #fotter-bottom .region-footer-bottom-left {
  7311. width: 100%;
  7312. margin-left: 0rem;
  7313. }
  7314. }
  7315. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  7316. display: flex;
  7317. flex-direction: row;
  7318. justify-content: flex-start;
  7319. flex-wrap: wrap;
  7320. padding-top: 1rem;
  7321. }
  7322. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  7323. padding-right: 1rem;
  7324. padding-bottom: 1rem;
  7325. }
  7326. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  7327. width: auto;
  7328. height: 30px;
  7329. }
  7330. #fotter-bottom .region-footer-bottom-right {
  7331. display: flex;
  7332. flex-direction: column-reverse;
  7333. justify-content: flex-end;
  7334. }
  7335. @media (max-width: 810px) {
  7336. #fotter-bottom .region-footer-bottom-right {
  7337. width: 100%;
  7338. }
  7339. }
  7340. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  7341. margin-bottom: 1rem;
  7342. }
  7343. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  7344. margin-top: 0;
  7345. display: flex;
  7346. flex-direction: row-reverse;
  7347. justify-content: flex-end;
  7348. }
  7349. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  7350. color: rgb(255, 255, 255);
  7351. font-size: 0;
  7352. padding-left: 1rem;
  7353. }
  7354. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a.link-linkedin {
  7355. padding-left: 0;
  7356. }
  7357. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  7358. display: none;
  7359. }
  7360. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  7361. display: none;
  7362. }
  7363. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  7364. content: url("../images/pictos/logo_x_rond.png");
  7365. min-width: 50px;
  7366. align-self: center;
  7367. }
  7368. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  7369. display: flex;
  7370. }
  7371. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  7372. content: url("../images/pictos/youtube_rond.svg");
  7373. min-width: 50px;
  7374. }
  7375. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  7376. display: flex;
  7377. }
  7378. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  7379. content: url("../images/pictos/linkedin_rond.svg");
  7380. min-width: 50px;
  7381. }
  7382. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  7383. margin-top: 0;
  7384. color: rgb(9, 57, 139);
  7385. font-weight: 800;
  7386. list-style: none;
  7387. padding-left: 0;
  7388. }
  7389. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  7390. color: rgb(9, 57, 139);
  7391. font-size: 1.2rem;
  7392. text-decoration: underline;
  7393. margin-top: 0;
  7394. }
  7395. #fotter-bottom .region-footer-bottom-middle {
  7396. width: 60%;
  7397. }
  7398. @media (max-width: 810px) {
  7399. #fotter-bottom .region-footer-bottom-middle {
  7400. width: 100%;
  7401. }
  7402. }
  7403. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  7404. display: flex;
  7405. flex-direction: row;
  7406. justify-content: flex-start;
  7407. flex-wrap: wrap;
  7408. }
  7409. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  7410. padding-right: 1rem;
  7411. padding-bottom: 1rem;
  7412. }
  7413. .slick-prev {
  7414. color: rgb(0, 158, 227);
  7415. left: 25px;
  7416. }
  7417. .path-frontpage .slick-dots {
  7418. bottom: -40px !important;
  7419. }
  7420. .path-frontpage .slick-prev::before,
  7421. .path-frontpage .slick-next::before {
  7422. opacity: 1;
  7423. }
  7424. /* Slider */
  7425. .slick-slider {
  7426. position: relative;
  7427. display: block;
  7428. box-sizing: border-box;
  7429. -webkit-touch-callout: none;
  7430. -webkit-user-select: none;
  7431. -khtml-user-select: none;
  7432. -moz-user-select: none;
  7433. -ms-user-select: none;
  7434. user-select: none;
  7435. -ms-touch-action: pan-y;
  7436. touch-action: pan-y;
  7437. -webkit-tap-highlight-color: transparent;
  7438. }
  7439. .slick-list {
  7440. position: relative;
  7441. overflow: hidden;
  7442. display: block;
  7443. margin: 0;
  7444. padding: 0;
  7445. }
  7446. .slick-list:focus {
  7447. outline: none;
  7448. }
  7449. .slick-list.dragging {
  7450. cursor: pointer;
  7451. cursor: hand;
  7452. }
  7453. .slick-slider .slick-track,
  7454. .slick-slider .slick-list {
  7455. -webkit-transform: translate3d(0, 0, 0);
  7456. -moz-transform: translate3d(0, 0, 0);
  7457. -ms-transform: translate3d(0, 0, 0);
  7458. -o-transform: translate3d(0, 0, 0);
  7459. transform: translate3d(0, 0, 0);
  7460. }
  7461. .slick-track {
  7462. position: relative;
  7463. left: 0;
  7464. top: 0;
  7465. display: block;
  7466. margin-left: auto;
  7467. margin-right: auto;
  7468. }
  7469. .slick-track:before, .slick-track:after {
  7470. content: "";
  7471. display: table;
  7472. }
  7473. .slick-track:after {
  7474. clear: both;
  7475. }
  7476. .slick-loading .slick-track {
  7477. visibility: hidden;
  7478. }
  7479. .slick-slide {
  7480. float: left;
  7481. height: 100%;
  7482. min-height: 1px;
  7483. }
  7484. [dir=rtl] .slick-slide {
  7485. float: right;
  7486. }
  7487. .slick-slide img {
  7488. display: block;
  7489. }
  7490. .slick-slide.slick-loading img {
  7491. display: none;
  7492. }
  7493. .slick-slide {
  7494. display: none;
  7495. }
  7496. .slick-slide.dragging img {
  7497. pointer-events: none;
  7498. }
  7499. .slick-initialized .slick-slide {
  7500. display: block;
  7501. }
  7502. .slick-loading .slick-slide {
  7503. visibility: hidden;
  7504. }
  7505. .slick-vertical .slick-slide {
  7506. display: block;
  7507. height: auto;
  7508. border: 1px solid transparent;
  7509. }
  7510. .slick-arrow.slick-hidden {
  7511. display: none;
  7512. }
  7513. /* Slider */
  7514. .slick-loading .slick-list {
  7515. background: #fff url("./ajax-loader.gif") center center no-repeat;
  7516. }
  7517. /* Icons */
  7518. /* Arrows */
  7519. .slick-prev,
  7520. .slick-next {
  7521. position: absolute;
  7522. display: block;
  7523. height: 60px;
  7524. width: 60px;
  7525. line-height: 0px;
  7526. font-size: 0px;
  7527. cursor: pointer;
  7528. background: transparent;
  7529. color: transparent;
  7530. top: 50%;
  7531. -webkit-transform: translate(0, -50%);
  7532. -ms-transform: translate(0, -50%);
  7533. transform: translate(0, -50%);
  7534. padding: 0;
  7535. border: none;
  7536. outline: none;
  7537. }
  7538. .slick-prev:hover,
  7539. .slick-next:hover {
  7540. outline: none;
  7541. background: transparent;
  7542. color: transparent;
  7543. }
  7544. .slick-prev:hover:before,
  7545. .slick-next:hover:before {
  7546. opacity: 0.2;
  7547. }
  7548. .slick-prev.slick-disabled:before,
  7549. .slick-next.slick-disabled:before {
  7550. opacity: 0;
  7551. }
  7552. .slick-prev:before,
  7553. .slick-next:before {
  7554. font-family: "marianne";
  7555. font-size: 60px;
  7556. line-height: 1;
  7557. color: rgb(0, 158, 227);
  7558. opacity: 0;
  7559. -webkit-font-smoothing: antialiased;
  7560. -moz-osx-font-smoothing: grayscale;
  7561. }
  7562. .slick-prev {
  7563. z-index: 1;
  7564. left: 25px;
  7565. }
  7566. [dir=rtl] .slick-prev {
  7567. left: auto;
  7568. right: 25px;
  7569. }
  7570. .slick-prev:before {
  7571. content: "←";
  7572. }
  7573. [dir=rtl] .slick-prev:before {
  7574. content: "→";
  7575. }
  7576. .slick-next {
  7577. right: 25px;
  7578. }
  7579. [dir=rtl] .slick-next {
  7580. left: 25px;
  7581. right: auto;
  7582. }
  7583. .slick-next:before {
  7584. content: "→";
  7585. }
  7586. [dir=rtl] .slick-next:before {
  7587. content: "←";
  7588. }
  7589. /* Dots */
  7590. .slick-dotted.slick-slider {
  7591. margin-bottom: 30px;
  7592. }
  7593. 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 {
  7594. width: 600px;
  7595. }
  7596. .slick-dots {
  7597. list-style: none;
  7598. display: block;
  7599. text-align: center;
  7600. padding: 0;
  7601. margin: 0;
  7602. width: 100%;
  7603. }
  7604. .slick-dots li {
  7605. position: relative;
  7606. display: inline-block;
  7607. height: 20px;
  7608. width: 20px;
  7609. margin: 0 5px;
  7610. padding: 0;
  7611. cursor: pointer;
  7612. }
  7613. .slick-dots li button {
  7614. border: 0;
  7615. background: transparent;
  7616. display: block;
  7617. height: 20px;
  7618. width: 20px;
  7619. outline: none;
  7620. line-height: 0px;
  7621. font-size: 0px;
  7622. color: transparent;
  7623. padding: 5px;
  7624. cursor: pointer;
  7625. }
  7626. .slick-dots li button:hover, .slick-dots li button:focus {
  7627. outline: none;
  7628. }
  7629. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  7630. opacity: 0.2;
  7631. }
  7632. .slick-dots li button:before {
  7633. position: absolute;
  7634. top: 0;
  7635. left: 0;
  7636. content: "•";
  7637. width: 20px;
  7638. height: 20px;
  7639. font-family: "marianne";
  7640. font-size: 50px;
  7641. line-height: 20px;
  7642. text-align: center;
  7643. color: black;
  7644. opacity: 0.2;
  7645. -webkit-font-smoothing: antialiased;
  7646. -moz-osx-font-smoothing: grayscale;
  7647. }
  7648. .slick-dots li.slick-active button:before {
  7649. color: black;
  7650. opacity: 0.5;
  7651. }
  7652. #views-exposed-form-projets-block-1 {
  7653. flex-direction: row;
  7654. position: relative;
  7655. align-items: center;
  7656. }
  7657. @media (max-width: 810px) {
  7658. #views-exposed-form-projets-block-1 select {
  7659. max-width: 58%;
  7660. }
  7661. }
  7662. #views-exposed-form-base-de-donnees-block-1 {
  7663. flex-direction: column;
  7664. margin-top: 1rem;
  7665. }
  7666. @media (max-width: 479px) {
  7667. #views-exposed-form-base-de-donnees-block-1 {
  7668. justify-content: center;
  7669. }
  7670. }
  7671. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  7672. margin-right: 0 !important;
  7673. margin-bottom: 0.5rem !important;
  7674. padding: 0.2rem !important;
  7675. }
  7676. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7677. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  7678. width: 100%;
  7679. text-align: end;
  7680. }
  7681. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  7682. padding-right: 0.5rem !important;
  7683. flex: 2 0 auto !important;
  7684. }
  7685. #views-exposed-form-base-de-donnees-block-1,
  7686. #views-exposed-form-projets-block-1,
  7687. #views-exposed-form-projets-page-1 {
  7688. display: flex;
  7689. flex-wrap: wrap;
  7690. }
  7691. @media (max-width: 810px) {
  7692. #views-exposed-form-base-de-donnees-block-1,
  7693. #views-exposed-form-projets-block-1,
  7694. #views-exposed-form-projets-page-1 {
  7695. font-size: 0.8rem;
  7696. }
  7697. }
  7698. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7699. #views-exposed-form-projets-block-1 .js-form-item,
  7700. #views-exposed-form-projets-page-1 .js-form-item {
  7701. display: flex;
  7702. flex-direction: row;
  7703. max-width: 100%;
  7704. margin-right: 1rem;
  7705. margin-bottom: 1rem;
  7706. padding: 0.5rem 1rem;
  7707. align-items: baseline;
  7708. border: solid black 0.5px;
  7709. justify-content: space-evenly;
  7710. }
  7711. @media (max-width: 810px) {
  7712. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7713. #views-exposed-form-projets-block-1 .js-form-item,
  7714. #views-exposed-form-projets-page-1 .js-form-item {
  7715. display: flex;
  7716. flex-direction: row;
  7717. justify-content: space-between;
  7718. max-width: 85%;
  7719. }
  7720. }
  7721. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7722. #views-exposed-form-projets-block-1 .js-form-item label,
  7723. #views-exposed-form-projets-page-1 .js-form-item label {
  7724. flex: 2 1 auto;
  7725. padding-right: 2rem;
  7726. }
  7727. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  7728. #views-exposed-form-projets-block-1 .js-form-item label::after,
  7729. #views-exposed-form-projets-page-1 .js-form-item label::after {
  7730. content: " : ";
  7731. }
  7732. @media (max-width: 810px) {
  7733. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7734. #views-exposed-form-projets-block-1 .js-form-item label,
  7735. #views-exposed-form-projets-page-1 .js-form-item label {
  7736. padding-right: 1rem;
  7737. }
  7738. }
  7739. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7740. #views-exposed-form-projets-block-1 .js-form-item input,
  7741. #views-exposed-form-projets-page-1 .js-form-item input {
  7742. flex: 2 1 auto;
  7743. max-width: 55%;
  7744. }
  7745. @media (max-width: 810px) {
  7746. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7747. #views-exposed-form-projets-block-1 .js-form-item input,
  7748. #views-exposed-form-projets-page-1 .js-form-item input {
  7749. max-width: 100%;
  7750. }
  7751. }
  7752. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  7753. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox,
  7754. #views-exposed-form-projets-page-1 .js-form-item .form-checkbox {
  7755. margin-right: 1rem;
  7756. }
  7757. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  7758. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper,
  7759. #views-exposed-form-projets-page-1 .js-form-item .select-wrapper {
  7760. margin: 0;
  7761. }
  7762. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  7763. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after,
  7764. #views-exposed-form-projets-page-1 .js-form-type-checkbox label::after {
  7765. content: none;
  7766. }
  7767. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  7768. #views-exposed-form-projets-block-1 .form-actions input,
  7769. #views-exposed-form-projets-page-1 .form-actions input {
  7770. color: white;
  7771. font-weight: 600;
  7772. text-transform: uppercase;
  7773. padding: 0.3rem 0.7rem;
  7774. background-color: rgb(0, 158, 227);
  7775. border: none;
  7776. }
  7777. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7778. #views-exposed-form-projets-block-1 input,
  7779. #views-exposed-form-projets-block-1 select,
  7780. #views-exposed-form-projets-page-1 input,
  7781. #views-exposed-form-projets-page-1 select {
  7782. border: none;
  7783. background-color: transparent;
  7784. font-family: "Marianne";
  7785. font-size: 1rem;
  7786. }
  7787. @media (max-width: 810px) {
  7788. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7789. #views-exposed-form-projets-block-1 input,
  7790. #views-exposed-form-projets-block-1 select,
  7791. #views-exposed-form-projets-page-1 input,
  7792. #views-exposed-form-projets-page-1 select {
  7793. font-size: 0.8rem;
  7794. }
  7795. }
  7796. article.node-type-ressource {
  7797. margin-bottom: 1rem;
  7798. padding-right: 1rem;
  7799. }
  7800. article.node-type-ressource h2 {
  7801. text-align: left !important;
  7802. }
  7803. article.node-type-ressource .ext {
  7804. color: black;
  7805. }
  7806. article.node-type-ressource svg.ext {
  7807. display: none;
  7808. }
  7809. article.node-type-ressource :visited {
  7810. color: black;
  7811. }
  7812. article.node-type-ressource a {
  7813. color: black;
  7814. }
  7815. article.node-type-ressource .wrapper-ressource {
  7816. display: flex;
  7817. flex-direction: column;
  7818. position: relative;
  7819. }
  7820. article.node-type-ressource .wrapper-ressource .card-link {
  7821. position: absolute;
  7822. inset: 0;
  7823. z-index: 10;
  7824. display: block;
  7825. }
  7826. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  7827. order: 2;
  7828. }
  7829. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7830. order: 1;
  7831. }
  7832. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  7833. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7834. grid-column: 1;
  7835. text-transform: uppercase;
  7836. line-height: 1.1rem;
  7837. margin-top: 0.5rem;
  7838. }
  7839. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  7840. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  7841. color: rgb(0, 158, 227);
  7842. font-weight: 900;
  7843. font-size: 0.8rem;
  7844. pointer-events: none;
  7845. cursor: default;
  7846. }
  7847. article.node-type-ressource .wrapper-ressource .field--name-title {
  7848. grid-column: 2;
  7849. margin-top: 0.5rem;
  7850. order: 4;
  7851. margin-bottom: 0;
  7852. }
  7853. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7854. margin: 0;
  7855. line-height: 1.2rem;
  7856. margin-left: 0 !important;
  7857. line-height: 0;
  7858. margin-bottom: 0 !important;
  7859. }
  7860. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  7861. color: rgb(0, 0, 0);
  7862. font-size: 0.9rem;
  7863. font-weight: 900;
  7864. font-style: normal;
  7865. display: -webkit-box;
  7866. -webkit-box-orient: vertical;
  7867. -webkit-line-clamp: 4;
  7868. overflow: hidden;
  7869. text-overflow: ellipsis;
  7870. line-height: 1.4em;
  7871. }
  7872. @media (max-width: 810px) {
  7873. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7874. line-height: 0 !important;
  7875. }
  7876. }
  7877. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  7878. grid-column: 2;
  7879. margin-top: 0.5rem;
  7880. font-weight: 800;
  7881. line-height: 1.1rem;
  7882. order: 6 !important;
  7883. font-size: 0.8rem;
  7884. }
  7885. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  7886. margin: 0;
  7887. }
  7888. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  7889. display: none;
  7890. }
  7891. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  7892. grid-column: 2;
  7893. margin-top: 0.8rem;
  7894. order: 5;
  7895. font-size: 0.9rem;
  7896. font-weight: 900;
  7897. line-height: 1.3 !important;
  7898. display: -webkit-box;
  7899. -webkit-box-orient: vertical;
  7900. -webkit-line-clamp: 3;
  7901. overflow: hidden;
  7902. text-overflow: ellipsis;
  7903. }
  7904. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  7905. order: 7;
  7906. grid-column: 2;
  7907. margin-top: 0.5rem;
  7908. font-size: 0.8rem;
  7909. }
  7910. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  7911. margin: 0;
  7912. }
  7913. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  7914. display: none;
  7915. }
  7916. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  7917. order: 3;
  7918. grid-column: 1;
  7919. }
  7920. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  7921. height: 100px;
  7922. }
  7923. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  7924. height: 100%;
  7925. width: auto;
  7926. border: solid 1px gray;
  7927. }
  7928. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  7929. grid-column: 2;
  7930. margin-top: 0.3rem;
  7931. order: 8;
  7932. font-size: 0.8rem;
  7933. }
  7934. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  7935. order: 9;
  7936. grid-column: 2;
  7937. display: flex;
  7938. margin-top: 0.5rem;
  7939. flex-direction: row;
  7940. flex-wrap: wrap;
  7941. }
  7942. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  7943. margin-right: 0.5rem;
  7944. padding-right: 0.3rem;
  7945. margin-bottom: 0.3rem;
  7946. font-size: 0.7rem;
  7947. }
  7948. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  7949. background: rgb(9, 57, 139);
  7950. color: rgb(255, 255, 255);
  7951. font-weight: 800;
  7952. padding-left: 0.1rem;
  7953. padding-right: 0.1rem;
  7954. display: inline-flex;
  7955. pointer-events: none;
  7956. cursor: default;
  7957. }
  7958. article.node-type-ressource .wrapper-ressource ul.links.inline {
  7959. display: none;
  7960. }
  7961. article.node-type-ressource.type-publications-issues-du-programme {
  7962. min-width: 300px;
  7963. }
  7964. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  7965. display: grid;
  7966. grid-template-columns: 1fr 1.8fr;
  7967. grid-template-rows: repeat(5 1fr);
  7968. }
  7969. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  7970. order: 2;
  7971. grid-row: 2;
  7972. grid-column: 1/span 2;
  7973. margin-bottom: 0.5rem;
  7974. }
  7975. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  7976. order: 1;
  7977. grid-row: 1;
  7978. grid-column: 1/span 2;
  7979. }
  7980. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  7981. order: 3;
  7982. grid-row: 3/span 5;
  7983. height: auto;
  7984. width: 90%;
  7985. }
  7986. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  7987. height: auto;
  7988. width: 90%;
  7989. border: 1px solid #a3a3a3;
  7990. }
  7991. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  7992. grid-row: 3;
  7993. margin-top: 0;
  7994. padding-bottom: 0.4rem;
  7995. }
  7996. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  7997. margin-left: 0 !important;
  7998. line-height: 0;
  7999. }
  8000. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  8001. color: rgb(0, 158, 227);
  8002. font-size: 1.3rem;
  8003. font-style: normal;
  8004. line-height: 1.2em !important;
  8005. }
  8006. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  8007. margin-top: 0;
  8008. line-height: 1;
  8009. grid-row: 4;
  8010. }
  8011. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  8012. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  8013. grid-row: 4;
  8014. color: rgb(0, 158, 227);
  8015. font-size: 1rem;
  8016. font-weight: 800;
  8017. }
  8018. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  8019. grid-row: 6;
  8020. line-height: 1.1;
  8021. }
  8022. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  8023. grid-row: 7;
  8024. }
  8025. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  8026. grid-row: 8;
  8027. margin-top: 0.5rem;
  8028. left: -0.2rem;
  8029. position: relative;
  8030. }
  8031. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  8032. order: 2;
  8033. }
  8034. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  8035. order: 1;
  8036. }
  8037. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  8038. order: 3;
  8039. }
  8040. @media (max-width: 479px) {
  8041. article.node-type-ressource {
  8042. margin-left: 0;
  8043. }
  8044. }
  8045. article.node-type-ressource.type-presse .field--name-field-images {
  8046. display: none;
  8047. }
  8048. .type-les-projets-en-images.views-row {
  8049. width: 50% !important;
  8050. min-width: 550px !important;
  8051. max-width: 0 !important;
  8052. }
  8053. @media (max-width: 479px) {
  8054. .type-les-projets-en-images.views-row {
  8055. min-width: 100% !important;
  8056. }
  8057. }
  8058. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  8059. display: grid;
  8060. grid-template-columns: 2fr 1fr !important;
  8061. width: 100%;
  8062. max-width: 100%;
  8063. column-gap: 1rem;
  8064. align-items: start;
  8065. }
  8066. @media (max-width: 479px) {
  8067. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  8068. display: flex;
  8069. flex-direction: column;
  8070. padding-left: 1rem !important;
  8071. }
  8072. }
  8073. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  8074. grid-column: 1;
  8075. grid-row: 3/span 8;
  8076. width: 100%;
  8077. }
  8078. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  8079. width: 100%;
  8080. height: auto;
  8081. margin-top: 1rem;
  8082. object-fit: cover;
  8083. border: 1px solid #ccc;
  8084. }
  8085. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  8086. height: fit-content;
  8087. }
  8088. @media (max-width: 479px) {
  8089. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  8090. height: auto;
  8091. }
  8092. }
  8093. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  8094. grid-column: 1/span 2;
  8095. grid-row: 2;
  8096. }
  8097. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  8098. grid-column: 1/span 2;
  8099. grid-row: 1;
  8100. }
  8101. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  8102. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  8103. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  8104. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  8105. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  8106. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  8107. grid-column: 2;
  8108. width: 100%;
  8109. box-sizing: border-box;
  8110. padding: 0;
  8111. margin: 0;
  8112. }
  8113. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  8114. grid-row: 3;
  8115. margin-bottom: 0.5rem;
  8116. }
  8117. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  8118. grid-row: 4;
  8119. }
  8120. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  8121. grid-row: 5;
  8122. }
  8123. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  8124. grid-row: 6;
  8125. line-height: 1;
  8126. }
  8127. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  8128. grid-row: 7;
  8129. }
  8130. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  8131. grid-row: 8;
  8132. }
  8133. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource h2, .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource p {
  8134. margin: 0;
  8135. padding: 0;
  8136. }