bundle.css 319 KB

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