bundle.css 322 KB

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