all.css 152 KB

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