bundle.css 334 KB

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