bundle.css 341 KB

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