style.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754
  1. /*Import Global Compulsory CSS Files*/
  2. @import url(app.css);
  3. /*Boxed Layout
  4. ------------------------------------*/
  5. body {
  6. font-family: NotoSansHans-Regular, AvenirNext-Regular, "proxima-nova", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", "Open Sans", "Helvetica Neue", Arial, sans-serif;
  7. }
  8. .wrapper {
  9. background: #fff;
  10. }
  11. .boxed-layout {
  12. padding: 0;
  13. box-shadow: 0 0 5px #ccc;
  14. margin-left: auto !important;
  15. margin-right: auto !important;
  16. background: url(../images/15.png) repeat;
  17. }
  18. /*Parallax Backgrounds
  19. ------------------------------------*/
  20. .parallax-bg {
  21. background: url(../images/img1.jpg) 50% 0 repeat fixed;
  22. }
  23. /*Parallax Counter Block*/
  24. .parallax-counter {
  25. padding: 60px 0;
  26. background: url(../images/9.jpg) 50% 0 no-repeat fixed;
  27. }
  28. .parallax-counter h4 {
  29. color: #fff;
  30. font-size: 18px;
  31. }
  32. .parallax-counter .counters {
  33. color: #fff;
  34. padding: 20px 0;
  35. font-weight: 200;
  36. background: rgba(0, 0, 0, 0.6);
  37. }
  38. /*Parallax Team*/
  39. .parallax-team {
  40. background: url(../images/faces.jpg) 50% 0 repeat fixed;
  41. }
  42. .parallax-team,
  43. .parallax-team .title-box-v2 {
  44. position: relative;
  45. }
  46. .parallax-team:before {
  47. top: 0;
  48. left: 0;
  49. width: 100%;
  50. height: 100%;
  51. content: " ";
  52. position: absolute;
  53. background: rgba(255, 255, 255, 0.9);
  54. }
  55. /*Top Bar (login, search etc.)
  56. ------------------------------------*/
  57. .topbar {
  58. z-index: 12;
  59. padding: 8px 0 16px 0;
  60. position: relative;
  61. }
  62. .topbar ul.loginbar {
  63. margin: 0;
  64. }
  65. .topbar ul.loginbar > li {
  66. display: inline;
  67. list-style: none;
  68. position: relative;
  69. padding-bottom: 15px;
  70. }
  71. .topbar ul.loginbar > li > a,
  72. .topbar ul.loginbar > li > a:hover {
  73. color: #7c8082;
  74. /* font-size: 11px; */
  75. /* text-transform: uppercase; */
  76. }
  77. .topbar ul.loginbar li i.fa {
  78. color: #bbb;
  79. }
  80. .topbar ul.loginbar li.topbar-devider {
  81. top: -1px;
  82. padding: 0;
  83. font-size: 8px;
  84. position: relative;
  85. margin: 0 9px 0 5px;
  86. font-family: Tahoma;
  87. border-right: solid 1px #bbb;
  88. }
  89. /*Lenguages*/
  90. .topbar ul.lenguages {
  91. top: 25px;
  92. left: -5px;
  93. display: none;
  94. padding: 4px 0;
  95. padding-left: 0;
  96. list-style: none;
  97. min-width: 100px;
  98. position: absolute;
  99. background: #f0f0f0;
  100. }
  101. .topbar li:hover ul.lenguages {
  102. display: block;
  103. }
  104. .topbar ul.lenguages:after {
  105. top: -4px;
  106. width: 0;
  107. height: 0;
  108. left: 8px;
  109. content: " ";
  110. display: block;
  111. position: absolute;
  112. border-bottom: 6px solid #f0f0f0;
  113. border-left: 6px solid transparent;
  114. border-right: 6px solid transparent;
  115. border-left-style: inset; /*FF fixes*/
  116. border-right-style: inset; /*FF fixes*/
  117. }
  118. .topbar ul.lenguages li a {
  119. color: #555;
  120. display: block;
  121. font-size: 12px;
  122. padding: 2px 12px;
  123. margin-bottom: 1px;
  124. text-transform: uppercase;
  125. }
  126. .topbar ul.lenguages li.active a i {
  127. color: #999;
  128. float: right;
  129. margin-top: 2px;
  130. }
  131. .topbar ul.lenguages li a:hover,
  132. .topbar ul.lenguages li.active a {
  133. background: #fafafa;
  134. }
  135. .topbar ul.lenguages li a:hover {
  136. text-decoration: none;
  137. }
  138. /*Top Bar v1 (login, search etc.)
  139. ------------------------------------*/
  140. .topbar-v1 {
  141. background: #fdfdfd;
  142. border-bottom: solid 1px #f0f0f0;
  143. }
  144. /*Top Contacts*/
  145. .topbar-v1 ul {
  146. margin: 0;
  147. }
  148. .topbar-v1 .top-v1-contacts li {
  149. color: #666;
  150. padding: 5px 0;
  151. font-size: 12px;
  152. margin-right: 15px;
  153. display: inline-block;
  154. }
  155. .topbar-v1 .top-v1-contacts i {
  156. color: #999;
  157. font-size: 13px;
  158. margin-right: 3px;
  159. }
  160. /*Top Data*/
  161. .topbar-v1 .top-v1-data {
  162. text-align: right;
  163. }
  164. .topbar-v1 .top-v1-data li {
  165. padding: 5px 11px;
  166. display: inline-block;
  167. border-right: solid 1px #eee;
  168. }
  169. .topbar-v1 .top-v1-data li:first-child {
  170. border-left: solid 1px #eee;
  171. }
  172. .topbar-v1 .top-v1-data li a {
  173. font-size: 12px;
  174. }
  175. .topbar-v1 .top-v1-data li a:hover {
  176. text-decoration: none;
  177. }
  178. .topbar-v1 .top-v1-data li i {
  179. color: #777;
  180. font-size: 13px;
  181. }
  182. .topbar-v1 .top-v1-data li a:hover i {
  183. color: #72c02c;
  184. }
  185. /*Responsive Topbar v1*/
  186. @media (max-width: 992px) {
  187. .topbar-v1 ul {
  188. text-align: center !important;
  189. }
  190. .topbar-v1 .top-v1-contacts {
  191. margin: 10px 0;
  192. }
  193. .topbar-v1 .top-v1-data li {
  194. top: 1px;
  195. padding: 6px 16px;
  196. margin-left: -5px;
  197. position: relative;
  198. border: solid 1px #eee;
  199. }
  200. }
  201. /*Header Default
  202. ------------------------------------*/
  203. .header {
  204. z-index: 99;
  205. position: relative;
  206. border-bottom: solid 2px #eee;
  207. }
  208. .header .navbar {
  209. margin: 0;
  210. min-height: inherit;
  211. }
  212. .header .navbar-default {
  213. border: none;
  214. background: none;
  215. }
  216. .header .navbar-collapse {
  217. position: relative;
  218. /*max-height: inherit;*/
  219. }
  220. /*Brand*/
  221. .header .navbar-brand {
  222. z-index: 1;
  223. top: -8px;
  224. position: relative;
  225. padding: 0 10px 10px;
  226. }
  227. @media (max-width: 992px) {
  228. .header .navbar-brand {
  229. top: 0;
  230. height: 40px;
  231. }
  232. }
  233. /*Navbar*/
  234. @media (min-width: 992px) {
  235. .header .navbar-nav {
  236. float: right;
  237. }
  238. }
  239. .header .navbar-default .navbar-nav > li > a {
  240. color: #687074;
  241. font-size: 15px;
  242. font-weight: 400;
  243. text-transform: uppercase;
  244. }
  245. .header .navbar-default .navbar-nav > .active > a {
  246. color: #72c02c;
  247. }
  248. /*Dropdown*/
  249. .header .navbar-right .dropdown-menu {
  250. right: inherit;
  251. }
  252. /*Navbar Toggle*/
  253. /*.navbar-toggle,
  254. .navbar-default .navbar-toggle:hover,
  255. .navbar-default .navbar-toggle:focus {
  256. background: #72c02c;
  257. padding: 6px 10px 2px;
  258. }
  259. .navbar-default .navbar-toggle {
  260. border-color: #5fb611;
  261. }
  262. .navbar-default .navbar-toggle:hover {
  263. background: #5fb611;
  264. }
  265. .navbar-default .navbar-toggle .fa {
  266. color: #fff;
  267. font-size: 19px;
  268. }
  269. */
  270. /*Responsive Navbar*/
  271. @media (max-width: 767px) {
  272. .header .navbar-default .navbar-nav > li > a {
  273. font-size: 14px;
  274. padding: 9px 10px;
  275. }
  276. .header .navbar-default .navbar-nav > li a {
  277. /*margin-bottom: 1px;*/
  278. border-bottom: solid 1px #eee;
  279. }
  280. .header .navbar-default .navbar-nav > li > a:focus {
  281. background: none;
  282. }
  283. .header .navbar-default .navbar-nav > li > a:hover {
  284. color: #72c02c;
  285. }
  286. .header .navbar-default .navbar-nav > .active > a,
  287. .header .navbar-default .navbar-nav > .active > a:hover,
  288. .header .navbar-default .navbar-nav > .active > a:focus {
  289. color: #fff;
  290. background: #72c02c;
  291. /*border-bottom: solid 2px #72c02c;*/
  292. }
  293. }
  294. @media (min-width: 767px) {
  295. /*Navbar Collapse*/
  296. .header .navbar-collapse {
  297. padding: 0;
  298. }
  299. /*Navbar*/
  300. .header .navbar-nav {
  301. top: 2px;
  302. position: relative;
  303. }
  304. .header .navbar-default .navbar-nav > li > a {
  305. padding: 9px 30px 9px 20px;
  306. }
  307. .header .navbar-default .navbar-nav > li > a,
  308. .header .navbar-default .navbar-nav > li > a:focus {
  309. border-bottom: solid 2px transparent;
  310. }
  311. .header .navbar-default .navbar-nav > li > a:hover,
  312. .header .navbar-default .navbar-nav > .active > a {
  313. border-bottom: solid 2px #72c02c;
  314. }
  315. .header .navbar-default .navbar-nav > li > a,
  316. .header .navbar-default .navbar-nav > li > a:hover,
  317. .header .navbar-default .navbar-nav > li > a:focus,
  318. .header .navbar-default .navbar-nav > .active > a,
  319. .header .navbar-default .navbar-nav > .active > a:hover,
  320. .header .navbar-default .navbar-nav > .active > a:focus {
  321. background: none;
  322. }
  323. .header .navbar-default .navbar-nav > .open > a,
  324. .header .navbar-default .navbar-nav > .open > a:hover,
  325. .header .navbar-default .navbar-nav > .open > a:focus {
  326. color: #687074;
  327. }
  328. }
  329. /*Search Box*/
  330. .header .navbar .nav > li > .search {
  331. color: #aaa;
  332. cursor: pointer;
  333. min-width: 35px;
  334. font-size: 15px;
  335. text-align: center;
  336. background: #f7f7f7;
  337. padding: 11px 0 12px;
  338. display: inline-block;
  339. border-bottom: solid 2px #aaa;
  340. }
  341. .header .navbar .nav > li > .search:hover {
  342. color: #72c02c;
  343. background: #f7f7f7;
  344. border-bottom-color: #72c02c;
  345. }
  346. .header .navbar .search-open {
  347. right: 0;
  348. top: 38px;
  349. display: none;
  350. padding: 14px;
  351. position: absolute;
  352. background: #fcfcfc;
  353. border-top: solid 2px #eee;
  354. box-shadow: 0 1px 3px #ddd;
  355. }
  356. .header .navbar .search-open form {
  357. margin: 0;
  358. }
  359. @media (min-width: 767px) {
  360. .header .navbar .search-open {
  361. width: 330px;
  362. }
  363. }
  364. @media (max-width: 767px) {
  365. .header .navbar .nav > li > .search {
  366. color: #999;
  367. width: 35px;
  368. height: 34px;
  369. line-height: 12px;
  370. text-align: left;
  371. text-align: center;
  372. margin: 5px 10px 0;
  373. background: #eee;
  374. border-bottom: none;
  375. }
  376. .header .navbar .nav > li > .search:hover {
  377. background: #5fb611;
  378. color: #fff !important;
  379. }
  380. .header .navbar .search-open {
  381. top: 5px;
  382. padding: 0;
  383. left: 48px;
  384. border-top: none;
  385. box-shadow: none;
  386. background: none;
  387. margin-right: 10px;
  388. }
  389. }
  390. /*Header v1
  391. ------------------------------------*/
  392. .header-v1 {
  393. border-bottom: none;
  394. }
  395. /*Brand*/
  396. .header-v1 .navbar-brand {
  397. top: 2px;
  398. padding: 0 10px 10px;
  399. }
  400. /*Search Box*/
  401. .header-v1 .navbar .search-open {
  402. background: #f8f8f8;
  403. }
  404. @media (max-width: 767px) {
  405. .header-v1 .navbar .search-open {
  406. bottom: -6px;
  407. }
  408. }
  409. .header-v1 .navbar .nav > li > .search {
  410. padding: 11px;
  411. border: none;
  412. min-width: 37px;
  413. }
  414. .header-v1 .navbar .nav > li > .search:hover {
  415. background: #72c02c;
  416. color: #fff !important;
  417. }
  418. /*Toggle*/
  419. .header-v1 .navbar-toggle {
  420. margin-top: 3px;
  421. }
  422. /*Responsive Header v1*/
  423. @media (min-width: 767px) and (max-width: 992px) {
  424. /*Brand*/
  425. .header-v1 .navbar-brand {
  426. margin-bottom: 15px;
  427. }
  428. }
  429. @media (min-width: 767px) {
  430. /*Navbar*/
  431. .header-v1 .navbar-default .navbar-nav > li {
  432. margin-left: 1px;
  433. }
  434. .header-v1 .navbar-default .navbar-nav > li > a {
  435. padding: 9px 30px 6px 20px;
  436. }
  437. .header-v1 .navbar-default .navbar-nav > .active > a,
  438. .header-v1 .navbar-default .navbar-nav > li > a:hover,
  439. .header-v1 .navbar-default .navbar-nav > li > a:focus {
  440. color: #fff !important;
  441. background: #72c02c !important;
  442. }
  443. .header-v1 .navbar-default .navbar-nav > .open > a,
  444. .header-v1 .navbar-default .navbar-nav > .open > a:hover,
  445. .header-v1 .navbar-default .navbar-nav > .open > a:focus {
  446. color: #fff;
  447. background: #72c02c;
  448. }
  449. /*Dropdown Menu*/
  450. .header-v1 .dropdown-menu {
  451. background: #fafafa;
  452. }
  453. }
  454. /*Header Fixed
  455. ------------------------------------*/
  456. /*Header*/
  457. .header-fixed .header {
  458. height: 78px;
  459. }
  460. .header-fixed .header.header-fixed-shrink {
  461. top: 0;
  462. left: 0;
  463. width: 100%;
  464. height: 95px;
  465. z-index: 9999;
  466. position: fixed;
  467. margin-top: -35px;
  468. background: rgba(255, 255, 255, 0.9);
  469. border-bottom-color: #f5f5f5;
  470. -webkit-transition: height 0.6s;
  471. -moz-transition: height 0.6s;
  472. transition: height 0.6s;
  473. }
  474. /*Brand*/
  475. .header-fixed .header.header-fixed-shrink .navbar-brand {
  476. top: 10px;
  477. z-index: 1;
  478. position: relative;
  479. padding: 0 10px 10px;
  480. }
  481. .header-fixed .header.header-fixed-shrink .navbar-brand img {
  482. width: 90%;
  483. }
  484. .header-fixed .header.header-fixed-shrink .search,
  485. .header-fixed .header.header-fixed-shrink .active a {
  486. border-bottom: none !important;
  487. }
  488. .header-fixed .header.header-fixed-shrink .dropdown > a:after {
  489. top: 19px;
  490. }
  491. /*Toggle*/
  492. .header-fixed .navbar-toggle {
  493. margin-top: 5px;
  494. }
  495. /*Search Bar*/
  496. .header-fixed .header.header-fixed-shrink .search {
  497. margin-top: 12px;
  498. padding: 8px !important;
  499. color: #585f69 !important;
  500. background: none !important;
  501. }
  502. .header-fixed .header.header-fixed-shrink .search-open {
  503. border-top: none;
  504. background: rgba(255, 255, 255, 0.9);
  505. }
  506. /*Responsive Fixed Header*/
  507. @media (max-width: 992px) {
  508. /*Header*/
  509. .header-fixed .header {
  510. height: 118px;
  511. }
  512. .header-fixed .header.header-fixed-shrink {
  513. height: 135px;
  514. }
  515. }
  516. @media (max-width: 767px) {
  517. /*Header*/
  518. .header-fixed .header,
  519. .header-fixed .header.header-fixed-shrink {
  520. height: 88px;
  521. }
  522. /*Navbar*/
  523. .header-fixed .header .navbar-nav {
  524. background: #fff;
  525. padding: 6px 0;
  526. margin-top: 0px;
  527. border: solid 1px #eee;
  528. }
  529. .header-fixed .header .navbar-default .navbar-collapse,
  530. .header-fixed .header .navbar-default .navbar-form {
  531. border: none;
  532. }
  533. /*Toggle*/
  534. .header-fixed .navbar-toggle {
  535. margin-top: 9px;
  536. }
  537. /*Search*/
  538. .header-fixed .header.header-fixed-shrink .navbar .nav > li > .search {
  539. top: 5px;
  540. position: relative;
  541. }
  542. }
  543. @media (min-width: 767px) {
  544. /*Navbar*/
  545. .header-fixed .header.header-fixed-shrink .navbar-nav > li > a {
  546. padding: 19px 30px 18px 20px;
  547. border-bottom: solid 1px transparent !important;
  548. }
  549. /*Search Bar*/
  550. .header-fixed .header.header-fixed-shrink .search-open {
  551. top: 56px;
  552. }
  553. }
  554. /*Dropdown Submenu for BS3
  555. ------------------------------------*/
  556. .dropdown-submenu {
  557. position: relative;
  558. }
  559. .dropdown > a:after,
  560. .dropdown-submenu > a:after {
  561. top: 8px;
  562. right: 9px;
  563. font-size: 11px;
  564. content: "\f105";
  565. position: absolute;
  566. font-weight: normal;
  567. display: inline-block;
  568. font-family: FontAwesome;
  569. }
  570. @media (max-width: 767px) {
  571. .dropdown-submenu > a:after {
  572. content: " ";
  573. }
  574. }
  575. .dropdown > a:after {
  576. top: 9px;
  577. right: 15px;
  578. content: "\f107";
  579. }
  580. .dropdown-submenu > .dropdown-menu {
  581. top: 0;
  582. left: 100%;
  583. margin-top: -5px;
  584. margin-left: 0px;
  585. }
  586. .dropdown-submenu:hover > .dropdown-menu {
  587. display: block;
  588. }
  589. @media (max-width: 767px) {
  590. .dropdown-submenu > .dropdown-menu {
  591. display: block;
  592. margin-left: 15px;
  593. }
  594. }
  595. .dropdown-submenu.pull-left {
  596. float: none;
  597. }
  598. .dropdown-submenu.pull-left > .dropdown-menu {
  599. left: -100%;
  600. margin-left: 10px;
  601. }
  602. .dropdown-menu li [class^="fa-"],
  603. .dropdown-menu li [class*=" fa-"] {
  604. left: -3px;
  605. width: 1.25em;
  606. margin-right: 1px;
  607. position: relative;
  608. text-align: center;
  609. display: inline-block;
  610. }
  611. .dropdown-menu li [class^="fa-"].fa-lg,
  612. .dropdown-menu li [class*=" fa-"].fa-lg {
  613. /* increased font size for fa-lg */
  614. width: 1.5625em;
  615. }
  616. /*Menu Icons*/
  617. .menu-icon {
  618. margin-right: 10px;
  619. font-weight: 200;
  620. }
  621. /*Dropdown Show*/
  622. .dropdown-show {
  623. position: relative;
  624. display: inline-block;
  625. box-shadow: 0 0 4px #eee;
  626. }
  627. /*Main Styles
  628. ------------------------------------*/
  629. /*Purchase Block*/
  630. .purchase {
  631. padding: 25px 0 30px;
  632. border-bottom: solid 1px #eee;
  633. }
  634. .purchase p {
  635. margin-bottom: 0;
  636. }
  637. .purchase span {
  638. color: #666;
  639. display: block;
  640. font-size: 24px;
  641. line-height: 35px;
  642. font-weight: normal;
  643. margin-bottom: 12px;
  644. font-family: 'Open Sans', sans-serif;
  645. }
  646. .purchase .btn-buy {
  647. text-align: center;
  648. }
  649. .purchase .btn-buy a {
  650. margin-top: 27px;
  651. }
  652. .purchase .btn-buy a i {
  653. margin-right: 5px;
  654. }
  655. @media (max-width: 992px) {
  656. .purchase {
  657. text-align: center;
  658. }
  659. .purchase span {
  660. font-size: 22px;
  661. line-height: 29px;
  662. }
  663. .purchase .btn-buy a {
  664. margin-top: 25px;
  665. font-size: 16px;
  666. }
  667. }
  668. /*Service*/
  669. .service {
  670. overflow: hidden;
  671. margin-bottom: 10px;
  672. padding: 15px 15px 10px;
  673. }
  674. .service:hover {
  675. background: #fcfcfc;
  676. box-shadow: 0 0 5px #ddd;
  677. -webkit-transition: box-shadow 0.2s ease-in-out;
  678. -moz-transition: box-shadow 0.2s ease-in-out;
  679. -o-transition: box-shadow 0.2s ease-in-out;
  680. transition: box-shadow 0.2s ease-in-out;
  681. }
  682. .service:hover i {
  683. color: #656565;
  684. }
  685. .service .desc {
  686. padding: 0 15px;
  687. overflow: hidden;
  688. }
  689. .service .desc h4 {
  690. font-size: 22px;
  691. line-height: 25px;
  692. }
  693. .service .service-icon {
  694. float: left;
  695. padding: 10px;
  696. color: #72c02c;
  697. font-size: 35px;
  698. text-align: center;
  699. -webkit-transition: all 0.4s ease-in-out;
  700. -moz-transition: all 0.4s ease-in-out;
  701. -o-transition: all 0.4s ease-in-out;
  702. transition: all 0.4s ease-in-out;
  703. }
  704. .service .service-icon.icon-cogs {
  705. font-size: 37px;
  706. }
  707. .service .service-icon.icon-plane {
  708. font-size: 43px;
  709. }
  710. /* Recent Work */
  711. .recent-work a {
  712. text-align: center;
  713. background: #fcfcfc;
  714. display: inline-block;
  715. }
  716. .recent-work a:hover {
  717. text-decoration: none;
  718. }
  719. .recent-work a:hover strong {
  720. color: #555;
  721. }
  722. .recent-work em.overflow-hidden {
  723. display: block;
  724. }
  725. .recent-work a span {
  726. display: block;
  727. padding: 10px;
  728. border-bottom: solid 2px #eee;
  729. }
  730. .recent-work a strong {
  731. color: #555;
  732. display: block;
  733. }
  734. .recent-work a i {
  735. color: #777;
  736. }
  737. .recent-work a img {
  738. -webkit-transition: all 0.8s ease-in-out;
  739. -moz-transition: all 0.8s ease-in-out;
  740. -o-transition: all 0.8s ease-in-out;
  741. -ms-transition: all 0.8s ease-in-out;
  742. transition: all 0.8s ease-in-out;
  743. }
  744. .recent-work a:hover img {
  745. opacity: 0.8;
  746. -webkit-transform: scale(1.2) rotate(3deg);
  747. -moz-transform: scale(1.2) rotate(3deg);
  748. -o-transform: scale(1.0) rotate(3deg);
  749. -ms-transform: scale(1.2) rotate(3deg);
  750. transform: scale(1.2) rotate(3deg);
  751. }
  752. .recent-work a:hover span {
  753. border-bottom: solid 2px #72c02c;
  754. -webkit-transition: all 0.2s ease-in-out;
  755. -moz-transition: all 0.3s ease-in-out;
  756. -o-transition: all 0.2s ease-in-out;
  757. transition: all 0.3s ease-in-out;
  758. }
  759. /* Work */
  760. .work {
  761. margin-top: 6px;
  762. }
  763. .work .details {
  764. padding: 10px;
  765. }
  766. .work .caption {
  767. display: block;
  768. padding-top: 5px;
  769. color: #585f69 !important;
  770. font-size: 18px !important;
  771. }
  772. .work .caption:hover {
  773. cursor: pointer;
  774. color: #444 !important;
  775. text-decoration: underline;
  776. }
  777. /*Footer*/
  778. .footer {
  779. color: #dadada;
  780. background: #585f69;
  781. padding: 20px 0 30px;
  782. font-size: 14px;
  783. line-height: 25px;
  784. }
  785. .footer.margin-top-0 {
  786. margin-top: 0;
  787. }
  788. .footer p,
  789. .footer a {
  790. font-size: 14px;
  791. }
  792. .footer p {
  793. color: #dadada;
  794. }
  795. .footer a {
  796. color: #72c02c;
  797. font-size: 14px;
  798. }
  799. .footer a:hover {
  800. color: #a8f85f;
  801. -webkit-transition: all 0.4s ease-in-out;
  802. -moz-transition: all 0.4s ease-in-out;
  803. -o-transition: all 0.4s ease-in-out;
  804. transition: all 0.4s ease-in-out;
  805. }
  806. .footer ul {
  807. list-style-type: none;
  808. margin: 0;
  809. padding: 0;
  810. }
  811. .footer li {
  812. color: #dadada;
  813. }
  814. .footer h2,
  815. .footer h3,
  816. .footer h4 {
  817. color: #e4e4e4;
  818. background: none;
  819. text-shadow: none;
  820. }
  821. .footer .headline {
  822. border-bottom: none;
  823. margin: 10px 0 15px 0;
  824. }
  825. .footer .headline h2 {
  826. font-size: 14px;
  827. border-bottom: none;
  828. font-weight: bold;
  829. }
  830. /*Footer Subsribe*/
  831. .footer .footer-subsribe {
  832. width: 85%;
  833. }
  834. /*Footer Blog Posts*/
  835. .footer .blog-list {
  836. margin: 0;
  837. padding: 0;
  838. color: #dadada;
  839. list-style: none;
  840. }
  841. .footer .blog-list li {
  842. padding: 0 0;
  843. margin-bottom: 7px;
  844. }
  845. .footer .blog-list li span {
  846. color: #818488;
  847. }
  848. .footer .dl-horizontal,
  849. .footer .dl-horizontal:hover {
  850. border: none !important;
  851. background: none !important;
  852. }
  853. .footer .posts .dl-horizontal a {
  854. color: #dadada;
  855. }
  856. .footer .dl-horizontal a:hover {
  857. color: #a8f85f !important;
  858. }
  859. .footer .dl-horizontal img {
  860. border-color: #888 !important;
  861. }
  862. /*Copyright*/
  863. .copyright {
  864. color: #777 !important;
  865. font-size: 14px;
  866. padding: 30px 0;
  867. background: #f4f4f4;
  868. border-top: solid 1px #e5e5e5;
  869. }
  870. .copyright p {
  871. color: #dadada;
  872. margin-top: 12px;
  873. }
  874. .copyright a {
  875. margin: 0px;
  876. color: #116dfe !important;
  877. }
  878. .copyright a:hover {
  879. color: #1989fa;
  880. }
  881. .copyright a img {
  882. margin-top: -2px;
  883. }
  884. /*Breadcrumbs
  885. ------------------------------------*/
  886. /*Default Breadcrumbs*/
  887. .breadcrumbs {
  888. overflow: hidden;
  889. padding: 10px 0 6px;
  890. border-bottom: solid 1px #eee;
  891. }
  892. .breadcrumbs h1 {
  893. color: #666;
  894. font-size: 22px;
  895. margin-top: 8px;
  896. }
  897. .breadcrumb {
  898. top: 10px;
  899. padding-right: 0;
  900. background: none;
  901. position: relative;
  902. }
  903. .breadcrumb a {
  904. color: #777;
  905. }
  906. .breadcrumb li.active,
  907. .breadcrumb li a:hover {
  908. color: #72c02c;
  909. text-decoration: none;
  910. }
  911. @media (max-width: 550px) {
  912. .breadcrumbs h1.pull-left,
  913. .breadcrumbs ul.pull-right {
  914. width: 100%;
  915. text-align: center;
  916. }
  917. .breadcrumbs h1.pull-left {
  918. margin-bottom: 0;
  919. }
  920. .breadcrumbs .breadcrumb {
  921. top: 0;
  922. margin-bottom: 10px;
  923. }
  924. }
  925. /*Thumbnails
  926. ------------------------------------*/
  927. a.thumbnail {
  928. padding: 0;
  929. border: none;
  930. margin-bottom: 15px;
  931. }
  932. .thumbnail-style {
  933. padding: 7px;
  934. margin-bottom: 20px;
  935. }
  936. .thumbnail-style:hover {
  937. /*
  938. box-shadow: 0 0 8px #ddd;
  939. -webkit-transition: box-shadow 0.2s ease-in-out;
  940. -moz-transition: box-shadow 0.2s ease-in-out;
  941. -o-transition: box-shadow 0.2s ease-in-out;
  942. transition: box-shadow 0.2s ease-in-out;
  943. */
  944. }
  945. .thumbnail h3,
  946. .thumbnail-style h3 {
  947. margin: 6px 0 8px 0;
  948. }
  949. .thumbnail h3 a,
  950. .thumbnail-style h3 a {
  951. color: #585f69;
  952. font-size: 16px;
  953. }
  954. .thumbnail h3 a:hover,
  955. .thumbnail-style h3 a:hover {
  956. color: #72c02c;
  957. text-decoration: none;
  958. }
  959. .thumbnail-style .thumbnail-img {
  960. position: relative;
  961. margin-bottom: 11px;
  962. }
  963. .thumbnail-style a.btn-more {
  964. right: -10px;
  965. bottom: 10px;
  966. color: #fff;
  967. padding: 1px 6px;
  968. position: absolute;
  969. background: #72c02c;
  970. display: inline-block;
  971. }
  972. .thumbnail-style a.btn-more:hover {
  973. text-decoration: none;
  974. box-shadow: 0 0 0 2px #377500;
  975. }
  976. .thumbnail-style:hover a.btn-more {
  977. right: 10px;
  978. }
  979. .thumbnail-kenburn img {
  980. left: 10px;
  981. margin-left: -10px;
  982. position: relative;
  983. -webkit-transition: all 0.8s ease-in-out;
  984. -moz-transition: all 0.8s ease-in-out;
  985. -o-transition: all 0.8s ease-in-out;
  986. -ms-transition: all 0.8s ease-in-out;
  987. transition: all 0.8s ease-in-out;
  988. }
  989. .thumbnail-kenburn:hover img {
  990. -webkit-transform: scale(1.2) rotate(2deg);
  991. -moz-transform: scale(1.2) rotate(2deg);
  992. -o-transform: scale(1.2) rotate(2deg);
  993. -ms-transform: scale(1.2) rotate(2deg);
  994. transform: scale(1.2) rotate(2deg);
  995. }
  996. /*Servive Blocks
  997. ------------------------------------*/
  998. /*Service Alternative Block*/
  999. .service-alternative .service:hover {
  1000. background: #76ca2c;
  1001. -webkit-transition: all 0.4s ease-in-out;
  1002. -moz-transition: all 0.4s ease-in-out;
  1003. -o-transition: all 0.4s ease-in-out;
  1004. transition: all 0.4s ease-in-out;
  1005. }
  1006. .service-alternative .service:hover i,
  1007. .service-alternative .service:hover p,
  1008. .service-alternative .service:hover h4 {
  1009. color: #fff;
  1010. }
  1011. /*Servive Block Versions*/
  1012. .service-v1 h2 {
  1013. margin: 15px 0 10px;
  1014. font-size: 20px;
  1015. line-height: 28px;
  1016. }
  1017. .service-v1 p {
  1018. text-align: justify;
  1019. }
  1020. /*Blog Posts
  1021. ------------------------------------*/
  1022. .posts .dl-horizontal a {
  1023. color: #555;
  1024. }
  1025. .posts .dl-horizontal {
  1026. margin-bottom: 15px;
  1027. overflow: hidden;
  1028. }
  1029. .posts .dl-horizontal dt {
  1030. width: 60px;
  1031. float: left;
  1032. }
  1033. .posts .dl-horizontal dt img {
  1034. width: 60px;
  1035. height: 60px;
  1036. padding: 2px;
  1037. margin-top: 2px;
  1038. border: solid 1px #ddd;
  1039. }
  1040. .posts .dl-horizontal dd {
  1041. margin-left: 70px;
  1042. }
  1043. .posts .dl-horizontal dd p {
  1044. margin: 0;
  1045. }
  1046. .posts .dl-horizontal dd a {
  1047. font-size: 14px;
  1048. line-height: 16px !important;
  1049. }
  1050. .posts .dl-horizontal dd a:hover {
  1051. color: #72c02c;
  1052. text-decoration: none;
  1053. }
  1054. .posts .dl-horizontal:hover dt img,
  1055. .posts .dl-horizontal:hover dd a {
  1056. color: #72c02c;
  1057. border-color: #72c02c !important;
  1058. -webkit-transition: all 0.4s ease-in-out;
  1059. -moz-transition: all 0.4s ease-in-out;
  1060. -o-transition: all 0.4s ease-in-out;
  1061. transition: all 0.4s ease-in-out;
  1062. }
  1063. /*About Page
  1064. ------------------------------------*/
  1065. .team ul.team-socail {
  1066. text-align: right;
  1067. }
  1068. .team ul.team-socail li {
  1069. padding: 0 !important;
  1070. margin: 0 !important;
  1071. }
  1072. .team ul.team-socail li a,
  1073. .team ul.team-socail li a:hover {
  1074. text-decoration: none;
  1075. }
  1076. .team ul.team-socail li i {
  1077. color: #aaa;
  1078. padding: 3px;
  1079. min-width: 30px;
  1080. font-size: 20px;
  1081. text-align: center;
  1082. background: #f7f7f7;
  1083. display: inline-block;
  1084. }
  1085. .team ul.team-socail li i:hover {
  1086. color: #fff;
  1087. background: #72c02c;
  1088. -webkit-transition: all 0.2s ease-in-out;
  1089. -moz-transition: all 0.2s ease-in-out;
  1090. -o-transition: all 0.2s ease-in-out;
  1091. transition: all 0.2s ease-in-out;
  1092. }
  1093. .team .thumbnail-style {
  1094. padding: 12px;
  1095. }
  1096. .team .thumbnail-style img {
  1097. margin-bottom: 7px;
  1098. }
  1099. .team .thumbnail-style h3 {
  1100. margin-bottom-bottom: 5px;
  1101. }
  1102. .team .thumbnail-style:hover h3 a {
  1103. color: #72c02c !important;
  1104. }
  1105. .team .thumbnail-style small {
  1106. display: block;
  1107. margin-top: 5px;
  1108. font-size: 12px;
  1109. }
  1110. /*About Me Page
  1111. ------------------------------------*/
  1112. .about-me {
  1113. overflow: hidden;
  1114. }
  1115. .about-me h2 {
  1116. margin: 0;
  1117. font-size: 20px;
  1118. text-transform: uppercase;
  1119. }
  1120. .about-me span {
  1121. color: #999;
  1122. display: block;
  1123. font-size: 14px;
  1124. margin-bottom: 10px;
  1125. }
  1126. .about-me .social-icons {
  1127. margin-top: 7px;
  1128. }
  1129. /*About My Goals*/
  1130. .about-my-goals h2 {
  1131. text-transform: uppercase;
  1132. }
  1133. /*About Skills*/
  1134. .about-skills {
  1135. padding: 40px 0;
  1136. border-top: 1px solid #eee;
  1137. border-bottom: 1px solid #eee;
  1138. }
  1139. /*Gallery Page
  1140. ------------------------------------*/
  1141. .gallery-page .thumbnail,
  1142. .gallery-page .thumbnail:hover {
  1143. padding: 0;
  1144. border: none;
  1145. box-shadow: none;
  1146. }
  1147. .gallery-page .thumbnails {
  1148. margin-bottom: 6px;
  1149. }
  1150. /*Privacy Page
  1151. ------------------------------------*/
  1152. .privacy a {
  1153. text-decoration: underline;
  1154. }
  1155. .privacy a:hover {
  1156. color: #72c02c;
  1157. text-decoration: none;
  1158. }
  1159. /*Portfolio Item Page v1
  1160. ------------------------------------*/
  1161. .portfolio-item h2 {
  1162. color: #555;
  1163. font-size: 24px;
  1164. margin: 0 0 15px;
  1165. }
  1166. .portfolio-item li {
  1167. padding: 3px 0;
  1168. }
  1169. .portfolio-item p a {
  1170. text-decoration: underline;
  1171. }
  1172. .portfolio-item p a:hover {
  1173. text-decoration: none;
  1174. }
  1175. /*Portfolio Item v1*/
  1176. .portfolio-item1 ul {
  1177. margin: 10px 0 20px;
  1178. }
  1179. .portfolio-item1 li {
  1180. font-size: 16px;
  1181. margin-bottom: 3px;
  1182. }
  1183. .portfolio-item1 li i {
  1184. font-size: 18px;
  1185. margin-right: 4px;
  1186. }
  1187. /*Sidebar Features
  1188. ------------------------------------*/
  1189. /*Blog Tags*/
  1190. ul.blog-tags li {
  1191. display: inline-block;
  1192. }
  1193. ul.blog-tags a {
  1194. font-size: 13px;
  1195. padding: 2px 7px;
  1196. background: #f7f7f7;
  1197. margin: 0 3px 6px 0;
  1198. display: inline-block;
  1199. }
  1200. ul.blog-tags a i {
  1201. color: #666;
  1202. }
  1203. ul.blog-tags a:hover {
  1204. background: #72c02c;
  1205. }
  1206. ul.blog-tags a:hover,
  1207. ul.blog-tags a:hover i {
  1208. color: #fff !important;
  1209. text-decoration: none;
  1210. -webkit-transition: all 0.2s ease-in-out;
  1211. -moz-transition: all 0.2s ease-in-out;
  1212. -o-transition: all 0.2s ease-in-out;
  1213. transition: all 0.2s ease-in-out;
  1214. }
  1215. /*Blog Photo Stream*/
  1216. .blog-photos li {
  1217. display: inline;
  1218. }
  1219. .blog-photos li img {
  1220. opacity: 0.6;
  1221. width: 58px;
  1222. height: 58px;
  1223. margin: 0 2px 8px;
  1224. }
  1225. .blog-photos li img:hover {
  1226. opacity: 1;
  1227. box-shadow: 0 0 0 2px #72c02c;
  1228. }
  1229. /*Blog Latest Tweets*/
  1230. .blog-twitter .blog-twitter-inner {
  1231. padding: 10px;
  1232. background: #f7f7f7;
  1233. position: relative;
  1234. margin-bottom: 10px;
  1235. /*border-top: solid 2px #eee;*/
  1236. }
  1237. .blog-twitter .blog-twitter-inner,
  1238. .blog-twitter .blog-twitter-inner:after,
  1239. .blog-twitter .blog-twitter-inner:before {
  1240. transition: all 0.3s ease-in-out;
  1241. -o-transition: all 0.3s ease-in-out;
  1242. -ms-transition: all 0.3s ease-in-out;
  1243. -moz-transition: all 0.3s ease-in-out;
  1244. -webkit-transition: all 0.3s ease-in-out;
  1245. }
  1246. .blog-twitter .blog-twitter-inner:after,
  1247. .blog-twitter .blog-twitter-inner:before {
  1248. width: 0;
  1249. height: 0;
  1250. right: 0px;
  1251. bottom: 0px;
  1252. content: " ";
  1253. display: block;
  1254. position: absolute;
  1255. }
  1256. .blog-twitter .blog-twitter-inner:after {
  1257. border-top: 15px solid #eee;
  1258. border-right: 15px solid transparent;
  1259. border-left: 0px solid transparent;
  1260. border-left-style: inset; /*FF fixes*/
  1261. border-right-style: inset; /*FF fixes*/
  1262. }
  1263. .blog-twitter .blog-twitter-inner:before {
  1264. border-bottom: 15px solid #fff;
  1265. border-right: 0 solid transparent;
  1266. border-left: 15px solid transparent;
  1267. border-left-style: inset; /*FF fixes*/
  1268. border-bottom-style: inset; /*FF fixes*/
  1269. }
  1270. .blog-twitter .blog-twitter-inner:hover {
  1271. border-color: #72c02c;
  1272. border-top-color: #72c02c;
  1273. }
  1274. .blog-twitter .blog-twitter-inner:hover:after {
  1275. border-top-color: #72c02c;
  1276. }
  1277. .blog-twitter .blog-twitter-inner span.twitter-time {
  1278. color: #777;
  1279. display: block;
  1280. font-size: 11px;
  1281. }
  1282. .blog-twitter .blog-twitter-inner a {
  1283. color: #72c02c;
  1284. text-decoration: none;
  1285. }
  1286. .blog-twitter .blog-twitter-inner a:hover {
  1287. text-decoration: underline;
  1288. }
  1289. .blog-twitter .blog-twitter-inner i.fa {
  1290. top: 2px;
  1291. color: #bbb;
  1292. font-size: 18px;
  1293. position: relative;
  1294. }
  1295. /*Choose Block*/
  1296. .who li {
  1297. margin-bottom: 6px;
  1298. }
  1299. .who li i {
  1300. color: #72c02c;
  1301. font-size: 13px;
  1302. margin-right: 8px;
  1303. position: relative;
  1304. }
  1305. .who li:hover i,
  1306. .who li:hover a {
  1307. color: #777;
  1308. }
  1309. .who li:hover a:hover {
  1310. text-decoration: none;
  1311. }
  1312. /*Promo Page
  1313. ------------------------------------*/
  1314. /*Slider Part*/
  1315. .fullwidthbanner-container.slider-promo {
  1316. max-height: 460px !important;
  1317. }
  1318. .slider-promo-info-bg {
  1319. padding: 25px 20px 20px;
  1320. background: url(../images/bg-black.png) repeat;
  1321. }
  1322. .slider-promo-info span.big-size {
  1323. color: #fff;
  1324. display: block;
  1325. font-size: 30px;
  1326. margin-bottom: 25px;
  1327. text-shadow: 0 !important;
  1328. }
  1329. .slider-promo-info p {
  1330. color: #fff;
  1331. font-size: 16px;
  1332. margin-bottom: 0;
  1333. }
  1334. /*Promo Box*/
  1335. .promo-box {
  1336. padding: 20px;
  1337. margin: 25px 0 20px;
  1338. text-align: center;
  1339. }
  1340. .promo-box i {
  1341. display: block;
  1342. font-size: 50px;
  1343. }
  1344. .promo-box p {
  1345. font-size: 14px;
  1346. margin-bottom: 0;
  1347. }
  1348. .promo-box strong,
  1349. .promo-box strong a {
  1350. color: #555;
  1351. display: block;
  1352. font-size: 20px;
  1353. font-weight: 200;
  1354. margin: 20px 0 15px;
  1355. }
  1356. .promo-box:hover strong,
  1357. .promo-box:hover strong a {
  1358. color: #72c02c;
  1359. }
  1360. /*Promo Service*/
  1361. .promo-service {
  1362. margin-bottom: 20px;
  1363. }
  1364. .promo-service li {
  1365. margin-bottom: 5px;
  1366. }
  1367. .promo-service a.btn-u {
  1368. margin: 0 20px 10px 0;
  1369. }
  1370. /*Promo Elements*/
  1371. .title-box {
  1372. font-size: 16px;
  1373. text-align: center;
  1374. padding: 10px 0 10px;
  1375. }
  1376. .title-box .title-box-text {
  1377. color: #555;
  1378. display: block;
  1379. font-size: 35px;
  1380. font-weight: 200;
  1381. }
  1382. @media (max-width: 768px) {
  1383. .title-box .title-box-text {
  1384. font-size: 26px;
  1385. line-height: 34px;
  1386. margin-bottom: 10px;
  1387. }
  1388. .title-box p {
  1389. font-size: 15px;
  1390. }
  1391. }
  1392. .block-blockquote {
  1393. margin: 20px 0;
  1394. text-align: center;
  1395. border: dashed 1px #ccc;
  1396. }
  1397. .block-blockquote-inner {
  1398. padding: 15px;
  1399. }
  1400. .block-blockquote p {
  1401. font-size: 26px;
  1402. margin-bottom: 0;
  1403. }
  1404. /*Info Blocks*/
  1405. .info-blocks {
  1406. margin-bottom: 15px;
  1407. }
  1408. .info-blocks:hover i.icon-info-blocks {
  1409. color: #72c02c;
  1410. -webkit-transition: all 0.2s ease-in-out;
  1411. -moz-transition: all 0.2s ease-in-out;
  1412. -o-transition: all 0.2s ease-in-out;
  1413. transition: all 0.2s ease-in-out;
  1414. }
  1415. .info-blocks i.icon-info-blocks {
  1416. float: left;
  1417. color: #777;
  1418. font-size: 30px;
  1419. min-width: 50px;
  1420. margin-top: 10px;
  1421. text-align: center;
  1422. }
  1423. .info-blocks .info-blocks-in {
  1424. padding: 0 10px;
  1425. overflow: hidden;
  1426. }
  1427. .info-blocks .info-blocks-in h3 {
  1428. color: #555;
  1429. font-size: 20px;
  1430. line-height: 28px;
  1431. }
  1432. .info-blocks .info-blocks-in p {
  1433. font-size: 12px;
  1434. }
  1435. /*Brand Page
  1436. ------------------------------------*/
  1437. .brand-page .btn {
  1438. margin-bottom: 10px;
  1439. }
  1440. /*Form Pages
  1441. ------------------------------------*/
  1442. .form-page input,
  1443. .form-page select {
  1444. margin-bottom: 10px;
  1445. }
  1446. /*Labels and Badges Page
  1447. ------------------------------------*/
  1448. ul.labels-demo {
  1449. margin: 5px 0;
  1450. }
  1451. ul.labels-demo li {
  1452. list-style: none;
  1453. display: inline-block;
  1454. margin: 0 5px 2px 0;
  1455. }
  1456. .badge-sidebar {
  1457. border-left: solid 1px #eee;
  1458. }
  1459. @media (max-width: 991px) {
  1460. .badge-sidebar {
  1461. border-left: none;
  1462. }
  1463. }
  1464. /*Line Icon Page
  1465. ------------------------------------*/
  1466. .line-icon-page .item-box {
  1467. width: 25%;
  1468. float: left;
  1469. height: 90px;
  1470. text-align: center;
  1471. padding: 20px 10px;
  1472. margin: 0 -1px -1px 0;
  1473. border: 1px solid #ddd;
  1474. word-wrap: break-word;
  1475. }
  1476. @media (max-width: 768px) {
  1477. .line-icon-page .item-box {
  1478. height: 115px;
  1479. }
  1480. }
  1481. @media (max-width: 450px) {
  1482. .line-icon-page .item-box {
  1483. height: 130px;
  1484. }
  1485. }
  1486. .line-icon-page .item-box:hover {
  1487. background: #fafafa;
  1488. }
  1489. .line-icon-page .item span {
  1490. display: block;
  1491. font-size: 28px;
  1492. margin-bottom: 10px;
  1493. }
  1494. .line-icon-page .item:hover {
  1495. color: #72c02c;
  1496. }
  1497. /*GLYPHICONS Icons Page
  1498. ------------------------------------*/
  1499. /*Special styles for displaying the icons and their classes*/
  1500. .bs-glyphicons {
  1501. padding-left: 0;
  1502. list-style: none;
  1503. overflow: hidden;
  1504. padding-bottom: 1px;
  1505. margin-bottom: 20px;
  1506. }
  1507. .bs-glyphicons li {
  1508. width: 25%;
  1509. float: left;
  1510. height: 115px;
  1511. padding: 10px;
  1512. font-size: 12px;
  1513. line-height: 1.4;
  1514. text-align: center;
  1515. margin: 0 -1px -1px 0;
  1516. border: 1px solid #ddd;
  1517. }
  1518. .bs-glyphicons .glyphicon {
  1519. display: block;
  1520. font-size: 24px;
  1521. margin: 5px auto 10px;
  1522. }
  1523. .bs-glyphicons li:hover {
  1524. color: #72c02c;
  1525. background-color: #fafafa;
  1526. }
  1527. @media (min-width: 768px) {
  1528. .bs-glyphicons li {
  1529. width: 12.5%;
  1530. }
  1531. }
  1532. /*Contact Pages
  1533. ------------------------------------*/
  1534. .map {
  1535. width: 100%;
  1536. height: 350px;
  1537. border-top: solid 1px #eee;
  1538. border-bottom: solid 1px #eee;
  1539. }
  1540. .gm-style-iw {
  1541. /*overflow: inherit !important;*/
  1542. }
  1543. .map-box {
  1544. height: 250px;
  1545. }
  1546. .map-box-space {
  1547. margin-top: 15px;
  1548. }
  1549. .map-box-space1 {
  1550. margin-top: 7px;
  1551. }
  1552. /*Background Opacity
  1553. ------------------------------------*/
  1554. .service-or {
  1555. overflow: hidden;
  1556. position: relative;
  1557. }
  1558. .service-bg {
  1559. background-color: rgba(255, 255, 255, 0.1);
  1560. width: 250px;
  1561. padding: 60px;
  1562. position: absolute;
  1563. top: -10px;
  1564. right: -100px;
  1565. transform: rotate(55deg);
  1566. -o-transform: rotate(55deg);
  1567. -ms-transform: rotate(55deg);
  1568. -moz-transform: rotate(55deg);
  1569. -webkit-transform: rotate(55deg);
  1570. }
  1571. /*Service Block v2
  1572. ------------------------------------*/
  1573. .servive-block-v2 .servive-block-in {
  1574. padding: 20px 30px;
  1575. text-align: center;
  1576. margin-bottom: 15px;
  1577. background: rgba(255, 255, 255, 0.2);
  1578. }
  1579. .servive-block-v2 .servive-block-in img {
  1580. width: 100%;
  1581. margin-bottom: 15px;
  1582. }
  1583. .servive-block-v2 .servive-block-in i {
  1584. font-size: 40px;
  1585. }
  1586. .servive-block-v2 .servive-block-in h4 {
  1587. line-height: 25px;
  1588. }
  1589. .servive-block-v2 .servive-block-in p {
  1590. margin-bottom: 20px;
  1591. }
  1592. .servive-block-v2 .servive-block-in i,
  1593. .servive-block-v2 .servive-block-in h4,
  1594. .servive-block-v2 .servive-block-in p {
  1595. color: #fff;
  1596. }
  1597. /*Easy Block
  1598. ------------------------------------*/
  1599. .easy-block-v1 {
  1600. position: relative;
  1601. }
  1602. .easy-block-v1 img {
  1603. width: 100%;
  1604. }
  1605. .easy-block-v1 .overflow-h h3 {
  1606. width: 60%;
  1607. float: left;
  1608. font-size: 18px;
  1609. line-height: 24px;
  1610. margin-bottom: 5px;
  1611. }
  1612. .easy-block-v1 .easy-block-v1-badge {
  1613. left: 0px;
  1614. top: 10px;
  1615. z-index: 1;
  1616. color: #fff;
  1617. padding: 4px 10px;
  1618. position: absolute;
  1619. }
  1620. /*Easy Block v2
  1621. ------------------------------------*/
  1622. .easy-block-v2 {
  1623. overflow: hidden;
  1624. position: relative;
  1625. margin-bottom: 20px;
  1626. }
  1627. .easy-block-v2 img {
  1628. width: 100%;
  1629. }
  1630. .easy-bg-v2 {
  1631. top: 5px;
  1632. color: #fff;
  1633. width: 100px;
  1634. padding: 5px;
  1635. right: -32px;
  1636. font-size: 13px;
  1637. position: absolute;
  1638. text-align: center;
  1639. letter-spacing: 2px;
  1640. transform: rotate(45deg);
  1641. -o-transform: rotate(45deg);
  1642. -ms-transform: rotate(45deg);
  1643. -moz-transform: rotate(45deg);
  1644. -webkit-transform: rotate(45deg);
  1645. }
  1646. .rgba-red {
  1647. background-color: rgba(231, 76, 60, 0.8);
  1648. }
  1649. .rgba-blue {
  1650. background-color: rgba(52, 152, 219, 0.8);
  1651. }
  1652. .rgba-default {
  1653. background-color: rgba(114, 192, 44, 0.8);
  1654. }
  1655. .rgba-purple {
  1656. background-color: rgba(155, 107, 204, 0.8);
  1657. }
  1658. /*Easy Block v3
  1659. ------------------------------------*/
  1660. .easy-block-v3 {
  1661. text-align: left;
  1662. background: #585f69;
  1663. margin-bottom: 10px;
  1664. padding: 30px 20px 20px;
  1665. }
  1666. .easy-block-v3.first {
  1667. background: #696f77;
  1668. }
  1669. .easy-block-v3.second {
  1670. background: #707780;
  1671. }
  1672. .easy-block-v3.third {
  1673. background: #787f88;
  1674. }
  1675. .easy-block-v3 i {
  1676. color: #fff;
  1677. float: left;
  1678. font-size: 30px;
  1679. min-width: 45px;
  1680. padding-top: 10px;
  1681. }
  1682. .easy-block-v3 .inner-faq-b {
  1683. overflow: hidden;
  1684. }
  1685. .easy-block-v3 .inner-faq-b h2,
  1686. .easy-block-v3 .inner-faq-b h3 {
  1687. font-size: 21px;
  1688. margin-bottom: 8px;
  1689. }
  1690. .easy-block-v3 .inner-faq-b h4 {
  1691. color: #fff;
  1692. font-size: 17px;
  1693. margin-bottom: 2px;
  1694. }
  1695. .easy-block-v3 .inner-faq-b h2,
  1696. .easy-block-v3 .inner-faq-b h3,
  1697. .easy-block-v3 .inner-faq-b p {
  1698. color: #fff;
  1699. }
  1700. /*Full Width Block
  1701. ------------------------------------*/
  1702. .full-w-block {
  1703. padding: 30px 0;
  1704. background: #282828;
  1705. }
  1706. .full-w-block .info-blocks i,
  1707. .full-w-block .info-blocks-in h3 {
  1708. color: #fff;
  1709. }
  1710. .full-w-block .info-blocks-in p {
  1711. color: #ccc;
  1712. }
  1713. .full-w-block .info-blocks:hover i.icon-info-blocks {
  1714. color: #fff;
  1715. }
  1716. /*Team v2
  1717. ------------------------------------*/
  1718. .team-v2 {
  1719. position: relative;
  1720. margin-bottom: 20px;
  1721. }
  1722. .team-v2 img {
  1723. width: 100%;
  1724. }
  1725. .team-v2 .inner-team {
  1726. padding: 20px;
  1727. background: #fff;
  1728. text-align: center;
  1729. }
  1730. .team-v2 .inner-team h3 {
  1731. margin: 0;
  1732. }
  1733. .team-v2 .inner-team small {
  1734. display: block;
  1735. font-size: 12px;
  1736. margin-bottom: 7px;
  1737. }
  1738. .team-v2 .inner-team p {
  1739. font-size: 13px;
  1740. }
  1741. .team-v2 .inner-team hr {
  1742. margin: 10px 0 15px;
  1743. }
  1744. /*Team-Social ---- Temporary*/
  1745. .team-social {
  1746. margin-bottom: 0;
  1747. }
  1748. .team-social li {
  1749. padding: 0 2px;
  1750. }
  1751. .team-social li a {
  1752. font-size: 14px;
  1753. padding: 6px 4px;
  1754. border-radius: 50% !important;
  1755. }
  1756. .team-social li i {
  1757. min-width: 20px;
  1758. }
  1759. .team-social li a.fb {
  1760. color: #4862a3;
  1761. border: 1px solid #4862a3;
  1762. }
  1763. .team-social li a.tw {
  1764. color: #159ceb;
  1765. border: 1px solid #159ceb;
  1766. }
  1767. .team-social li a.gp {
  1768. color: #dc4a38;
  1769. border: 1px solid #dc4a38;
  1770. }
  1771. .team-social li a:hover {
  1772. text-decoration: none;
  1773. }
  1774. .team-social li a.fb:hover {
  1775. color: #fff;
  1776. background: #4862a3;
  1777. }
  1778. .team-social li a.tw:hover {
  1779. color: #fff;
  1780. background: #159ceb;
  1781. }
  1782. .team-social li a.gp:hover {
  1783. color: #fff;
  1784. background: #dc4a38;
  1785. }
  1786. /*Simple Block
  1787. ------------------------------------*/
  1788. .simple-block {
  1789. margin-bottom: 20px;
  1790. }
  1791. .simple-block img {
  1792. width: 100%;
  1793. }
  1794. .simple-block p {
  1795. text-align: center;
  1796. }
  1797. .simple-block .carousel-indicators {
  1798. top: 10px;
  1799. left: 65%;
  1800. text-align: right;
  1801. }
  1802. .simple-block .carousel-indicators .active {
  1803. background: #555;
  1804. }
  1805. .simple-block .carousel-indicators li {
  1806. border-color: #555;
  1807. }
  1808. .simple-block .carousel-inner > .item {
  1809. margin: 0;
  1810. }
  1811. /*Two Blocks
  1812. ------------------------------------*/
  1813. .two-blocks {
  1814. text-align: center;
  1815. }
  1816. .two-blocks-in {
  1817. margin-bottom: 30px;
  1818. }
  1819. .two-blocks-in i {
  1820. color: #fff;
  1821. padding: 11px;
  1822. font-size: 30px;
  1823. min-width: 50px;
  1824. text-align: center;
  1825. background: #585f69;
  1826. margin-bottom: 10px;
  1827. display: inline-block;
  1828. }
  1829. /*Three Blocks
  1830. ------------------------------------*/
  1831. .three-blocks {
  1832. text-align: center;
  1833. }
  1834. .three-blocks-in {
  1835. margin-bottom: 30px;
  1836. }
  1837. .three-blocks-in i {
  1838. color: #777;
  1839. padding: 9px 6px;
  1840. font-size: 20px;
  1841. min-width: 40px;
  1842. margin-bottom: 10px;
  1843. border: 1px solid #777;
  1844. }
  1845. .three-blocks-in h3 {
  1846. font-size: 20px;
  1847. margin-bottom: 7px;
  1848. }
  1849. /*Temperory Classes
  1850. ------------------------------------*/
  1851. /*Banner-info*/
  1852. .banner-info {
  1853. margin-bottom: 10px;
  1854. }
  1855. .banner-info i {
  1856. float: left;
  1857. color: #fff;
  1858. padding: 11px;
  1859. /*min-width works with line-icon*/
  1860. min-width: 40px;
  1861. font-size: 22px;
  1862. text-align: center;
  1863. margin: 7px 20px 0 0;
  1864. }
  1865. /*min-width works with FontAwesome*/
  1866. .banner-info i.fa {
  1867. min-width: 46px;
  1868. }
  1869. .banner-info.light i {
  1870. border: 1px solid #fff;
  1871. }
  1872. .banner-info.dark i {
  1873. background: #585f69;
  1874. }
  1875. .banner-info h3 {
  1876. font-size: 21px;
  1877. margin-bottom: 5px;
  1878. }
  1879. .banner-info.light h3 {
  1880. color: #fff;
  1881. }
  1882. .banner-info.light p {
  1883. color: #eee;
  1884. }
  1885. /*Breadcrumb-V2*/
  1886. .breadcrumbs-v2 {
  1887. text-align: center;
  1888. position: relative;
  1889. background: url(../images/11.jpg) no-repeat center;
  1890. }
  1891. .breadcrumbs-v2-in {
  1892. padding: 60px 0;
  1893. position: relative;
  1894. }
  1895. .breadcrumbs-v2 h1 {
  1896. color: #fff;
  1897. text-transform: uppercase;
  1898. }
  1899. .breadcrumb-v2 li a,
  1900. .breadcrumb-v2 li.active {
  1901. color: #fff;
  1902. }
  1903. .breadcrumb-v2 li i {
  1904. color: #fff;
  1905. min-width: 19px;
  1906. padding: 3px 7px;
  1907. margin-right: 5px;
  1908. text-align: center;
  1909. border: 1px solid #fff;
  1910. }
  1911. /*Breadcrumbs-v3*/
  1912. .breadcrumbs-v3 {
  1913. padding: 10px 0;
  1914. background: #585f69;
  1915. border-bottom: 1px solid #eee;
  1916. }
  1917. .breadcrumbs-v3 h1 {
  1918. color: #fff;
  1919. margin: 3px 0;
  1920. font-size: 22px;
  1921. font-weight: 200;
  1922. }
  1923. .breadcrumbs-v3 .breadcrumb {
  1924. padding: 0;
  1925. margin-top: 2px;
  1926. margin-bottom: 0;
  1927. }
  1928. .breadcrumbs-v3 .breadcrumb li a {
  1929. color: #fff;
  1930. }
  1931. /*Title-Box-V2*/
  1932. .title-box-v2 {
  1933. text-align: center;
  1934. margin-bottom: 40px;
  1935. }
  1936. .title-box-v2 h2 {
  1937. font-size: 25px;
  1938. text-transform: uppercase;
  1939. }
  1940. .title-box-v2 p {
  1941. font-size: 13px;
  1942. }
  1943. /*remove padding from "Col-"*/
  1944. .no-space {
  1945. padding: 0;
  1946. }
  1947. /*List Style v1*/
  1948. .list-style-v1 li {
  1949. margin-bottom: 7px;
  1950. }
  1951. .list-style-v1 i {
  1952. margin-right: 5px;
  1953. }
  1954. .editableform-loading {
  1955. background: url(../images/loading.gif) center center no-repeat;
  1956. height: 25px;
  1957. width: auto;
  1958. min-width: 25px;
  1959. }
  1960. /* Recent */
  1961. .recent .titles {
  1962. text-align: center;
  1963. text-align: center;
  1964. padding: 20px 0;
  1965. font-size: 20px;
  1966. }
  1967. .recent .titles a {
  1968. color: #585f69;
  1969. margin: 0 10px;
  1970. }
  1971. .recent .titles a.selected {
  1972. color: #72c02c;
  1973. }
  1974. /************fashion-footer***************/
  1975. .bacgrey {
  1976. background: #eeeeee;
  1977. }
  1978. .pading-b80 {
  1979. padding-bottom: 80px;
  1980. }
  1981. .font-18 {
  1982. font-size: 18px;
  1983. }
  1984. .mt-10 {
  1985. margin-top: 10px;
  1986. }
  1987. .container .about .mt-35 {
  1988. margin-top: 35px;
  1989. }
  1990. .container .about p {
  1991. text-align: left;
  1992. color: #555;
  1993. }
  1994. .container .about p span {
  1995. border-bottom: 2px solid #1abc9c;
  1996. padding: 5px 0;
  1997. }
  1998. .container .about ul {
  1999. list-style: none;
  2000. text-align: left;
  2001. margin: 0;
  2002. padding: 0;
  2003. margin-top: 20px;
  2004. width: 40%;
  2005. float: left;
  2006. }
  2007. .container .about ul li {
  2008. line-height: 26px;
  2009. font-size: 14px;
  2010. color: #555 !important;
  2011. text-align: left;
  2012. line-height: 26px;
  2013. }
  2014. .padding-tb55 {
  2015. padding: 55px 0;
  2016. }
  2017. .container .about ul li a {
  2018. color: #777;
  2019. font-size: 14px;
  2020. text-decoration: none !important;
  2021. }
  2022. .container .about ul li a:hover {
  2023. color: #1abc9c;
  2024. }
  2025. .container .about ul li .btn-default {
  2026. background: #aaa;
  2027. border: #aaa;
  2028. color: #fff !important;
  2029. font-size: 14px;
  2030. padding: 3px 15px;
  2031. }
  2032. .container .about ul li .btn-default:hover {
  2033. background: #1abc9c;
  2034. }
  2035. .container .about ul li a img {
  2036. margin-bottom: 3px;
  2037. margin-right: 5px;
  2038. }
  2039. footer .container {
  2040. border-top: 1px solid #3a3a3a;
  2041. padding: 0px;
  2042. padding-top: 15px;
  2043. padding-bottom: 10px;
  2044. }
  2045. footer a.pgy {
  2046. color: #1abc9c !important;
  2047. text-decoration: none !important;
  2048. }
  2049. footer p {
  2050. font-size: 14px !important;
  2051. color: #555 !important;
  2052. }
  2053. .container .about .f-chat {
  2054. width: 48px;
  2055. height: 48px;
  2056. background: url(../images/footer_wechat.png) no-repeat;
  2057. display: inline-block;
  2058. }
  2059. .container .about .f-chat:hover {
  2060. width: 48px;
  2061. height: 48px;
  2062. background: url(../images/footer_wechat_hover.png) no-repeat;
  2063. }
  2064. .container .about .f-sina {
  2065. width: 48px;
  2066. height: 48px;
  2067. background: url(../images/footer_sina.png) no-repeat;
  2068. display: inline-block;
  2069. margin-left: 10px;
  2070. }
  2071. .container .about .f-sina:hover {
  2072. width: 48px;
  2073. height: 48px;
  2074. background: url(../images/footer_sina_hover.png) no-repeat;
  2075. }
  2076. /**********fashion_header**********/
  2077. .topbar {
  2078. z-index: 12;
  2079. padding: 8px 30px 0px 0px;
  2080. position: relative;
  2081. }
  2082. .topbar ul.loginbar {
  2083. margin: 0;
  2084. }
  2085. .topbar ul.loginbar li {
  2086. display: inline;
  2087. list-style: none;
  2088. position: relative;
  2089. padding-bottom: 15px;
  2090. }
  2091. .topbar ul li i {
  2092. color: #555 !important;
  2093. }
  2094. .topbar ul.loginbar li.Iota {
  2095. padding: 0 5px;
  2096. color: #555 !important;
  2097. }
  2098. .topbar ul.loginbar li a {
  2099. color: #555;
  2100. font-size: 14px;
  2101. text-decoration: none;
  2102. }
  2103. .topbar ul.loginbar li a:hover {
  2104. color: #1abc9c;
  2105. }
  2106. header .container {
  2107. padding-right: 0px;
  2108. padding-left: 0px;
  2109. }
  2110. .navbar .nav li a {
  2111. font-size: 15px;
  2112. color: #555;
  2113. display: block;
  2114. height: 50px;
  2115. }
  2116. .navbar .nav li a:hover, .navbar .nav li.active a:hover {
  2117. background: none;
  2118. color: #1abc9c !important;
  2119. border-bottom: 2px solid #1abc9c;
  2120. }
  2121. .navbar .nav li.active a {
  2122. background: none;
  2123. font-size: 15px;
  2124. color: #1abc9c !important;
  2125. border-bottom: 2px solid #1abc9c;
  2126. }
  2127. .navbar-default {
  2128. background: #fff;
  2129. border: none;
  2130. }
  2131. .navbar {
  2132. margin-bottom: 0px;
  2133. margin-top: 20px;
  2134. padding-bottom: 0px;
  2135. }
  2136. @media screen and (max-width: 768px) {
  2137. .navbar .nav li a {
  2138. min-height: 45px;
  2139. line-height: 45px;
  2140. padding-bottom: 0px;
  2141. padding-top: 0px;
  2142. font-size: 15px;
  2143. color: #555;
  2144. }
  2145. .navbar-header {
  2146. padding-left: 30px;
  2147. padding-top: 10px;
  2148. margin-left: 0px !important;
  2149. margin-right: 0px !important;
  2150. }
  2151. .navbar-header a img {
  2152. margin-bottom: 10px;
  2153. }
  2154. .navbar-toggle {
  2155. margin-right: 32px !important;
  2156. }
  2157. }
  2158. .navbar-toggle {
  2159. background: #1abc9c !important;
  2160. color: #fff;
  2161. padding: 5px 10px;
  2162. border: none;
  2163. margin-right: 35px;
  2164. margin-top: 0px;
  2165. }
  2166. .navbar-toggle:hover {
  2167. background: #56bc94 !important;
  2168. }
  2169. .navbar .nav li {
  2170. text-align: center;
  2171. }
  2172. .navbar .nav li a:hover {
  2173. color: #1abc9c;
  2174. }
  2175. .breadcrumbs {
  2176. border-top: 2px solid #eee;
  2177. }
  2178. .back-333 {
  2179. background: #333;
  2180. }
  2181. .mt-70 {
  2182. margin-top: 70px;
  2183. }
  2184. .color-wthite {
  2185. color: #fff !important;
  2186. }
  2187. .color-777 {
  2188. color: #777 !important;
  2189. }
  2190. .back-333 .container .row ul {
  2191. list-style: none;
  2192. padding-left: 0;
  2193. padding-right: 0;
  2194. }
  2195. .back-333 .container .row ul li {
  2196. color: #777;
  2197. font-size: 14px;
  2198. }
  2199. .back-333 .container .row ul li a {
  2200. color: #777;
  2201. text-decoration: none;
  2202. }
  2203. .back-333 .container .row ul li a:hover {
  2204. color: #1abc9c;
  2205. }
  2206. .back-333 .container .row p a:hover {
  2207. color: #777;
  2208. }
  2209. .back-333 .row p.font-14 {
  2210. font-size: 14px !important;
  2211. }
  2212. .back-333 .row div {
  2213. padding-left: 25px;
  2214. padding-right: 25px;
  2215. }
  2216. a.color-1abc9c {
  2217. color: #1abc9c;
  2218. text-decoration: none !important;
  2219. }
  2220. .back-2f2f2f {
  2221. background: #2f2f2f;
  2222. }
  2223. .mt-25 {
  2224. margin-top: 25px;
  2225. }
  2226. /*****install-loading******/
  2227. @-webkit-keyframes rotate {
  2228. 0% {
  2229. -webkit-transform: rotate(0);
  2230. transform: rotate(0)
  2231. }
  2232. 100% {
  2233. -webkit-transform: rotate(360deg);
  2234. transform: rotate(360deg)
  2235. }
  2236. }
  2237. @keyframes rotate {
  2238. 0% {
  2239. -webkit-transform: rotate(0);
  2240. transform: rotate(0)
  2241. }
  2242. 100% {
  2243. -webkit-transform: rotate(360deg);
  2244. transform: rotate(360deg)
  2245. }
  2246. }
  2247. .loading {
  2248. display: none;
  2249. background-color: transparent;
  2250. width: 45px;
  2251. height: 45px;
  2252. border: 1px solid #1abc9c;
  2253. border-radius: 50%;
  2254. border-top-color: transparent;
  2255. border-left-color: transparent;
  2256. -webkit-transition: all .25s;
  2257. transition: all .25s;
  2258. -webkit-animation: rotate .6s linear infinite;
  2259. animation: rotate .6s linear infinite
  2260. }
  2261. #showtext {
  2262. display: none;
  2263. text-align: center;
  2264. color: #1abc9c;
  2265. font-size: 14px;
  2266. }
  2267. .spinner {
  2268. height: 45px;
  2269. text-align: center;
  2270. }
  2271. .browser_notice {
  2272. background-color: #d9534f;
  2273. padding: 10px;
  2274. color: #fff;
  2275. text-align: center;
  2276. }
  2277. @media screen and (max-width: 768px) {
  2278. .copyright .container .row div.col-md-6 {
  2279. /* padding-left:5px !important;
  2280. padding-right:5px !important;*/
  2281. text-align: center;
  2282. margin-bottom: 10px;
  2283. }
  2284. }