bundle.css 282 KB

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