bundle.css 343 KB

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