style-rtl.css 123 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515
  1. /* Template Name: Landrick - Saas & Software Landing Page Template
  2. Author: Shreethemes
  3. E-mail: support@shreethemes.in
  4. Created: August 2019
  5. Version: 3.5.0
  6. Updated: July 2021
  7. File Description: Main Css file of the template
  8. */
  9. /*********************************/
  10. /* INDEX */
  11. /*================================
  12. * 01. Variables *
  13. * 02. Bootstrap Custom *
  14. * 03. Components *
  15. * 04. General *
  16. * 05. Helper *
  17. * 06. Menu *
  18. * 07. Home / Landing *
  19. * 08. Features / Services *
  20. * 09. Testimonial *
  21. * 10. Price *
  22. * 11. C.T.A *
  23. * 12. Blog / Careers / Job *
  24. * 13. Work / Projects *
  25. * 14. Team *
  26. * 15. User Pages *
  27. * 16. Countdown *
  28. * 17. Contact *
  29. * 18. Footer *
  30. *********************************
  31. *********************************
  32. * RTL SCSS *
  33. *********************************
  34. * 01. Bootstrap Custom RTL *
  35. * 02. Components RTL *
  36. * 03. General RTL *
  37. * 04. Helper RTL *
  38. * 05. Menu RTL *
  39. ================================*/
  40. /*********************************/
  41. /* Variables */
  42. /*===============================*/
  43. @import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700&display=swap");
  44. /*********************************/
  45. /* Bootstrap-custom */
  46. /*===============================*/
  47. @media (min-width: 1400px) {
  48. .container {
  49. max-width: 1140px !important;
  50. }
  51. }
  52. .row > * {
  53. position: relative;
  54. }
  55. h1, .h1 {
  56. font-size: 42px !important;
  57. }
  58. h2, .h2 {
  59. font-size: 36px !important;
  60. }
  61. h3, .h3 {
  62. font-size: 30px !important;
  63. }
  64. h4, .h4 {
  65. font-size: 24px !important;
  66. }
  67. h5, .h5 {
  68. font-size: 20px !important;
  69. }
  70. h6, .h6 {
  71. font-size: 16px !important;
  72. }
  73. .display-1 {
  74. font-size: 80px !important;
  75. }
  76. .display-2 {
  77. font-size: 72px !important;
  78. }
  79. .display-3 {
  80. font-size: 64px !important;
  81. }
  82. .display-4 {
  83. font-size: 56px !important;
  84. }
  85. .display-5 {
  86. font-size: 48px !important;
  87. }
  88. .display-6 {
  89. font-size: 40px !important;
  90. }
  91. .bg-primary {
  92. background-color: #2f55d4 !important;
  93. }
  94. .bg-soft-primary {
  95. background-color: rgba(47, 85, 212, 0.1) !important;
  96. border: 1px solid rgba(47, 85, 212, 0.1) !important;
  97. color: #2f55d4 !important;
  98. }
  99. .text-primary {
  100. color: #2f55d4 !important;
  101. }
  102. a.text-primary:hover, a.text-primary:focus {
  103. color: #284bc1 !important;
  104. }
  105. .bg-secondary {
  106. background-color: #5a6d90 !important;
  107. }
  108. .bg-soft-secondary {
  109. background-color: rgba(90, 109, 144, 0.1) !important;
  110. border: 1px solid rgba(90, 109, 144, 0.1) !important;
  111. color: #5a6d90 !important;
  112. }
  113. .text-secondary {
  114. color: #5a6d90 !important;
  115. }
  116. a.text-secondary:hover, a.text-secondary:focus {
  117. color: #506180 !important;
  118. }
  119. .bg-success {
  120. background-color: #2eca8b !important;
  121. }
  122. .bg-soft-success {
  123. background-color: rgba(46, 202, 139, 0.1) !important;
  124. border: 1px solid rgba(46, 202, 139, 0.1) !important;
  125. color: #2eca8b !important;
  126. }
  127. .text-success {
  128. color: #2eca8b !important;
  129. }
  130. a.text-success:hover, a.text-success:focus {
  131. color: #29b57d !important;
  132. }
  133. .bg-warning {
  134. background-color: #f17425 !important;
  135. }
  136. .bg-soft-warning {
  137. background-color: rgba(241, 116, 37, 0.1) !important;
  138. border: 1px solid rgba(241, 116, 37, 0.1) !important;
  139. color: #f17425 !important;
  140. }
  141. .text-warning {
  142. color: #f17425 !important;
  143. }
  144. a.text-warning:hover, a.text-warning:focus {
  145. color: #ed650f !important;
  146. }
  147. .bg-info {
  148. background-color: #17a2b8 !important;
  149. }
  150. .bg-soft-info {
  151. background-color: rgba(23, 162, 184, 0.1) !important;
  152. border: 1px solid rgba(23, 162, 184, 0.1) !important;
  153. color: #17a2b8 !important;
  154. }
  155. .text-info {
  156. color: #17a2b8 !important;
  157. }
  158. a.text-info:hover, a.text-info:focus {
  159. color: #148ea1 !important;
  160. }
  161. .bg-danger {
  162. background-color: #e43f52 !important;
  163. }
  164. .bg-soft-danger {
  165. background-color: rgba(228, 63, 82, 0.1) !important;
  166. border: 1px solid rgba(228, 63, 82, 0.1) !important;
  167. color: #e43f52 !important;
  168. }
  169. .text-danger {
  170. color: #e43f52 !important;
  171. }
  172. a.text-danger:hover, a.text-danger:focus {
  173. color: #e1293e !important;
  174. }
  175. .bg-dark {
  176. background-color: #3c4858 !important;
  177. }
  178. .bg-soft-dark {
  179. background-color: rgba(60, 72, 88, 0.1) !important;
  180. border: 1px solid rgba(60, 72, 88, 0.1) !important;
  181. color: #3c4858 !important;
  182. }
  183. .text-dark {
  184. color: #3c4858 !important;
  185. }
  186. a.text-dark:hover, a.text-dark:focus {
  187. color: #323c49 !important;
  188. }
  189. .bg-muted {
  190. background-color: #8492a6 !important;
  191. }
  192. .bg-soft-muted {
  193. background-color: rgba(132, 146, 166, 0.1) !important;
  194. border: 1px solid rgba(132, 146, 166, 0.1) !important;
  195. color: #8492a6 !important;
  196. }
  197. .text-muted {
  198. color: #8492a6 !important;
  199. }
  200. a.text-muted:hover, a.text-muted:focus {
  201. color: #75859b !important;
  202. }
  203. .bg-light {
  204. background-color: #f8f9fc !important;
  205. }
  206. .bg-soft-light {
  207. background-color: rgba(248, 249, 252, 0.1) !important;
  208. border: 1px solid rgba(248, 249, 252, 0.1) !important;
  209. color: #f8f9fc !important;
  210. }
  211. .text-light {
  212. color: #f8f9fc !important;
  213. }
  214. a.text-light:hover, a.text-light:focus {
  215. color: #e6eaf4 !important;
  216. }
  217. .bg-blue {
  218. background-color: #2f55d4 !important;
  219. }
  220. .bg-soft-blue {
  221. background-color: rgba(47, 85, 212, 0.1) !important;
  222. border: 1px solid rgba(47, 85, 212, 0.1) !important;
  223. color: #2f55d4 !important;
  224. }
  225. .text-blue {
  226. color: #2f55d4 !important;
  227. }
  228. a.text-blue:hover, a.text-blue:focus {
  229. color: #284bc1 !important;
  230. }
  231. .bg-footer {
  232. background-color: #202942 !important;
  233. }
  234. .bg-soft-footer {
  235. background-color: rgba(32, 41, 66, 0.1) !important;
  236. border: 1px solid rgba(32, 41, 66, 0.1) !important;
  237. color: #202942 !important;
  238. }
  239. .text-footer {
  240. color: #202942 !important;
  241. }
  242. a.text-footer:hover, a.text-footer:focus {
  243. color: #181e30 !important;
  244. }
  245. .d-flex .flex-1 {
  246. flex: 1;
  247. }
  248. .bg-black {
  249. background: #161c2d !important;
  250. }
  251. .text-white-50 {
  252. color: rgba(255, 255, 255, 0.5);
  253. }
  254. video:focus {
  255. outline: none;
  256. }
  257. .list-inline-item:not(:last-child) {
  258. margin-right: 0px;
  259. margin-bottom: 5px;
  260. }
  261. .rounded {
  262. border-radius: 6px !important;
  263. }
  264. .rounded-top {
  265. border-top-left-radius: 6px !important;
  266. border-top-right-radius: 6px !important;
  267. }
  268. .rounded-left {
  269. border-top-left-radius: 6px !important;
  270. border-bottom-left-radius: 6px !important;
  271. }
  272. .rounded-bottom {
  273. border-bottom-left-radius: 6px !important;
  274. border-bottom-right-radius: 6px !important;
  275. }
  276. .rounded-right {
  277. border-top-right-radius: 6px !important;
  278. border-bottom-right-radius: 6px !important;
  279. }
  280. .rounded-md {
  281. border-radius: 10px !important;
  282. }
  283. .rounded-lg {
  284. border-radius: 30px !important;
  285. }
  286. .border-primary {
  287. border-color: #2f55d4 !important;
  288. }
  289. .border-secondary {
  290. border-color: #5a6d90 !important;
  291. }
  292. .border-success {
  293. border-color: #2eca8b !important;
  294. }
  295. .border-warning {
  296. border-color: #f17425 !important;
  297. }
  298. .border-info {
  299. border-color: #17a2b8 !important;
  300. }
  301. .border-danger {
  302. border-color: #e43f52 !important;
  303. }
  304. .border-dark {
  305. border-color: #3c4858 !important;
  306. }
  307. .border-muted {
  308. border-color: #8492a6 !important;
  309. }
  310. .border-light {
  311. border-color: #f8f9fc !important;
  312. }
  313. .border-blue {
  314. border-color: #2f55d4 !important;
  315. }
  316. .border-footer {
  317. border-color: #202942 !important;
  318. }
  319. .border {
  320. border: 1px solid #e9ecef !important;
  321. }
  322. .border-top {
  323. border-top: 1px solid #e9ecef !important;
  324. }
  325. .border-bottom {
  326. border-bottom: 1px solid #e9ecef !important;
  327. }
  328. .border-left {
  329. border-left: 1px solid #e9ecef !important;
  330. }
  331. .border-right {
  332. border-right: 1px solid #e9ecef !important;
  333. }
  334. .opacity-05 {
  335. opacity: 0.05;
  336. }
  337. .opacity-075 {
  338. opacity: 0.075;
  339. }
  340. .opacity-1 {
  341. opacity: 0.1;
  342. }
  343. .opacity-2 {
  344. opacity: 0.2;
  345. }
  346. .opacity-3 {
  347. opacity: 0.3;
  348. }
  349. .opacity-4 {
  350. opacity: 0.4;
  351. }
  352. .opacity-5 {
  353. opacity: 0.5;
  354. }
  355. .opacity-6 {
  356. opacity: 0.6;
  357. }
  358. .opacity-7 {
  359. opacity: 0.7;
  360. }
  361. .opacity-8 {
  362. opacity: 0.8;
  363. }
  364. .opacity-9 {
  365. opacity: 0.9;
  366. }
  367. .small, small {
  368. font-size: 90%;
  369. }
  370. .card .card-body {
  371. padding: 1.5rem;
  372. }
  373. .offcanvas .offcanvas-header .dark-version {
  374. display: none;
  375. }
  376. .offcanvas .offcanvas-header .light-version {
  377. display: inline-block;
  378. }
  379. .offcanvas .offcanvas-header .btn-close {
  380. color: #3c4858;
  381. background: none;
  382. }
  383. .offcanvas .offcanvas-header .btn-close:focus {
  384. box-shadow: none;
  385. }
  386. .offcanvas.offcanvas-end {
  387. width: 350px;
  388. }
  389. @media (max-width: 768px) {
  390. .display-1 {
  391. font-size: 56px !important;
  392. }
  393. .display-2 {
  394. font-size: 50px !important;
  395. }
  396. .display-3 {
  397. font-size: 42px !important;
  398. }
  399. .display-4 {
  400. font-size: 36px !important;
  401. }
  402. .display-5 {
  403. font-size: 30px !important;
  404. }
  405. .display-6 {
  406. font-size: 24px !important;
  407. }
  408. }
  409. /*********************************/
  410. /* Components */
  411. /*===============================*/
  412. .component-wrapper .title {
  413. font-size: 20px;
  414. }
  415. .component-wrapper.sticky-bar li {
  416. margin-bottom: 6px;
  417. }
  418. .component-wrapper.sticky-bar li:last-child {
  419. margin-bottom: 0px !important;
  420. }
  421. .component-wrapper.sticky-bar li a {
  422. transition: all 0.5s ease;
  423. }
  424. .component-wrapper.sticky-bar li a:hover, .component-wrapper.sticky-bar li a:focus {
  425. color: #2f55d4 !important;
  426. }
  427. .btn-primary {
  428. background-color: #2f55d4 !important;
  429. border: 1px solid #2f55d4 !important;
  430. color: #ffffff !important;
  431. box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.3);
  432. }
  433. .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.focus {
  434. background-color: #2443ac !important;
  435. border-color: #2443ac !important;
  436. color: #ffffff !important;
  437. }
  438. .btn-soft-primary {
  439. background-color: rgba(47, 85, 212, 0.1) !important;
  440. border: 1px solid rgba(47, 85, 212, 0.1) !important;
  441. color: #2f55d4 !important;
  442. box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.3);
  443. }
  444. .btn-soft-primary:hover, .btn-soft-primary:focus, .btn-soft-primary:active, .btn-soft-primary.active, .btn-soft-primary.focus {
  445. background-color: #2f55d4 !important;
  446. border-color: #2f55d4 !important;
  447. color: #ffffff !important;
  448. }
  449. .btn-outline-primary {
  450. border: 1px solid #2f55d4;
  451. color: #2f55d4;
  452. background-color: transparent;
  453. }
  454. .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.focus, .btn-outline-primary:not(:disabled):not(.disabled):active {
  455. background-color: #2f55d4;
  456. border-color: #2f55d4;
  457. color: #ffffff !important;
  458. box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.3);
  459. }
  460. .btn-secondary {
  461. background-color: #5a6d90 !important;
  462. border: 1px solid #5a6d90 !important;
  463. color: #ffffff !important;
  464. box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
  465. }
  466. .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active, .btn-secondary.focus {
  467. background-color: #465571 !important;
  468. border-color: #465571 !important;
  469. color: #ffffff !important;
  470. }
  471. .btn-soft-secondary {
  472. background-color: rgba(90, 109, 144, 0.1) !important;
  473. border: 1px solid rgba(90, 109, 144, 0.1) !important;
  474. color: #5a6d90 !important;
  475. box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
  476. }
  477. .btn-soft-secondary:hover, .btn-soft-secondary:focus, .btn-soft-secondary:active, .btn-soft-secondary.active, .btn-soft-secondary.focus {
  478. background-color: #5a6d90 !important;
  479. border-color: #5a6d90 !important;
  480. color: #ffffff !important;
  481. }
  482. .btn-outline-secondary {
  483. border: 1px solid #5a6d90;
  484. color: #5a6d90;
  485. background-color: transparent;
  486. }
  487. .btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.focus, .btn-outline-secondary:not(:disabled):not(.disabled):active {
  488. background-color: #5a6d90;
  489. border-color: #5a6d90;
  490. color: #ffffff !important;
  491. box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
  492. }
  493. .btn-success {
  494. background-color: #2eca8b !important;
  495. border: 1px solid #2eca8b !important;
  496. color: #ffffff !important;
  497. box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
  498. }
  499. .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .btn-success.focus {
  500. background-color: #25a06e !important;
  501. border-color: #25a06e !important;
  502. color: #ffffff !important;
  503. }
  504. .btn-soft-success {
  505. background-color: rgba(46, 202, 139, 0.1) !important;
  506. border: 1px solid rgba(46, 202, 139, 0.1) !important;
  507. color: #2eca8b !important;
  508. box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
  509. }
  510. .btn-soft-success:hover, .btn-soft-success:focus, .btn-soft-success:active, .btn-soft-success.active, .btn-soft-success.focus {
  511. background-color: #2eca8b !important;
  512. border-color: #2eca8b !important;
  513. color: #ffffff !important;
  514. }
  515. .btn-outline-success {
  516. border: 1px solid #2eca8b;
  517. color: #2eca8b;
  518. background-color: transparent;
  519. }
  520. .btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.focus, .btn-outline-success:not(:disabled):not(.disabled):active {
  521. background-color: #2eca8b;
  522. border-color: #2eca8b;
  523. color: #ffffff !important;
  524. box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
  525. }
  526. .btn-warning {
  527. background-color: #f17425 !important;
  528. border: 1px solid #f17425 !important;
  529. color: #ffffff !important;
  530. box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
  531. }
  532. .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .btn-warning.focus {
  533. background-color: #d55b0e !important;
  534. border-color: #d55b0e !important;
  535. color: #ffffff !important;
  536. }
  537. .btn-soft-warning {
  538. background-color: rgba(241, 116, 37, 0.1) !important;
  539. border: 1px solid rgba(241, 116, 37, 0.1) !important;
  540. color: #f17425 !important;
  541. box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
  542. }
  543. .btn-soft-warning:hover, .btn-soft-warning:focus, .btn-soft-warning:active, .btn-soft-warning.active, .btn-soft-warning.focus {
  544. background-color: #f17425 !important;
  545. border-color: #f17425 !important;
  546. color: #ffffff !important;
  547. }
  548. .btn-outline-warning {
  549. border: 1px solid #f17425;
  550. color: #f17425;
  551. background-color: transparent;
  552. }
  553. .btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.focus, .btn-outline-warning:not(:disabled):not(.disabled):active {
  554. background-color: #f17425;
  555. border-color: #f17425;
  556. color: #ffffff !important;
  557. box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
  558. }
  559. .btn-info {
  560. background-color: #17a2b8 !important;
  561. border: 1px solid #17a2b8 !important;
  562. color: #ffffff !important;
  563. box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
  564. }
  565. .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .btn-info.focus {
  566. background-color: #117a8b !important;
  567. border-color: #117a8b !important;
  568. color: #ffffff !important;
  569. }
  570. .btn-soft-info {
  571. background-color: rgba(23, 162, 184, 0.1) !important;
  572. border: 1px solid rgba(23, 162, 184, 0.1) !important;
  573. color: #17a2b8 !important;
  574. box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
  575. }
  576. .btn-soft-info:hover, .btn-soft-info:focus, .btn-soft-info:active, .btn-soft-info.active, .btn-soft-info.focus {
  577. background-color: #17a2b8 !important;
  578. border-color: #17a2b8 !important;
  579. color: #ffffff !important;
  580. }
  581. .btn-outline-info {
  582. border: 1px solid #17a2b8;
  583. color: #17a2b8;
  584. background-color: transparent;
  585. }
  586. .btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.focus, .btn-outline-info:not(:disabled):not(.disabled):active {
  587. background-color: #17a2b8;
  588. border-color: #17a2b8;
  589. color: #ffffff !important;
  590. box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
  591. }
  592. .btn-danger {
  593. background-color: #e43f52 !important;
  594. border: 1px solid #e43f52 !important;
  595. color: #ffffff !important;
  596. box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
  597. }
  598. .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .btn-danger.focus {
  599. background-color: #d21e32 !important;
  600. border-color: #d21e32 !important;
  601. color: #ffffff !important;
  602. }
  603. .btn-soft-danger {
  604. background-color: rgba(228, 63, 82, 0.1) !important;
  605. border: 1px solid rgba(228, 63, 82, 0.1) !important;
  606. color: #e43f52 !important;
  607. box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
  608. }
  609. .btn-soft-danger:hover, .btn-soft-danger:focus, .btn-soft-danger:active, .btn-soft-danger.active, .btn-soft-danger.focus {
  610. background-color: #e43f52 !important;
  611. border-color: #e43f52 !important;
  612. color: #ffffff !important;
  613. }
  614. .btn-outline-danger {
  615. border: 1px solid #e43f52;
  616. color: #e43f52;
  617. background-color: transparent;
  618. }
  619. .btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.focus, .btn-outline-danger:not(:disabled):not(.disabled):active {
  620. background-color: #e43f52;
  621. border-color: #e43f52;
  622. color: #ffffff !important;
  623. box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
  624. }
  625. .btn-dark {
  626. background-color: #3c4858 !important;
  627. border: 1px solid #3c4858 !important;
  628. color: #ffffff !important;
  629. box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
  630. }
  631. .btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active, .btn-dark.focus {
  632. background-color: #272f3a !important;
  633. border-color: #272f3a !important;
  634. color: #ffffff !important;
  635. }
  636. .btn-soft-dark {
  637. background-color: rgba(60, 72, 88, 0.1) !important;
  638. border: 1px solid rgba(60, 72, 88, 0.1) !important;
  639. color: #3c4858 !important;
  640. box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
  641. }
  642. .btn-soft-dark:hover, .btn-soft-dark:focus, .btn-soft-dark:active, .btn-soft-dark.active, .btn-soft-dark.focus {
  643. background-color: #3c4858 !important;
  644. border-color: #3c4858 !important;
  645. color: #ffffff !important;
  646. }
  647. .btn-outline-dark {
  648. border: 1px solid #3c4858;
  649. color: #3c4858;
  650. background-color: transparent;
  651. }
  652. .btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.focus, .btn-outline-dark:not(:disabled):not(.disabled):active {
  653. background-color: #3c4858;
  654. border-color: #3c4858;
  655. color: #ffffff !important;
  656. box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
  657. }
  658. .btn-muted {
  659. background-color: #8492a6 !important;
  660. border: 1px solid #8492a6 !important;
  661. color: #ffffff !important;
  662. box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
  663. }
  664. .btn-muted:hover, .btn-muted:focus, .btn-muted:active, .btn-muted.active, .btn-muted.focus {
  665. background-color: #68788f !important;
  666. border-color: #68788f !important;
  667. color: #ffffff !important;
  668. }
  669. .btn-soft-muted {
  670. background-color: rgba(132, 146, 166, 0.1) !important;
  671. border: 1px solid rgba(132, 146, 166, 0.1) !important;
  672. color: #8492a6 !important;
  673. box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
  674. }
  675. .btn-soft-muted:hover, .btn-soft-muted:focus, .btn-soft-muted:active, .btn-soft-muted.active, .btn-soft-muted.focus {
  676. background-color: #8492a6 !important;
  677. border-color: #8492a6 !important;
  678. color: #ffffff !important;
  679. }
  680. .btn-outline-muted {
  681. border: 1px solid #8492a6;
  682. color: #8492a6;
  683. background-color: transparent;
  684. }
  685. .btn-outline-muted:hover, .btn-outline-muted:focus, .btn-outline-muted:active, .btn-outline-muted.active, .btn-outline-muted.focus, .btn-outline-muted:not(:disabled):not(.disabled):active {
  686. background-color: #8492a6;
  687. border-color: #8492a6;
  688. color: #ffffff !important;
  689. box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
  690. }
  691. .btn-light {
  692. background-color: #f8f9fc !important;
  693. border: 1px solid #f8f9fc !important;
  694. color: #ffffff !important;
  695. box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
  696. }
  697. .btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active, .btn-light.focus {
  698. background-color: #d4daed !important;
  699. border-color: #d4daed !important;
  700. color: #ffffff !important;
  701. }
  702. .btn-soft-light {
  703. background-color: rgba(248, 249, 252, 0.1) !important;
  704. border: 1px solid rgba(248, 249, 252, 0.1) !important;
  705. color: #f8f9fc !important;
  706. box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
  707. }
  708. .btn-soft-light:hover, .btn-soft-light:focus, .btn-soft-light:active, .btn-soft-light.active, .btn-soft-light.focus {
  709. background-color: #f8f9fc !important;
  710. border-color: #f8f9fc !important;
  711. color: #ffffff !important;
  712. }
  713. .btn-outline-light {
  714. border: 1px solid #f8f9fc;
  715. color: #f8f9fc;
  716. background-color: transparent;
  717. }
  718. .btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.focus, .btn-outline-light:not(:disabled):not(.disabled):active {
  719. background-color: #f8f9fc;
  720. border-color: #f8f9fc;
  721. color: #ffffff !important;
  722. box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
  723. }
  724. .btn-blue {
  725. background-color: #2f55d4 !important;
  726. border: 1px solid #2f55d4 !important;
  727. color: #ffffff !important;
  728. box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.3);
  729. }
  730. .btn-blue:hover, .btn-blue:focus, .btn-blue:active, .btn-blue.active, .btn-blue.focus {
  731. background-color: #2443ac !important;
  732. border-color: #2443ac !important;
  733. color: #ffffff !important;
  734. }
  735. .btn-soft-blue {
  736. background-color: rgba(47, 85, 212, 0.1) !important;
  737. border: 1px solid rgba(47, 85, 212, 0.1) !important;
  738. color: #2f55d4 !important;
  739. box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.3);
  740. }
  741. .btn-soft-blue:hover, .btn-soft-blue:focus, .btn-soft-blue:active, .btn-soft-blue.active, .btn-soft-blue.focus {
  742. background-color: #2f55d4 !important;
  743. border-color: #2f55d4 !important;
  744. color: #ffffff !important;
  745. }
  746. .btn-outline-blue {
  747. border: 1px solid #2f55d4;
  748. color: #2f55d4;
  749. background-color: transparent;
  750. }
  751. .btn-outline-blue:hover, .btn-outline-blue:focus, .btn-outline-blue:active, .btn-outline-blue.active, .btn-outline-blue.focus, .btn-outline-blue:not(:disabled):not(.disabled):active {
  752. background-color: #2f55d4;
  753. border-color: #2f55d4;
  754. color: #ffffff !important;
  755. box-shadow: 0 3px 5px 0 rgba(47, 85, 212, 0.3);
  756. }
  757. .btn-footer {
  758. background-color: #202942 !important;
  759. border: 1px solid #202942 !important;
  760. color: #ffffff !important;
  761. box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
  762. }
  763. .btn-footer:hover, .btn-footer:focus, .btn-footer:active, .btn-footer.active, .btn-footer.focus {
  764. background-color: #0f131f !important;
  765. border-color: #0f131f !important;
  766. color: #ffffff !important;
  767. }
  768. .btn-soft-footer {
  769. background-color: rgba(32, 41, 66, 0.1) !important;
  770. border: 1px solid rgba(32, 41, 66, 0.1) !important;
  771. color: #202942 !important;
  772. box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
  773. }
  774. .btn-soft-footer:hover, .btn-soft-footer:focus, .btn-soft-footer:active, .btn-soft-footer.active, .btn-soft-footer.focus {
  775. background-color: #202942 !important;
  776. border-color: #202942 !important;
  777. color: #ffffff !important;
  778. }
  779. .btn-outline-footer {
  780. border: 1px solid #202942;
  781. color: #202942;
  782. background-color: transparent;
  783. }
  784. .btn-outline-footer:hover, .btn-outline-footer:focus, .btn-outline-footer:active, .btn-outline-footer.active, .btn-outline-footer.focus, .btn-outline-footer:not(:disabled):not(.disabled):active {
  785. background-color: #202942;
  786. border-color: #202942;
  787. color: #ffffff !important;
  788. box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
  789. }
  790. .btn {
  791. padding: 8px 20px;
  792. outline: none;
  793. text-decoration: none;
  794. font-size: 16px;
  795. letter-spacing: 0.5px;
  796. transition: all 0.3s;
  797. font-weight: 600;
  798. border-radius: 6px;
  799. }
  800. .btn:focus {
  801. box-shadow: none !important;
  802. }
  803. .btn.btn-sm {
  804. padding: 7px 16px;
  805. font-size: 10px;
  806. }
  807. .btn.btn-lg {
  808. padding: 14px 30px;
  809. font-size: 16px;
  810. }
  811. .btn.searchbtn {
  812. padding: 6px 20px;
  813. }
  814. .btn.btn-pills {
  815. border-radius: 30px;
  816. }
  817. .btn.btn-light {
  818. color: #3c4858 !important;
  819. border: 1px solid #dee2e6 !important;
  820. }
  821. .btn.btn-light:hover, .btn.btn-light:focus, .btn.btn-light:active, .btn.btn-light.active, .btn.btn-light.focus {
  822. background-color: #d4daed !important;
  823. color: #3c4858 !important;
  824. }
  825. .btn.btn-soft-light {
  826. color: rgba(60, 72, 88, 0.5) !important;
  827. border: 1px solid #dee2e6 !important;
  828. }
  829. .btn.btn-soft-light:hover, .btn.btn-soft-light:focus, .btn.btn-soft-light:active, .btn.btn-soft-light.active, .btn.btn-soft-light.focus {
  830. color: #3c4858 !important;
  831. }
  832. .btn.btn-outline-light {
  833. border: 1px solid #dee2e6 !important;
  834. color: #3c4858 !important;
  835. background-color: transparent;
  836. }
  837. .btn.btn-outline-light:hover, .btn.btn-outline-light:focus, .btn.btn-outline-light:active, .btn.btn-outline-light.active, .btn.btn-outline-light.focus {
  838. background-color: #f8f9fc !important;
  839. }
  840. .btn.btn-icon {
  841. height: 36px;
  842. width: 36px;
  843. display: inline-flex;
  844. align-items: center;
  845. justify-content: center;
  846. padding: 0;
  847. }
  848. .btn.btn-icon .icons {
  849. height: 16px;
  850. width: 16px;
  851. font-size: 16px;
  852. }
  853. .btn.btn-icon.btn-lg {
  854. height: 48px;
  855. width: 48px;
  856. line-height: 46px;
  857. }
  858. .btn.btn-icon.btn-lg .icons {
  859. height: 20px;
  860. width: 20px;
  861. font-size: 20px;
  862. }
  863. .btn.btn-icon.btn-sm {
  864. height: 30px;
  865. width: 30px;
  866. line-height: 28px;
  867. }
  868. button:not(:disabled) {
  869. outline: none;
  870. }
  871. .shadow {
  872. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
  873. }
  874. .shadow-lg {
  875. box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15) !important;
  876. }
  877. .shadow-md {
  878. box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
  879. }
  880. .badge {
  881. letter-spacing: 0.5px;
  882. padding: 4px 8px;
  883. font-weight: 600;
  884. line-height: 11px;
  885. }
  886. .badge.badge-link:hover {
  887. color: #ffffff !important;
  888. }
  889. .dropdown-primary .dropdown-menu .dropdown-item:hover, .dropdown-primary .dropdown-menu .dropdown-item.active, .dropdown-primary .dropdown-menu .dropdown-item:active, .dropdown-primary .dropdown-menu .dropdown-item.focus, .dropdown-primary .dropdown-menu .dropdown-item:focus {
  890. background-color: transparent;
  891. color: #2f55d4 !important;
  892. }
  893. .dropdown-secondary .dropdown-menu .dropdown-item:hover, .dropdown-secondary .dropdown-menu .dropdown-item.active, .dropdown-secondary .dropdown-menu .dropdown-item:active, .dropdown-secondary .dropdown-menu .dropdown-item.focus, .dropdown-secondary .dropdown-menu .dropdown-item:focus {
  894. background-color: transparent;
  895. color: #5a6d90 !important;
  896. }
  897. .dropdown-success .dropdown-menu .dropdown-item:hover, .dropdown-success .dropdown-menu .dropdown-item.active, .dropdown-success .dropdown-menu .dropdown-item:active, .dropdown-success .dropdown-menu .dropdown-item.focus, .dropdown-success .dropdown-menu .dropdown-item:focus {
  898. background-color: transparent;
  899. color: #2eca8b !important;
  900. }
  901. .dropdown-warning .dropdown-menu .dropdown-item:hover, .dropdown-warning .dropdown-menu .dropdown-item.active, .dropdown-warning .dropdown-menu .dropdown-item:active, .dropdown-warning .dropdown-menu .dropdown-item.focus, .dropdown-warning .dropdown-menu .dropdown-item:focus {
  902. background-color: transparent;
  903. color: #f17425 !important;
  904. }
  905. .dropdown-info .dropdown-menu .dropdown-item:hover, .dropdown-info .dropdown-menu .dropdown-item.active, .dropdown-info .dropdown-menu .dropdown-item:active, .dropdown-info .dropdown-menu .dropdown-item.focus, .dropdown-info .dropdown-menu .dropdown-item:focus {
  906. background-color: transparent;
  907. color: #17a2b8 !important;
  908. }
  909. .dropdown-danger .dropdown-menu .dropdown-item:hover, .dropdown-danger .dropdown-menu .dropdown-item.active, .dropdown-danger .dropdown-menu .dropdown-item:active, .dropdown-danger .dropdown-menu .dropdown-item.focus, .dropdown-danger .dropdown-menu .dropdown-item:focus {
  910. background-color: transparent;
  911. color: #e43f52 !important;
  912. }
  913. .dropdown-dark .dropdown-menu .dropdown-item:hover, .dropdown-dark .dropdown-menu .dropdown-item.active, .dropdown-dark .dropdown-menu .dropdown-item:active, .dropdown-dark .dropdown-menu .dropdown-item.focus, .dropdown-dark .dropdown-menu .dropdown-item:focus {
  914. background-color: transparent;
  915. color: #3c4858 !important;
  916. }
  917. .dropdown-muted .dropdown-menu .dropdown-item:hover, .dropdown-muted .dropdown-menu .dropdown-item.active, .dropdown-muted .dropdown-menu .dropdown-item:active, .dropdown-muted .dropdown-menu .dropdown-item.focus, .dropdown-muted .dropdown-menu .dropdown-item:focus {
  918. background-color: transparent;
  919. color: #8492a6 !important;
  920. }
  921. .dropdown-light .dropdown-menu .dropdown-item:hover, .dropdown-light .dropdown-menu .dropdown-item.active, .dropdown-light .dropdown-menu .dropdown-item:active, .dropdown-light .dropdown-menu .dropdown-item.focus, .dropdown-light .dropdown-menu .dropdown-item:focus {
  922. background-color: transparent;
  923. color: #f8f9fc !important;
  924. }
  925. .dropdown-blue .dropdown-menu .dropdown-item:hover, .dropdown-blue .dropdown-menu .dropdown-item.active, .dropdown-blue .dropdown-menu .dropdown-item:active, .dropdown-blue .dropdown-menu .dropdown-item.focus, .dropdown-blue .dropdown-menu .dropdown-item:focus {
  926. background-color: transparent;
  927. color: #2f55d4 !important;
  928. }
  929. .dropdown-footer .dropdown-menu .dropdown-item:hover, .dropdown-footer .dropdown-menu .dropdown-item.active, .dropdown-footer .dropdown-menu .dropdown-item:active, .dropdown-footer .dropdown-menu .dropdown-item.focus, .dropdown-footer .dropdown-menu .dropdown-item:focus {
  930. background-color: transparent;
  931. color: #202942 !important;
  932. }
  933. .btn-group .dropdown-toggle:after {
  934. content: "";
  935. position: relative;
  936. right: -4px;
  937. top: -2px;
  938. border: solid #ffffff;
  939. border-radius: 0.5px;
  940. border-width: 0 2px 2px 0;
  941. padding: 3px;
  942. transform: rotate(45deg);
  943. margin-left: 0;
  944. vertical-align: 0;
  945. }
  946. .btn-group .dropdown-menu {
  947. margin-top: 10px;
  948. border: 0;
  949. border-radius: 5px;
  950. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  951. }
  952. .btn-group .dropdown-menu:before {
  953. content: "";
  954. position: absolute;
  955. top: 2px;
  956. left: 45px;
  957. box-sizing: border-box;
  958. border: 7px solid #495057;
  959. border-radius: 0.5px;
  960. border-color: transparent transparent #ffffff #ffffff;
  961. transform-origin: 0 0;
  962. transform: rotate(135deg);
  963. box-shadow: -2px 2px 2px -1px rgba(22, 28, 45, 0.15);
  964. }
  965. .dropdown .dropdown-toggle:after {
  966. display: none;
  967. }
  968. .alert-primary {
  969. background-color: rgba(47, 85, 212, 0.9);
  970. color: #ffffff;
  971. border-color: #2f55d4;
  972. }
  973. .alert-primary .alert-link {
  974. color: #122258;
  975. }
  976. .alert-outline-primary {
  977. background-color: #ffffff;
  978. color: #2f55d4;
  979. border-color: #2f55d4;
  980. }
  981. .alert-secondary {
  982. background-color: rgba(90, 109, 144, 0.9);
  983. color: #ffffff;
  984. border-color: #5a6d90;
  985. }
  986. .alert-secondary .alert-link {
  987. color: #1f2632;
  988. }
  989. .alert-outline-secondary {
  990. background-color: #ffffff;
  991. color: #5a6d90;
  992. border-color: #5a6d90;
  993. }
  994. .alert-success {
  995. background-color: rgba(46, 202, 139, 0.9);
  996. color: #ffffff;
  997. border-color: #2eca8b;
  998. }
  999. .alert-success .alert-link {
  1000. color: #124d35;
  1001. }
  1002. .alert-outline-success {
  1003. background-color: #ffffff;
  1004. color: #2eca8b;
  1005. border-color: #2eca8b;
  1006. }
  1007. .alert-warning {
  1008. background-color: rgba(241, 116, 37, 0.9);
  1009. color: #ffffff;
  1010. border-color: #f17425;
  1011. }
  1012. .alert-warning .alert-link {
  1013. color: #753208;
  1014. }
  1015. .alert-outline-warning {
  1016. background-color: #ffffff;
  1017. color: #f17425;
  1018. border-color: #f17425;
  1019. }
  1020. .alert-info {
  1021. background-color: rgba(23, 162, 184, 0.9);
  1022. color: #ffffff;
  1023. border-color: #17a2b8;
  1024. }
  1025. .alert-info .alert-link {
  1026. color: #062a30;
  1027. }
  1028. .alert-outline-info {
  1029. background-color: #ffffff;
  1030. color: #17a2b8;
  1031. border-color: #17a2b8;
  1032. }
  1033. .alert-danger {
  1034. background-color: rgba(228, 63, 82, 0.9);
  1035. color: #ffffff;
  1036. border-color: #e43f52;
  1037. }
  1038. .alert-danger .alert-link {
  1039. color: #79111d;
  1040. }
  1041. .alert-outline-danger {
  1042. background-color: #ffffff;
  1043. color: #e43f52;
  1044. border-color: #e43f52;
  1045. }
  1046. .alert-dark {
  1047. background-color: rgba(60, 72, 88, 0.9);
  1048. color: #ffffff;
  1049. border-color: #3c4858;
  1050. }
  1051. .alert-dark .alert-link {
  1052. color: black;
  1053. }
  1054. .alert-outline-dark {
  1055. background-color: #ffffff;
  1056. color: #3c4858;
  1057. border-color: #3c4858;
  1058. }
  1059. .alert-muted {
  1060. background-color: rgba(132, 146, 166, 0.9);
  1061. color: #ffffff;
  1062. border-color: #8492a6;
  1063. }
  1064. .alert-muted .alert-link {
  1065. color: #3d4654;
  1066. }
  1067. .alert-outline-muted {
  1068. background-color: #ffffff;
  1069. color: #8492a6;
  1070. border-color: #8492a6;
  1071. }
  1072. .alert-light {
  1073. background-color: rgba(248, 249, 252, 0.9);
  1074. color: #ffffff;
  1075. border-color: #f8f9fc;
  1076. }
  1077. .alert-light .alert-link {
  1078. color: #8d9dce;
  1079. }
  1080. .alert-outline-light {
  1081. background-color: #ffffff;
  1082. color: #f8f9fc;
  1083. border-color: #f8f9fc;
  1084. }
  1085. .alert-blue {
  1086. background-color: rgba(47, 85, 212, 0.9);
  1087. color: #ffffff;
  1088. border-color: #2f55d4;
  1089. }
  1090. .alert-blue .alert-link {
  1091. color: #122258;
  1092. }
  1093. .alert-outline-blue {
  1094. background-color: #ffffff;
  1095. color: #2f55d4;
  1096. border-color: #2f55d4;
  1097. }
  1098. .alert-footer {
  1099. background-color: rgba(32, 41, 66, 0.9);
  1100. color: #ffffff;
  1101. border-color: #202942;
  1102. }
  1103. .alert-footer .alert-link {
  1104. color: black;
  1105. }
  1106. .alert-outline-footer {
  1107. background-color: #ffffff;
  1108. color: #202942;
  1109. border-color: #202942;
  1110. }
  1111. .alert {
  1112. padding: 8px 15px;
  1113. border-radius: 5px;
  1114. font-size: 14px;
  1115. }
  1116. .alert.alert-light {
  1117. background-color: white;
  1118. color: #3c4858;
  1119. border-color: #e9ecef;
  1120. }
  1121. .alert.alert-dismissible {
  1122. padding-right: 30px;
  1123. }
  1124. .alert.alert-dismissible .btn-close {
  1125. top: 10px;
  1126. right: 10px;
  1127. padding: 0px;
  1128. }
  1129. .alert.alert-pills {
  1130. border-radius: 30px;
  1131. display: inline-block;
  1132. }
  1133. .alert.alert-pills .content {
  1134. font-weight: 600;
  1135. }
  1136. .pages-heading .title {
  1137. font-size: 32px !important;
  1138. letter-spacing: 1px;
  1139. }
  1140. .position-breadcrumb {
  1141. position: absolute;
  1142. top: 100%;
  1143. right: 12px;
  1144. left: 12px;
  1145. transform: translateY(-50%);
  1146. text-align: center;
  1147. z-index: 1;
  1148. }
  1149. .breadcrumb {
  1150. letter-spacing: 0.5px;
  1151. padding: 8px 24px;
  1152. display: block;
  1153. }
  1154. .breadcrumb .breadcrumb-item {
  1155. text-transform: uppercase;
  1156. font-size: 14px;
  1157. font-weight: 700;
  1158. padding-left: 0;
  1159. display: inline-block;
  1160. }
  1161. .breadcrumb .breadcrumb-item a {
  1162. color: #3c4858;
  1163. }
  1164. .breadcrumb .breadcrumb-item a:hover {
  1165. color: #2f55d4;
  1166. }
  1167. .breadcrumb .breadcrumb-item.active {
  1168. color: #2f55d4;
  1169. }
  1170. .breadcrumb .breadcrumb-item:before {
  1171. content: "";
  1172. }
  1173. .breadcrumb .breadcrumb-item:after {
  1174. content: "\F0142" !important;
  1175. font-size: 14px;
  1176. color: #3c4858;
  1177. font-family: 'Material Design Icons';
  1178. padding-left: 5px;
  1179. }
  1180. .breadcrumb .breadcrumb-item:last-child:after {
  1181. display: none;
  1182. }
  1183. .pagination .page-item:first-child .page-link {
  1184. border-top-left-radius: 30px;
  1185. border-bottom-left-radius: 30px;
  1186. }
  1187. .pagination .page-item:last-child .page-link {
  1188. border-top-right-radius: 30px;
  1189. border-bottom-right-radius: 30px;
  1190. }
  1191. .pagination .page-item .page-link {
  1192. color: #3c4858;
  1193. border: 1px solid #dee2e6;
  1194. padding: 8px 16px;
  1195. font-size: 14px;
  1196. }
  1197. .pagination .page-item .page-link:focus {
  1198. box-shadow: none;
  1199. }
  1200. .pagination .page-item .page-link:hover {
  1201. color: #ffffff;
  1202. background: rgba(47, 85, 212, 0.9);
  1203. border-color: rgba(47, 85, 212, 0.9);
  1204. }
  1205. .pagination .page-item.active .page-link {
  1206. color: #ffffff;
  1207. background: #2f55d4 !important;
  1208. border-color: #2f55d4;
  1209. cursor: not-allowed;
  1210. }
  1211. .avatar.avatar-coin {
  1212. height: 36px;
  1213. width: 36px;
  1214. }
  1215. .avatar.avatar-ex-sm {
  1216. max-height: 25px;
  1217. }
  1218. .avatar.avatar-md-sm {
  1219. height: 45px;
  1220. width: 45px;
  1221. }
  1222. .avatar.avatar-small {
  1223. height: 65px;
  1224. width: 65px;
  1225. }
  1226. .avatar.avatar-md-md {
  1227. height: 80px;
  1228. width: 80px;
  1229. }
  1230. .avatar.avatar-medium {
  1231. height: 110px;
  1232. width: 110px;
  1233. }
  1234. .avatar.avatar-large {
  1235. height: 140px;
  1236. width: 140px;
  1237. }
  1238. .avatar.avatar-ex-large {
  1239. height: 180px;
  1240. width: 180px;
  1241. }
  1242. .accordion .accordion-item {
  1243. overflow: hidden;
  1244. border: 0;
  1245. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  1246. background: transparent;
  1247. }
  1248. .accordion .accordion-item .accordion-button {
  1249. font-weight: 600;
  1250. text-align: left;
  1251. box-shadow: none;
  1252. padding: 1rem 2.5rem 1rem 1.25rem;
  1253. }
  1254. .accordion .accordion-item .accordion-button:focus {
  1255. box-shadow: none;
  1256. }
  1257. .accordion .accordion-item .accordion-button:before {
  1258. content: '\F0143';
  1259. display: block;
  1260. font-family: 'Material Design Icons';
  1261. font-size: 16px;
  1262. color: #2f55d4;
  1263. position: absolute;
  1264. right: 20px;
  1265. top: 50%;
  1266. transform: translateY(-50%);
  1267. transition: all 0.5s ease;
  1268. }
  1269. .accordion .accordion-item .accordion-button.collapsed {
  1270. background-color: #ffffff;
  1271. color: #3c4858 !important;
  1272. transition: all 0.5s;
  1273. }
  1274. .accordion .accordion-item .accordion-button.collapsed:before {
  1275. top: 15px;
  1276. transform: rotate(180deg);
  1277. color: #3c4858 !important;
  1278. }
  1279. .accordion .accordion-item .accordion-button:after {
  1280. display: none;
  1281. }
  1282. .nav-pills {
  1283. margin-bottom: 15px;
  1284. background: #f4f6fa;
  1285. }
  1286. .nav-pills .nav-link {
  1287. color: #495057 !important;
  1288. padding: 5px;
  1289. transition: all 0.5s ease;
  1290. }
  1291. .nav-pills .nav-link.nav-link-alt {
  1292. color: #ffffff !important;
  1293. }
  1294. .nav-pills .nav-link.nav-link-alt.active {
  1295. background: #3c4858 !important;
  1296. }
  1297. .nav-pills .nav-link.active {
  1298. background: #2f55d4;
  1299. color: #ffffff !important;
  1300. }
  1301. .nav-pills .nav-link.active .tab-para {
  1302. color: rgba(255, 255, 255, 0.65) !important;
  1303. }
  1304. .progress-box .title {
  1305. font-size: 15px;
  1306. }
  1307. .progress-box .progress {
  1308. height: 8px;
  1309. overflow: visible;
  1310. background: #e9ecef;
  1311. }
  1312. .progress-box .progress .progress-bar {
  1313. border-radius: 6px;
  1314. animation: animate-positive 3s;
  1315. overflow: visible !important;
  1316. }
  1317. .progress-box .progress .progress-value {
  1318. position: absolute;
  1319. top: -32px;
  1320. right: -15px;
  1321. font-size: 13px;
  1322. }
  1323. @keyframes animate-positive {
  1324. 0% {
  1325. width: 0;
  1326. }
  1327. }
  1328. .blockquote {
  1329. border-left: 3px solid #dee2e6;
  1330. border-radius: 6px;
  1331. font-size: 16px;
  1332. }
  1333. .blockquote-wrapper .blockquote {
  1334. position: relative;
  1335. align-self: center;
  1336. border: 2px solid #2f55d4;
  1337. }
  1338. .blockquote-wrapper .blockquote:after {
  1339. content: "";
  1340. position: absolute;
  1341. border: 2px solid #2f55d4;
  1342. border-radius: 0 50px 0 0;
  1343. width: 60px;
  1344. height: 60px;
  1345. bottom: -60px;
  1346. left: 50px;
  1347. border-bottom: none;
  1348. border-left: none;
  1349. z-index: 3;
  1350. }
  1351. .blockquote-wrapper .blockquote:before {
  1352. content: "";
  1353. position: absolute;
  1354. width: 80px;
  1355. border: 6px solid #ffffff;
  1356. bottom: -3px;
  1357. left: 50px;
  1358. z-index: 2;
  1359. }
  1360. .blockquote-wrapper .author {
  1361. position: relative;
  1362. margin-left: 150px;
  1363. }
  1364. .blockquote-wrapper .author:first-letter {
  1365. margin-left: -12px;
  1366. }
  1367. .form-label,
  1368. .form-check-label {
  1369. font-weight: 700;
  1370. font-size: 14px;
  1371. }
  1372. .form-control {
  1373. border: 1px solid #dee2e6;
  1374. font-size: 14px;
  1375. line-height: 26px;
  1376. background-color: #ffffff;
  1377. border-radius: 6px;
  1378. }
  1379. .form-control:focus {
  1380. border-color: #2f55d4;
  1381. box-shadow: none;
  1382. }
  1383. .form-control[readonly] {
  1384. background-color: #ffffff;
  1385. }
  1386. .form-control:disabled {
  1387. background-color: #dee2e6;
  1388. }
  1389. .form-check-input {
  1390. border: 1px solid #dee2e6;
  1391. }
  1392. .form-check-input:focus {
  1393. border-color: #2f55d4;
  1394. box-shadow: none;
  1395. }
  1396. .form-check-input.form-check-input:checked {
  1397. background-color: #2f55d4;
  1398. border-color: #2f55d4;
  1399. }
  1400. .subcribe-form .btn {
  1401. padding: 10px 20px;
  1402. }
  1403. .subcribe-form input {
  1404. padding: 12px 20px;
  1405. width: 100%;
  1406. color: #3c4858 !important;
  1407. border: none;
  1408. outline: none !important;
  1409. padding-right: 160px;
  1410. padding-left: 30px;
  1411. background-color: rgba(255, 255, 255, 0.8);
  1412. }
  1413. .subcribe-form button {
  1414. position: absolute;
  1415. top: 2px;
  1416. right: 3px;
  1417. outline: none !important;
  1418. }
  1419. .subcribe-form form {
  1420. position: relative;
  1421. max-width: 600px;
  1422. margin: 0px auto;
  1423. }
  1424. .table-responsive {
  1425. display: block;
  1426. width: 100%;
  1427. overflow-x: auto;
  1428. }
  1429. .table-responsive .table td,
  1430. .table-responsive .table th {
  1431. vertical-align: middle;
  1432. }
  1433. .table-responsive .table.table-nowrap th,
  1434. .table-responsive .table.table-nowrap td {
  1435. white-space: nowrap;
  1436. }
  1437. .table-responsive .table-center th {
  1438. vertical-align: middle !important;
  1439. }
  1440. .table-responsive .table-center tbody tr:hover {
  1441. color: #3c4858;
  1442. background-color: #f8f9fa;
  1443. }
  1444. .table-responsive .table-center.invoice-tb th,
  1445. .table-responsive .table-center.invoice-tb td {
  1446. text-align: end;
  1447. }
  1448. #preloader {
  1449. position: fixed;
  1450. top: 0;
  1451. left: 0;
  1452. right: 0;
  1453. bottom: 0;
  1454. background-image: linear-gradient(45deg, #ffffff, #ffffff);
  1455. z-index: 9999999;
  1456. }
  1457. #preloader #status {
  1458. position: absolute;
  1459. left: 0;
  1460. right: 0;
  1461. top: 50%;
  1462. transform: translateY(-50%);
  1463. }
  1464. #preloader #status .spinner {
  1465. width: 40px;
  1466. height: 40px;
  1467. position: relative;
  1468. margin: 100px auto;
  1469. }
  1470. #preloader #status .spinner .double-bounce1, #preloader #status .spinner .double-bounce2 {
  1471. width: 100%;
  1472. height: 100%;
  1473. border-radius: 50%;
  1474. background-color: #2f55d4;
  1475. opacity: 0.6;
  1476. position: absolute;
  1477. top: 0;
  1478. left: 0;
  1479. animation: sk-bounce 2.0s infinite ease-in-out;
  1480. }
  1481. #preloader #status .spinner .double-bounce2 {
  1482. animation-delay: -1.0s;
  1483. }
  1484. @keyframes sk-bounce {
  1485. 0%, 100% {
  1486. transform: scale(0);
  1487. }
  1488. 50% {
  1489. transform: scale(1);
  1490. }
  1491. }
  1492. .social-icon li a {
  1493. color: #3c4858;
  1494. border: 1px solid #3c4858;
  1495. display: inline-block;
  1496. height: 32px;
  1497. width: 32px;
  1498. line-height: 28px;
  1499. text-align: center;
  1500. transition: all 0.4s ease;
  1501. overflow: hidden;
  1502. position: relative;
  1503. }
  1504. .social-icon li a .fea-social {
  1505. stroke-width: 2;
  1506. }
  1507. .social-icon li a:hover {
  1508. background-color: #2f55d4;
  1509. border-color: #2f55d4 !important;
  1510. color: #ffffff !important;
  1511. }
  1512. .social-icon li a:hover .fea-social {
  1513. fill: #2f55d4;
  1514. }
  1515. .social-icon.social li a {
  1516. color: #adb5bd;
  1517. border-color: #adb5bd;
  1518. }
  1519. .social-icon.foot-social-icon li a {
  1520. color: #adb5bd;
  1521. border-color: #283353;
  1522. }
  1523. .back-to-top {
  1524. position: fixed;
  1525. z-index: 99;
  1526. bottom: 30px;
  1527. right: 30px;
  1528. display: none;
  1529. transition: all 0.5s ease;
  1530. height: 36px;
  1531. width: 36px;
  1532. line-height: 34px;
  1533. border-radius: 6px;
  1534. text-align: center;
  1535. background: #2f55d4;
  1536. color: #ffffff !important;
  1537. }
  1538. .back-to-top .icons {
  1539. transition: all 0.5s ease;
  1540. }
  1541. .back-to-top:hover {
  1542. transform: rotate(45deg);
  1543. }
  1544. .back-to-top:hover .icons {
  1545. transform: rotate(-45deg) !important;
  1546. }
  1547. .back-to-home {
  1548. position: fixed;
  1549. top: 4%;
  1550. right: 2%;
  1551. z-index: 1;
  1552. }
  1553. .sticky-bar {
  1554. position: sticky;
  1555. top: 80px;
  1556. }
  1557. .fea {
  1558. stroke-width: 1.8;
  1559. }
  1560. .fea.icon-sm {
  1561. height: 16px;
  1562. width: 16px;
  1563. }
  1564. .fea.icon-ex-md {
  1565. height: 20px;
  1566. width: 20px;
  1567. }
  1568. .fea.icon-m-md {
  1569. height: 28px;
  1570. width: 28px;
  1571. }
  1572. .fea.icon-md {
  1573. height: 35px;
  1574. width: 35px;
  1575. }
  1576. .fea.icon-lg {
  1577. height: 42px;
  1578. width: 42px;
  1579. }
  1580. .fea.icon-ex-lg {
  1581. height: 52px;
  1582. width: 52px;
  1583. }
  1584. [class^=uil-]:before,
  1585. [class*=" uil-"]:before {
  1586. margin: 0;
  1587. }
  1588. .uim-svg {
  1589. vertical-align: 0 !important;
  1590. }
  1591. /*********************************/
  1592. /* General */
  1593. /*===============================*/
  1594. body {
  1595. font-family: "Nunito", sans-serif;
  1596. overflow-x: hidden !important;
  1597. font-size: 16px;
  1598. color: #161c2d;
  1599. }
  1600. h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  1601. font-family: "Nunito", sans-serif;
  1602. line-height: 1.5;
  1603. font-weight: 600;
  1604. }
  1605. ::selection {
  1606. background: rgba(47, 85, 212, 0.9);
  1607. color: #ffffff;
  1608. }
  1609. a {
  1610. text-decoration: none !important;
  1611. }
  1612. p {
  1613. line-height: 1.6;
  1614. }
  1615. /*********************************/
  1616. /* Helpers */
  1617. /*===============================*/
  1618. .section {
  1619. padding: 100px 0;
  1620. position: relative;
  1621. }
  1622. @media (max-width: 768px) {
  1623. .section {
  1624. padding: 60px 0;
  1625. }
  1626. }
  1627. .section-two {
  1628. padding: 60px 0;
  1629. position: relative;
  1630. }
  1631. .bg-overlay {
  1632. background-color: rgba(60, 72, 88, 0.7);
  1633. position: absolute;
  1634. top: 0;
  1635. right: 0;
  1636. left: 0;
  1637. bottom: 0;
  1638. width: 100%;
  1639. height: 100%;
  1640. }
  1641. .bg-overlay-white {
  1642. background-color: rgba(255, 255, 255, 0.5);
  1643. }
  1644. .bg-gradient-primary {
  1645. background: linear-gradient(to left, #614092 0%, #2443ac 100%);
  1646. }
  1647. .title-heading {
  1648. line-height: 26px;
  1649. }
  1650. .title-heading .heading {
  1651. font-size: 45px !important;
  1652. letter-spacing: 1px;
  1653. }
  1654. @media (max-width: 768px) {
  1655. .title-heading .heading {
  1656. font-size: 35px !important;
  1657. }
  1658. }
  1659. .title-heading .para-desc {
  1660. font-size: 18px;
  1661. }
  1662. .section-title .title {
  1663. letter-spacing: 0.5px;
  1664. font-size: 30px !important;
  1665. }
  1666. @media (max-width: 768px) {
  1667. .section-title .title {
  1668. font-size: 24px !important;
  1669. }
  1670. }
  1671. .text-shadow-title {
  1672. text-shadow: 2px 0 0 #ffffff, -2px 0 0 #ffffff, 0 4px 0 rgba(255, 255, 255, 0.4), 0 -2px 0 #ffffff, 1px 1px #ffffff, -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff;
  1673. }
  1674. .para-desc {
  1675. max-width: 600px;
  1676. }
  1677. .mt-100 {
  1678. margin-top: 100px;
  1679. }
  1680. .shape {
  1681. position: absolute;
  1682. pointer-events: none;
  1683. right: 0;
  1684. bottom: -2px;
  1685. left: 0;
  1686. }
  1687. .shape > svg {
  1688. transform: scale(2);
  1689. width: 100%;
  1690. height: auto;
  1691. transform-origin: top center;
  1692. }
  1693. .shape.integration-hero {
  1694. clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  1695. height: 250px;
  1696. background: #ffffff;
  1697. }
  1698. @media (max-width: 768px) {
  1699. .shape.integration-hero {
  1700. height: 140px;
  1701. }
  1702. }
  1703. @media (max-width: 425px) {
  1704. .shape.integration-hero {
  1705. height: 60px;
  1706. }
  1707. }
  1708. @media (max-width: 425px) {
  1709. .shape {
  1710. bottom: -4px;
  1711. }
  1712. }
  1713. .text-slider {
  1714. margin: 0 auto;
  1715. position: relative;
  1716. overflow: hidden;
  1717. transform: translate3d(0, 0, 0);
  1718. }
  1719. .text-slider > ul {
  1720. white-space: nowrap;
  1721. }
  1722. .text-slider .move-text {
  1723. animation: moveSlideshow 12s linear infinite;
  1724. }
  1725. @keyframes moveSlideshow {
  1726. 100% {
  1727. transform: translateX(-45%);
  1728. }
  1729. }
  1730. .mover {
  1731. animation: mover 1s infinite alternate;
  1732. }
  1733. @keyframes mover {
  1734. 0% {
  1735. transform: translateY(0);
  1736. }
  1737. 100% {
  1738. transform: translateY(5px);
  1739. }
  1740. }
  1741. .feature-posts-placeholder {
  1742. position: absolute;
  1743. bottom: 0px;
  1744. left: 0;
  1745. right: 0;
  1746. height: 66.6%;
  1747. }
  1748. @media (max-width: 425px) {
  1749. .feature-posts-placeholder {
  1750. height: 80%;
  1751. }
  1752. }
  1753. .spin-anything {
  1754. animation: spinner-animation 5s linear infinite;
  1755. }
  1756. @keyframes spinner-animation {
  1757. from {
  1758. transform: rotate(0deg);
  1759. }
  1760. to {
  1761. transform: rotate(360deg);
  1762. }
  1763. }
  1764. .seo-hero-widget {
  1765. position: relative;
  1766. transition: all 0.5s ease;
  1767. }
  1768. .seo-hero-widget:hover {
  1769. transform: scale(1.05);
  1770. z-index: 9;
  1771. }
  1772. .home-wrapper:before {
  1773. content: "";
  1774. position: absolute;
  1775. bottom: 40rem;
  1776. right: 0rem;
  1777. width: 90rem;
  1778. height: 35rem;
  1779. transform: rotate(78.75deg);
  1780. background: linear-gradient(90deg, rgba(47, 85, 212, 0.3), transparent);
  1781. z-index: 1;
  1782. }
  1783. @media (min-width: 769px) and (max-width: 1024px) {
  1784. .home-wrapper:before {
  1785. right: -20rem;
  1786. }
  1787. }
  1788. @media (min-width: 426px) and (max-width: 768px) {
  1789. .home-wrapper:before {
  1790. right: -15rem;
  1791. width: 70rem;
  1792. height: 25rem;
  1793. }
  1794. }
  1795. @media (max-width: 425px) {
  1796. .home-wrapper:before {
  1797. right: -25rem;
  1798. }
  1799. }
  1800. @media (min-width: 768px) {
  1801. .margin-top-100 {
  1802. margin-top: 100px;
  1803. }
  1804. }
  1805. @media (max-width: 768px) {
  1806. .mt-60 {
  1807. margin-top: 60px;
  1808. }
  1809. }
  1810. /*********************************/
  1811. /* Menu */
  1812. /*===============================*/
  1813. #topnav {
  1814. position: fixed;
  1815. right: 0;
  1816. left: 0;
  1817. top: 0;
  1818. z-index: 999;
  1819. background-color: transparent;
  1820. border: 0;
  1821. transition: all .5s ease;
  1822. }
  1823. #topnav .logo {
  1824. float: left;
  1825. color: #3c4858 !important;
  1826. }
  1827. #topnav .logo .l-dark,
  1828. #topnav .logo .logo-dark-mode {
  1829. display: none;
  1830. }
  1831. #topnav .logo .l-light,
  1832. #topnav .logo .logo-light-mode {
  1833. display: inline-block;
  1834. }
  1835. #topnav .logo:focus {
  1836. outline: none;
  1837. }
  1838. #topnav .has-submenu.active a {
  1839. color: #ffffff;
  1840. }
  1841. #topnav .has-submenu.active .submenu li.active > a {
  1842. color: #2f55d4 !important;
  1843. }
  1844. #topnav .has-submenu.active.active .menu-arrow {
  1845. border-color: #2f55d4;
  1846. }
  1847. #topnav .has-submenu {
  1848. position: relative;
  1849. }
  1850. #topnav .has-submenu .submenu {
  1851. position: relative;
  1852. }
  1853. #topnav .has-submenu .submenu .submenu-arrow {
  1854. border: solid #3c4858;
  1855. border-radius: 0.5px;
  1856. border-width: 0 2px 2px 0;
  1857. display: inline-block;
  1858. padding: 3px;
  1859. transform: rotate(-45deg);
  1860. position: absolute;
  1861. right: 20px;
  1862. top: 13px;
  1863. }
  1864. #topnav .has-submenu .submenu .has-submenu .submenu .has-submenu:hover .submenu-arrow {
  1865. border-color: #2f55d4;
  1866. }
  1867. #topnav .has-submenu .submenu .has-submenu:hover > .submenu-arrow {
  1868. border-color: #2f55d4;
  1869. }
  1870. #topnav .navbar-toggle {
  1871. border: 0;
  1872. position: relative;
  1873. padding: 0;
  1874. margin: 0;
  1875. cursor: pointer;
  1876. }
  1877. #topnav .navbar-toggle .lines {
  1878. width: 25px;
  1879. display: block;
  1880. position: relative;
  1881. margin: 30px 0 26px 10px;
  1882. height: 18px;
  1883. }
  1884. #topnav .navbar-toggle span {
  1885. height: 2px;
  1886. width: 100%;
  1887. background-color: #3c4858;
  1888. display: block;
  1889. margin-bottom: 5px;
  1890. transition: transform .5s ease;
  1891. }
  1892. #topnav .navbar-toggle span:last-child {
  1893. margin-bottom: 0;
  1894. }
  1895. #topnav .buy-button {
  1896. float: right;
  1897. line-height: 74px;
  1898. }
  1899. #topnav .buy-button > li {
  1900. line-height: initial;
  1901. }
  1902. #topnav .buy-button .login-btn-primary {
  1903. display: none;
  1904. }
  1905. #topnav .buy-button .login-btn-light {
  1906. display: inline-block;
  1907. }
  1908. #topnav .buy-button .dropdown .dropdown-toggle:after,
  1909. #topnav .buy-menu-btn .dropdown .dropdown-toggle:after {
  1910. display: none;
  1911. }
  1912. #topnav .navbar-toggle.open span {
  1913. position: absolute;
  1914. }
  1915. #topnav .navbar-toggle.open span:first-child {
  1916. top: 6px;
  1917. transform: rotate(45deg);
  1918. }
  1919. #topnav .navbar-toggle.open span:nth-child(2) {
  1920. visibility: hidden;
  1921. }
  1922. #topnav .navbar-toggle.open span:last-child {
  1923. width: 100%;
  1924. top: 6px;
  1925. transform: rotate(-45deg);
  1926. }
  1927. #topnav .navbar-toggle.open span:hover {
  1928. background-color: #2f55d4;
  1929. }
  1930. #topnav .navbar-toggle:hover, #topnav .navbar-toggle:focus,
  1931. #topnav .navbar-toggle .navigation-menu > li > a:hover, #topnav .navbar-toggle:focus {
  1932. background-color: transparent;
  1933. }
  1934. #topnav .navigation-menu {
  1935. list-style: none;
  1936. margin: 0;
  1937. padding: 0;
  1938. }
  1939. #topnav .navigation-menu > li {
  1940. float: left;
  1941. display: block;
  1942. position: relative;
  1943. margin: 0 10px;
  1944. }
  1945. #topnav .navigation-menu > li:hover > a,
  1946. #topnav .navigation-menu > li.active > a {
  1947. color: #2f55d4 !important;
  1948. }
  1949. #topnav .navigation-menu > li > a {
  1950. display: block;
  1951. color: #3c4858;
  1952. font-size: 13px;
  1953. background-color: transparent !important;
  1954. font-weight: 700;
  1955. letter-spacing: 1px;
  1956. line-height: 24px;
  1957. text-transform: uppercase;
  1958. font-family: "Nunito", sans-serif;
  1959. padding-left: 15px;
  1960. padding-right: 15px;
  1961. }
  1962. #topnav .navigation-menu > li > a:hover, #topnav .navigation-menu > li > a:active {
  1963. color: #2f55d4;
  1964. }
  1965. #topnav .navigation-menu > li .submenu.megamenu li .megamenu-head {
  1966. padding: 10px 20px;
  1967. white-space: nowrap;
  1968. font-size: 11.5px;
  1969. text-transform: uppercase;
  1970. letter-spacing: 0.04em;
  1971. font-weight: bolder;
  1972. color: #3c4858 !important;
  1973. }
  1974. #topnav .navigation-menu .has-submenu .menu-arrow {
  1975. border: solid #3c4858;
  1976. border-radius: 0.5px;
  1977. border-width: 0 2px 2px 0;
  1978. display: inline-block;
  1979. padding: 3px;
  1980. transform: rotate(45deg);
  1981. position: absolute;
  1982. transition: all 0.5s;
  1983. right: -1px;
  1984. top: 30px;
  1985. }
  1986. #topnav .navigation-menu .has-submenu:hover .menu-arrow {
  1987. transform: rotate(225deg);
  1988. }
  1989. #topnav .menu-extras {
  1990. float: right;
  1991. }
  1992. #topnav.scroll {
  1993. background-color: #ffffff;
  1994. border: none;
  1995. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  1996. }
  1997. #topnav.scroll .navigation-menu > li > a {
  1998. color: #3c4858;
  1999. }
  2000. #topnav.scroll .navigation-menu > li > .menu-arrow {
  2001. border-color: #3c4858;
  2002. }
  2003. #topnav.scroll .navigation-menu > li:hover > a, #topnav.scroll .navigation-menu > li.active > a {
  2004. color: #2f55d4;
  2005. }
  2006. #topnav.scroll .navigation-menu > li:hover > .menu-arrow, #topnav.scroll .navigation-menu > li.active > .menu-arrow {
  2007. border-color: #2f55d4;
  2008. }
  2009. #topnav.defaultscroll.dark-menubar .logo {
  2010. line-height: 70px;
  2011. }
  2012. #topnav.defaultscroll.scroll .logo {
  2013. line-height: 62px;
  2014. }
  2015. #topnav.defaultscroll.scroll.dark-menubar .logo {
  2016. line-height: 62px;
  2017. }
  2018. #topnav.nav-sticky {
  2019. background: #ffffff;
  2020. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  2021. }
  2022. #topnav.nav-sticky .navigation-menu.nav-light > li > a {
  2023. color: #3c4858;
  2024. }
  2025. #topnav.nav-sticky .navigation-menu.nav-light > li.active > a {
  2026. color: #2f55d4 !important;
  2027. }
  2028. #topnav.nav-sticky .navigation-menu.nav-light > li:hover > .menu-arrow, #topnav.nav-sticky .navigation-menu.nav-light > li.active > .menu-arrow {
  2029. border-color: #2f55d4 !important;
  2030. }
  2031. #topnav.nav-sticky .navigation-menu.nav-light > li:hover > a, #topnav.nav-sticky .navigation-menu.nav-light > li.active > a {
  2032. color: #2f55d4 !important;
  2033. }
  2034. #topnav.nav-sticky .navigation-menu.nav-light .has-submenu .menu-arrow {
  2035. border-color: #3c4858;
  2036. }
  2037. #topnav.nav-sticky.tagline-height {
  2038. top: 0 !important;
  2039. }
  2040. #topnav.nav-sticky .buy-button .login-btn-primary {
  2041. display: inline-block;
  2042. }
  2043. #topnav.nav-sticky .buy-button .login-btn-light {
  2044. display: none;
  2045. }
  2046. #topnav.nav-sticky .logo .l-dark {
  2047. display: inline-block;
  2048. }
  2049. #topnav.nav-sticky .logo .l-light {
  2050. display: none;
  2051. }
  2052. .logo {
  2053. font-weight: 700;
  2054. font-size: 24px;
  2055. margin-right: 15px;
  2056. padding: 0 0 6px;
  2057. letter-spacing: 1px;
  2058. line-height: 68px;
  2059. }
  2060. @media (min-width: 1025px) {
  2061. #topnav .navigation-menu > li .submenu.megamenu {
  2062. width: 1116px !important;
  2063. }
  2064. }
  2065. @media screen and (max-width: 1024px) and (min-width: 992px) {
  2066. #topnav .navigation-menu > li .submenu.megamenu {
  2067. width: 936px !important;
  2068. }
  2069. }
  2070. @media (min-width: 992px) {
  2071. #topnav .navigation-menu {
  2072. display: flex;
  2073. flex-wrap: wrap;
  2074. justify-content: center;
  2075. }
  2076. #topnav .navigation-menu > .has-submenu:hover .menu-arrow {
  2077. top: 33px !important;
  2078. }
  2079. #topnav .navigation-menu > .has-submenu.active .menu-arrow {
  2080. top: 30px;
  2081. }
  2082. #topnav .navigation-menu > li .submenu {
  2083. position: absolute;
  2084. top: 100%;
  2085. left: 0;
  2086. z-index: 1000;
  2087. padding: 15px 0;
  2088. list-style: none;
  2089. min-width: 180px;
  2090. visibility: hidden;
  2091. opacity: 0;
  2092. margin-top: 10px;
  2093. transition: all .2s ease;
  2094. border-radius: 6px;
  2095. background-color: #ffffff;
  2096. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  2097. }
  2098. #topnav .navigation-menu > li .submenu li {
  2099. position: relative;
  2100. }
  2101. #topnav .navigation-menu > li .submenu li a {
  2102. display: block;
  2103. padding: 10px 20px;
  2104. clear: both;
  2105. white-space: nowrap;
  2106. font-size: 11px;
  2107. text-transform: uppercase;
  2108. letter-spacing: 0.04em;
  2109. font-weight: 700;
  2110. color: #3c4858 !important;
  2111. transition: all 0.3s;
  2112. }
  2113. #topnav .navigation-menu > li .submenu li a:hover {
  2114. color: #2f55d4 !important;
  2115. }
  2116. #topnav .navigation-menu > li .submenu li ul {
  2117. list-style: none;
  2118. padding-left: 0;
  2119. margin: 0;
  2120. }
  2121. #topnav .navigation-menu > li .submenu.megamenu {
  2122. white-space: nowrap;
  2123. left: 50%;
  2124. transform: translateX(-50%);
  2125. position: fixed;
  2126. top: auto;
  2127. display: flex;
  2128. }
  2129. #topnav .navigation-menu > li .submenu.megamenu > li {
  2130. overflow: hidden;
  2131. vertical-align: top;
  2132. width: 20%;
  2133. }
  2134. #topnav .navigation-menu > li .submenu.megamenu > li .submenu {
  2135. left: 100%;
  2136. top: 0;
  2137. margin-left: 10px;
  2138. margin-top: -1px;
  2139. }
  2140. #topnav .navigation-menu > li .submenu > li .submenu {
  2141. left: 101%;
  2142. top: 0;
  2143. margin-left: 10px;
  2144. margin-top: -1px;
  2145. }
  2146. #topnav .navigation-menu > li > a {
  2147. padding-top: 25px;
  2148. padding-bottom: 25px;
  2149. min-height: 62px;
  2150. }
  2151. #topnav .navigation-menu > li:hover > .menu-arrow {
  2152. border-color: #2f55d4;
  2153. }
  2154. #topnav .navigation-menu > li:hover > a,
  2155. #topnav .navigation-menu > li.active > a {
  2156. color: #2f55d4 !important;
  2157. }
  2158. #topnav .navigation-menu > li.last-elements .submenu {
  2159. left: auto;
  2160. right: 0;
  2161. }
  2162. #topnav .navigation-menu > li.last-elements .submenu:before {
  2163. left: auto;
  2164. right: 10px;
  2165. }
  2166. #topnav .navigation-menu > li.last-elements .submenu > li.has-submenu .submenu {
  2167. left: auto;
  2168. right: 100%;
  2169. margin-left: 0;
  2170. margin-right: 10px;
  2171. }
  2172. #topnav .navigation-menu.nav-light > li > a {
  2173. color: rgba(255, 255, 255, 0.5);
  2174. }
  2175. #topnav .navigation-menu.nav-light > li.active > a {
  2176. color: #ffffff !important;
  2177. }
  2178. #topnav .navigation-menu.nav-light > li:hover > .menu-arrow {
  2179. border-color: #ffffff !important;
  2180. }
  2181. #topnav .navigation-menu.nav-light > li:hover > a {
  2182. color: #ffffff !important;
  2183. }
  2184. #topnav .navigation-menu.nav-light .has-submenu .menu-arrow {
  2185. border-color: rgba(255, 255, 255, 0.5);
  2186. }
  2187. #topnav .navigation-menu.nav-light .has-submenu.active .menu-arrow {
  2188. border-color: #ffffff !important;
  2189. }
  2190. #topnav .navigation-menu.nav-right {
  2191. justify-content: flex-end !important;
  2192. }
  2193. #topnav .navigation-menu.nav-left {
  2194. justify-content: flex-start !important;
  2195. }
  2196. #topnav .navigation-menu.nav-left > li.last-elements .submenu {
  2197. left: 0 !important;
  2198. right: auto !important;
  2199. }
  2200. #topnav .navigation-menu.nav-left > li.last-elements .submenu:before {
  2201. left: 45px !important;
  2202. right: auto !important;
  2203. }
  2204. #topnav .buy-button {
  2205. padding-left: 15px;
  2206. margin-left: 15px;
  2207. }
  2208. #topnav .navbar-toggle {
  2209. display: none;
  2210. }
  2211. #topnav #navigation {
  2212. display: block !important;
  2213. }
  2214. #topnav.scroll {
  2215. top: 0;
  2216. }
  2217. #topnav.scroll .navigation-menu > li > a {
  2218. padding-top: 20px;
  2219. padding-bottom: 20px;
  2220. }
  2221. #topnav.scroll-active .navigation-menu > li > a {
  2222. padding-top: 25px;
  2223. padding-bottom: 25px;
  2224. }
  2225. }
  2226. @media (max-width: 991px) {
  2227. #topnav {
  2228. background-color: #ffffff;
  2229. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  2230. min-height: 74px;
  2231. }
  2232. #topnav .logo .l-dark {
  2233. display: inline-block !important;
  2234. }
  2235. #topnav .logo .l-light {
  2236. display: none !important;
  2237. }
  2238. #topnav .container {
  2239. width: auto;
  2240. }
  2241. #topnav #navigation {
  2242. max-height: 400px;
  2243. }
  2244. #topnav .navigation-menu {
  2245. float: none;
  2246. }
  2247. #topnav .navigation-menu > li {
  2248. float: none;
  2249. }
  2250. #topnav .navigation-menu > li .submenu {
  2251. display: none;
  2252. list-style: none;
  2253. padding-left: 20px;
  2254. margin: 0;
  2255. }
  2256. #topnav .navigation-menu > li .submenu li a {
  2257. display: block;
  2258. position: relative;
  2259. padding: 7px 15px;
  2260. text-transform: uppercase;
  2261. font-size: 11px;
  2262. letter-spacing: 0.04em;
  2263. font-weight: 700;
  2264. color: #3c4858 !important;
  2265. transition: all 0.3s;
  2266. }
  2267. #topnav .navigation-menu > li .submenu.megamenu li .megamenu-head {
  2268. padding: 7px 15px;
  2269. }
  2270. #topnav .navigation-menu > li .submenu.open {
  2271. display: block;
  2272. }
  2273. #topnav .navigation-menu > li .submenu .submenu {
  2274. display: none;
  2275. list-style: none;
  2276. }
  2277. #topnav .navigation-menu > li .submenu .submenu.open {
  2278. display: block;
  2279. }
  2280. #topnav .navigation-menu > li .submenu.megamenu > li > ul {
  2281. list-style: none;
  2282. padding-left: 0;
  2283. }
  2284. #topnav .navigation-menu > li .submenu.megamenu > li > ul > li > span {
  2285. display: block;
  2286. position: relative;
  2287. padding: 10px 15px;
  2288. text-transform: uppercase;
  2289. font-size: 12px;
  2290. letter-spacing: 2px;
  2291. color: #8492a6;
  2292. }
  2293. #topnav .navigation-menu > li > a {
  2294. color: #3c4858;
  2295. padding: 10px 20px;
  2296. }
  2297. #topnav .navigation-menu > li > a:after {
  2298. position: absolute;
  2299. right: 15px;
  2300. }
  2301. #topnav .navigation-menu > li > a:hover,
  2302. #topnav .navigation-menu > li .submenu li a:hover,
  2303. #topnav .navigation-menu > li.has-submenu.open > a {
  2304. color: #2f55d4;
  2305. }
  2306. #topnav .menu-extras .menu-item {
  2307. border-color: #8492a6;
  2308. }
  2309. #topnav .navbar-header {
  2310. float: left;
  2311. }
  2312. #topnav .buy-button .login-btn-primary {
  2313. display: inline-block !important;
  2314. }
  2315. #topnav .buy-button .login-btn-light {
  2316. display: none;
  2317. }
  2318. #topnav .has-submenu .submenu .submenu-arrow {
  2319. transform: rotate(45deg);
  2320. position: absolute;
  2321. right: 20px;
  2322. top: 12px;
  2323. }
  2324. #topnav .has-submenu.active a {
  2325. color: #2f55d4;
  2326. }
  2327. #navigation {
  2328. position: absolute;
  2329. top: 74px;
  2330. left: 0;
  2331. width: 100%;
  2332. display: none;
  2333. height: auto;
  2334. padding-bottom: 0;
  2335. overflow: auto;
  2336. border-top: 1px solid #f1f3f9;
  2337. border-bottom: 1px solid #f1f3f9;
  2338. background-color: #ffffff;
  2339. }
  2340. #navigation.open {
  2341. display: block;
  2342. overflow-y: auto;
  2343. }
  2344. }
  2345. @media (max-width: 768px) {
  2346. #topnav .navigation-menu .has-submenu .menu-arrow {
  2347. right: 8px;
  2348. top: 16px;
  2349. }
  2350. }
  2351. @media (min-width: 768px) {
  2352. #topnav .navigation-menu > li.has-submenu:hover > .submenu {
  2353. visibility: visible;
  2354. opacity: 1;
  2355. margin-top: 0;
  2356. }
  2357. #topnav .navigation-menu > li.has-submenu:hover > .submenu > li.has-submenu:hover > .submenu {
  2358. visibility: visible;
  2359. opacity: 1;
  2360. margin-left: 0;
  2361. margin-right: 0;
  2362. }
  2363. #topnav .navigation-menu > li.has-submenu:hover > .submenu > li.has-submenu:hover > .submenu > li:hover > .submenu {
  2364. visibility: visible;
  2365. opacity: 1;
  2366. margin-left: 0;
  2367. margin-right: 0;
  2368. }
  2369. .navbar-toggle {
  2370. display: block;
  2371. }
  2372. }
  2373. @media (max-width: 425px) {
  2374. #topnav .buy-menu-btn {
  2375. display: block !important;
  2376. margin: 0 10px;
  2377. padding: 10px 20px;
  2378. }
  2379. #topnav .buy-menu-btn .dropdown .dropdown-menu.show {
  2380. transform: translate3d(0px, -54px, 0px) !important;
  2381. }
  2382. }
  2383. .tagline {
  2384. position: absolute;
  2385. width: 100%;
  2386. z-index: 99;
  2387. font-size: 14px;
  2388. padding: 13px 0;
  2389. }
  2390. @media screen and (max-width: 575px) {
  2391. .tagline {
  2392. display: none;
  2393. }
  2394. }
  2395. @media screen and (max-width: 575px) {
  2396. .tagline-height {
  2397. top: 0px !important;
  2398. }
  2399. }
  2400. @media (min-width: 576px) {
  2401. .tagline-height {
  2402. top: 47px !important;
  2403. }
  2404. }
  2405. .sidebar-nav {
  2406. padding: 15px 0;
  2407. }
  2408. .sidebar-nav > .navbar-item {
  2409. padding: 3px 15px;
  2410. }
  2411. .sidebar-nav > .navbar-item .navbar-link {
  2412. color: #3c4858 !important;
  2413. font-size: 15px;
  2414. font-weight: 600;
  2415. }
  2416. .sidebar-nav > .navbar-item .navbar-link .navbar-icon {
  2417. font-size: 18px;
  2418. margin-right: 6px;
  2419. }
  2420. #navmenu-nav li.active a {
  2421. color: #2f55d4;
  2422. }
  2423. #navmenu-nav li.account-menu.active .navbar-link, #navmenu-nav li.account-menu:hover .navbar-link {
  2424. color: #ffffff !important;
  2425. background-color: #2f55d4 !important;
  2426. }
  2427. /*********************************/
  2428. /* Home & Hero */
  2429. /*===============================*/
  2430. .bg-home {
  2431. height: 100vh;
  2432. background-size: cover;
  2433. align-self: center;
  2434. position: relative;
  2435. background-position: center center;
  2436. }
  2437. .bg-home-75vh {
  2438. height: 75vh !important;
  2439. background-size: cover;
  2440. align-self: center;
  2441. position: relative;
  2442. background-position: center center;
  2443. }
  2444. @media (max-width: 767px) {
  2445. .bg-home-75vh {
  2446. height: 80vh !important;
  2447. }
  2448. }
  2449. .bg-half-260 {
  2450. padding: 260px 0;
  2451. background-size: cover;
  2452. align-self: center;
  2453. position: relative;
  2454. background-position: center center;
  2455. }
  2456. .bg-half-170 {
  2457. padding: 170px 0;
  2458. background-size: cover;
  2459. align-self: center;
  2460. position: relative;
  2461. background-position: center center;
  2462. }
  2463. .bg-half {
  2464. padding: 200px 0 100px;
  2465. background-size: cover;
  2466. align-self: center;
  2467. position: relative;
  2468. background-position: center center;
  2469. }
  2470. @media (max-width: 768px) {
  2471. .bg-half {
  2472. padding: 160px 0 60px;
  2473. }
  2474. }
  2475. .bg-auth-home {
  2476. padding: 142px 0;
  2477. background-size: cover;
  2478. align-self: center;
  2479. position: relative;
  2480. background-position: center center;
  2481. }
  2482. .bg-circle-gradiant {
  2483. background: radial-gradient(circle at 50% 50%, rgba(47, 85, 212, 0.1) 0%, rgba(47, 85, 212, 0.1) 33.333%, rgba(47, 85, 212, 0.3) 33.333%, rgba(47, 85, 212, 0.3) 66.666%, rgba(47, 85, 212, 0.5) 66.666%, rgba(47, 85, 212, 0.5) 99.999%);
  2484. }
  2485. .it-home {
  2486. animation: slideleft 20000s infinite linear;
  2487. }
  2488. @keyframes slideleft {
  2489. from {
  2490. background-position: 0%;
  2491. }
  2492. to {
  2493. background-position: 90000%;
  2494. }
  2495. }
  2496. .home-dashboard img {
  2497. position: relative;
  2498. top: 60px;
  2499. z-index: 1;
  2500. }
  2501. @media (min-width: 768px) {
  2502. .home-dashboard.onepage-hero {
  2503. overflow: hidden;
  2504. }
  2505. }
  2506. .classic-saas-image .bg-saas-shape:after {
  2507. bottom: 3rem;
  2508. left: 0;
  2509. width: 75rem;
  2510. height: 55rem;
  2511. border-radius: 20rem;
  2512. }
  2513. @media (max-width: 767px) {
  2514. .classic-saas-image .bg-saas-shape:after {
  2515. left: 10rem;
  2516. width: 30rem;
  2517. height: 30rem;
  2518. border-radius: 10rem;
  2519. }
  2520. }
  2521. @media (max-width: 768px) {
  2522. .classic-saas-image .bg-saas-shape img,
  2523. .freelance-hero .bg-shape img {
  2524. max-width: 550px;
  2525. }
  2526. }
  2527. @media (max-width: 767px) {
  2528. .classic-saas-image .bg-saas-shape img,
  2529. .freelance-hero .bg-shape img {
  2530. max-width: 100%;
  2531. height: auto;
  2532. }
  2533. }
  2534. .classic-saas-image .bg-saas-shape:after,
  2535. .freelance-hero .bg-shape:after {
  2536. opacity: 0.9;
  2537. transform: rotate(130deg);
  2538. }
  2539. @media (max-width: 767px) {
  2540. .classic-saas-image .bg-saas-shape:after,
  2541. .freelance-hero .bg-shape:after {
  2542. bottom: -5rem !important;
  2543. height: 30rem;
  2544. }
  2545. }
  2546. .freelance-hero .bg-shape:after {
  2547. bottom: 0rem;
  2548. left: 7rem;
  2549. width: 100rem;
  2550. height: 70rem;
  2551. border-radius: 6rem;
  2552. }
  2553. @media (max-width: 768px) {
  2554. .freelance-hero .bg-shape:after {
  2555. bottom: -10rem;
  2556. }
  2557. }
  2558. @media (max-width: 767px) {
  2559. .freelance-hero .bg-shape:after {
  2560. left: 15rem;
  2561. width: 40rem;
  2562. height: 30rem;
  2563. }
  2564. }
  2565. .freelance-hero .bg-shape:after {
  2566. box-shadow: 0 0 40px rgba(47, 85, 212, 0.5);
  2567. background-color: #99abea;
  2568. }
  2569. .studio-home {
  2570. padding: 7%;
  2571. }
  2572. .agency-wrapper:before {
  2573. content: "";
  2574. position: absolute;
  2575. bottom: 22rem;
  2576. right: 54rem;
  2577. width: 90rem;
  2578. height: 35rem;
  2579. border-radius: 17rem;
  2580. transform: rotate(45deg);
  2581. background-color: #f8f9fc;
  2582. z-index: -1;
  2583. }
  2584. @media (max-width: 768px) {
  2585. .agency-wrapper:before {
  2586. right: 12rem;
  2587. }
  2588. }
  2589. @media (max-width: 767px) {
  2590. .agency-wrapper:before {
  2591. right: 0;
  2592. }
  2593. }
  2594. .bg-marketing {
  2595. padding: 76px 0 120px;
  2596. background-size: cover;
  2597. align-self: center;
  2598. position: relative;
  2599. background-position: center center;
  2600. }
  2601. .home-slider .carousel-control-next,
  2602. .home-slider .carousel-control-prev {
  2603. width: 30px;
  2604. height: 30px;
  2605. top: 50%;
  2606. transform: translateY(-50%);
  2607. border-radius: 30px;
  2608. border: 1px solid #ced4da;
  2609. }
  2610. .home-slider .carousel-control-next-icon,
  2611. .home-slider .carousel-control-prev-icon {
  2612. width: 30%;
  2613. }
  2614. .home-slider .carousel-control-next {
  2615. right: 8px;
  2616. }
  2617. .home-slider .carousel-control-prev {
  2618. left: 8px;
  2619. }
  2620. .carousel-indicators [data-bs-target] {
  2621. width: 10px;
  2622. height: 10px;
  2623. border-radius: 3px;
  2624. transition: all 0.5s ease;
  2625. border: 0;
  2626. background: #2f55d4 !important;
  2627. margin: auto 4px;
  2628. }
  2629. .carousel-indicators .active {
  2630. background-color: #2f55d4 !important;
  2631. transform: rotate(45deg);
  2632. }
  2633. .bg-animation-left:after {
  2634. content: "";
  2635. position: absolute;
  2636. left: 0px;
  2637. top: 0px;
  2638. width: 70%;
  2639. height: 100%;
  2640. background: rgba(255, 255, 255, 0.85);
  2641. clip-path: polygon(0 0, 90% 0, 70% 100%, 0% 100%);
  2642. }
  2643. @media (max-width: 767px) {
  2644. .bg-animation-left:after {
  2645. width: 100%;
  2646. clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  2647. }
  2648. }
  2649. .bg-animation-left.dark-left:after {
  2650. background: rgba(60, 72, 88, 0.6);
  2651. }
  2652. .bg-animation-left.crypto-home:after {
  2653. background: #2f55d4;
  2654. width: 80%;
  2655. clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
  2656. }
  2657. .bg-animation-left.task-management-home:after {
  2658. background: url("../images/task/bg.png") #2f55d4;
  2659. width: 100%;
  2660. clip-path: circle(65% at 40% 25%);
  2661. }
  2662. .bg-invoice {
  2663. padding: 100px 0;
  2664. background-size: cover;
  2665. align-self: center;
  2666. position: relative;
  2667. background-position: center center;
  2668. }
  2669. .classic-app-image .bg-app-shape:after {
  2670. bottom: 3rem;
  2671. left: -8rem;
  2672. width: 55rem;
  2673. height: 35rem;
  2674. border-radius: 20rem;
  2675. transform: rotate(120deg);
  2676. opacity: 0.9;
  2677. }
  2678. .classic-app-image .app-images {
  2679. position: absolute;
  2680. bottom: 60px;
  2681. right: -20px;
  2682. }
  2683. .classic-app-image .bg-app-shape:after,
  2684. .classic-saas-image .bg-saas-shape:after,
  2685. .freelance-hero .bg-shape:after {
  2686. content: " ";
  2687. position: absolute;
  2688. z-index: -1;
  2689. }
  2690. .classic-app-image .bg-app-shape:after,
  2691. .classic-saas-image .bg-saas-shape:after {
  2692. box-shadow: 0 0 40px rgba(47, 85, 212, 0.5);
  2693. background-color: #2f55d4;
  2694. }
  2695. .shape-before .shape-img {
  2696. position: absolute;
  2697. top: -50px;
  2698. left: -35px;
  2699. z-index: -1;
  2700. height: auto;
  2701. overflow: hidden;
  2702. }
  2703. .swiper-slider-hero .swiper-container,
  2704. .swiper-slider-hero .swiper-slide .slide-inner {
  2705. position: absolute;
  2706. left: 0;
  2707. top: 0;
  2708. width: 100%;
  2709. height: 100%;
  2710. }
  2711. .swiper-slider-hero .swiper-container .swiper-button-prev,
  2712. .swiper-slider-hero .swiper-container .swiper-button-next {
  2713. background: transparent;
  2714. width: 35px;
  2715. height: 35px;
  2716. line-height: 35px;
  2717. margin-top: -30px;
  2718. }
  2719. .swiper-slider-hero .swiper-container .swiper-button-prev:before,
  2720. .swiper-slider-hero .swiper-container .swiper-button-next:before {
  2721. font-family: "Material Design Icons";
  2722. font-weight: 900;
  2723. color: #ffffff;
  2724. }
  2725. .swiper-slider-hero .swiper-container .swiper-button-prev:hover,
  2726. .swiper-slider-hero .swiper-container .swiper-button-next:hover {
  2727. background: #2f55d4;
  2728. border-color: #2f55d4 !important;
  2729. }
  2730. .swiper-slider-hero .swiper-container .swiper-button-prev {
  2731. left: 10px;
  2732. }
  2733. .swiper-slider-hero .swiper-container .swiper-button-prev:before {
  2734. content: "\f0141";
  2735. }
  2736. .swiper-slider-hero .swiper-container .swiper-button-next {
  2737. right: 10px;
  2738. }
  2739. .swiper-slider-hero .swiper-container .swiper-button-next:before {
  2740. content: "\f0142";
  2741. }
  2742. .swiper-slider-hero .swiper-pagination-bullet {
  2743. color: #f8f9fa;
  2744. background: transparent;
  2745. }
  2746. .swiper-slider-hero .swiper-pagination-bullet-active {
  2747. color: #ffffff;
  2748. }
  2749. .swiper-slider-hero .swiper-container-horizontal
  2750. > .swiper-pagination-bullets,
  2751. .swiper-slider-hero .swiper-pagination-custom,
  2752. .swiper-slider-hero .swiper-pagination-fraction {
  2753. bottom: 45px;
  2754. }
  2755. .swiper-slider-hero .swiper-container-horizontal
  2756. > .swiper-pagination-bullets .swiper-pagination-bullet {
  2757. margin: 0 13px;
  2758. }
  2759. @media (min-width: 769px) {
  2760. .bg-studio:after {
  2761. content: "";
  2762. position: absolute;
  2763. right: 0px;
  2764. top: 0px;
  2765. width: 50%;
  2766. height: 100%;
  2767. background: #ffffff none repeat scroll 0 0;
  2768. z-index: 2;
  2769. }
  2770. }
  2771. @media (max-width: 767px) {
  2772. .bg-home, .bg-half-170, .bg-half-260, .bg-marketing, .swiper-slider-hero .swiper-container .swiper-slide {
  2773. padding: 150px 0;
  2774. height: auto;
  2775. }
  2776. }
  2777. /*********************************/
  2778. /* Features & Services */
  2779. /*===============================*/
  2780. .features .icon {
  2781. background: rgba(47, 85, 212, 0.1);
  2782. }
  2783. .features .image:before {
  2784. content: "";
  2785. position: absolute;
  2786. bottom: 5px;
  2787. left: 5px;
  2788. width: 64px;
  2789. height: 64px;
  2790. border-radius: 6px;
  2791. transform: rotate(33.75deg);
  2792. background: linear-gradient(45deg, transparent, rgba(47, 85, 212, 0.1));
  2793. }
  2794. .features.feature-clean .icons i {
  2795. height: 65px;
  2796. width: 65px;
  2797. line-height: 65px;
  2798. background-color: rgba(47, 85, 212, 0.1);
  2799. }
  2800. .features.feature-clean .title:hover {
  2801. color: #2f55d4 !important;
  2802. }
  2803. .features .ride-image {
  2804. transform: rotate(-45deg);
  2805. }
  2806. .features .ride-image img {
  2807. border-radius: 100% 100% 100% 0;
  2808. }
  2809. .features:hover .image:before {
  2810. background: rgba(47, 85, 212, 0.1);
  2811. animation: spinner-border 5s linear infinite !important;
  2812. }
  2813. .features.fea-primary {
  2814. transition: all 0.5s ease;
  2815. }
  2816. .features.fea-primary .content .title {
  2817. transition: all 0.5s ease;
  2818. }
  2819. .features.fea-primary .content .title:hover {
  2820. color: #2f55d4 !important;
  2821. }
  2822. .features.fea-primary .big-icon {
  2823. position: absolute;
  2824. top: 50%;
  2825. transform: translateY(-50%);
  2826. left: 0;
  2827. right: 0;
  2828. opacity: 0.015;
  2829. font-size: 180px;
  2830. }
  2831. .features.fea-primary:hover {
  2832. box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
  2833. background-color: #2f55d4 !important;
  2834. color: #ffffff !important;
  2835. }
  2836. .features.fea-primary:hover .icon2,
  2837. .features.fea-primary:hover .para {
  2838. color: rgba(255, 255, 255, 0.5) !important;
  2839. }
  2840. .features.fea-primary:hover .content,
  2841. .features.fea-primary:hover .icon2 {
  2842. z-index: 2;
  2843. }
  2844. .features.fea-primary:hover .big-icon {
  2845. opacity: 0.05;
  2846. }
  2847. .features .title,
  2848. .key-feature .title {
  2849. font-size: 18px !important;
  2850. }
  2851. .features .icon,
  2852. .key-feature .icon {
  2853. height: 45px;
  2854. width: 45px;
  2855. line-height: 45px;
  2856. }
  2857. .key-feature {
  2858. transition: all 0.3s ease;
  2859. }
  2860. .key-feature .icon {
  2861. background: linear-gradient(45deg, transparent, rgba(47, 85, 212, 0.15));
  2862. }
  2863. .key-feature:hover {
  2864. transform: scale(1.05);
  2865. box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
  2866. }
  2867. .work-process {
  2868. transition: all 0.5s ease;
  2869. }
  2870. .work-process .step, .work-process .step-icon {
  2871. opacity: 0.06;
  2872. }
  2873. .work-process a {
  2874. font-size: 15px;
  2875. }
  2876. .work-process.process-arrow:after {
  2877. content: '';
  2878. position: absolute;
  2879. width: 60%;
  2880. height: 40px;
  2881. top: 30px;
  2882. left: 80%;
  2883. background: url("../images/process.png") center center no-repeat;
  2884. z-index: 1;
  2885. }
  2886. @media (max-width: 767px) {
  2887. .work-process.process-arrow:after {
  2888. display: none;
  2889. }
  2890. }
  2891. .work-process.process-arrow:hover {
  2892. transform: none !important;
  2893. }
  2894. .work-process:hover {
  2895. transform: translateY(-10px);
  2896. }
  2897. .work-process.d-none-arrow:hover {
  2898. transform: none !important;
  2899. }
  2900. .course-feature {
  2901. transition: all 0.5s ease;
  2902. }
  2903. .course-feature .full-img {
  2904. position: absolute;
  2905. bottom: 50%;
  2906. transform: translateY(50%);
  2907. left: 0;
  2908. right: 0;
  2909. opacity: 0;
  2910. margin: 0 auto;
  2911. z-index: -2;
  2912. transition: all 0.5s ease;
  2913. font-size: 250px;
  2914. }
  2915. .course-feature:hover {
  2916. transform: translateY(-10px);
  2917. }
  2918. .course-feature:hover .full-img {
  2919. opacity: 0.05;
  2920. }
  2921. .features-absolute {
  2922. position: relative;
  2923. z-index: 2;
  2924. transition: all 0.5s ease;
  2925. }
  2926. .features-absolute {
  2927. margin: -200px 0 0px;
  2928. }
  2929. @media (max-width: 768px) {
  2930. .features-absolute {
  2931. margin: -140px 0 0;
  2932. }
  2933. }
  2934. .features-absolute.blog-search {
  2935. margin: -120px 0 0px;
  2936. }
  2937. @media (max-width: 768px) {
  2938. .features-absolute.blog-search {
  2939. margin: -90px 0 0px;
  2940. }
  2941. }
  2942. .categories {
  2943. transition: all 0.5s ease;
  2944. }
  2945. .categories:hover {
  2946. transform: translateY(-10px);
  2947. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  2948. }
  2949. .categories a:hover {
  2950. color: #2f55d4 !important;
  2951. }
  2952. .app-feature-shape-right:after,
  2953. .app-feature-shape-left:after {
  2954. bottom: 0rem;
  2955. width: 30rem;
  2956. height: 40rem;
  2957. border-radius: 10rem;
  2958. }
  2959. .app-feature-shape-right:after {
  2960. left: 10rem;
  2961. transform: rotate(150deg);
  2962. }
  2963. @media (max-width: 768px) {
  2964. .app-feature-shape-right:after {
  2965. left: 0;
  2966. }
  2967. }
  2968. .app-feature-shape-left:after {
  2969. right: 10rem;
  2970. transform: rotate(210deg);
  2971. }
  2972. @media (max-width: 768px) {
  2973. .app-feature-shape-left:after {
  2974. right: 0;
  2975. }
  2976. }
  2977. .app-subscribe {
  2978. position: absolute;
  2979. top: -200px;
  2980. }
  2981. @media (max-width: 767px) {
  2982. .app-subscribe {
  2983. position: relative;
  2984. top: 0;
  2985. }
  2986. }
  2987. .saas-feature-shape-left:after,
  2988. .saas-feature-shape-right:after {
  2989. bottom: -3rem;
  2990. width: 35rem;
  2991. height: 35rem;
  2992. border-radius: 15rem;
  2993. transform: rotate(145deg);
  2994. }
  2995. @media (max-width: 767px) {
  2996. .saas-feature-shape-left:after,
  2997. .saas-feature-shape-right:after {
  2998. bottom: -1rem;
  2999. width: 25rem;
  3000. height: 25rem;
  3001. border-radius: 10rem;
  3002. }
  3003. }
  3004. .saas-feature-shape-left:after {
  3005. left: -10rem;
  3006. }
  3007. .saas-feature-shape-right:after {
  3008. right: -10rem;
  3009. }
  3010. .app-feature-shape-right:after,
  3011. .app-feature-shape-left:after,
  3012. .saas-feature-shape-left:after,
  3013. .saas-feature-shape-right:after,
  3014. .social-feature-left:after,
  3015. .social-feature-right:after {
  3016. background: rgba(47, 85, 212, 0.1);
  3017. box-shadow: 0 0 40px rgba(47, 85, 212, 0.1);
  3018. }
  3019. .app-feature-shape-right:after,
  3020. .app-feature-shape-left:after,
  3021. .saas-feature-shape-left:after,
  3022. .saas-feature-shape-right:after,
  3023. .social-feature-left:after,
  3024. .social-feature-right:after {
  3025. content: "";
  3026. position: absolute;
  3027. z-index: -1;
  3028. }
  3029. .social-feature-left:after,
  3030. .social-feature-right:after {
  3031. width: 450px;
  3032. height: 520px;
  3033. border-radius: 30px;
  3034. bottom: -75px;
  3035. }
  3036. @media (max-width: 768px) {
  3037. .social-feature-left:after,
  3038. .social-feature-right:after {
  3039. width: 300px;
  3040. height: 400px;
  3041. bottom: -65px;
  3042. }
  3043. }
  3044. @media (max-width: 575px) {
  3045. .social-feature-left:after,
  3046. .social-feature-right:after {
  3047. bottom: -35px;
  3048. }
  3049. }
  3050. .social-feature-left:after {
  3051. right: -200px;
  3052. }
  3053. @media (max-width: 575px) {
  3054. .social-feature-left:after {
  3055. right: 60px;
  3056. }
  3057. }
  3058. .social-feature-right:after {
  3059. left: -200px;
  3060. }
  3061. @media (max-width: 575px) {
  3062. .social-feature-right:after {
  3063. left: 60px;
  3064. }
  3065. }
  3066. .explore-feature {
  3067. transition: all 0.5s ease;
  3068. }
  3069. .explore-feature .icon {
  3070. height: 80px;
  3071. width: 80px;
  3072. line-height: 80px;
  3073. transition: all 0.5s ease;
  3074. }
  3075. .explore-feature:hover {
  3076. box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15) !important;
  3077. }
  3078. .explore-feature:hover .icon,
  3079. .explore-feature:hover .title {
  3080. color: #2f55d4 !important;
  3081. }
  3082. .construction-img {
  3083. position: absolute;
  3084. bottom: 0;
  3085. right: 20px;
  3086. }
  3087. /*********************************/
  3088. /* Testimonial */
  3089. /*===============================*/
  3090. .client-testi {
  3091. cursor: e-resize;
  3092. }
  3093. .client-testi .client-image {
  3094. margin-right: 16px;
  3095. }
  3096. .client-testi .content:before {
  3097. content: "";
  3098. position: absolute;
  3099. top: 30px;
  3100. left: 0;
  3101. margin-left: 13px;
  3102. box-sizing: border-box;
  3103. border: 8px solid #3c4858;
  3104. border-color: transparent #ffffff #ffffff transparent;
  3105. transform-origin: 0 0;
  3106. transform: rotate(135deg);
  3107. box-shadow: 2px 2px 2px -1px rgba(60, 72, 88, 0.15);
  3108. }
  3109. .tns-nav {
  3110. text-align: center;
  3111. margin-top: 10px;
  3112. }
  3113. .tns-nav button {
  3114. border-radius: 3px;
  3115. background: rgba(47, 85, 212, 0.5) !important;
  3116. transition: all 0.5s ease;
  3117. border: none;
  3118. margin: 0 5px;
  3119. padding: 5px;
  3120. }
  3121. .tns-nav button.tns-nav-active {
  3122. background: #2f55d4 !important;
  3123. transform: rotate(45deg);
  3124. }
  3125. .tns-controls button[data-controls="prev"],
  3126. .tns-controls button[data-controls="next"] {
  3127. position: absolute;
  3128. top: 50%;
  3129. transform: translateY(-50%);
  3130. font-size: 16px;
  3131. width: 32px;
  3132. height: 32px;
  3133. border-radius: 50%;
  3134. background: #ffffff;
  3135. color: #3c4858;
  3136. border: none;
  3137. transition: all 0.5s ease;
  3138. z-index: 1;
  3139. box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
  3140. }
  3141. .tns-controls button[data-controls="prev"]:hover,
  3142. .tns-controls button[data-controls="next"]:hover {
  3143. background: #2f55d4;
  3144. color: #ffffff;
  3145. }
  3146. .tns-controls button[data-controls="prev"] {
  3147. left: 0;
  3148. }
  3149. .tns-controls button[data-controls="next"] {
  3150. right: 0;
  3151. }
  3152. .slick-slider {
  3153. overflow-x: hidden !important;
  3154. cursor: pointer;
  3155. }
  3156. .tiny-timeline {
  3157. position: relative;
  3158. width: 100%;
  3159. margin: 0 auto;
  3160. }
  3161. .tiny-timeline:before {
  3162. content: "";
  3163. position: absolute;
  3164. width: 100%;
  3165. top: 17px;
  3166. left: 0;
  3167. height: 2px;
  3168. background: #2f55d4;
  3169. }
  3170. .tiny-timeline .item-box {
  3171. margin: 70px 15px 20px;
  3172. }
  3173. .tiny-timeline .item-box:before, .tiny-timeline .item-box:after {
  3174. content: "";
  3175. position: absolute;
  3176. left: 50%;
  3177. background: #2f55d4;
  3178. }
  3179. .tiny-timeline .item-box:before {
  3180. width: 2px;
  3181. height: 46px;
  3182. top: -46px;
  3183. transform: translateX(-50%);
  3184. }
  3185. .tiny-timeline .item-box:after {
  3186. width: 13px;
  3187. height: 13px;
  3188. top: -59px;
  3189. border-radius: 3px;
  3190. transform: translateX(-50%) rotate(45deg);
  3191. }
  3192. /*********************************/
  3193. /* Pricing & Plans */
  3194. /*===============================*/
  3195. .pricing-rates {
  3196. position: relative;
  3197. z-index: 1;
  3198. border-bottom: 3px solid #adb5bd !important;
  3199. transition: all 0.5s ease;
  3200. }
  3201. .pricing-rates .price {
  3202. font-weight: 400;
  3203. }
  3204. .pricing-rates.business-rate:hover {
  3205. transform: scale(1.03);
  3206. z-index: 2;
  3207. border-color: #2f55d4 !important;
  3208. box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
  3209. background-color: #ffffff !important;
  3210. }
  3211. .pricing-rates.business-rate:hover .title {
  3212. color: #2f55d4;
  3213. }
  3214. .pricing-rates.starter-plan {
  3215. transform: scale(1.05);
  3216. z-index: 2;
  3217. border-color: #2f55d4 !important;
  3218. }
  3219. @media (max-width: 767px) {
  3220. .pricing-rates.starter-plan {
  3221. transform: scale(1);
  3222. }
  3223. }
  3224. .pricing-rates.best-plan:hover {
  3225. transform: translateY(-10px);
  3226. }
  3227. .ribbon.ribbon-primary span {
  3228. background-color: #2f55d4 !important;
  3229. }
  3230. .ribbon.ribbon-primary span:before {
  3231. border-left-color: #2443ac;
  3232. border-top-color: #2443ac;
  3233. }
  3234. .ribbon.ribbon-primary span:after {
  3235. border-right-color: #2443ac;
  3236. border-top-color: #2443ac;
  3237. }
  3238. .ribbon.ribbon-secondary span {
  3239. background-color: #5a6d90 !important;
  3240. }
  3241. .ribbon.ribbon-secondary span:before {
  3242. border-left-color: #465571;
  3243. border-top-color: #465571;
  3244. }
  3245. .ribbon.ribbon-secondary span:after {
  3246. border-right-color: #465571;
  3247. border-top-color: #465571;
  3248. }
  3249. .ribbon.ribbon-success span {
  3250. background-color: #2eca8b !important;
  3251. }
  3252. .ribbon.ribbon-success span:before {
  3253. border-left-color: #25a06e;
  3254. border-top-color: #25a06e;
  3255. }
  3256. .ribbon.ribbon-success span:after {
  3257. border-right-color: #25a06e;
  3258. border-top-color: #25a06e;
  3259. }
  3260. .ribbon.ribbon-warning span {
  3261. background-color: #f17425 !important;
  3262. }
  3263. .ribbon.ribbon-warning span:before {
  3264. border-left-color: #d55b0e;
  3265. border-top-color: #d55b0e;
  3266. }
  3267. .ribbon.ribbon-warning span:after {
  3268. border-right-color: #d55b0e;
  3269. border-top-color: #d55b0e;
  3270. }
  3271. .ribbon.ribbon-info span {
  3272. background-color: #17a2b8 !important;
  3273. }
  3274. .ribbon.ribbon-info span:before {
  3275. border-left-color: #117a8b;
  3276. border-top-color: #117a8b;
  3277. }
  3278. .ribbon.ribbon-info span:after {
  3279. border-right-color: #117a8b;
  3280. border-top-color: #117a8b;
  3281. }
  3282. .ribbon.ribbon-danger span {
  3283. background-color: #e43f52 !important;
  3284. }
  3285. .ribbon.ribbon-danger span:before {
  3286. border-left-color: #d21e32;
  3287. border-top-color: #d21e32;
  3288. }
  3289. .ribbon.ribbon-danger span:after {
  3290. border-right-color: #d21e32;
  3291. border-top-color: #d21e32;
  3292. }
  3293. .ribbon.ribbon-dark span {
  3294. background-color: #3c4858 !important;
  3295. }
  3296. .ribbon.ribbon-dark span:before {
  3297. border-left-color: #272f3a;
  3298. border-top-color: #272f3a;
  3299. }
  3300. .ribbon.ribbon-dark span:after {
  3301. border-right-color: #272f3a;
  3302. border-top-color: #272f3a;
  3303. }
  3304. .ribbon.ribbon-muted span {
  3305. background-color: #8492a6 !important;
  3306. }
  3307. .ribbon.ribbon-muted span:before {
  3308. border-left-color: #68788f;
  3309. border-top-color: #68788f;
  3310. }
  3311. .ribbon.ribbon-muted span:after {
  3312. border-right-color: #68788f;
  3313. border-top-color: #68788f;
  3314. }
  3315. .ribbon.ribbon-light span {
  3316. background-color: #f8f9fc !important;
  3317. }
  3318. .ribbon.ribbon-light span:before {
  3319. border-left-color: #d4daed;
  3320. border-top-color: #d4daed;
  3321. }
  3322. .ribbon.ribbon-light span:after {
  3323. border-right-color: #d4daed;
  3324. border-top-color: #d4daed;
  3325. }
  3326. .ribbon.ribbon-blue span {
  3327. background-color: #2f55d4 !important;
  3328. }
  3329. .ribbon.ribbon-blue span:before {
  3330. border-left-color: #2443ac;
  3331. border-top-color: #2443ac;
  3332. }
  3333. .ribbon.ribbon-blue span:after {
  3334. border-right-color: #2443ac;
  3335. border-top-color: #2443ac;
  3336. }
  3337. .ribbon.ribbon-footer span {
  3338. background-color: #202942 !important;
  3339. }
  3340. .ribbon.ribbon-footer span:before {
  3341. border-left-color: #0f131f;
  3342. border-top-color: #0f131f;
  3343. }
  3344. .ribbon.ribbon-footer span:after {
  3345. border-right-color: #0f131f;
  3346. border-top-color: #0f131f;
  3347. }
  3348. .ribbon {
  3349. position: absolute;
  3350. top: -5px;
  3351. width: 75px;
  3352. height: 75px;
  3353. z-index: 2;
  3354. }
  3355. .ribbon.ribbon-right {
  3356. right: -5px;
  3357. }
  3358. .ribbon.ribbon-right span {
  3359. right: -23px;
  3360. transform: rotate(45deg);
  3361. }
  3362. .ribbon.ribbon-left {
  3363. left: -5px;
  3364. }
  3365. .ribbon.ribbon-left span {
  3366. left: -23px;
  3367. transform: rotate(-45deg);
  3368. }
  3369. .ribbon span {
  3370. position: absolute;
  3371. top: 15px;
  3372. width: 100px;
  3373. color: #ffffff;
  3374. }
  3375. .ribbon span:before, .ribbon span:after {
  3376. content: "";
  3377. position: absolute;
  3378. top: 100%;
  3379. z-index: -1;
  3380. border: 3px solid transparent;
  3381. }
  3382. .ribbon span:before {
  3383. left: 0;
  3384. }
  3385. .ribbon span:after {
  3386. right: 0;
  3387. }
  3388. .invoice-top .logo-invoice {
  3389. font-weight: 700;
  3390. font-size: 27px;
  3391. letter-spacing: 1px;
  3392. }
  3393. .crypto-chart {
  3394. position: absolute;
  3395. left: 24px;
  3396. right: 24px;
  3397. bottom: 24px;
  3398. opacity: 0.1;
  3399. z-index: 0;
  3400. }
  3401. .calculator-block {
  3402. background-color: #ffffff;
  3403. }
  3404. .calculator-block .cryptonatorwidget {
  3405. border: none !important;
  3406. padding: 0 !important;
  3407. background: #f8f9fc !important;
  3408. }
  3409. .calculator-block .cryptonatorwidget input,
  3410. .calculator-block .cryptonatorwidget select {
  3411. height: 40px !important;
  3412. line-height: 40px !important;
  3413. margin-bottom: 0;
  3414. border: none;
  3415. background-color: #f8f9fc !important;
  3416. border: none;
  3417. outline: none;
  3418. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  3419. padding: 8px 12px;
  3420. border-radius: 6px;
  3421. background-color: transparent;
  3422. color: #8492a6;
  3423. font-family: "Nunito", sans-serif !important;
  3424. }
  3425. .calculator-block .cryptonatorwidget div:last-child {
  3426. display: none;
  3427. }
  3428. .calculator-block ::-webkit-input-placeholder {
  3429. /* Chrome/Opera/Safari */
  3430. color: #8492a6;
  3431. text-transform: capitalize;
  3432. }
  3433. .calculator-block ::-moz-placeholder {
  3434. /* Firefox 19+ */
  3435. color: #8492a6;
  3436. text-transform: capitalize;
  3437. }
  3438. .calculator-block :-ms-input-placeholder {
  3439. /* IE 10+ */
  3440. color: #8492a6;
  3441. text-transform: capitalize;
  3442. }
  3443. .calculator-block :-moz-placeholder {
  3444. /* Firefox 18- */
  3445. color: #8492a6;
  3446. text-transform: capitalize;
  3447. }
  3448. .apexcharts-tooltip {
  3449. background: #161c2d !important;
  3450. color: #f8f9fc;
  3451. }
  3452. .switcher-pricing .toggle, .switcher-pricing .toggler {
  3453. display: inline-block;
  3454. vertical-align: middle;
  3455. }
  3456. .switcher-pricing .toggler {
  3457. transition: all 0.5s ease;
  3458. font-weight: bold;
  3459. }
  3460. .switcher-pricing .toggler--is-active {
  3461. color: #2f55d4 !important;
  3462. }
  3463. .switcher-pricing .form-switch .form-check-input {
  3464. width: 48px;
  3465. height: 24px;
  3466. margin-top: 0;
  3467. }
  3468. .hide {
  3469. display: none;
  3470. }
  3471. /*********************************/
  3472. /* CTA */
  3473. /*===============================*/
  3474. .bg-cta {
  3475. padding: 150px 0;
  3476. }
  3477. .play-btn {
  3478. height: 78px;
  3479. width: 78px;
  3480. font-size: 30px;
  3481. line-height: 76px;
  3482. border-radius: 50%;
  3483. display: inline-block;
  3484. color: #ffffff;
  3485. }
  3486. .play-icon {
  3487. position: absolute;
  3488. bottom: 50%;
  3489. transform: translateY(50%);
  3490. right: 0;
  3491. left: 0;
  3492. text-align: center;
  3493. }
  3494. .play-icon i {
  3495. height: 75px;
  3496. -webkit-text-stroke: 2px #2f55d4;
  3497. -webkit-text-fill-color: transparent;
  3498. width: 75px;
  3499. font-size: 25px;
  3500. line-height: 75px;
  3501. display: inline-block;
  3502. }
  3503. .play-icon i:hover {
  3504. -webkit-text-stroke: 2px #2f55d4;
  3505. -webkit-text-fill-color: #2f55d4;
  3506. }
  3507. @media (max-width: 767px) {
  3508. iframe {
  3509. width: auto !important;
  3510. }
  3511. }
  3512. /*********************************/
  3513. /* Blog & News */
  3514. /*===============================*/
  3515. .blog {
  3516. transition: all 0.3s ease;
  3517. }
  3518. .blog .content h4 {
  3519. line-height: 1.2;
  3520. }
  3521. .blog .content .title {
  3522. transition: all 0.5s ease;
  3523. }
  3524. .blog .content .title:hover {
  3525. color: #2f55d4 !important;
  3526. }
  3527. .blog .content .post-meta .like, .blog .content .post-meta .comments, .blog .content .post-meta .readmore {
  3528. font-size: 15px;
  3529. transition: all 0.5s ease;
  3530. }
  3531. .blog .content .post-meta .like:hover {
  3532. color: #e43f52 !important;
  3533. }
  3534. .blog .content .post-meta .comments:hover {
  3535. color: #2eca8b !important;
  3536. }
  3537. .blog .content .post-meta .readmore:hover {
  3538. color: #2f55d4 !important;
  3539. }
  3540. .blog .author,
  3541. .blog .teacher,
  3542. .blog .course-fee {
  3543. position: absolute;
  3544. z-index: 1;
  3545. opacity: 0;
  3546. transition: all 0.5s ease;
  3547. }
  3548. .blog .author {
  3549. top: 5%;
  3550. left: 5%;
  3551. }
  3552. .blog .teacher {
  3553. bottom: 6%;
  3554. left: 5%;
  3555. }
  3556. .blog .course-fee {
  3557. bottom: -5%;
  3558. right: 5%;
  3559. width: 50px;
  3560. height: 50px;
  3561. }
  3562. .blog .course-fee .fee {
  3563. line-height: 50px;
  3564. }
  3565. .blog.blog-detail:hover {
  3566. transform: translateY(0px) !important;
  3567. }
  3568. .blog:hover {
  3569. transform: translateY(-10px);
  3570. }
  3571. .blog:hover .overlay {
  3572. opacity: 0.4;
  3573. }
  3574. .blog:hover .author,
  3575. .blog:hover .teacher,
  3576. .blog:hover .course-fee {
  3577. opacity: 1;
  3578. }
  3579. .blog .blog-list-meta {
  3580. position: absolute;
  3581. bottom: 24px;
  3582. }
  3583. .sidebar .widget .blog-categories li {
  3584. padding-bottom: 10px;
  3585. }
  3586. .sidebar .widget .blog-categories li:last-child {
  3587. padding-bottom: 0;
  3588. }
  3589. .sidebar .widget .blog-categories li a, .sidebar .widget .blog-categories li span {
  3590. font-size: 15px;
  3591. }
  3592. .sidebar .widget .blog-categories li a {
  3593. color: #3c4858;
  3594. transition: all 0.5s ease;
  3595. }
  3596. .sidebar .widget .blog-categories li a:hover {
  3597. color: #2f55d4;
  3598. }
  3599. .sidebar .widget .post-recent {
  3600. padding-bottom: 15px;
  3601. }
  3602. .sidebar .widget .post-recent:last-child {
  3603. padding-bottom: 0;
  3604. }
  3605. .sidebar .widget .post-recent .post-recent-thumb {
  3606. width: 25%;
  3607. }
  3608. .sidebar .widget .post-recent .post-recent-content {
  3609. width: 75%;
  3610. padding-left: 10px;
  3611. }
  3612. .sidebar .widget .post-recent .post-recent-content a {
  3613. display: block;
  3614. color: #3c4858;
  3615. font-size: 15px;
  3616. transition: all 0.5s ease;
  3617. }
  3618. .sidebar .widget .post-recent .post-recent-content a:hover {
  3619. color: #2f55d4;
  3620. }
  3621. .sidebar .widget .post-recent .post-recent-content span {
  3622. font-size: 13px;
  3623. }
  3624. .tagcloud > a {
  3625. background: #e9ecef;
  3626. color: #3c4858;
  3627. display: inline-block;
  3628. font-size: 9px;
  3629. letter-spacing: 1px;
  3630. margin: 5px 10px 5px 0;
  3631. padding: 8px 12px 7px;
  3632. text-transform: uppercase;
  3633. transition: all 0.5s ease;
  3634. font-weight: 600;
  3635. }
  3636. .tagcloud > a:hover {
  3637. background: #2f55d4;
  3638. color: #ffffff;
  3639. }
  3640. .media-list .media .media-heading:hover {
  3641. color: #2f55d4 !important;
  3642. }
  3643. .media-list .sub-comment {
  3644. border-left: 2px dashed #dee2e6;
  3645. }
  3646. .blog .overlay,
  3647. .job-box .job-overlay {
  3648. position: absolute;
  3649. top: 0;
  3650. right: 0;
  3651. bottom: 0;
  3652. left: 0;
  3653. opacity: 0;
  3654. transition: all 0.5s ease;
  3655. }
  3656. .job-box {
  3657. transition: all 0.5s ease;
  3658. }
  3659. .job-box .job-overlay {
  3660. opacity: 0.6;
  3661. }
  3662. .job-box .head {
  3663. position: absolute;
  3664. top: 15px;
  3665. right: 15px;
  3666. }
  3667. .job-box .position {
  3668. position: absolute;
  3669. top: 15px;
  3670. left: 15px;
  3671. }
  3672. .job-box .position a {
  3673. transition: all 0.5s ease;
  3674. }
  3675. .job-box .position a:hover {
  3676. color: #2f55d4 !important;
  3677. }
  3678. .job-box .firm-logo {
  3679. position: absolute;
  3680. left: 0;
  3681. right: 0;
  3682. height: 60px;
  3683. width: 60px;
  3684. line-height: 60px;
  3685. margin: 0 auto;
  3686. top: -30px;
  3687. }
  3688. .job-box .company-name {
  3689. transition: all 0.5s ease;
  3690. }
  3691. .job-box .company-name:hover {
  3692. color: #2f55d4 !important;
  3693. }
  3694. .job-box:hover {
  3695. transform: translateY(-5px);
  3696. }
  3697. .candidate-list .like {
  3698. -webkit-text-stroke: 1px #8492a6;
  3699. -webkit-text-fill-color: transparent;
  3700. }
  3701. .candidate-list .like:hover, .candidate-list .like:focus {
  3702. -webkit-text-stroke: #e43f52;
  3703. -webkit-text-fill-color: #e43f52;
  3704. }
  3705. .candidate-list,
  3706. .company-list {
  3707. transition: all 0.5s ease;
  3708. }
  3709. .candidate-list .name:hover,
  3710. .company-list .name:hover {
  3711. color: #2f55d4 !important;
  3712. }
  3713. .candidate-list:hover,
  3714. .company-list:hover {
  3715. box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
  3716. transform: translateY(-5px);
  3717. }
  3718. @media (min-width: 1024px) {
  3719. .job-profile {
  3720. top: -378px;
  3721. }
  3722. }
  3723. @media (min-width: 768px) and (max-width: 1023px) {
  3724. .job-profile {
  3725. top: -338px;
  3726. }
  3727. }
  3728. @media (max-width: 767px) {
  3729. .company-logo {
  3730. float: none !important;
  3731. text-align: left !important;
  3732. }
  3733. }
  3734. /*********************************/
  3735. /* Works & Portfolios */
  3736. /*===============================*/
  3737. .work-container.work-classic .work-image {
  3738. transition: all 0.5s ease;
  3739. }
  3740. .work-container.work-classic .work-image:hover {
  3741. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  3742. }
  3743. .work-container.work-classic .content .title, .work-container.work-grid .content .title, .work-container.work-modern .content .title {
  3744. font-size: 18px;
  3745. transition: all 0.5s ease;
  3746. }
  3747. .work-container.work-classic .content .title:hover, .work-container.work-grid .content .title:hover, .work-container.work-modern .content .title:hover {
  3748. color: #2f55d4 !important;
  3749. }
  3750. .work-container.work-classic .content .tag, .work-container.work-grid .content .tag, .work-container.work-modern .content .tag {
  3751. font-size: 15px !important;
  3752. }
  3753. .work-container.work-modern img,
  3754. .work-container.work-modern .overlay-work,
  3755. .work-container.work-modern .content,
  3756. .work-container.work-modern .client,
  3757. .work-container.work-modern .read_more,
  3758. .work-container.work-modern .icons,
  3759. .work-container.work-modern .icons .work-icon {
  3760. transition: all 0.5s ease;
  3761. }
  3762. .work-container.work-modern .overlay-work,
  3763. .work-container.work-modern .content,
  3764. .work-container.work-modern .client,
  3765. .work-container.work-modern .read_more,
  3766. .work-container.work-modern .icons {
  3767. position: absolute;
  3768. }
  3769. .work-container.work-modern .overlay-work {
  3770. top: 0;
  3771. right: 0;
  3772. bottom: 0;
  3773. left: 0;
  3774. opacity: 0;
  3775. z-index: 1;
  3776. }
  3777. .work-container.work-modern .content {
  3778. z-index: 1;
  3779. bottom: 5%;
  3780. left: 5%;
  3781. }
  3782. .work-container.work-modern .content,
  3783. .work-container.work-modern .client {
  3784. opacity: 0;
  3785. }
  3786. .work-container.work-modern .client,
  3787. .work-container.work-modern .read_more {
  3788. z-index: 1;
  3789. right: 5%;
  3790. top: 5%;
  3791. }
  3792. .work-container.work-modern .read_more {
  3793. height: 30px;
  3794. width: 30px;
  3795. line-height: 30px;
  3796. }
  3797. .work-container.work-modern .icons {
  3798. right: 0;
  3799. left: 0;
  3800. top: 50%;
  3801. transform: translateY(-50%);
  3802. z-index: 2;
  3803. opacity: 0;
  3804. }
  3805. .work-container.work-modern .icons .work-icon {
  3806. height: 45px;
  3807. width: 45px;
  3808. line-height: 45px;
  3809. }
  3810. .work-container.work-modern .icons .work-icon:hover {
  3811. background: #2f55d4 !important;
  3812. color: #ffffff !important;
  3813. }
  3814. .work-container.work-modern:hover img {
  3815. transform: scale(1.1) rotate(3deg);
  3816. }
  3817. .work-container.work-modern:hover .overlay-work {
  3818. opacity: 0.65;
  3819. }
  3820. .work-container.work-modern:hover .icons {
  3821. opacity: 1;
  3822. }
  3823. .work-container.work-modern:hover .personal-port,
  3824. .work-container.work-modern:hover .content,
  3825. .work-container.work-modern:hover .client {
  3826. opacity: 1;
  3827. }
  3828. .work-container.work-grid {
  3829. transition: all 0.5s ease;
  3830. }
  3831. .work-container.work-grid img, .work-container.work-grid .content, .work-container.work-grid .content .title {
  3832. transition: all 0.5s ease;
  3833. }
  3834. .work-container.work-grid .content {
  3835. position: absolute;
  3836. bottom: 0;
  3837. right: 0;
  3838. left: 0;
  3839. transform: translateY(150px);
  3840. overflow: hidden;
  3841. }
  3842. .work-container.work-grid:hover {
  3843. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  3844. }
  3845. .work-container.work-grid:hover img {
  3846. transform: translateY(-40px);
  3847. }
  3848. .work-container.work-grid:hover .content {
  3849. transform: translateY(0);
  3850. }
  3851. .work-details ul li b {
  3852. max-width: 90px;
  3853. width: 100%;
  3854. display: inline-block;
  3855. }
  3856. .courses-desc img {
  3857. transition: all 0.5s ease;
  3858. }
  3859. .courses-desc:hover img {
  3860. transform: scale(1.1) rotate(3deg);
  3861. }
  3862. .courses-desc .overlay-work,
  3863. .popular-tour .overlay-work {
  3864. position: absolute;
  3865. top: 0;
  3866. right: 0;
  3867. bottom: 0;
  3868. left: 0;
  3869. opacity: 0;
  3870. transition: all 0.5s ease;
  3871. }
  3872. .courses-desc:hover .overlay-work,
  3873. .popular-tour:hover .overlay-work {
  3874. opacity: 0.6;
  3875. }
  3876. .event-schedule {
  3877. transition: all 0.5s ease;
  3878. }
  3879. .event-schedule .date .day {
  3880. font-size: 18px;
  3881. width: 50px;
  3882. height: 50px;
  3883. border-radius: 50px;
  3884. background: rgba(47, 85, 212, 0.1);
  3885. line-height: 48px;
  3886. border: 2px solid #ffffff;
  3887. box-shadow: 0px 0px 2px 0.25px rgba(47, 85, 212, 0.5);
  3888. }
  3889. .event-schedule .date .month {
  3890. font-size: 13px;
  3891. }
  3892. .event-schedule .content .title {
  3893. font-size: 20px;
  3894. transition: all 0.5s ease;
  3895. }
  3896. .event-schedule .content .title:hover {
  3897. color: #2f55d4 !important;
  3898. }
  3899. .event-schedule .content .location-time {
  3900. font-size: 14px;
  3901. }
  3902. .event-schedule:hover {
  3903. transform: translateY(-5px);
  3904. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  3905. border-color: #2f55d4 !important;
  3906. background: #f8f9fc !important;
  3907. }
  3908. .courses-desc {
  3909. transition: all 0.5s ease;
  3910. }
  3911. .courses-desc .content .title {
  3912. transition: all 0.5s ease;
  3913. }
  3914. .courses-desc .content .title:hover {
  3915. color: #2f55d4 !important;
  3916. }
  3917. .courses-desc .collection, .courses-desc .preview {
  3918. position: absolute;
  3919. opacity: 0;
  3920. z-index: 1;
  3921. }
  3922. .courses-desc .collection {
  3923. top: 15px;
  3924. left: 15px;
  3925. }
  3926. .courses-desc .collection i {
  3927. -webkit-text-stroke: 2px #e43f52;
  3928. -webkit-text-fill-color: transparent;
  3929. }
  3930. .courses-desc .collection i:active {
  3931. -webkit-text-stroke: 0px #e43f52;
  3932. -webkit-text-fill-color: #e43f52;
  3933. }
  3934. .courses-desc .preview {
  3935. bottom: 15px;
  3936. right: 15px;
  3937. }
  3938. .courses-desc:hover {
  3939. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  3940. transform: translateY(-10px);
  3941. }
  3942. .courses-desc:hover .collection, .courses-desc:hover .preview {
  3943. opacity: 1;
  3944. }
  3945. .personal-port {
  3946. opacity: 0;
  3947. transition: all 0.5s ease;
  3948. }
  3949. .container-filter li {
  3950. font-size: 13px;
  3951. padding: 0px 15px;
  3952. margin: 5px 3px;
  3953. font-weight: 700;
  3954. letter-spacing: 0.8px;
  3955. cursor: pointer;
  3956. line-height: 34px;
  3957. transition: all 0.5s ease;
  3958. }
  3959. .container-filter li.active, .container-filter li:hover {
  3960. color: #2f55d4 !important;
  3961. border-color: #2f55d4 !important;
  3962. }
  3963. .spacing {
  3964. padding: 7px;
  3965. }
  3966. .shop-features .category-title {
  3967. position: absolute;
  3968. top: 50%;
  3969. transform: translateY(-50%);
  3970. left: 20px;
  3971. z-index: 1;
  3972. }
  3973. .shop-list .shop-image .overlay-work,
  3974. .shop-list .shop-image .shop-icons {
  3975. position: absolute;
  3976. opacity: 0;
  3977. transition: all 0.5s ease;
  3978. }
  3979. .shop-list .shop-image .overlay-work {
  3980. position: absolute;
  3981. top: 0;
  3982. right: 0;
  3983. bottom: 0;
  3984. left: 0;
  3985. z-index: 1;
  3986. }
  3987. .shop-list .shop-image .overlay-work .out-stock {
  3988. position: absolute;
  3989. bottom: 0;
  3990. left: 0;
  3991. right: 0;
  3992. }
  3993. .shop-list .shop-image .shop-icons {
  3994. top: 15px;
  3995. right: 15px;
  3996. z-index: 2;
  3997. }
  3998. .shop-list .shop-image:hover .overlay-work,
  3999. .shop-list .shop-image:hover .shop-icons {
  4000. opacity: 1;
  4001. }
  4002. .shop-list .content .product-name {
  4003. transition: all 0.5s ease;
  4004. }
  4005. .shop-list .content .product-name:hover {
  4006. color: #2f55d4 !important;
  4007. }
  4008. .shop-list .label {
  4009. position: absolute;
  4010. top: 15px;
  4011. left: 15px;
  4012. z-index: 2;
  4013. }
  4014. .shop-list .qty-btn {
  4015. pointer-events: none;
  4016. width: 65px;
  4017. padding-left: 15px;
  4018. }
  4019. .popular-tour .content {
  4020. position: absolute;
  4021. bottom: 3%;
  4022. left: 5%;
  4023. }
  4024. .main-icon {
  4025. border: 2px solid #e9ecef;
  4026. height: 40px;
  4027. width: 40px;
  4028. line-height: 0;
  4029. text-align: center;
  4030. }
  4031. .main-icon .fea {
  4032. height: 20px;
  4033. }
  4034. @media (min-width: 768px) {
  4035. .main-icon {
  4036. margin: 0 auto;
  4037. }
  4038. }
  4039. .timeline-page:after {
  4040. content: "";
  4041. position: absolute;
  4042. top: 0;
  4043. right: 0;
  4044. left: 0;
  4045. height: 95%;
  4046. margin: auto;
  4047. width: 2px;
  4048. background-color: #e9ecef !important;
  4049. }
  4050. .timeline-page .timeline-item .date-label-left, .timeline-page .timeline-item .duration-right {
  4051. margin-right: 15px;
  4052. }
  4053. .timeline-page .timeline-item .date-label-left:after, .timeline-page .timeline-item .duration-right:after {
  4054. content: "";
  4055. position: absolute;
  4056. top: 12px;
  4057. width: 12px;
  4058. height: 12px;
  4059. z-index: 1;
  4060. background-color: #2f55d4;
  4061. border-radius: 4px;
  4062. transform: rotate(45deg);
  4063. }
  4064. .timeline-page .timeline-item .date-label-left {
  4065. float: right;
  4066. margin-right: 15px;
  4067. }
  4068. .timeline-page .timeline-item .date-label-left:after {
  4069. right: -34px;
  4070. }
  4071. .timeline-page .timeline-item .duration-right {
  4072. float: left;
  4073. margin-left: 15px;
  4074. }
  4075. .timeline-page .timeline-item .duration-right:after {
  4076. left: -34px;
  4077. }
  4078. .timeline-page .timeline-item .event {
  4079. transition: all 0.2s ease;
  4080. }
  4081. .timeline-page .timeline-item .event.event-description-right {
  4082. margin-left: 15px;
  4083. }
  4084. .timeline-page .timeline-item .event.event-description-left {
  4085. margin-right: 15px;
  4086. text-align: right;
  4087. }
  4088. @media (max-width: 767px) {
  4089. .timeline-page {
  4090. margin-left: 18px;
  4091. }
  4092. .timeline-page:after {
  4093. margin: 0;
  4094. }
  4095. .timeline-page .timeline-item .duration {
  4096. float: left !important;
  4097. margin: 0 0 30px 15px !important;
  4098. text-align: left !important;
  4099. }
  4100. .timeline-page .timeline-item .duration:after {
  4101. left: -21px !important;
  4102. }
  4103. .timeline-page .timeline-item .duration .event {
  4104. text-align: left !important;
  4105. margin-left: 15px;
  4106. }
  4107. .timeline-page .timeline-item .event-description-left {
  4108. text-align: left !important;
  4109. margin: 0 0 0 15px;
  4110. }
  4111. }
  4112. .tobii__btn svg {
  4113. height: 30px;
  4114. width: auto;
  4115. }
  4116. .tobii__counter {
  4117. font-size: 16px;
  4118. }
  4119. .tobii-zoom {
  4120. display: block !important;
  4121. }
  4122. .tobii-zoom__icon {
  4123. display: none;
  4124. }
  4125. #grid {
  4126. padding: 0 !important;
  4127. }
  4128. /*********************************/
  4129. /* Team members */
  4130. /*===============================*/
  4131. .team img {
  4132. transition: all 0.5s ease;
  4133. }
  4134. .team .name:hover {
  4135. color: #2f55d4 !important;
  4136. }
  4137. .team .team-icon {
  4138. position: absolute;
  4139. bottom: 50%;
  4140. transform: translateY(50%);
  4141. right: 0;
  4142. opacity: 0;
  4143. left: 0;
  4144. text-align: center;
  4145. transition: all 0.5s ease;
  4146. }
  4147. .team:hover img {
  4148. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  4149. opacity: 0.2;
  4150. }
  4151. .team:hover .overlay-team {
  4152. opacity: 0.6;
  4153. }
  4154. .team:hover .team-icon {
  4155. opacity: 1;
  4156. }
  4157. /*********************************/
  4158. /* Authentications */
  4159. /*===============================*/
  4160. .login-page {
  4161. font-size: 15px;
  4162. }
  4163. .login-page .forgot-pass {
  4164. z-index: 99;
  4165. position: relative;
  4166. font-size: 13px;
  4167. }
  4168. .cover-user .container-fluid {
  4169. max-width: 100%;
  4170. }
  4171. @media (max-width: 768px) {
  4172. .cover-user .container-fluid .padding-less {
  4173. position: relative !important;
  4174. height: 400px !important;
  4175. }
  4176. }
  4177. .cover-user .container-fluid .padding-less.img {
  4178. background: scroll center no-repeat;
  4179. background-size: cover;
  4180. position: absolute;
  4181. height: 100%;
  4182. }
  4183. .cover-user .cover-user-img {
  4184. height: 100vh;
  4185. }
  4186. @media (min-width: 1025px) {
  4187. .cover-user .cover-user-img {
  4188. padding: 0px 20%;
  4189. }
  4190. }
  4191. @media (max-width: 768px) {
  4192. .cover-user .cover-user-img {
  4193. align-items: start !important;
  4194. height: auto !important;
  4195. padding: 30px;
  4196. }
  4197. }
  4198. @media (max-width: 768px) {
  4199. .cover-user .cover-user-content {
  4200. text-align: left !important;
  4201. }
  4202. .cover-user .cover-my-30 {
  4203. margin: 30px 0;
  4204. }
  4205. }
  4206. .form-signin {
  4207. width: 100%;
  4208. max-width: 400px;
  4209. margin: auto;
  4210. }
  4211. .bg-profile {
  4212. padding: 100px 0;
  4213. background-size: cover;
  4214. align-self: center;
  4215. position: relative;
  4216. background-position: center center;
  4217. }
  4218. .bg-profile .public-profile {
  4219. top: 175px;
  4220. }
  4221. .chat .chat-list:hover, .chat .chat-list.active, .chat .chat-list:focus {
  4222. background: #f8f9fc !important;
  4223. box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  4224. }
  4225. .chat .chat-list .on-off,
  4226. .chat .chat-type .on-off {
  4227. position: absolute;
  4228. left: -1px;
  4229. top: -1px;
  4230. font-size: 12px !important;
  4231. }
  4232. .chat.chat-person .on-off {
  4233. font-size: 10px;
  4234. }
  4235. .chat.chat-person .chat-msg {
  4236. margin-left: 8px;
  4237. }
  4238. .chat.chat-person .chat-msg .msg {
  4239. border: 1px solid #e9ecef;
  4240. }
  4241. .chat.chat-person .chat-msg .msg-time {
  4242. font-size: 12px !important;
  4243. }
  4244. .chat.chat-person .chat-right {
  4245. justify-content: flex-end;
  4246. text-align: right;
  4247. }
  4248. .chat.chat-person .chat-right .chat-user-image {
  4249. order: 2;
  4250. }
  4251. .chat.chat-person .chat-right .chat-user-image .on-off {
  4252. right: -1px;
  4253. }
  4254. .chat.chat-person .chat-right .chat-msg {
  4255. margin-right: 8px;
  4256. margin-left: 0;
  4257. }
  4258. .chat.chat-person .chat-right .chat-msg .msg {
  4259. display: inline-block;
  4260. }
  4261. .chat.chat-person .chat-right .chat-msg .msg-time {
  4262. display: block;
  4263. }
  4264. .simplebar-track.simplebar-vertical {
  4265. width: 8px !important;
  4266. }
  4267. .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  4268. width: 4px !important;
  4269. background: #adb5bd !important;
  4270. }
  4271. /*********************************/
  4272. /* Countdown(Comingsoon, Maintenance) */
  4273. /*===============================*/
  4274. .coming-soon, .maintenance, .error-page {
  4275. font-size: 40px;
  4276. letter-spacing: 1px;
  4277. }
  4278. @media (max-width: 767px) {
  4279. .coming-soon, .maintenance, .error-page {
  4280. font-size: 32px;
  4281. }
  4282. }
  4283. #countdown .count-down, #eventdown .count-down, #token-sale .count-down {
  4284. display: inline-block;
  4285. margin: 30px 10px 10px;
  4286. color: #ffffff;
  4287. text-align: center;
  4288. }
  4289. #countdown .count-down .count-number, #eventdown .count-down .count-number, #token-sale .count-down .count-number {
  4290. font-size: 40px;
  4291. line-height: 95px;
  4292. }
  4293. #countdown .count-down .count-head, #eventdown .count-down .count-head, #token-sale .count-down .count-head {
  4294. display: block;
  4295. position: relative;
  4296. transform: translateY(-20px);
  4297. text-transform: uppercase;
  4298. font-size: 14px;
  4299. letter-spacing: 1px;
  4300. }
  4301. #countdown .count-down .count-number {
  4302. font-size: 40px;
  4303. line-height: 95px;
  4304. border: 4px solid #dee2e6;
  4305. height: 130px;
  4306. width: 130px;
  4307. border-radius: 50%;
  4308. }
  4309. #token-sale .count-down {
  4310. border: 0;
  4311. color: #3c4858 !important;
  4312. }
  4313. #token-sale .count-down .count-number {
  4314. line-height: 80px;
  4315. }
  4316. @media (max-width: 767px) {
  4317. #token-sale .count-down .count-number {
  4318. font-size: 30px;
  4319. }
  4320. }
  4321. #token-sale .count-down .count-head {
  4322. margin-bottom: 0 !important;
  4323. transform: translateY(-15px);
  4324. }
  4325. @media (max-width: 767px) {
  4326. #token-sale .count-down .count-head {
  4327. font-size: 10px;
  4328. }
  4329. }
  4330. #eventdown .count-down {
  4331. margin: 10px !important;
  4332. border: 0;
  4333. }
  4334. @media (max-width: 767px) {
  4335. #eventdown .count-down {
  4336. width: 60px;
  4337. }
  4338. }
  4339. #eventdown .count-down .count-number {
  4340. line-height: 80px;
  4341. }
  4342. @media (max-width: 767px) {
  4343. #eventdown .count-down .count-number {
  4344. font-size: 30px;
  4345. }
  4346. }
  4347. #eventdown .count-down .count-head {
  4348. transform: translateY(-15px);
  4349. }
  4350. @media (max-width: 767px) {
  4351. #eventdown .count-down .count-head {
  4352. font-size: 10px;
  4353. }
  4354. }
  4355. #maintenance {
  4356. color: #ffffff;
  4357. font-size: 56px;
  4358. letter-spacing: 1px;
  4359. }
  4360. #maintenance .indicator {
  4361. font-size: 18px;
  4362. }
  4363. /*********************************/
  4364. /* Contact us */
  4365. /*===============================*/
  4366. .form-icon .icons {
  4367. position: absolute;
  4368. top: 13px;
  4369. left: 18px;
  4370. }
  4371. .map {
  4372. line-height: 0;
  4373. }
  4374. .map iframe {
  4375. width: 100%;
  4376. height: 400px;
  4377. }
  4378. .error {
  4379. margin: 8px 0px;
  4380. display: none;
  4381. color: #e43f52;
  4382. }
  4383. #ajaxsuccess {
  4384. font-size: 16px;
  4385. width: 100%;
  4386. display: none;
  4387. clear: both;
  4388. margin: 8px 0px;
  4389. }
  4390. .error_message,
  4391. #success_page {
  4392. padding: 10px;
  4393. margin-bottom: 20px;
  4394. text-align: center;
  4395. border-radius: 5px;
  4396. }
  4397. .error_message {
  4398. background-color: rgba(240, 115, 90, 0.1) !important;
  4399. border: 2px solid rgba(240, 115, 90, 0.1) !important;
  4400. color: #f0735a !important;
  4401. font-size: 14px;
  4402. }
  4403. .contact-loader {
  4404. display: none;
  4405. }
  4406. #success_page {
  4407. background-color: rgba(83, 199, 151, 0.1) !important;
  4408. border: 2px solid rgba(83, 199, 151, 0.1) !important;
  4409. color: #53c797 !important;
  4410. }
  4411. #success_page p {
  4412. margin-bottom: 0 !important;
  4413. }
  4414. .qs-datepicker-container {
  4415. background-color: #ffffff;
  4416. border-color: #dee2e6;
  4417. }
  4418. .qs-datepicker-container .qs-controls {
  4419. background-color: #e9ecef;
  4420. }
  4421. .qs-datepicker-container .qs-controls .qs-month-year {
  4422. font-weight: 600;
  4423. font-size: 15px;
  4424. }
  4425. .qs-datepicker-container .qs-controls .qs-month-year:hover {
  4426. border-bottom: 1px solid #e9ecef;
  4427. }
  4428. .qs-datepicker-container .qs-squares .qs-square {
  4429. font-size: 15px;
  4430. height: 34px;
  4431. width: 34px;
  4432. }
  4433. .qs-datepicker-container .qs-squares .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover, .qs-datepicker-container .qs-squares .qs-square.qs-current {
  4434. background: #2f55d4;
  4435. color: #ffffff;
  4436. border-radius: 30px;
  4437. font-weight: 500;
  4438. text-decoration: none;
  4439. border-radius: 30px;
  4440. }
  4441. .qs-datepicker-container .qs-squares .qs-day {
  4442. font-weight: 500;
  4443. color: #8492a6;
  4444. }
  4445. @media (min-width: 768px) {
  4446. .map.map-height-two iframe {
  4447. height: 551px;
  4448. }
  4449. }
  4450. /*********************************/
  4451. /* Footer */
  4452. /*===============================*/
  4453. .footer {
  4454. background: #202942;
  4455. position: relative;
  4456. color: #adb5bd;
  4457. }
  4458. .footer .footer-py-60 {
  4459. padding: 60px 0;
  4460. }
  4461. .footer .footer-py-30 {
  4462. padding: 30px 0;
  4463. }
  4464. .footer .logo-footer {
  4465. font-size: 22px;
  4466. }
  4467. .footer .logo-footer:focus {
  4468. outline: none;
  4469. }
  4470. .footer .footer-head {
  4471. letter-spacing: 1px;
  4472. font-weight: 500;
  4473. color: #f8f9fc;
  4474. }
  4475. .footer .foot-subscribe .form-control {
  4476. background-color: #27314f;
  4477. border: 1px solid #27314f;
  4478. color: #f8f9fc;
  4479. }
  4480. .footer .foot-subscribe .form-control:focus {
  4481. box-shadow: none;
  4482. }
  4483. .footer .foot-subscribe.foot-white .form-control {
  4484. color: #adb5bd;
  4485. }
  4486. .footer .foot-subscribe input::placeholder {
  4487. color: #adb5bd;
  4488. }
  4489. .footer .text-foot {
  4490. color: #adb5bd;
  4491. }
  4492. .footer .footer-list {
  4493. margin-bottom: 0;
  4494. }
  4495. .footer .footer-list li {
  4496. margin-bottom: 10px;
  4497. }
  4498. .footer .footer-list li a {
  4499. transition: all 0.5s ease;
  4500. }
  4501. .footer .footer-list li a:hover {
  4502. color: #e6e8ea;
  4503. }
  4504. .footer .footer-list li:last-child {
  4505. margin-bottom: 0;
  4506. }
  4507. .footer .footer-border,
  4508. .footer .footer-bar {
  4509. border-top: 1px solid #283353;
  4510. }
  4511. .footer .border {
  4512. border-color: #283353 !important;
  4513. }
  4514. .footer.footer-light {
  4515. background: #f8f9fc;
  4516. color: #8492a6;
  4517. }
  4518. .footer.footer-light .footer-head {
  4519. color: #3c4858;
  4520. }
  4521. .footer.footer-light .foot-subscribe .form-control {
  4522. background-color: #f8f9fc;
  4523. border: 1px solid #e9ecef;
  4524. color: #f8f9fc;
  4525. }
  4526. .footer.footer-light .foot-subscribe.foot-white .form-control {
  4527. color: #adb5bd;
  4528. }
  4529. .footer.footer-light .foot-subscribe input::placeholder {
  4530. color: #adb5bd;
  4531. }
  4532. .footer.footer-light .border {
  4533. border-color: #e9ecef !important;
  4534. }
  4535. .footer.footer-light .text-foot {
  4536. color: #8492a6;
  4537. }
  4538. .footer.footer-light .footer-list li a:hover {
  4539. color: #495057;
  4540. }
  4541. /*********************************/
  4542. /* Bootstrap-custom-RTL */
  4543. /*===============================*/
  4544. .list-inline-item:not(:last-child) {
  4545. margin-left: 0px;
  4546. margin-right: auto !important;
  4547. }
  4548. ul {
  4549. padding-right: 0 !important;
  4550. padding-left: 0 !important;
  4551. }
  4552. .list-inline {
  4553. padding-right: 0;
  4554. list-style: none;
  4555. }
  4556. .modal-open {
  4557. padding-left: 0 !important;
  4558. }
  4559. .input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child) {
  4560. border-top-left-radius: 0 !important;
  4561. border-bottom-left-radius: 0 !important;
  4562. border-top-right-radius: 6px !important;
  4563. border-bottom-right-radius: 6px !important;
  4564. }
  4565. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  4566. border-top-left-radius: 6px !important;
  4567. border-bottom-left-radius: 6px !important;
  4568. border-top-right-radius: 0 !important;
  4569. border-bottom-right-radius: 0 !important;
  4570. }
  4571. .offcanvas-end {
  4572. right: auto;
  4573. left: 0 !important;
  4574. transform: translateX(-100%);
  4575. }
  4576. .offcanvas-header .btn-close {
  4577. margin: -.5rem auto -.5rem -.5rem;
  4578. }
  4579. @keyframes spinner-border {
  4580. to {
  4581. transform: rotate(-180deg);
  4582. }
  4583. }
  4584. .dropdown-menu.show {
  4585. transform: translate3d(0px, 55px, 0px) !important;
  4586. }
  4587. .start-100 {
  4588. left: 0% !important;
  4589. }
  4590. .start-0 {
  4591. right: 0 !important;
  4592. }
  4593. .end-0 {
  4594. left: 0 !important;
  4595. right: auto !important;
  4596. }
  4597. .ms-auto {
  4598. margin-right: auto !important;
  4599. margin-left: 0 !important;
  4600. }
  4601. .me-auto {
  4602. margin-left: auto !important;
  4603. margin-right: 0 !important;
  4604. }
  4605. .me-1 {
  4606. margin-left: 4px !important;
  4607. margin-right: auto !important;
  4608. }
  4609. .me-2 {
  4610. margin-left: 8px !important;
  4611. margin-right: auto !important;
  4612. }
  4613. .me-3 {
  4614. margin-left: 16px !important;
  4615. margin-right: auto !important;
  4616. }
  4617. .me-4 {
  4618. margin-left: 24px !important;
  4619. margin-right: auto !important;
  4620. }
  4621. .me-5 {
  4622. margin-left: 48px !important;
  4623. margin-right: auto !important;
  4624. }
  4625. .ms-0 {
  4626. margin-right: 0 !important;
  4627. margin-left: auto !important;
  4628. }
  4629. .ms-1 {
  4630. margin-right: 4px !important;
  4631. margin-left: auto !important;
  4632. }
  4633. .ms-2 {
  4634. margin-right: 8px !important;
  4635. margin-left: auto !important;
  4636. }
  4637. .ms-3 {
  4638. margin-right: 16px !important;
  4639. margin-left: auto !important;
  4640. }
  4641. .ms-4 {
  4642. margin-right: 24px !important;
  4643. margin-left: auto !important;
  4644. }
  4645. .ms-5 {
  4646. margin-right: 48px !important;
  4647. margin-left: auto !important;
  4648. }
  4649. .pe-1 {
  4650. padding-left: 4px !important;
  4651. padding-right: 0 !important;
  4652. }
  4653. .pe-2 {
  4654. padding-left: 8px !important;
  4655. padding-right: 0 !important;
  4656. }
  4657. .pe-3 {
  4658. padding-left: 16px !important;
  4659. padding-right: 0 !important;
  4660. }
  4661. .pe-4 {
  4662. padding-left: 24px !important;
  4663. padding-right: 0 !important;
  4664. }
  4665. .pe-5 {
  4666. padding-left: 48px !important;
  4667. padding-right: 0 !important;
  4668. }
  4669. .ps-1 {
  4670. padding-right: 4px !important;
  4671. padding-left: 0 !important;
  4672. }
  4673. .ps-2 {
  4674. padding-right: 8px !important;
  4675. padding-left: 0 !important;
  4676. }
  4677. .ps-3 {
  4678. padding-right: 16px !important;
  4679. padding-left: 0 !important;
  4680. }
  4681. .ps-4 {
  4682. padding-right: 24px !important;
  4683. padding-left: 0 !important;
  4684. }
  4685. .ps-5 {
  4686. padding-right: 48px !important;
  4687. padding-left: 0 !important;
  4688. }
  4689. @media (min-width: 992px) {
  4690. .me-lg-2 {
  4691. margin-left: 8px !important;
  4692. margin-right: auto !important;
  4693. }
  4694. .me-lg-3 {
  4695. margin-left: 16px !important;
  4696. margin-right: auto !important;
  4697. }
  4698. .me-lg-4 {
  4699. margin-left: 24px !important;
  4700. margin-right: auto !important;
  4701. }
  4702. .me-lg-5 {
  4703. margin-left: 48px !important;
  4704. margin-right: auto !important;
  4705. }
  4706. .ms-lg-3 {
  4707. margin-right: 16px !important;
  4708. margin-left: auto !important;
  4709. }
  4710. .ms-lg-4 {
  4711. margin-right: 24px !important;
  4712. margin-left: auto !important;
  4713. }
  4714. .ms-lg-5 {
  4715. margin-right: 48px !important;
  4716. margin-left: auto !important;
  4717. }
  4718. .ps-lg-3 {
  4719. padding-right: 16px !important;
  4720. padding-left: 0 !important;
  4721. }
  4722. .text-lg-start {
  4723. text-align: right !important;
  4724. }
  4725. .offset-lg-1 {
  4726. margin-left: auto !important;
  4727. margin-right: 8.333333%;
  4728. }
  4729. .offset-lg-4 {
  4730. margin-right: 33.333333%;
  4731. }
  4732. .offset-lg-6 {
  4733. margin-right: 50%;
  4734. }
  4735. }
  4736. @media (min-width: 768px) {
  4737. .me-md-5 {
  4738. margin-left: 3rem !important;
  4739. margin-right: 0 !important;
  4740. }
  4741. .ms-md-4 {
  4742. margin-right: 24px !important;
  4743. margin-left: 0 !important;
  4744. }
  4745. .me-md-4 {
  4746. margin-left: 24px !important;
  4747. margin-right: 0 !important;
  4748. }
  4749. .pe-md-3 {
  4750. padding-left: 16px !important;
  4751. padding-right: 0 !important;
  4752. }
  4753. .ps-md-3 {
  4754. padding-right: 16px !important;
  4755. padding-left: 0 !important;
  4756. }
  4757. .ps-lg-5 {
  4758. padding-right: 48px !important;
  4759. padding-left: 0 !important;
  4760. }
  4761. .text-md-start {
  4762. text-align: right !important;
  4763. }
  4764. .text-md-end {
  4765. text-align: left !important;
  4766. }
  4767. }
  4768. @media (min-width: 576px) {
  4769. .text-sm-start {
  4770. text-align: right !important;
  4771. }
  4772. .text-sm-end {
  4773. text-align: left !important;
  4774. }
  4775. }
  4776. /*********************************/
  4777. /* Components-RTL */
  4778. /*===============================*/
  4779. .btn-group .dropdown-toggle:after {
  4780. left: -4px !important;
  4781. right: auto;
  4782. }
  4783. .btn-group .dropdown-menu:before {
  4784. right: 10px !important;
  4785. left: auto;
  4786. }
  4787. .btn-group .dropdown-menu.show {
  4788. right: 0;
  4789. left: auto;
  4790. }
  4791. .btn-group .dropdown-item {
  4792. text-align: right !important;
  4793. }
  4794. .alert.alert-dismissible {
  4795. padding: 8px 15px 8px 30px;
  4796. }
  4797. .alert.alert-dismissible .close {
  4798. left: -10px !important;
  4799. right: auto;
  4800. }
  4801. .breadcrumb .breadcrumb-item:before {
  4802. content: "\F0141";
  4803. font-family: 'Material Design Icons';
  4804. color: #3c4858;
  4805. padding: 0 6px !important;
  4806. }
  4807. .breadcrumb .breadcrumb-item:after {
  4808. display: none;
  4809. }
  4810. .breadcrumb .breadcrumb-item:last-child:before {
  4811. display: none !important;
  4812. }
  4813. .pagination .page-item:last-child .page-link {
  4814. border-top-left-radius: 30px;
  4815. border-bottom-left-radius: 30px;
  4816. border-top-right-radius: 0;
  4817. border-bottom-right-radius: 0;
  4818. }
  4819. .pagination .page-item:first-child .page-link {
  4820. border-top-right-radius: 30px;
  4821. border-bottom-right-radius: 30px;
  4822. border-top-left-radius: 0;
  4823. border-bottom-left-radius: 0;
  4824. }
  4825. .accordion .accordion-item .accordion-button {
  4826. text-align: right;
  4827. padding: 1rem 1.25rem 1rem 2.5rem;
  4828. }
  4829. .accordion .accordion-item .accordion-button:before {
  4830. left: 20px;
  4831. right: auto;
  4832. }
  4833. .accordion .accordion-button:after {
  4834. margin-right: auto !important;
  4835. margin-left: 0;
  4836. }
  4837. .nav {
  4838. padding-right: 0;
  4839. padding-right: auto;
  4840. }
  4841. .progress-box .progress .progress-value {
  4842. left: -15px;
  4843. right: auto;
  4844. }
  4845. .blockquote {
  4846. border-right: 3px solid #dee2e6;
  4847. border-left: 0;
  4848. }
  4849. .blockquote-wrapper .blockquote:after {
  4850. transform: rotate(-90deg);
  4851. right: 50px !important;
  4852. left: auto;
  4853. }
  4854. .blockquote-wrapper .blockquote:before {
  4855. left: auto;
  4856. right: 50px !important;
  4857. }
  4858. .blockquote-wrapper .author {
  4859. margin-left: auto;
  4860. margin-right: 150px !important;
  4861. }
  4862. .blockquote-wrapper .author:first-letter {
  4863. margin-right: -12px !important;
  4864. margin-left: auto;
  4865. }
  4866. .subcribe-form input {
  4867. padding-right: 30px;
  4868. padding-left: 160px;
  4869. }
  4870. .subcribe-form button {
  4871. left: 3px !important;
  4872. right: auto;
  4873. }
  4874. .back-to-top {
  4875. left: 30px;
  4876. right: auto;
  4877. }
  4878. .back-to-home {
  4879. left: 2%;
  4880. right: auto;
  4881. }
  4882. #preloader #status .spinner .double-bounce1, #preloader #status .spinner .double-bounce2 {
  4883. right: 0 !important;
  4884. left: auto;
  4885. }
  4886. .blog .author,
  4887. .blog .teacher {
  4888. right: 5%;
  4889. }
  4890. .blog .course-fee {
  4891. left: 5%;
  4892. right: auto;
  4893. }
  4894. .sidebar .widget .widget-search input[type="text"], .sidebar .widget .searchform input[type="text"] {
  4895. padding-left: 45px;
  4896. padding-right: auto;
  4897. }
  4898. .sidebar .widget .widget-search input[type="submit"], .sidebar .widget .searchform input[type="submit"] {
  4899. left: 10px;
  4900. right: auto;
  4901. }
  4902. .sidebar .widget .widget-search .searchform:after {
  4903. left: 16px;
  4904. right: auto;
  4905. }
  4906. .sidebar .widget .categories span {
  4907. float: left !important;
  4908. }
  4909. .sidebar .widget .post-recent .post-recent-content {
  4910. padding-right: 10px;
  4911. padding-left: auto;
  4912. }
  4913. .media-list .sub-comment {
  4914. border-right: 2px dashed #dee2e6;
  4915. border-left: 0;
  4916. }
  4917. .form-icon .icons {
  4918. right: 18px !important;
  4919. left: auto;
  4920. }
  4921. .form-check .form-check-input {
  4922. float: right;
  4923. margin-right: 0;
  4924. margin-left: 15px;
  4925. }
  4926. .form-select {
  4927. padding: .375rem .75rem .375rem 2.25rem;
  4928. background-position: left .75rem center;
  4929. }
  4930. .modal-header .close {
  4931. margin: -1rem auto -1rem -1rem !important;
  4932. }
  4933. .modal-footer > :not(:last-child) {
  4934. margin-left: .25rem;
  4935. margin-right: 0;
  4936. }
  4937. .modal-footer > :not(:first-child) {
  4938. margin-left: 0;
  4939. margin-right: .25rem;
  4940. }
  4941. .features .image:before {
  4942. right: 5px;
  4943. left: auto;
  4944. transform: rotate(222deg) !important;
  4945. }
  4946. .key-feature .icon, .key-feature .icons {
  4947. margin-right: 0 !important;
  4948. }
  4949. .work-process.process-arrow:after {
  4950. right: 80%;
  4951. left: 0 !important;
  4952. background: url("../images/process-rtl.png") center center no-repeat;
  4953. }
  4954. .bg-animation-left:after {
  4955. right: 0px;
  4956. clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  4957. }
  4958. .bg-animation-left.crypto-home:after {
  4959. clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 70% 100%);
  4960. }
  4961. .agency-wrapper:before {
  4962. left: 54rem;
  4963. right: auto;
  4964. transform: rotate(135deg);
  4965. }
  4966. @media (max-width: 768px) {
  4967. .agency-wrapper:before {
  4968. left: 12rem;
  4969. }
  4970. }
  4971. @media (max-width: 767px) {
  4972. .agency-wrapper:before {
  4973. left: 0;
  4974. }
  4975. }
  4976. .classic-app-image .bg-app-shape:after {
  4977. right: -8rem;
  4978. left: auto;
  4979. transform: rotate(60deg);
  4980. }
  4981. .classic-app-image .app-images {
  4982. left: -20px;
  4983. right: auto;
  4984. }
  4985. .app-feature-shape-right:after {
  4986. left: -5rem;
  4987. transform: rotate(210deg);
  4988. }
  4989. @media (max-width: 768px) {
  4990. .app-feature-shape-right:after {
  4991. left: -10rem;
  4992. }
  4993. }
  4994. .app-feature-shape-left:after {
  4995. right: -5rem;
  4996. transform: rotate(150deg);
  4997. }
  4998. @media (max-width: 768px) {
  4999. .app-feature-shape-left:after {
  5000. right: -10rem;
  5001. }
  5002. }
  5003. .classic-saas-image .bg-saas-shape:after {
  5004. right: 0;
  5005. }
  5006. @media (max-width: 767px) {
  5007. .classic-saas-image .bg-saas-shape:after {
  5008. right: 10rem;
  5009. }
  5010. }
  5011. .classic-saas-image .bg-saas-shape:after,
  5012. .freelance-hero .bg-shape:after {
  5013. transform: rotate(50deg);
  5014. }
  5015. .freelance-hero .bg-shape:after {
  5016. right: 7rem;
  5017. }
  5018. @media (max-width: 767px) {
  5019. .freelance-hero .bg-shape:after {
  5020. right: 15rem;
  5021. }
  5022. }
  5023. .saas-feature-shape-left:after {
  5024. right: -10rem;
  5025. left: auto;
  5026. }
  5027. .saas-feature-shape-right:after {
  5028. left: -10rem;
  5029. right: auto;
  5030. }
  5031. .shape-before .shape-img {
  5032. right: -35px !important;
  5033. left: auto;
  5034. }
  5035. .rtl-personal-hero {
  5036. background-image: url("../images/personal/rtl-bg01.png") !important;
  5037. }
  5038. .home-wrapper:before {
  5039. right: auto;
  5040. left: 0rem;
  5041. transform: rotate(98.75deg);
  5042. }
  5043. @media (min-width: 769px) and (max-width: 1024px) {
  5044. .home-wrapper:before {
  5045. right: auto;
  5046. left: -20rem;
  5047. }
  5048. }
  5049. @media (min-width: 426px) and (max-width: 768px) {
  5050. .home-wrapper:before {
  5051. right: auto;
  5052. left: -15rem;
  5053. }
  5054. }
  5055. @media (max-width: 425px) {
  5056. .home-wrapper:before {
  5057. right: auto;
  5058. left: -25rem;
  5059. }
  5060. }
  5061. .pricing-rates.best-plan .lable {
  5062. left: -65px;
  5063. right: auto;
  5064. transform: rotate(-45deg);
  5065. }
  5066. .switcher-pricing .form-switch {
  5067. padding-left: 0;
  5068. }
  5069. .switcher-pricing .form-switch .form-check-input {
  5070. margin-left: 0;
  5071. }
  5072. .ribbon.ribbon-right {
  5073. left: -5px;
  5074. right: auto;
  5075. }
  5076. .ribbon.ribbon-right span {
  5077. left: -23px;
  5078. right: auto;
  5079. transform: rotate(-45deg);
  5080. }
  5081. .ribbon.ribbon-left {
  5082. right: -5px;
  5083. left: auto;
  5084. }
  5085. .ribbon.ribbon-left span {
  5086. right: -23px;
  5087. left: auto;
  5088. transform: rotate(45deg);
  5089. }
  5090. .ribbon span:before, .ribbon span:after {
  5091. border: 3px solid transparent;
  5092. }
  5093. .swiper-slider-hero, .tns-inner, .tns-nav {
  5094. direction: ltr;
  5095. }
  5096. .tns-visually-hidden {
  5097. left: 0 !important;
  5098. visibility: hidden;
  5099. }
  5100. .customer-testi img {
  5101. margin-right: 16px !important;
  5102. margin-left: auto !important;
  5103. }
  5104. .customer-testi .content {
  5105. text-align: left !important;
  5106. }
  5107. .job-box .head {
  5108. left: 15px;
  5109. right: auto;
  5110. }
  5111. .job-box .position {
  5112. right: 15px;
  5113. left: auto;
  5114. }
  5115. .work-container .content {
  5116. right: 5%;
  5117. }
  5118. .work-container.work-modern .client,
  5119. .work-container.work-modern .read_more {
  5120. left: 5%;
  5121. right: auto;
  5122. }
  5123. .courses-desc .collection {
  5124. top: 15px;
  5125. right: 15px;
  5126. }
  5127. .courses-desc .preview {
  5128. bottom: 15px;
  5129. left: 15px;
  5130. }
  5131. .home-slider .slide .bg-home.slider-rtl-1 {
  5132. background-image: url("../images/shop/rtl-bg1.jpg") !important;
  5133. }
  5134. .home-slider .slide .bg-home.slider-rtl-2 {
  5135. background-image: url("../images/shop/rtl-bg2.jpg") !important;
  5136. }
  5137. .home-slider .slide .bg-home.slider-rtl-3 {
  5138. background-image: url("../images/shop/rtl-bg3.jpg") !important;
  5139. }
  5140. .shop-list .shop-image .shop-icons {
  5141. left: 15px !important;
  5142. right: auto;
  5143. }
  5144. .shop-list .label {
  5145. right: 15px !important;
  5146. left: auto;
  5147. }
  5148. .shop-list .qty-btn {
  5149. padding-right: 15px !important;
  5150. padding-left: 0;
  5151. }
  5152. .timeline-page .timeline-item .date-label-left, .timeline-page .timeline-item .duration-right {
  5153. margin-left: 15px !important;
  5154. margin-right: 0;
  5155. }
  5156. .timeline-page .timeline-item .date-label-left {
  5157. float: left !important;
  5158. margin-right: 0;
  5159. margin-left: 15px !important;
  5160. }
  5161. .timeline-page .timeline-item .date-label-left:after {
  5162. left: -34px !important;
  5163. right: auto;
  5164. }
  5165. .timeline-page .timeline-item .duration-right {
  5166. float: right !important;
  5167. margin-right: 15px !important;
  5168. margin-left: auto;
  5169. }
  5170. .timeline-page .timeline-item .duration-right:after {
  5171. right: -34px !important;
  5172. left: auto;
  5173. }
  5174. .timeline-page .timeline-item .event.event-description-right {
  5175. text-align: right !important;
  5176. margin-right: 15px !important;
  5177. margin-left: 0;
  5178. }
  5179. .timeline-page .timeline-item .event.event-description-left {
  5180. text-align: left;
  5181. margin-left: 15px !important;
  5182. margin-right: 0;
  5183. }
  5184. @media (max-width: 767px) {
  5185. .timeline-page {
  5186. margin-right: 18px !important;
  5187. margin-left: 0;
  5188. }
  5189. .timeline-page .timeline-item .duration {
  5190. float: right !important;
  5191. margin-left: 0 !important;
  5192. margin-right: 15px !important;
  5193. text-align: right !important;
  5194. }
  5195. .timeline-page .timeline-item .duration:after {
  5196. right: -21px !important;
  5197. left: auto;
  5198. }
  5199. .timeline-page .timeline-item .duration .event {
  5200. text-align: right !important;
  5201. margin-right: 15px !important;
  5202. margin-left: auto;
  5203. }
  5204. .timeline-page .timeline-item .event-description-left {
  5205. text-align: right !important;
  5206. margin-left: 0 !important;
  5207. margin-right: 15px !important;
  5208. }
  5209. }
  5210. .social-feature-left:before {
  5211. left: -200px;
  5212. right: auto;
  5213. }
  5214. @media (max-width: 575px) {
  5215. .social-feature-left:before {
  5216. left: 60px;
  5217. right: auto;
  5218. }
  5219. }
  5220. .social-feature-right:before {
  5221. right: -200px;
  5222. left: auto;
  5223. }
  5224. @media (max-width: 575px) {
  5225. .social-feature-right:before {
  5226. right: 60px;
  5227. left: auto;
  5228. }
  5229. }
  5230. .chat .chat-list .on-off,
  5231. .chat .chat-type .on-off {
  5232. right: -1px !important;
  5233. left: auto;
  5234. }
  5235. .chat.chat-person .chat-msg {
  5236. margin-right: 8px !important;
  5237. margin-left: auto;
  5238. }
  5239. .chat.chat-person .chat-right {
  5240. justify-content: flex-start;
  5241. text-align: left;
  5242. }
  5243. .chat.chat-person .chat-right .chat-user-image .on-off {
  5244. left: -1px !important;
  5245. right: auto;
  5246. }
  5247. .chat.chat-person .chat-right .chat-msg {
  5248. margin-right: 0 !important;
  5249. margin-left: 8px !important;
  5250. }
  5251. @media (min-width: 769px) {
  5252. .bg-studio:after {
  5253. left: 0px;
  5254. }
  5255. }
  5256. @media (max-width: 767px) {
  5257. .company-logo {
  5258. float: none !important;
  5259. text-align: right !important;
  5260. }
  5261. }
  5262. @media (min-width: 576px) {
  5263. .text-sm-left {
  5264. text-align: right !important;
  5265. }
  5266. .text-sm-right {
  5267. text-align: left !important;
  5268. }
  5269. }
  5270. /*********************************/
  5271. /* General-RTL */
  5272. /*===============================*/
  5273. html {
  5274. direction: rtl;
  5275. }
  5276. body {
  5277. text-align: right;
  5278. }
  5279. #style-switcher .t-rtl-light {
  5280. display: none;
  5281. }
  5282. #style-switcher .t-ltr-light {
  5283. display: inline-block;
  5284. }
  5285. /*********************************/
  5286. /* Helper-RTL */
  5287. /*===============================*/
  5288. .text-start {
  5289. text-align: right !important;
  5290. }
  5291. .text-end {
  5292. text-align: left !important;
  5293. }
  5294. .float-end {
  5295. float: left !important;
  5296. }
  5297. @media (min-width: 768px) {
  5298. .float-md-end {
  5299. float: left !important;
  5300. }
  5301. }
  5302. .float-start {
  5303. float: right !important;
  5304. }
  5305. dd {
  5306. margin-right: 0 !important;
  5307. }
  5308. @keyframes moveSlideshow {
  5309. 100% {
  5310. transform: translateX(45%);
  5311. }
  5312. }
  5313. /*********************************/
  5314. /* Menu-RTL */
  5315. /*===============================*/
  5316. #topnav .logo {
  5317. float: right;
  5318. }
  5319. #topnav .has-submenu .submenu .submenu-arrow {
  5320. border-width: 2px 0px 0px 2px;
  5321. left: 20px;
  5322. right: auto;
  5323. }
  5324. #topnav .navbar-toggle .lines {
  5325. margin: 30px 10px 26px 0 !important;
  5326. }
  5327. #topnav .navbar-toggle span {
  5328. height: 2px;
  5329. width: 100%;
  5330. background-color: #3c4858;
  5331. display: block;
  5332. margin-bottom: 5px;
  5333. transition: transform .5s ease;
  5334. }
  5335. #topnav .navbar-toggle span:last-child {
  5336. margin-bottom: 0;
  5337. }
  5338. #topnav .buy-button {
  5339. float: left;
  5340. padding: 0 0 6px;
  5341. }
  5342. #topnav .navigation-menu .has-submenu .menu-arrow {
  5343. left: -1px;
  5344. right: auto;
  5345. }
  5346. #topnav .menu-extras {
  5347. float: left;
  5348. }
  5349. .logo {
  5350. margin-right: auto;
  5351. margin-left: 15px;
  5352. }
  5353. @media (min-width: 992px) {
  5354. #topnav .navigation-menu > li .submenu {
  5355. right: 0;
  5356. left: auto;
  5357. }
  5358. #topnav .navigation-menu > li .submenu li ul {
  5359. padding-right: 0;
  5360. padding-left: auto;
  5361. }
  5362. #topnav .navigation-menu > li .submenu.megamenu {
  5363. right: 50% !important;
  5364. left: 0;
  5365. transform: translateX(50%);
  5366. }
  5367. #topnav .navigation-menu > li .submenu.megamenu > li .submenu {
  5368. right: 100%;
  5369. margin-right: 10px;
  5370. }
  5371. #topnav .navigation-menu > li .submenu > li .submenu {
  5372. right: 101%;
  5373. left: auto;
  5374. margin-right: 10px;
  5375. }
  5376. #topnav .navigation-menu > li.last-elements .submenu {
  5377. right: auto;
  5378. left: 0;
  5379. }
  5380. #topnav .navigation-menu > li.last-elements .submenu:before {
  5381. right: auto;
  5382. left: 35px;
  5383. }
  5384. #topnav .navigation-menu > li.last-elements .submenu > li.has-submenu .submenu {
  5385. right: auto;
  5386. left: 100%;
  5387. margin-right: 0;
  5388. margin-left: 10px;
  5389. }
  5390. #topnav .navigation-menu.nav-left > li.last-elements .submenu {
  5391. left: auto !important;
  5392. right: 0 !important;
  5393. }
  5394. #topnav .navigation-menu.nav-left > li.last-elements .submenu:before {
  5395. left: auto !important;
  5396. right: 11px !important;
  5397. }
  5398. #topnav .buy-button {
  5399. padding-right: 15px !important;
  5400. margin-right: 15px !important;
  5401. padding-left: auto;
  5402. margin-left: auto;
  5403. }
  5404. }
  5405. @media (max-width: 991px) {
  5406. #topnav .navigation-menu > li .submenu {
  5407. padding-right: 20px;
  5408. }
  5409. #topnav .navigation-menu > li .submenu.megamenu > li > ul {
  5410. padding-right: 0;
  5411. padding-left: auto;
  5412. }
  5413. #topnav .has-submenu .submenu .submenu-arrow {
  5414. left: 20px;
  5415. right: auto;
  5416. }
  5417. #navigation {
  5418. right: 0;
  5419. left: auto;
  5420. }
  5421. }
  5422. @media (max-width: 768px) {
  5423. #topnav .navigation-menu .has-submenu .menu-arrow {
  5424. left: 8px;
  5425. right: auto;
  5426. }
  5427. #topnav .navigation-menu .has-submenu .submenu .submenu-arrow {
  5428. border-width: 0px 2px 2px 0px;
  5429. }
  5430. }
  5431. @media (max-width: 375px) {
  5432. #topnav .buy-menu-btn .dropdown .dropdown-menu.show {
  5433. transform: translate3d(-197px, -54px, 0px) !important;
  5434. }
  5435. }
  5436. /*# sourceMappingURL=style-rtl.css.map */