bundle.css 346 KB

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