bundle.css 326 KB

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