style-red.css 159 KB

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