bundle.css 283 KB

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