bundle.css 343 KB

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