bundle.css 310 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202
  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. @media (max-width: 810px) {
  2156. .page-node-type-ressource .layout-container {
  2157. overflow: hidden;
  2158. }
  2159. }
  2160. .page-node-type-ressource .layout__region--top {
  2161. padding-top: 4rem;
  2162. /* Hide empty blocks */
  2163. }
  2164. @media (max-width: 550px) {
  2165. .page-node-type-ressource .layout__region--top {
  2166. padding-top: 0rem;
  2167. }
  2168. }
  2169. .page-node-type-ressource .layout__region--top .block-region-top {
  2170. display: flex;
  2171. flex-direction: column;
  2172. }
  2173. @media screen and (min-width: 1100px) {
  2174. .page-node-type-ressource .layout__region--top .block-region-top {
  2175. display: grid;
  2176. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2177. gap: 0.5rem;
  2178. }
  2179. }
  2180. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2181. width: fit-content;
  2182. padding-left: 25%;
  2183. }
  2184. @media (min-width: 1100px) {
  2185. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2186. grid-column: 1;
  2187. grid-row: 1/span 7;
  2188. align-self: start;
  2189. justify-self: end;
  2190. margin-left: 2rem;
  2191. }
  2192. }
  2193. @media (max-width: 1100px) {
  2194. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2195. padding-left: 13%;
  2196. }
  2197. }
  2198. @media (max-width: 550px) {
  2199. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2200. width: 100vw;
  2201. padding: 0;
  2202. }
  2203. }
  2204. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2205. border: solid 1px gray;
  2206. }
  2207. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2208. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2209. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2210. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2211. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2212. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2213. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2214. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2215. width: 100%;
  2216. margin-left: 13%;
  2217. }
  2218. @media (max-width: 1099px) {
  2219. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2220. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2221. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2222. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2223. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2224. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2225. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2226. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2227. width: auto;
  2228. margin-right: 15%;
  2229. }
  2230. }
  2231. @media screen and (min-width: 1100px) {
  2232. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2233. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2234. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2235. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2236. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2237. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2238. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2239. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2240. width: auto;
  2241. margin-left: 2rem;
  2242. margin-right: 15%;
  2243. grid-column: 2/4;
  2244. align-self: start; /* S'assurer qu'il commence en haut */
  2245. height: fit-content;
  2246. justify-self: start;
  2247. }
  2248. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2249. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2250. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2251. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2252. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2253. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2254. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2255. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2256. margin: 0;
  2257. }
  2258. }
  2259. @media (max-width: 810px) {
  2260. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2261. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2262. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2263. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2264. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2265. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2266. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2267. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2268. margin-left: 9%;
  2269. margin-right: 9%;
  2270. }
  2271. }
  2272. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2273. width: 100%;
  2274. font-family: "Source Code Pro";
  2275. font-size: 1.5rem;
  2276. font-weight: 800;
  2277. color: rgb(255, 255, 255);
  2278. background-color: rgb(0, 158, 227);
  2279. text-transform: uppercase;
  2280. padding-left: 13%;
  2281. padding-top: 1rem;
  2282. padding-bottom: 0.5rem;
  2283. vertical-align: middle;
  2284. }
  2285. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2286. color: rgb(0, 158, 227);
  2287. text-transform: uppercase;
  2288. font-weight: 900;
  2289. }
  2290. @media (max-width: 1099px) {
  2291. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2292. margin-top: 2rem;
  2293. }
  2294. }
  2295. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2296. font-size: 2.5rem;
  2297. font-weight: 600;
  2298. line-height: 1.2;
  2299. }
  2300. @media (max-width: 550px) {
  2301. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2302. font-size: 1.5rem;
  2303. width: 80vw;
  2304. }
  2305. }
  2306. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2307. font-weight: 600;
  2308. font-size: 2rem;
  2309. }
  2310. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  2311. font-weight: 600;
  2312. font-size: 2rem;
  2313. }
  2314. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  2315. font-weight: 600;
  2316. font-size: 2rem;
  2317. margin-bottom: 0;
  2318. }
  2319. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  2320. margin-bottom: 0;
  2321. }
  2322. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2323. font-size: 1.5rem;
  2324. font-weight: 800;
  2325. line-height: 0.8;
  2326. margin-top: 1rem;
  2327. }
  2328. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  2329. margin: 0;
  2330. }
  2331. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2332. display: inline-flex;
  2333. margin-top: 0.5rem;
  2334. }
  2335. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2336. background: rgb(9, 57, 139);
  2337. margin-right: 1rem;
  2338. padding-left: 0.3rem;
  2339. padding-right: 0.3rem;
  2340. color: rgb(255, 255, 255);
  2341. font-weight: 800;
  2342. vertical-align: middle;
  2343. }
  2344. @media (max-width: 810px) {
  2345. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2346. display: flex;
  2347. flex-direction: row;
  2348. flex-wrap: wrap;
  2349. }
  2350. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2351. margin-bottom: 0.5rem;
  2352. }
  2353. }
  2354. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  2355. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  2356. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  2357. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  2358. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  2359. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  2360. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  2361. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  2362. display: none;
  2363. }
  2364. .page-node-type-ressource .layout__region--first {
  2365. margin-top: 3rem;
  2366. position: relative;
  2367. }
  2368. @media (max-width: 810px) {
  2369. .page-node-type-ressource .layout__region--first {
  2370. display: none;
  2371. }
  2372. }
  2373. .page-node-type-ressource .layout__region--first .block-region-first {
  2374. display: flex;
  2375. justify-content: flex-end;
  2376. position: sticky;
  2377. top: 13rem;
  2378. }
  2379. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  2380. display: flex;
  2381. width: 50%;
  2382. background-color: rgb(255, 255, 255);
  2383. padding-right: 2rem;
  2384. }
  2385. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  2386. display: flex;
  2387. font-size: 1rem;
  2388. font-weight: 1000;
  2389. color: rgb(9, 57, 139);
  2390. border-bottom: 1px solid rgb(0, 158, 227);
  2391. padding-bottom: 0.5rem;
  2392. padding-right: 1rem;
  2393. }
  2394. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  2395. text-decoration: underline;
  2396. }
  2397. .page-node-type-ressource .layout__region--second {
  2398. margin-top: 3rem;
  2399. }
  2400. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  2401. background-color: rgb(255, 255, 255);
  2402. }
  2403. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2404. font-size: 1.5rem;
  2405. font-weight: 1000;
  2406. font-family: "Source Code Pro";
  2407. color: rgb(9, 57, 139);
  2408. text-transform: uppercase;
  2409. }
  2410. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2411. text-transform: none !important;
  2412. }
  2413. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  2414. width: 100%;
  2415. height: auto;
  2416. }
  2417. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2418. padding-right: 2rem;
  2419. }
  2420. @media (max-width: 550px) {
  2421. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2422. padding-right: 0;
  2423. }
  2424. }
  2425. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  2426. margin-top: 0;
  2427. }
  2428. @media (max-width: 810px) {
  2429. .page-node-type-ressource .layout__region--second {
  2430. flex: 0 1 80%;
  2431. margin: auto;
  2432. margin-top: 2rem;
  2433. }
  2434. }
  2435. .page-node-type-ressource .layout__region--third {
  2436. margin-top: 3rem;
  2437. }
  2438. @media (max-width: 810px) {
  2439. .page-node-type-ressource .layout__region--third {
  2440. flex: 0 1 80%;
  2441. margin-left: 10%;
  2442. }
  2443. }
  2444. .page-node-type-ressource .layout__region--third .block-region-third {
  2445. display: flex;
  2446. flex-direction: column;
  2447. width: 70%;
  2448. }
  2449. @media (max-width: 810px) {
  2450. .page-node-type-ressource .layout__region--third .block-region-third {
  2451. width: 100%;
  2452. }
  2453. }
  2454. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  2455. height: fit-content;
  2456. border: 2px solid rgb(0, 158, 227);
  2457. background-color: rgb(255, 255, 255);
  2458. }
  2459. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  2460. min-height: 4rem;
  2461. background: rgb(255, 255, 255);
  2462. color: rgb(0, 158, 227);
  2463. padding-left: 1rem;
  2464. padding-top: 1rem;
  2465. padding: 1rem;
  2466. }
  2467. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  2468. display: none;
  2469. }
  2470. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  2471. height: inherit;
  2472. margin: auto;
  2473. width: fit-content;
  2474. }
  2475. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  2476. content: url("../images/pictos/download.png");
  2477. min-width: 30px;
  2478. height: auto;
  2479. padding-right: 1rem;
  2480. margin-right: 1rem;
  2481. }
  2482. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  2483. hyphens: auto;
  2484. display: inline-flex;
  2485. align-items: center;
  2486. color: rgb(0, 158, 227);
  2487. font-weight: 800;
  2488. }
  2489. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  2490. order: 3;
  2491. }
  2492. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2493. margin: auto;
  2494. height: fit-content;
  2495. border: 2px solid rgb(0, 158, 227);
  2496. min-height: 4rem;
  2497. background: rgb(255, 255, 255);
  2498. color: rgb(0, 158, 227);
  2499. padding-left: 1rem;
  2500. padding-top: 1rem;
  2501. margin-bottom: 1rem;
  2502. padding: 1rem;
  2503. }
  2504. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  2505. display: inline-flex;
  2506. align-items: center;
  2507. color: rgb(0, 158, 227);
  2508. font-weight: 800;
  2509. }
  2510. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  2511. content: url("../images/pictos/external_link.png");
  2512. min-width: 30px;
  2513. height: auto;
  2514. padding-right: 1rem;
  2515. margin-right: 1rem;
  2516. }
  2517. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  2518. display: none;
  2519. }
  2520. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2521. order: 4;
  2522. margin-top: 3rem;
  2523. }
  2524. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  2525. font-size: 0.8rem;
  2526. color: rgb(0, 0, 0);
  2527. font-weight: 900;
  2528. margin-bottom: 1rem;
  2529. }
  2530. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  2531. border: 2px solid rgb(0, 158, 227);
  2532. padding: 1rem;
  2533. height: fit-content;
  2534. margin-bottom: 1rem;
  2535. background-color: rgb(255, 255, 255);
  2536. display: flex;
  2537. flex-direction: column;
  2538. }
  2539. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  2540. display: flex;
  2541. flex-direction: column;
  2542. }
  2543. .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 {
  2544. order: 2;
  2545. text-transform: uppercase;
  2546. color: rgb(0, 158, 227);
  2547. font-weight: 900;
  2548. font-size: 0.8rem;
  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-title {
  2551. order: 3;
  2552. }
  2553. .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 {
  2554. margin: 0;
  2555. }
  2556. .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 {
  2557. color: rgb(0, 0, 0);
  2558. font-size: 1rem;
  2559. font-weight: 900;
  2560. font-style: italic;
  2561. }
  2562. .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 {
  2563. order: 4;
  2564. }
  2565. .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- {
  2566. order: 5;
  2567. font-weight: 800;
  2568. }
  2569. .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 {
  2570. margin: 0;
  2571. }
  2572. .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 {
  2573. display: none;
  2574. }
  2575. .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 {
  2576. margin: 0;
  2577. }
  2578. .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 {
  2579. display: none;
  2580. }
  2581. .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 {
  2582. order: 1;
  2583. width: 25%;
  2584. }
  2585. .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 {
  2586. width: 100%;
  2587. height: auto;
  2588. }
  2589. .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 {
  2590. order: 6;
  2591. }
  2592. .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 {
  2593. display: none;
  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 {
  2596. order: 7;
  2597. display: flex;
  2598. margin-top: 0.8rem;
  2599. flex-direction: row;
  2600. flex-wrap: wrap;
  2601. }
  2602. .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 {
  2603. display: none;
  2604. }
  2605. .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 {
  2606. display: flex;
  2607. flex-direction: row;
  2608. flex-wrap: wrap;
  2609. }
  2610. .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 {
  2611. padding-bottom: 0.5rem;
  2612. margin-right: 0.5rem;
  2613. padding-right: 0.3rem;
  2614. font-size: 0.8rem;
  2615. }
  2616. .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 {
  2617. background: rgb(9, 57, 139);
  2618. color: rgb(255, 255, 255);
  2619. font-weight: 800;
  2620. vertical-align: super;
  2621. padding-left: 0.1rem;
  2622. padding-right: 0.1rem;
  2623. display: inline-flex;
  2624. pointer-events: none !important;
  2625. cursor: default;
  2626. }
  2627. .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 {
  2628. display: none;
  2629. }
  2630. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  2631. order: 1;
  2632. }
  2633. @media (max-width: 479px) {
  2634. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  2635. margin-top: 2rem;
  2636. }
  2637. }
  2638. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  2639. display: none;
  2640. font-size: 0.8rem;
  2641. color: rgb(0, 0, 0);
  2642. font-weight: 900;
  2643. }
  2644. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  2645. display: flex;
  2646. flex-direction: column;
  2647. border-bottom: 1px solid rgb(0, 0, 0);
  2648. padding: 1rem;
  2649. height: fit-content;
  2650. margin-bottom: 3rem;
  2651. background-color: rgb(255, 255, 255);
  2652. }
  2653. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  2654. display: none;
  2655. }
  2656. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  2657. content: url("../images/pictos/picto_lieu_blue.svg");
  2658. display: inline-block;
  2659. color: rgb(9, 57, 139);
  2660. margin-right: 1rem;
  2661. }
  2662. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  2663. display: flex;
  2664. flex-direction: row;
  2665. margin-bottom: 1.5rem;
  2666. }
  2667. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  2668. content: "Voir le projet";
  2669. display: block;
  2670. color: rgb(9, 57, 139);
  2671. }
  2672. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  2673. color: rgb(9, 57, 139);
  2674. font-size: 1rem;
  2675. font-weight: 900;
  2676. }
  2677. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  2678. padding-top: 3rem;
  2679. padding-bottom: 3rem;
  2680. vertical-align: middle;
  2681. color: rgb(255, 255, 255);
  2682. }
  2683. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  2684. font-family: "Source Code Pro";
  2685. font-size: 2rem;
  2686. font-weight: 800;
  2687. color: rgb(255, 255, 255);
  2688. background-color: rgb(0, 158, 227);
  2689. text-transform: uppercase;
  2690. width: fit-content;
  2691. margin-left: 10%;
  2692. margin-top: 8rem;
  2693. }
  2694. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  2695. display: grid;
  2696. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2697. }
  2698. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  2699. grid-column: 2/span 3;
  2700. margin-top: 4rem;
  2701. }
  2702. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  2703. margin: auto;
  2704. background: rgb(255, 255, 255);
  2705. }
  2706. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  2707. margin: 0;
  2708. }
  2709. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  2710. grid-column: 5;
  2711. margin-top: 4rem;
  2712. background-color: rgb(0, 158, 227);
  2713. height: fit-content;
  2714. min-height: fit-content;
  2715. width: 200px;
  2716. margin-left: 2rem;
  2717. aspect-ratio: 1/1;
  2718. display: flex;
  2719. }
  2720. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  2721. display: flex;
  2722. flex-direction: column;
  2723. text-align: center;
  2724. margin: auto;
  2725. padding: 1rem;
  2726. }
  2727. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  2728. display: block;
  2729. font-weight: 800;
  2730. color: rgb(255, 255, 255);
  2731. font-size: 1.3rem;
  2732. }
  2733. .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 {
  2734. margin-left: 80%;
  2735. padding-top: 0.5rem;
  2736. display: block;
  2737. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2738. }
  2739. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  2740. grid-column: 2/span 3;
  2741. }
  2742. @media (max-width: 810px) {
  2743. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  2744. grid-column: 2/span 4;
  2745. }
  2746. }
  2747. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  2748. margin: auto;
  2749. }
  2750. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  2751. display: none;
  2752. background: rgb(255, 255, 255);
  2753. }
  2754. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  2755. display: flex;
  2756. flex-wrap: wrap;
  2757. margin-top: 3rem;
  2758. }
  2759. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  2760. width: 50%;
  2761. }
  2762. .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 {
  2763. display: flex;
  2764. justify-content: space-between;
  2765. padding: 1rem;
  2766. height: fit-content;
  2767. margin-bottom: 1rem;
  2768. background-color: rgb(255, 255, 255);
  2769. margin-right: 1rem;
  2770. }
  2771. .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 {
  2772. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2773. align-self: flex-end;
  2774. }
  2775. .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 {
  2776. display: grid;
  2777. grid-template-columns: 1fr 1fr 1fr;
  2778. grid-template-rows: repeat(6 auto);
  2779. }
  2780. .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 {
  2781. grid-column: 1/span 3;
  2782. grid-row: 1;
  2783. margin-bottom: 1rem;
  2784. text-transform: uppercase;
  2785. font-weight: 900;
  2786. font-size: 0.8rem;
  2787. }
  2788. .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 {
  2789. grid-column: 1;
  2790. grid-row: 2/span 6;
  2791. margin-right: 1rem;
  2792. max-height: 170px;
  2793. }
  2794. .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 {
  2795. max-width: 100%;
  2796. object-fit: cover;
  2797. height: auto;
  2798. max-height: 95%;
  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-prenom {
  2801. grid-column: 2;
  2802. grid-row: 2;
  2803. padding-right: 0.5rem;
  2804. text-transform: uppercase;
  2805. font-weight: 800;
  2806. font-size: 1rem;
  2807. }
  2808. .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 {
  2809. grid-column: 3;
  2810. grid-row: 2;
  2811. text-transform: uppercase;
  2812. font-weight: 800;
  2813. font-size: 1rem;
  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-structure {
  2816. grid-column: 2/span 3;
  2817. grid-row: 3;
  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-title {
  2823. grid-column: 2/span 3;
  2824. grid-row: 4;
  2825. font-size: 1.3rem;
  2826. }
  2827. .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 {
  2828. color: rgb(0, 0, 0);
  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-localisation {
  2831. grid-column: 2/span 3;
  2832. grid-row: 5;
  2833. text-transform: uppercase;
  2834. font-weight: 800;
  2835. font-size: 0.8rem;
  2836. }
  2837. .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 {
  2838. display: inline-flex;
  2839. grid-column: 2/span 3;
  2840. grid-row: 6;
  2841. font-size: 0.8rem;
  2842. padding-top: 1rem;
  2843. justify-content: flex-start;
  2844. }
  2845. .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 {
  2846. justify-self: flex-start;
  2847. }
  2848. .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 {
  2849. content: "proposé le";
  2850. hyphens: none;
  2851. padding-right: 0.5rem;
  2852. }
  2853. .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 {
  2854. border: 2px solid rgb(255, 0, 15);
  2855. }
  2856. .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 {
  2857. border: 2px solid rgb(160, 26, 39);
  2858. }
  2859. .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 {
  2860. border: 2px solid rgb(199, 215, 74);
  2861. }
  2862. .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 {
  2863. border: 2px solid rgb(255, 100, 83);
  2864. }
  2865. .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 {
  2866. border: 2px solid rgb(111, 109, 125);
  2867. }
  2868. @media (max-width: 810px) {
  2869. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  2870. flex-direction: column;
  2871. }
  2872. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  2873. width: 100%;
  2874. }
  2875. }
  2876. @media (max-width: 810px) {
  2877. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  2878. display: flex;
  2879. flex-direction: column;
  2880. padding: 2rem;
  2881. }
  2882. }
  2883. .page-node-type-offre-de-service {
  2884. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  2885. background-repeat: no-repeat;
  2886. background-position-y: 7rem;
  2887. max-width: 100vw;
  2888. background-size: contain;
  2889. }
  2890. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  2891. margin-top: 2rem;
  2892. margin-left: 13%;
  2893. display: grid;
  2894. grid-template-columns: auto auto 1fr;
  2895. grid-template-rows: repeat(6 auto);
  2896. }
  2897. @media (max-width: 810px) {
  2898. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  2899. margin-left: 8%;
  2900. }
  2901. }
  2902. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  2903. width: fit-content;
  2904. grid-column: 1;
  2905. grid-row: 1/span 6;
  2906. width: 250px;
  2907. height: 250px;
  2908. margin-right: 2rem;
  2909. }
  2910. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  2911. width: 100%;
  2912. height: auto;
  2913. }
  2914. @media (max-width: 810px) {
  2915. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  2916. width: 90px;
  2917. height: 90px;
  2918. }
  2919. }
  2920. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  2921. background: rgb(255, 255, 255);
  2922. width: fit-content;
  2923. grid-column: 2/span 3;
  2924. grid-row: 1;
  2925. text-transform: uppercase;
  2926. font-weight: 900;
  2927. font-size: 0.8rem;
  2928. }
  2929. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  2930. color: rgb(255, 0, 15);
  2931. }
  2932. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  2933. color: rgb(160, 26, 39);
  2934. }
  2935. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  2936. color: rgb(199, 215, 74);
  2937. }
  2938. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  2939. color: rgb(255, 100, 83);
  2940. }
  2941. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  2942. color: rgb(111, 109, 125);
  2943. }
  2944. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  2945. background: rgb(255, 255, 255);
  2946. width: fit-content;
  2947. grid-column: 2;
  2948. grid-row: 2;
  2949. padding-right: 0.5rem;
  2950. text-transform: uppercase;
  2951. font-weight: 900;
  2952. font-size: 1.5rem;
  2953. }
  2954. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  2955. background: rgb(255, 255, 255);
  2956. width: fit-content;
  2957. grid-column: 3;
  2958. grid-row: 2;
  2959. text-transform: uppercase;
  2960. font-weight: 900;
  2961. font-size: 1.5rem;
  2962. }
  2963. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  2964. background: rgb(255, 255, 255);
  2965. width: fit-content;
  2966. grid-column: 2/span 3;
  2967. grid-row: 3;
  2968. text-transform: uppercase;
  2969. font-weight: 800;
  2970. font-size: 1.2rem;
  2971. margin-top: 0.5rem;
  2972. }
  2973. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  2974. 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>');
  2975. }
  2976. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2977. background: rgb(255, 255, 255);
  2978. width: fit-content;
  2979. grid-column: 2/span 3;
  2980. grid-row: 4;
  2981. font-size: 2.5rem;
  2982. font-family: "Source Code Pro";
  2983. width: 70%;
  2984. }
  2985. @media (max-width: 810px) {
  2986. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2987. font-size: 1.2rem;
  2988. }
  2989. }
  2990. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  2991. color: rgb(0, 0, 0);
  2992. }
  2993. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  2994. background: rgb(255, 255, 255);
  2995. width: fit-content;
  2996. grid-column: 2/span 3;
  2997. grid-row: 5;
  2998. text-transform: uppercase;
  2999. font-weight: 800;
  3000. font-size: 0.8rem;
  3001. margin-top: 1.5rem;
  3002. }
  3003. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3004. background: rgb(255, 255, 255);
  3005. width: fit-content;
  3006. grid-column: 2/span 3;
  3007. grid-row: 6;
  3008. font-size: 0.8rem;
  3009. padding-top: 1rem;
  3010. }
  3011. .page-node-type-offre-de-service .layout__region--second {
  3012. margin-top: 3rem;
  3013. margin-left: 20%;
  3014. margin-right: 2rem;
  3015. }
  3016. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3017. background: rgb(255, 255, 255);
  3018. }
  3019. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3020. margin: 0;
  3021. }
  3022. @media (max-width: 810px) {
  3023. .page-node-type-offre-de-service .layout__region--second {
  3024. margin-left: 10%;
  3025. }
  3026. }
  3027. .page-node-type-offre-de-service .layout__region--third {
  3028. margin-top: 3rem;
  3029. }
  3030. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3031. display: flex;
  3032. flex-direction: column;
  3033. width: 70%;
  3034. }
  3035. @media (max-width: 810px) {
  3036. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3037. margin: auto;
  3038. }
  3039. }
  3040. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3041. background: rgb(0, 158, 227);
  3042. color: rgb(255, 255, 255);
  3043. text-transform: uppercase;
  3044. font-weight: 900;
  3045. font-size: 0.8rem;
  3046. padding-top: 1rem;
  3047. padding-left: 1rem;
  3048. padding-right: 1rem;
  3049. }
  3050. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3051. background: rgb(0, 158, 227);
  3052. color: rgb(255, 255, 255);
  3053. font-weight: 600;
  3054. padding-left: 1rem;
  3055. padding-right: 1rem;
  3056. padding-bottom: 1rem;
  3057. }
  3058. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3059. color: white;
  3060. hyphens: auto;
  3061. }
  3062. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3063. display: none;
  3064. }
  3065. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3066. display: none;
  3067. background: rgb(0, 158, 227);
  3068. color: rgb(255, 255, 255);
  3069. font-weight: 600;
  3070. padding-left: 1rem;
  3071. padding-right: 1rem;
  3072. padding-bottom: 1rem;
  3073. }
  3074. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3075. height: fit-content;
  3076. border: 2px solid rgb(0, 158, 227);
  3077. background-color: rgb(255, 255, 255);
  3078. margin-top: 1rem;
  3079. }
  3080. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3081. min-height: 4rem;
  3082. background: rgb(255, 255, 255);
  3083. color: rgb(0, 158, 227);
  3084. padding-left: 1rem;
  3085. padding-top: 1rem;
  3086. margin-bottom: 1rem;
  3087. }
  3088. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3089. display: none;
  3090. }
  3091. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3092. height: inherit;
  3093. margin: auto;
  3094. }
  3095. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3096. content: url("../images/pictos/noun_Download_file_307900.svg");
  3097. min-width: 50px;
  3098. height: auto;
  3099. padding-right: 1rem;
  3100. }
  3101. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3102. hyphens: auto;
  3103. display: inline-flex;
  3104. align-items: center;
  3105. color: rgb(0, 158, 227);
  3106. font-weight: 800;
  3107. }
  3108. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3109. margin-top: 1rem;
  3110. }
  3111. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3112. margin: auto;
  3113. height: fit-content;
  3114. border: 2px solid rgb(0, 158, 227);
  3115. min-height: 4rem;
  3116. background: rgb(255, 255, 255);
  3117. color: rgb(0, 158, 227);
  3118. padding-left: 1rem;
  3119. padding-top: 1rem;
  3120. margin-bottom: 1rem;
  3121. }
  3122. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3123. display: inline-flex;
  3124. align-items: center;
  3125. color: rgb(0, 158, 227);
  3126. font-weight: 800;
  3127. }
  3128. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3129. content: url("../images/pictos/external_link.png");
  3130. min-width: 50px;
  3131. height: auto;
  3132. padding-right: 1rem;
  3133. }
  3134. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3135. display: none;
  3136. }
  3137. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3138. margin-top: 3rem;
  3139. }
  3140. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3141. font-size: 0.8rem;
  3142. color: rgb(0, 0, 0);
  3143. font-weight: 900;
  3144. margin-bottom: 1rem;
  3145. }
  3146. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3147. display: flex;
  3148. flex-direction: column;
  3149. border: 2px solid rgb(0, 158, 227);
  3150. padding: 1rem;
  3151. height: fit-content;
  3152. margin-bottom: 1rem;
  3153. background-color: rgb(255, 255, 255);
  3154. }
  3155. .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 {
  3156. border-top: 1px solid rgb(0, 158, 227);
  3157. padding-top: 1rem;
  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:first-of-type::after {
  3160. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3161. align-self: flex-end;
  3162. }
  3163. .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 {
  3164. margin: 0;
  3165. }
  3166. .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 {
  3167. color: rgb(0, 0, 0);
  3168. font-size: 1.4rem;
  3169. font-weight: 600;
  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-auteur-s- {
  3172. font-weight: 800;
  3173. }
  3174. .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 {
  3175. margin: 0;
  3176. }
  3177. .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 {
  3178. display: none;
  3179. }
  3180. .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 {
  3181. margin: 0;
  3182. }
  3183. .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 {
  3184. display: none;
  3185. }
  3186. .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 {
  3187. display: none;
  3188. width: 50%;
  3189. }
  3190. .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 {
  3191. width: 100%;
  3192. height: auto;
  3193. }
  3194. .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 {
  3195. display: inline-flex;
  3196. margin-top: 2rem;
  3197. background: rgb(9, 57, 139);
  3198. margin-right: 1rem;
  3199. padding-left: 0.3rem;
  3200. padding-right: 0.3rem;
  3201. color: rgb(255, 255, 255);
  3202. font-weight: 800;
  3203. vertical-align: middle;
  3204. }
  3205. .path-ressources.annuairederecherche .layout-content {
  3206. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3207. background-repeat: no-repeat;
  3208. background-position-y: 7rem;
  3209. max-width: 100vw;
  3210. background-size: cover;
  3211. }
  3212. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3213. padding-top: 8rem;
  3214. }
  3215. @media (max-width: 479px) {
  3216. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3217. padding-top: 5rem;
  3218. padding-left: 5rem;
  3219. }
  3220. }
  3221. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3222. padding-top: 3rem;
  3223. padding-bottom: 3rem;
  3224. vertical-align: middle;
  3225. color: rgb(255, 255, 255);
  3226. }
  3227. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3228. display: inline;
  3229. font-family: "Source Code Pro";
  3230. font-size: 2rem;
  3231. font-weight: 800;
  3232. color: rgb(255, 255, 255);
  3233. background-color: rgb(0, 158, 227);
  3234. text-transform: uppercase;
  3235. width: fit-content;
  3236. margin-left: 10%;
  3237. margin-top: 8rem;
  3238. }
  3239. @media (max-width: 479px) {
  3240. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3241. margin-right: 37%;
  3242. margin-bottom: 2rem;
  3243. margin-left: 0;
  3244. }
  3245. }
  3246. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3247. padding-top: 3rem;
  3248. flex: 0 1 50%;
  3249. margin-left: 20%;
  3250. }
  3251. @media (max-width: 479px) {
  3252. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3253. flex: 0 1 80%;
  3254. margin: 0;
  3255. }
  3256. }
  3257. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  3258. background-color: rgb(255, 255, 255);
  3259. margin-bottom: 4rem;
  3260. }
  3261. .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_ {
  3262. margin-bottom: 3rem;
  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-field-logo {
  3265. grid-column: 1;
  3266. grid-row: 1/span 3;
  3267. margin-right: 1rem;
  3268. max-height: 8rem;
  3269. }
  3270. .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 {
  3271. height: 8rem;
  3272. width: 8rem;
  3273. }
  3274. .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 {
  3275. height: 100%;
  3276. width: 100%;
  3277. object-fit: contain;
  3278. }
  3279. .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 {
  3280. grid-column: 2;
  3281. font-weight: 800;
  3282. background-color: rgb(255, 255, 255);
  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-body {
  3285. background-color: rgb(255, 255, 255);
  3286. grid-column: 2;
  3287. }
  3288. .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 {
  3289. margin: 0;
  3290. }
  3291. .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 {
  3292. background-color: rgb(255, 255, 255);
  3293. grid-column: 2;
  3294. }
  3295. .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 {
  3296. color: rgb(0, 0, 0);
  3297. text-decoration: underline;
  3298. }
  3299. .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 {
  3300. display: none;
  3301. }
  3302. .path-webform .region-content [aria-label="Message d'avertissement"] {
  3303. display: none;
  3304. }
  3305. .path-webform .region-content .block-system-main-block h2 {
  3306. display: none;
  3307. }
  3308. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  3309. display: flex;
  3310. flex-direction: row;
  3311. flex-wrap: wrap;
  3312. flex-basis: auto;
  3313. justify-content: flex-start;
  3314. }
  3315. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  3316. width: 100%;
  3317. font-family: "Source Code Pro";
  3318. font-size: 1.5rem;
  3319. font-weight: 800;
  3320. color: rgb(255, 255, 255);
  3321. background-color: rgb(0, 158, 227);
  3322. text-transform: uppercase;
  3323. padding-left: 13%;
  3324. padding-top: 2rem;
  3325. padding-bottom: 2rem;
  3326. vertical-align: middle;
  3327. }
  3328. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  3329. width: 100%;
  3330. font-family: "Source Code Pro";
  3331. font-size: 2rem;
  3332. font-weight: 800;
  3333. color: rgb(255, 255, 255);
  3334. background-color: rgb(0, 158, 227);
  3335. text-transform: uppercase;
  3336. width: fit-content;
  3337. margin-left: 13%;
  3338. margin-top: 8rem;
  3339. }
  3340. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  3341. margin-top: 10vh;
  3342. margin-left: 13%;
  3343. margin-right: 20%;
  3344. width: 60%;
  3345. }
  3346. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  3347. margin-left: 13%;
  3348. margin-right: 20%;
  3349. width: 60%;
  3350. display: flex;
  3351. flex-direction: row;
  3352. flex-wrap: wrap;
  3353. margin-top: 2rem;
  3354. }
  3355. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  3356. content: "*";
  3357. color: red;
  3358. font-size: 2rem;
  3359. padding-left: 0.5rem;
  3360. }
  3361. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  3362. width: 100%;
  3363. }
  3364. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  3365. width: 90%;
  3366. height: 5rem;
  3367. }
  3368. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  3369. margin-left: 13%;
  3370. margin-right: 20%;
  3371. width: 60%;
  3372. display: flex;
  3373. flex-direction: row;
  3374. flex-wrap: wrap;
  3375. margin-top: 2rem;
  3376. }
  3377. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  3378. content: "*";
  3379. color: red;
  3380. font-size: 2rem;
  3381. padding-left: 0.5rem;
  3382. }
  3383. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  3384. width: 100%;
  3385. }
  3386. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  3387. width: 90%;
  3388. }
  3389. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  3390. margin-left: 13%;
  3391. width: 27%;
  3392. display: flex;
  3393. flex-direction: row;
  3394. flex-wrap: wrap;
  3395. margin-top: 2rem;
  3396. }
  3397. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  3398. content: "*";
  3399. color: red;
  3400. font-size: 2rem;
  3401. padding-left: 0.5rem;
  3402. }
  3403. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  3404. width: 100%;
  3405. }
  3406. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  3407. width: 90%;
  3408. }
  3409. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  3410. margin-right: 20%;
  3411. width: 27%;
  3412. display: flex;
  3413. flex-direction: row;
  3414. flex-wrap: wrap;
  3415. margin-top: 2rem;
  3416. margin-right: 3rem;
  3417. }
  3418. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  3419. width: 100%;
  3420. }
  3421. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  3422. width: 100%;
  3423. }
  3424. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  3425. margin-left: 13%;
  3426. margin-right: 20%;
  3427. width: 60%;
  3428. display: flex;
  3429. flex-direction: row;
  3430. flex-wrap: wrap;
  3431. margin-top: 2rem;
  3432. }
  3433. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  3434. content: "*";
  3435. color: red;
  3436. font-size: 2rem;
  3437. padding-left: 0.5rem;
  3438. }
  3439. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  3440. width: 100%;
  3441. }
  3442. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  3443. width: 90%;
  3444. }
  3445. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  3446. margin-left: 13%;
  3447. margin-right: 20%;
  3448. width: 60%;
  3449. display: flex;
  3450. flex-direction: row;
  3451. flex-wrap: wrap;
  3452. margin-top: 2rem;
  3453. }
  3454. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  3455. content: "*";
  3456. color: red;
  3457. font-size: 2rem;
  3458. padding-left: 0.5rem;
  3459. }
  3460. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  3461. width: 100%;
  3462. }
  3463. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  3464. width: 90%;
  3465. }
  3466. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  3467. margin-left: 13%;
  3468. margin-right: 20%;
  3469. width: 60%;
  3470. display: flex;
  3471. flex-direction: row;
  3472. flex-wrap: wrap;
  3473. margin-top: 2rem;
  3474. }
  3475. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  3476. content: "*";
  3477. color: red;
  3478. font-size: 2rem;
  3479. padding-left: 1rem;
  3480. }
  3481. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  3482. width: 100%;
  3483. }
  3484. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  3485. width: 90%;
  3486. }
  3487. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  3488. width: 100%;
  3489. }
  3490. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  3491. margin-left: 13%;
  3492. margin-right: 20%;
  3493. width: 60%;
  3494. display: flex;
  3495. flex-direction: row;
  3496. flex-wrap: wrap;
  3497. margin-top: 2rem;
  3498. }
  3499. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  3500. width: 100%;
  3501. }
  3502. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  3503. width: 90%;
  3504. height: 3rem;
  3505. }
  3506. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  3507. margin-left: 13%;
  3508. margin-right: 20%;
  3509. width: 60%;
  3510. display: flex;
  3511. flex-direction: row;
  3512. flex-wrap: wrap;
  3513. margin-top: 2rem;
  3514. }
  3515. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  3516. width: 100%;
  3517. }
  3518. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  3519. margin-left: 13%;
  3520. margin-right: 20%;
  3521. width: 60%;
  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-url-vers-une-video-ou-un-site-internet label {
  3528. width: 100%;
  3529. }
  3530. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  3531. width: 90%;
  3532. height: 3rem;
  3533. }
  3534. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  3535. margin-left: 13%;
  3536. width: 28%;
  3537. display: flex;
  3538. flex-direction: row;
  3539. flex-wrap: wrap;
  3540. margin-top: 2rem;
  3541. }
  3542. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  3543. content: "*";
  3544. color: red;
  3545. font-size: 2rem;
  3546. padding-left: 0.5rem;
  3547. }
  3548. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  3549. width: 100%;
  3550. }
  3551. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  3552. width: 90%;
  3553. }
  3554. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  3555. margin-right: 20%;
  3556. width: 29%;
  3557. display: flex;
  3558. flex-direction: row;
  3559. flex-wrap: wrap;
  3560. margin-top: 2rem;
  3561. margin-right: 3rem;
  3562. }
  3563. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  3564. content: "*";
  3565. color: red;
  3566. font-size: 2rem;
  3567. padding-left: 0.5rem;
  3568. }
  3569. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  3570. width: 100%;
  3571. }
  3572. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  3573. width: 90%;
  3574. }
  3575. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  3576. width: 60%;
  3577. }
  3578. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  3579. width: 30%;
  3580. align-self: flex-end;
  3581. background-color: rgb(0, 158, 227);
  3582. text-transform: uppercase;
  3583. color: rgb(255, 255, 255);
  3584. font-size: 1.2rem;
  3585. font-weight: 600;
  3586. float: right;
  3587. margin-top: 1rem;
  3588. border: none;
  3589. }
  3590. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  3591. 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>');
  3592. }
  3593. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  3594. display: flex;
  3595. flex-direction: row;
  3596. flex-wrap: wrap;
  3597. flex-basis: auto;
  3598. justify-content: flex-start;
  3599. }
  3600. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  3601. width: 100%;
  3602. font-family: "Source Code Pro";
  3603. font-size: 1.5rem;
  3604. font-weight: 800;
  3605. color: rgb(255, 255, 255);
  3606. background-color: rgb(0, 158, 227);
  3607. text-transform: uppercase;
  3608. padding-left: 13%;
  3609. padding-top: 2rem;
  3610. padding-bottom: 2rem;
  3611. vertical-align: middle;
  3612. }
  3613. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  3614. width: 100%;
  3615. font-family: "Source Code Pro";
  3616. font-size: 2rem;
  3617. font-weight: 800;
  3618. color: rgb(255, 255, 255);
  3619. background-color: rgb(0, 158, 227);
  3620. text-transform: uppercase;
  3621. width: fit-content;
  3622. margin-left: 13%;
  3623. margin-top: 8rem;
  3624. }
  3625. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  3626. margin-top: 10vh;
  3627. margin-left: 13%;
  3628. margin-right: 20%;
  3629. width: 60%;
  3630. }
  3631. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  3632. margin-left: 13%;
  3633. margin-right: 20%;
  3634. width: 60%;
  3635. display: flex;
  3636. flex-direction: row;
  3637. flex-wrap: wrap;
  3638. margin-top: 2rem;
  3639. }
  3640. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  3641. content: "*";
  3642. color: red;
  3643. font-size: 2rem;
  3644. padding-left: 0.5rem;
  3645. }
  3646. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  3647. width: 100%;
  3648. }
  3649. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  3650. width: 90%;
  3651. height: 5rem;
  3652. }
  3653. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  3654. margin-left: 13%;
  3655. margin-right: 20%;
  3656. width: 60%;
  3657. display: flex;
  3658. flex-direction: row;
  3659. flex-wrap: wrap;
  3660. margin-top: 2rem;
  3661. }
  3662. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  3663. content: "*";
  3664. color: red;
  3665. font-size: 2rem;
  3666. padding-left: 0.5rem;
  3667. }
  3668. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  3669. width: 100%;
  3670. }
  3671. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  3672. width: 90%;
  3673. }
  3674. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  3675. margin-left: 13%;
  3676. margin-right: 20%;
  3677. width: 60%;
  3678. display: flex;
  3679. flex-direction: row;
  3680. flex-wrap: wrap;
  3681. margin-top: 2rem;
  3682. }
  3683. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  3684. content: "*";
  3685. color: red;
  3686. font-size: 2rem;
  3687. padding-left: 0.5rem;
  3688. }
  3689. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  3690. width: 100%;
  3691. }
  3692. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  3693. width: 90%;
  3694. }
  3695. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  3696. width: 100%;
  3697. }
  3698. .path-webform .region-content #webform-submission-offre-de-service-add-form div .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 div .form-item-description label {
  3708. width: 100%;
  3709. }
  3710. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  3711. width: 90%;
  3712. }
  3713. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  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-description label {
  3723. width: 100%;
  3724. }
  3725. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  3726. width: 90%;
  3727. }
  3728. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  3729. margin-left: 13%;
  3730. margin-right: 20%;
  3731. width: 60%;
  3732. display: flex;
  3733. flex-direction: row;
  3734. flex-wrap: wrap;
  3735. margin-top: 2rem;
  3736. }
  3737. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  3738. margin-left: 13%;
  3739. margin-right: 20%;
  3740. width: 60%;
  3741. display: flex;
  3742. flex-direction: row;
  3743. flex-wrap: wrap;
  3744. margin-top: 2rem;
  3745. }
  3746. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  3747. width: 100%;
  3748. }
  3749. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  3750. margin-left: 13%;
  3751. margin-right: 20%;
  3752. width: 60%;
  3753. display: flex;
  3754. flex-direction: row;
  3755. flex-wrap: wrap;
  3756. margin-top: 2rem;
  3757. }
  3758. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  3759. content: "*";
  3760. color: red;
  3761. font-size: 2rem;
  3762. padding-left: 0.5rem;
  3763. }
  3764. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  3765. width: 100%;
  3766. }
  3767. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  3768. width: 90%;
  3769. }
  3770. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  3771. margin-left: 13%;
  3772. display: flex;
  3773. flex-direction: row;
  3774. flex-wrap: wrap;
  3775. margin-top: 2rem;
  3776. width: 28%;
  3777. }
  3778. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  3779. content: "*";
  3780. color: red;
  3781. font-size: 2rem;
  3782. padding-left: 0.5rem;
  3783. }
  3784. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  3785. width: 100%;
  3786. }
  3787. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  3788. width: 90%;
  3789. }
  3790. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  3791. margin-right: 20%;
  3792. width: 29%;
  3793. display: flex;
  3794. flex-direction: row;
  3795. flex-wrap: wrap;
  3796. margin-top: 2rem;
  3797. margin-right: 3rem;
  3798. }
  3799. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  3800. content: "*";
  3801. color: red;
  3802. font-size: 2rem;
  3803. padding-left: 0.5rem;
  3804. }
  3805. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  3806. width: 100%;
  3807. }
  3808. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  3809. width: 90%;
  3810. }
  3811. .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 {
  3812. margin-top: 3rem;
  3813. margin-bottom: 3rem;
  3814. margin-left: 13%;
  3815. margin-right: 20%;
  3816. width: 60%;
  3817. }
  3818. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  3819. width: 60%;
  3820. }
  3821. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  3822. width: 30%;
  3823. align-self: flex-end;
  3824. background-color: rgb(0, 158, 227);
  3825. text-transform: uppercase;
  3826. color: rgb(255, 255, 255);
  3827. font-size: 1.2rem;
  3828. font-weight: 600;
  3829. float: right;
  3830. margin-top: 1rem;
  3831. border: none;
  3832. }
  3833. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  3834. 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>');
  3835. }
  3836. .path-webform .region-content #webform-submission-question-add-form {
  3837. display: flex;
  3838. flex-direction: row;
  3839. flex-wrap: wrap;
  3840. flex-basis: auto;
  3841. justify-content: flex-start;
  3842. margin-top: 10vh;
  3843. width: 60%;
  3844. margin-left: 13%;
  3845. margin-right: 20%;
  3846. }
  3847. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  3848. display: flex;
  3849. flex-direction: row;
  3850. flex-wrap: wrap;
  3851. margin-top: 2rem;
  3852. width: 100%;
  3853. }
  3854. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  3855. content: "*";
  3856. color: red;
  3857. font-size: 2rem;
  3858. padding-left: 0.5rem;
  3859. }
  3860. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  3861. width: 100%;
  3862. }
  3863. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  3864. width: 90%;
  3865. }
  3866. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  3867. display: flex;
  3868. flex-direction: row;
  3869. flex-wrap: wrap;
  3870. margin-top: 2rem;
  3871. width: 100%;
  3872. }
  3873. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  3874. content: "*";
  3875. color: red;
  3876. font-size: 2rem;
  3877. padding-left: 0.9rem;
  3878. }
  3879. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  3880. width: 100%;
  3881. }
  3882. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  3883. width: 90%;
  3884. }
  3885. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  3886. width: 100%;
  3887. height: 5rem;
  3888. }
  3889. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  3890. width: 90%;
  3891. }
  3892. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  3893. width: 30%;
  3894. align-self: flex-end;
  3895. background-color: rgb(0, 158, 227);
  3896. text-transform: uppercase;
  3897. color: rgb(255, 255, 255);
  3898. font-size: 1.2rem;
  3899. font-weight: 600;
  3900. float: right;
  3901. margin-top: 1rem;
  3902. border: none;
  3903. }
  3904. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  3905. 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>');
  3906. }
  3907. .path-projets .region-content #block-contenudelapageprincipale span {
  3908. padding-top: 3rem;
  3909. padding-bottom: 3rem;
  3910. vertical-align: middle;
  3911. }
  3912. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  3913. margin: 0;
  3914. padding-top: 2rem;
  3915. height: 4rem;
  3916. color: rgb(255, 255, 255);
  3917. font-family: "Source Code Pro";
  3918. text-transform: uppercase;
  3919. background: rgb(0, 158, 227);
  3920. padding-left: 13%;
  3921. }
  3922. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3923. display: grid;
  3924. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  3925. }
  3926. @media (max-width: 810px) {
  3927. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3928. display: flex;
  3929. flex-direction: column;
  3930. }
  3931. }
  3932. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  3933. grid-column: 1/span 10;
  3934. }
  3935. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  3936. overflow: scroll;
  3937. height: 210px;
  3938. margin: 17px 10px 17px 20px !important;
  3939. padding-right: 10px;
  3940. }
  3941. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a img:not(:first-child) {
  3942. display: none;
  3943. }
  3944. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3945. grid-column: 3/span 5;
  3946. margin: auto;
  3947. }
  3948. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  3949. display: none;
  3950. }
  3951. .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) {
  3952. font-size: 1.5rem;
  3953. }
  3954. @media (max-width: 810px) {
  3955. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3956. padding: 2rem;
  3957. }
  3958. }
  3959. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  3960. grid-column: 8/span 9;
  3961. margin-top: 4rem;
  3962. background-color: rgb(0, 158, 227);
  3963. height: fit-content;
  3964. width: 60%;
  3965. margin-left: 2rem;
  3966. grid-row: 2;
  3967. }
  3968. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  3969. display: block;
  3970. }
  3971. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  3972. display: flex;
  3973. flex-direction: column;
  3974. margin-top: 2rem;
  3975. margin-bottom: 2rem;
  3976. margin-left: 1.5rem;
  3977. margin-right: 1.5rem;
  3978. text-align: center;
  3979. }
  3980. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  3981. font-weight: 800;
  3982. color: rgb(255, 255, 255);
  3983. font-size: 1.3rem;
  3984. }
  3985. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  3986. margin-left: auto;
  3987. padding-top: 1rem;
  3988. display: block;
  3989. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3990. }
  3991. @media (max-width: 810px) {
  3992. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  3993. margin: auto;
  3994. }
  3995. }
  3996. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  3997. grid-column: 2/span 7;
  3998. }
  3999. @media (max-width: 810px) {
  4000. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4001. padding: 2rem;
  4002. }
  4003. }
  4004. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4005. margin: auto;
  4006. }
  4007. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4008. display: none;
  4009. }
  4010. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4011. scroll-margin-top: 10rem;
  4012. }
  4013. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4014. margin-top: 4rem;
  4015. padding-left: 0.5rem;
  4016. display: flex;
  4017. flex-direction: column;
  4018. }
  4019. @media (max-width: 479px) {
  4020. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4021. flex-direction: column;
  4022. padding-bottom: 3rem;
  4023. }
  4024. }
  4025. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4026. content: "Filtrer par :";
  4027. margin-right: 2rem;
  4028. margin-bottom: 1rem;
  4029. margin-left: 0.5rem;
  4030. font-weight: 900;
  4031. min-width: fit-content;
  4032. }
  4033. @media (max-width: 479px) {
  4034. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4035. padding-bottom: 1rem;
  4036. }
  4037. }
  4038. .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 {
  4039. margin-top: 2rem;
  4040. display: flex;
  4041. flex-direction: row;
  4042. flex-wrap: wrap;
  4043. }
  4044. @media (max-width: 810px) {
  4045. .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 {
  4046. flex-direction: column;
  4047. }
  4048. }
  4049. .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 {
  4050. width: 25%;
  4051. }
  4052. @media (max-width: 810px) {
  4053. .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 {
  4054. width: 100%;
  4055. }
  4056. }
  4057. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4058. color: rgb(9, 57, 139);
  4059. line-height: 1.5rem;
  4060. padding: 0.5rem;
  4061. padding-right: 1rem;
  4062. padding-left: 1rem;
  4063. }
  4064. @media (max-width: 479px) {
  4065. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4066. padding-left: 0rem;
  4067. padding-right: 0rem;
  4068. padding-top: 2rem;
  4069. }
  4070. }
  4071. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4072. display: flex;
  4073. flex-direction: column;
  4074. }
  4075. .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 {
  4076. color: rgb(9, 57, 139);
  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-photo {
  4079. order: 1;
  4080. }
  4081. .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 {
  4082. display: none;
  4083. }
  4084. .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 {
  4085. display: block;
  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-photo img {
  4088. width: 100%;
  4089. max-height: 175px;
  4090. object-fit: cover;
  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-photo::after {
  4093. display: block;
  4094. 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>');
  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 {
  4097. order: 2;
  4098. display: flex;
  4099. text-transform: uppercase;
  4100. font-size: 0.9rem;
  4101. font-weight: 800;
  4102. margin-top: 0.8rem;
  4103. line-height: 0.6rem;
  4104. }
  4105. .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 {
  4106. display: flex;
  4107. flex-direction: row;
  4108. margin: 0;
  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-field-adresse .address .locality {
  4111. padding-top: 0 !important;
  4112. padding-bottom: 0 !important;
  4113. }
  4114. .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 {
  4115. content: ",";
  4116. margin-right: 0.3rem;
  4117. }
  4118. .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 {
  4119. padding-top: 0 !important;
  4120. padding-bottom: 0 !important;
  4121. }
  4122. .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 {
  4123. margin-top: 0.5rem;
  4124. font-size: 0.9rem;
  4125. font-weight: 800;
  4126. order: 4;
  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-title {
  4129. order: 3;
  4130. margin-top: 0.5rem;
  4131. font-size: 0.9rem;
  4132. font-weight: 800;
  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-title h2 {
  4135. margin: 0;
  4136. }
  4137. .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 {
  4138. order: 4;
  4139. color: red;
  4140. margin-top: 0.8rem;
  4141. font-size: 0.7rem;
  4142. }
  4143. .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 {
  4144. display: none;
  4145. }
  4146. .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 {
  4147. display: none;
  4148. }
  4149. .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 {
  4150. display: none;
  4151. }
  4152. .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 {
  4153. display: none;
  4154. }
  4155. .path-node.page-node-type-projet .layout-container {
  4156. overflow: unset;
  4157. }
  4158. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4159. padding-top: 4rem;
  4160. margin-left: 10%;
  4161. margin-right: 10%;
  4162. width: 80vw;
  4163. }
  4164. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4165. display: flex;
  4166. flex-direction: row;
  4167. margin-bottom: 2rem;
  4168. }
  4169. @media (max-width: 568px) {
  4170. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4171. flex-direction: column;
  4172. }
  4173. }
  4174. .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 {
  4175. width: 60%;
  4176. padding-right: 2rem;
  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 {
  4180. width: 100%;
  4181. }
  4182. }
  4183. .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 {
  4184. height: auto;
  4185. max-height: 600px;
  4186. object-fit: contain;
  4187. width: inherit;
  4188. }
  4189. @media (max-width: 810px) {
  4190. .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 {
  4191. padding-top: 1rem;
  4192. object-fit: cover;
  4193. width: 100%;
  4194. }
  4195. }
  4196. @media (max-width: 568px) {
  4197. .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 {
  4198. width: 100%;
  4199. max-height: 300px;
  4200. }
  4201. }
  4202. .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 {
  4203. display: inline-block;
  4204. }
  4205. .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 {
  4206. display: none;
  4207. }
  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 {
  4209. width: 40%;
  4210. }
  4211. @media (max-width: 568px) {
  4212. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4213. width: 100%;
  4214. }
  4215. }
  4216. .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 {
  4217. margin: 0;
  4218. }
  4219. .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 {
  4220. font-family: "Marianne";
  4221. font-size: 2.3rem;
  4222. font-weight: 800;
  4223. color: rgb(0, 158, 227);
  4224. }
  4225. @media (max-width: 1624px) {
  4226. .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 {
  4227. font-size: 2.3rem;
  4228. }
  4229. }
  4230. @media (max-width: 1384px) {
  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-fieldnodetitle .field--name-title {
  4232. font-size: 2rem;
  4233. }
  4234. }
  4235. @media (max-width: 1216px) {
  4236. .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 {
  4237. font-size: rem;
  4238. }
  4239. }
  4240. @media (max-width: 810px) {
  4241. .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 {
  4242. font-size: 1.7rem;
  4243. }
  4244. }
  4245. .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 {
  4246. margin-top: 2rem;
  4247. }
  4248. @media (max-width: 1624px) {
  4249. .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 {
  4250. margin-top: 1rem;
  4251. padding-top: 0.5rem;
  4252. }
  4253. }
  4254. @media (max-width: 1384px) {
  4255. .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 {
  4256. margin-top: 0.8rem;
  4257. padding-top: 0.5rem;
  4258. }
  4259. }
  4260. @media (max-width: 810px) {
  4261. .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 {
  4262. padding-top: 0.5rem;
  4263. }
  4264. }
  4265. .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 {
  4266. color: rgb(9, 57, 139);
  4267. font-size: 1.5rem;
  4268. font-weight: 900;
  4269. text-transform: uppercase;
  4270. }
  4271. @media (max-width: 1624px) {
  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-equipe .field--name-field-equipe {
  4273. font-size: 1.3rem;
  4274. }
  4275. }
  4276. @media (max-width: 1216px) {
  4277. .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 {
  4278. font-size: 1.1rem;
  4279. }
  4280. }
  4281. @media (max-width: 810px) {
  4282. .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 {
  4283. font-size: 1rem;
  4284. }
  4285. }
  4286. .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 {
  4287. margin-top: 2rem;
  4288. width: fit-content;
  4289. }
  4290. .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 {
  4291. background-color: rgb(225, 0, 15);
  4292. color: white;
  4293. font-weight: 800;
  4294. padding-right: 0.3rem;
  4295. padding-left: 0.2rem;
  4296. }
  4297. @media (max-width: 1624px) {
  4298. .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 {
  4299. margin-top: 1rem;
  4300. }
  4301. }
  4302. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4303. display: flex;
  4304. flex-direction: row;
  4305. border: 0.1rem solid;
  4306. justify-content: space-evenly;
  4307. width: 90%;
  4308. margin-top: 3rem;
  4309. font-weight: 600;
  4310. }
  4311. @media (max-width: 479px) {
  4312. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4313. flex-direction: column;
  4314. width: 100%;
  4315. }
  4316. }
  4317. .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 {
  4318. padding-right: 1rem;
  4319. order: 1;
  4320. width: 30%;
  4321. position: relative;
  4322. height: 80px;
  4323. text-align: center;
  4324. }
  4325. @media (max-width: 479px) {
  4326. .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 {
  4327. width: 100%;
  4328. }
  4329. }
  4330. .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 {
  4331. content: url("../images/pictos/picto_lieu.svg");
  4332. min-width: 30px;
  4333. height: auto;
  4334. padding-right: 1rem;
  4335. position: absolute;
  4336. left: 0;
  4337. margin-top: 0.83em;
  4338. margin-left: 1rem;
  4339. }
  4340. .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 {
  4341. order: 1;
  4342. margin-left: 70px;
  4343. margin-bottom: 1rem;
  4344. height: fit-content;
  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 {
  4347. display: inline-flex;
  4348. order: 2;
  4349. margin-left: 70px;
  4350. height: fit-content;
  4351. }
  4352. .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 {
  4353. display: flex;
  4354. flex-direction: row;
  4355. margin-top: 0.83em;
  4356. }
  4357. .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 {
  4358. margin: auto;
  4359. display: flex;
  4360. flex-direction: column;
  4361. justify-content: start;
  4362. margin: 0;
  4363. }
  4364. .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 {
  4365. display: none;
  4366. }
  4367. .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 {
  4368. order: 4;
  4369. padding-left: 1rem;
  4370. padding-right: 1rem;
  4371. padding-bottom: 1rem;
  4372. border-left: 0.1rem solid;
  4373. width: 30%;
  4374. }
  4375. @media (max-width: 479px) {
  4376. .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 {
  4377. width: 100%;
  4378. border-top: 0.1rem solid;
  4379. border-left: 0;
  4380. padding-right: 0rem;
  4381. padding-left: 0rem;
  4382. }
  4383. }
  4384. .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 {
  4385. color: rgb(9, 57, 139);
  4386. font-size: 1.2rem;
  4387. font-weight: 900;
  4388. text-transform: uppercase;
  4389. margin-bottom: 0rem !important;
  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-etape-du-projet h2:after {
  4392. content: " :";
  4393. }
  4394. @media (max-width: 479px) {
  4395. .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 {
  4396. padding-right: 1rem;
  4397. padding-left: 1rem;
  4398. }
  4399. }
  4400. @media (max-width: 479px) {
  4401. .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 {
  4402. padding-right: 1rem;
  4403. padding-left: 1rem;
  4404. }
  4405. }
  4406. .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 {
  4407. display: none;
  4408. }
  4409. .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 {
  4410. order: 2;
  4411. padding-left: 1rem;
  4412. border-left: 0.1rem solid;
  4413. padding-bottom: 1rem;
  4414. width: 20%;
  4415. }
  4416. @media (max-width: 479px) {
  4417. .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 {
  4418. border-left: 0;
  4419. border-top: 0.1rem solid;
  4420. width: 100%;
  4421. padding-right: 0rem;
  4422. padding-left: 0rem;
  4423. }
  4424. }
  4425. .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 {
  4426. color: rgb(9, 57, 139);
  4427. font-size: 1.2rem;
  4428. font-weight: 900;
  4429. text-transform: uppercase;
  4430. margin-bottom: 0rem !important;
  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-moa h2:after {
  4433. content: " :";
  4434. }
  4435. @media (max-width: 479px) {
  4436. .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 {
  4437. padding-right: 1rem;
  4438. padding-left: 1rem;
  4439. }
  4440. }
  4441. @media (max-width: 479px) {
  4442. .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 {
  4443. padding-right: 1rem;
  4444. padding-left: 1rem;
  4445. }
  4446. }
  4447. .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 {
  4448. display: none;
  4449. }
  4450. .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 {
  4451. order: 3;
  4452. padding-left: 1rem;
  4453. padding-bottom: 1rem;
  4454. border-left: 0.1rem solid;
  4455. width: 20%;
  4456. }
  4457. @media (max-width: 479px) {
  4458. .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 {
  4459. border-left: 0;
  4460. border-top: 0.1rem solid;
  4461. width: 100%;
  4462. padding-right: 0rem;
  4463. padding-left: 0rem;
  4464. }
  4465. }
  4466. .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 {
  4467. color: rgb(9, 57, 139);
  4468. font-size: 1.2rem;
  4469. font-weight: 900;
  4470. text-transform: uppercase;
  4471. margin-bottom: 0rem !important;
  4472. }
  4473. .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 {
  4474. content: " :";
  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--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2 {
  4478. padding-right: 1rem;
  4479. padding-left: 1rem;
  4480. }
  4481. }
  4482. @media (max-width: 479px) {
  4483. .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 {
  4484. padding-right: 1rem;
  4485. padding-left: 1rem;
  4486. }
  4487. }
  4488. .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 {
  4489. display: none;
  4490. }
  4491. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  4492. margin-top: 5rem;
  4493. }
  4494. @media (max-width: 479px) {
  4495. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  4496. display: none;
  4497. }
  4498. }
  4499. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  4500. display: flex;
  4501. justify-content: flex-end;
  4502. position: -webkit-sticky;
  4503. position: sticky;
  4504. top: 10rem;
  4505. }
  4506. .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 {
  4507. display: flex;
  4508. justify-content: flex-end;
  4509. width: 50%;
  4510. background-color: rgb(255, 255, 255);
  4511. padding-right: 2rem;
  4512. }
  4513. .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 {
  4514. display: flex;
  4515. font-size: 1rem;
  4516. font-weight: 1000;
  4517. color: rgb(9, 57, 139);
  4518. border-bottom: 1px solid rgb(0, 158, 227);
  4519. padding-bottom: 0.5rem;
  4520. padding-right: 1rem;
  4521. margin-bottom: 0.8rem;
  4522. }
  4523. .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 {
  4524. text-decoration: underline;
  4525. }
  4526. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  4527. margin-top: 5rem;
  4528. flex: 0 1 50%;
  4529. }
  4530. @media (max-width: 479px) {
  4531. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  4532. flex: 0 1 100%;
  4533. margin-top: 1rem;
  4534. }
  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 {
  4537. width: 90%;
  4538. }
  4539. @media (max-width: 479px) {
  4540. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  4541. width: 80%;
  4542. margin: auto;
  4543. }
  4544. }
  4545. .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 {
  4546. margin-top: 0;
  4547. }
  4548. .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 {
  4549. background-color: white;
  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 {
  4552. background-color: rgb(255, 255, 255);
  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 .field--name-field-titre {
  4555. font-size: 1.5rem;
  4556. font-weight: 1000;
  4557. font-family: "Source Code Pro";
  4558. color: rgb(9, 57, 139);
  4559. text-transform: uppercase;
  4560. margin-bottom: 0.8rem;
  4561. }
  4562. .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 {
  4563. text-transform: none !important;
  4564. }
  4565. .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 {
  4566. width: 100%;
  4567. height: auto;
  4568. }
  4569. .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 {
  4570. padding-right: 2rem;
  4571. }
  4572. .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 {
  4573. margin-top: 0;
  4574. }
  4575. .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 {
  4576. color: rgb(0, 0, 0);
  4577. text-decoration: underline;
  4578. }
  4579. .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 {
  4580. display: none;
  4581. }
  4582. .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 {
  4583. overflow-y: visible !important;
  4584. }
  4585. .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 {
  4586. font-size: 1.5rem;
  4587. font-weight: 1000;
  4588. font-family: "Source Code Pro";
  4589. color: rgb(9, 57, 139);
  4590. text-transform: uppercase;
  4591. margin-top: 2rem;
  4592. margin-bottom: 0.8rem;
  4593. }
  4594. .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 {
  4595. display: flex;
  4596. flex-direction: row;
  4597. justify-content: space-between;
  4598. }
  4599. .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 {
  4600. display: flex;
  4601. flex-direction: column;
  4602. align-items: center;
  4603. }
  4604. .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 {
  4605. padding-top: 1rem;
  4606. }
  4607. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  4608. margin-top: 5rem;
  4609. }
  4610. @media (max-width: 479px) {
  4611. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  4612. margin-top: 2rem;
  4613. }
  4614. }
  4615. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  4616. display: flex;
  4617. flex-direction: column;
  4618. width: 65%;
  4619. }
  4620. @media (max-width: 479px) {
  4621. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  4622. width: 80%;
  4623. margin: auto;
  4624. }
  4625. }
  4626. .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 {
  4627. display: none;
  4628. }
  4629. .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 {
  4630. height: fit-content;
  4631. border: 2px solid rgb(0, 158, 227);
  4632. background-color: rgb(255, 255, 255);
  4633. margin-bottom: 1rem;
  4634. min-height: 4rem;
  4635. color: rgb(0, 158, 227);
  4636. padding-left: 1rem;
  4637. padding-top: 1rem;
  4638. }
  4639. .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) {
  4640. display: none;
  4641. }
  4642. .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 {
  4643. height: inherit;
  4644. margin: auto;
  4645. }
  4646. .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 {
  4647. content: url("../images/pictos/noun_Download_file_307900.svg");
  4648. min-width: 30px;
  4649. height: auto;
  4650. padding-right: 1rem;
  4651. }
  4652. .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 {
  4653. hyphens: auto;
  4654. display: inline-flex;
  4655. color: rgb(0, 158, 227);
  4656. font-weight: 800;
  4657. }
  4658. .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 {
  4659. height: inherit;
  4660. margin: auto;
  4661. }
  4662. .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 {
  4663. content: url("../images/pictos/noun_Download_file_307900.svg");
  4664. min-width: 30px;
  4665. height: auto;
  4666. padding-right: 1rem;
  4667. }
  4668. .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 {
  4669. hyphens: auto;
  4670. display: inline-flex;
  4671. color: rgb(0, 158, 227);
  4672. font-weight: 800;
  4673. }
  4674. .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 {
  4675. display: none;
  4676. }
  4677. .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 {
  4678. margin: auto;
  4679. height: fit-content;
  4680. border: 2px solid rgb(0, 158, 227);
  4681. min-height: 4rem;
  4682. background: rgb(255, 255, 255);
  4683. color: rgb(0, 158, 227);
  4684. padding-left: 1rem;
  4685. padding-top: 1rem;
  4686. margin-bottom: 1rem;
  4687. }
  4688. .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 {
  4689. display: inline-flex;
  4690. align-items: center;
  4691. color: rgb(0, 158, 227);
  4692. font-weight: 800;
  4693. }
  4694. .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 {
  4695. content: url("../images/pictos/external_link.png");
  4696. min-width: 30px;
  4697. height: auto;
  4698. padding-right: 1rem;
  4699. }
  4700. .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 {
  4701. display: none;
  4702. }
  4703. .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- {
  4704. margin-top: 3rem;
  4705. }
  4706. @media (max-width: 479px) {
  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- {
  4708. margin-top: 2rem;
  4709. }
  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- h2 {
  4712. font-size: 0.8rem;
  4713. color: rgb(0, 0, 0);
  4714. font-weight: 900;
  4715. }
  4716. .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 {
  4717. display: flex;
  4718. flex-direction: column;
  4719. border: 2px solid rgb(0, 158, 227);
  4720. padding: 1rem;
  4721. height: fit-content;
  4722. margin-bottom: 1rem;
  4723. background-color: rgb(255, 255, 255);
  4724. }
  4725. .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 {
  4726. display: flex;
  4727. flex-direction: column;
  4728. }
  4729. .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 {
  4730. order: 3;
  4731. }
  4732. .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 {
  4733. margin: 0;
  4734. }
  4735. .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 {
  4736. color: rgb(0, 0, 0);
  4737. font-size: 1rem;
  4738. font-weight: 900;
  4739. font-style: italic;
  4740. }
  4741. .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 {
  4742. display: none;
  4743. }
  4744. .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 {
  4745. order: 2;
  4746. text-transform: uppercase;
  4747. color: rgb(0, 158, 227);
  4748. font-weight: 900;
  4749. font-size: 0.8rem;
  4750. }
  4751. .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- {
  4752. order: 5;
  4753. font-weight: 800;
  4754. }
  4755. .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 {
  4756. margin: 0;
  4757. }
  4758. .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 {
  4759. display: none;
  4760. }
  4761. .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 {
  4762. margin: 0;
  4763. }
  4764. .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 {
  4765. display: none;
  4766. }
  4767. .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 {
  4768. order: 1;
  4769. width: 25%;
  4770. }
  4771. .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 {
  4772. width: 100%;
  4773. height: auto;
  4774. }
  4775. .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 {
  4776. order: 6;
  4777. }
  4778. .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 {
  4779. display: none;
  4780. }
  4781. .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 {
  4782. order: 7;
  4783. display: flex;
  4784. margin-top: 0.8rem;
  4785. flex-direction: row;
  4786. flex-wrap: wrap;
  4787. }
  4788. .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 {
  4789. display: none;
  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 .field--name-field-mots-clefs .field__items {
  4792. display: flex;
  4793. flex-direction: row;
  4794. flex-wrap: wrap;
  4795. }
  4796. .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 {
  4797. margin-right: 0.5rem;
  4798. padding-right: 0.3rem;
  4799. font-size: 0.8rem;
  4800. margin-top: 0.2rem;
  4801. }
  4802. .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 {
  4803. background: rgb(9, 57, 139);
  4804. color: rgb(255, 255, 255);
  4805. font-weight: 800;
  4806. vertical-align: super;
  4807. padding-left: 0.1rem;
  4808. padding-right: 0.1rem;
  4809. display: inline-flex;
  4810. }
  4811. .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 {
  4812. display: none;
  4813. }
  4814. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images {
  4815. order: 1;
  4816. width: 100%;
  4817. }
  4818. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  4819. display: none;
  4820. }
  4821. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images img {
  4822. width: 100%;
  4823. height: auto;
  4824. }
  4825. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  4826. width: 50%;
  4827. margin: auto;
  4828. display: flex;
  4829. flex-direction: row;
  4830. flex-wrap: wrap;
  4831. }
  4832. .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 {
  4833. display: none;
  4834. }
  4835. .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 {
  4836. display: flex;
  4837. flex-direction: row;
  4838. flex-wrap: wrap;
  4839. justify-content: space-between;
  4840. }
  4841. .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 {
  4842. display: none;
  4843. }
  4844. .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 {
  4845. display: flex;
  4846. flex-direction: column;
  4847. }
  4848. .path-incubateur {
  4849. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  4850. background-repeat: no-repeat;
  4851. background-position-y: 7rem;
  4852. max-width: 100vw;
  4853. background-size: contain;
  4854. }
  4855. .path-incubateur .layout-container {
  4856. overflow: unset;
  4857. }
  4858. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  4859. width: fit-content;
  4860. }
  4861. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  4862. width: fit-content;
  4863. margin-left: 11%;
  4864. margin-top: 15vh;
  4865. color: rgb(255, 255, 255);
  4866. font-family: "Source Code Pro";
  4867. text-transform: uppercase;
  4868. font-size: 2rem;
  4869. font-weight: 800;
  4870. background: rgb(0, 158, 227);
  4871. margin-bottom: 15vh;
  4872. }
  4873. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  4874. position: relative;
  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 {
  4877. display: flex;
  4878. justify-content: flex-end;
  4879. position: -webkit-sticky;
  4880. position: sticky;
  4881. top: 10rem;
  4882. }
  4883. @media (max-width: 810px) {
  4884. .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 {
  4885. display: none;
  4886. }
  4887. }
  4888. .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 {
  4889. display: flex;
  4890. flex-direction: row-reverse;
  4891. width: 50%;
  4892. background-color: rgb(255, 255, 255);
  4893. padding-right: 2rem;
  4894. }
  4895. .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 {
  4896. display: flex;
  4897. flex-direction: column;
  4898. font-size: 1rem;
  4899. font-weight: 1000;
  4900. color: rgb(9, 57, 139);
  4901. border-bottom: 1px solid rgb(0, 158, 227);
  4902. padding-bottom: 0.8rem;
  4903. padding-right: 1rem;
  4904. margin-top: 1rem;
  4905. scroll-margin-top: 7em;
  4906. }
  4907. .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 {
  4908. text-decoration: underline;
  4909. }
  4910. .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 {
  4911. padding-right: 2rem;
  4912. margin-top: 1rem;
  4913. background-color: rgb(255, 255, 255);
  4914. }
  4915. .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 {
  4916. font-size: 1.5rem;
  4917. font-weight: 1000;
  4918. font-family: "Source Code Pro", monospace;
  4919. color: rgb(9, 57, 139);
  4920. text-transform: uppercase;
  4921. margin-bottom: 0.8rem;
  4922. }
  4923. .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 {
  4924. margin-bottom: 2rem;
  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 {
  4927. margin-top: 1rem;
  4928. display: flex;
  4929. flex-direction: column;
  4930. width: 70%;
  4931. }
  4932. @media (max-width: 810px) {
  4933. .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 {
  4934. margin: auto;
  4935. }
  4936. }
  4937. .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 {
  4938. height: fit-content;
  4939. border: 2px solid rgb(0, 158, 227);
  4940. background-color: rgb(255, 255, 255);
  4941. margin-bottom: 1rem;
  4942. }
  4943. .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 {
  4944. min-height: 4rem;
  4945. background: rgb(255, 255, 255);
  4946. color: rgb(0, 158, 227);
  4947. padding-left: 0.8rem;
  4948. padding-top: 1rem;
  4949. }
  4950. .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) {
  4951. display: none;
  4952. }
  4953. .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 {
  4954. height: inherit;
  4955. margin: auto;
  4956. }
  4957. .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 {
  4958. content: url("../images/pictos/noun_Download_file_307900.svg");
  4959. min-width: 40px;
  4960. height: auto;
  4961. padding-right: 0.5rem;
  4962. display: inline-flex;
  4963. align-items: center;
  4964. }
  4965. .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 {
  4966. hyphens: auto;
  4967. display: inline-flex;
  4968. align-items: center;
  4969. color: rgb(0, 158, 227);
  4970. font-weight: 800;
  4971. }
  4972. .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 {
  4973. margin: auto;
  4974. height: fit-content;
  4975. border: 2px solid rgb(0, 158, 227);
  4976. min-height: 4rem;
  4977. background: rgb(255, 255, 255);
  4978. color: rgb(0, 158, 227);
  4979. padding-left: 0.8rem;
  4980. padding-top: 1rem;
  4981. margin-bottom: 1rem;
  4982. }
  4983. .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 {
  4984. display: inline-flex;
  4985. align-items: center;
  4986. justify-items: center;
  4987. color: rgb(0, 158, 227);
  4988. font-weight: 800;
  4989. }
  4990. .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 {
  4991. content: url("../images/pictos/external_link.png");
  4992. min-width: 40px;
  4993. height: auto;
  4994. padding-right: 0.5rem;
  4995. display: inline-flex;
  4996. align-items: center;
  4997. }
  4998. .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 {
  4999. display: none;
  5000. }
  5001. .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 {
  5002. padding-top: 1rem;
  5003. background-color: white;
  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 {
  5006. width: 80%;
  5007. margin: auto;
  5008. }
  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 {
  5010. margin-top: 4rem;
  5011. display: flex;
  5012. flex-direction: row;
  5013. }
  5014. @media (max-width: 479px) {
  5015. .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 {
  5016. flex-direction: column;
  5017. padding-bottom: 3rem;
  5018. }
  5019. }
  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::before {
  5021. content: "Filtrer par :";
  5022. margin-right: 1rem;
  5023. }
  5024. @media (max-width: 479px) {
  5025. .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 {
  5026. padding-bottom: 1rem;
  5027. }
  5028. }
  5029. .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 {
  5030. display: flex;
  5031. flex-direction: row;
  5032. }
  5033. .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 {
  5034. display: none;
  5035. }
  5036. .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 {
  5037. display: none;
  5038. }
  5039. @media (max-width: 479px) {
  5040. .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 {
  5041. padding-bottom: 1rem;
  5042. }
  5043. }
  5044. .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 {
  5045. display: none;
  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 #edit-field-encours-fini-value--wrapper .js-form-item-field-encours-fini-value:first-of-type {
  5048. display: none;
  5049. }
  5050. @media (max-width: 479px) {
  5051. .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 {
  5052. padding-bottom: 1rem;
  5053. }
  5054. }
  5055. .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 {
  5056. display: none;
  5057. }
  5058. @media (max-width: 479px) {
  5059. .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 {
  5060. padding-bottom: 1rem;
  5061. }
  5062. }
  5063. .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] {
  5064. display: none;
  5065. }
  5066. .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 {
  5067. content: "";
  5068. display: inline-block;
  5069. width: 15px;
  5070. height: 15px;
  5071. background: #fff;
  5072. border-radius: 0px;
  5073. border-color: black;
  5074. border-style: solid;
  5075. border-width: 1px;
  5076. margin-right: 0.5rem;
  5077. }
  5078. .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 {
  5079. background: rgb(0, 158, 227);
  5080. }
  5081. .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 {
  5082. padding-right: 1rem;
  5083. }
  5084. .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 {
  5085. background-color: rgb(0, 158, 227);
  5086. color: white;
  5087. text-transform: uppercase;
  5088. border: none;
  5089. padding: 0.1rem 0.7rem;
  5090. margin-left: 2rem;
  5091. }
  5092. @media (max-width: 479px) {
  5093. .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 {
  5094. margin-left: 0rem;
  5095. margin-right: 2rem;
  5096. }
  5097. }
  5098. .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 {
  5099. background-color: rgb(0, 158, 227);
  5100. color: white;
  5101. text-transform: uppercase;
  5102. border: none;
  5103. padding: 0.1rem 0.7rem;
  5104. margin-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 .view-filters #views-exposed-form-projets-block-3 {
  5108. flex-direction: column;
  5109. }
  5110. }
  5111. .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 {
  5112. margin-top: 2rem;
  5113. display: flex;
  5114. flex-direction: row;
  5115. flex-wrap: wrap;
  5116. }
  5117. @media (max-width: 810px) {
  5118. .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 {
  5119. flex-direction: column;
  5120. }
  5121. }
  5122. .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 {
  5123. width: 25%;
  5124. }
  5125. @media (max-width: 810px) {
  5126. .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 {
  5127. width: 100%;
  5128. }
  5129. }
  5130. .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 {
  5131. color: rgb(9, 57, 139);
  5132. line-height: 1.5rem;
  5133. padding: 0.5rem;
  5134. padding-right: 1rem;
  5135. padding-left: 1rem;
  5136. }
  5137. @media (max-width: 479px) {
  5138. .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 {
  5139. padding-left: 0rem;
  5140. padding-right: 0rem;
  5141. padding-top: 2rem;
  5142. }
  5143. }
  5144. .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 {
  5145. display: flex;
  5146. flex-direction: column;
  5147. }
  5148. .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 {
  5149. color: rgb(9, 57, 139);
  5150. }
  5151. .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 {
  5152. order: 1;
  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-photo img {
  5155. width: 100%;
  5156. max-height: 175px;
  5157. object-fit: cover;
  5158. }
  5159. .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 {
  5160. display: block;
  5161. 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>');
  5162. }
  5163. .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 {
  5164. order: 2;
  5165. display: flex;
  5166. text-transform: uppercase;
  5167. font-size: 0.9rem;
  5168. font-weight: 800;
  5169. margin-top: 0.8rem;
  5170. line-height: 0.6rem;
  5171. }
  5172. .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 {
  5173. display: flex;
  5174. flex-direction: row;
  5175. margin: 0;
  5176. }
  5177. .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 {
  5178. padding-top: 0 !important;
  5179. padding-bottom: 0 !important;
  5180. }
  5181. .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 {
  5182. content: ",";
  5183. margin-right: 0.3rem;
  5184. }
  5185. .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 {
  5186. padding-top: 0 !important;
  5187. padding-bottom: 0 !important;
  5188. }
  5189. .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 {
  5190. margin-top: 0.5rem;
  5191. font-size: 0.9rem;
  5192. font-weight: 800;
  5193. order: 4;
  5194. }
  5195. .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 {
  5196. order: 3;
  5197. margin-top: 0.5rem;
  5198. font-size: 0.9rem;
  5199. font-weight: 800;
  5200. }
  5201. .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 {
  5202. margin: 0;
  5203. }
  5204. .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 {
  5205. order: 4;
  5206. color: red;
  5207. margin-top: 0.8rem;
  5208. font-size: 0.7rem;
  5209. }
  5210. .node-id-201 {
  5211. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5212. background-repeat: no-repeat;
  5213. background-position-y: 7rem;
  5214. max-width: 100vw;
  5215. background-size: contain;
  5216. }
  5217. .node-id-201 #block-contenudelapageprincipale {
  5218. scroll-margin: 8rem;
  5219. }
  5220. .node-id-201 .layout__region--top {
  5221. padding-bottom: 3rem;
  5222. height: 30vh;
  5223. }
  5224. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5225. display: none;
  5226. height: inherit;
  5227. }
  5228. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  5229. font-family: "Source Code Pro";
  5230. font-size: 2rem;
  5231. font-weight: 800;
  5232. color: rgb(255, 255, 255);
  5233. background-color: rgb(0, 158, 227);
  5234. text-transform: uppercase;
  5235. }
  5236. .node-id-201 .layout__region--second {
  5237. width: 25%;
  5238. }
  5239. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  5240. background-color: rgb(255, 255, 255);
  5241. }
  5242. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  5243. font-size: 1.5rem;
  5244. font-weight: 1000;
  5245. font-family: "Source Code Pro";
  5246. color: rgb(9, 57, 139);
  5247. text-transform: uppercase;
  5248. }
  5249. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  5250. text-transform: none !important;
  5251. }
  5252. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  5253. padding-right: 2rem;
  5254. }
  5255. .path-ressources .layout-container {
  5256. overflow: hidden;
  5257. }
  5258. @media (max-width: 810px) {
  5259. .path-ressources .layout-container {
  5260. overflow: hidden;
  5261. }
  5262. }
  5263. .path-ressources .layout-content {
  5264. width: 100vw;
  5265. }
  5266. .path-ressources .layout-content .region-content {
  5267. width: 100%;
  5268. margin: auto;
  5269. }
  5270. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5271. font-size: 4em;
  5272. color: rgb(9, 57, 139);
  5273. font-weight: 400;
  5274. text-align: center;
  5275. margin-bottom: 1rem;
  5276. width: fit-content;
  5277. margin-left: 28%;
  5278. }
  5279. @media (max-width: 810px) {
  5280. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5281. margin-left: 2rem;
  5282. text-align: left;
  5283. line-height: 4rem;
  5284. }
  5285. }
  5286. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5287. display: flex;
  5288. flex-direction: column;
  5289. }
  5290. @media (max-width: 479px) {
  5291. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5292. display: flex;
  5293. flex-direction: column;
  5294. }
  5295. }
  5296. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5297. width: 60%;
  5298. margin: auto;
  5299. margin-left: 28%;
  5300. }
  5301. @media (max-width: 810px) {
  5302. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5303. margin-left: 2rem;
  5304. width: 85%;
  5305. }
  5306. }
  5307. @media (max-width: 479px) {
  5308. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5309. order: 1;
  5310. margin-left: 2rem;
  5311. }
  5312. }
  5313. .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 {
  5314. grid-column: 1/span 5;
  5315. }
  5316. @media (max-width: 810px) {
  5317. .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 {
  5318. padding-top: 1rem;
  5319. margin-top: 1rem;
  5320. }
  5321. }
  5322. @media (max-width: 479px) {
  5323. .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 {
  5324. padding-left: 0;
  5325. padding-right: 0;
  5326. }
  5327. }
  5328. .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 {
  5329. margin: auto;
  5330. background: rgb(255, 255, 255);
  5331. font-size: 1rem;
  5332. }
  5333. @media (max-width: 479px) {
  5334. .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 {
  5335. margin-top: 1rem;
  5336. }
  5337. }
  5338. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5339. grid-column: 6/span 5;
  5340. grid-row: 1;
  5341. margin-top: 4rem;
  5342. background-color: rgb(0, 158, 227);
  5343. height: fit-content;
  5344. width: 100%;
  5345. }
  5346. @media (max-width: 810px) {
  5347. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5348. grid-column: 5/span 5;
  5349. }
  5350. }
  5351. @media (max-width: 479px) {
  5352. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5353. grid-column: 5/span 5;
  5354. order: 2;
  5355. }
  5356. }
  5357. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  5358. display: block;
  5359. }
  5360. .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 {
  5361. display: flex;
  5362. flex-direction: column;
  5363. margin-top: 2rem;
  5364. margin-bottom: 2rem;
  5365. margin-left: 1.5rem;
  5366. margin-right: 1.5rem;
  5367. text-align: center;
  5368. }
  5369. .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 {
  5370. font-weight: 800;
  5371. color: rgb(255, 255, 255);
  5372. font-size: 1.3rem;
  5373. }
  5374. .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 {
  5375. margin-left: auto;
  5376. padding-top: 1rem;
  5377. display: block;
  5378. content: url("../images/pictos/noun_Arrow_3771902.svg");
  5379. }
  5380. @media (max-width: 810px) {
  5381. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5382. margin: auto;
  5383. }
  5384. }
  5385. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5386. margin-top: 2rem;
  5387. width: 100%;
  5388. }
  5389. @media (max-width: 479px) {
  5390. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5391. order: 3;
  5392. }
  5393. }
  5394. @media (max-width: 810px) {
  5395. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees {
  5396. display: flex;
  5397. flex-direction: column;
  5398. }
  5399. }
  5400. .path-ressources .layout-content .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 {
  5401. position: fixed;
  5402. top: 25rem;
  5403. left: 0;
  5404. background-color: rgb(255, 255, 255);
  5405. margin-bottom: 5rem;
  5406. padding: 1rem;
  5407. padding-left: 2rem;
  5408. padding-right: 1.5rem;
  5409. z-index: 1;
  5410. transform: translateY(-210px);
  5411. margin-bottom: -210px;
  5412. width: 20%;
  5413. }
  5414. @media (max-width: 810px) {
  5415. .path-ressources .layout-content .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 {
  5416. position: static;
  5417. margin-bottom: 2rem;
  5418. transform: none;
  5419. margin-bottom: 0px;
  5420. width: 80%;
  5421. }
  5422. }
  5423. @media (max-width: 479px) {
  5424. .path-ressources .layout-content .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 {
  5425. margin-left: 0;
  5426. }
  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::before {
  5429. content: "Afficher : ";
  5430. padding-right: 1rem;
  5431. font-weight: 800;
  5432. font-size: 1rem;
  5433. margin-bottom: 1rem;
  5434. display: block;
  5435. width: 100%;
  5436. }
  5437. @media (max-width: 479px) {
  5438. .path-ressources .layout-content .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 {
  5439. padding-bottom: 1rem;
  5440. }
  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 a.button {
  5443. background-color: transparent;
  5444. border: 1px solid black;
  5445. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  5446. margin-bottom: 0.5rem;
  5447. margin-right: 0.5rem;
  5448. font-size: 0.8rem;
  5449. color: rgb(9, 57, 139);
  5450. display: inline-flex;
  5451. flex-direction: row;
  5452. align-items: center;
  5453. }
  5454. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button:hover {
  5455. cursor: grab;
  5456. background-color: rgb(9, 57, 139);
  5457. color: white;
  5458. }
  5459. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button :visited {
  5460. color: rgb(9, 57, 139);
  5461. }
  5462. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  5463. content: url("../images/pictos/videos.svg");
  5464. padding-right: 0.5rem;
  5465. display: block;
  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 .buttons-filtres-ressources a.button.button-videos:hover::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  5468. content: url("../images/pictos/videos-blanc.svg");
  5469. display: block;
  5470. }
  5471. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts::before {
  5472. content: url("../images/pictos/podcasts.svg");
  5473. padding-right: 0.5rem;
  5474. display: block;
  5475. }
  5476. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts:hover::before {
  5477. content: url("../images/pictos/podcasts-blanc.svg");
  5478. display: block;
  5479. }
  5480. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos::before {
  5481. content: url("../images/pictos/en-images.svg");
  5482. display: block;
  5483. padding-right: 0.5rem;
  5484. }
  5485. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos:hover::before {
  5486. content: url("../images/pictos/en-images-blanc.svg");
  5487. display: block;
  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-filters .buttons-filtres-ressources a.button.button-livres::before {
  5490. content: url("../images/pictos/ecrits.svg");
  5491. padding-right: 0.5rem;
  5492. display: block;
  5493. }
  5494. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres:hover::before {
  5495. content: url("../images/pictos/ecrits-blanc.svg");
  5496. display: block;
  5497. }
  5498. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles::before {
  5499. content: url("../images/pictos/ecrits.svg");
  5500. padding-right: 0.5rem;
  5501. display: block;
  5502. }
  5503. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles:hover::before {
  5504. content: url("../images/pictos/ecrits-blanc.svg");
  5505. display: block;
  5506. }
  5507. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports::before {
  5508. content: url("../images/pictos/ecrits.svg");
  5509. padding-right: 0.5rem;
  5510. display: block;
  5511. }
  5512. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports:hover::before {
  5513. content: url("../images/pictos/ecrits-blanc.svg");
  5514. display: block;
  5515. }
  5516. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active {
  5517. background-color: rgb(9, 57, 139);
  5518. color: white;
  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-filters .buttons-filtres-ressources button.is-active a {
  5521. color: white;
  5522. }
  5523. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos {
  5524. margin-top: 1rem;
  5525. }
  5526. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before {
  5527. content: url("../images/pictos/videos-blanc.svg");
  5528. }
  5529. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-podcasts a::before {
  5530. content: url("../images/pictos/podcasts-blanc.svg");
  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-filters .buttons-filtres-ressources button.is-active.button-images---photos a::before {
  5533. content: url("../images/pictos/en-images-blanc.svg");
  5534. }
  5535. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-livres a::before {
  5536. content: url("../images/pictos/ecrits-blanc.svg");
  5537. }
  5538. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-articles a::before {
  5539. content: url("../images/pictos/ecrits-blanc.svg");
  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-filters .buttons-filtres-ressources button.is-active.button-publications---rapports a::before {
  5542. content: url("../images/pictos/ecrits-blanc.svg");
  5543. }
  5544. .path-ressources .layout-content .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 {
  5545. content: "Filtrer par : ";
  5546. padding-right: 1rem;
  5547. font-weight: 800;
  5548. font-size: 1rem;
  5549. margin-bottom: 1rem;
  5550. }
  5551. @media (max-width: 479px) {
  5552. .path-ressources .layout-content .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 {
  5553. padding-bottom: 1rem;
  5554. }
  5555. }
  5556. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-type-de-media-target-id {
  5557. display: none;
  5558. }
  5559. .path-ressources .layout-content .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 {
  5560. font-size: 0.8rem;
  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-filters form .form-item-combine {
  5563. border-top: none;
  5564. border-left: none;
  5565. border-right: none;
  5566. font-size: 0.8rem;
  5567. justify-content: flex-start !important;
  5568. }
  5569. .path-ressources .layout-content .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 {
  5570. display: none;
  5571. }
  5572. .path-ressources .layout-content .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 {
  5573. display: inline-flex;
  5574. position: relative;
  5575. font-size: 0.8rem;
  5576. width: -webkit-fill-available; /* Safari/Chrome */
  5577. width: -moz-available; /* Firefox */
  5578. width: fill-available; /* standard futur */
  5579. width: 100%; /* fallback */
  5580. max-width: 100%;
  5581. }
  5582. .path-ressources .layout-content .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 {
  5583. content: url("../images/pictos/loupe.svg");
  5584. display: inline-block;
  5585. }
  5586. .path-ressources .layout-content .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 {
  5587. text-align: start !important;
  5588. max-width: 100% !important;
  5589. }
  5590. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input {
  5591. position: absolute;
  5592. right: -4px;
  5593. top: 50%;
  5594. transform: translateY(-50%);
  5595. background: white;
  5596. border: none;
  5597. padding: 0.5rem;
  5598. margin: 0;
  5599. cursor: pointer;
  5600. color: #888;
  5601. display: none; /* masqué par défaut */
  5602. }
  5603. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input:hover {
  5604. color: #000;
  5605. }
  5606. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-date-de-parution-value .clear-input {
  5607. display: none;
  5608. }
  5609. .path-ressources .layout-content .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 {
  5610. font-size: 0.8rem;
  5611. }
  5612. .path-ressources .layout-content .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 {
  5613. display: none;
  5614. }
  5615. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form input {
  5616. font-size: 0.8rem;
  5617. }
  5618. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered {
  5619. display: flex;
  5620. flex-direction: row;
  5621. flex-wrap: wrap;
  5622. }
  5623. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper {
  5624. flex-wrap: wrap;
  5625. width: 85%;
  5626. }
  5627. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper .views-row {
  5628. padding: 1rem;
  5629. width: 30% !important;
  5630. }
  5631. .path-ressources .layout-content .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 {
  5632. transition: opacity 0.3s ease;
  5633. display: flex;
  5634. flex-direction: row;
  5635. flex-wrap: wrap;
  5636. padding-left: 25%;
  5637. }
  5638. @media (max-width: 810px) {
  5639. .path-ressources .layout-content .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 {
  5640. padding-left: 0;
  5641. }
  5642. }
  5643. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .border {
  5644. width: 80%;
  5645. border-top: solid 1px rgba(0, 0, 0, 0.3);
  5646. }
  5647. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme {
  5648. order: 1;
  5649. }
  5650. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme::before {
  5651. background-color: rgba(0, 158, 227, 0.2);
  5652. }
  5653. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme .views-row {
  5654. width: 45%;
  5655. min-width: 350px !important;
  5656. max-width: 500px;
  5657. }
  5658. .path-ressources .layout-content .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 {
  5659. order: 2;
  5660. }
  5661. .path-ressources .layout-content .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 {
  5662. order: 3;
  5663. }
  5664. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images .slick-list {
  5665. padding-left: 0 !important;
  5666. }
  5667. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images::before {
  5668. background-color: rgba(0, 158, 227, 0.2);
  5669. }
  5670. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse {
  5671. order: 5;
  5672. }
  5673. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse h3 {
  5674. border: none;
  5675. }
  5676. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-des-partenaires-et-laureats {
  5677. order: 4;
  5678. }
  5679. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-autres {
  5680. order: 9;
  5681. }
  5682. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .type-documentation-partenariale {
  5683. order: 6;
  5684. }
  5685. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-these-et-memoire {
  5686. order: 8;
  5687. }
  5688. .path-ressources .layout-content .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) {
  5689. width: 100%;
  5690. position: relative;
  5691. z-index: 0;
  5692. padding-bottom: 1rem;
  5693. }
  5694. .path-ressources .layout-content .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 {
  5695. content: "";
  5696. position: absolute;
  5697. left: -35%;
  5698. height: 100%;
  5699. width: 110vw;
  5700. z-index: 0;
  5701. }
  5702. @media (max-width: 810px) {
  5703. .path-ressources .layout-content .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 {
  5704. left: 0;
  5705. }
  5706. }
  5707. .path-ressources .layout-content .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) > * {
  5708. position: relative;
  5709. z-index: 1;
  5710. }
  5711. .path-ressources .layout-content .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 {
  5712. top: 1rem;
  5713. text-transform: uppercase;
  5714. font-family: "Source Code Pro";
  5715. color: rgb(9, 57, 139) !important;
  5716. display: flex;
  5717. flex-direction: row;
  5718. align-items: center;
  5719. font-size: 1.7rem;
  5720. margin-block: 0em;
  5721. }
  5722. @media (max-width: 810px) {
  5723. .path-ressources .layout-content .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 {
  5724. padding-left: 2rem;
  5725. width: 70%;
  5726. }
  5727. }
  5728. @media (max-width: 479px) {
  5729. .path-ressources .layout-content .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 {
  5730. width: 65% !important;
  5731. }
  5732. }
  5733. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme {
  5734. border: none;
  5735. }
  5736. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme:before {
  5737. content: url("../images/pictos/picto-ressource-eqld.svg");
  5738. padding-right: 1rem;
  5739. }
  5740. .path-ressources .layout-content .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 {
  5741. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  5742. padding-right: 1rem;
  5743. }
  5744. .path-ressources .layout-content .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 {
  5745. width: 80%;
  5746. }
  5747. .path-ressources .layout-content .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 {
  5748. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  5749. padding-right: 1rem;
  5750. }
  5751. .path-ressources .layout-content .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 {
  5752. content: url("../images/pictos/picto-ressource-presse.svg");
  5753. padding-right: 1rem;
  5754. }
  5755. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  5756. background-color: rgb(255, 255, 255);
  5757. border: 1px solid rgb(0, 158, 227);
  5758. list-style: none;
  5759. padding: 0.5rem;
  5760. position: relative;
  5761. left: 60vw;
  5762. top: -1.5rem;
  5763. text-transform: uppercase;
  5764. font-size: 0.7rem;
  5765. font-weight: 500;
  5766. color: rgb(0, 158, 227);
  5767. display: inline-flex;
  5768. align-items: center;
  5769. }
  5770. @media (max-width: 810px) {
  5771. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  5772. left: 81vw;
  5773. }
  5774. }
  5775. @media (max-width: 479px) {
  5776. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  5777. left: 76vw;
  5778. top: -1.5rem;
  5779. }
  5780. }
  5781. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  5782. display: flex;
  5783. flex-direction: row;
  5784. }
  5785. .path-ressources .layout-content .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 {
  5786. width: 100% !important;
  5787. display: flex;
  5788. flex-direction: row;
  5789. transform: none;
  5790. }
  5791. .path-ressources .layout-content .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 {
  5792. width: 20%;
  5793. min-width: 250px;
  5794. max-width: 500px;
  5795. }
  5796. @media (max-width: 810px) {
  5797. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  5798. padding-left: 0rem !important;
  5799. flex-direction: column;
  5800. }
  5801. .path-ressources .layout-content .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 {
  5802. width: 100% !important;
  5803. }
  5804. }
  5805. .path-ressources .layout-content .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 {
  5806. content: url("../images/pictos/fleche-droite-dans-rond.png");
  5807. display: inline-block;
  5808. }
  5809. @media (max-width: 810px) {
  5810. .path-ressources .layout-content .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 {
  5811. transform: scale(0.5); /* Réduction à 50% */
  5812. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  5813. }
  5814. }
  5815. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  5816. content: url("../images/pictos/fleche-droite-dans-rond.png");
  5817. display: block;
  5818. display: inline-block;
  5819. transform: scaleX(-1);
  5820. }
  5821. @media (max-width: 810px) {
  5822. .path-ressources .layout-content .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 {
  5823. transform: scale(-0.5, 0.5);
  5824. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  5825. }
  5826. }
  5827. .path-ressources .layout-content .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,
  5828. .path-ressources .layout-content .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 {
  5829. opacity: 0 !important;
  5830. }
  5831. .path-ressources .layout-content .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 {
  5832. right: 10%;
  5833. }
  5834. @media (max-width: 810px) {
  5835. .path-ressources .layout-content .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 {
  5836. left: -10%;
  5837. }
  5838. .path-ressources .layout-content .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 {
  5839. right: 2%;
  5840. }
  5841. }
  5842. @media (max-width: 479px) {
  5843. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  5844. left: -15%;
  5845. }
  5846. }
  5847. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  5848. padding-left: 0 !important;
  5849. }
  5850. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  5851. padding-left: 8% !important;
  5852. padding-right: 8% !important;
  5853. }
  5854. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  5855. padding-right: 0;
  5856. }
  5857. footer {
  5858. z-index: 1;
  5859. }
  5860. .carousel {
  5861. display: none;
  5862. }
  5863. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  5864. display: flex !important;
  5865. flex-direction: column;
  5866. margin-left: 11%;
  5867. }
  5868. @media screen and (min-width: 1100px) {
  5869. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  5870. display: flex;
  5871. }
  5872. }
  5873. @media screen and (max-width: 810px) {
  5874. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  5875. margin-left: 0;
  5876. }
  5877. }
  5878. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  5879. margin-left: 0;
  5880. }
  5881. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5882. margin-top: 5rem;
  5883. padding: 0;
  5884. order: 7;
  5885. width: 85%;
  5886. }
  5887. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  5888. display: grid;
  5889. grid-template-columns: 10fr 1fr;
  5890. gap: 4rem;
  5891. justify-content: center;
  5892. margin: auto;
  5893. }
  5894. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  5895. display: flex;
  5896. align-items: center;
  5897. position: relative;
  5898. width: 100%;
  5899. margin: 0 auto;
  5900. }
  5901. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  5902. flex: 1;
  5903. text-align: center;
  5904. }
  5905. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  5906. width: 100%;
  5907. height: auto;
  5908. object-fit: contain;
  5909. max-height: 550px;
  5910. border: none;
  5911. }
  5912. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  5913. margin-top: 1rem;
  5914. font-family: sans-serif;
  5915. text-align: center;
  5916. font-size: 1rem;
  5917. color: #444;
  5918. }
  5919. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  5920. font-size: 2rem;
  5921. color: #333;
  5922. background: none;
  5923. border-radius: 50%;
  5924. width: 40px;
  5925. height: 40px;
  5926. line-height: 40px;
  5927. text-align: center;
  5928. cursor: pointer;
  5929. user-select: none;
  5930. transition: background 0.3s ease;
  5931. }
  5932. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  5933. background: #bbb;
  5934. }
  5935. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  5936. margin-right: 10px;
  5937. }
  5938. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  5939. margin-left: 10px;
  5940. }
  5941. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  5942. margin-top: 10px;
  5943. font-family: sans-serif;
  5944. grid-column: 2;
  5945. grid-row: 2;
  5946. }
  5947. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  5948. grid-column: 2;
  5949. display: flex;
  5950. flex-direction: column;
  5951. align-items: center;
  5952. max-height: 60vh;
  5953. grid-row: 1/span 2;
  5954. top: 0px;
  5955. position: relative;
  5956. overflow: hidden;
  5957. }
  5958. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  5959. cursor: pointer;
  5960. padding: 5px 10px;
  5961. background: #00aaff;
  5962. color: white;
  5963. border-radius: 50%;
  5964. user-select: none;
  5965. z-index: 2;
  5966. position: relative;
  5967. }
  5968. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.up {
  5969. transform: rotate(90deg);
  5970. }
  5971. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.down {
  5972. transform: rotate(90deg);
  5973. }
  5974. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  5975. display: flex;
  5976. flex-direction: column;
  5977. gap: 6px;
  5978. overflow-y: auto;
  5979. max-height: 100%;
  5980. scroll-behavior: smooth;
  5981. position: relative;
  5982. z-index: 0;
  5983. }
  5984. .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 {
  5985. display: none;
  5986. }
  5987. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  5988. width: 80px;
  5989. height: 60px;
  5990. object-fit: contain;
  5991. border: 2px solid transparent;
  5992. cursor: pointer;
  5993. opacity: 0.7;
  5994. transition: transform 0.3s ease, opacity 0.3s ease;
  5995. }
  5996. .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 {
  5997. transform: scale(1.3);
  5998. margin-top: 0.8rem;
  5999. margin-bottom: 0.8rem;
  6000. opacity: 1;
  6001. z-index: 1;
  6002. }
  6003. @media screen and (max-width: 810px) {
  6004. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6005. display: flex;
  6006. flex-direction: column;
  6007. gap: 2rem;
  6008. align-items: center;
  6009. width: 100vw;
  6010. }
  6011. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6012. width: 90%;
  6013. }
  6014. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6015. width: 100%;
  6016. display: flex !important;
  6017. flex-direction: row !important; /* 👈 corrige l'orientation */
  6018. justify-content: center;
  6019. align-items: center;
  6020. overflow-x: auto;
  6021. overflow-y: hidden;
  6022. max-height: none;
  6023. padding: 1rem 0;
  6024. position: relative;
  6025. }
  6026. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6027. display: flex !important;
  6028. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6029. gap: 0.8 rem !important;
  6030. overflow-x: auto;
  6031. overflow-y: hidden;
  6032. scroll-behavior: smooth;
  6033. padding: 0 1rem;
  6034. max-width: 100%;
  6035. flex-wrap: nowrap;
  6036. }
  6037. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6038. display: none;
  6039. }
  6040. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6041. width: 60px;
  6042. height: 45px;
  6043. flex-shrink: 0; /* évite l’écrasement */
  6044. }
  6045. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6046. display: none; /* inutile si scroll horizontal */
  6047. }
  6048. }
  6049. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6050. display: none;
  6051. }
  6052. @media screen and (max-width: 810px) {
  6053. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6054. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6055. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6056. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6057. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6058. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6059. margin-left: 7%;
  6060. }
  6061. }
  6062. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6063. transform: translateY(-45.5rem);
  6064. }
  6065. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6066. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6067. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6068. transform: translateY(-16rem);
  6069. }
  6070. .carousel {
  6071. display: none;
  6072. }
  6073. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6074. display: flex !important;
  6075. flex-direction: column;
  6076. margin-left: 11%;
  6077. width: 60%;
  6078. }
  6079. @media screen and (min-width: 1100px) {
  6080. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6081. display: flex;
  6082. }
  6083. }
  6084. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6085. margin-left: 0;
  6086. }
  6087. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6088. display: none;
  6089. }
  6090. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6091. order: 1;
  6092. }
  6093. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6094. order: 2;
  6095. }
  6096. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6097. order: 3;
  6098. }
  6099. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6100. order: 5;
  6101. }
  6102. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6103. order: 4;
  6104. }
  6105. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6106. order: 6;
  6107. }
  6108. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6109. order: 7;
  6110. margin-top: 2rem;
  6111. }
  6112. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6113. margin-top: 0rem;
  6114. }
  6115. /*partials*/
  6116. .layout-container {
  6117. position: relative;
  6118. width: 100vw;
  6119. }
  6120. .layout-container header {
  6121. position: fixed;
  6122. z-index: 99;
  6123. width: 100vw;
  6124. }
  6125. #header-top {
  6126. height: 7rem;
  6127. background-color: rgb(255, 255, 255);
  6128. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6129. display: flex;
  6130. flex-direction: row;
  6131. justify-content: space-between;
  6132. color: rgb(0, 0, 0);
  6133. top: 0%;
  6134. scroll-margin: 8rem;
  6135. }
  6136. #header-top .region-header-top-left {
  6137. width: 80vw;
  6138. display: flex;
  6139. flex-direction: row;
  6140. padding: 1rem;
  6141. padding-left: 4%;
  6142. align-items: center;
  6143. color: rgb(0, 0, 0);
  6144. font-weight: 800;
  6145. flex: 1;
  6146. }
  6147. #header-top .region-header-top-left #block-logogouv {
  6148. display: flex;
  6149. height: 100%;
  6150. align-items: center;
  6151. }
  6152. #header-top .region-header-top-left #block-logogouv img {
  6153. width: 80%;
  6154. height: auto;
  6155. }
  6156. #header-top .region-header-top-left #block-logoeql {
  6157. display: flex;
  6158. height: 100%;
  6159. align-items: center;
  6160. }
  6161. #header-top .region-header-top-left #block-logoeql img {
  6162. width: 80%;
  6163. height: auto;
  6164. }
  6165. #header-top .region-header-top-left #block-headermenu {
  6166. align-self: baseline;
  6167. width: 70%;
  6168. margin-left: 3rem;
  6169. margin-right: 3rem;
  6170. }
  6171. #header-top .region-header-top-left ul {
  6172. font-size: 1rem;
  6173. list-style: none;
  6174. display: flex;
  6175. flex-direction: row;
  6176. justify-content: space-between;
  6177. width: 100%;
  6178. padding-inline-start: 0px;
  6179. padding: 1rem;
  6180. }
  6181. #header-top .region-header-top-left ul .is-active {
  6182. color: rgb(0, 158, 227);
  6183. }
  6184. #header-top .region-header-top-left ul ul {
  6185. position: absolute;
  6186. left: -28%;
  6187. z-index: 1000;
  6188. display: flex;
  6189. flex-direction: column;
  6190. min-width: 210px;
  6191. width: fit-content;
  6192. justify-content: space-between;
  6193. padding-inline-start: 0px;
  6194. opacity: 0;
  6195. visibility: hidden;
  6196. transform: translateY(-10px);
  6197. transition: opacity 0.3s ease, transform 0.3s ease;
  6198. }
  6199. #header-top .region-header-top-left ul ul .is-active {
  6200. color: rgb(0, 158, 227);
  6201. }
  6202. #header-top .region-header-top-left ul li {
  6203. position: relative;
  6204. display: flex;
  6205. flex-direction: column;
  6206. background-color: rgb(255, 255, 255);
  6207. padding-bottom: 0.8rem;
  6208. max-width: inherit;
  6209. padding-left: 1rem;
  6210. padding-right: 0.5rem;
  6211. height: fit-content;
  6212. }
  6213. #header-top .region-header-top-left ul li a {
  6214. color: rgb(0, 0, 0);
  6215. }
  6216. #header-top .region-header-top-left ul li .is-active {
  6217. color: rgb(0, 158, 227);
  6218. }
  6219. #header-top .region-header-top-left ul li :hover {
  6220. color: rgb(0, 158, 227);
  6221. }
  6222. #header-top .region-header-top-left ul li:hover ul {
  6223. opacity: 1;
  6224. visibility: visible;
  6225. transform: translateY(0);
  6226. }
  6227. #header-top .region-header-top-left ul .ul1.sous-liste.ul2 {
  6228. padding-left: 1rem;
  6229. }
  6230. #header-top #block-socialnetwork-2 {
  6231. position: relative;
  6232. top: -33px;
  6233. align-self: flex-end;
  6234. margin-left: auto;
  6235. }
  6236. #header-top #block-socialnetwork-2 .field--name-body {
  6237. min-height: 75px;
  6238. }
  6239. #header-top #block-socialnetwork-2 p {
  6240. display: flex;
  6241. flex-direction: row-reverse;
  6242. margin-bottom: 0;
  6243. min-height: 65px;
  6244. justify-content: space-around;
  6245. width: 140px;
  6246. }
  6247. #header-top #block-socialnetwork-2 p a {
  6248. color: rgb(255, 255, 255);
  6249. font-size: 0;
  6250. }
  6251. #header-top #block-socialnetwork-2 p svg.ext {
  6252. display: none;
  6253. }
  6254. #header-top #block-socialnetwork-2 p .link-twitter {
  6255. display: flex;
  6256. background-color: black;
  6257. width: 40px;
  6258. justify-content: center;
  6259. align-items: flex-end;
  6260. }
  6261. #header-top #block-socialnetwork-2 p .link-twitter:before {
  6262. content: url("../images/pictos/logo_x_blanc.svg");
  6263. min-width: 30px;
  6264. padding-bottom: 0.5rem;
  6265. }
  6266. #header-top #block-socialnetwork-2 p .link-youtube {
  6267. display: flex;
  6268. background-color: black;
  6269. min-width: 40px;
  6270. justify-content: center;
  6271. align-items: flex-end;
  6272. }
  6273. #header-top #block-socialnetwork-2 p .link-youtube:before {
  6274. content: url("../images/pictos/youtube_white.svg");
  6275. min-width: 25px;
  6276. padding-bottom: 0.5rem;
  6277. }
  6278. #header-top #block-socialnetwork-2 p .link-linkedin {
  6279. display: flex;
  6280. background-color: black;
  6281. min-width: 40px;
  6282. justify-content: center;
  6283. align-items: flex-end;
  6284. }
  6285. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  6286. content: url("../images/pictos/linkedin_white.svg");
  6287. min-width: 35px;
  6288. padding-bottom: 0.2rem;
  6289. }
  6290. #header-top #block-burger {
  6291. z-index: 1;
  6292. background-color: rgb(0, 158, 227);
  6293. font-size: 0.7rem;
  6294. color: rgb(255, 255, 255);
  6295. display: block;
  6296. width: 7rem;
  6297. height: 100%;
  6298. margin-top: 0;
  6299. }
  6300. #header-top #block-burger :hover {
  6301. cursor: pointer;
  6302. }
  6303. #header-top #block-burger h2 {
  6304. padding-top: 1rem;
  6305. }
  6306. #header-top #block-burger h2:after {
  6307. display: block;
  6308. margin: auto;
  6309. height: 70px;
  6310. 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>');
  6311. }
  6312. #header-top #block-burger #block-burger-menu {
  6313. display: block;
  6314. margin: 0;
  6315. align-self: center;
  6316. text-align: center;
  6317. }
  6318. #header-top #block-burger .ul1:not(.sous-liste) {
  6319. width: 300%;
  6320. position: relative;
  6321. right: 260px;
  6322. margin: 0;
  6323. padding-top: 2rem;
  6324. padding-bottom: 2rem;
  6325. z-index: 99;
  6326. }
  6327. #header-top #block-burger ul {
  6328. display: none;
  6329. background-color: rgb(0, 158, 227);
  6330. line-height: 2rem;
  6331. list-style: none;
  6332. }
  6333. #header-top #block-burger ul .ul1 .sous-liste a {
  6334. opacity: 1;
  6335. }
  6336. #header-top #block-burger ul a {
  6337. opacity: 1;
  6338. color: rgb(255, 255, 255);
  6339. font-weight: 800;
  6340. font-size: 1rem;
  6341. }
  6342. #header-top #block-burger.opened ul {
  6343. display: block;
  6344. }
  6345. #fotter-bottom {
  6346. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6347. display: flex;
  6348. flex: 1 1 120px;
  6349. flex-direction: row;
  6350. background-color: rgb(255, 255, 255);
  6351. padding-top: 3rem;
  6352. }
  6353. @media (max-width: 810px) {
  6354. #fotter-bottom {
  6355. flex-direction: column;
  6356. padding-right: 1rem;
  6357. }
  6358. }
  6359. #fotter-bottom .region {
  6360. display: block;
  6361. padding-left: 2rem;
  6362. padding-right: 1rem;
  6363. padding-bottom: 1rem;
  6364. border-left: rgb(0, 158, 227) solid 1px;
  6365. }
  6366. #fotter-bottom .region h2 {
  6367. margin-top: 0;
  6368. color: rgb(9, 57, 139);
  6369. font-size: 1.2rem;
  6370. }
  6371. #fotter-bottom .region-footer-bottom-left {
  6372. margin-left: 3rem;
  6373. border: none;
  6374. }
  6375. @media (max-width: 810px) {
  6376. #fotter-bottom .region-footer-bottom-left {
  6377. width: 100%;
  6378. margin-left: 0rem;
  6379. }
  6380. }
  6381. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  6382. display: flex;
  6383. flex-direction: row;
  6384. justify-content: flex-start;
  6385. flex-wrap: wrap;
  6386. padding-top: 1rem;
  6387. }
  6388. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  6389. padding-right: 1rem;
  6390. padding-bottom: 1rem;
  6391. }
  6392. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  6393. width: auto;
  6394. height: 30px;
  6395. }
  6396. #fotter-bottom .region-footer-bottom-right {
  6397. display: flex;
  6398. flex-direction: column-reverse;
  6399. justify-content: flex-end;
  6400. }
  6401. @media (max-width: 810px) {
  6402. #fotter-bottom .region-footer-bottom-right {
  6403. width: 100%;
  6404. }
  6405. }
  6406. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  6407. margin-bottom: 1rem;
  6408. }
  6409. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  6410. margin-top: 0;
  6411. display: flex;
  6412. flex-direction: row-reverse;
  6413. justify-content: flex-end;
  6414. }
  6415. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  6416. color: rgb(255, 255, 255);
  6417. font-size: 0;
  6418. padding-left: 1rem;
  6419. }
  6420. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  6421. display: none;
  6422. }
  6423. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  6424. display: flex;
  6425. }
  6426. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  6427. content: url("../images/pictos/logo_x_rond.png");
  6428. min-width: 50px;
  6429. align-self: center;
  6430. }
  6431. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  6432. display: flex;
  6433. }
  6434. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  6435. content: url("../images/pictos/youtube_rond.svg");
  6436. min-width: 50px;
  6437. }
  6438. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  6439. display: flex;
  6440. }
  6441. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  6442. content: url("../images/pictos/linkedin_rond.svg");
  6443. min-width: 50px;
  6444. }
  6445. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  6446. margin-top: 0;
  6447. color: rgb(9, 57, 139);
  6448. font-weight: 800;
  6449. list-style: none;
  6450. padding-left: 0;
  6451. }
  6452. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  6453. color: rgb(9, 57, 139);
  6454. font-size: 1.2rem;
  6455. text-decoration: underline;
  6456. margin-top: 0;
  6457. }
  6458. #fotter-bottom .region-footer-bottom-middle {
  6459. width: 60%;
  6460. }
  6461. @media (max-width: 810px) {
  6462. #fotter-bottom .region-footer-bottom-middle {
  6463. width: 100%;
  6464. }
  6465. }
  6466. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  6467. display: flex;
  6468. flex-direction: row;
  6469. justify-content: flex-start;
  6470. flex-wrap: wrap;
  6471. }
  6472. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  6473. padding-right: 1rem;
  6474. padding-bottom: 1rem;
  6475. }
  6476. .slick-prev {
  6477. color: rgb(0, 158, 227);
  6478. left: 25px;
  6479. }
  6480. .path-frontpage .slick-dots {
  6481. bottom: -40px !important;
  6482. }
  6483. /* Slider */
  6484. .slick-slider {
  6485. position: relative;
  6486. display: block;
  6487. box-sizing: border-box;
  6488. -webkit-touch-callout: none;
  6489. -webkit-user-select: none;
  6490. -khtml-user-select: none;
  6491. -moz-user-select: none;
  6492. -ms-user-select: none;
  6493. user-select: none;
  6494. -ms-touch-action: pan-y;
  6495. touch-action: pan-y;
  6496. -webkit-tap-highlight-color: transparent;
  6497. }
  6498. .slick-list {
  6499. position: relative;
  6500. overflow: hidden;
  6501. display: block;
  6502. margin: 0;
  6503. padding: 0;
  6504. }
  6505. .slick-list:focus {
  6506. outline: none;
  6507. }
  6508. .slick-list.dragging {
  6509. cursor: pointer;
  6510. cursor: hand;
  6511. }
  6512. .slick-slider .slick-track,
  6513. .slick-slider .slick-list {
  6514. -webkit-transform: translate3d(0, 0, 0);
  6515. -moz-transform: translate3d(0, 0, 0);
  6516. -ms-transform: translate3d(0, 0, 0);
  6517. -o-transform: translate3d(0, 0, 0);
  6518. transform: translate3d(0, 0, 0);
  6519. }
  6520. .slick-track {
  6521. position: relative;
  6522. left: 0;
  6523. top: 0;
  6524. display: block;
  6525. margin-left: auto;
  6526. margin-right: auto;
  6527. }
  6528. .slick-track:before, .slick-track:after {
  6529. content: "";
  6530. display: table;
  6531. }
  6532. .slick-track:after {
  6533. clear: both;
  6534. }
  6535. .slick-loading .slick-track {
  6536. visibility: hidden;
  6537. }
  6538. .slick-slide {
  6539. float: left;
  6540. height: 100%;
  6541. min-height: 1px;
  6542. display: none;
  6543. }
  6544. [dir=rtl] .slick-slide {
  6545. float: right;
  6546. }
  6547. .slick-slide img {
  6548. display: block;
  6549. }
  6550. .slick-slide.slick-loading img {
  6551. display: none;
  6552. }
  6553. .slick-slide.dragging img {
  6554. pointer-events: none;
  6555. }
  6556. .slick-initialized .slick-slide {
  6557. display: block;
  6558. }
  6559. .slick-loading .slick-slide {
  6560. visibility: hidden;
  6561. }
  6562. .slick-vertical .slick-slide {
  6563. display: block;
  6564. height: auto;
  6565. border: 1px solid transparent;
  6566. }
  6567. .slick-arrow.slick-hidden {
  6568. display: none;
  6569. }
  6570. /* Slider */
  6571. .slick-loading .slick-list {
  6572. background: #fff url("./ajax-loader.gif") center center no-repeat;
  6573. }
  6574. /* Icons */
  6575. /* Arrows */
  6576. .slick-prev,
  6577. .slick-next {
  6578. position: absolute;
  6579. display: block;
  6580. height: 60px;
  6581. width: 60px;
  6582. line-height: 0px;
  6583. font-size: 0px;
  6584. cursor: pointer;
  6585. background: transparent;
  6586. color: transparent;
  6587. top: 50%;
  6588. -webkit-transform: translate(0, -50%);
  6589. -ms-transform: translate(0, -50%);
  6590. transform: translate(0, -50%);
  6591. padding: 0;
  6592. border: none;
  6593. outline: none;
  6594. }
  6595. .slick-prev:hover,
  6596. .slick-next:hover {
  6597. outline: none;
  6598. background: transparent;
  6599. color: transparent;
  6600. }
  6601. .slick-prev:hover:before,
  6602. .slick-next:hover:before {
  6603. opacity: 0.2;
  6604. }
  6605. .slick-prev.slick-disabled:before,
  6606. .slick-next.slick-disabled:before {
  6607. opacity: 0;
  6608. }
  6609. .slick-prev:before,
  6610. .slick-next:before {
  6611. font-family: "marianne";
  6612. font-size: 60px;
  6613. line-height: 1;
  6614. color: rgb(0, 158, 227);
  6615. opacity: 0;
  6616. -webkit-font-smoothing: antialiased;
  6617. -moz-osx-font-smoothing: grayscale;
  6618. }
  6619. .slick-prev {
  6620. z-index: 1;
  6621. left: 25px;
  6622. }
  6623. [dir=rtl] .slick-prev {
  6624. left: auto;
  6625. right: 25px;
  6626. }
  6627. .slick-prev:before {
  6628. content: "←";
  6629. }
  6630. [dir=rtl] .slick-prev:before {
  6631. content: "→";
  6632. }
  6633. .slick-next {
  6634. right: 25px;
  6635. }
  6636. [dir=rtl] .slick-next {
  6637. left: 25px;
  6638. right: auto;
  6639. }
  6640. .slick-next:before {
  6641. content: "→";
  6642. }
  6643. [dir=rtl] .slick-next:before {
  6644. content: "←";
  6645. }
  6646. /* Dots */
  6647. .slick-dotted.slick-slider {
  6648. margin-bottom: 30px;
  6649. }
  6650. 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 {
  6651. width: 600px;
  6652. }
  6653. .slick-dots {
  6654. list-style: none;
  6655. display: block;
  6656. text-align: center;
  6657. padding: 0;
  6658. margin: 0;
  6659. width: 100%;
  6660. }
  6661. .slick-dots li {
  6662. position: relative;
  6663. display: inline-block;
  6664. height: 20px;
  6665. width: 20px;
  6666. margin: 0 5px;
  6667. padding: 0;
  6668. cursor: pointer;
  6669. }
  6670. .slick-dots li button {
  6671. border: 0;
  6672. background: transparent;
  6673. display: block;
  6674. height: 20px;
  6675. width: 20px;
  6676. outline: none;
  6677. line-height: 0px;
  6678. font-size: 0px;
  6679. color: transparent;
  6680. padding: 5px;
  6681. cursor: pointer;
  6682. }
  6683. .slick-dots li button:hover, .slick-dots li button:focus {
  6684. outline: none;
  6685. }
  6686. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  6687. opacity: 0.2;
  6688. }
  6689. .slick-dots li button:before {
  6690. position: absolute;
  6691. top: 0;
  6692. left: 0;
  6693. content: "•";
  6694. width: 20px;
  6695. height: 20px;
  6696. font-family: "marianne";
  6697. font-size: 50px;
  6698. line-height: 20px;
  6699. text-align: center;
  6700. color: black;
  6701. opacity: 0;
  6702. -webkit-font-smoothing: antialiased;
  6703. -moz-osx-font-smoothing: grayscale;
  6704. }
  6705. .slick-dots li.slick-active button:before {
  6706. color: black;
  6707. opacity: 0;
  6708. }
  6709. #views-exposed-form-projets-block-1 {
  6710. flex-direction: row;
  6711. position: relative;
  6712. align-items: center;
  6713. }
  6714. #views-exposed-form-base-de-donnees-block-1 {
  6715. flex-direction: column;
  6716. margin-top: 1rem;
  6717. }
  6718. @media (max-width: 479px) {
  6719. #views-exposed-form-base-de-donnees-block-1 {
  6720. justify-content: center;
  6721. }
  6722. }
  6723. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  6724. margin-right: 0 !important;
  6725. margin-bottom: 0.5rem !important;
  6726. padding: 0.2rem !important;
  6727. }
  6728. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  6729. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  6730. width: 100%;
  6731. text-align: end;
  6732. }
  6733. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  6734. padding-right: 0.5rem !important;
  6735. flex: 2 0 auto !important;
  6736. }
  6737. #views-exposed-form-base-de-donnees-block-1,
  6738. #views-exposed-form-projets-block-1 {
  6739. display: flex;
  6740. flex-wrap: wrap;
  6741. }
  6742. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  6743. #views-exposed-form-projets-block-1 .js-form-item {
  6744. display: flex;
  6745. flex-direction: row;
  6746. max-width: 100%;
  6747. margin-right: 1rem;
  6748. margin-bottom: 1rem;
  6749. padding: 0.5rem 1rem;
  6750. align-items: baseline;
  6751. border: solid black 0.5px;
  6752. justify-content: space-evenly;
  6753. }
  6754. @media (max-width: 810px) {
  6755. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  6756. #views-exposed-form-projets-block-1 .js-form-item {
  6757. display: flex;
  6758. flex-direction: row;
  6759. justify-content: space-between;
  6760. }
  6761. }
  6762. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  6763. #views-exposed-form-projets-block-1 .js-form-item label {
  6764. flex: 2 1 auto;
  6765. padding-right: 2rem;
  6766. }
  6767. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  6768. #views-exposed-form-projets-block-1 .js-form-item label::after {
  6769. content: " : ";
  6770. }
  6771. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  6772. #views-exposed-form-projets-block-1 .js-form-item input {
  6773. flex: 2 1 auto;
  6774. max-width: 55%;
  6775. }
  6776. @media (max-width: 810px) {
  6777. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  6778. #views-exposed-form-projets-block-1 .js-form-item input {
  6779. max-width: 100%;
  6780. }
  6781. }
  6782. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  6783. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox {
  6784. margin-right: 1rem;
  6785. }
  6786. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  6787. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper {
  6788. margin: 0;
  6789. }
  6790. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  6791. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after {
  6792. content: none;
  6793. }
  6794. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  6795. #views-exposed-form-projets-block-1 .form-actions input {
  6796. color: white;
  6797. font-weight: 600;
  6798. text-transform: uppercase;
  6799. padding: 0.3rem 0.7rem;
  6800. background-color: rgb(0, 158, 227);
  6801. border: none;
  6802. }
  6803. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  6804. #views-exposed-form-projets-block-1 input,
  6805. #views-exposed-form-projets-block-1 select {
  6806. border: none;
  6807. background-color: transparent;
  6808. font-family: "Marianne";
  6809. font-size: 1rem;
  6810. }
  6811. article.node-type-ressource {
  6812. margin-bottom: 1rem;
  6813. padding-right: 1rem;
  6814. }
  6815. article.node-type-ressource h2 {
  6816. text-align: left !important;
  6817. }
  6818. article.node-type-ressource .ext {
  6819. color: black;
  6820. }
  6821. article.node-type-ressource svg.ext {
  6822. display: none;
  6823. }
  6824. article.node-type-ressource :visited {
  6825. color: black;
  6826. }
  6827. article.node-type-ressource a {
  6828. color: black;
  6829. }
  6830. article.node-type-ressource .wrapper-ressource {
  6831. display: flex;
  6832. flex-direction: column;
  6833. }
  6834. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  6835. order: 2;
  6836. }
  6837. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  6838. order: 1;
  6839. }
  6840. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  6841. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  6842. grid-column: 1;
  6843. text-transform: uppercase;
  6844. line-height: 1.1rem;
  6845. margin-top: 0.5rem;
  6846. }
  6847. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  6848. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  6849. color: rgb(0, 158, 227);
  6850. font-weight: 900;
  6851. font-size: 0.8rem;
  6852. pointer-events: none;
  6853. cursor: default;
  6854. }
  6855. article.node-type-ressource .wrapper-ressource .field--name-title {
  6856. grid-column: 2;
  6857. margin-top: 0.5rem;
  6858. order: 4;
  6859. margin-bottom: 0;
  6860. }
  6861. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  6862. margin: 0;
  6863. line-height: 1rem;
  6864. margin-left: 0 !important;
  6865. line-height: 0;
  6866. margin-bottom: 0 !important;
  6867. }
  6868. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  6869. color: rgb(0, 0, 0);
  6870. font-size: 0.9rem;
  6871. font-weight: 900;
  6872. font-style: normal;
  6873. }
  6874. @media (max-width: 810px) {
  6875. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  6876. line-height: 0 !important;
  6877. }
  6878. }
  6879. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  6880. grid-column: 2;
  6881. margin-top: 0.5rem;
  6882. font-weight: 800;
  6883. line-height: 1.1rem;
  6884. order: 6 !important;
  6885. font-size: 0.8rem;
  6886. }
  6887. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  6888. margin: 0;
  6889. }
  6890. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  6891. display: none;
  6892. }
  6893. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  6894. grid-column: 2;
  6895. margin-top: 0.8rem;
  6896. order: 5;
  6897. font-size: 0.9rem;
  6898. font-weight: 900;
  6899. line-height: 1.5;
  6900. }
  6901. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  6902. order: 7;
  6903. grid-column: 2;
  6904. margin-top: 0.5rem;
  6905. font-size: 0.8rem;
  6906. }
  6907. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  6908. margin: 0;
  6909. }
  6910. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  6911. display: none;
  6912. }
  6913. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  6914. order: 3;
  6915. grid-column: 1;
  6916. }
  6917. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  6918. height: 100px;
  6919. }
  6920. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  6921. height: 100%;
  6922. width: auto;
  6923. border: solid 1px gray;
  6924. }
  6925. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  6926. grid-column: 2;
  6927. margin-top: 0.3rem;
  6928. order: 8;
  6929. font-size: 0.8rem;
  6930. }
  6931. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  6932. order: 9;
  6933. grid-column: 2;
  6934. display: flex;
  6935. margin-top: 0.5rem;
  6936. flex-direction: row;
  6937. flex-wrap: wrap;
  6938. }
  6939. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  6940. margin-right: 0.5rem;
  6941. padding-right: 0.3rem;
  6942. font-size: 0.7rem;
  6943. }
  6944. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  6945. background: rgb(9, 57, 139);
  6946. color: rgb(255, 255, 255);
  6947. font-weight: 800;
  6948. vertical-align: super;
  6949. padding-left: 0.1rem;
  6950. padding-right: 0.1rem;
  6951. display: inline-flex;
  6952. pointer-events: none;
  6953. cursor: default;
  6954. }
  6955. article.node-type-ressource .wrapper-ressource ul.links.inline {
  6956. display: none;
  6957. }
  6958. article.node-type-ressource.type-publications-issues-du-programme {
  6959. min-width: 300px;
  6960. }
  6961. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  6962. display: grid;
  6963. grid-template-columns: 1fr 1.8fr;
  6964. grid-template-rows: repeat(5 1fr);
  6965. }
  6966. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  6967. order: 2;
  6968. grid-row: 2;
  6969. grid-column: 1/span 2;
  6970. margin-bottom: 0.5rem;
  6971. }
  6972. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  6973. order: 1;
  6974. grid-row: 1;
  6975. grid-column: 1/span 2;
  6976. }
  6977. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  6978. order: 3;
  6979. grid-row: 3/span 5;
  6980. height: auto;
  6981. width: 90%;
  6982. }
  6983. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  6984. height: auto;
  6985. width: 90%;
  6986. border: 1px solid #a3a3a3;
  6987. }
  6988. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  6989. grid-row: 3;
  6990. margin-top: 0;
  6991. padding-bottom: 0.8rem;
  6992. }
  6993. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  6994. margin-left: 0 !important;
  6995. line-height: 0;
  6996. }
  6997. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  6998. color: rgb(0, 158, 227);
  6999. font-size: 1.3rem;
  7000. font-style: normal;
  7001. }
  7002. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  7003. margin-top: 0;
  7004. line-height: 1;
  7005. grid-row: 4;
  7006. }
  7007. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  7008. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  7009. grid-row: 4;
  7010. color: rgb(0, 158, 227);
  7011. font-size: 1rem;
  7012. font-weight: 800;
  7013. }
  7014. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  7015. grid-row: 6;
  7016. line-height: 1.1;
  7017. }
  7018. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  7019. grid-row: 7;
  7020. }
  7021. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  7022. grid-row: 8;
  7023. margin-top: 0.5rem;
  7024. left: -0.2rem;
  7025. position: relative;
  7026. }
  7027. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  7028. order: 2;
  7029. }
  7030. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  7031. order: 1;
  7032. }
  7033. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  7034. order: 3;
  7035. }
  7036. @media (max-width: 479px) {
  7037. article.node-type-ressource {
  7038. margin-left: 0;
  7039. }
  7040. }
  7041. article.node-type-ressource.type-presse .field--name-field-images {
  7042. display: none;
  7043. }
  7044. .type-les-projets-en-images.views-row {
  7045. width: 50% !important;
  7046. min-width: 550px !important;
  7047. max-width: 0 !important;
  7048. }
  7049. @media (max-width: 479px) {
  7050. .type-les-projets-en-images.views-row {
  7051. min-width: 100% !important;
  7052. }
  7053. }
  7054. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7055. display: grid;
  7056. grid-template-columns: 2fr 1fr !important;
  7057. width: 100%;
  7058. max-width: 100%;
  7059. column-gap: 1rem;
  7060. align-items: start;
  7061. }
  7062. @media (max-width: 479px) {
  7063. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7064. display: flex;
  7065. flex-direction: column;
  7066. padding-left: 1rem !important;
  7067. }
  7068. }
  7069. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  7070. grid-column: 1;
  7071. grid-row: 3/span 8;
  7072. width: 100%;
  7073. }
  7074. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  7075. width: 100%;
  7076. height: auto;
  7077. margin-top: 1rem;
  7078. object-fit: cover;
  7079. border: 1px solid #ccc;
  7080. }
  7081. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7082. height: fit-content;
  7083. }
  7084. @media (max-width: 479px) {
  7085. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7086. height: auto;
  7087. }
  7088. }
  7089. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  7090. grid-column: 1/span 2;
  7091. grid-row: 2;
  7092. }
  7093. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  7094. grid-column: 1/span 2;
  7095. grid-row: 1;
  7096. }
  7097. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  7098. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  7099. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  7100. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  7101. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  7102. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7103. grid-column: 2;
  7104. width: 100%;
  7105. box-sizing: border-box;
  7106. padding: 0;
  7107. margin: 0;
  7108. }
  7109. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  7110. grid-row: 3;
  7111. margin-bottom: 0.5rem;
  7112. }
  7113. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  7114. grid-row: 4;
  7115. }
  7116. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  7117. grid-row: 5;
  7118. }
  7119. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  7120. grid-row: 6;
  7121. line-height: 1;
  7122. }
  7123. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  7124. grid-row: 7;
  7125. }
  7126. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7127. grid-row: 8;
  7128. }
  7129. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource h2, .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource p {
  7130. margin: 0;
  7131. padding: 0;
  7132. }