bundle.css 349 KB

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